1949d96b88eca4000ceaaaec140fac0ddb7b22a1
[reactos.git] / reactos / drivers / filesystems / ntfs / 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
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
18 *
19 * COPYRIGHT: See COPYING in the top level directory
20 * PROJECT: ReactOS kernel
21 * FILE: drivers/filesystems/ntfs/fsctl.c
22 * PURPOSE: NTFS filesystem driver
23 * PROGRAMMER: Eric Kohl
24 * Valentin Verkhovsky
25 * Pierre Schweitzer
26 */
27
28 /* INCLUDES *****************************************************************/
29
30 #include "ntfs.h"
31
32 #include <ntdddisk.h>
33
34 #define NDEBUG
35 #include <debug.h>
36
37 /* FUNCTIONS ****************************************************************/
38
39 /*
40 * FUNCTION: Tests if the device contains a filesystem that can be mounted
41 * by this fsd.
42 */
43 static
44 NTSTATUS
45 NtfsHasFileSystem(PDEVICE_OBJECT DeviceToMount)
46 {
47 PARTITION_INFORMATION PartitionInfo;
48 DISK_GEOMETRY DiskGeometry;
49 ULONG ClusterSize, Size, k;
50 PBOOT_SECTOR BootSector;
51 NTSTATUS Status;
52
53 DPRINT1("NtfsHasFileSystem() called\n");
54
55 Size = sizeof(DISK_GEOMETRY);
56 Status = NtfsDeviceIoControl(DeviceToMount,
57 IOCTL_DISK_GET_DRIVE_GEOMETRY,
58 NULL,
59 0,
60 &DiskGeometry,
61 &Size,
62 TRUE);
63 if (!NT_SUCCESS(Status))
64 {
65 DPRINT1("NtfsDeviceIoControl() failed (Status %lx)\n", Status);
66 return Status;
67 }
68
69 if (DiskGeometry.MediaType == FixedMedia)
70 {
71 /* We have found a hard disk */
72 Size = sizeof(PARTITION_INFORMATION);
73 Status = NtfsDeviceIoControl(DeviceToMount,
74 IOCTL_DISK_GET_PARTITION_INFO,
75 NULL,
76 0,
77 &PartitionInfo,
78 &Size,
79 TRUE);
80 if (!NT_SUCCESS(Status))
81 {
82 DPRINT1("NtfsDeviceIoControl() failed (Status %lx)\n", Status);
83 return Status;
84 }
85
86 if (PartitionInfo.PartitionType != PARTITION_IFS)
87 {
88 DPRINT1("Invalid partition type\n");
89 return STATUS_UNRECOGNIZED_VOLUME;
90 }
91 }
92
93 DPRINT1("BytesPerSector: %lu\n", DiskGeometry.BytesPerSector);
94 BootSector = ExAllocatePoolWithTag(NonPagedPool,
95 DiskGeometry.BytesPerSector,
96 TAG_NTFS);
97 if (BootSector == NULL)
98 {
99 return STATUS_INSUFFICIENT_RESOURCES;
100 }
101
102 Status = NtfsReadSectors(DeviceToMount,
103 0,
104 1,
105 DiskGeometry.BytesPerSector,
106 (PVOID)BootSector,
107 TRUE);
108 if (!NT_SUCCESS(Status))
109 {
110 goto ByeBye;
111 }
112
113 /*
114 * Check values of different fields. If those fields have not expected
115 * values, we fail, to avoid mounting partitions that Windows won't mount.
116 */
117
118 /* OEMID: this field must be NTFS */
119 if (RtlCompareMemory(BootSector->OEMID, "NTFS ", 8) != 8)
120 {
121 DPRINT1("Failed with NTFS-identifier: [%.8s]\n", BootSector->OEMID);
122 Status = STATUS_UNRECOGNIZED_VOLUME;
123 goto ByeBye;
124 }
125
126 /* Unused0: this field must be COMPLETELY null */
127 for (k = 0; k < 7; k++)
128 {
129 if (BootSector->BPB.Unused0[k] != 0)
130 {
131 DPRINT1("Failed in field Unused0: [%.7s]\n", BootSector->BPB.Unused0);
132 Status = STATUS_UNRECOGNIZED_VOLUME;
133 goto ByeBye;
134 }
135 }
136
137 /* Unused3: this field must be COMPLETELY null */
138 for (k = 0; k < 4; k++)
139 {
140 if (BootSector->BPB.Unused3[k] != 0)
141 {
142 DPRINT1("Failed in field Unused3: [%.4s]\n", BootSector->BPB.Unused3);
143 Status = STATUS_UNRECOGNIZED_VOLUME;
144 goto ByeBye;
145 }
146 }
147
148 /* Check cluster size */
149 ClusterSize = BootSector->BPB.BytesPerSector * BootSector->BPB.SectorsPerCluster;
150 if (ClusterSize != 512 && ClusterSize != 1024 &&
151 ClusterSize != 2048 && ClusterSize != 4096 &&
152 ClusterSize != 8192 && ClusterSize != 16384 &&
153 ClusterSize != 32768 && ClusterSize != 65536)
154 {
155 DPRINT1("Cluster size failed: %hu, %hu, %hu\n",
156 BootSector->BPB.BytesPerSector,
157 BootSector->BPB.SectorsPerCluster,
158 ClusterSize);
159 Status = STATUS_UNRECOGNIZED_VOLUME;
160 goto ByeBye;
161 }
162
163 ByeBye:
164 ExFreePool(BootSector);
165
166 return Status;
167 }
168
169
170 static
171 ULONG
172 NtfsQueryMftZoneReservation(VOID)
173 {
174 ULONG ZoneReservation = 1;
175 RTL_QUERY_REGISTRY_TABLE QueryTable[2];
176
177 RtlZeroMemory(QueryTable, sizeof(QueryTable));
178 QueryTable[0].Flags = RTL_QUERY_REGISTRY_DIRECT;
179 QueryTable[0].Name = L"NtfsMftZoneReservation";
180 QueryTable[0].EntryContext = &ZoneReservation;
181
182 RtlQueryRegistryValues(RTL_REGISTRY_CONTROL,
183 L"FileSystem",
184 QueryTable,
185 NULL,
186 NULL);
187
188 return ZoneReservation;
189 }
190
191
192 static
193 NTSTATUS
194 NtfsGetVolumeData(PDEVICE_OBJECT DeviceObject,
195 PDEVICE_EXTENSION DeviceExt)
196 {
197 DISK_GEOMETRY DiskGeometry;
198 PFILE_RECORD_HEADER VolumeRecord;
199 PVOLINFO_ATTRIBUTE VolumeInfo;
200 PBOOT_SECTOR BootSector;
201 ULONG Size;
202 PNTFS_INFO NtfsInfo = &DeviceExt->NtfsInfo;
203 NTSTATUS Status;
204 PNTFS_ATTR_CONTEXT AttrCtxt;
205 PNTFS_ATTR_RECORD Attribute;
206 PNTFS_FCB VolumeFcb;
207 PWSTR VolumeNameU;
208
209 DPRINT("NtfsGetVolumeData() called\n");
210
211 Size = sizeof(DISK_GEOMETRY);
212 Status = NtfsDeviceIoControl(DeviceObject,
213 IOCTL_DISK_GET_DRIVE_GEOMETRY,
214 NULL,
215 0,
216 &DiskGeometry,
217 &Size,
218 TRUE);
219 if (!NT_SUCCESS(Status))
220 {
221 DPRINT("NtfsDeviceIoControl() failed (Status %lx)\n", Status);
222 return Status;
223 }
224
225 DPRINT("BytesPerSector: %lu\n", DiskGeometry.BytesPerSector);
226 BootSector = ExAllocatePoolWithTag(NonPagedPool,
227 DiskGeometry.BytesPerSector,
228 TAG_NTFS);
229 if (BootSector == NULL)
230 {
231 return STATUS_INSUFFICIENT_RESOURCES;
232 }
233
234 Status = NtfsReadSectors(DeviceObject,
235 0, /* Partition boot sector */
236 1,
237 DiskGeometry.BytesPerSector,
238 (PVOID)BootSector,
239 TRUE);
240 if (!NT_SUCCESS(Status))
241 {
242 ExFreePool(BootSector);
243 return Status;
244 }
245
246 /* Read data from the bootsector */
247 NtfsInfo->BytesPerSector = BootSector->BPB.BytesPerSector;
248 NtfsInfo->SectorsPerCluster = BootSector->BPB.SectorsPerCluster;
249 NtfsInfo->BytesPerCluster = BootSector->BPB.BytesPerSector * BootSector->BPB.SectorsPerCluster;
250 NtfsInfo->SectorCount = BootSector->EBPB.SectorCount;
251 NtfsInfo->ClusterCount = DeviceExt->NtfsInfo.SectorCount / (ULONGLONG)DeviceExt->NtfsInfo.SectorsPerCluster;
252
253 NtfsInfo->MftStart.QuadPart = BootSector->EBPB.MftLocation;
254 NtfsInfo->MftMirrStart.QuadPart = BootSector->EBPB.MftMirrLocation;
255 NtfsInfo->SerialNumber = BootSector->EBPB.SerialNumber;
256 if (BootSector->EBPB.ClustersPerMftRecord > 0)
257 NtfsInfo->BytesPerFileRecord = BootSector->EBPB.ClustersPerMftRecord * NtfsInfo->BytesPerCluster;
258 else
259 NtfsInfo->BytesPerFileRecord = 1 << (-BootSector->EBPB.ClustersPerMftRecord);
260 if (BootSector->EBPB.ClustersPerIndexRecord > 0)
261 NtfsInfo->BytesPerIndexRecord = BootSector->EBPB.ClustersPerIndexRecord * NtfsInfo->BytesPerCluster;
262 else
263 NtfsInfo->BytesPerIndexRecord = 1 << (-BootSector->EBPB.ClustersPerIndexRecord);
264
265 DPRINT("Boot sector information:\n");
266 DPRINT(" BytesPerSector: %hu\n", BootSector->BPB.BytesPerSector);
267 DPRINT(" SectorsPerCluster: %hu\n", BootSector->BPB.SectorsPerCluster);
268 DPRINT(" SectorCount: %I64u\n", BootSector->EBPB.SectorCount);
269 DPRINT(" MftStart: %I64u\n", BootSector->EBPB.MftLocation);
270 DPRINT(" MftMirrStart: %I64u\n", BootSector->EBPB.MftMirrLocation);
271 DPRINT(" ClustersPerMftRecord: %lx\n", BootSector->EBPB.ClustersPerMftRecord);
272 DPRINT(" ClustersPerIndexRecord: %lx\n", BootSector->EBPB.ClustersPerIndexRecord);
273 DPRINT(" SerialNumber: %I64x\n", BootSector->EBPB.SerialNumber);
274
275 ExFreePool(BootSector);
276
277 DeviceExt->MasterFileTable = ExAllocatePoolWithTag(NonPagedPool,
278 NtfsInfo->BytesPerFileRecord,
279 TAG_NTFS);
280 if (DeviceExt->MasterFileTable == NULL)
281 {
282 return STATUS_INSUFFICIENT_RESOURCES;
283 }
284
285 Status = NtfsReadSectors(DeviceObject,
286 NtfsInfo->MftStart.u.LowPart * NtfsInfo->SectorsPerCluster,
287 NtfsInfo->BytesPerFileRecord / NtfsInfo->BytesPerSector,
288 NtfsInfo->BytesPerSector,
289 (PVOID)DeviceExt->MasterFileTable,
290 TRUE);
291 if (!NT_SUCCESS(Status))
292 {
293 DPRINT1("Failed reading MFT.\n");
294 ExFreePool(DeviceExt->MasterFileTable);
295 return Status;
296 }
297
298 Status = FindAttribute(DeviceExt, DeviceExt->MasterFileTable, AttributeData, L"", 0, &DeviceExt->MFTContext);
299 if (!NT_SUCCESS(Status))
300 {
301 DPRINT1("Can't find data attribute for Master File Table.\n");
302 ExFreePool(DeviceExt->MasterFileTable);
303 return Status;
304 }
305
306 VolumeRecord = ExAllocatePoolWithTag(NonPagedPool,
307 NtfsInfo->BytesPerFileRecord,
308 TAG_NTFS);
309 if (VolumeRecord == NULL)
310 {
311 DPRINT1("Allocation failed for volume record\n");
312 ExFreePool(DeviceExt->MasterFileTable);
313 return STATUS_INSUFFICIENT_RESOURCES;
314 }
315
316 /* Read Volume File (MFT index 3) */
317 DeviceExt->StorageDevice = DeviceObject;
318 Status = ReadFileRecord(DeviceExt,
319 NTFS_FILE_VOLUME,
320 VolumeRecord);
321 if (!NT_SUCCESS(Status))
322 {
323 DPRINT1("Failed reading volume file\n");
324 ExFreePool(VolumeRecord);
325 ExFreePool(DeviceExt->MasterFileTable);
326 return Status;
327 }
328
329 /* Enumerate attributes */
330 NtfsDumpFileAttributes(DeviceExt, DeviceExt->MasterFileTable);
331
332 /* Enumerate attributes */
333 NtfsDumpFileAttributes(DeviceExt, VolumeRecord);
334
335 /* Get volume name */
336 Status = FindAttribute(DeviceExt, VolumeRecord, AttributeVolumeName, L"", 0, &AttrCtxt);
337
338 if (NT_SUCCESS(Status) && AttrCtxt->Record.Resident.ValueLength != 0)
339 {
340 Attribute = &AttrCtxt->Record;
341 DPRINT("Data length %lu\n", AttributeDataLength(Attribute));
342 NtfsInfo->VolumeLabelLength =
343 min (Attribute->Resident.ValueLength, MAXIMUM_VOLUME_LABEL_LENGTH);
344 RtlCopyMemory(NtfsInfo->VolumeLabel,
345 (PVOID)((ULONG_PTR)Attribute + Attribute->Resident.ValueOffset),
346 NtfsInfo->VolumeLabelLength);
347 VolumeNameU = NtfsInfo->VolumeLabel;
348 }
349 else
350 {
351 NtfsInfo->VolumeLabelLength = 0;
352 VolumeNameU = L"\0";
353 }
354
355 VolumeFcb = NtfsCreateFCB(VolumeNameU, DeviceExt);
356 if (VolumeFcb == NULL)
357 {
358 DPRINT1("Failed allocating volume FCB\n");
359 ExFreePool(VolumeRecord);
360 ExFreePool(DeviceExt->MasterFileTable);
361 return STATUS_INSUFFICIENT_RESOURCES;
362 }
363
364 VolumeFcb->Flags = FCB_IS_VOLUME;
365 VolumeFcb->RFCB.FileSize.QuadPart = DeviceExt->NtfsInfo.SectorCount * DeviceExt->NtfsInfo.BytesPerSector;
366 VolumeFcb->RFCB.ValidDataLength = VolumeFcb->RFCB.FileSize;
367 VolumeFcb->RFCB.AllocationSize = VolumeFcb->RFCB.FileSize;
368 VolumeFcb->MFTIndex = 0;
369 DeviceExt->VolumeFcb = VolumeFcb;
370
371 /* Get volume information */
372 Status = FindAttribute(DeviceExt, VolumeRecord, AttributeVolumeInformation, L"", 0, &AttrCtxt);
373
374 if (NT_SUCCESS(Status) && AttrCtxt->Record.Resident.ValueLength != 0)
375 {
376 Attribute = &AttrCtxt->Record;
377 DPRINT("Data length %lu\n", AttributeDataLength (Attribute));
378 VolumeInfo = (PVOID)((ULONG_PTR)Attribute + Attribute->Resident.ValueOffset);
379
380 NtfsInfo->MajorVersion = VolumeInfo->MajorVersion;
381 NtfsInfo->MinorVersion = VolumeInfo->MinorVersion;
382 NtfsInfo->Flags = VolumeInfo->Flags;
383 }
384
385 ExFreePool(VolumeRecord);
386
387 NtfsInfo->MftZoneReservation = NtfsQueryMftZoneReservation();
388
389 return Status;
390 }
391
392
393 static
394 NTSTATUS
395 NtfsMountVolume(PDEVICE_OBJECT DeviceObject,
396 PIRP Irp)
397 {
398 PDEVICE_OBJECT NewDeviceObject = NULL;
399 PDEVICE_OBJECT DeviceToMount;
400 PIO_STACK_LOCATION Stack;
401 PNTFS_FCB Fcb = NULL;
402 PNTFS_CCB Ccb = NULL;
403 PNTFS_VCB Vcb = NULL;
404 NTSTATUS Status;
405
406 DPRINT1("NtfsMountVolume() called\n");
407
408 if (DeviceObject != NtfsGlobalData->DeviceObject)
409 {
410 Status = STATUS_INVALID_DEVICE_REQUEST;
411 goto ByeBye;
412 }
413
414 Stack = IoGetCurrentIrpStackLocation(Irp);
415 DeviceToMount = Stack->Parameters.MountVolume.DeviceObject;
416
417 Status = NtfsHasFileSystem(DeviceToMount);
418 if (!NT_SUCCESS(Status))
419 {
420 goto ByeBye;
421 }
422
423 Status = IoCreateDevice(NtfsGlobalData->DriverObject,
424 sizeof(DEVICE_EXTENSION),
425 NULL,
426 FILE_DEVICE_DISK_FILE_SYSTEM,
427 0,
428 FALSE,
429 &NewDeviceObject);
430 if (!NT_SUCCESS(Status))
431 goto ByeBye;
432
433 NewDeviceObject->Flags |= DO_DIRECT_IO;
434 Vcb = (PVOID)NewDeviceObject->DeviceExtension;
435 RtlZeroMemory(Vcb, sizeof(NTFS_VCB));
436
437 Vcb->Identifier.Type = NTFS_TYPE_VCB;
438 Vcb->Identifier.Size = sizeof(NTFS_TYPE_VCB);
439
440 Status = NtfsGetVolumeData(DeviceToMount,
441 Vcb);
442 if (!NT_SUCCESS(Status))
443 goto ByeBye;
444
445 NewDeviceObject->Vpb = DeviceToMount->Vpb;
446
447 Vcb->StorageDevice = DeviceToMount;
448 Vcb->StorageDevice->Vpb->DeviceObject = NewDeviceObject;
449 Vcb->StorageDevice->Vpb->RealDevice = Vcb->StorageDevice;
450 Vcb->StorageDevice->Vpb->Flags |= VPB_MOUNTED;
451 NewDeviceObject->StackSize = Vcb->StorageDevice->StackSize + 1;
452 NewDeviceObject->Flags &= ~DO_DEVICE_INITIALIZING;
453
454 Vcb->StreamFileObject = IoCreateStreamFileObject(NULL,
455 Vcb->StorageDevice);
456
457 InitializeListHead(&Vcb->FcbListHead);
458
459 Fcb = NtfsCreateFCB(NULL, Vcb);
460 if (Fcb == NULL)
461 {
462 Status = STATUS_INSUFFICIENT_RESOURCES;
463 goto ByeBye;
464 }
465
466 Ccb = ExAllocatePoolWithTag(NonPagedPool,
467 sizeof(NTFS_CCB),
468 TAG_CCB);
469 if (Ccb == NULL)
470 {
471 Status = STATUS_INSUFFICIENT_RESOURCES;
472 goto ByeBye;
473 }
474
475 RtlZeroMemory(Ccb, sizeof(NTFS_CCB));
476
477 Ccb->Identifier.Type = NTFS_TYPE_CCB;
478 Ccb->Identifier.Size = sizeof(NTFS_TYPE_CCB);
479
480 Vcb->StreamFileObject->FsContext = Fcb;
481 Vcb->StreamFileObject->FsContext2 = Ccb;
482 Vcb->StreamFileObject->SectionObjectPointer = &Fcb->SectionObjectPointers;
483 Vcb->StreamFileObject->PrivateCacheMap = NULL;
484 Vcb->StreamFileObject->Vpb = Vcb->Vpb;
485 Ccb->PtrFileObject = Vcb->StreamFileObject;
486 Fcb->FileObject = Vcb->StreamFileObject;
487 Fcb->Vcb = (PDEVICE_EXTENSION)Vcb->StorageDevice;
488
489 Fcb->Flags = FCB_IS_VOLUME_STREAM;
490
491 Fcb->RFCB.FileSize.QuadPart = Vcb->NtfsInfo.SectorCount * Vcb->NtfsInfo.BytesPerSector;
492 Fcb->RFCB.ValidDataLength.QuadPart = Vcb->NtfsInfo.SectorCount * Vcb->NtfsInfo.BytesPerSector;
493 Fcb->RFCB.AllocationSize.QuadPart = Vcb->NtfsInfo.SectorCount * Vcb->NtfsInfo.BytesPerSector; /* Correct? */
494
495 // Fcb->Entry.ExtentLocationL = 0;
496 // Fcb->Entry.DataLengthL = DeviceExt->CdInfo.VolumeSpaceSize * BLOCKSIZE;
497
498 _SEH2_TRY
499 {
500 CcInitializeCacheMap(Vcb->StreamFileObject,
501 (PCC_FILE_SIZES)(&Fcb->RFCB.AllocationSize),
502 TRUE,
503 &(NtfsGlobalData->CacheMgrCallbacks),
504 Fcb);
505 }
506 _SEH2_EXCEPT(EXCEPTION_EXECUTE_HANDLER)
507 {
508 Status = _SEH2_GetExceptionCode();
509 goto ByeBye;
510 }
511 _SEH2_END;
512
513 ExInitializeResourceLite(&Vcb->DirResource);
514
515 KeInitializeSpinLock(&Vcb->FcbListLock);
516
517 /* Get serial number */
518 NewDeviceObject->Vpb->SerialNumber = Vcb->NtfsInfo.SerialNumber;
519
520 /* Get volume label */
521 NewDeviceObject->Vpb->VolumeLabelLength = Vcb->NtfsInfo.VolumeLabelLength;
522 RtlCopyMemory(NewDeviceObject->Vpb->VolumeLabel,
523 Vcb->NtfsInfo.VolumeLabel,
524 Vcb->NtfsInfo.VolumeLabelLength);
525
526 Status = STATUS_SUCCESS;
527
528 ByeBye:
529 if (!NT_SUCCESS(Status))
530 {
531 /* Cleanup */
532 if (Vcb && Vcb->StreamFileObject)
533 ObDereferenceObject(Vcb->StreamFileObject);
534
535 if (Fcb)
536 NtfsDestroyFCB(Fcb);
537
538 if (Ccb)
539 ExFreePool(Ccb);
540
541 if (NewDeviceObject)
542 IoDeleteDevice(NewDeviceObject);
543 }
544
545 DPRINT("NtfsMountVolume() done (Status: %lx)\n", Status);
546
547 return Status;
548 }
549
550
551 static
552 NTSTATUS
553 NtfsVerifyVolume(PDEVICE_OBJECT DeviceObject,
554 PIRP Irp)
555 {
556 UNREFERENCED_PARAMETER(DeviceObject);
557 UNREFERENCED_PARAMETER(Irp);
558 DPRINT1("NtfsVerifyVolume() called\n");
559 return STATUS_WRONG_VOLUME;
560 }
561
562
563 static
564 NTSTATUS
565 GetNfsVolumeData(PDEVICE_EXTENSION DeviceExt,
566 PIRP Irp)
567 {
568 PIO_STACK_LOCATION Stack;
569 PNTFS_VOLUME_DATA_BUFFER DataBuffer;
570 PNTFS_ATTR_RECORD Attribute;
571
572 DataBuffer = (PNTFS_VOLUME_DATA_BUFFER)Irp->UserBuffer;
573 Stack = IoGetCurrentIrpStackLocation(Irp);
574
575 if (Stack->Parameters.FileSystemControl.OutputBufferLength < sizeof(NTFS_VOLUME_DATA_BUFFER) ||
576 Irp->UserBuffer == NULL)
577 {
578 DPRINT1("Invalid output! %d %p\n", Stack->Parameters.FileSystemControl.OutputBufferLength, Irp->UserBuffer);
579 return STATUS_INVALID_PARAMETER;
580 }
581
582 DataBuffer->VolumeSerialNumber.QuadPart = DeviceExt->NtfsInfo.SerialNumber;
583 DataBuffer->NumberSectors.QuadPart = DeviceExt->NtfsInfo.SectorCount;
584 DataBuffer->TotalClusters.QuadPart = DeviceExt->NtfsInfo.ClusterCount;
585 DataBuffer->FreeClusters.QuadPart = NtfsGetFreeClusters(DeviceExt);
586 DataBuffer->TotalReserved.QuadPart = 0LL; // FIXME
587 DataBuffer->BytesPerSector = DeviceExt->NtfsInfo.BytesPerSector;
588 DataBuffer->BytesPerCluster = DeviceExt->NtfsInfo.BytesPerCluster;
589 DataBuffer->BytesPerFileRecordSegment = DeviceExt->NtfsInfo.BytesPerFileRecord;
590 DataBuffer->ClustersPerFileRecordSegment = DeviceExt->NtfsInfo.BytesPerFileRecord / DeviceExt->NtfsInfo.BytesPerCluster;
591 DataBuffer->MftStartLcn.QuadPart = DeviceExt->NtfsInfo.MftStart.QuadPart;
592 DataBuffer->Mft2StartLcn.QuadPart = DeviceExt->NtfsInfo.MftMirrStart.QuadPart;
593 DataBuffer->MftZoneStart.QuadPart = 0; // FIXME
594 DataBuffer->MftZoneEnd.QuadPart = 0; // FIXME
595
596 Attribute = (PNTFS_ATTR_RECORD)((ULONG_PTR)DeviceExt->MasterFileTable + DeviceExt->MasterFileTable->AttributeOffset);
597 while (Attribute < (PNTFS_ATTR_RECORD)((ULONG_PTR)DeviceExt->MasterFileTable + DeviceExt->MasterFileTable->BytesInUse) &&
598 Attribute->Type != AttributeEnd)
599 {
600 if (Attribute->Type == AttributeData)
601 {
602 ASSERT(Attribute->IsNonResident);
603 DataBuffer->MftValidDataLength.QuadPart = Attribute->NonResident.DataSize;
604
605 break;
606 }
607
608 Attribute = (PNTFS_ATTR_RECORD)((ULONG_PTR)Attribute + Attribute->Length);
609 }
610
611 if (Stack->Parameters.FileSystemControl.OutputBufferLength >= sizeof(NTFS_EXTENDED_VOLUME_DATA) + sizeof(NTFS_VOLUME_DATA_BUFFER))
612 {
613 PNTFS_EXTENDED_VOLUME_DATA ExtendedData = (PNTFS_EXTENDED_VOLUME_DATA)((ULONG_PTR)Irp->UserBuffer + sizeof(NTFS_VOLUME_DATA_BUFFER));
614
615 ExtendedData->ByteCount = sizeof(NTFS_EXTENDED_VOLUME_DATA);
616 ExtendedData->MajorVersion = DeviceExt->NtfsInfo.MajorVersion;
617 ExtendedData->MinorVersion = DeviceExt->NtfsInfo.MinorVersion;
618 }
619
620 return STATUS_SUCCESS;
621 }
622
623
624 static
625 NTSTATUS
626 GetNtfsFileRecord(PDEVICE_EXTENSION DeviceExt,
627 PIRP Irp)
628 {
629 NTSTATUS Status;
630 PIO_STACK_LOCATION Stack;
631 PNTFS_FILE_RECORD_INPUT_BUFFER InputBuffer;
632 PFILE_RECORD_HEADER FileRecord;
633 PNTFS_FILE_RECORD_OUTPUT_BUFFER OutputBuffer;
634 ULONGLONG MFTRecord;
635
636 Stack = IoGetCurrentIrpStackLocation(Irp);
637
638 if (Stack->Parameters.FileSystemControl.InputBufferLength < sizeof(NTFS_FILE_RECORD_INPUT_BUFFER) ||
639 Irp->AssociatedIrp.SystemBuffer == NULL)
640 {
641 DPRINT1("Invalid input! %d %p\n", Stack->Parameters.FileSystemControl.InputBufferLength, Irp->AssociatedIrp.SystemBuffer);
642 return STATUS_INVALID_PARAMETER;
643 }
644
645 if (Stack->Parameters.FileSystemControl.OutputBufferLength < (FIELD_OFFSET(NTFS_FILE_RECORD_OUTPUT_BUFFER, FileRecordBuffer) + DeviceExt->NtfsInfo.BytesPerFileRecord) ||
646 Irp->AssociatedIrp.SystemBuffer == NULL)
647 {
648 DPRINT1("Invalid output! %d %p\n", Stack->Parameters.FileSystemControl.OutputBufferLength, Irp->AssociatedIrp.SystemBuffer);
649 return STATUS_BUFFER_TOO_SMALL;
650 }
651
652 FileRecord = ExAllocatePoolWithTag(NonPagedPool,
653 DeviceExt->NtfsInfo.BytesPerFileRecord,
654 TAG_NTFS);
655 if (FileRecord == NULL)
656 {
657 return STATUS_INSUFFICIENT_RESOURCES;
658 }
659
660 InputBuffer = (PNTFS_FILE_RECORD_INPUT_BUFFER)Irp->AssociatedIrp.SystemBuffer;
661
662 MFTRecord = InputBuffer->FileReferenceNumber.QuadPart;
663 DPRINT1("Requesting: %I64x\n", MFTRecord);
664
665 do
666 {
667 Status = ReadFileRecord(DeviceExt, MFTRecord, FileRecord);
668 if (NT_SUCCESS(Status))
669 {
670 if (FileRecord->Flags & FRH_IN_USE)
671 {
672 break;
673 }
674 }
675
676 --MFTRecord;
677 } while (TRUE);
678
679 DPRINT1("Returning: %I64x\n", MFTRecord);
680 OutputBuffer = (PNTFS_FILE_RECORD_OUTPUT_BUFFER)Irp->AssociatedIrp.SystemBuffer;
681 OutputBuffer->FileReferenceNumber.QuadPart = MFTRecord;
682 OutputBuffer->FileRecordLength = DeviceExt->NtfsInfo.BytesPerFileRecord;
683 RtlCopyMemory(OutputBuffer->FileRecordBuffer, FileRecord, DeviceExt->NtfsInfo.BytesPerFileRecord);
684
685 ExFreePoolWithTag(FileRecord, TAG_NTFS);
686
687 Irp->IoStatus.Information = FIELD_OFFSET(NTFS_FILE_RECORD_OUTPUT_BUFFER, FileRecordBuffer) + DeviceExt->NtfsInfo.BytesPerFileRecord;
688
689 return STATUS_SUCCESS;
690 }
691
692
693 static
694 NTSTATUS
695 GetVolumeBitmap(PDEVICE_EXTENSION DeviceExt,
696 PIRP Irp)
697 {
698 NTSTATUS Status = STATUS_SUCCESS;
699 PIO_STACK_LOCATION Stack;
700 PVOLUME_BITMAP_BUFFER BitmapBuffer;
701 LONGLONG StartingLcn;
702 PFILE_RECORD_HEADER BitmapRecord;
703 PNTFS_ATTR_CONTEXT DataContext;
704 ULONGLONG TotalClusters;
705 ULONGLONG ToCopy;
706 BOOLEAN Overflow = FALSE;
707
708 DPRINT1("GetVolumeBitmap(%p, %p)\n", DeviceExt, Irp);
709
710 Stack = IoGetCurrentIrpStackLocation(Irp);
711
712 if (Stack->Parameters.FileSystemControl.InputBufferLength < sizeof(STARTING_LCN_INPUT_BUFFER))
713 {
714 DPRINT1("Invalid input! %d\n", Stack->Parameters.FileSystemControl.InputBufferLength);
715 return STATUS_INVALID_PARAMETER;
716 }
717
718 if (Stack->Parameters.FileSystemControl.OutputBufferLength < sizeof(VOLUME_BITMAP_BUFFER))
719 {
720 DPRINT1("Invalid output! %d\n", Stack->Parameters.FileSystemControl.OutputBufferLength);
721 return STATUS_BUFFER_TOO_SMALL;
722 }
723
724 BitmapBuffer = NtfsGetUserBuffer(Irp, FALSE);
725 if (Irp->RequestorMode == UserMode)
726 {
727 _SEH2_TRY
728 {
729 ProbeForRead(Stack->Parameters.FileSystemControl.Type3InputBuffer,
730 Stack->Parameters.FileSystemControl.InputBufferLength,
731 sizeof(CHAR));
732 ProbeForWrite(BitmapBuffer, Stack->Parameters.FileSystemControl.OutputBufferLength,
733 sizeof(CHAR));
734 }
735 _SEH2_EXCEPT(EXCEPTION_EXECUTE_HANDLER)
736 {
737 Status = _SEH2_GetExceptionCode();
738 }
739 _SEH2_END;
740 }
741 else
742 {
743 if (Stack->Parameters.FileSystemControl.Type3InputBuffer == NULL ||
744 BitmapBuffer == NULL)
745 {
746 Status = STATUS_INVALID_PARAMETER;
747 }
748 }
749
750 if (!NT_SUCCESS(Status))
751 {
752 DPRINT1("Invalid buffer! %p %p\n", Stack->Parameters.FileSystemControl.Type3InputBuffer, BitmapBuffer);
753 return Status;
754 }
755
756 StartingLcn = ((PSTARTING_LCN_INPUT_BUFFER)Stack->Parameters.FileSystemControl.Type3InputBuffer)->StartingLcn.QuadPart;
757 if (StartingLcn > DeviceExt->NtfsInfo.ClusterCount)
758 {
759 DPRINT1("Requested bitmap start beyond partition end: %I64x %I64x\n", DeviceExt->NtfsInfo.ClusterCount, StartingLcn);
760 return STATUS_INVALID_PARAMETER;
761 }
762
763 /* Round down to a multiple of 8 */
764 StartingLcn = StartingLcn & ~7;
765 TotalClusters = DeviceExt->NtfsInfo.ClusterCount - StartingLcn;
766 ToCopy = TotalClusters / 8;
767 if ((ToCopy + FIELD_OFFSET(VOLUME_BITMAP_BUFFER, Buffer)) > Stack->Parameters.FileSystemControl.OutputBufferLength)
768 {
769 DPRINT1("Buffer too small: %x, needed: %x\n", Stack->Parameters.FileSystemControl.OutputBufferLength, (ToCopy + FIELD_OFFSET(VOLUME_BITMAP_BUFFER, Buffer)));
770 Overflow = TRUE;
771 ToCopy = Stack->Parameters.FileSystemControl.OutputBufferLength - FIELD_OFFSET(VOLUME_BITMAP_BUFFER, Buffer);
772 }
773
774 BitmapRecord = ExAllocatePoolWithTag(NonPagedPool,
775 DeviceExt->NtfsInfo.BytesPerFileRecord,
776 TAG_NTFS);
777 if (BitmapRecord == NULL)
778 {
779 return STATUS_INSUFFICIENT_RESOURCES;
780 }
781
782 Status = ReadFileRecord(DeviceExt, NTFS_FILE_BITMAP, BitmapRecord);
783 if (!NT_SUCCESS(Status))
784 {
785 DPRINT1("Failed reading volume bitmap: %lx\n", Status);
786 ExFreePoolWithTag(BitmapRecord, TAG_NTFS);
787 return Status;
788 }
789
790 Status = FindAttribute(DeviceExt, BitmapRecord, AttributeData, L"", 0, &DataContext);
791 if (!NT_SUCCESS(Status))
792 {
793 DPRINT1("Failed find $DATA for bitmap: %lx\n", Status);
794 ExFreePoolWithTag(BitmapRecord, TAG_NTFS);
795 return Status;
796 }
797
798 BitmapBuffer->StartingLcn.QuadPart = StartingLcn;
799 BitmapBuffer->BitmapSize.QuadPart = ToCopy * 8;
800
801 Irp->IoStatus.Information = FIELD_OFFSET(VOLUME_BITMAP_BUFFER, Buffer);
802 _SEH2_TRY
803 {
804 Irp->IoStatus.Information += ReadAttribute(DeviceExt, DataContext, StartingLcn / 8, (PCHAR)BitmapBuffer->Buffer, ToCopy);
805 Status = (Overflow ? STATUS_BUFFER_OVERFLOW : STATUS_SUCCESS);
806 }
807 _SEH2_EXCEPT(EXCEPTION_EXECUTE_HANDLER)
808 {
809 Status = _SEH2_GetExceptionCode();
810 }
811 _SEH2_END;
812 ReleaseAttributeContext(DataContext);
813 ExFreePoolWithTag(BitmapRecord, TAG_NTFS);
814
815 return STATUS_SUCCESS;
816 }
817
818
819 static
820 NTSTATUS
821 NtfsUserFsRequest(PDEVICE_OBJECT DeviceObject,
822 PIRP Irp)
823 {
824 NTSTATUS Status;
825 PIO_STACK_LOCATION Stack;
826 PDEVICE_EXTENSION DeviceExt;
827
828 DPRINT1("NtfsUserFsRequest(%p, %p)\n", DeviceObject, Irp);
829
830 Stack = IoGetCurrentIrpStackLocation(Irp);
831 DeviceExt = DeviceObject->DeviceExtension;
832 switch (Stack->Parameters.FileSystemControl.FsControlCode)
833 {
834 case FSCTL_CREATE_USN_JOURNAL:
835 case FSCTL_DELETE_USN_JOURNAL:
836 case FSCTL_ENUM_USN_DATA:
837 case FSCTL_EXTEND_VOLUME:
838 //case FSCTL_GET_RETRIEVAL_POINTER_BASE:
839 case FSCTL_GET_RETRIEVAL_POINTERS:
840 case FSCTL_LOCK_VOLUME:
841 //case FSCTL_LOOKUP_STREAM_FROM_CLUSTER:
842 case FSCTL_MARK_HANDLE:
843 case FSCTL_MOVE_FILE:
844 case FSCTL_QUERY_USN_JOURNAL:
845 case FSCTL_READ_FILE_USN_DATA:
846 case FSCTL_READ_USN_JOURNAL:
847 //case FSCTL_SHRINK_VOLUME:
848 case FSCTL_UNLOCK_VOLUME:
849 case FSCTL_WRITE_USN_CLOSE_RECORD:
850 UNIMPLEMENTED;
851 DPRINT1("Unimplemented user request: %x\n", Stack->Parameters.FileSystemControl.FsControlCode);
852 Status = STATUS_NOT_IMPLEMENTED;
853 break;
854
855 case FSCTL_GET_NTFS_VOLUME_DATA:
856 Status = GetNfsVolumeData(DeviceExt, Irp);
857 break;
858
859 case FSCTL_GET_NTFS_FILE_RECORD:
860 Status = GetNtfsFileRecord(DeviceExt, Irp);
861 break;
862
863 case FSCTL_GET_VOLUME_BITMAP:
864 Status = GetVolumeBitmap(DeviceExt, Irp);
865 break;
866
867 default:
868 DPRINT("Invalid user request: %x\n", Stack->Parameters.FileSystemControl.FsControlCode);
869 Status = STATUS_INVALID_DEVICE_REQUEST;
870 break;
871 }
872
873 return Status;
874 }
875
876
877 NTSTATUS
878 NtfsFileSystemControl(PNTFS_IRP_CONTEXT IrpContext)
879 {
880 NTSTATUS Status;
881 PIRP Irp;
882 PDEVICE_OBJECT DeviceObject;
883
884 DPRINT1("NtfsFileSystemControl() called\n");
885
886 DeviceObject = IrpContext->DeviceObject;
887 Irp = IrpContext->Irp;
888 Irp->IoStatus.Information = 0;
889
890 switch (IrpContext->MinorFunction)
891 {
892 case IRP_MN_KERNEL_CALL:
893 DPRINT1("NTFS: IRP_MN_USER_FS_REQUEST\n");
894 Status = STATUS_INVALID_DEVICE_REQUEST;
895 break;
896
897 case IRP_MN_USER_FS_REQUEST:
898 Status = NtfsUserFsRequest(DeviceObject, Irp);
899 break;
900
901 case IRP_MN_MOUNT_VOLUME:
902 DPRINT("NTFS: IRP_MN_MOUNT_VOLUME\n");
903 Status = NtfsMountVolume(DeviceObject, Irp);
904 break;
905
906 case IRP_MN_VERIFY_VOLUME:
907 DPRINT1("NTFS: IRP_MN_VERIFY_VOLUME\n");
908 Status = NtfsVerifyVolume(DeviceObject, Irp);
909 break;
910
911 default:
912 DPRINT1("NTFS FSC: MinorFunction %d\n", IrpContext->MinorFunction);
913 Status = STATUS_INVALID_DEVICE_REQUEST;
914 break;
915 }
916
917 return Status;
918 }
919
920 /* EOF */