1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
|
/*++
Copyright (C) Microsoft Corporation, 1991 - 1999
Module Name:
pnp.c
Abstract:
SCSI disk class driver
Environment:
kernel mode only
Notes:
Revision History:
--*/
#include "disk.h"
#include "ntintsafe.h"
#ifdef DEBUG_USE_WPP
#include "enum.tmh"
#endif
#ifdef ALLOC_PRAGMA
#pragma alloc_text(PAGE, DiskConvertExtendedToLayout)
#pragma alloc_text(PAGE, DiskConvertPartitionToExtended)
#pragma alloc_text(PAGE, DiskConvertLayoutToExtended)
#pragma alloc_text(PAGE, DiskCreatePdo)
#pragma alloc_text(PAGE, DiskEnumerateDevice)
#pragma alloc_text(PAGE, DiskUpdateRemovablePartitions)
#pragma alloc_text(PAGE, DiskUpdatePartitions)
#pragma alloc_text(PAGE, DiskCreatePdo)
#endif
PDRIVE_LAYOUT_INFORMATION
DiskConvertExtendedToLayout(
IN CONST PDRIVE_LAYOUT_INFORMATION_EX LayoutEx
)
{
ULONG i;
ULONG LayoutSize;
PDRIVE_LAYOUT_INFORMATION Layout;
PPARTITION_INFORMATION Partition;
PPARTITION_INFORMATION_EX PartitionEx;
NTSTATUS status;
PAGED_CODE ();
NT_ASSERT ( LayoutEx );
//
// The only valid conversion is from an MBR extended layout structure to
// the old structure.
//
if (LayoutEx->PartitionStyle != PARTITION_STYLE_MBR) {
NT_ASSERT ( FALSE );
return NULL;
}
//
// Use safe interger function
//
status = RtlULongMult(LayoutEx->PartitionCount, sizeof(PARTITION_INFORMATION), &LayoutSize);
if (!NT_SUCCESS(status)) {
return NULL;
}
status = RtlULongAdd(LayoutSize, FIELD_OFFSET(DRIVE_LAYOUT_INFORMATION, PartitionEntry[0]),
&LayoutSize);
if (!NT_SUCCESS(status)) {
return NULL;
}
Layout = ExAllocatePool2 (
POOL_FLAG_NON_PAGED,
LayoutSize,
DISK_TAG_PART_LIST
);
if ( Layout == NULL ) {
return NULL;
}
Layout->Signature = LayoutEx->Mbr.Signature;
Layout->PartitionCount = LayoutEx->PartitionCount;
for (i = 0; i < LayoutEx->PartitionCount; i++) {
Partition = &Layout->PartitionEntry[i];
PartitionEx = &LayoutEx->PartitionEntry[i];
Partition->StartingOffset = PartitionEx->StartingOffset;
Partition->PartitionLength = PartitionEx->PartitionLength;
Partition->RewritePartition = PartitionEx->RewritePartition;
Partition->PartitionNumber = PartitionEx->PartitionNumber;
Partition->PartitionType = PartitionEx->Mbr.PartitionType;
Partition->BootIndicator = PartitionEx->Mbr.BootIndicator;
Partition->RecognizedPartition = PartitionEx->Mbr.RecognizedPartition;
Partition->HiddenSectors = PartitionEx->Mbr.HiddenSectors;
}
return Layout;
}
VOID
DiskConvertPartitionToExtended(
IN PPARTITION_INFORMATION Partition,
OUT PPARTITION_INFORMATION_EX PartitionEx
)
/*++
Routine Description:
Convert a PARTITION_INFORMATION structure to a PARTITION_INFORMATION_EX
structure.
Arguments:
Partition - A pointer to the PARTITION_INFORMATION structure to convert.
PartitionEx - A pointer to a buffer where the converted
PARTITION_INFORMATION_EX structure is to be stored.
Return Values:
None.
--*/
{
PAGED_CODE ();
NT_ASSERT ( PartitionEx != NULL );
NT_ASSERT ( Partition != NULL );
PartitionEx->PartitionStyle = PARTITION_STYLE_MBR;
PartitionEx->StartingOffset = Partition->StartingOffset;
PartitionEx->PartitionLength = Partition->PartitionLength;
PartitionEx->RewritePartition = Partition->RewritePartition;
PartitionEx->PartitionNumber = Partition->PartitionNumber;
PartitionEx->Mbr.PartitionType = Partition->PartitionType;
PartitionEx->Mbr.BootIndicator = Partition->BootIndicator;
PartitionEx->Mbr.RecognizedPartition = Partition->RecognizedPartition;
PartitionEx->Mbr.HiddenSectors = Partition->HiddenSectors;
}
PDRIVE_LAYOUT_INFORMATION_EX
DiskConvertLayoutToExtended(
IN CONST PDRIVE_LAYOUT_INFORMATION Layout
)
/*++
Routine Description:
Convert a DRIVE_LAYOUT_INFORMATION structure into a
DRIVE_LAYOUT_INFORMATION_EX structure.
Arguments:
Layout - The source DRIVE_LAYOUT_INFORMATION structure.
Return Values:
The resultant DRIVE_LAYOUT_INFORMATION_EX structure. This buffer must
be freed by the callee using ExFreePool.
--*/
{
ULONG i;
ULONG size;
PDRIVE_LAYOUT_INFORMATION_EX layoutEx;
NTSTATUS status;
PAGED_CODE ();
NT_ASSERT ( Layout != NULL );
//
// Allocate enough space for a DRIVE_LAYOUT_INFORMATION_EX structure
// plus as many PARTITION_INFORMATION_EX structures as are in the
// source array.
//
//
// Use safe interger function
//
status = RtlULongMult(Layout->PartitionCount, sizeof(PARTITION_INFORMATION_EX), &size);
if (!NT_SUCCESS(status)) {
return NULL;
}
status = RtlULongAdd(size, FIELD_OFFSET(DRIVE_LAYOUT_INFORMATION_EX, PartitionEntry[0]),
&size);
if (!NT_SUCCESS(status)) {
return NULL;
}
layoutEx = ExAllocatePool2(
POOL_FLAG_NON_PAGED,
size,
DISK_TAG_PART_LIST
);
if ( layoutEx == NULL ) {
return NULL;
}
//
// Convert the disk information.
//
layoutEx->PartitionStyle = PARTITION_STYLE_MBR;
layoutEx->PartitionCount = Layout->PartitionCount;
layoutEx->Mbr.Signature = Layout->Signature;
for (i = 0; i < Layout->PartitionCount; i++) {
//
// Convert each entry.
//
DiskConvertPartitionToExtended (
&Layout->PartitionEntry[i],
&layoutEx->PartitionEntry[i]
);
}
return layoutEx;
}
NTSTATUS
DiskEnumerateDevice(
IN PDEVICE_OBJECT Fdo
)
/*++
Routine Description:
This routine is called by the class driver to update the PDO list off
of this FDO. The disk driver also calls it internally to re-create
device objects.
This routine will read the partition table and create new PDO objects as
necessary. PDO's that no longer exist will be pulled out of the PDO list
so that pnp will destroy them.
Arguments:
Fdo - a pointer to the FDO being re-enumerated
Return Value:
status
--*/
{
PCOMMON_DEVICE_EXTENSION commonExtension = Fdo->DeviceExtension;
PFUNCTIONAL_DEVICE_EXTENSION fdoExtension = Fdo->DeviceExtension;
PPHYSICAL_DEVICE_EXTENSION pdoExtension = NULL;
PDISK_DATA diskData = (PDISK_DATA) commonExtension->DriverData;
PDEVICE_OBJECT pdo = NULL;
PDRIVE_LAYOUT_INFORMATION_EX partitionList;
NTSTATUS status;
BOOLEAN freePartitionList = FALSE;
NT_ASSERT(commonExtension->IsFdo);
PAGED_CODE();
//
// If our cached partition table is valid, there is nothing to be done
//
if ( diskData->CachedPartitionTableValid == TRUE )
{
return STATUS_SUCCESS;
}
//
// Update our image of the size of the drive. This may be necessary if
// the drive size is extended or we just released a reservation to
// ensure the kernel doesn't reject the partition table.
//
DiskReadDriveCapacity(Fdo);
//
// Lock out anyone else trying to repartition the disk.
//
DiskAcquirePartitioningLock(fdoExtension);
//
// Create objects for all the partitions on the device.
//
status = DiskReadPartitionTableEx(fdoExtension, FALSE, &partitionList);
//
// If the I/O read partition table failed and this is a removable device,
// then fix up the partition list to make it look like there is one
// zero length partition.
//
if ((!NT_SUCCESS(status) || partitionList->PartitionCount == 0) &&
Fdo->Characteristics & FILE_REMOVABLE_MEDIA) {
SIZE_T partitionListSize;
//
// Remember whether the drive is ready.
//
diskData->ReadyStatus = status;
//
// Allocate and zero a partition list.
//
partitionListSize =
FIELD_OFFSET(DRIVE_LAYOUT_INFORMATION_EX, PartitionEntry[1]);
partitionList = ExAllocatePool2(POOL_FLAG_NON_PAGED,
partitionListSize,
DISK_TAG_PART_LIST);
if (partitionList != NULL) {
//
// Set the partition count to one and the status to success
// so one device object will be created. Set the partition type
// to a bogus value.
//
partitionList->PartitionStyle = PARTITION_STYLE_MBR;
partitionList->PartitionCount = 1;
freePartitionList = TRUE;
status = STATUS_SUCCESS;
} else {
status = STATUS_INSUFFICIENT_RESOURCES;
}
}
if (NT_SUCCESS(status)) {
diskData->UpdatePartitionRoutine(Fdo, partitionList);
}
DiskReleasePartitioningLock(fdoExtension);
if (freePartitionList) {
FREE_POOL(partitionList);
}
return(STATUS_SUCCESS);
} // end DiskEnumerateDevice()
VOID
DiskUpdateRemovablePartitions(
IN PDEVICE_OBJECT Fdo,
IN OUT PDRIVE_LAYOUT_INFORMATION_EX PartitionList
)
/*++
Routine Description:
This routine is called by the class DLL to update the PDO list off of this
FDO. The disk driver also calls it internally to re-create device objects.
This routine will read the partition table and update the size of the
single partition device object which always exists for removable devices.
Arguments:
Fdo - a pointer to the FDO being reenumerated.
Return Value:
status
--*/
{
PFUNCTIONAL_DEVICE_EXTENSION fdoExtension = Fdo->DeviceExtension;
PPHYSICAL_DEVICE_EXTENSION pdoExtension = NULL;
ULONG partitionCount;
ULONG partitionNumber;
ULONG partitionOrdinal = 0;
ULONG newPartitionNumber;
PDISK_DATA pdoData;
NTSTATUS status;
PPARTITION_INFORMATION_EX partitionEntry;
PARTITION_STYLE partitionStyle;
PAGED_CODE();
NT_ASSERT(Fdo->Characteristics & FILE_REMOVABLE_MEDIA);
partitionStyle = PartitionList->PartitionStyle;
partitionCount = PartitionList->PartitionCount;
for(partitionNumber = 0;
partitionNumber < partitionCount;
partitionNumber++) {
partitionEntry = &(PartitionList->PartitionEntry[partitionNumber]);
partitionEntry->PartitionNumber = 0;
}
//
// Get exclusive access to the child list while repartitioning.
//
ClassAcquireChildLock(fdoExtension);
//
// Removable media should never have more than one PDO.
//
pdoExtension = fdoExtension->CommonExtension.ChildList;
if(pdoExtension == NULL) {
PARTITION_INFORMATION_EX tmpPartitionEntry = { 0 };
PDEVICE_OBJECT pdo;
//
// There is no PDO currently. Create one and pre-initialize it with
// a zero length.
//
tmpPartitionEntry.PartitionNumber = 1;
TracePrint((TRACE_LEVEL_INFORMATION, TRACE_FLAG_ENUM, "DiskUpdateRemovablePartitions: Creating RM partition\n"));
status = DiskCreatePdo(Fdo,
0,
&tmpPartitionEntry,
partitionStyle,
&pdo);
if(!NT_SUCCESS(status)) {
TracePrint((TRACE_LEVEL_ERROR, TRACE_FLAG_ENUM, "DiskUpdateRemovablePartitions: error %lx creating "
"new PDO for RM partition\n",
status));
goto DiskUpdateRemovablePartitionsExit;
}
//
// mark the new device as enumerated
//
pdoExtension = pdo->DeviceExtension;
pdoExtension->IsMissing = FALSE;
}
pdoData = pdoExtension->CommonExtension.DriverData;
//
// Search the partition list for a valid entry. We're looking for a
// primary partition since we only support the one.
//
for(partitionNumber = 0;
partitionNumber < partitionCount;
partitionNumber++) {
partitionEntry = &(PartitionList->PartitionEntry[partitionNumber]);
//
// Is this partition interesting?
//
if (partitionStyle == PARTITION_STYLE_MBR) {
if(partitionEntry->Mbr.PartitionType == PARTITION_ENTRY_UNUSED ||
IsContainerPartition(partitionEntry->Mbr.PartitionType)) {
continue;
}
}
partitionOrdinal++;
//
// We have found the first and thus only partition allowed on
// this disk. Update the information in the PDO to match the new
// partition.
//
TracePrint((TRACE_LEVEL_INFORMATION, TRACE_FLAG_ENUM, "DiskUpdateRemovablePartitions: Matched %wZ to #%d, "
"ordinal %d\n",
&pdoExtension->CommonExtension.DeviceName,
partitionEntry->PartitionNumber,
partitionOrdinal));
partitionEntry->PartitionNumber = 1;
pdoData->PartitionStyle = partitionStyle;
pdoData->PartitionOrdinal = partitionOrdinal;
NT_ASSERT(partitionEntry->PartitionLength.LowPart != 0x23456789);
pdoExtension->CommonExtension.StartingOffset =
partitionEntry->StartingOffset;
pdoExtension->CommonExtension.PartitionLength =
partitionEntry->PartitionLength;
if (partitionStyle == PARTITION_STYLE_MBR) {
pdoData->Mbr.HiddenSectors = partitionEntry->Mbr.HiddenSectors;
pdoData->Mbr.BootIndicator = partitionEntry->Mbr.BootIndicator;
//
// If this partition is being re-written then update the type
// information as well
//
if (partitionEntry->RewritePartition) {
pdoData->Mbr.PartitionType = partitionEntry->Mbr.PartitionType;
}
} else {
pdoData->Efi.PartitionType = partitionEntry->Gpt.PartitionType;
pdoData->Efi.PartitionId = partitionEntry->Gpt.PartitionId;
pdoData->Efi.Attributes = partitionEntry->Gpt.Attributes;
RtlCopyMemory(
pdoData->Efi.PartitionName,
partitionEntry->Gpt.Name,
sizeof (pdoData->Efi.PartitionName)
);
}
//
// Mark this one as found
//
pdoExtension->IsMissing = FALSE;
goto DiskUpdateRemovablePartitionsExit;
}
//
// No interesting partition was found.
//
if (partitionStyle == PARTITION_STYLE_MBR) {
pdoData->Mbr.HiddenSectors = 0;
pdoData->Mbr.PartitionType = PARTITION_ENTRY_UNUSED;
} else {
RtlZeroMemory (&pdoData->Efi,
sizeof (pdoData->Efi)
);
}
pdoExtension->CommonExtension.StartingOffset.QuadPart = 0;
pdoExtension->CommonExtension.PartitionLength.QuadPart = 0;
DiskUpdateRemovablePartitionsExit:
//
// Update the parent device object
//
{
PCOMMON_DEVICE_EXTENSION commonExtension = Fdo->DeviceExtension;
PDISK_DATA diskData = (PDISK_DATA)(commonExtension->DriverData);
if (partitionStyle == PARTITION_STYLE_MBR)
{
diskData->PartitionStyle = PARTITION_STYLE_MBR;
diskData->Mbr.Signature = PartitionList->Mbr.Signature;
}
else
{
diskData->PartitionStyle = PARTITION_STYLE_GPT;
diskData->Efi.DiskId = PartitionList->Gpt.DiskId;
}
}
ClassReleaseChildLock(fdoExtension);
return;
}
VOID
DiskUpdatePartitions(
IN PDEVICE_OBJECT Fdo,
IN OUT PDRIVE_LAYOUT_INFORMATION_EX PartitionList
)
/*++
Routine Description:
This routine will synchronize the information held in the partition list
with the device objects hanging off this Fdo. Any new partition objects
will be created, any non-existant ones will be marked as un-enumerated.
This will be done in several stages:
* Clear state (partition number) from every entry in the partition
list
* Set IsMissing flag on every child of this FDO
* For each child of the FDO:
if a matching partition exists in the partition list,
update the partition number in the table, update the
ordinal in the object and mark the object as enumerated
* For each un-enumerated device object
zero out the partition information to invalidate the device
delete the symbolic link if any
* For each un-matched entry in the partition list:
create a new partition object
update the partition number in the list entry
create a new symbolic link if necessary
Arguments:
Fdo - a pointer to the functional device object this partition list is for
PartitionList - a pointer to the partition list being updated
Return Value:
none
--*/
{
PFUNCTIONAL_DEVICE_EXTENSION fdoExtension = Fdo->DeviceExtension;
PPHYSICAL_DEVICE_EXTENSION oldChildList = NULL;
PPHYSICAL_DEVICE_EXTENSION pdoExtension = NULL;
ULONG partitionCount;
ULONG partitionNumber;
ULONG partitionOrdinal;
ULONG newPartitionNumber;
PPARTITION_INFORMATION_EX partitionEntry;
PDISK_DATA pdoData;
PARTITION_STYLE partitionStyle;
NTSTATUS status;
PAGED_CODE();
//
// Get exclusive access to the child list.
//
ClassAcquireChildLock(fdoExtension);
partitionStyle = PartitionList->PartitionStyle;
partitionCount = PartitionList->PartitionCount;
//
// Pull all the child device objects off the children list. We'll
// add them back later.
//
oldChildList = fdoExtension->CommonExtension.ChildList;
fdoExtension->CommonExtension.ChildList = NULL;
//
// Clear the partition numbers from the list entries
//
for(partitionNumber = 0;
partitionNumber < partitionCount;
partitionNumber++) {
partitionEntry = &(PartitionList->PartitionEntry[partitionNumber]);
partitionEntry->PartitionNumber = 0;
}
//
// Now match each child partition to it's entry (if any) in the partition
// list.
//
while(oldChildList != NULL) {
pdoExtension = oldChildList;
pdoData = pdoExtension->CommonExtension.DriverData;
//
// Check all partition entries for a match on offset and length
//
partitionOrdinal = 0;
for(partitionNumber = 0;
partitionNumber < partitionCount;
partitionNumber++) {
partitionEntry = &(PartitionList->PartitionEntry[partitionNumber]);
//
// Is this an interesting partition entry?
//
if (partitionStyle == PARTITION_STYLE_MBR) {
if((partitionEntry->Mbr.PartitionType == PARTITION_ENTRY_UNUSED) ||
(IsContainerPartition(partitionEntry->Mbr.PartitionType))) {
continue;
}
}
partitionOrdinal++;
if(partitionEntry->PartitionNumber) {
//
// This partition has already been found - skip it
//
continue;
}
//
// Let's see if the partition information matches
//
if(partitionEntry->StartingOffset.QuadPart !=
pdoExtension->CommonExtension.StartingOffset.QuadPart) {
continue;
}
if(partitionEntry->PartitionLength.QuadPart !=
pdoExtension->CommonExtension.PartitionLength.QuadPart) {
continue;
}
//
// Yep - it matches. Update the information in the entry
//
partitionEntry->PartitionNumber = pdoExtension->CommonExtension.PartitionNumber;
if (partitionStyle == PARTITION_STYLE_MBR) {
pdoData->Mbr.HiddenSectors = partitionEntry->Mbr.HiddenSectors;
}
break;
}
if(partitionNumber != partitionCount) {
TracePrint((TRACE_LEVEL_INFORMATION, TRACE_FLAG_ENUM, "DiskUpdatePartitions: Matched %wZ to #%d, ordinal "
"%d\n",
&pdoExtension->CommonExtension.DeviceName,
partitionEntry->PartitionNumber,
partitionOrdinal));
NT_ASSERT(partitionEntry->PartitionLength.LowPart != 0x23456789);
// NT_ASSERT(pdoExtension->CommonExtension.PartitionLength.QuadPart != 0);
pdoData->PartitionStyle = partitionStyle;
//
// we found a match - update the information in the device object
// extension and driverdata
//
pdoData->PartitionOrdinal = partitionOrdinal;
//
// If this partition is being re-written then update the type
// information as well
//
if (partitionStyle == PARTITION_STYLE_MBR) {
if(partitionEntry->RewritePartition) {
pdoData->Mbr.PartitionType = partitionEntry->Mbr.PartitionType;
}
} else {
TracePrint((TRACE_LEVEL_INFORMATION, TRACE_FLAG_ENUM, "DiskUpdatePartitions: EFI Partition %ws\n",
pdoData->Efi.PartitionName
));
pdoData->Efi.PartitionType = partitionEntry->Gpt.PartitionType;
pdoData->Efi.PartitionId = partitionEntry->Gpt.PartitionId;
pdoData->Efi.Attributes = partitionEntry->Gpt.Attributes;
RtlCopyMemory(
pdoData->Efi.PartitionName,
partitionEntry->Gpt.Name,
sizeof (pdoData->Efi.PartitionName)
);
}
//
// Mark this one as found.
//
pdoExtension->IsMissing = FALSE;
//
// Pull it out of the old child list and add it into the
// real one.
//
oldChildList = pdoExtension->CommonExtension.ChildList;
pdoExtension->CommonExtension.ChildList =
fdoExtension->CommonExtension.ChildList;
fdoExtension->CommonExtension.ChildList = pdoExtension;
} else {
PDEVICE_OBJECT nextPdo;
TracePrint((TRACE_LEVEL_INFORMATION, TRACE_FLAG_ENUM, "DiskUpdatePartitions: Deleting %wZ\n",
&pdoExtension->CommonExtension.DeviceName));
if (partitionStyle == PARTITION_STYLE_GPT) {
TracePrint((TRACE_LEVEL_INFORMATION, TRACE_FLAG_ENUM, "DiskUpdatePartitions: EFI Partition %ws\n",
pdoData->Efi.PartitionName
));
}
//
// no matching entry in the partition list - throw this partition
// object away
//
pdoExtension->CommonExtension.PartitionLength.QuadPart = 0;
//
// grab a pointer to the next child before we mark this one as
// missing since missing devices could vanish at any time.
//
oldChildList = pdoExtension->CommonExtension.ChildList;
pdoExtension->CommonExtension.ChildList = (PVOID) -1;
//
// Now tell the class driver that this child is "missing" - this
// will cause it to be deleted.
//
ClassMarkChildMissing(pdoExtension, FALSE);
}
}
//
// At this point the old child list had best be empty.
//
NT_ASSERT(oldChildList == NULL);
//
// Iterate through the partition entries and create any partition
// objects that don't already exist
//
partitionOrdinal = 0;
newPartitionNumber = 0;
for(partitionNumber = 0;
partitionNumber < partitionCount;
partitionNumber++) {
PDEVICE_OBJECT pdo;
partitionEntry = &(PartitionList->PartitionEntry[partitionNumber]);
//
// Is this partition interesting
//
if (partitionStyle == PARTITION_STYLE_MBR) {
if((partitionEntry->Mbr.PartitionType == PARTITION_ENTRY_UNUSED) ||
(IsContainerPartition(partitionEntry->Mbr.PartitionType))) {
continue;
}
}
//
// Increment the count of interesting partitions
//
partitionOrdinal++;
newPartitionNumber++;
//
// Has this already been matched
//
if(partitionEntry->PartitionNumber == 0) {
LONG i;
//
// find the first safe partition number for this device
//
for(i = 0; i < (LONG) partitionCount; i++) {
PPARTITION_INFORMATION_EX tmp = &(PartitionList->PartitionEntry[i]);
if (partitionStyle == PARTITION_STYLE_MBR) {
if (tmp->Mbr.PartitionType == PARTITION_ENTRY_UNUSED ||
IsContainerPartition(tmp->Mbr.PartitionType)) {
continue;
}
}
if(tmp->PartitionNumber == newPartitionNumber) {
//
// Found a matching partition number - increment the count
// and restart the scan.
//
newPartitionNumber++;
i = -1;
continue;
}
}
//
// Assign this partition a partition number
//
partitionEntry->PartitionNumber = newPartitionNumber;
TracePrint((TRACE_LEVEL_INFORMATION, TRACE_FLAG_ENUM, "DiskUpdatePartitions: Found new partition #%d, ord %d "
"starting at %#016I64x and running for %#016I64x\n",
partitionEntry->PartitionNumber,
partitionOrdinal,
partitionEntry->StartingOffset.QuadPart,
partitionEntry->PartitionLength.QuadPart));
ClassReleaseChildLock(fdoExtension);
status = DiskCreatePdo(Fdo,
partitionOrdinal,
partitionEntry,
partitionStyle,
&pdo);
ClassAcquireChildLock(fdoExtension);
if(!NT_SUCCESS(status)) {
TracePrint((TRACE_LEVEL_ERROR, TRACE_FLAG_ENUM, "DiskUpdatePartitions: error %lx creating "
"new PDO for partition ordinal %d, number %d\n",
status,
partitionOrdinal,
partitionEntry->PartitionNumber));
//
// don't increment the partition number - we'll try to reuse
// it for the next child.
//
partitionEntry->PartitionNumber = 0;
newPartitionNumber--;
continue;
}
//
// mark the new device as enumerated
//
pdoExtension = pdo->DeviceExtension;
pdoExtension->IsMissing = FALSE;
//
// This number's taken already - try to scanning the partition
// table more than once for a new number.
//
}
}
//
// Update the parent device object
//
{
PCOMMON_DEVICE_EXTENSION commonExtension = Fdo->DeviceExtension;
PDISK_DATA diskData = (PDISK_DATA)(commonExtension->DriverData);
if (partitionStyle == PARTITION_STYLE_MBR)
{
diskData->PartitionStyle = PARTITION_STYLE_MBR;
diskData->Mbr.Signature = PartitionList->Mbr.Signature;
}
else
{
diskData->PartitionStyle = PARTITION_STYLE_GPT;
diskData->Efi.DiskId = PartitionList->Gpt.DiskId;
}
}
ClassReleaseChildLock(fdoExtension);
return;
}
NTSTATUS
DiskCreatePdo(
IN PDEVICE_OBJECT Fdo,
IN ULONG PartitionOrdinal,
IN PPARTITION_INFORMATION_EX PartitionEntry,
IN PARTITION_STYLE PartitionStyle,
OUT PDEVICE_OBJECT *Pdo
)
/*++
Routine Description:
This routine will create and initialize a new partition device object
(PDO) and insert it into the FDO partition list.
Arguments:
Fdo - a pointer to the functional device object this PDO will be a child
of
PartitionOrdinal - the partition ordinal for this PDO
PartitionEntry - the partition information for this device object
PartitionStyle - what style of partition table entry PartitionEntry is;
currently either MBR or EFI
Pdo - a location to store the pdo pointer upon successful completion
Return Value:
status
--*/
{
PFUNCTIONAL_DEVICE_EXTENSION fdoExtension = Fdo->DeviceExtension;
PDEVICE_OBJECT pdo = NULL;
PPHYSICAL_DEVICE_EXTENSION pdoExtension = NULL;
PUCHAR deviceName = NULL;
PDISK_DATA diskData = fdoExtension->CommonExtension.DriverData;
ULONG numberListElements;
NTSTATUS status = STATUS_SUCCESS;
PAGED_CODE();
//
// Create partition object and set up partition parameters.
//
status = DiskGenerateDeviceName(FALSE,
fdoExtension->DeviceNumber,
PartitionEntry->PartitionNumber,
&PartitionEntry->StartingOffset,
&PartitionEntry->PartitionLength,
&deviceName);
if(!NT_SUCCESS(status)) {
TracePrint((TRACE_LEVEL_ERROR, TRACE_FLAG_ENUM, "DiskCreatePdo - Can't generate name %lx\n", status));
return status;
}
TracePrint((TRACE_LEVEL_INFORMATION, TRACE_FLAG_ENUM, "DiskCreatePdo: Create device object %s\n", deviceName));
status = ClassCreateDeviceObject(Fdo->DriverObject,
deviceName,
Fdo,
FALSE,
&pdo);
if (!NT_SUCCESS(status)) {
TracePrint((TRACE_LEVEL_ERROR, TRACE_FLAG_ENUM, "DiskEnumerateDevice: Can't create device object for %s\n", deviceName));
FREE_POOL(deviceName);
return status;
}
FREE_POOL(deviceName);
//
// Set up device extension fields.
//
pdoExtension = pdo->DeviceExtension;
//
// Set up device object fields.
//
SET_FLAG(pdo->Flags, DO_DIRECT_IO);
pdo->StackSize = (CCHAR)
pdoExtension->CommonExtension.LowerDeviceObject->StackSize + 1;
//
// Get pointer to new disk data.
//
diskData = (PDISK_DATA) pdoExtension->CommonExtension.DriverData;
//
// Set the alignment requirements for the device based on the
// host adapter requirements
//
if (Fdo->AlignmentRequirement > pdo->AlignmentRequirement) {
pdo->AlignmentRequirement = Fdo->AlignmentRequirement;
}
if (fdoExtension->SrbFlags & SRB_FLAGS_QUEUE_ACTION_ENABLE) {
numberListElements = 30;
} else {
numberListElements = 8;
}
//
// Build the lookaside list for srb's for this partition based on
// whether the adapter and disk can do tagged queueing. Don't bother to
// check the status - this can't fail when called for a PDO.
//
ClassInitializeSrbLookasideList((PCOMMON_DEVICE_EXTENSION) pdoExtension,
numberListElements);
//
// Set the sense-data pointer in the device extension.
//
diskData->PartitionOrdinal = PartitionOrdinal;
pdoExtension->CommonExtension.PartitionNumber = PartitionEntry->PartitionNumber;
//
// Initialize relevant data.
//
diskData->PartitionStyle = PartitionStyle;
if (PartitionStyle == PARTITION_STYLE_MBR) {
diskData->Mbr.PartitionType = PartitionEntry->Mbr.PartitionType;
diskData->Mbr.BootIndicator = PartitionEntry->Mbr.BootIndicator;
diskData->Mbr.HiddenSectors = PartitionEntry->Mbr.HiddenSectors;
} else {
diskData->Efi.PartitionType = PartitionEntry->Gpt.PartitionType;
diskData->Efi.PartitionId = PartitionEntry->Gpt.PartitionId;
diskData->Efi.Attributes = PartitionEntry->Gpt.Attributes;
RtlCopyMemory (diskData->Efi.PartitionName,
PartitionEntry->Gpt.Name,
sizeof (diskData->Efi.PartitionName)
);
}
TracePrint((TRACE_LEVEL_INFORMATION, TRACE_FLAG_ENUM, "DiskEnumerateDevice: Partition type is %x\n",
diskData->Mbr.PartitionType));
pdoExtension->CommonExtension.StartingOffset =
PartitionEntry->StartingOffset;
pdoExtension->CommonExtension.PartitionLength =
PartitionEntry->PartitionLength;
TracePrint((TRACE_LEVEL_INFORMATION, TRACE_FLAG_ENUM, "DiskCreatePdo: hidden sectors value for pdo %#p set to %#x\n",
pdo,
diskData->Mbr.HiddenSectors));
//
// Check for removable media support.
//
if (fdoExtension->DeviceDescriptor->RemovableMedia) {
SET_FLAG(pdo->Characteristics, FILE_REMOVABLE_MEDIA);
}
pdoExtension->CommonExtension.DeviceObject = pdo;
CLEAR_FLAG(pdo->Flags, DO_DEVICE_INITIALIZING);
*Pdo = pdo;
return status;
}
/*
* DiskAcquirePartitioningLock
*
* Acquire the PartitioningEvent.
*
* NOTE: This function is called by several ioctl handlers which run in user context.
* Because we are acquiring an exclusion object in a user thread, we have to make sure
* that the thread is not killed or suspended while we are holding the event.
* So we call KeEnterCriticalRegion/KeLeaveCriticalRegion while holding the PartitioningEvent.
* THEREFORE, it is VERY IMPORTANT that DiskAcquirePartitioningLock and DiskReleasePartitioningLock
* are called on the SAME THREAD.
*/
VOID
DiskAcquirePartitioningLock(
IN PFUNCTIONAL_DEVICE_EXTENSION FdoExtension
)
{
PDISK_DATA diskData = FdoExtension->CommonExtension.DriverData;
PAGED_CODE();
ASSERT_FDO(FdoExtension->DeviceObject);
/*
* Don't let user-mode thread get suspended while we are holding the partitioning lock
*/
KeEnterCriticalRegion();
KeWaitForSingleObject(&(diskData->PartitioningEvent),
UserRequest,
KernelMode,
FALSE,
NULL);
return;
}
VOID
DiskReleasePartitioningLock(
IN PFUNCTIONAL_DEVICE_EXTENSION FdoExtension
)
{
PDISK_DATA diskData = FdoExtension->CommonExtension.DriverData;
PAGED_CODE();
ASSERT_FDO(FdoExtension->DeviceObject);
KeSetEvent(&(diskData->PartitioningEvent), IO_NO_INCREMENT, FALSE);
KeLeaveCriticalRegion();
return;
}
|