[FASTFAT] Don't leak directories FILE_OBJECT, FCB and cache entries. 524/head
authorPierre Schweitzer <pierre@reactos.org>
Thu, 26 Apr 2018 16:25:19 +0000 (18:25 +0200)
committerPierre Schweitzer <pierre@reactos.org>
Sat, 28 Apr 2018 16:33:14 +0000 (18:33 +0200)
commit94ead99e0c503faa40b33b813cce296ea5c0bc0c
tree1c190c6927bba089f39be1a7fe30f3f5ef2821a7
parent2ea6de8a42c19e1fab98c50927ec3515749d87a9
[FASTFAT] Don't leak directories FILE_OBJECT, FCB and cache entries.

Once a directory is crossed (opened or a child is opened), associated
FCB structure is created in FastFAT, but also a stream FO for caching.
Up to now, due to an extra reference taken by the stream file object,
even when the directory was no longer used, the directory was kept in
memory: the FCB was never deleted, the file object was never dereferenced,
and the cache never released.

The immediate effect of this bug is that our FAT driver was leaking every
directory that was used affecting the whole OS situation. In case of
directories intensive operation (like extraction the ReactOS source code
in ReactOS ;-)), we were just killin the whole OS RAM without any way to
release it and recover.

The other side effects: IOs were faster as half of the FS was always
permanant in RAM.

This commit fixes the issue by forcing the FSD to release the FO,
and the cache when a directory is no longer used, leading to its
destruction in RAM.
Downside: on IO intensive operation, expect slowdowns, obviously,
there's less caching now. But more efficient!

CORE-14557
drivers/filesystems/fastfat/cleanup.c
drivers/filesystems/fastfat/fcb.c