Sync with trunk r63935.
[reactos.git] / drivers / filesystems / fastfat / fsctl.c
1 /*
2 * ReactOS kernel
3 * Copyright (C) 2002 ReactOS Team
4 *
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.
9 *
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.
14 *
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.
18 */
19 /*
20 * COPYRIGHT: See COPYING in the top level directory
21 * PROJECT: ReactOS kernel
22 * FILE: drivers/fs/vfat/fsctl.c
23 * PURPOSE: VFAT Filesystem
24 */
25
26 /* INCLUDES *****************************************************************/
27
28 #include "vfat.h"
29
30 #define NDEBUG
31 #include <debug.h>
32
33 /* FUNCTIONS ****************************************************************/
34
35 #define CACHEPAGESIZE(pDeviceExt) ((pDeviceExt)->FatInfo.BytesPerCluster > PAGE_SIZE ? \
36 (pDeviceExt)->FatInfo.BytesPerCluster : PAGE_SIZE)
37
38 static
39 NTSTATUS
40 VfatHasFileSystem(
41 PDEVICE_OBJECT DeviceToMount,
42 PBOOLEAN RecognizedFS,
43 PFATINFO pFatInfo)
44 {
45 NTSTATUS Status;
46 PARTITION_INFORMATION PartitionInfo;
47 DISK_GEOMETRY DiskGeometry;
48 FATINFO FatInfo;
49 ULONG Size;
50 ULONG Sectors;
51 LARGE_INTEGER Offset;
52 struct _BootSector* Boot;
53 struct _BootSectorFatX* BootFatX;
54 BOOLEAN PartitionInfoIsValid = FALSE;
55
56 DPRINT("VfatHasFileSystem\n");
57
58 *RecognizedFS = FALSE;
59
60 Size = sizeof(DISK_GEOMETRY);
61 Status = VfatBlockDeviceIoControl(DeviceToMount,
62 IOCTL_DISK_GET_DRIVE_GEOMETRY,
63 NULL,
64 0,
65 &DiskGeometry,
66 &Size,
67 FALSE);
68 if (!NT_SUCCESS(Status))
69 {
70 DPRINT("VfatBlockDeviceIoControl faild (%x)\n", Status);
71 return Status;
72 }
73
74 FatInfo.FixedMedia = DiskGeometry.MediaType == FixedMedia ? TRUE : FALSE;
75 if (DiskGeometry.MediaType == FixedMedia || DiskGeometry.MediaType == RemovableMedia)
76 {
77 // We have found a hard disk
78 Size = sizeof(PARTITION_INFORMATION);
79 Status = VfatBlockDeviceIoControl(DeviceToMount,
80 IOCTL_DISK_GET_PARTITION_INFO,
81 NULL,
82 0,
83 &PartitionInfo,
84 &Size,
85 FALSE);
86 if (!NT_SUCCESS(Status))
87 {
88 DPRINT("VfatBlockDeviceIoControl faild (%x)\n", Status);
89 return Status;
90 }
91
92 PartitionInfoIsValid = TRUE;
93 DPRINT("Partition Information:\n");
94 DPRINT("StartingOffset %I64x\n", PartitionInfo.StartingOffset.QuadPart / 512);
95 DPRINT("PartitionLength %I64x\n", PartitionInfo.PartitionLength.QuadPart / 512);
96 DPRINT("HiddenSectors %u\n", PartitionInfo.HiddenSectors);
97 DPRINT("PartitionNumber %u\n", PartitionInfo.PartitionNumber);
98 DPRINT("PartitionType %u\n", PartitionInfo.PartitionType);
99 DPRINT("BootIndicator %u\n", PartitionInfo.BootIndicator);
100 DPRINT("RecognizedPartition %u\n", PartitionInfo.RecognizedPartition);
101 DPRINT("RewritePartition %u\n", PartitionInfo.RewritePartition);
102 if (PartitionInfo.PartitionType)
103 {
104 if (PartitionInfo.PartitionType == PARTITION_FAT_12 ||
105 PartitionInfo.PartitionType == PARTITION_FAT_16 ||
106 PartitionInfo.PartitionType == PARTITION_HUGE ||
107 PartitionInfo.PartitionType == PARTITION_FAT32 ||
108 PartitionInfo.PartitionType == PARTITION_FAT32_XINT13 ||
109 PartitionInfo.PartitionType == PARTITION_XINT13)
110 {
111 *RecognizedFS = TRUE;
112 }
113 }
114 else if (DiskGeometry.MediaType == RemovableMedia &&
115 PartitionInfo.PartitionNumber > 0 &&
116 PartitionInfo.StartingOffset.QuadPart == 0 &&
117 PartitionInfo.PartitionLength.QuadPart > 0)
118 {
119 /* This is possible a removable media formated as super floppy */
120 *RecognizedFS = TRUE;
121 }
122 }
123 else if (DiskGeometry.MediaType == Unknown)
124 {
125 /*
126 * Floppy disk driver can return Unknown as media type if it
127 * doesn't know yet what floppy in the drive really is. This is
128 * perfectly correct to do under Windows.
129 */
130 *RecognizedFS = TRUE;
131 DiskGeometry.BytesPerSector = 512;
132 }
133 else
134 {
135 *RecognizedFS = TRUE;
136 }
137
138 if (*RecognizedFS)
139 {
140 Boot = ExAllocatePoolWithTag(NonPagedPool, DiskGeometry.BytesPerSector, TAG_VFAT);
141 if (Boot == NULL)
142 {
143 return STATUS_INSUFFICIENT_RESOURCES;
144 }
145
146 Offset.QuadPart = 0;
147
148 /* Try to recognize FAT12/FAT16/FAT32 partitions */
149 Status = VfatReadDisk(DeviceToMount, &Offset, DiskGeometry.BytesPerSector, (PUCHAR) Boot, FALSE);
150 if (NT_SUCCESS(Status))
151 {
152 if (Boot->Signatur1 != 0xaa55)
153 {
154 *RecognizedFS = FALSE;
155 }
156
157 if (*RecognizedFS &&
158 Boot->BytesPerSector != 512 &&
159 Boot->BytesPerSector != 1024 &&
160 Boot->BytesPerSector != 2048 &&
161 Boot->BytesPerSector != 4096)
162 {
163 DPRINT1("BytesPerSector %u\n", Boot->BytesPerSector);
164 *RecognizedFS = FALSE;
165 }
166
167 if (*RecognizedFS &&
168 Boot->FATCount != 1 &&
169 Boot->FATCount != 2)
170 {
171 DPRINT1("FATCount %u\n", Boot->FATCount);
172 *RecognizedFS = FALSE;
173 }
174
175 if (*RecognizedFS &&
176 Boot->Media != 0xf0 &&
177 Boot->Media != 0xf8 &&
178 Boot->Media != 0xf9 &&
179 Boot->Media != 0xfa &&
180 Boot->Media != 0xfb &&
181 Boot->Media != 0xfc &&
182 Boot->Media != 0xfd &&
183 Boot->Media != 0xfe &&
184 Boot->Media != 0xff)
185 {
186 DPRINT1("Media %02x\n", Boot->Media);
187 *RecognizedFS = FALSE;
188 }
189
190 if (*RecognizedFS &&
191 Boot->SectorsPerCluster != 1 &&
192 Boot->SectorsPerCluster != 2 &&
193 Boot->SectorsPerCluster != 4 &&
194 Boot->SectorsPerCluster != 8 &&
195 Boot->SectorsPerCluster != 16 &&
196 Boot->SectorsPerCluster != 32 &&
197 Boot->SectorsPerCluster != 64 &&
198 Boot->SectorsPerCluster != 128)
199 {
200 DPRINT1("SectorsPerCluster %02x\n", Boot->SectorsPerCluster);
201 *RecognizedFS = FALSE;
202 }
203
204 if (*RecognizedFS &&
205 Boot->BytesPerSector * Boot->SectorsPerCluster > 32 * 1024)
206 {
207 DPRINT1("ClusterSize %dx\n", Boot->BytesPerSector * Boot->SectorsPerCluster);
208 *RecognizedFS = FALSE;
209 }
210
211 if (*RecognizedFS)
212 {
213 FatInfo.VolumeID = Boot->VolumeID;
214 FatInfo.FATStart = Boot->ReservedSectors;
215 FatInfo.FATCount = Boot->FATCount;
216 FatInfo.FATSectors = Boot->FATSectors ? Boot->FATSectors : ((struct _BootSector32*) Boot)->FATSectors32;
217 FatInfo.BytesPerSector = Boot->BytesPerSector;
218 FatInfo.SectorsPerCluster = Boot->SectorsPerCluster;
219 FatInfo.BytesPerCluster = FatInfo.BytesPerSector * FatInfo.SectorsPerCluster;
220 FatInfo.rootDirectorySectors = ((Boot->RootEntries * 32) + Boot->BytesPerSector - 1) / Boot->BytesPerSector;
221 FatInfo.rootStart = FatInfo.FATStart + FatInfo.FATCount * FatInfo.FATSectors;
222 FatInfo.dataStart = FatInfo.rootStart + FatInfo.rootDirectorySectors;
223 FatInfo.Sectors = Sectors = Boot->Sectors ? Boot->Sectors : Boot->SectorsHuge;
224 Sectors -= Boot->ReservedSectors + FatInfo.FATCount * FatInfo.FATSectors + FatInfo.rootDirectorySectors;
225 FatInfo.NumberOfClusters = Sectors / Boot->SectorsPerCluster;
226 if (FatInfo.NumberOfClusters < 4085)
227 {
228 DPRINT("FAT12\n");
229 FatInfo.FatType = FAT12;
230 FatInfo.RootCluster = (FatInfo.rootStart - 1) / FatInfo.SectorsPerCluster;
231 }
232 else if (FatInfo.NumberOfClusters >= 65525)
233 {
234 DPRINT("FAT32\n");
235 FatInfo.FatType = FAT32;
236 FatInfo.RootCluster = ((struct _BootSector32*) Boot)->RootCluster;
237 FatInfo.rootStart = FatInfo.dataStart + ((FatInfo.RootCluster - 2) * FatInfo.SectorsPerCluster);
238 FatInfo.VolumeID = ((struct _BootSector32*) Boot)->VolumeID;
239 }
240 else
241 {
242 DPRINT("FAT16\n");
243 FatInfo.FatType = FAT16;
244 FatInfo.RootCluster = FatInfo.rootStart / FatInfo.SectorsPerCluster;
245 }
246
247 if (PartitionInfoIsValid &&
248 FatInfo.Sectors > PartitionInfo.PartitionLength.QuadPart / FatInfo.BytesPerSector)
249 {
250 *RecognizedFS = FALSE;
251 }
252
253 if (pFatInfo && *RecognizedFS)
254 {
255 *pFatInfo = FatInfo;
256 }
257 }
258 }
259
260 ExFreePool(Boot);
261 }
262
263 if (!*RecognizedFS && PartitionInfoIsValid)
264 {
265 BootFatX = ExAllocatePoolWithTag(NonPagedPool, sizeof(struct _BootSectorFatX), TAG_VFAT);
266 if (BootFatX == NULL)
267 {
268 *RecognizedFS=FALSE;
269 return STATUS_INSUFFICIENT_RESOURCES;
270 }
271
272 Offset.QuadPart = 0;
273
274 /* Try to recognize FATX16/FATX32 partitions (Xbox) */
275 Status = VfatReadDisk(DeviceToMount, &Offset, sizeof(struct _BootSectorFatX), (PUCHAR) BootFatX, FALSE);
276 if (NT_SUCCESS(Status))
277 {
278 *RecognizedFS = TRUE;
279 if (BootFatX->SysType[0] != 'F' ||
280 BootFatX->SysType[1] != 'A' ||
281 BootFatX->SysType[2] != 'T' ||
282 BootFatX->SysType[3] != 'X')
283 {
284 DPRINT1("SysType %c%c%c%c\n", BootFatX->SysType[0], BootFatX->SysType[1], BootFatX->SysType[2], BootFatX->SysType[3]);
285 *RecognizedFS=FALSE;
286 }
287
288 if (*RecognizedFS &&
289 BootFatX->SectorsPerCluster != 1 &&
290 BootFatX->SectorsPerCluster != 2 &&
291 BootFatX->SectorsPerCluster != 4 &&
292 BootFatX->SectorsPerCluster != 8 &&
293 BootFatX->SectorsPerCluster != 16 &&
294 BootFatX->SectorsPerCluster != 32 &&
295 BootFatX->SectorsPerCluster != 64 &&
296 BootFatX->SectorsPerCluster != 128)
297 {
298 DPRINT1("SectorsPerCluster %lu\n", BootFatX->SectorsPerCluster);
299 *RecognizedFS=FALSE;
300 }
301
302 if (*RecognizedFS)
303 {
304 FatInfo.BytesPerSector = DiskGeometry.BytesPerSector;
305 FatInfo.SectorsPerCluster = BootFatX->SectorsPerCluster;
306 FatInfo.rootDirectorySectors = BootFatX->SectorsPerCluster;
307 FatInfo.BytesPerCluster = BootFatX->SectorsPerCluster * DiskGeometry.BytesPerSector;
308 FatInfo.Sectors = (ULONG)(PartitionInfo.PartitionLength.QuadPart / DiskGeometry.BytesPerSector);
309 if (FatInfo.Sectors / FatInfo.SectorsPerCluster < 65525)
310 {
311 DPRINT("FATX16\n");
312 FatInfo.FatType = FATX16;
313 }
314 else
315 {
316 DPRINT("FATX32\n");
317 FatInfo.FatType = FATX32;
318 }
319 FatInfo.VolumeID = BootFatX->VolumeID;
320 FatInfo.FATStart = sizeof(struct _BootSectorFatX) / DiskGeometry.BytesPerSector;
321 FatInfo.FATCount = BootFatX->FATCount;
322 FatInfo.FATSectors =
323 ROUND_UP(FatInfo.Sectors / FatInfo.SectorsPerCluster * (FatInfo.FatType == FATX16 ? 2 : 4), 4096) /
324 FatInfo.BytesPerSector;
325 FatInfo.rootStart = FatInfo.FATStart + FatInfo.FATCount * FatInfo.FATSectors;
326 FatInfo.RootCluster = (FatInfo.rootStart - 1) / FatInfo.SectorsPerCluster;
327 FatInfo.dataStart = FatInfo.rootStart + FatInfo.rootDirectorySectors;
328 FatInfo.NumberOfClusters = (FatInfo.Sectors - FatInfo.dataStart) / FatInfo.SectorsPerCluster;
329
330 if (pFatInfo && *RecognizedFS)
331 {
332 *pFatInfo = FatInfo;
333 }
334 }
335 }
336 ExFreePool(BootFatX);
337 }
338
339 DPRINT("VfatHasFileSystem done\n");
340 return Status;
341 }
342
343 /*
344 * FUNCTION: Mounts the device
345 */
346 static
347 NTSTATUS
348 VfatMountDevice(
349 PDEVICE_EXTENSION DeviceExt,
350 PDEVICE_OBJECT DeviceToMount)
351 {
352 NTSTATUS Status;
353 BOOLEAN RecognizedFS;
354
355 DPRINT("Mounting VFAT device...\n");
356
357 Status = VfatHasFileSystem(DeviceToMount, &RecognizedFS, &DeviceExt->FatInfo);
358 if (!NT_SUCCESS(Status))
359 {
360 return Status;
361 }
362 DPRINT("MountVfatdev %u, PAGE_SIZE = %d\n", DeviceExt->FatInfo.BytesPerCluster, PAGE_SIZE);
363
364 return STATUS_SUCCESS;
365 }
366
367
368 /*
369 * FUNCTION: Mount the filesystem
370 */
371 static
372 NTSTATUS
373 VfatMount(
374 PVFAT_IRP_CONTEXT IrpContext)
375 {
376 PDEVICE_OBJECT DeviceObject = NULL;
377 PDEVICE_EXTENSION DeviceExt = NULL;
378 BOOLEAN RecognizedFS;
379 NTSTATUS Status;
380 PVFATFCB Fcb = NULL;
381 PVFATFCB VolumeFcb = NULL;
382 PVFATCCB Ccb = NULL;
383 PDEVICE_OBJECT DeviceToMount;
384 PVPB Vpb;
385 UNICODE_STRING NameU = RTL_CONSTANT_STRING(L"\\$$Fat$$");
386 UNICODE_STRING VolumeNameU = RTL_CONSTANT_STRING(L"\\$$Volume$$");
387 ULONG HashTableSize;
388 ULONG eocMark;
389 FATINFO FatInfo;
390
391 DPRINT("VfatMount(IrpContext %p)\n", IrpContext);
392
393 ASSERT(IrpContext);
394
395 if (IrpContext->DeviceObject != VfatGlobalData->DeviceObject)
396 {
397 Status = STATUS_INVALID_DEVICE_REQUEST;
398 goto ByeBye;
399 }
400
401 DeviceToMount = IrpContext->Stack->Parameters.MountVolume.DeviceObject;
402 Vpb = IrpContext->Stack->Parameters.MountVolume.Vpb;
403
404 Status = VfatHasFileSystem(DeviceToMount, &RecognizedFS, &FatInfo);
405 if (!NT_SUCCESS(Status))
406 {
407 goto ByeBye;
408 }
409
410 if (RecognizedFS == FALSE)
411 {
412 DPRINT("VFAT: Unrecognized Volume\n");
413 Status = STATUS_UNRECOGNIZED_VOLUME;
414 goto ByeBye;
415 }
416
417 /* Use prime numbers for the table size */
418 if (FatInfo.FatType == FAT12)
419 {
420 HashTableSize = 4099; // 4096 = 4 * 1024
421 }
422 else if (FatInfo.FatType == FAT16 ||
423 FatInfo.FatType == FATX16)
424 {
425 HashTableSize = 16411; // 16384 = 16 * 1024
426 }
427 else
428 {
429 HashTableSize = 65537; // 65536 = 64 * 1024;
430 }
431 HashTableSize = FCB_HASH_TABLE_SIZE;
432 DPRINT("VFAT: Recognized volume\n");
433 Status = IoCreateDevice(VfatGlobalData->DriverObject,
434 ROUND_UP(sizeof (DEVICE_EXTENSION), sizeof(ULONG)) + sizeof(HASHENTRY*) * HashTableSize,
435 NULL,
436 FILE_DEVICE_DISK_FILE_SYSTEM,
437 DeviceToMount->Characteristics,
438 FALSE,
439 &DeviceObject);
440 if (!NT_SUCCESS(Status))
441 {
442 goto ByeBye;
443 }
444
445 DeviceObject->Flags = DeviceObject->Flags | DO_DIRECT_IO;
446 DeviceExt = (PVOID) 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;
450
451 /* use same vpb as device disk */
452 DeviceObject->Vpb = Vpb;
453 DeviceToMount->Vpb = Vpb;
454
455 Status = VfatMountDevice(DeviceExt, DeviceToMount);
456 if (!NT_SUCCESS(Status))
457 {
458 /* FIXME: delete device object */
459 goto ByeBye;
460 }
461
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)
469 {
470 DPRINT("RootCluster: %u\n", DeviceExt->FatInfo.RootCluster);
471 }
472
473 switch (DeviceExt->FatInfo.FatType)
474 {
475 case FAT12:
476 DeviceExt->GetNextCluster = FAT12GetNextCluster;
477 DeviceExt->FindAndMarkAvailableCluster = FAT12FindAndMarkAvailableCluster;
478 DeviceExt->WriteCluster = FAT12WriteCluster;
479 DeviceExt->CleanShutBitMask = 0;
480 break;
481
482 case FAT16:
483 case FATX16:
484 DeviceExt->GetNextCluster = FAT16GetNextCluster;
485 DeviceExt->FindAndMarkAvailableCluster = FAT16FindAndMarkAvailableCluster;
486 DeviceExt->WriteCluster = FAT16WriteCluster;
487 DeviceExt->CleanShutBitMask = 0x8000;
488 break;
489
490 case FAT32:
491 case FATX32:
492 DeviceExt->GetNextCluster = FAT32GetNextCluster;
493 DeviceExt->FindAndMarkAvailableCluster = FAT32FindAndMarkAvailableCluster;
494 DeviceExt->WriteCluster = FAT32WriteCluster;
495 DeviceExt->CleanShutBitMask = 0x80000000;
496 break;
497 }
498
499 if (DeviceExt->FatInfo.FatType == FATX16 ||
500 DeviceExt->FatInfo.FatType == FATX32)
501 {
502 DeviceExt->Flags |= VCB_IS_FATX;
503 DeviceExt->GetNextDirEntry = FATXGetNextDirEntry;
504 DeviceExt->BaseDateYear = 2000;
505 }
506 else
507 {
508 DeviceExt->GetNextDirEntry = FATGetNextDirEntry;
509 DeviceExt->BaseDateYear = 1980;
510 }
511
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;
518
519 DPRINT("FsDeviceObject %p\n", DeviceObject);
520
521 /* Initialize this resource early ... it's used in VfatCleanup */
522 ExInitializeResourceLite(&DeviceExt->DirResource);
523
524 DeviceExt->FATFileObject = IoCreateStreamFileObject(NULL, DeviceExt->StorageDevice);
525 Fcb = vfatNewFCB(DeviceExt, &NameU);
526 if (Fcb == NULL)
527 {
528 Status = STATUS_INSUFFICIENT_RESOURCES;
529 goto ByeBye;
530 }
531
532 Ccb = ExAllocateFromNPagedLookasideList(&VfatGlobalData->CcbLookasideList);
533 if (Ccb == NULL)
534 {
535 Status = STATUS_INSUFFICIENT_RESOURCES;
536 goto ByeBye;
537 }
538
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;
546
547 Fcb->Flags |= FCB_IS_FAT;
548
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;
552
553 _SEH2_TRY
554 {
555 CcInitializeCacheMap(DeviceExt->FATFileObject,
556 (PCC_FILE_SIZES)(&Fcb->RFCB.AllocationSize),
557 TRUE,
558 &VfatGlobalData->CacheMgrCallbacks,
559 Fcb);
560 }
561 _SEH2_EXCEPT(EXCEPTION_EXECUTE_HANDLER)
562 {
563 Status = _SEH2_GetExceptionCode();
564 goto ByeBye;
565 }
566 _SEH2_END;
567
568 DeviceExt->LastAvailableCluster = 2;
569 ExInitializeResourceLite(&DeviceExt->FatResource);
570
571 InitializeListHead(&DeviceExt->FcbListHead);
572
573 VolumeFcb = vfatNewFCB(DeviceExt, &VolumeNameU);
574 if (VolumeFcb == NULL)
575 {
576 Status = STATUS_INSUFFICIENT_RESOURCES;
577 goto ByeBye;
578 }
579
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;
585
586 ExAcquireResourceExclusiveLite(&VfatGlobalData->VolumeListLock, TRUE);
587 InsertHeadList(&VfatGlobalData->VolumeListHead, &DeviceExt->VolumeListEntry);
588 ExReleaseResourceLite(&VfatGlobalData->VolumeListLock);
589
590 /* read serial number */
591 DeviceObject->Vpb->SerialNumber = DeviceExt->FatInfo.VolumeID;
592
593 /* read volume label */
594 ReadVolumeLabel(DeviceExt, DeviceObject->Vpb);
595
596 /* read clean shutdown bit status */
597 Status = GetNextCluster(DeviceExt, 1, &eocMark);
598 if (NT_SUCCESS(Status))
599 {
600 if (eocMark & DeviceExt->CleanShutBitMask)
601 {
602 /* unset clean shutdown bit */
603 eocMark &= ~DeviceExt->CleanShutBitMask;
604 WriteCluster(DeviceExt, 1, eocMark);
605 VolumeFcb->Flags |= VCB_CLEAR_DIRTY;
606 }
607 }
608
609 VolumeFcb->Flags |= VCB_IS_DIRTY;
610
611 FsRtlNotifyVolumeEvent(DeviceExt->FATFileObject, FSRTL_VOLUME_MOUNT);
612 FsRtlNotifyInitializeSync(&DeviceExt->NotifySync);
613 InitializeListHead(&DeviceExt->NotifyList);
614
615 Status = STATUS_SUCCESS;
616
617 ByeBye:
618 if (!NT_SUCCESS(Status))
619 {
620 /* Cleanup */
621 if (DeviceExt && DeviceExt->FATFileObject)
622 ObDereferenceObject (DeviceExt->FATFileObject);
623 if (Fcb)
624 vfatDestroyFCB(Fcb);
625 if (Ccb)
626 vfatDestroyCCB(Ccb);
627 if (DeviceObject)
628 IoDeleteDevice(DeviceObject);
629 }
630
631 return Status;
632 }
633
634
635 /*
636 * FUNCTION: Verify the filesystem
637 */
638 static
639 NTSTATUS
640 VfatVerify(
641 PVFAT_IRP_CONTEXT IrpContext)
642 {
643 PDEVICE_OBJECT DeviceToVerify;
644 NTSTATUS Status = STATUS_SUCCESS;
645 FATINFO FatInfo;
646 BOOLEAN RecognizedFS;
647 PDEVICE_EXTENSION DeviceExt = IrpContext->DeviceExt;
648
649 DPRINT("VfatVerify(IrpContext %p)\n", IrpContext);
650
651 DeviceToVerify = IrpContext->Stack->Parameters.VerifyVolume.DeviceObject;
652 Status = VfatBlockDeviceIoControl(DeviceToVerify,
653 IOCTL_DISK_CHECK_VERIFY,
654 NULL,
655 0,
656 NULL,
657 0,
658 TRUE);
659 DeviceToVerify->Flags &= ~DO_VERIFY_VOLUME;
660 if (!NT_SUCCESS(Status) && Status != STATUS_VERIFY_REQUIRED)
661 {
662 DPRINT("VfatBlockDeviceIoControl() failed (Status %lx)\n", Status);
663 Status = STATUS_WRONG_VOLUME;
664 }
665 else
666 {
667 Status = VfatHasFileSystem(DeviceToVerify, &RecognizedFS, &FatInfo);
668 if (!NT_SUCCESS(Status) || RecognizedFS == FALSE)
669 {
670 Status = STATUS_WRONG_VOLUME;
671 }
672 else if (sizeof(FATINFO) == RtlCompareMemory(&FatInfo, &DeviceExt->FatInfo, sizeof(FATINFO)))
673 {
674 /*
675 * FIXME:
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.
679 */
680 }
681 else
682 {
683 Status = STATUS_WRONG_VOLUME;
684 }
685 }
686
687 return Status;
688 }
689
690
691 static
692 NTSTATUS
693 VfatGetVolumeBitmap(
694 PVFAT_IRP_CONTEXT IrpContext)
695 {
696 DPRINT("VfatGetVolumeBitmap (IrpContext %p)\n", IrpContext);
697 return STATUS_INVALID_DEVICE_REQUEST;
698 }
699
700
701 static
702 NTSTATUS
703 VfatGetRetrievalPointers(
704 PVFAT_IRP_CONTEXT IrpContext)
705 {
706 PIO_STACK_LOCATION Stack;
707 LARGE_INTEGER Vcn;
708 PRETRIEVAL_POINTERS_BUFFER RetrievalPointers;
709 PFILE_OBJECT FileObject;
710 ULONG MaxExtentCount;
711 PVFATFCB Fcb;
712 PDEVICE_EXTENSION DeviceExt;
713 ULONG FirstCluster;
714 ULONG CurrentCluster;
715 ULONG LastCluster;
716 NTSTATUS Status;
717
718 DPRINT("VfatGetRetrievalPointers(IrpContext %p)\n", IrpContext);
719
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)
725 {
726 return STATUS_INVALID_PARAMETER;
727 }
728
729 if (IrpContext->Irp->UserBuffer == NULL ||
730 Stack->Parameters.DeviceIoControl.OutputBufferLength < sizeof(RETRIEVAL_POINTERS_BUFFER))
731 {
732 return STATUS_BUFFER_TOO_SMALL;
733 }
734
735 Fcb = FileObject->FsContext;
736
737 ExAcquireResourceSharedLite(&Fcb->MainResource, TRUE);
738
739 Vcn = ((PSTARTING_VCN_INPUT_BUFFER)Stack->Parameters.DeviceIoControl.Type3InputBuffer)->StartingVcn;
740 RetrievalPointers = IrpContext->Irp->UserBuffer;
741
742 MaxExtentCount = ((Stack->Parameters.DeviceIoControl.OutputBufferLength - sizeof(RetrievalPointers->ExtentCount) - sizeof(RetrievalPointers->StartingVcn)) / sizeof(RetrievalPointers->Extents[0]));
743
744 if (Vcn.QuadPart >= Fcb->RFCB.AllocationSize.QuadPart / DeviceExt->FatInfo.BytesPerCluster)
745 {
746 Status = STATUS_INVALID_PARAMETER;
747 goto ByeBye;
748 }
749
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))
755 {
756 goto ByeBye;
757 }
758
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;
763 LastCluster = 0;
764 while (CurrentCluster != 0xffffffff && RetrievalPointers->ExtentCount < MaxExtentCount)
765 {
766 LastCluster = CurrentCluster;
767 Status = NextCluster(DeviceExt, CurrentCluster, &CurrentCluster, FALSE);
768 Vcn.QuadPart++;
769 if (!NT_SUCCESS(Status))
770 {
771 goto ByeBye;
772 }
773
774 if (LastCluster + 1 != CurrentCluster)
775 {
776 RetrievalPointers->Extents[RetrievalPointers->ExtentCount].NextVcn = Vcn;
777 RetrievalPointers->ExtentCount++;
778 if (RetrievalPointers->ExtentCount < MaxExtentCount)
779 {
780 RetrievalPointers->Extents[RetrievalPointers->ExtentCount].Lcn.u.HighPart = 0;
781 RetrievalPointers->Extents[RetrievalPointers->ExtentCount].Lcn.u.LowPart = CurrentCluster - 2;
782 }
783 }
784 }
785
786 IrpContext->Irp->IoStatus.Information = sizeof(RETRIEVAL_POINTERS_BUFFER) + (sizeof(RetrievalPointers->Extents[0]) * (RetrievalPointers->ExtentCount - 1));
787 Status = STATUS_SUCCESS;
788
789 ByeBye:
790 ExReleaseResourceLite(&Fcb->MainResource);
791
792 return Status;
793 }
794
795 static
796 NTSTATUS
797 VfatMoveFile(
798 PVFAT_IRP_CONTEXT IrpContext)
799 {
800 DPRINT("VfatMoveFile(IrpContext %p)\n", IrpContext);
801 return STATUS_INVALID_DEVICE_REQUEST;
802 }
803
804 static
805 NTSTATUS
806 VfatIsVolumeDirty(
807 PVFAT_IRP_CONTEXT IrpContext)
808 {
809 PULONG Flags;
810
811 DPRINT("VfatIsVolumeDirty(IrpContext %p)\n", IrpContext);
812
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;
817
818 Flags = (PULONG)IrpContext->Irp->AssociatedIrp.SystemBuffer;
819 *Flags = 0;
820
821 if ((IrpContext->DeviceExt->VolumeFcb->Flags & VCB_IS_DIRTY) &&
822 !(IrpContext->DeviceExt->VolumeFcb->Flags & VCB_CLEAR_DIRTY))
823 {
824 *Flags |= VOLUME_IS_DIRTY;
825 }
826
827 return STATUS_SUCCESS;
828 }
829
830 static
831 NTSTATUS
832 VfatMarkVolumeDirty(
833 PVFAT_IRP_CONTEXT IrpContext)
834 {
835 ULONG eocMark;
836 PDEVICE_EXTENSION DeviceExt;
837 NTSTATUS Status = STATUS_SUCCESS;
838
839 DPRINT("VfatMarkVolumeDirty(IrpContext %p)\n", IrpContext);
840 DeviceExt = IrpContext->DeviceExt;
841
842 if (!(DeviceExt->VolumeFcb->Flags & VCB_IS_DIRTY))
843 {
844 Status = GetNextCluster(DeviceExt, 1, &eocMark);
845 if (NT_SUCCESS(Status))
846 {
847 /* unset clean shutdown bit */
848 eocMark &= ~DeviceExt->CleanShutBitMask;
849 Status = WriteCluster(DeviceExt, 1, eocMark);
850 }
851 }
852
853 DeviceExt->VolumeFcb->Flags &= ~VCB_CLEAR_DIRTY;
854
855 return Status;
856 }
857
858 /*
859 * FUNCTION: File system control
860 */
861 NTSTATUS
862 VfatFileSystemControl(
863 PVFAT_IRP_CONTEXT IrpContext)
864 {
865 NTSTATUS Status;
866
867 DPRINT("VfatFileSystemControl(IrpContext %p)\n", IrpContext);
868
869 ASSERT(IrpContext);
870 ASSERT(IrpContext->Irp);
871 ASSERT(IrpContext->Stack);
872
873 IrpContext->Irp->IoStatus.Information = 0;
874
875 switch (IrpContext->MinorFunction)
876 {
877 case IRP_MN_KERNEL_CALL:
878 case IRP_MN_USER_FS_REQUEST:
879 switch(IrpContext->Stack->Parameters.DeviceIoControl.IoControlCode)
880 {
881 case FSCTL_GET_VOLUME_BITMAP:
882 Status = VfatGetVolumeBitmap(IrpContext);
883 break;
884
885 case FSCTL_GET_RETRIEVAL_POINTERS:
886 Status = VfatGetRetrievalPointers(IrpContext);
887 break;
888
889 case FSCTL_MOVE_FILE:
890 Status = VfatMoveFile(IrpContext);
891 break;
892
893 case FSCTL_IS_VOLUME_DIRTY:
894 Status = VfatIsVolumeDirty(IrpContext);
895 break;
896
897 case FSCTL_MARK_VOLUME_DIRTY:
898 Status = VfatMarkVolumeDirty(IrpContext);
899 break;
900
901 default:
902 Status = STATUS_INVALID_DEVICE_REQUEST;
903 }
904 break;
905
906 case IRP_MN_MOUNT_VOLUME:
907 Status = VfatMount(IrpContext);
908 break;
909
910 case IRP_MN_VERIFY_VOLUME:
911 DPRINT("VFATFS: IRP_MN_VERIFY_VOLUME\n");
912 Status = VfatVerify(IrpContext);
913 break;
914
915 default:
916 DPRINT("VFAT FSC: MinorFunction %u\n", IrpContext->MinorFunction);
917 Status = STATUS_INVALID_DEVICE_REQUEST;
918 break;
919 }
920
921 IrpContext->Irp->IoStatus.Status = Status;
922
923 IoCompleteRequest(IrpContext->Irp, IO_NO_INCREMENT);
924 VfatFreeIrpContext(IrpContext);
925 return Status;
926 }