* Sync with trunk HEAD (r75820).
[reactos.git] / reactos / drivers / filesystems / fastfat / close.c
1 /*
2 * COPYRIGHT: See COPYING in the top level directory
3 * PROJECT: ReactOS kernel
4 * FILE: drivers/filesystems/fastfat/close.c
5 * PURPOSE: VFAT Filesystem
6 * PROGRAMMER: Jason Filby (jasonfilby@yahoo.com)
7 */
8
9 /* INCLUDES *****************************************************************/
10
11 #include "vfat.h"
12
13 #define NDEBUG
14 #include <debug.h>
15
16 /* FUNCTIONS ****************************************************************/
17
18 /*
19 * FUNCTION: Closes a file
20 */
21 NTSTATUS
22 VfatCloseFile(
23 PDEVICE_EXTENSION DeviceExt,
24 PFILE_OBJECT FileObject)
25 {
26 PVFATFCB pFcb;
27 PVFATCCB pCcb;
28 NTSTATUS Status = STATUS_SUCCESS;
29
30 DPRINT("VfatCloseFile(DeviceExt %p, FileObject %p)\n",
31 DeviceExt, FileObject);
32
33 /* FIXME : update entry in directory? */
34 pCcb = (PVFATCCB) (FileObject->FsContext2);
35 pFcb = (PVFATFCB) (FileObject->FsContext);
36
37 if (pFcb == NULL)
38 {
39 return STATUS_SUCCESS;
40 }
41
42 if (BooleanFlagOn(pFcb->Flags, FCB_IS_VOLUME))
43 {
44 DPRINT("Volume\n");
45 FileObject->FsContext2 = NULL;
46 }
47 else
48 {
49 vfatReleaseFCB(DeviceExt, pFcb);
50 }
51
52 FileObject->FsContext2 = NULL;
53 FileObject->FsContext = NULL;
54 FileObject->SectionObjectPointer = NULL;
55
56 if (pCcb)
57 {
58 vfatDestroyCCB(pCcb);
59 }
60
61 #ifdef ENABLE_SWAPOUT
62 if (DeviceExt->OpenHandleCount == 0)
63 {
64 VfatCheckForDismount(DeviceExt, FALSE);
65 }
66 #endif
67
68 return Status;
69 }
70
71 /*
72 * FUNCTION: Closes a file
73 */
74 NTSTATUS
75 VfatClose(
76 PVFAT_IRP_CONTEXT IrpContext)
77 {
78 NTSTATUS Status;
79
80 DPRINT("VfatClose(DeviceObject %p, Irp %p)\n", IrpContext->DeviceObject, IrpContext->Irp);
81
82 if (IrpContext->DeviceObject == VfatGlobalData->DeviceObject)
83 {
84 DPRINT("Closing file system\n");
85 IrpContext->Irp->IoStatus.Information = 0;
86 return STATUS_SUCCESS;
87 }
88 if (!ExAcquireResourceExclusiveLite(&IrpContext->DeviceExt->DirResource, BooleanFlagOn(IrpContext->Flags, IRPCONTEXT_CANWAIT)))
89 {
90 return VfatMarkIrpContextForQueue(IrpContext);
91 }
92
93 Status = VfatCloseFile(IrpContext->DeviceExt, IrpContext->FileObject);
94 ExReleaseResourceLite(&IrpContext->DeviceExt->DirResource);
95
96 IrpContext->Irp->IoStatus.Information = 0;
97
98 return Status;
99 }
100
101 /* EOF */