[NTFS]
[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->MasterFileTable);
331
332 /* Enumerate attributes */
333 NtfsDumpFileAttributes(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 CcInitializeCacheMap(Vcb->StreamFileObject,
499 (PCC_FILE_SIZES)(&Fcb->RFCB.AllocationSize),
500 FALSE,
501 &(NtfsGlobalData->CacheMgrCallbacks),
502 Fcb);
503
504 ExInitializeResourceLite(&Vcb->DirResource);
505
506 KeInitializeSpinLock(&Vcb->FcbListLock);
507
508 /* Get serial number */
509 NewDeviceObject->Vpb->SerialNumber = Vcb->NtfsInfo.SerialNumber;
510
511 /* Get volume label */
512 NewDeviceObject->Vpb->VolumeLabelLength = Vcb->NtfsInfo.VolumeLabelLength;
513 RtlCopyMemory(NewDeviceObject->Vpb->VolumeLabel,
514 Vcb->NtfsInfo.VolumeLabel,
515 Vcb->NtfsInfo.VolumeLabelLength);
516
517 Status = STATUS_SUCCESS;
518
519 ByeBye:
520 if (!NT_SUCCESS(Status))
521 {
522 /* Cleanup */
523 if (Vcb && Vcb->StreamFileObject)
524 ObDereferenceObject(Vcb->StreamFileObject);
525
526 if (Fcb)
527 ExFreePool(Fcb);
528
529 if (Ccb)
530 ExFreePool(Ccb);
531
532 if (NewDeviceObject)
533 IoDeleteDevice(NewDeviceObject);
534 }
535
536 DPRINT("NtfsMountVolume() done (Status: %lx)\n", Status);
537
538 return Status;
539 }
540
541
542 static
543 NTSTATUS
544 NtfsVerifyVolume(PDEVICE_OBJECT DeviceObject,
545 PIRP Irp)
546 {
547 UNREFERENCED_PARAMETER(DeviceObject);
548 UNREFERENCED_PARAMETER(Irp);
549 DPRINT1("NtfsVerifyVolume() called\n");
550 return STATUS_WRONG_VOLUME;
551 }
552
553
554 static
555 NTSTATUS
556 GetNfsVolumeData(PDEVICE_EXTENSION DeviceExt,
557 PIRP Irp)
558 {
559 PIO_STACK_LOCATION Stack;
560 PNTFS_VOLUME_DATA_BUFFER DataBuffer;
561 PNTFS_ATTR_RECORD Attribute;
562
563 DataBuffer = (PNTFS_VOLUME_DATA_BUFFER)Irp->UserBuffer;
564 Stack = IoGetCurrentIrpStackLocation(Irp);
565
566 if (Stack->Parameters.FileSystemControl.OutputBufferLength < sizeof(NTFS_VOLUME_DATA_BUFFER) ||
567 Irp->UserBuffer == NULL)
568 {
569 DPRINT1("Invalid output! %d %p\n", Stack->Parameters.FileSystemControl.OutputBufferLength, Irp->UserBuffer);
570 return STATUS_INVALID_PARAMETER;
571 }
572
573 DataBuffer->VolumeSerialNumber.QuadPart = DeviceExt->NtfsInfo.SerialNumber;
574 DataBuffer->NumberSectors.QuadPart = DeviceExt->NtfsInfo.SectorCount;
575 DataBuffer->TotalClusters.QuadPart = DeviceExt->NtfsInfo.ClusterCount;
576 DataBuffer->FreeClusters.QuadPart = NtfsGetFreeClusters(DeviceExt);
577 DataBuffer->TotalReserved.QuadPart = 0LL; // FIXME
578 DataBuffer->BytesPerSector = DeviceExt->NtfsInfo.BytesPerSector;
579 DataBuffer->BytesPerCluster = DeviceExt->NtfsInfo.BytesPerCluster;
580 DataBuffer->BytesPerFileRecordSegment = DeviceExt->NtfsInfo.BytesPerFileRecord;
581 DataBuffer->ClustersPerFileRecordSegment = DeviceExt->NtfsInfo.BytesPerFileRecord / DeviceExt->NtfsInfo.BytesPerCluster;
582 DataBuffer->MftStartLcn.QuadPart = DeviceExt->NtfsInfo.MftStart.QuadPart;
583 DataBuffer->Mft2StartLcn.QuadPart = DeviceExt->NtfsInfo.MftMirrStart.QuadPart;
584 DataBuffer->MftZoneStart.QuadPart = 0; // FIXME
585 DataBuffer->MftZoneEnd.QuadPart = 0; // FIXME
586
587 Attribute = (PNTFS_ATTR_RECORD)((ULONG_PTR)DeviceExt->MasterFileTable + DeviceExt->MasterFileTable->AttributeOffset);
588 while (Attribute < (PNTFS_ATTR_RECORD)((ULONG_PTR)DeviceExt->MasterFileTable + DeviceExt->MasterFileTable->BytesInUse) &&
589 Attribute->Type != AttributeEnd)
590 {
591 if (Attribute->Type == AttributeData)
592 {
593 ASSERT(Attribute->IsNonResident);
594 DataBuffer->MftValidDataLength.QuadPart = Attribute->NonResident.DataSize;
595
596 break;
597 }
598
599 Attribute = (PNTFS_ATTR_RECORD)((ULONG_PTR)Attribute + Attribute->Length);
600 }
601
602 if (Stack->Parameters.FileSystemControl.OutputBufferLength >= sizeof(NTFS_EXTENDED_VOLUME_DATA) + sizeof(NTFS_VOLUME_DATA_BUFFER))
603 {
604 PNTFS_EXTENDED_VOLUME_DATA ExtendedData = (PNTFS_EXTENDED_VOLUME_DATA)((ULONG_PTR)Irp->UserBuffer + sizeof(NTFS_VOLUME_DATA_BUFFER));
605
606 ExtendedData->ByteCount = sizeof(NTFS_EXTENDED_VOLUME_DATA);
607 ExtendedData->MajorVersion = DeviceExt->NtfsInfo.MajorVersion;
608 ExtendedData->MinorVersion = DeviceExt->NtfsInfo.MinorVersion;
609 }
610
611 return STATUS_SUCCESS;
612 }
613
614
615 static
616 NTSTATUS
617 GetNtfsFileRecord(PDEVICE_EXTENSION DeviceExt,
618 PIRP Irp)
619 {
620 NTSTATUS Status;
621 PIO_STACK_LOCATION Stack;
622 PNTFS_FILE_RECORD_INPUT_BUFFER InputBuffer;
623 PFILE_RECORD_HEADER FileRecord;
624 PNTFS_FILE_RECORD_OUTPUT_BUFFER OutputBuffer;
625 ULONGLONG MFTRecord;
626
627 Stack = IoGetCurrentIrpStackLocation(Irp);
628
629 if (Stack->Parameters.FileSystemControl.InputBufferLength < sizeof(NTFS_FILE_RECORD_INPUT_BUFFER) ||
630 Irp->AssociatedIrp.SystemBuffer == NULL)
631 {
632 DPRINT1("Invalid input! %d %p\n", Stack->Parameters.FileSystemControl.InputBufferLength, Irp->AssociatedIrp.SystemBuffer);
633 return STATUS_INVALID_PARAMETER;
634 }
635
636 if (Stack->Parameters.FileSystemControl.OutputBufferLength < (FIELD_OFFSET(NTFS_FILE_RECORD_OUTPUT_BUFFER, FileRecordBuffer) + DeviceExt->NtfsInfo.BytesPerFileRecord) ||
637 Irp->AssociatedIrp.SystemBuffer == NULL)
638 {
639 DPRINT1("Invalid output! %d %p\n", Stack->Parameters.FileSystemControl.OutputBufferLength, Irp->AssociatedIrp.SystemBuffer);
640 return STATUS_BUFFER_TOO_SMALL;
641 }
642
643 FileRecord = ExAllocatePoolWithTag(NonPagedPool,
644 DeviceExt->NtfsInfo.BytesPerFileRecord,
645 TAG_NTFS);
646 if (FileRecord == NULL)
647 {
648 return STATUS_INSUFFICIENT_RESOURCES;
649 }
650
651 InputBuffer = (PNTFS_FILE_RECORD_INPUT_BUFFER)Irp->AssociatedIrp.SystemBuffer;
652
653 MFTRecord = InputBuffer->FileReferenceNumber.QuadPart;
654 DPRINT1("Requesting: %I64x\n", MFTRecord);
655
656 do
657 {
658 Status = ReadFileRecord(DeviceExt, MFTRecord, FileRecord);
659 if (NT_SUCCESS(Status))
660 {
661 if (FileRecord->Flags & FRH_IN_USE)
662 {
663 break;
664 }
665 }
666
667 --MFTRecord;
668 } while (TRUE);
669
670 DPRINT1("Returning: %I64x\n", MFTRecord);
671 OutputBuffer = (PNTFS_FILE_RECORD_OUTPUT_BUFFER)Irp->AssociatedIrp.SystemBuffer;
672 OutputBuffer->FileReferenceNumber.QuadPart = MFTRecord;
673 OutputBuffer->FileRecordLength = DeviceExt->NtfsInfo.BytesPerFileRecord;
674 RtlCopyMemory(OutputBuffer->FileRecordBuffer, FileRecord, DeviceExt->NtfsInfo.BytesPerFileRecord);
675
676 ExFreePoolWithTag(FileRecord, TAG_NTFS);
677
678 Irp->IoStatus.Information = FIELD_OFFSET(NTFS_FILE_RECORD_OUTPUT_BUFFER, FileRecordBuffer) + DeviceExt->NtfsInfo.BytesPerFileRecord;
679
680 return STATUS_SUCCESS;
681 }
682
683
684 static
685 NTSTATUS
686 GetVolumeBitmap(PDEVICE_EXTENSION DeviceExt,
687 PIRP Irp)
688 {
689 NTSTATUS Status = STATUS_SUCCESS;
690 PIO_STACK_LOCATION Stack;
691 PVOLUME_BITMAP_BUFFER BitmapBuffer;
692 LONGLONG StartingLcn;
693 PFILE_RECORD_HEADER BitmapRecord;
694 PNTFS_ATTR_CONTEXT DataContext;
695 ULONGLONG TotalClusters;
696 ULONGLONG ToCopy;
697 BOOLEAN Overflow = FALSE;
698
699 DPRINT1("GetVolumeBitmap(%p, %p)\n", DeviceExt, Irp);
700
701 Stack = IoGetCurrentIrpStackLocation(Irp);
702
703 if (Stack->Parameters.FileSystemControl.InputBufferLength < sizeof(STARTING_LCN_INPUT_BUFFER))
704 {
705 DPRINT1("Invalid input! %d\n", Stack->Parameters.FileSystemControl.InputBufferLength);
706 return STATUS_INVALID_PARAMETER;
707 }
708
709 if (Stack->Parameters.FileSystemControl.OutputBufferLength < sizeof(VOLUME_BITMAP_BUFFER))
710 {
711 DPRINT1("Invalid output! %d\n", Stack->Parameters.FileSystemControl.OutputBufferLength);
712 return STATUS_BUFFER_TOO_SMALL;
713 }
714
715 BitmapBuffer = NtfsGetUserBuffer(Irp);
716 if (Irp->RequestorMode == UserMode)
717 {
718 _SEH2_TRY
719 {
720 ProbeForRead(Stack->Parameters.FileSystemControl.Type3InputBuffer,
721 Stack->Parameters.FileSystemControl.InputBufferLength,
722 sizeof(CHAR));
723 ProbeForWrite(BitmapBuffer, Stack->Parameters.FileSystemControl.OutputBufferLength,
724 sizeof(CHAR));
725 }
726 _SEH2_EXCEPT(EXCEPTION_EXECUTE_HANDLER)
727 {
728 Status = _SEH2_GetExceptionCode();
729 }
730 _SEH2_END;
731 }
732 else
733 {
734 if (Stack->Parameters.FileSystemControl.Type3InputBuffer == NULL ||
735 BitmapBuffer == NULL)
736 {
737 Status = STATUS_INVALID_PARAMETER;
738 }
739 }
740
741 if (!NT_SUCCESS(Status))
742 {
743 DPRINT1("Invalid buffer! %p %p\n", Stack->Parameters.FileSystemControl.Type3InputBuffer, BitmapBuffer);
744 return Status;
745 }
746
747 StartingLcn = ((PSTARTING_LCN_INPUT_BUFFER)Stack->Parameters.FileSystemControl.Type3InputBuffer)->StartingLcn.QuadPart;
748 if (StartingLcn > DeviceExt->NtfsInfo.ClusterCount)
749 {
750 DPRINT1("Requested bitmap start beyond partition end: %I64x %I64x\n", DeviceExt->NtfsInfo.ClusterCount, StartingLcn);
751 return STATUS_INVALID_PARAMETER;
752 }
753
754 /* Round down to a multiple of 8 */
755 StartingLcn = StartingLcn & ~7;
756 TotalClusters = DeviceExt->NtfsInfo.ClusterCount - StartingLcn;
757 ToCopy = TotalClusters / 8;
758 if ((ToCopy + FIELD_OFFSET(VOLUME_BITMAP_BUFFER, Buffer)) > Stack->Parameters.FileSystemControl.OutputBufferLength)
759 {
760 DPRINT1("Buffer too small: %x, needed: %x\n", Stack->Parameters.FileSystemControl.OutputBufferLength, (ToCopy + FIELD_OFFSET(VOLUME_BITMAP_BUFFER, Buffer)));
761 Overflow = TRUE;
762 ToCopy = Stack->Parameters.FileSystemControl.OutputBufferLength - FIELD_OFFSET(VOLUME_BITMAP_BUFFER, Buffer);
763 }
764
765 BitmapRecord = ExAllocatePoolWithTag(NonPagedPool,
766 DeviceExt->NtfsInfo.BytesPerFileRecord,
767 TAG_NTFS);
768 if (BitmapRecord == NULL)
769 {
770 return STATUS_INSUFFICIENT_RESOURCES;
771 }
772
773 Status = ReadFileRecord(DeviceExt, NTFS_FILE_BITMAP, BitmapRecord);
774 if (!NT_SUCCESS(Status))
775 {
776 DPRINT1("Failed reading volume bitmap: %lx\n", Status);
777 ExFreePoolWithTag(BitmapRecord, TAG_NTFS);
778 return Status;
779 }
780
781 Status = FindAttribute(DeviceExt, BitmapRecord, AttributeData, L"", 0, &DataContext);
782 if (!NT_SUCCESS(Status))
783 {
784 DPRINT1("Failed find $DATA for bitmap: %lx\n", Status);
785 ExFreePoolWithTag(BitmapRecord, TAG_NTFS);
786 return Status;
787 }
788
789 BitmapBuffer->StartingLcn.QuadPart = StartingLcn;
790 BitmapBuffer->BitmapSize.QuadPart = ToCopy * 8;
791
792 Irp->IoStatus.Information = FIELD_OFFSET(VOLUME_BITMAP_BUFFER, Buffer);
793 _SEH2_TRY
794 {
795 Irp->IoStatus.Information += ReadAttribute(DeviceExt, DataContext, StartingLcn / 8, (PCHAR)BitmapBuffer->Buffer, ToCopy);
796 Status = (Overflow ? STATUS_BUFFER_OVERFLOW : STATUS_SUCCESS);
797 }
798 _SEH2_EXCEPT(EXCEPTION_EXECUTE_HANDLER)
799 {
800 Status = _SEH2_GetExceptionCode();
801 }
802 _SEH2_END;
803 ReleaseAttributeContext(DataContext);
804 ExFreePoolWithTag(BitmapRecord, TAG_NTFS);
805
806 return STATUS_SUCCESS;
807 }
808
809
810 static
811 NTSTATUS
812 NtfsUserFsRequest(PDEVICE_OBJECT DeviceObject,
813 PIRP Irp)
814 {
815 NTSTATUS Status;
816 PIO_STACK_LOCATION Stack;
817 PDEVICE_EXTENSION DeviceExt;
818
819 DPRINT1("NtfsUserFsRequest(%p, %p)\n", DeviceObject, Irp);
820
821 Stack = IoGetCurrentIrpStackLocation(Irp);
822 DeviceExt = DeviceObject->DeviceExtension;
823 switch (Stack->Parameters.FileSystemControl.FsControlCode)
824 {
825 case FSCTL_CREATE_USN_JOURNAL:
826 case FSCTL_DELETE_USN_JOURNAL:
827 case FSCTL_ENUM_USN_DATA:
828 case FSCTL_EXTEND_VOLUME:
829 //case FSCTL_GET_RETRIEVAL_POINTER_BASE:
830 case FSCTL_GET_RETRIEVAL_POINTERS:
831 case FSCTL_LOCK_VOLUME:
832 //case FSCTL_LOOKUP_STREAM_FROM_CLUSTER:
833 case FSCTL_MARK_HANDLE:
834 case FSCTL_MOVE_FILE:
835 case FSCTL_QUERY_USN_JOURNAL:
836 case FSCTL_READ_FILE_USN_DATA:
837 case FSCTL_READ_USN_JOURNAL:
838 //case FSCTL_SHRINK_VOLUME:
839 case FSCTL_UNLOCK_VOLUME:
840 case FSCTL_WRITE_USN_CLOSE_RECORD:
841 UNIMPLEMENTED;
842 DPRINT1("Unimplemented user request: %x\n", Stack->Parameters.FileSystemControl.FsControlCode);
843 Status = STATUS_NOT_IMPLEMENTED;
844 break;
845
846 case FSCTL_GET_NTFS_VOLUME_DATA:
847 Status = GetNfsVolumeData(DeviceExt, Irp);
848 break;
849
850 case FSCTL_GET_NTFS_FILE_RECORD:
851 Status = GetNtfsFileRecord(DeviceExt, Irp);
852 break;
853
854 case FSCTL_GET_VOLUME_BITMAP:
855 Status = GetVolumeBitmap(DeviceExt, Irp);
856 break;
857
858 default:
859 DPRINT("Invalid user request: %x\n", Stack->Parameters.FileSystemControl.FsControlCode);
860 Status = STATUS_INVALID_DEVICE_REQUEST;
861 break;
862 }
863
864 return Status;
865 }
866
867
868 NTSTATUS
869 NtfsFileSystemControl(PNTFS_IRP_CONTEXT IrpContext)
870 {
871 NTSTATUS Status;
872 PIRP Irp;
873 PDEVICE_OBJECT DeviceObject;
874
875 DPRINT1("NtfsFileSystemControl() called\n");
876
877 DeviceObject = IrpContext->DeviceObject;
878 Irp = IrpContext->Irp;
879 Irp->IoStatus.Information = 0;
880
881 switch (IrpContext->MinorFunction)
882 {
883 case IRP_MN_KERNEL_CALL:
884 DPRINT1("NTFS: IRP_MN_USER_FS_REQUEST\n");
885 Status = STATUS_INVALID_DEVICE_REQUEST;
886 break;
887
888 case IRP_MN_USER_FS_REQUEST:
889 Status = NtfsUserFsRequest(DeviceObject, Irp);
890 break;
891
892 case IRP_MN_MOUNT_VOLUME:
893 DPRINT("NTFS: IRP_MN_MOUNT_VOLUME\n");
894 Status = NtfsMountVolume(DeviceObject, Irp);
895 break;
896
897 case IRP_MN_VERIFY_VOLUME:
898 DPRINT1("NTFS: IRP_MN_VERIFY_VOLUME\n");
899 Status = NtfsVerifyVolume(DeviceObject, Irp);
900 break;
901
902 default:
903 DPRINT1("NTFS FSC: MinorFunction %d\n", IrpContext->MinorFunction);
904 Status = STATUS_INVALID_DEVICE_REQUEST;
905 break;
906 }
907
908 return Status;
909 }
910
911 /* EOF */