3 * Copyright (C) 1998, 1999, 2000, 2001 ReactOS Team
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 * PROJECT: ReactOS kernel
21 * FILE: drivers/fs/vfat/create.c
22 * PURPOSE: VFAT Filesystem
23 * PROGRAMMER: Jason Filby (jasonfilby@yahoo.com)
27 /* INCLUDES *****************************************************************/
32 /* FUNCTIONS *****************************************************************/
35 vfat8Dot3ToString (PFAT_DIR_ENTRY pEntry
, PUNICODE_STRING NameU
)
41 RtlCopyMemory(cString
, pEntry
->ShortName
, 11);
43 if (cString
[0] == 0x05)
48 StringA
.Buffer
= cString
;
49 for (StringA
.Length
= 0;
50 StringA
.Length
< 8 && StringA
.Buffer
[StringA
.Length
] != ' ';
52 StringA
.MaximumLength
= StringA
.Length
;
54 RtlOemStringToUnicodeString(NameU
, &StringA
, FALSE
);
56 if (pEntry
->lCase
& VFAT_CASE_LOWER_BASE
)
58 RtlDowncaseUnicodeString(NameU
, NameU
, FALSE
);
60 if (cString
[8] != ' ')
62 Length
= NameU
->Length
;
63 NameU
->Buffer
+= Length
/ sizeof(WCHAR
);
64 if (!FAT_ENTRY_VOLUME(pEntry
))
66 Length
+= sizeof(WCHAR
);
67 NameU
->Buffer
[0] = L
'.';
71 NameU
->MaximumLength
-= Length
;
73 StringA
.Buffer
= &cString
[8];
74 for (StringA
.Length
= 0;
75 StringA
.Length
< 3 && StringA
.Buffer
[StringA
.Length
] != ' ';
77 StringA
.MaximumLength
= StringA
.Length
;
78 RtlOemStringToUnicodeString(NameU
, &StringA
, FALSE
);
79 if (pEntry
->lCase
& VFAT_CASE_LOWER_EXT
)
81 RtlDowncaseUnicodeString(NameU
, NameU
, FALSE
);
83 NameU
->Buffer
-= Length
/ sizeof(WCHAR
);
84 NameU
->Length
+= Length
;
85 NameU
->MaximumLength
+= Length
;
87 NameU
->Buffer
[NameU
->Length
/ sizeof(WCHAR
)] = 0;
88 DPRINT("'%wZ'\n", NameU
);
92 ReadVolumeLabel (PDEVICE_EXTENSION DeviceExt
, PVPB Vpb
)
94 * FUNCTION: Read the volume label
101 LARGE_INTEGER FileOffset
;
102 UNICODE_STRING NameU
;
104 ULONG EntriesPerPage
;
107 NameU
.Buffer
= Vpb
->VolumeLabel
;
109 NameU
.MaximumLength
= sizeof(Vpb
->VolumeLabel
);
110 *(Vpb
->VolumeLabel
) = 0;
111 Vpb
->VolumeLabelLength
= 0;
113 if (DeviceExt
->Flags
& VCB_IS_FATX
)
115 SizeDirEntry
= sizeof(FATX_DIR_ENTRY
);
116 EntriesPerPage
= FATX_ENTRIES_PER_PAGE
;
120 SizeDirEntry
= sizeof(FAT_DIR_ENTRY
);
121 EntriesPerPage
= FAT_ENTRIES_PER_PAGE
;
124 ExAcquireResourceExclusiveLite (&DeviceExt
->DirResource
, TRUE
);
125 pFcb
= vfatOpenRootFCB (DeviceExt
);
126 ExReleaseResourceLite (&DeviceExt
->DirResource
);
128 FileOffset
.QuadPart
= 0;
129 if (CcMapData(pFcb
->FileObject
, &FileOffset
, PAGE_SIZE
, TRUE
, &Context
, (PVOID
*)&Entry
))
133 if (ENTRY_VOLUME(DeviceExt
, Entry
))
135 /* copy volume label */
136 if (DeviceExt
->Flags
& VCB_IS_FATX
)
138 StringO
.Buffer
= (PCHAR
)Entry
->FatX
.Filename
;
139 StringO
.MaximumLength
= StringO
.Length
= Entry
->FatX
.FilenameLength
;
140 RtlOemStringToUnicodeString(&NameU
, &StringO
, FALSE
);
144 vfat8Dot3ToString (&Entry
->Fat
, &NameU
);
146 Vpb
->VolumeLabelLength
= NameU
.Length
;
149 if (ENTRY_END(DeviceExt
, Entry
))
154 Entry
= (PDIR_ENTRY
)((ULONG_PTR
)Entry
+ SizeDirEntry
);
155 if ((DirIndex
% EntriesPerPage
) == 0)
157 CcUnpinData(Context
);
158 FileOffset
.u
.LowPart
+= PAGE_SIZE
;
159 if (!CcMapData(pFcb
->FileObject
, &FileOffset
, PAGE_SIZE
, TRUE
, &Context
, (PVOID
*)&Entry
))
168 CcUnpinData(Context
);
171 ExAcquireResourceExclusiveLite (&DeviceExt
->DirResource
, TRUE
);
172 vfatReleaseFCB (DeviceExt
, pFcb
);
173 ExReleaseResourceLite (&DeviceExt
->DirResource
);
175 return STATUS_SUCCESS
;
180 PDEVICE_EXTENSION DeviceExt
,
182 PUNICODE_STRING FileToFindU
,
183 PVFAT_DIRENTRY_CONTEXT DirContext
,
186 * FUNCTION: Find a file
189 PWCHAR PathNameBuffer
;
190 USHORT PathNameBufferLength
;
192 PVOID Context
= NULL
;
196 UNICODE_STRING PathNameU
;
197 UNICODE_STRING FileToFindUpcase
;
200 DPRINT ("FindFile(Parent %x, FileToFind '%wZ', DirIndex: %d)\n",
201 Parent
, FileToFindU
, DirContext
->DirIndex
);
202 DPRINT ("FindFile: Path %wZ)\n",&Parent
->PathNameU
);
204 PathNameBufferLength
= LONGNAME_MAX_LENGTH
* sizeof(WCHAR
);
205 PathNameBuffer
= ExAllocatePool(NonPagedPool
, PathNameBufferLength
+ sizeof(WCHAR
));
209 return STATUS_INSUFFICIENT_RESOURCES
;
212 PathNameU
.Buffer
= PathNameBuffer
;
213 PathNameU
.Length
= 0;
214 PathNameU
.MaximumLength
= PathNameBufferLength
;
216 DirContext
->LongNameU
.Length
= 0;
217 DirContext
->ShortNameU
.Length
= 0;
219 WildCard
= FsRtlDoesNameContainWildCards(FileToFindU
);
221 if (WildCard
== FALSE
)
223 /* if there is no '*?' in the search name, than look first for an existing fcb */
224 RtlCopyUnicodeString(&PathNameU
, &Parent
->PathNameU
);
225 if (!vfatFCBIsRoot(Parent
))
227 PathNameU
.Buffer
[PathNameU
.Length
/ sizeof(WCHAR
)] = L
'\\';
228 PathNameU
.Length
+= sizeof(WCHAR
);
230 RtlAppendUnicodeStringToString(&PathNameU
, FileToFindU
);
231 PathNameU
.Buffer
[PathNameU
.Length
/ sizeof(WCHAR
)] = 0;
232 rcFcb
= vfatGrabFCBFromTable(DeviceExt
, &PathNameU
);
235 ULONG startIndex
= rcFcb
->startIndex
;
236 if ((rcFcb
->Flags
& FCB_IS_FATX_ENTRY
) && !vfatFCBIsRoot(Parent
))
240 if(startIndex
>= DirContext
->DirIndex
)
242 RtlCopyUnicodeString(&DirContext
->LongNameU
, &rcFcb
->LongNameU
);
243 RtlCopyUnicodeString(&DirContext
->ShortNameU
, &rcFcb
->ShortNameU
);
244 RtlCopyMemory(&DirContext
->DirEntry
, &rcFcb
->entry
, sizeof(DIR_ENTRY
));
245 DirContext
->StartIndex
= rcFcb
->startIndex
;
246 DirContext
->DirIndex
= rcFcb
->dirIndex
;
247 DPRINT("FindFile: new Name %wZ, DirIndex %d (%d)\n",
248 &DirContext
->LongNameU
, DirContext
->DirIndex
, DirContext
->StartIndex
);
249 Status
= STATUS_SUCCESS
;
254 Status
= STATUS_UNSUCCESSFUL
;
256 vfatReleaseFCB(DeviceExt
, rcFcb
);
257 ExFreePool(PathNameBuffer
);
262 /* FsRtlIsNameInExpression need the searched string to be upcase,
263 * even if IgnoreCase is specified */
264 Status
= RtlUpcaseUnicodeString(&FileToFindUpcase
, FileToFindU
, TRUE
);
265 if (!NT_SUCCESS(Status
))
268 ExFreePool(PathNameBuffer
);
274 Status
= DeviceExt
->GetNextDirEntry(&Context
, &Page
, Parent
, DirContext
, First
);
276 if (Status
== STATUS_NO_MORE_ENTRIES
)
280 if (ENTRY_VOLUME(DeviceExt
, &DirContext
->DirEntry
))
282 DirContext
->DirIndex
++;
287 Found
= FsRtlIsNameInExpression(&FileToFindUpcase
, &DirContext
->LongNameU
, TRUE
, NULL
) ||
288 FsRtlIsNameInExpression(&FileToFindUpcase
, &DirContext
->ShortNameU
, TRUE
, NULL
);
292 Found
= FsRtlAreNamesEqual(&DirContext
->LongNameU
, FileToFindU
, TRUE
, NULL
) ||
293 FsRtlAreNamesEqual(&DirContext
->ShortNameU
, FileToFindU
, TRUE
, NULL
);
300 RtlCopyUnicodeString(&PathNameU
, &Parent
->PathNameU
);
301 if (!vfatFCBIsRoot(Parent
))
303 PathNameU
.Buffer
[PathNameU
.Length
/ sizeof(WCHAR
)] = L
'\\';
304 PathNameU
.Length
+= sizeof(WCHAR
);
306 RtlAppendUnicodeStringToString(&PathNameU
, &DirContext
->LongNameU
);
307 PathNameU
.Buffer
[PathNameU
.Length
/ sizeof(WCHAR
)] = 0;
308 rcFcb
= vfatGrabFCBFromTable(DeviceExt
, &PathNameU
);
311 RtlCopyMemory(&DirContext
->DirEntry
, &rcFcb
->entry
, sizeof(DIR_ENTRY
));
312 vfatReleaseFCB(DeviceExt
, rcFcb
);
315 DPRINT("%d\n", DirContext
->LongNameU
.Length
);
316 DPRINT("FindFile: new Name %wZ, DirIndex %d\n",
317 &DirContext
->LongNameU
, DirContext
->DirIndex
);
321 CcUnpinData(Context
);
323 RtlFreeUnicodeString(&FileToFindUpcase
);
324 ExFreePool(PathNameBuffer
);
325 return STATUS_SUCCESS
;
327 DirContext
->DirIndex
++;
332 CcUnpinData(Context
);
335 RtlFreeUnicodeString(&FileToFindUpcase
);
336 ExFreePool(PathNameBuffer
);
343 PDEVICE_EXTENSION DeviceExt
,
344 PUNICODE_STRING PathNameU
,
345 PFILE_OBJECT FileObject
,
346 PVFATFCB
* ParentFcb
)
348 * FUNCTION: Opens a file
354 DPRINT ("VfatOpenFile(%08lx, '%wZ', %08lx, %08lx)\n", DeviceExt
, PathNameU
, FileObject
, ParentFcb
);
356 if (FileObject
->RelatedFileObject
)
358 DPRINT ("'%wZ'\n", &FileObject
->RelatedFileObject
->FileName
);
360 *ParentFcb
= FileObject
->RelatedFileObject
->FsContext
;
361 (*ParentFcb
)->RefCount
++;
368 if (!DeviceExt
->FatInfo
.FixedMedia
)
370 Status
= VfatBlockDeviceIoControl (DeviceExt
->StorageDevice
,
371 IOCTL_DISK_CHECK_VERIFY
,
378 if (Status
== STATUS_VERIFY_REQUIRED
)
381 PDEVICE_OBJECT DeviceToVerify
;
383 DPRINT ("Media change detected!\n");
384 DPRINT ("Device %p\n", DeviceExt
->StorageDevice
);
386 DeviceToVerify
= IoGetDeviceToVerify (PsGetCurrentThread ());
388 IoSetDeviceToVerify (PsGetCurrentThread (),
390 Status
= IoVerifyVolume (DeviceExt
->StorageDevice
,
393 if (!NT_SUCCESS(Status
))
395 DPRINT ("Status %lx\n", Status
);
403 (*ParentFcb
)->RefCount
++;
406 /* try first to find an existing FCB in memory */
407 DPRINT ("Checking for existing FCB in memory\n");
409 Status
= vfatGetFCBForFile (DeviceExt
, ParentFcb
, &Fcb
, PathNameU
);
410 if (!NT_SUCCESS (Status
))
412 DPRINT ("Could not make a new FCB, status: %x\n", Status
);
415 if (Fcb
->Flags
& FCB_DELETE_PENDING
)
417 vfatReleaseFCB (DeviceExt
, Fcb
);
418 return STATUS_DELETE_PENDING
;
420 DPRINT ("Attaching FCB to fileObject\n");
421 Status
= vfatAttachFCBToFileObject (DeviceExt
, Fcb
, FileObject
);
422 if (!NT_SUCCESS(Status
))
424 vfatReleaseFCB (DeviceExt
, Fcb
);
430 VfatCreateFile ( PDEVICE_OBJECT DeviceObject
, PIRP Irp
)
432 * FUNCTION: Create or open a file
435 PIO_STACK_LOCATION Stack
;
436 PFILE_OBJECT FileObject
;
437 NTSTATUS Status
= STATUS_SUCCESS
;
438 PDEVICE_EXTENSION DeviceExt
;
439 ULONG RequestedDisposition
, RequestedOptions
;
441 PVFATFCB pFcb
= NULL
;
442 PVFATFCB ParentFcb
= NULL
;
444 BOOLEAN PagingFileCreate
= FALSE
;
446 UNICODE_STRING FileNameU
;
447 UNICODE_STRING PathNameU
;
449 /* Unpack the various parameters. */
450 Stack
= IoGetCurrentIrpStackLocation (Irp
);
451 RequestedDisposition
= ((Stack
->Parameters
.Create
.Options
>> 24) & 0xff);
453 Stack
->Parameters
.Create
.Options
& FILE_VALID_OPTION_FLAGS
;
454 PagingFileCreate
= (Stack
->Flags
& SL_OPEN_PAGING_FILE
) ? TRUE
: FALSE
;
455 FileObject
= Stack
->FileObject
;
456 DeviceExt
= DeviceObject
->DeviceExtension
;
458 /* Check their validity. */
459 if (RequestedOptions
& FILE_DIRECTORY_FILE
&&
460 RequestedDisposition
== FILE_SUPERSEDE
)
462 return(STATUS_INVALID_PARAMETER
);
465 if (RequestedOptions
& FILE_DIRECTORY_FILE
&&
466 RequestedOptions
& FILE_NON_DIRECTORY_FILE
)
468 return(STATUS_INVALID_PARAMETER
);
471 /* This a open operation for the volume itself */
472 if (FileObject
->FileName
.Length
== 0 &&
473 FileObject
->RelatedFileObject
== NULL
)
475 if (RequestedDisposition
== FILE_CREATE
||
476 RequestedDisposition
== FILE_OVERWRITE_IF
||
477 RequestedDisposition
== FILE_SUPERSEDE
)
479 return(STATUS_ACCESS_DENIED
);
481 if (RequestedOptions
& FILE_DIRECTORY_FILE
)
483 return(STATUS_NOT_A_DIRECTORY
);
485 pFcb
= DeviceExt
->VolumeFcb
;
486 pCcb
= ExAllocateFromNPagedLookasideList(&VfatGlobalData
->CcbLookasideList
);
489 return (STATUS_INSUFFICIENT_RESOURCES
);
491 RtlZeroMemory(pCcb
, sizeof(VFATCCB
));
492 FileObject
->SectionObjectPointer
= &pFcb
->SectionObjectPointers
;
493 FileObject
->FsContext
= pFcb
;
494 FileObject
->FsContext2
= pCcb
;
497 Irp
->IoStatus
.Information
= FILE_OPENED
;
498 return(STATUS_SUCCESS
);
502 * Check for illegal characters and illegale dot sequences in the file name
504 PathNameU
= FileObject
->FileName
;
505 c
= PathNameU
.Buffer
+ PathNameU
.Length
/ sizeof(WCHAR
);
508 while (c
-- > PathNameU
.Buffer
)
510 if (*c
== L
'\\' || c
== PathNameU
.Buffer
)
512 if (Dots
&& last
> c
)
514 return(STATUS_OBJECT_NAME_INVALID
);
524 if (*c
!= '\\' && vfatIsLongIllegal(*c
))
526 return(STATUS_OBJECT_NAME_INVALID
);
529 if (FileObject
->RelatedFileObject
&& PathNameU
.Buffer
[0] == L
'\\')
531 return(STATUS_OBJECT_NAME_INVALID
);
533 if (PathNameU
.Length
> sizeof(WCHAR
) && PathNameU
.Buffer
[PathNameU
.Length
/sizeof(WCHAR
)-1] == L
'\\')
535 PathNameU
.Length
-= sizeof(WCHAR
);
538 /* Try opening the file. */
539 Status
= VfatOpenFile (DeviceExt
, &PathNameU
, FileObject
, &ParentFcb
);
542 * If the directory containing the file to open doesn't exist then
545 if (Status
== STATUS_OBJECT_PATH_NOT_FOUND
||
546 Status
== STATUS_INVALID_PARAMETER
||
547 Status
== STATUS_DELETE_PENDING
)
551 vfatReleaseFCB (DeviceExt
, ParentFcb
);
555 if (!NT_SUCCESS(Status
) && ParentFcb
== NULL
)
557 DPRINT1("VfatOpenFile faild for '%wZ', status %x\n", &PathNameU
, Status
);
562 * If the file open failed then create the required file
564 if (!NT_SUCCESS (Status
))
566 if (RequestedDisposition
== FILE_CREATE
||
567 RequestedDisposition
== FILE_OPEN_IF
||
568 RequestedDisposition
== FILE_OVERWRITE_IF
||
569 RequestedDisposition
== FILE_SUPERSEDE
)
572 Attributes
= Stack
->Parameters
.Create
.FileAttributes
;
574 vfatSplitPathName(&PathNameU
, NULL
, &FileNameU
);
575 Status
= VfatAddEntry (DeviceExt
, &FileNameU
, &pFcb
, ParentFcb
, RequestedOptions
,
576 (UCHAR
)(Attributes
& FILE_ATTRIBUTE_VALID_FLAGS
));
577 vfatReleaseFCB (DeviceExt
, ParentFcb
);
578 if (NT_SUCCESS (Status
))
580 Status
= vfatAttachFCBToFileObject (DeviceExt
, pFcb
, FileObject
);
581 if ( !NT_SUCCESS(Status
) )
583 vfatReleaseFCB (DeviceExt
, pFcb
);
587 Irp
->IoStatus
.Information
= FILE_CREATED
;
588 VfatSetAllocationSizeInformation(FileObject
,
591 &Irp
->Overlay
.AllocationSize
);
592 VfatSetExtendedAttributes(FileObject
,
593 Irp
->AssociatedIrp
.SystemBuffer
,
594 Stack
->Parameters
.Create
.EaLength
);
596 if (PagingFileCreate
)
598 pFcb
->Flags
|= FCB_IS_PAGE_FILE
;
610 vfatReleaseFCB (DeviceExt
, ParentFcb
);
619 vfatReleaseFCB (DeviceExt
, ParentFcb
);
621 /* Otherwise fail if the caller wanted to create a new file */
622 if (RequestedDisposition
== FILE_CREATE
)
624 Irp
->IoStatus
.Information
= FILE_EXISTS
;
625 VfatCloseFile (DeviceExt
, FileObject
);
626 return(STATUS_OBJECT_NAME_COLLISION
);
629 pFcb
= FileObject
->FsContext
;
631 if (pFcb
->OpenHandleCount
!= 0)
633 Status
= IoCheckShareAccess(Stack
->Parameters
.Create
.SecurityContext
->DesiredAccess
,
634 Stack
->Parameters
.Create
.ShareAccess
,
636 &pFcb
->FCBShareAccess
,
638 if (!NT_SUCCESS(Status
))
640 VfatCloseFile (DeviceExt
, FileObject
);
646 * Check the file has the requested attributes
648 if (RequestedOptions
& FILE_NON_DIRECTORY_FILE
&&
649 *pFcb
->Attributes
& FILE_ATTRIBUTE_DIRECTORY
)
651 VfatCloseFile (DeviceExt
, FileObject
);
652 return(STATUS_FILE_IS_A_DIRECTORY
);
654 if (RequestedOptions
& FILE_DIRECTORY_FILE
&&
655 !(*pFcb
->Attributes
& FILE_ATTRIBUTE_DIRECTORY
))
657 VfatCloseFile (DeviceExt
, FileObject
);
658 return(STATUS_NOT_A_DIRECTORY
);
661 if (PagingFileCreate
)
664 * Do more checking for page files. It is possible,
665 * that the file was opened and closed previously
666 * as a normal cached file. In this case, the cache
667 * manager has referenced the fileobject and the fcb
668 * is held in memory. Try to remove the fileobject
669 * from cache manager and use the fcb.
671 if (pFcb
->RefCount
> 1)
673 if(!(pFcb
->Flags
& FCB_IS_PAGE_FILE
))
675 VfatCloseFile(DeviceExt
, FileObject
);
676 return(STATUS_INVALID_PARAMETER
);
681 pFcb
->Flags
|= FCB_IS_PAGE_FILE
;
686 if (pFcb
->Flags
& FCB_IS_PAGE_FILE
)
688 VfatCloseFile(DeviceExt
, FileObject
);
689 return(STATUS_INVALID_PARAMETER
);
694 if (RequestedDisposition
== FILE_OVERWRITE
||
695 RequestedDisposition
== FILE_OVERWRITE_IF
||
696 RequestedDisposition
== FILE_SUPERSEDE
)
698 ExAcquireResourceExclusiveLite(&(pFcb
->MainResource
), TRUE
);
699 Status
= VfatSetAllocationSizeInformation (FileObject
,
702 &Irp
->Overlay
.AllocationSize
);
703 ExReleaseResourceLite(&(pFcb
->MainResource
));
704 if (!NT_SUCCESS (Status
))
706 VfatCloseFile (DeviceExt
, FileObject
);
711 if (RequestedDisposition
== FILE_SUPERSEDE
)
713 Irp
->IoStatus
.Information
= FILE_SUPERSEDED
;
715 else if (RequestedDisposition
== FILE_OVERWRITE
||
716 RequestedDisposition
== FILE_OVERWRITE_IF
)
718 Irp
->IoStatus
.Information
= FILE_OVERWRITTEN
;
722 Irp
->IoStatus
.Information
= FILE_OPENED
;
726 if (pFcb
->OpenHandleCount
== 0)
728 IoSetShareAccess(Stack
->Parameters
.Create
.SecurityContext
->DesiredAccess
,
729 Stack
->Parameters
.Create
.ShareAccess
,
731 &pFcb
->FCBShareAccess
);
737 &pFcb
->FCBShareAccess
742 pFcb
->OpenHandleCount
++;
744 /* FIXME : test write access if requested */
751 VfatCreate (PVFAT_IRP_CONTEXT IrpContext
)
753 * FUNCTION: Create or open a file
760 if (IrpContext
->DeviceObject
== VfatGlobalData
->DeviceObject
)
762 /* DeviceObject represents FileSystem instead of logical volume */
763 DPRINT ("FsdCreate called with file system\n");
764 IrpContext
->Irp
->IoStatus
.Information
= FILE_OPENED
;
765 IrpContext
->Irp
->IoStatus
.Status
= STATUS_SUCCESS
;
766 IoCompleteRequest (IrpContext
->Irp
, IO_DISK_INCREMENT
);
767 VfatFreeIrpContext(IrpContext
);
768 return(STATUS_SUCCESS
);
771 if (!(IrpContext
->Flags
& IRPCONTEXT_CANWAIT
))
773 return(VfatQueueRequest (IrpContext
));
776 IrpContext
->Irp
->IoStatus
.Information
= 0;
777 ExAcquireResourceExclusiveLite (&IrpContext
->DeviceExt
->DirResource
, TRUE
);
778 Status
= VfatCreateFile (IrpContext
->DeviceObject
, IrpContext
->Irp
);
779 ExReleaseResourceLite (&IrpContext
->DeviceExt
->DirResource
);
781 IrpContext
->Irp
->IoStatus
.Status
= Status
;
782 IoCompleteRequest (IrpContext
->Irp
,
783 (CCHAR
)(NT_SUCCESS(Status
) ? IO_DISK_INCREMENT
: IO_NO_INCREMENT
));
784 VfatFreeIrpContext(IrpContext
);