3 * Copyright (C) 2002 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 along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20 * COPYRIGHT: See COPYING in the top level directory
21 * PROJECT: ReactOS kernel
22 * FILE: drivers/fs/vfat/fsctl.c
23 * PURPOSE: VFAT Filesystem
26 /* INCLUDES *****************************************************************/
33 /* FUNCTIONS ****************************************************************/
35 #define CACHEPAGESIZE(pDeviceExt) ((pDeviceExt)->FatInfo.BytesPerCluster > PAGE_SIZE ? \
36 (pDeviceExt)->FatInfo.BytesPerCluster : PAGE_SIZE)
41 PDEVICE_OBJECT DeviceToMount
,
42 PBOOLEAN RecognizedFS
,
46 PARTITION_INFORMATION PartitionInfo
;
47 DISK_GEOMETRY DiskGeometry
;
52 struct _BootSector
* Boot
;
53 struct _BootSectorFatX
* BootFatX
;
54 BOOLEAN PartitionInfoIsValid
= FALSE
;
56 DPRINT("VfatHasFileSystem\n");
58 *RecognizedFS
= FALSE
;
60 Size
= sizeof(DISK_GEOMETRY
);
61 Status
= VfatBlockDeviceIoControl(DeviceToMount
,
62 IOCTL_DISK_GET_DRIVE_GEOMETRY
,
68 if (!NT_SUCCESS(Status
))
70 DPRINT("VfatBlockDeviceIoControl faild (%x)\n", Status
);
74 FatInfo
.FixedMedia
= DiskGeometry
.MediaType
== FixedMedia
? TRUE
: FALSE
;
75 if (DiskGeometry
.MediaType
== FixedMedia
|| DiskGeometry
.MediaType
== RemovableMedia
)
77 // We have found a hard disk
78 Size
= sizeof(PARTITION_INFORMATION
);
79 Status
= VfatBlockDeviceIoControl(DeviceToMount
,
80 IOCTL_DISK_GET_PARTITION_INFO
,
86 if (!NT_SUCCESS(Status
))
88 DPRINT("VfatBlockDeviceIoControl faild (%x)\n", Status
);
92 DPRINT("Partition Information:\n");
93 DPRINT("StartingOffset %I64x\n", PartitionInfo
.StartingOffset
.QuadPart
/ 512);
94 DPRINT("PartitionLength %I64x\n", PartitionInfo
.PartitionLength
.QuadPart
/ 512);
95 DPRINT("HiddenSectors %u\n", PartitionInfo
.HiddenSectors
);
96 DPRINT("PartitionNumber %u\n", PartitionInfo
.PartitionNumber
);
97 DPRINT("PartitionType %u\n", PartitionInfo
.PartitionType
);
98 DPRINT("BootIndicator %u\n", PartitionInfo
.BootIndicator
);
99 DPRINT("RecognizedPartition %u\n", PartitionInfo
.RecognizedPartition
);
100 DPRINT("RewritePartition %u\n", PartitionInfo
.RewritePartition
);
101 if (PartitionInfo
.PartitionType
)
103 if (PartitionInfo
.PartitionType
== PARTITION_FAT_12
||
104 PartitionInfo
.PartitionType
== PARTITION_FAT_16
||
105 PartitionInfo
.PartitionType
== PARTITION_HUGE
||
106 PartitionInfo
.PartitionType
== PARTITION_FAT32
||
107 PartitionInfo
.PartitionType
== PARTITION_FAT32_XINT13
||
108 PartitionInfo
.PartitionType
== PARTITION_XINT13
)
110 PartitionInfoIsValid
= TRUE
;
111 *RecognizedFS
= TRUE
;
114 else if (DiskGeometry
.MediaType
== RemovableMedia
&&
115 PartitionInfo
.PartitionNumber
> 0 &&
116 PartitionInfo
.StartingOffset
.QuadPart
== 0 &&
117 PartitionInfo
.PartitionLength
.QuadPart
> 0)
119 /* This is possible a removable media formated as super floppy */
120 PartitionInfoIsValid
= TRUE
;
121 *RecognizedFS
= TRUE
;
124 else if (DiskGeometry
.MediaType
== Unknown
)
127 * Floppy disk driver can return Unknown as media type if it
128 * doesn't know yet what floppy in the drive really is. This is
129 * perfectly correct to do under Windows.
131 *RecognizedFS
= TRUE
;
132 DiskGeometry
.BytesPerSector
= 512;
136 *RecognizedFS
= TRUE
;
141 Boot
= ExAllocatePoolWithTag(NonPagedPool
, DiskGeometry
.BytesPerSector
, TAG_VFAT
);
144 return STATUS_INSUFFICIENT_RESOURCES
;
149 /* Try to recognize FAT12/FAT16/FAT32 partitions */
150 Status
= VfatReadDisk(DeviceToMount
, &Offset
, DiskGeometry
.BytesPerSector
, (PUCHAR
) Boot
, FALSE
);
151 if (NT_SUCCESS(Status
))
153 if (Boot
->Signatur1
!= 0xaa55)
155 *RecognizedFS
= FALSE
;
159 Boot
->BytesPerSector
!= 512 &&
160 Boot
->BytesPerSector
!= 1024 &&
161 Boot
->BytesPerSector
!= 2048 &&
162 Boot
->BytesPerSector
!= 4096)
164 DPRINT1("BytesPerSector %u\n", Boot
->BytesPerSector
);
165 *RecognizedFS
= FALSE
;
169 Boot
->FATCount
!= 1 &&
172 DPRINT1("FATCount %u\n", Boot
->FATCount
);
173 *RecognizedFS
= FALSE
;
177 Boot
->Media
!= 0xf0 &&
178 Boot
->Media
!= 0xf8 &&
179 Boot
->Media
!= 0xf9 &&
180 Boot
->Media
!= 0xfa &&
181 Boot
->Media
!= 0xfb &&
182 Boot
->Media
!= 0xfc &&
183 Boot
->Media
!= 0xfd &&
184 Boot
->Media
!= 0xfe &&
187 DPRINT1("Media %02x\n", Boot
->Media
);
188 *RecognizedFS
= FALSE
;
192 Boot
->SectorsPerCluster
!= 1 &&
193 Boot
->SectorsPerCluster
!= 2 &&
194 Boot
->SectorsPerCluster
!= 4 &&
195 Boot
->SectorsPerCluster
!= 8 &&
196 Boot
->SectorsPerCluster
!= 16 &&
197 Boot
->SectorsPerCluster
!= 32 &&
198 Boot
->SectorsPerCluster
!= 64 &&
199 Boot
->SectorsPerCluster
!= 128)
201 DPRINT1("SectorsPerCluster %02x\n", Boot
->SectorsPerCluster
);
202 *RecognizedFS
= FALSE
;
206 Boot
->BytesPerSector
* Boot
->SectorsPerCluster
> 32 * 1024)
208 DPRINT1("ClusterSize %dx\n", Boot
->BytesPerSector
* Boot
->SectorsPerCluster
);
209 *RecognizedFS
= FALSE
;
214 FatInfo
.VolumeID
= Boot
->VolumeID
;
215 FatInfo
.FATStart
= Boot
->ReservedSectors
;
216 FatInfo
.FATCount
= Boot
->FATCount
;
217 FatInfo
.FATSectors
= Boot
->FATSectors
? Boot
->FATSectors
: ((struct _BootSector32
*) Boot
)->FATSectors32
;
218 FatInfo
.BytesPerSector
= Boot
->BytesPerSector
;
219 FatInfo
.SectorsPerCluster
= Boot
->SectorsPerCluster
;
220 FatInfo
.BytesPerCluster
= FatInfo
.BytesPerSector
* FatInfo
.SectorsPerCluster
;
221 FatInfo
.rootDirectorySectors
= ((Boot
->RootEntries
* 32) + Boot
->BytesPerSector
- 1) / Boot
->BytesPerSector
;
222 FatInfo
.rootStart
= FatInfo
.FATStart
+ FatInfo
.FATCount
* FatInfo
.FATSectors
;
223 FatInfo
.dataStart
= FatInfo
.rootStart
+ FatInfo
.rootDirectorySectors
;
224 FatInfo
.Sectors
= Sectors
= Boot
->Sectors
? Boot
->Sectors
: Boot
->SectorsHuge
;
225 Sectors
-= Boot
->ReservedSectors
+ FatInfo
.FATCount
* FatInfo
.FATSectors
+ FatInfo
.rootDirectorySectors
;
226 FatInfo
.NumberOfClusters
= Sectors
/ Boot
->SectorsPerCluster
;
227 if (FatInfo
.NumberOfClusters
< 4085)
230 FatInfo
.FatType
= FAT12
;
231 FatInfo
.RootCluster
= (FatInfo
.rootStart
- 1) / FatInfo
.SectorsPerCluster
;
233 else if (FatInfo
.NumberOfClusters
>= 65525)
236 FatInfo
.FatType
= FAT32
;
237 FatInfo
.RootCluster
= ((struct _BootSector32
*) Boot
)->RootCluster
;
238 FatInfo
.rootStart
= FatInfo
.dataStart
+ ((FatInfo
.RootCluster
- 2) * FatInfo
.SectorsPerCluster
);
239 FatInfo
.VolumeID
= ((struct _BootSector32
*) Boot
)->VolumeID
;
244 FatInfo
.FatType
= FAT16
;
245 FatInfo
.RootCluster
= FatInfo
.rootStart
/ FatInfo
.SectorsPerCluster
;
248 if (PartitionInfoIsValid
&&
249 FatInfo
.Sectors
> PartitionInfo
.PartitionLength
.QuadPart
/ FatInfo
.BytesPerSector
)
251 *RecognizedFS
= FALSE
;
254 if (pFatInfo
&& *RecognizedFS
)
264 if (!*RecognizedFS
&& PartitionInfoIsValid
)
266 BootFatX
= ExAllocatePoolWithTag(NonPagedPool
, sizeof(struct _BootSectorFatX
), TAG_VFAT
);
267 if (BootFatX
== NULL
)
270 return STATUS_INSUFFICIENT_RESOURCES
;
275 /* Try to recognize FATX16/FATX32 partitions (Xbox) */
276 Status
= VfatReadDisk(DeviceToMount
, &Offset
, sizeof(struct _BootSectorFatX
), (PUCHAR
) BootFatX
, FALSE
);
277 if (NT_SUCCESS(Status
))
279 *RecognizedFS
= TRUE
;
280 if (BootFatX
->SysType
[0] != 'F' ||
281 BootFatX
->SysType
[1] != 'A' ||
282 BootFatX
->SysType
[2] != 'T' ||
283 BootFatX
->SysType
[3] != 'X')
285 DPRINT1("SysType %c%c%c%c\n", BootFatX
->SysType
[0], BootFatX
->SysType
[1], BootFatX
->SysType
[2], BootFatX
->SysType
[3]);
290 BootFatX
->SectorsPerCluster
!= 1 &&
291 BootFatX
->SectorsPerCluster
!= 2 &&
292 BootFatX
->SectorsPerCluster
!= 4 &&
293 BootFatX
->SectorsPerCluster
!= 8 &&
294 BootFatX
->SectorsPerCluster
!= 16 &&
295 BootFatX
->SectorsPerCluster
!= 32 &&
296 BootFatX
->SectorsPerCluster
!= 64 &&
297 BootFatX
->SectorsPerCluster
!= 128)
299 DPRINT1("SectorsPerCluster %lu\n", BootFatX
->SectorsPerCluster
);
305 FatInfo
.BytesPerSector
= DiskGeometry
.BytesPerSector
;
306 FatInfo
.SectorsPerCluster
= BootFatX
->SectorsPerCluster
;
307 FatInfo
.rootDirectorySectors
= BootFatX
->SectorsPerCluster
;
308 FatInfo
.BytesPerCluster
= BootFatX
->SectorsPerCluster
* DiskGeometry
.BytesPerSector
;
309 FatInfo
.Sectors
= (ULONG
)(PartitionInfo
.PartitionLength
.QuadPart
/ DiskGeometry
.BytesPerSector
);
310 if (FatInfo
.Sectors
/ FatInfo
.SectorsPerCluster
< 65525)
313 FatInfo
.FatType
= FATX16
;
318 FatInfo
.FatType
= FATX32
;
320 FatInfo
.VolumeID
= BootFatX
->VolumeID
;
321 FatInfo
.FATStart
= sizeof(struct _BootSectorFatX
) / DiskGeometry
.BytesPerSector
;
322 FatInfo
.FATCount
= BootFatX
->FATCount
;
324 ROUND_UP(FatInfo
.Sectors
/ FatInfo
.SectorsPerCluster
* (FatInfo
.FatType
== FATX16
? 2 : 4), 4096) /
325 FatInfo
.BytesPerSector
;
326 FatInfo
.rootStart
= FatInfo
.FATStart
+ FatInfo
.FATCount
* FatInfo
.FATSectors
;
327 FatInfo
.RootCluster
= (FatInfo
.rootStart
- 1) / FatInfo
.SectorsPerCluster
;
328 FatInfo
.dataStart
= FatInfo
.rootStart
+ FatInfo
.rootDirectorySectors
;
329 FatInfo
.NumberOfClusters
= (FatInfo
.Sectors
- FatInfo
.dataStart
) / FatInfo
.SectorsPerCluster
;
331 if (pFatInfo
&& *RecognizedFS
)
337 ExFreePool(BootFatX
);
340 DPRINT("VfatHasFileSystem done\n");
345 * FUNCTION: Mounts the device
350 PDEVICE_EXTENSION DeviceExt
,
351 PDEVICE_OBJECT DeviceToMount
)
354 BOOLEAN RecognizedFS
;
356 DPRINT("Mounting VFAT device...\n");
358 Status
= VfatHasFileSystem(DeviceToMount
, &RecognizedFS
, &DeviceExt
->FatInfo
);
359 if (!NT_SUCCESS(Status
))
363 DPRINT("MountVfatdev %u, PAGE_SIZE = %d\n", DeviceExt
->FatInfo
.BytesPerCluster
, PAGE_SIZE
);
365 return STATUS_SUCCESS
;
370 * FUNCTION: Mount the filesystem
375 PVFAT_IRP_CONTEXT IrpContext
)
377 PDEVICE_OBJECT DeviceObject
= NULL
;
378 PDEVICE_EXTENSION DeviceExt
= NULL
;
379 BOOLEAN RecognizedFS
;
382 PVFATFCB VolumeFcb
= NULL
;
384 PDEVICE_OBJECT DeviceToMount
;
386 UNICODE_STRING NameU
= RTL_CONSTANT_STRING(L
"\\$$Fat$$");
387 UNICODE_STRING VolumeNameU
= RTL_CONSTANT_STRING(L
"\\$$Volume$$");
392 DPRINT("VfatMount(IrpContext %p)\n", IrpContext
);
396 if (IrpContext
->DeviceObject
!= VfatGlobalData
->DeviceObject
)
398 Status
= STATUS_INVALID_DEVICE_REQUEST
;
402 DeviceToMount
= IrpContext
->Stack
->Parameters
.MountVolume
.DeviceObject
;
403 Vpb
= IrpContext
->Stack
->Parameters
.MountVolume
.Vpb
;
405 Status
= VfatHasFileSystem(DeviceToMount
, &RecognizedFS
, &FatInfo
);
406 if (!NT_SUCCESS(Status
))
411 if (RecognizedFS
== FALSE
)
413 DPRINT("VFAT: Unrecognized Volume\n");
414 Status
= STATUS_UNRECOGNIZED_VOLUME
;
418 /* Use prime numbers for the table size */
419 if (FatInfo
.FatType
== FAT12
)
421 HashTableSize
= 4099; // 4096 = 4 * 1024
423 else if (FatInfo
.FatType
== FAT16
||
424 FatInfo
.FatType
== FATX16
)
426 HashTableSize
= 16411; // 16384 = 16 * 1024
430 HashTableSize
= 65537; // 65536 = 64 * 1024;
432 HashTableSize
= FCB_HASH_TABLE_SIZE
;
433 DPRINT("VFAT: Recognized volume\n");
434 Status
= IoCreateDevice(VfatGlobalData
->DriverObject
,
435 ROUND_UP(sizeof (DEVICE_EXTENSION
), sizeof(ULONG
)) + sizeof(HASHENTRY
*) * HashTableSize
,
437 FILE_DEVICE_DISK_FILE_SYSTEM
,
438 DeviceToMount
->Characteristics
,
441 if (!NT_SUCCESS(Status
))
446 DeviceExt
= DeviceObject
->DeviceExtension
;
447 RtlZeroMemory(DeviceExt
, ROUND_UP(sizeof(DEVICE_EXTENSION
), sizeof(ULONG
)) + sizeof(HASHENTRY
*) * HashTableSize
);
448 DeviceExt
->FcbHashTable
= (HASHENTRY
**)((ULONG_PTR
)DeviceExt
+ ROUND_UP(sizeof(DEVICE_EXTENSION
), sizeof(ULONG
)));
449 DeviceExt
->HashTableSize
= HashTableSize
;
451 /* use same vpb as device disk */
452 DeviceObject
->Vpb
= Vpb
;
453 DeviceToMount
->Vpb
= Vpb
;
455 Status
= VfatMountDevice(DeviceExt
, DeviceToMount
);
456 if (!NT_SUCCESS(Status
))
458 /* FIXME: delete device object */
462 DPRINT("BytesPerSector: %u\n", DeviceExt
->FatInfo
.BytesPerSector
);
463 DPRINT("SectorsPerCluster: %u\n", DeviceExt
->FatInfo
.SectorsPerCluster
);
464 DPRINT("FATCount: %u\n", DeviceExt
->FatInfo
.FATCount
);
465 DPRINT("FATSectors: %u\n", DeviceExt
->FatInfo
.FATSectors
);
466 DPRINT("RootStart: %u\n", DeviceExt
->FatInfo
.rootStart
);
467 DPRINT("DataStart: %u\n", DeviceExt
->FatInfo
.dataStart
);
468 if (DeviceExt
->FatInfo
.FatType
== FAT32
)
470 DPRINT("RootCluster: %u\n", DeviceExt
->FatInfo
.RootCluster
);
473 switch (DeviceExt
->FatInfo
.FatType
)
476 DeviceExt
->GetNextCluster
= FAT12GetNextCluster
;
477 DeviceExt
->FindAndMarkAvailableCluster
= FAT12FindAndMarkAvailableCluster
;
478 DeviceExt
->WriteCluster
= FAT12WriteCluster
;
479 DeviceExt
->CleanShutBitMask
= 0;
484 DeviceExt
->GetNextCluster
= FAT16GetNextCluster
;
485 DeviceExt
->FindAndMarkAvailableCluster
= FAT16FindAndMarkAvailableCluster
;
486 DeviceExt
->WriteCluster
= FAT16WriteCluster
;
487 DeviceExt
->CleanShutBitMask
= 0x8000;
492 DeviceExt
->GetNextCluster
= FAT32GetNextCluster
;
493 DeviceExt
->FindAndMarkAvailableCluster
= FAT32FindAndMarkAvailableCluster
;
494 DeviceExt
->WriteCluster
= FAT32WriteCluster
;
495 DeviceExt
->CleanShutBitMask
= 0x80000000;
499 if (DeviceExt
->FatInfo
.FatType
== FATX16
||
500 DeviceExt
->FatInfo
.FatType
== FATX32
)
502 DeviceExt
->Flags
|= VCB_IS_FATX
;
503 DeviceExt
->GetNextDirEntry
= FATXGetNextDirEntry
;
504 DeviceExt
->BaseDateYear
= 2000;
508 DeviceExt
->GetNextDirEntry
= FATGetNextDirEntry
;
509 DeviceExt
->BaseDateYear
= 1980;
512 DeviceExt
->StorageDevice
= DeviceToMount
;
513 DeviceExt
->StorageDevice
->Vpb
->DeviceObject
= DeviceObject
;
514 DeviceExt
->StorageDevice
->Vpb
->RealDevice
= DeviceExt
->StorageDevice
;
515 DeviceExt
->StorageDevice
->Vpb
->Flags
|= VPB_MOUNTED
;
516 DeviceObject
->StackSize
= DeviceExt
->StorageDevice
->StackSize
+ 1;
517 DeviceObject
->Flags
&= ~DO_DEVICE_INITIALIZING
;
519 DPRINT("FsDeviceObject %p\n", DeviceObject
);
521 /* Initialize this resource early ... it's used in VfatCleanup */
522 ExInitializeResourceLite(&DeviceExt
->DirResource
);
524 DeviceExt
->FATFileObject
= IoCreateStreamFileObject(NULL
, DeviceExt
->StorageDevice
);
525 Fcb
= vfatNewFCB(DeviceExt
, &NameU
);
528 Status
= STATUS_INSUFFICIENT_RESOURCES
;
532 Ccb
= ExAllocateFromNPagedLookasideList(&VfatGlobalData
->CcbLookasideList
);
535 Status
= STATUS_INSUFFICIENT_RESOURCES
;
539 RtlZeroMemory(Ccb
, sizeof (VFATCCB
));
540 DeviceExt
->FATFileObject
->FsContext
= Fcb
;
541 DeviceExt
->FATFileObject
->FsContext2
= Ccb
;
542 DeviceExt
->FATFileObject
->SectionObjectPointer
= &Fcb
->SectionObjectPointers
;
543 DeviceExt
->FATFileObject
->PrivateCacheMap
= NULL
;
544 DeviceExt
->FATFileObject
->Vpb
= DeviceObject
->Vpb
;
545 Fcb
->FileObject
= DeviceExt
->FATFileObject
;
547 Fcb
->Flags
|= FCB_IS_FAT
;
549 Fcb
->RFCB
.FileSize
.QuadPart
= DeviceExt
->FatInfo
.FATSectors
* DeviceExt
->FatInfo
.BytesPerSector
;
550 Fcb
->RFCB
.ValidDataLength
= Fcb
->RFCB
.FileSize
;
551 Fcb
->RFCB
.AllocationSize
= Fcb
->RFCB
.FileSize
;
555 CcInitializeCacheMap(DeviceExt
->FATFileObject
,
556 (PCC_FILE_SIZES
)(&Fcb
->RFCB
.AllocationSize
),
558 &VfatGlobalData
->CacheMgrCallbacks
,
561 _SEH2_EXCEPT(EXCEPTION_EXECUTE_HANDLER
)
563 Status
= _SEH2_GetExceptionCode();
568 DeviceExt
->LastAvailableCluster
= 2;
569 ExInitializeResourceLite(&DeviceExt
->FatResource
);
571 InitializeListHead(&DeviceExt
->FcbListHead
);
573 VolumeFcb
= vfatNewFCB(DeviceExt
, &VolumeNameU
);
574 if (VolumeFcb
== NULL
)
576 Status
= STATUS_INSUFFICIENT_RESOURCES
;
580 VolumeFcb
->Flags
= FCB_IS_VOLUME
;
581 VolumeFcb
->RFCB
.FileSize
.QuadPart
= DeviceExt
->FatInfo
.Sectors
* DeviceExt
->FatInfo
.BytesPerSector
;
582 VolumeFcb
->RFCB
.ValidDataLength
= VolumeFcb
->RFCB
.FileSize
;
583 VolumeFcb
->RFCB
.AllocationSize
= VolumeFcb
->RFCB
.FileSize
;
584 DeviceExt
->VolumeFcb
= VolumeFcb
;
586 ExAcquireResourceExclusiveLite(&VfatGlobalData
->VolumeListLock
, TRUE
);
587 InsertHeadList(&VfatGlobalData
->VolumeListHead
, &DeviceExt
->VolumeListEntry
);
588 ExReleaseResourceLite(&VfatGlobalData
->VolumeListLock
);
590 /* read serial number */
591 DeviceObject
->Vpb
->SerialNumber
= DeviceExt
->FatInfo
.VolumeID
;
593 /* read volume label */
594 ReadVolumeLabel(DeviceExt
, DeviceObject
->Vpb
);
596 /* read clean shutdown bit status */
597 Status
= GetNextCluster(DeviceExt
, 1, &eocMark
);
598 if (NT_SUCCESS(Status
))
600 if (eocMark
& DeviceExt
->CleanShutBitMask
)
602 /* unset clean shutdown bit */
603 eocMark
&= ~DeviceExt
->CleanShutBitMask
;
604 WriteCluster(DeviceExt
, 1, eocMark
);
605 VolumeFcb
->Flags
|= VCB_CLEAR_DIRTY
;
609 VolumeFcb
->Flags
|= VCB_IS_DIRTY
;
611 FsRtlNotifyVolumeEvent(DeviceExt
->FATFileObject
, FSRTL_VOLUME_MOUNT
);
612 FsRtlNotifyInitializeSync(&DeviceExt
->NotifySync
);
613 InitializeListHead(&DeviceExt
->NotifyList
);
615 Status
= STATUS_SUCCESS
;
618 if (!NT_SUCCESS(Status
))
621 if (DeviceExt
&& DeviceExt
->FATFileObject
)
622 ObDereferenceObject (DeviceExt
->FATFileObject
);
628 IoDeleteDevice(DeviceObject
);
636 * FUNCTION: Verify the filesystem
641 PVFAT_IRP_CONTEXT IrpContext
)
643 PDEVICE_OBJECT DeviceToVerify
;
644 NTSTATUS Status
= STATUS_SUCCESS
;
646 BOOLEAN RecognizedFS
;
647 PDEVICE_EXTENSION DeviceExt
= IrpContext
->DeviceExt
;
649 DPRINT("VfatVerify(IrpContext %p)\n", IrpContext
);
651 DeviceToVerify
= IrpContext
->Stack
->Parameters
.VerifyVolume
.DeviceObject
;
652 Status
= VfatBlockDeviceIoControl(DeviceToVerify
,
653 IOCTL_DISK_CHECK_VERIFY
,
659 DeviceToVerify
->Flags
&= ~DO_VERIFY_VOLUME
;
660 if (!NT_SUCCESS(Status
) && Status
!= STATUS_VERIFY_REQUIRED
)
662 DPRINT("VfatBlockDeviceIoControl() failed (Status %lx)\n", Status
);
663 Status
= STATUS_WRONG_VOLUME
;
667 Status
= VfatHasFileSystem(DeviceToVerify
, &RecognizedFS
, &FatInfo
);
668 if (!NT_SUCCESS(Status
) || RecognizedFS
== FALSE
)
670 Status
= STATUS_WRONG_VOLUME
;
672 else if (sizeof(FATINFO
) == RtlCompareMemory(&FatInfo
, &DeviceExt
->FatInfo
, sizeof(FATINFO
)))
676 * Preformated floppy disks have very often a serial number of 0000:0000.
677 * We should calculate a crc sum over the sectors from the root directory as secondary volume number.
678 * Each write to the root directory must update this crc sum.
683 Status
= STATUS_WRONG_VOLUME
;
694 PVFAT_IRP_CONTEXT IrpContext
)
696 DPRINT("VfatGetVolumeBitmap (IrpContext %p)\n", IrpContext
);
697 return STATUS_INVALID_DEVICE_REQUEST
;
703 VfatGetRetrievalPointers(
704 PVFAT_IRP_CONTEXT IrpContext
)
706 PIO_STACK_LOCATION Stack
;
708 PRETRIEVAL_POINTERS_BUFFER RetrievalPointers
;
709 PFILE_OBJECT FileObject
;
710 ULONG MaxExtentCount
;
712 PDEVICE_EXTENSION DeviceExt
;
714 ULONG CurrentCluster
;
718 DPRINT("VfatGetRetrievalPointers(IrpContext %p)\n", IrpContext
);
720 DeviceExt
= IrpContext
->DeviceExt
;
721 FileObject
= IrpContext
->FileObject
;
722 Stack
= IrpContext
->Stack
;
723 if (Stack
->Parameters
.DeviceIoControl
.InputBufferLength
< sizeof(STARTING_VCN_INPUT_BUFFER
) ||
724 Stack
->Parameters
.DeviceIoControl
.Type3InputBuffer
== NULL
)
726 return STATUS_INVALID_PARAMETER
;
729 if (IrpContext
->Irp
->UserBuffer
== NULL
||
730 Stack
->Parameters
.DeviceIoControl
.OutputBufferLength
< sizeof(RETRIEVAL_POINTERS_BUFFER
))
732 return STATUS_BUFFER_TOO_SMALL
;
735 Fcb
= FileObject
->FsContext
;
737 ExAcquireResourceSharedLite(&Fcb
->MainResource
, TRUE
);
739 Vcn
= ((PSTARTING_VCN_INPUT_BUFFER
)Stack
->Parameters
.DeviceIoControl
.Type3InputBuffer
)->StartingVcn
;
740 RetrievalPointers
= IrpContext
->Irp
->UserBuffer
;
742 MaxExtentCount
= ((Stack
->Parameters
.DeviceIoControl
.OutputBufferLength
- sizeof(RetrievalPointers
->ExtentCount
) - sizeof(RetrievalPointers
->StartingVcn
)) / sizeof(RetrievalPointers
->Extents
[0]));
744 if (Vcn
.QuadPart
>= Fcb
->RFCB
.AllocationSize
.QuadPart
/ DeviceExt
->FatInfo
.BytesPerCluster
)
746 Status
= STATUS_INVALID_PARAMETER
;
750 CurrentCluster
= FirstCluster
= vfatDirEntryGetFirstCluster(DeviceExt
, &Fcb
->entry
);
751 Status
= OffsetToCluster(DeviceExt
, FirstCluster
,
752 Vcn
.u
.LowPart
* DeviceExt
->FatInfo
.BytesPerCluster
,
753 &CurrentCluster
, FALSE
);
754 if (!NT_SUCCESS(Status
))
759 RetrievalPointers
->StartingVcn
= Vcn
;
760 RetrievalPointers
->ExtentCount
= 0;
761 RetrievalPointers
->Extents
[0].Lcn
.u
.HighPart
= 0;
762 RetrievalPointers
->Extents
[0].Lcn
.u
.LowPart
= CurrentCluster
- 2;
764 while (CurrentCluster
!= 0xffffffff && RetrievalPointers
->ExtentCount
< MaxExtentCount
)
766 LastCluster
= CurrentCluster
;
767 Status
= NextCluster(DeviceExt
, CurrentCluster
, &CurrentCluster
, FALSE
);
769 if (!NT_SUCCESS(Status
))
774 if (LastCluster
+ 1 != CurrentCluster
)
776 RetrievalPointers
->Extents
[RetrievalPointers
->ExtentCount
].NextVcn
= Vcn
;
777 RetrievalPointers
->ExtentCount
++;
778 if (RetrievalPointers
->ExtentCount
< MaxExtentCount
)
780 RetrievalPointers
->Extents
[RetrievalPointers
->ExtentCount
].Lcn
.u
.HighPart
= 0;
781 RetrievalPointers
->Extents
[RetrievalPointers
->ExtentCount
].Lcn
.u
.LowPart
= CurrentCluster
- 2;
786 IrpContext
->Irp
->IoStatus
.Information
= sizeof(RETRIEVAL_POINTERS_BUFFER
) + (sizeof(RetrievalPointers
->Extents
[0]) * (RetrievalPointers
->ExtentCount
- 1));
787 Status
= STATUS_SUCCESS
;
790 ExReleaseResourceLite(&Fcb
->MainResource
);
798 PVFAT_IRP_CONTEXT IrpContext
)
800 DPRINT("VfatMoveFile(IrpContext %p)\n", IrpContext
);
801 return STATUS_INVALID_DEVICE_REQUEST
;
807 PVFAT_IRP_CONTEXT IrpContext
)
811 DPRINT("VfatIsVolumeDirty(IrpContext %p)\n", IrpContext
);
813 if (IrpContext
->Stack
->Parameters
.FileSystemControl
.OutputBufferLength
!= sizeof(ULONG
))
814 return STATUS_INVALID_BUFFER_SIZE
;
815 else if (!IrpContext
->Irp
->AssociatedIrp
.SystemBuffer
)
816 return STATUS_INVALID_USER_BUFFER
;
818 Flags
= (PULONG
)IrpContext
->Irp
->AssociatedIrp
.SystemBuffer
;
821 if ((IrpContext
->DeviceExt
->VolumeFcb
->Flags
& VCB_IS_DIRTY
) &&
822 !(IrpContext
->DeviceExt
->VolumeFcb
->Flags
& VCB_CLEAR_DIRTY
))
824 *Flags
|= VOLUME_IS_DIRTY
;
827 return STATUS_SUCCESS
;
833 PVFAT_IRP_CONTEXT IrpContext
)
836 PDEVICE_EXTENSION DeviceExt
;
837 NTSTATUS Status
= STATUS_SUCCESS
;
839 DPRINT("VfatMarkVolumeDirty(IrpContext %p)\n", IrpContext
);
840 DeviceExt
= IrpContext
->DeviceExt
;
842 if (!(DeviceExt
->VolumeFcb
->Flags
& VCB_IS_DIRTY
))
844 Status
= GetNextCluster(DeviceExt
, 1, &eocMark
);
845 if (NT_SUCCESS(Status
))
847 /* unset clean shutdown bit */
848 eocMark
&= ~DeviceExt
->CleanShutBitMask
;
849 Status
= WriteCluster(DeviceExt
, 1, eocMark
);
853 DeviceExt
->VolumeFcb
->Flags
&= ~VCB_CLEAR_DIRTY
;
859 * FUNCTION: File system control
862 VfatFileSystemControl(
863 PVFAT_IRP_CONTEXT IrpContext
)
867 DPRINT("VfatFileSystemControl(IrpContext %p)\n", IrpContext
);
870 ASSERT(IrpContext
->Irp
);
871 ASSERT(IrpContext
->Stack
);
873 IrpContext
->Irp
->IoStatus
.Information
= 0;
875 switch (IrpContext
->MinorFunction
)
877 case IRP_MN_KERNEL_CALL
:
878 case IRP_MN_USER_FS_REQUEST
:
879 switch(IrpContext
->Stack
->Parameters
.DeviceIoControl
.IoControlCode
)
881 case FSCTL_GET_VOLUME_BITMAP
:
882 Status
= VfatGetVolumeBitmap(IrpContext
);
885 case FSCTL_GET_RETRIEVAL_POINTERS
:
886 Status
= VfatGetRetrievalPointers(IrpContext
);
889 case FSCTL_MOVE_FILE
:
890 Status
= VfatMoveFile(IrpContext
);
893 case FSCTL_IS_VOLUME_DIRTY
:
894 Status
= VfatIsVolumeDirty(IrpContext
);
897 case FSCTL_MARK_VOLUME_DIRTY
:
898 Status
= VfatMarkVolumeDirty(IrpContext
);
902 Status
= STATUS_INVALID_DEVICE_REQUEST
;
906 case IRP_MN_MOUNT_VOLUME
:
907 Status
= VfatMount(IrpContext
);
910 case IRP_MN_VERIFY_VOLUME
:
911 DPRINT("VFATFS: IRP_MN_VERIFY_VOLUME\n");
912 Status
= VfatVerify(IrpContext
);
916 DPRINT("VFAT FSC: MinorFunction %u\n", IrpContext
->MinorFunction
);
917 Status
= STATUS_INVALID_DEVICE_REQUEST
;
921 IrpContext
->Irp
->IoStatus
.Status
= Status
;
923 IoCompleteRequest(IrpContext
->Irp
, IO_NO_INCREMENT
);
924 VfatFreeIrpContext(IrpContext
);