[NTOS:IO]
[reactos.git] / reactos / ntoskrnl / io / pnpmgr / pnpinit.c
1 /*
2 * PROJECT: ReactOS Kernel
3 * LICENSE: BSD - See COPYING.ARM in the top level directory
4 * FILE: ntoskrnl/io/pnpmgr/pnpinit.c
5 * PURPOSE: PnP Initialization Code
6 * PROGRAMMERS: ReactOS Portable Systems Group
7 */
8
9 /* INCLUDES *******************************************************************/
10
11 #include <ntoskrnl.h>
12 #define NDEBUG
13 #include <debug.h>
14
15 /* GLOBALS ********************************************************************/
16
17 typedef struct _IOPNP_DEVICE_EXTENSION
18 {
19 PWCHAR CompatibleIdList;
20 ULONG CompatibleIdListSize;
21 } IOPNP_DEVICE_EXTENSION, *PIOPNP_DEVICE_EXTENSION;
22
23 PUNICODE_STRING PiInitGroupOrderTable;
24 USHORT PiInitGroupOrderTableCount;
25 INTERFACE_TYPE PnpDefaultInterfaceType;
26
27 /* FUNCTIONS ******************************************************************/
28
29 INTERFACE_TYPE
30 NTAPI
31 IopDetermineDefaultInterfaceType(VOID)
32 {
33 /* FIXME: ReactOS doesn't support MicroChannel yet */
34 return Isa;
35 }
36
37 NTSTATUS
38 NTAPI
39 IopInitializeArbiters(VOID)
40 {
41 /* FIXME: TODO */
42 return STATUS_SUCCESS;
43 }
44
45 NTSTATUS
46 NTAPI
47 INIT_FUNCTION
48 PiInitCacheGroupInformation(VOID)
49 {
50 HANDLE KeyHandle;
51 NTSTATUS Status;
52 PKEY_VALUE_FULL_INFORMATION KeyValueInformation;
53 PUNICODE_STRING GroupTable;
54 ULONG Count;
55 UNICODE_STRING GroupString =
56 RTL_CONSTANT_STRING(L"\\Registry\\Machine\\System\\CurrentControlSet"
57 L"\\Control\\ServiceGroupOrder");
58
59 /* ReactOS HACK for SETUPLDR */
60 if (KeLoaderBlock->SetupLdrBlock)
61 {
62 DPRINT1("WARNING!! In PiInitCacheGroupInformation, using ReactOS HACK for SETUPLDR!!\n");
63
64 /* Bogus data */
65 PiInitGroupOrderTableCount = 0;
66 PiInitGroupOrderTable = (PVOID)0xBABEB00B;
67 return STATUS_SUCCESS;
68 }
69
70 /* Open the registry key */
71 Status = IopOpenRegistryKeyEx(&KeyHandle,
72 NULL,
73 &GroupString,
74 KEY_READ);
75 if (NT_SUCCESS(Status))
76 {
77 /* Get the list */
78 Status = IopGetRegistryValue(KeyHandle, L"List", &KeyValueInformation);
79 ZwClose(KeyHandle);
80
81 /* Make sure we got it */
82 if (NT_SUCCESS(Status))
83 {
84 /* Make sure it's valid */
85 if ((KeyValueInformation->Type == REG_MULTI_SZ) &&
86 (KeyValueInformation->DataLength))
87 {
88 /* Convert it to unicode strings */
89 Status = PnpRegMultiSzToUnicodeStrings(KeyValueInformation,
90 &GroupTable,
91 &Count);
92
93 /* Cache it for later */
94 PiInitGroupOrderTable = GroupTable;
95 PiInitGroupOrderTableCount = (USHORT)Count;
96 }
97 else
98 {
99 /* Fail */
100 Status = STATUS_UNSUCCESSFUL;
101 }
102
103 /* Free the information */
104 ExFreePool(KeyValueInformation);
105 }
106 }
107
108 /* Return status */
109 return Status;
110 }
111
112 USHORT
113 NTAPI
114 PpInitGetGroupOrderIndex(IN HANDLE ServiceHandle)
115 {
116 NTSTATUS Status;
117 PKEY_VALUE_FULL_INFORMATION KeyValueInformation;
118 USHORT i;
119 PVOID Buffer;
120 UNICODE_STRING Group;
121 PAGED_CODE();
122
123 /* Make sure we have a cache */
124 if (!PiInitGroupOrderTable) return -1;
125
126 /* If we don't have a handle, the rest is easy -- return the count */
127 if (!ServiceHandle) return PiInitGroupOrderTableCount + 1;
128
129 /* Otherwise, get the group value */
130 Status = IopGetRegistryValue(ServiceHandle, L"Group", &KeyValueInformation);
131 if (!NT_SUCCESS(Status)) return PiInitGroupOrderTableCount;
132
133 /* Make sure we have a valid string */
134 ASSERT(KeyValueInformation->Type == REG_SZ);
135 ASSERT(KeyValueInformation->DataLength);
136
137 /* Convert to unicode string */
138 Buffer = (PVOID)((ULONG_PTR)KeyValueInformation + KeyValueInformation->DataOffset);
139 PnpRegSzToString(Buffer, KeyValueInformation->DataLength, &Group.Length);
140 Group.MaximumLength = (USHORT)KeyValueInformation->DataLength;
141 Group.Buffer = Buffer;
142
143 /* Loop the groups */
144 for (i = 0; i < PiInitGroupOrderTableCount; i++)
145 {
146 /* Try to find a match */
147 if (RtlEqualUnicodeString(&Group, &PiInitGroupOrderTable[i], TRUE)) break;
148 }
149
150 /* We're done */
151 ExFreePool(KeyValueInformation);
152 return i;
153 }
154
155 USHORT
156 NTAPI
157 PipGetDriverTagPriority(IN HANDLE ServiceHandle)
158 {
159 NTSTATUS Status;
160 HANDLE KeyHandle = NULL;
161 PKEY_VALUE_FULL_INFORMATION KeyValueInformation = NULL;
162 PKEY_VALUE_FULL_INFORMATION KeyValueInformationTag;
163 PKEY_VALUE_FULL_INFORMATION KeyValueInformationGroupOrderList;
164 PVOID Buffer;
165 UNICODE_STRING Group;
166 PULONG GroupOrder;
167 ULONG Count, Tag = 0;
168 USHORT i = -1;
169 UNICODE_STRING GroupString =
170 RTL_CONSTANT_STRING(L"\\Registry\\Machine\\System\\CurrentControlSet"
171 L"\\Control\\ServiceGroupOrder");
172
173 /* Open the key */
174 Status = IopOpenRegistryKeyEx(&KeyHandle, NULL, &GroupString, KEY_READ);
175 if (!NT_SUCCESS(Status)) goto Quickie;
176
177 /* Read the group */
178 Status = IopGetRegistryValue(ServiceHandle, L"Group", &KeyValueInformation);
179 if (!NT_SUCCESS(Status)) goto Quickie;
180
181 /* Make sure we have a group */
182 if ((KeyValueInformation->Type == REG_SZ) &&
183 (KeyValueInformation->DataLength))
184 {
185 /* Convert to unicode string */
186 Buffer = (PVOID)((ULONG_PTR)KeyValueInformation + KeyValueInformation->DataOffset);
187 PnpRegSzToString(Buffer, KeyValueInformation->DataLength, &Group.Length);
188 Group.MaximumLength = (USHORT)KeyValueInformation->DataLength;
189 Group.Buffer = Buffer;
190 }
191
192 /* Now read the tag */
193 Status = IopGetRegistryValue(ServiceHandle, L"Tag", &KeyValueInformationTag);
194 if (!NT_SUCCESS(Status)) goto Quickie;
195
196 /* Make sure we have a tag */
197 if ((KeyValueInformationTag->Type == REG_DWORD) &&
198 (KeyValueInformationTag->DataLength))
199 {
200 /* Read it */
201 Tag = *(PULONG)((ULONG_PTR)KeyValueInformationTag +
202 KeyValueInformationTag->DataOffset);
203 }
204
205 /* We can get rid of this now */
206 ExFreePool(KeyValueInformationTag);
207
208 /* Now let's read the group's tag order */
209 Status = IopGetRegistryValue(KeyHandle,
210 Group.Buffer,
211 &KeyValueInformationGroupOrderList);
212
213 /* We can get rid of this now */
214 Quickie:
215 if (KeyValueInformation) ExFreePool(KeyValueInformation);
216 if (KeyHandle) NtClose(KeyHandle);
217 if (!NT_SUCCESS(Status)) return -1;
218
219 /* We're on the success path -- validate the tag order*/
220 if ((KeyValueInformationGroupOrderList->Type == REG_BINARY) &&
221 (KeyValueInformationGroupOrderList->DataLength))
222 {
223 /* Get the order array */
224 GroupOrder = (PULONG)((ULONG_PTR)KeyValueInformationGroupOrderList +
225 KeyValueInformationGroupOrderList->DataOffset);
226
227 /* Get the count */
228 Count = *GroupOrder;
229 ASSERT(((Count + 1) * sizeof(ULONG)) <=
230 KeyValueInformationGroupOrderList->DataLength);
231
232 /* Now loop each tag */
233 GroupOrder++;
234 for (i = 1; i <= Count; i++)
235 {
236 /* If we found it, we're out */
237 if (Tag == *GroupOrder) break;
238
239 /* Try the next one */
240 GroupOrder++;
241 }
242 }
243
244 /* Last buffer to free */
245 ExFreePool(KeyValueInformationGroupOrderList);
246 return i;
247 }
248
249 NTSTATUS
250 NTAPI
251 PipCallDriverAddDevice(IN PDEVICE_NODE DeviceNode,
252 IN BOOLEAN LoadDriver,
253 IN PDRIVER_OBJECT DriverObject)
254 {
255 NTSTATUS Status;
256 HANDLE EnumRootKey, SubKey, ControlKey, ClassKey, PropertiesKey;
257 UNICODE_STRING ClassGuid, Properties;
258 UNICODE_STRING EnumRoot = RTL_CONSTANT_STRING(ENUM_ROOT);
259 UNICODE_STRING ControlClass =
260 RTL_CONSTANT_STRING(L"\\Registry\\Machine\\System\\CurrentControlSet\\Control\\Class");
261 PKEY_VALUE_FULL_INFORMATION KeyValueInformation = NULL;
262 PWCHAR Buffer;
263
264 /* Open enumeration root key */
265 Status = IopOpenRegistryKeyEx(&EnumRootKey,
266 NULL,
267 &EnumRoot,
268 KEY_READ);
269 if (!NT_SUCCESS(Status))
270 {
271 DPRINT1("IopOpenRegistryKeyEx() failed for '%wZ' with status 0x%lx\n",
272 &EnumRoot, Status);
273 return Status;
274 }
275
276 /* Open instance subkey */
277 Status = IopOpenRegistryKeyEx(&SubKey,
278 EnumRootKey,
279 &DeviceNode->InstancePath,
280 KEY_READ);
281 ZwClose(EnumRootKey);
282 if (!NT_SUCCESS(Status))
283 {
284 DPRINT1("IopOpenRegistryKeyEx() failed for '%wZ' with status 0x%lx\n",
285 &DeviceNode->InstancePath, Status);
286 return Status;
287 }
288
289 /* Get class GUID */
290 Status = IopGetRegistryValue(SubKey,
291 REGSTR_VAL_CLASSGUID,
292 &KeyValueInformation);
293 if (NT_SUCCESS(Status))
294 {
295 /* Convert to unicode string */
296 Buffer = (PVOID)((ULONG_PTR)KeyValueInformation + KeyValueInformation->DataOffset);
297 PnpRegSzToString(Buffer, KeyValueInformation->DataLength, &ClassGuid.Length);
298 ClassGuid.MaximumLength = (USHORT)KeyValueInformation->DataLength;
299 ClassGuid.Buffer = Buffer;
300
301 /* Open the key */
302 Status = IopOpenRegistryKeyEx(&ControlKey,
303 NULL,
304 &ControlClass,
305 KEY_READ);
306 if (!NT_SUCCESS(Status))
307 {
308 /* No class key */
309 DPRINT1("IopOpenRegistryKeyEx() failed for '%wZ' with status 0x%lx\n",
310 &ControlClass, Status);
311 ClassKey = NULL;
312 }
313 else
314 {
315 /* Open the class key */
316 Status = IopOpenRegistryKeyEx(&ClassKey,
317 ControlKey,
318 &ClassGuid,
319 KEY_READ);
320 ZwClose(ControlKey);
321 if (!NT_SUCCESS(Status))
322 {
323 /* No class key */
324 DPRINT1("IopOpenRegistryKeyEx() failed for '%wZ' with status 0x%lx\n",
325 &ClassGuid, Status);
326 ClassKey = NULL;
327 }
328 }
329
330 /* Check if we made it till here */
331 if (ClassKey)
332 {
333 /* Get the device properties */
334 RtlInitUnicodeString(&Properties, REGSTR_KEY_DEVICE_PROPERTIES);
335 Status = IopOpenRegistryKeyEx(&PropertiesKey,
336 ClassKey,
337 &Properties,
338 KEY_READ);
339 ZwClose(ClassKey);
340 if (!NT_SUCCESS(Status))
341 {
342 /* No properties */
343 DPRINT("IopOpenRegistryKeyEx() failed for '%wZ' with status 0x%lx\n",
344 &Properties, Status);
345 PropertiesKey = NULL;
346 }
347 else
348 {
349 ZwClose(PropertiesKey);
350 }
351 }
352
353 /* Free the registry data */
354 ExFreePool(KeyValueInformation);
355 }
356
357 /* Do ReactOS-style setup */
358 Status = IopAttachFilterDrivers(DeviceNode, SubKey, TRUE);
359 if (!NT_SUCCESS(Status))
360 {
361 IopRemoveDevice(DeviceNode);
362 goto Exit;
363 }
364 Status = IopInitializeDevice(DeviceNode, DriverObject);
365 if (NT_SUCCESS(Status))
366 {
367 Status = IopAttachFilterDrivers(DeviceNode, SubKey, FALSE);
368 if (!NT_SUCCESS(Status))
369 {
370 IopRemoveDevice(DeviceNode);
371 goto Exit;
372 }
373
374 Status = IopStartDevice(DeviceNode);
375 }
376
377 Exit:
378 /* Close key and return status */
379 ZwClose(SubKey);
380 return Status;
381 }
382
383 NTSTATUS
384 NTAPI
385 INIT_FUNCTION
386 IopInitializePlugPlayServices(VOID)
387 {
388 NTSTATUS Status;
389 ULONG Disposition;
390 HANDLE KeyHandle, EnumHandle, ParentHandle, TreeHandle, ControlHandle;
391 UNICODE_STRING KeyName = RTL_CONSTANT_STRING(L"\\REGISTRY\\MACHINE\\SYSTEM\\CURRENTCONTROLSET");
392 UNICODE_STRING PnpManagerDriverName = RTL_CONSTANT_STRING(DRIVER_ROOT_NAME L"PnpManager");
393 PDEVICE_OBJECT Pdo;
394
395 /* Initialize locks and such */
396 KeInitializeSpinLock(&IopDeviceTreeLock);
397 KeInitializeSpinLock(&IopDeviceRelationsSpinLock);
398 InitializeListHead(&IopDeviceRelationsRequestList);
399
400 /* Get the default interface */
401 PnpDefaultInterfaceType = IopDetermineDefaultInterfaceType();
402
403 /* Initialize arbiters */
404 Status = IopInitializeArbiters();
405 if (!NT_SUCCESS(Status)) return Status;
406
407 /* Setup the group cache */
408 Status = PiInitCacheGroupInformation();
409 if (!NT_SUCCESS(Status)) return Status;
410
411 /* Open the current control set */
412 Status = IopOpenRegistryKeyEx(&KeyHandle,
413 NULL,
414 &KeyName,
415 KEY_ALL_ACCESS);
416 if (!NT_SUCCESS(Status)) return Status;
417
418 /* Create the control key */
419 RtlInitUnicodeString(&KeyName, L"Control");
420 Status = IopCreateRegistryKeyEx(&ControlHandle,
421 KeyHandle,
422 &KeyName,
423 KEY_ALL_ACCESS,
424 REG_OPTION_NON_VOLATILE,
425 &Disposition);
426 if (!NT_SUCCESS(Status)) return Status;
427
428 /* Check if it's a new key */
429 if (Disposition == REG_CREATED_NEW_KEY)
430 {
431 HANDLE DeviceClassesHandle;
432
433 /* Create the device classes key */
434 RtlInitUnicodeString(&KeyName, L"DeviceClasses");
435 Status = IopCreateRegistryKeyEx(&DeviceClassesHandle,
436 ControlHandle,
437 &KeyName,
438 KEY_ALL_ACCESS,
439 REG_OPTION_NON_VOLATILE,
440 &Disposition);
441 if (!NT_SUCCESS(Status)) return Status;
442
443 ZwClose(DeviceClassesHandle);
444 }
445
446 ZwClose(ControlHandle);
447
448 /* Create the enum key */
449 RtlInitUnicodeString(&KeyName, REGSTR_KEY_ENUM);
450 Status = IopCreateRegistryKeyEx(&EnumHandle,
451 KeyHandle,
452 &KeyName,
453 KEY_ALL_ACCESS,
454 REG_OPTION_NON_VOLATILE,
455 &Disposition);
456 if (!NT_SUCCESS(Status)) return Status;
457
458 /* Check if it's a new key */
459 if (Disposition == REG_CREATED_NEW_KEY)
460 {
461 /* FIXME: DACLs */
462 }
463
464 /* Create the root key */
465 ParentHandle = EnumHandle;
466 RtlInitUnicodeString(&KeyName, REGSTR_KEY_ROOTENUM);
467 Status = IopCreateRegistryKeyEx(&EnumHandle,
468 ParentHandle,
469 &KeyName,
470 KEY_ALL_ACCESS,
471 REG_OPTION_NON_VOLATILE,
472 &Disposition);
473 NtClose(ParentHandle);
474 if (!NT_SUCCESS(Status)) return Status;
475 NtClose(EnumHandle);
476
477 /* Open the root key now */
478 RtlInitUnicodeString(&KeyName, L"\\REGISTRY\\MACHINE\\SYSTEM\\CURRENTCONTROLSET\\ENUM");
479 Status = IopOpenRegistryKeyEx(&EnumHandle,
480 NULL,
481 &KeyName,
482 KEY_ALL_ACCESS);
483 if (NT_SUCCESS(Status))
484 {
485 /* Create the root dev node */
486 RtlInitUnicodeString(&KeyName, REGSTR_VAL_ROOT_DEVNODE);
487 Status = IopCreateRegistryKeyEx(&TreeHandle,
488 EnumHandle,
489 &KeyName,
490 KEY_ALL_ACCESS,
491 REG_OPTION_NON_VOLATILE,
492 NULL);
493 NtClose(EnumHandle);
494 if (NT_SUCCESS(Status)) NtClose(TreeHandle);
495 }
496
497 /* Create the root driver */
498 Status = IoCreateDriver(&PnpManagerDriverName, PnpRootDriverEntry);
499 if (!NT_SUCCESS(Status))
500 {
501 DPRINT1("IoCreateDriverObject() failed\n");
502 KeBugCheckEx(PHASE1_INITIALIZATION_FAILED, Status, 0, 0, 0);
503 }
504
505 /* Create the root PDO */
506 Status = IoCreateDevice(IopRootDriverObject,
507 sizeof(IOPNP_DEVICE_EXTENSION),
508 NULL,
509 FILE_DEVICE_CONTROLLER,
510 0,
511 FALSE,
512 &Pdo);
513 if (!NT_SUCCESS(Status))
514 {
515 DPRINT1("IoCreateDevice() failed\n");
516 KeBugCheckEx(PHASE1_INITIALIZATION_FAILED, Status, 0, 0, 0);
517 }
518
519 /* This is a bus enumerated device */
520 Pdo->Flags |= DO_BUS_ENUMERATED_DEVICE;
521
522 /* Create the root device node */
523 IopRootDeviceNode = PipAllocateDeviceNode(Pdo);
524
525 /* Set flags */
526 IopRootDeviceNode->Flags |= DNF_STARTED + DNF_PROCESSED + DNF_ENUMERATED +
527 DNF_MADEUP + DNF_NO_RESOURCE_REQUIRED +
528 DNF_ADDED;
529
530 /* Create instance path */
531 RtlCreateUnicodeString(&IopRootDeviceNode->InstancePath,
532 REGSTR_VAL_ROOT_DEVNODE);
533
534 /* Call the add device routine */
535 IopRootDriverObject->DriverExtension->AddDevice(IopRootDriverObject,
536 IopRootDeviceNode->PhysicalDeviceObject);
537
538 /* Initialize PnP-Event notification support */
539 Status = IopInitPlugPlayEvents();
540 if (!NT_SUCCESS(Status)) return Status;
541
542 /* Report the device to the user-mode pnp manager */
543 IopQueueTargetDeviceEvent(&GUID_DEVICE_ARRIVAL,
544 &IopRootDeviceNode->InstancePath);
545
546 /* Initialize the Bus Type GUID List */
547 PnpBusTypeGuidList = ExAllocatePool(PagedPool, sizeof(IO_BUS_TYPE_GUID_LIST));
548 RtlZeroMemory(PnpBusTypeGuidList, sizeof(IO_BUS_TYPE_GUID_LIST));
549 ExInitializeFastMutex(&PnpBusTypeGuidList->Lock);
550
551 /* Launch the firmware mapper */
552 Status = IopUpdateRootKey();
553 if (!NT_SUCCESS(Status)) return Status;
554
555 /* Close the handle to the control set */
556 NtClose(KeyHandle);
557
558 /* We made it */
559 return STATUS_SUCCESS;
560 }
561
562 /* EOF */