2 * SetupAPI device installer
4 * Copyright 2000 Andreas Mohr for CodeWeavers
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
22 #include "wine/port.h"
35 #include "wine/debug.h"
36 #include "wine/list.h"
37 #include "wine/unicode.h"
44 #include "setupapi_private.h"
47 WINE_DEFAULT_DEBUG_CHANNEL(setupapi);
49 /* Unicode constants */
50 static const WCHAR ClassGUID[] = {'C','l','a','s','s','G','U','I','D',0};
51 static const WCHAR Class[] = {'C','l','a','s','s',0};
52 static const WCHAR ClassInstall32[] = {'C','l','a','s','s','I','n','s','t','a','l','l','3','2',0};
53 static const WCHAR NoDisplayClass[] = {'N','o','D','i','s','p','l','a','y','C','l','a','s','s',0};
54 static const WCHAR NoInstallClass[] = {'N','o','I','n','s','t','a','l','l','C','l','a','s','s',0};
55 static const WCHAR NoUseClass[] = {'N','o','U','s','e','C','l','a','s','s',0};
56 static const WCHAR NtExtension[] = {'.','N','T',0};
57 static const WCHAR NtPlatformExtension[] = {'.','N','T','x','8','6',0};
58 static const WCHAR Version[] = {'V','e','r','s','i','o','n',0};
59 static const WCHAR WinExtension[] = {'.','W','i','n',0};
61 /* Registry key and value names */
62 static const WCHAR ControlClass[] = {'S','y','s','t','e','m','\\',
63 'C','u','r','r','e','n','t','C','o','n','t','r','o','l','S','e','t','\\',
64 'C','o','n','t','r','o','l','\\',
65 'C','l','a','s','s',0};
67 static const WCHAR DeviceClasses[] = {'S','y','s','t','e','m','\\',
68 'C','u','r','r','e','n','t','C','o','n','t','r','o','l','S','e','t','\\',
69 'C','o','n','t','r','o','l','\\',
70 'D','e','v','i','c','e','C','l','a','s','s','e','s',0};
71 static const WCHAR Enum[] = {'S','y','s','t','e','m','\\',
72 'C','u','r','r','e','n','t','C','o','n','t','r','o','l','S','e','t','\\',
74 static const WCHAR DeviceDesc[] = {'D','e','v','i','c','e','D','e','s','c',0};
75 static const WCHAR DeviceInstance[] = {'D','e','v','i','c','e','I','n','s','t','a','n','c','e',0};
76 static const WCHAR HardwareId[] = {'H','a','r','d','w','a','r','e','I','D',0};
77 static const WCHAR CompatibleIDs[] = {'C','o','m','p','a','t','i','b','l','e','I','d','s',0};
78 static const WCHAR Service[] = {'S','e','r','v','i','c','e',0};
79 static const WCHAR Driver[] = {'D','r','i','v','e','r',0};
80 static const WCHAR ConfigFlags[] = {'C','o','n','f','i','g','F','l','a','g','s',0};
81 static const WCHAR Mfg[] = {'M','f','g',0};
82 static const WCHAR FriendlyName[] = {'F','r','i','e','n','d','l','y','N','a','m','e',0};
83 static const WCHAR LocationInformation[] = {'L','o','c','a','t','i','o','n','I','n','f','o','r','m','a','t','i','o','n',0};
84 static const WCHAR Capabilities[] = {'C','a','p','a','b','i','l','i','t','i','e','s',0};
85 static const WCHAR UINumber[] = {'U','I','N','u','m','b','e','r',0};
86 static const WCHAR UpperFilters[] = {'U','p','p','e','r','F','i','l','t','e','r','s',0};
87 static const WCHAR LowerFilters[] = {'L','o','w','e','r','F','i','l','t','e','r','s',0};
88 static const WCHAR Phantom[] = {'P','h','a','n','t','o','m',0};
89 static const WCHAR SymbolicLink[] = {'S','y','m','b','o','l','i','c','L','i','n','k',0};
91 /* is used to identify if a DeviceInfoSet pointer is
93 #define SETUP_DEVICE_INFO_SET_MAGIC 0xd00ff056
97 DWORD magic; /* if is equal to SETUP_DEVICE_INFO_SET_MAGIC struct is okay */
101 SP_DEVINFO_DATA *devices;
104 /* Pointed to by SP_DEVICE_INTERFACE_DATA's Reserved member */
107 LPWSTR referenceString;
109 PSP_DEVINFO_DATA device;
112 /* A device may have multiple instances of the same interface, so this holds
113 * each instance belonging to a particular interface.
115 struct InterfaceInstances
119 DWORD cInstancesAllocated;
120 SP_DEVICE_INTERFACE_DATA *instances;
124 /* Pointed to by SP_DEVINFO_DATA's Reserved member */
127 struct DeviceInfoSet *set;
132 struct list interfaces;
135 static void SETUPDI_GuidToString(const GUID *guid, LPWSTR guidStr)
137 static const WCHAR fmt[] = {'{','%','0','8','X','-','%','0','4','X','-',
138 '%','0','4','X','-','%','0','2','X','%','0','2','X','-','%','0','2',
139 'X','%','0','2','X','%','0','2','X','%','0','2','X','%','0','2','X','%',
142 sprintfW(guidStr, fmt, guid->Data1, guid->Data2, guid->Data3,
143 guid->Data4[0], guid->Data4[1], guid->Data4[2], guid->Data4[3],
144 guid->Data4[4], guid->Data4[5], guid->Data4[6], guid->Data4[7]);
147 static void SETUPDI_FreeInterfaceInstances(struct InterfaceInstances *instances)
151 for (i = 0; i < instances->cInstances; i++)
153 struct InterfaceInfo *ifaceInfo =
154 (struct InterfaceInfo *)instances->instances[i].Reserved;
156 if (ifaceInfo->device && ifaceInfo->device->Reserved)
158 struct DeviceInfo *devInfo =
159 (struct DeviceInfo *)ifaceInfo->device->Reserved;
161 if (devInfo->phantom)
162 SetupDiDeleteDeviceInterfaceRegKey(devInfo->set,
163 &instances->instances[i], 0);
165 HeapFree(GetProcessHeap(), 0, ifaceInfo->referenceString);
166 HeapFree(GetProcessHeap(), 0, ifaceInfo->symbolicLink);
168 HeapFree(GetProcessHeap(), 0, instances->instances);
171 /* Finds the interface with interface class InterfaceClassGuid in the device.
172 * Returns TRUE if found, and updates *interface to point to device's
173 * interfaces member where the given interface was found.
174 * Returns FALSE if not found.
176 static BOOL SETUPDI_FindInterface(const struct DeviceInfo *devInfo,
177 const GUID *InterfaceClassGuid, struct InterfaceInstances **interface)
180 struct InterfaceInstances *iface;
182 TRACE("%s\n", debugstr_guid(InterfaceClassGuid));
184 LIST_FOR_EACH_ENTRY(iface, &devInfo->interfaces, struct InterfaceInstances,
187 if (IsEqualGUID(&iface->guid, InterfaceClassGuid))
194 TRACE("returning %d (%p)\n", found, found ? *interface : NULL);
198 /* Finds the interface instance with reference string ReferenceString in the
199 * interface instance map. Returns TRUE if found, and updates instanceIndex to
200 * the index of the interface instance's instances member
201 * where the given instance was found. Returns FALSE if not found.
203 static BOOL SETUPDI_FindInterfaceInstance(
204 const struct InterfaceInstances *instances,
205 LPCWSTR ReferenceString, DWORD *instanceIndex)
210 TRACE("%s\n", debugstr_w(ReferenceString));
212 for (i = 0; !found && i < instances->cInstances; i++)
214 SP_DEVICE_INTERFACE_DATA *ifaceData = &instances->instances[i];
215 struct InterfaceInfo *ifaceInfo =
216 (struct InterfaceInfo *)ifaceData->Reserved;
218 if (!ReferenceString && !ifaceInfo->referenceString)
223 else if (ReferenceString && ifaceInfo->referenceString &&
224 !lstrcmpiW(ifaceInfo->referenceString, ReferenceString))
230 TRACE("returning %d (%d)\n", found, found ? *instanceIndex : 0);
234 static LPWSTR SETUPDI_CreateSymbolicLinkPath(LPCWSTR instanceId,
235 const GUID *InterfaceClassGuid, LPCWSTR ReferenceString)
237 static const WCHAR fmt[] = {'\\','\\','?','\\','%','s','#','%','s',0};
242 SETUPDI_GuidToString(InterfaceClassGuid, guidStr);
243 /* omit length of format specifiers, but include NULL terminator: */
244 len = lstrlenW(fmt) - 4 + 1;
245 len += lstrlenW(instanceId) + lstrlenW(guidStr);
248 /* space for a hash between string and reference string: */
249 len += lstrlenW(ReferenceString) + 1;
251 ret = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR));
254 int printed = sprintfW(ret, fmt, instanceId, guidStr);
257 /* replace '\\' with '#' after the "\\\\?\\" beginning */
258 for (ptr = strchrW(ret + 4, '\\'); ptr; ptr = strchrW(ptr + 1, '\\'))
262 ret[printed - 1] = '\\';
263 lstrcpyW(ret + printed, ReferenceString);
269 /* Adds an interface with the given interface class and reference string to
270 * the device, if it doesn't already exist in the device. If iface is not
271 * NULL, returns a pointer to the newly added (or already existing) interface.
273 static BOOL SETUPDI_AddInterfaceInstance(PSP_DEVINFO_DATA DeviceInfoData,
274 const GUID *InterfaceClassGuid, LPCWSTR ReferenceString,
275 SP_DEVICE_INTERFACE_DATA **ifaceData)
277 struct DeviceInfo *devInfo = (struct DeviceInfo *)DeviceInfoData->Reserved;
278 BOOL newInterface = FALSE, ret;
279 struct InterfaceInstances *iface = NULL;
281 TRACE("%p %s %s %p\n", devInfo, debugstr_guid(InterfaceClassGuid),
282 debugstr_w(ReferenceString), iface);
284 if (!(ret = SETUPDI_FindInterface(devInfo, InterfaceClassGuid, &iface)))
286 iface = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY,
287 sizeof(struct InterfaceInstances));
290 list_add_tail(&devInfo->interfaces, &iface->entry);
296 DWORD instanceIndex = 0;
298 if (!(ret = SETUPDI_FindInterfaceInstance(iface, ReferenceString,
301 SP_DEVICE_INTERFACE_DATA *instance = NULL;
303 if (!iface->cInstancesAllocated)
305 iface->instances = HeapAlloc(GetProcessHeap(), 0,
306 sizeof(SP_DEVICE_INTERFACE_DATA));
307 if (iface->instances)
308 instance = &iface->instances[iface->cInstancesAllocated++];
310 else if (iface->cInstances == iface->cInstancesAllocated)
312 iface->instances = HeapReAlloc(GetProcessHeap(), 0,
314 (iface->cInstancesAllocated + 1) *
315 sizeof(SP_DEVICE_INTERFACE_DATA));
316 if (iface->instances)
317 instance = &iface->instances[iface->cInstancesAllocated++];
320 instance = &iface->instances[iface->cInstances];
323 struct InterfaceInfo *ifaceInfo = HeapAlloc(GetProcessHeap(),
324 0, sizeof(struct InterfaceInfo));
329 ifaceInfo->device = DeviceInfoData;
330 ifaceInfo->symbolicLink = SETUPDI_CreateSymbolicLinkPath(
331 devInfo->instanceId, InterfaceClassGuid,
335 ifaceInfo->referenceString =
336 HeapAlloc(GetProcessHeap(), 0,
337 (lstrlenW(ReferenceString) + 1) *
339 if (ifaceInfo->referenceString)
340 lstrcpyW(ifaceInfo->referenceString,
346 ifaceInfo->referenceString = NULL;
353 sizeof(SP_DEVICE_INTERFACE_DATA);
354 memcpy(&instance->InterfaceClassGuid,
355 InterfaceClassGuid, sizeof(GUID));
356 instance->Flags = SPINT_ACTIVE; /* FIXME */
357 instance->Reserved = (ULONG_PTR)ifaceInfo;
359 memcpy(&iface->guid, InterfaceClassGuid,
361 key = SetupDiCreateDeviceInterfaceRegKeyW(devInfo->set,
362 instance, 0, KEY_WRITE, NULL, NULL);
363 if (key != INVALID_HANDLE_VALUE)
365 RegSetValueExW(key, SymbolicLink, 0, REG_SZ,
366 (BYTE *)ifaceInfo->symbolicLink,
367 lstrlenW(ifaceInfo->symbolicLink) *
372 *ifaceData = instance;
375 HeapFree(GetProcessHeap(), 0, ifaceInfo);
382 *ifaceData = &iface->instances[instanceIndex];
387 TRACE("returning %d\n", ret);
391 static BOOL SETUPDI_SetInterfaceSymbolicLink(SP_DEVICE_INTERFACE_DATA *iface,
392 LPCWSTR symbolicLink)
394 struct InterfaceInfo *info = (struct InterfaceInfo *)iface->Reserved;
399 HeapFree(GetProcessHeap(), 0, info->symbolicLink);
400 info->symbolicLink = HeapAlloc(GetProcessHeap(), 0,
401 (lstrlenW(symbolicLink) + 1) * sizeof(WCHAR));
402 if (info->symbolicLink)
404 lstrcpyW(info->symbolicLink, symbolicLink);
411 static HKEY SETUPDI_CreateDevKey(struct DeviceInfo *devInfo)
413 HKEY enumKey, key = INVALID_HANDLE_VALUE;
416 l = RegCreateKeyExW(HKEY_LOCAL_MACHINE, Enum, 0, NULL, 0, KEY_ALL_ACCESS,
417 NULL, &enumKey, NULL);
420 RegCreateKeyExW(enumKey, devInfo->instanceId, 0, NULL, 0,
421 KEY_READ | KEY_WRITE, NULL, &key, NULL);
422 RegCloseKey(enumKey);
427 static HKEY SETUPDI_CreateDrvKey(struct DeviceInfo *devInfo)
429 static const WCHAR slash[] = { '\\',0 };
430 WCHAR classKeyPath[MAX_PATH];
431 HKEY classKey, key = INVALID_HANDLE_VALUE;
434 lstrcpyW(classKeyPath, ControlClass);
435 lstrcatW(classKeyPath, slash);
436 SETUPDI_GuidToString(&devInfo->set->ClassGuid,
437 classKeyPath + lstrlenW(classKeyPath));
438 l = RegCreateKeyExW(HKEY_LOCAL_MACHINE, classKeyPath, 0, NULL, 0,
439 KEY_ALL_ACCESS, NULL, &classKey, NULL);
442 static const WCHAR fmt[] = { '%','0','4','u',0 };
445 sprintfW(devId, fmt, devInfo->devId);
446 RegCreateKeyExW(classKey, devId, 0, NULL, 0, KEY_READ | KEY_WRITE,
448 RegCloseKey(classKey);
453 static struct DeviceInfo *SETUPDI_AllocateDeviceInfo(struct DeviceInfoSet *set,
454 DWORD devId, LPCWSTR instanceId, BOOL phantom)
456 struct DeviceInfo *devInfo = HeapAlloc(GetProcessHeap(), 0,
457 sizeof(struct DeviceInfo));
462 devInfo->devId = devId;
463 devInfo->instanceId = HeapAlloc(GetProcessHeap(), 0,
464 (lstrlenW(instanceId) + 1) * sizeof(WCHAR));
465 if (devInfo->instanceId)
467 devInfo->key = INVALID_HANDLE_VALUE;
468 devInfo->phantom = phantom;
469 lstrcpyW(devInfo->instanceId, instanceId);
470 struprW(devInfo->instanceId);
471 devInfo->key = SETUPDI_CreateDevKey(devInfo);
472 if (devInfo->key != INVALID_HANDLE_VALUE)
475 RegSetValueExW(devInfo->key, Phantom, 0, REG_DWORD,
476 (LPBYTE)&phantom, sizeof(phantom));
478 list_init(&devInfo->interfaces);
482 HeapFree(GetProcessHeap(), 0, devInfo);
489 static void SETUPDI_FreeDeviceInfo(struct DeviceInfo *devInfo)
491 struct InterfaceInstances *iface, *next;
493 if (devInfo->key != INVALID_HANDLE_VALUE)
494 RegCloseKey(devInfo->key);
495 if (devInfo->phantom)
500 l = RegCreateKeyExW(HKEY_LOCAL_MACHINE, Enum, 0, NULL, 0,
501 KEY_ALL_ACCESS, NULL, &enumKey, NULL);
504 RegDeleteTreeW(enumKey, devInfo->instanceId);
505 RegCloseKey(enumKey);
508 HeapFree(GetProcessHeap(), 0, devInfo->instanceId);
509 LIST_FOR_EACH_ENTRY_SAFE(iface, next, &devInfo->interfaces,
510 struct InterfaceInstances, entry)
512 list_remove(&iface->entry);
513 SETUPDI_FreeInterfaceInstances(iface);
514 HeapFree(GetProcessHeap(), 0, iface);
516 HeapFree(GetProcessHeap(), 0, devInfo);
519 /* Adds a device with GUID guid and identifer devInst to set. Allocates a
520 * struct DeviceInfo, and points the returned device info's Reserved member
521 * to it. "Phantom" devices are deleted from the registry when closed.
522 * Returns a pointer to the newly allocated device info.
524 static BOOL SETUPDI_AddDeviceToSet(struct DeviceInfoSet *set,
529 SP_DEVINFO_DATA **dev)
532 struct DeviceInfo *devInfo = SETUPDI_AllocateDeviceInfo(set, set->cDevices,
533 instanceId, phantom);
535 TRACE("%p, %s, %d, %s, %d\n", set, debugstr_guid(guid), devInst,
536 debugstr_w(instanceId), phantom);
541 set->devices = HeapReAlloc(GetProcessHeap(), 0, set->devices,
542 (set->cDevices + 1) * sizeof(SP_DEVINFO_DATA));
544 set->devices = HeapAlloc(GetProcessHeap(), 0,
545 sizeof(SP_DEVINFO_DATA));
548 WCHAR classGuidStr[39];
549 SP_DEVINFO_DATA *DeviceInfoData = &set->devices[set->cDevices++];
551 DeviceInfoData->cbSize = sizeof(SP_DEVINFO_DATA);
552 memcpy(&DeviceInfoData->ClassGuid, guid, sizeof(GUID));
553 DeviceInfoData->DevInst = devInst;
554 DeviceInfoData->Reserved = (ULONG_PTR)devInfo;
555 SETUPDI_GuidToString(guid, classGuidStr);
556 SetupDiSetDeviceRegistryPropertyW((HDEVINFO)set,
557 DeviceInfoData, SPDRP_CLASSGUID, (const BYTE *)classGuidStr,
558 lstrlenW(classGuidStr) * sizeof(WCHAR));
560 *dev = DeviceInfoData;
565 HeapFree(GetProcessHeap(), 0, devInfo);
566 SetLastError(ERROR_OUTOFMEMORY);
572 /***********************************************************************
573 * SetupDiBuildClassInfoList (SETUPAPI.@)
575 * Returns a list of setup class GUIDs that identify the classes
576 * that are installed on a local machine.
579 * Flags [I] control exclusion of classes from the list.
580 * ClassGuidList [O] pointer to a GUID-typed array that receives a list of setup class GUIDs.
581 * ClassGuidListSize [I] The number of GUIDs in the array (ClassGuidList).
582 * RequiredSize [O] pointer, which receives the number of GUIDs that are returned.
588 BOOL WINAPI SetupDiBuildClassInfoList(
590 LPGUID ClassGuidList,
591 DWORD ClassGuidListSize,
595 return SetupDiBuildClassInfoListExW(Flags, ClassGuidList,
596 ClassGuidListSize, RequiredSize,
600 /***********************************************************************
601 * SetupDiBuildClassInfoListExA (SETUPAPI.@)
603 * Returns a list of setup class GUIDs that identify the classes
604 * that are installed on a local or remote macine.
607 * Flags [I] control exclusion of classes from the list.
608 * ClassGuidList [O] pointer to a GUID-typed array that receives a list of setup class GUIDs.
609 * ClassGuidListSize [I] The number of GUIDs in the array (ClassGuidList).
610 * RequiredSize [O] pointer, which receives the number of GUIDs that are returned.
611 * MachineName [I] name of a remote machine.
612 * Reserved [I] must be NULL.
618 BOOL WINAPI SetupDiBuildClassInfoListExA(
620 LPGUID ClassGuidList,
621 DWORD ClassGuidListSize,
626 LPWSTR MachineNameW = NULL;
633 MachineNameW = MultiByteToUnicode(MachineName, CP_ACP);
634 if (MachineNameW == NULL) return FALSE;
637 bResult = SetupDiBuildClassInfoListExW(Flags, ClassGuidList,
638 ClassGuidListSize, RequiredSize,
639 MachineNameW, Reserved);
641 MyFree(MachineNameW);
646 /***********************************************************************
647 * SetupDiBuildClassInfoListExW (SETUPAPI.@)
649 * Returns a list of setup class GUIDs that identify the classes
650 * that are installed on a local or remote macine.
653 * Flags [I] control exclusion of classes from the list.
654 * ClassGuidList [O] pointer to a GUID-typed array that receives a list of setup class GUIDs.
655 * ClassGuidListSize [I] The number of GUIDs in the array (ClassGuidList).
656 * RequiredSize [O] pointer, which receives the number of GUIDs that are returned.
657 * MachineName [I] name of a remote machine.
658 * Reserved [I] must be NULL.
664 BOOL WINAPI SetupDiBuildClassInfoListExW(
666 LPGUID ClassGuidList,
667 DWORD ClassGuidListSize,
678 DWORD dwGuidListIndex = 0;
682 if (RequiredSize != NULL)
685 hClassesKey = SetupDiOpenClassRegKeyExW(NULL,
690 if (hClassesKey == INVALID_HANDLE_VALUE)
695 for (dwIndex = 0; ; dwIndex++)
698 lError = RegEnumKeyExW(hClassesKey,
706 TRACE("RegEnumKeyExW() returns %d\n", lError);
707 if (lError == ERROR_SUCCESS || lError == ERROR_MORE_DATA)
709 TRACE("Key name: %p\n", szKeyName);
711 if (RegOpenKeyExW(hClassesKey,
717 RegCloseKey(hClassesKey);
721 if (!RegQueryValueExW(hClassKey,
728 TRACE("'NoUseClass' value found!\n");
729 RegCloseKey(hClassKey);
733 if ((Flags & DIBCI_NOINSTALLCLASS) &&
734 (!RegQueryValueExW(hClassKey,
741 TRACE("'NoInstallClass' value found!\n");
742 RegCloseKey(hClassKey);
746 if ((Flags & DIBCI_NODISPLAYCLASS) &&
747 (!RegQueryValueExW(hClassKey,
754 TRACE("'NoDisplayClass' value found!\n");
755 RegCloseKey(hClassKey);
759 RegCloseKey(hClassKey);
761 TRACE("Guid: %p\n", szKeyName);
762 if (dwGuidListIndex < ClassGuidListSize)
764 if (szKeyName[0] == '{' && szKeyName[37] == '}')
768 TRACE("Guid: %p\n", &szKeyName[1]);
770 UuidFromStringW(&szKeyName[1],
771 &ClassGuidList[dwGuidListIndex]);
777 if (lError != ERROR_SUCCESS)
781 RegCloseKey(hClassesKey);
783 if (RequiredSize != NULL)
784 *RequiredSize = dwGuidListIndex;
786 if (ClassGuidListSize < dwGuidListIndex)
788 SetLastError(ERROR_INSUFFICIENT_BUFFER);
795 /***********************************************************************
796 * SetupDiClassGuidsFromNameA (SETUPAPI.@)
798 BOOL WINAPI SetupDiClassGuidsFromNameA(
800 LPGUID ClassGuidList,
801 DWORD ClassGuidListSize,
804 return SetupDiClassGuidsFromNameExA(ClassName, ClassGuidList,
805 ClassGuidListSize, RequiredSize,
809 /***********************************************************************
810 * SetupDiClassGuidsFromNameW (SETUPAPI.@)
812 BOOL WINAPI SetupDiClassGuidsFromNameW(
814 LPGUID ClassGuidList,
815 DWORD ClassGuidListSize,
818 return SetupDiClassGuidsFromNameExW(ClassName, ClassGuidList,
819 ClassGuidListSize, RequiredSize,
823 /***********************************************************************
824 * SetupDiClassGuidsFromNameExA (SETUPAPI.@)
826 BOOL WINAPI SetupDiClassGuidsFromNameExA(
828 LPGUID ClassGuidList,
829 DWORD ClassGuidListSize,
834 LPWSTR ClassNameW = NULL;
835 LPWSTR MachineNameW = NULL;
838 ClassNameW = MultiByteToUnicode(ClassName, CP_ACP);
839 if (ClassNameW == NULL)
844 MachineNameW = MultiByteToUnicode(MachineName, CP_ACP);
845 if (MachineNameW == NULL)
852 bResult = SetupDiClassGuidsFromNameExW(ClassNameW, ClassGuidList,
853 ClassGuidListSize, RequiredSize,
854 MachineNameW, Reserved);
856 MyFree(MachineNameW);
862 /***********************************************************************
863 * SetupDiClassGuidsFromNameExW (SETUPAPI.@)
865 BOOL WINAPI SetupDiClassGuidsFromNameExW(
867 LPGUID ClassGuidList,
868 DWORD ClassGuidListSize,
874 WCHAR szClassName[256];
880 DWORD dwGuidListIndex = 0;
882 if (RequiredSize != NULL)
885 hClassesKey = SetupDiOpenClassRegKeyExW(NULL,
890 if (hClassesKey == INVALID_HANDLE_VALUE)
895 for (dwIndex = 0; ; dwIndex++)
898 lError = RegEnumKeyExW(hClassesKey,
906 TRACE("RegEnumKeyExW() returns %d\n", lError);
907 if (lError == ERROR_SUCCESS || lError == ERROR_MORE_DATA)
909 TRACE("Key name: %p\n", szKeyName);
911 if (RegOpenKeyExW(hClassesKey,
917 RegCloseKey(hClassesKey);
921 dwLength = 256 * sizeof(WCHAR);
922 if (!RegQueryValueExW(hClassKey,
929 TRACE("Class name: %p\n", szClassName);
931 if (strcmpiW(szClassName, ClassName) == 0)
933 TRACE("Found matching class name\n");
935 TRACE("Guid: %p\n", szKeyName);
936 if (dwGuidListIndex < ClassGuidListSize)
938 if (szKeyName[0] == '{' && szKeyName[37] == '}')
942 TRACE("Guid: %p\n", &szKeyName[1]);
944 UuidFromStringW(&szKeyName[1],
945 &ClassGuidList[dwGuidListIndex]);
952 RegCloseKey(hClassKey);
955 if (lError != ERROR_SUCCESS)
959 RegCloseKey(hClassesKey);
961 if (RequiredSize != NULL)
962 *RequiredSize = dwGuidListIndex;
964 if (ClassGuidListSize < dwGuidListIndex)
966 SetLastError(ERROR_INSUFFICIENT_BUFFER);
973 /***********************************************************************
974 * SetupDiClassNameFromGuidA (SETUPAPI.@)
976 BOOL WINAPI SetupDiClassNameFromGuidA(
977 const GUID* ClassGuid,
982 return SetupDiClassNameFromGuidExA(ClassGuid, ClassName,
983 ClassNameSize, RequiredSize,
987 /***********************************************************************
988 * SetupDiClassNameFromGuidW (SETUPAPI.@)
990 BOOL WINAPI SetupDiClassNameFromGuidW(
991 const GUID* ClassGuid,
996 return SetupDiClassNameFromGuidExW(ClassGuid, ClassName,
997 ClassNameSize, RequiredSize,
1001 /***********************************************************************
1002 * SetupDiClassNameFromGuidExA (SETUPAPI.@)
1004 BOOL WINAPI SetupDiClassNameFromGuidExA(
1005 const GUID* ClassGuid,
1007 DWORD ClassNameSize,
1008 PDWORD RequiredSize,
1012 WCHAR ClassNameW[MAX_CLASS_NAME_LEN];
1013 LPWSTR MachineNameW = NULL;
1017 MachineNameW = MultiByteToUnicode(MachineName, CP_ACP);
1018 ret = SetupDiClassNameFromGuidExW(ClassGuid, ClassNameW, MAX_CLASS_NAME_LEN,
1019 NULL, MachineNameW, Reserved);
1022 int len = WideCharToMultiByte(CP_ACP, 0, ClassNameW, -1, ClassName,
1023 ClassNameSize, NULL, NULL);
1025 if (!ClassNameSize && RequiredSize)
1026 *RequiredSize = len;
1028 MyFree(MachineNameW);
1032 /***********************************************************************
1033 * SetupDiClassNameFromGuidExW (SETUPAPI.@)
1035 BOOL WINAPI SetupDiClassNameFromGuidExW(
1036 const GUID* ClassGuid,
1038 DWORD ClassNameSize,
1039 PDWORD RequiredSize,
1046 hKey = SetupDiOpenClassRegKeyExW(ClassGuid,
1051 if (hKey == INVALID_HANDLE_VALUE)
1056 if (RequiredSize != NULL)
1059 if (RegQueryValueExW(hKey,
1070 *RequiredSize = dwLength / sizeof(WCHAR);
1073 dwLength = ClassNameSize * sizeof(WCHAR);
1074 if (RegQueryValueExW(hKey,
1090 /***********************************************************************
1091 * SetupDiCreateDeviceInfoList (SETUPAPI.@)
1094 SetupDiCreateDeviceInfoList(const GUID *ClassGuid,
1097 return SetupDiCreateDeviceInfoListExW(ClassGuid, hwndParent, NULL, NULL);
1100 /***********************************************************************
1101 * SetupDiCreateDeviceInfoListExA (SETUPAPI.@)
1104 SetupDiCreateDeviceInfoListExA(const GUID *ClassGuid,
1109 LPWSTR MachineNameW = NULL;
1116 MachineNameW = MultiByteToUnicode(MachineName, CP_ACP);
1117 if (MachineNameW == NULL)
1118 return (HDEVINFO)INVALID_HANDLE_VALUE;
1121 hDevInfo = SetupDiCreateDeviceInfoListExW(ClassGuid, hwndParent,
1122 MachineNameW, Reserved);
1124 MyFree(MachineNameW);
1129 /***********************************************************************
1130 * SetupDiCreateDeviceInfoListExW (SETUPAPI.@)
1132 * Create an empty DeviceInfoSet list.
1135 * ClassGuid [I] if not NULL only devices with GUID ClcassGuid are associated
1137 * hwndParent [I] hwnd needed for interface related actions.
1138 * MachineName [I] name of machine to create emtpy DeviceInfoSet list, if NULL
1139 * local registry will be used.
1140 * Reserved [I] must be NULL
1143 * Success: empty list.
1144 * Failure: INVALID_HANDLE_VALUE.
1147 SetupDiCreateDeviceInfoListExW(const GUID *ClassGuid,
1152 struct DeviceInfoSet *list = NULL;
1153 DWORD size = sizeof(struct DeviceInfoSet);
1155 TRACE("%s %p %s %p\n", debugstr_guid(ClassGuid), hwndParent,
1156 debugstr_w(MachineName), Reserved);
1158 if (MachineName != NULL)
1160 FIXME("remote support is not implemented\n");
1161 SetLastError(ERROR_INVALID_MACHINENAME);
1162 return (HDEVINFO)INVALID_HANDLE_VALUE;
1165 if (Reserved != NULL)
1167 SetLastError(ERROR_INVALID_PARAMETER);
1168 return (HDEVINFO)INVALID_HANDLE_VALUE;
1171 list = HeapAlloc(GetProcessHeap(), 0, size);
1174 SetLastError(ERROR_NOT_ENOUGH_MEMORY);
1175 return (HDEVINFO)INVALID_HANDLE_VALUE;
1178 list->magic = SETUP_DEVICE_INFO_SET_MAGIC;
1179 list->hwndParent = hwndParent;
1180 memcpy(&list->ClassGuid,
1181 ClassGuid ? ClassGuid : &GUID_NULL,
1182 sizeof(list->ClassGuid));
1184 list->devices = NULL;
1186 return (HDEVINFO)list;
1189 /***********************************************************************
1190 * SetupDiCreateDevRegKeyA (SETUPAPI.@)
1192 HKEY WINAPI SetupDiCreateDevRegKeyA(
1193 HDEVINFO DeviceInfoSet,
1194 PSP_DEVINFO_DATA DeviceInfoData,
1199 PCSTR InfSectionName)
1201 PWSTR InfSectionNameW = NULL;
1204 TRACE("%p %p %d %d %d %p %s\n", DeviceInfoSet, DeviceInfoData, Scope,
1205 HwProfile, KeyType, InfHandle, debugstr_a(InfSectionName));
1209 if (!InfSectionName)
1211 SetLastError(ERROR_INVALID_PARAMETER);
1212 return INVALID_HANDLE_VALUE;
1216 InfSectionNameW = MultiByteToUnicode(InfSectionName, CP_ACP);
1217 if (InfSectionNameW == NULL) return INVALID_HANDLE_VALUE;
1220 key = SetupDiCreateDevRegKeyW(DeviceInfoSet, DeviceInfoData, Scope,
1221 HwProfile, KeyType, InfHandle, InfSectionNameW);
1222 MyFree(InfSectionNameW);
1226 /***********************************************************************
1227 * SetupDiCreateDevRegKeyW (SETUPAPI.@)
1229 HKEY WINAPI SetupDiCreateDevRegKeyW(
1230 HDEVINFO DeviceInfoSet,
1231 PSP_DEVINFO_DATA DeviceInfoData,
1236 PCWSTR InfSectionName)
1238 struct DeviceInfoSet *set = (struct DeviceInfoSet *)DeviceInfoSet;
1239 struct DeviceInfo *devInfo;
1240 HKEY key = INVALID_HANDLE_VALUE;
1242 TRACE("%p %p %d %d %d %p %s\n", DeviceInfoSet, DeviceInfoData, Scope,
1243 HwProfile, KeyType, InfHandle, debugstr_w(InfSectionName));
1245 if (!DeviceInfoSet || DeviceInfoSet == (HDEVINFO)INVALID_HANDLE_VALUE)
1247 SetLastError(ERROR_INVALID_HANDLE);
1248 return INVALID_HANDLE_VALUE;
1250 if (set->magic != SETUP_DEVICE_INFO_SET_MAGIC)
1252 SetLastError(ERROR_INVALID_HANDLE);
1253 return INVALID_HANDLE_VALUE;
1255 if (!DeviceInfoData || DeviceInfoData->cbSize != sizeof(SP_DEVINFO_DATA)
1256 || !DeviceInfoData->Reserved)
1258 SetLastError(ERROR_INVALID_PARAMETER);
1259 return INVALID_HANDLE_VALUE;
1261 devInfo = (struct DeviceInfo *)DeviceInfoData->Reserved;
1262 if (devInfo->set != set)
1264 SetLastError(ERROR_INVALID_PARAMETER);
1265 return INVALID_HANDLE_VALUE;
1267 if (Scope != DICS_FLAG_GLOBAL && Scope != DICS_FLAG_CONFIGSPECIFIC)
1269 SetLastError(ERROR_INVALID_FLAGS);
1270 return INVALID_HANDLE_VALUE;
1272 if (KeyType != DIREG_DEV && KeyType != DIREG_DRV)
1274 SetLastError(ERROR_INVALID_FLAGS);
1275 return INVALID_HANDLE_VALUE;
1277 if (devInfo->phantom)
1279 SetLastError(ERROR_DEVINFO_NOT_REGISTERED);
1280 return INVALID_HANDLE_VALUE;
1282 if (Scope != DICS_FLAG_GLOBAL)
1283 FIXME("unimplemented for scope %d\n", Scope);
1287 key = SETUPDI_CreateDevKey(devInfo);
1290 key = SETUPDI_CreateDrvKey(devInfo);
1293 WARN("unknown KeyType %d\n", KeyType);
1296 SetupInstallFromInfSectionW(NULL, InfHandle, InfSectionName, SPINST_ALL,
1297 NULL, NULL, SP_COPY_NEWER_ONLY, NULL, NULL, DeviceInfoSet,
1302 /***********************************************************************
1303 * SetupDiCreateDeviceInfoA (SETUPAPI.@)
1305 BOOL WINAPI SetupDiCreateDeviceInfoA(
1306 HDEVINFO DeviceInfoSet,
1308 CONST GUID *ClassGuid,
1309 PCSTR DeviceDescription,
1311 DWORD CreationFlags,
1312 PSP_DEVINFO_DATA DeviceInfoData)
1315 LPWSTR DeviceNameW = NULL;
1316 LPWSTR DeviceDescriptionW = NULL;
1320 DeviceNameW = MultiByteToUnicode(DeviceName, CP_ACP);
1321 if (DeviceNameW == NULL) return FALSE;
1323 if (DeviceDescription)
1325 DeviceDescriptionW = MultiByteToUnicode(DeviceDescription, CP_ACP);
1326 if (DeviceDescriptionW == NULL)
1328 MyFree(DeviceNameW);
1333 ret = SetupDiCreateDeviceInfoW(DeviceInfoSet, DeviceNameW, ClassGuid, DeviceDescriptionW,
1334 hwndParent, CreationFlags, DeviceInfoData);
1336 MyFree(DeviceNameW);
1337 MyFree(DeviceDescriptionW);
1342 static DWORD SETUPDI_DevNameToDevID(LPCWSTR devName)
1345 DWORD devNameLen = lstrlenW(devName), devInst = 0;
1348 TRACE("%s\n", debugstr_w(devName));
1349 for (ptr = devName; valid && *ptr && ptr - devName < devNameLen; )
1354 devInst |= *ptr - '0';
1360 TRACE("%d\n", valid ? devInst : 0xffffffff);
1361 return valid ? devInst : 0xffffffff;
1364 /***********************************************************************
1365 * SetupDiCreateDeviceInfoW (SETUPAPI.@)
1367 BOOL WINAPI SetupDiCreateDeviceInfoW(
1368 HDEVINFO DeviceInfoSet,
1370 CONST GUID *ClassGuid,
1371 PCWSTR DeviceDescription,
1373 DWORD CreationFlags,
1374 PSP_DEVINFO_DATA DeviceInfoData)
1376 struct DeviceInfoSet *set = (struct DeviceInfoSet *)DeviceInfoSet;
1377 BOOL ret = FALSE, allocatedInstanceId = FALSE;
1378 LPCWSTR instanceId = NULL;
1380 TRACE("%p %s %s %s %p %x %p\n", DeviceInfoSet, debugstr_w(DeviceName),
1381 debugstr_guid(ClassGuid), debugstr_w(DeviceDescription),
1382 hwndParent, CreationFlags, DeviceInfoData);
1386 SetLastError(ERROR_INVALID_DEVINST_NAME);
1389 if (!DeviceInfoSet || DeviceInfoSet == (HDEVINFO)INVALID_HANDLE_VALUE)
1391 SetLastError(ERROR_INVALID_HANDLE);
1396 SetLastError(ERROR_INVALID_PARAMETER);
1399 if (set->magic != SETUP_DEVICE_INFO_SET_MAGIC)
1401 SetLastError(ERROR_INVALID_HANDLE);
1404 if (!IsEqualGUID(&set->ClassGuid, &GUID_NULL) &&
1405 !IsEqualGUID(ClassGuid, &set->ClassGuid))
1407 SetLastError(ERROR_CLASS_MISMATCH);
1410 if ((CreationFlags & DICD_GENERATE_ID))
1412 if (strchrW(DeviceName, '\\'))
1413 SetLastError(ERROR_INVALID_DEVINST_NAME);
1416 static const WCHAR newDeviceFmt[] = {'R','O','O','T','\\','%','s',
1417 '\\','%','0','4','d',0};
1422 DWORD i, highestDevID = 0;
1424 for (i = 0; i < set->cDevices; i++)
1426 struct DeviceInfo *devInfo =
1427 (struct DeviceInfo *)set->devices[i].Reserved;
1428 LPCWSTR devName = strrchrW(devInfo->instanceId, '\\');
1434 devName = devInfo->instanceId;
1435 id = SETUPDI_DevNameToDevID(devName);
1436 if (id != 0xffffffff && id > highestDevID)
1439 devId = highestDevID + 1;
1443 /* 17 == lstrlenW(L"Root\\") + lstrlenW("\\") + 1 + %d max size */
1444 instanceId = HeapAlloc(GetProcessHeap(), 0,
1445 (17 + lstrlenW(DeviceName)) * sizeof(WCHAR));
1448 sprintfW((LPWSTR)instanceId, newDeviceFmt, DeviceName,
1450 allocatedInstanceId = TRUE;
1462 instanceId = DeviceName;
1463 for (i = 0; ret && i < set->cDevices; i++)
1465 struct DeviceInfo *devInfo =
1466 (struct DeviceInfo *)set->devices[i].Reserved;
1468 if (!lstrcmpiW(DeviceName, devInfo->instanceId))
1470 SetLastError(ERROR_DEVINST_ALREADY_EXISTS);
1477 SP_DEVINFO_DATA *dev = NULL;
1479 ret = SETUPDI_AddDeviceToSet(set, ClassGuid, 0 /* FIXME: DevInst */,
1480 instanceId, TRUE, &dev);
1483 if (DeviceDescription)
1484 SetupDiSetDeviceRegistryPropertyW(DeviceInfoSet,
1485 dev, SPDRP_DEVICEDESC, (const BYTE *)DeviceDescription,
1486 lstrlenW(DeviceDescription) * sizeof(WCHAR));
1489 if (DeviceInfoData->cbSize != sizeof(SP_DEVINFO_DATA))
1491 SetLastError(ERROR_INVALID_USER_BUFFER);
1495 memcpy(DeviceInfoData, dev, sizeof(SP_DEVINFO_DATA));
1499 if (allocatedInstanceId)
1500 HeapFree(GetProcessHeap(), 0, (LPWSTR)instanceId);
1505 /***********************************************************************
1506 * SetupDiRegisterDeviceInfo (SETUPAPI.@)
1508 BOOL WINAPI SetupDiRegisterDeviceInfo(
1509 HDEVINFO DeviceInfoSet,
1510 PSP_DEVINFO_DATA DeviceInfoData,
1512 PSP_DETSIG_CMPPROC CompareProc,
1513 PVOID CompareContext,
1514 PSP_DEVINFO_DATA DupDeviceInfoData)
1516 struct DeviceInfoSet *set = (struct DeviceInfoSet *)DeviceInfoSet;
1517 struct DeviceInfo *devInfo;
1519 TRACE("%p %p %08x %p %p %p\n", DeviceInfoSet, DeviceInfoData, Flags,
1520 CompareProc, CompareContext, DupDeviceInfoData);
1522 if (!DeviceInfoSet || DeviceInfoSet == (HDEVINFO)INVALID_HANDLE_VALUE)
1524 SetLastError(ERROR_INVALID_HANDLE);
1527 if (set->magic != SETUP_DEVICE_INFO_SET_MAGIC)
1529 SetLastError(ERROR_INVALID_HANDLE);
1532 if (!DeviceInfoData || DeviceInfoData->cbSize != sizeof(SP_DEVINFO_DATA)
1533 || !DeviceInfoData->Reserved)
1535 SetLastError(ERROR_INVALID_PARAMETER);
1538 devInfo = (struct DeviceInfo *)DeviceInfoData->Reserved;
1539 if (devInfo->set != set)
1541 SetLastError(ERROR_INVALID_PARAMETER);
1544 if (devInfo->phantom)
1546 devInfo->phantom = FALSE;
1547 RegDeleteValueW(devInfo->key, Phantom);
1552 /***********************************************************************
1553 * SetupDiEnumDeviceInfo (SETUPAPI.@)
1555 BOOL WINAPI SetupDiEnumDeviceInfo(
1558 PSP_DEVINFO_DATA info)
1562 TRACE("%p %d %p\n", devinfo, index, info);
1566 SetLastError(ERROR_INVALID_PARAMETER);
1569 if (devinfo && devinfo != (HDEVINFO)INVALID_HANDLE_VALUE)
1571 struct DeviceInfoSet *list = (struct DeviceInfoSet *)devinfo;
1572 if (list->magic == SETUP_DEVICE_INFO_SET_MAGIC)
1574 if (index < list->cDevices)
1576 if (info->cbSize == sizeof(SP_DEVINFO_DATA))
1578 memcpy(info, &list->devices[index], info->cbSize);
1582 SetLastError(ERROR_INVALID_USER_BUFFER);
1585 SetLastError(ERROR_NO_MORE_ITEMS);
1588 SetLastError(ERROR_INVALID_HANDLE);
1591 SetLastError(ERROR_INVALID_HANDLE);
1595 /***********************************************************************
1596 * SetupDiGetDeviceInstanceIdA (SETUPAPI.@)
1598 BOOL WINAPI SetupDiGetDeviceInstanceIdA(
1599 HDEVINFO DeviceInfoSet,
1600 PSP_DEVINFO_DATA DeviceInfoData,
1601 PSTR DeviceInstanceId,
1602 DWORD DeviceInstanceIdSize,
1603 PDWORD RequiredSize)
1609 TRACE("%p %p %p %d %p\n", DeviceInfoSet, DeviceInfoData, DeviceInstanceId,
1610 DeviceInstanceIdSize, RequiredSize);
1612 SetupDiGetDeviceInstanceIdW(DeviceInfoSet,
1617 if (GetLastError() != ERROR_INSUFFICIENT_BUFFER)
1619 instanceId = HeapAlloc(GetProcessHeap(), 0, size * sizeof(WCHAR));
1622 ret = SetupDiGetDeviceInstanceIdW(DeviceInfoSet,
1629 int len = WideCharToMultiByte(CP_ACP, 0, instanceId, -1,
1631 DeviceInstanceIdSize, NULL, NULL);
1637 if (len > DeviceInstanceIdSize)
1639 SetLastError(ERROR_INSUFFICIENT_BUFFER);
1643 *RequiredSize = len;
1646 HeapFree(GetProcessHeap(), 0, instanceId);
1651 /***********************************************************************
1652 * SetupDiGetDeviceInstanceIdW (SETUPAPI.@)
1654 BOOL WINAPI SetupDiGetDeviceInstanceIdW(
1655 HDEVINFO DeviceInfoSet,
1656 PSP_DEVINFO_DATA DeviceInfoData,
1657 PWSTR DeviceInstanceId,
1658 DWORD DeviceInstanceIdSize,
1659 PDWORD RequiredSize)
1661 struct DeviceInfoSet *set = (struct DeviceInfoSet *)DeviceInfoSet;
1662 struct DeviceInfo *devInfo;
1664 TRACE("%p %p %p %d %p\n", DeviceInfoSet, DeviceInfoData, DeviceInstanceId,
1665 DeviceInstanceIdSize, RequiredSize);
1667 if (!DeviceInfoSet || DeviceInfoSet == INVALID_HANDLE_VALUE)
1669 SetLastError(ERROR_INVALID_HANDLE);
1672 if (set->magic != SETUP_DEVICE_INFO_SET_MAGIC)
1674 SetLastError(ERROR_INVALID_HANDLE);
1677 if (!DeviceInfoData || DeviceInfoData->cbSize != sizeof(SP_DEVINFO_DATA)
1678 || !DeviceInfoData->Reserved)
1680 SetLastError(ERROR_INVALID_PARAMETER);
1683 devInfo = (struct DeviceInfo *)DeviceInfoData->Reserved;
1684 if (devInfo->set != set)
1686 SetLastError(ERROR_INVALID_PARAMETER);
1689 TRACE("instance ID: %s\n", debugstr_w(devInfo->instanceId));
1690 if (DeviceInstanceIdSize < lstrlenW(devInfo->instanceId) + 1)
1692 SetLastError(ERROR_INSUFFICIENT_BUFFER);
1694 *RequiredSize = lstrlenW(devInfo->instanceId) + 1;
1697 lstrcpyW(DeviceInstanceId, devInfo->instanceId);
1699 *RequiredSize = lstrlenW(devInfo->instanceId) + 1;
1703 /***********************************************************************
1704 * SetupDiGetActualSectionToInstallA (SETUPAPI.@)
1706 BOOL WINAPI SetupDiGetActualSectionToInstallA(
1708 PCSTR InfSectionName,
1709 PSTR InfSectionWithExt,
1710 DWORD InfSectionWithExtSize,
1711 PDWORD RequiredSize,
1718 /***********************************************************************
1719 * SetupDiGetActualSectionToInstallW (SETUPAPI.@)
1721 BOOL WINAPI SetupDiGetActualSectionToInstallW(
1723 PCWSTR InfSectionName,
1724 PWSTR InfSectionWithExt,
1725 DWORD InfSectionWithExtSize,
1726 PDWORD RequiredSize,
1729 WCHAR szBuffer[MAX_PATH];
1732 LONG lLineCount = -1;
1734 lstrcpyW(szBuffer, InfSectionName);
1735 dwLength = lstrlenW(szBuffer);
1737 if (OsVersionInfo.dwPlatformId == VER_PLATFORM_WIN32_NT)
1739 /* Test section name with '.NTx86' extension */
1740 lstrcpyW(&szBuffer[dwLength], NtPlatformExtension);
1741 lLineCount = SetupGetLineCountW(InfHandle, szBuffer);
1743 if (lLineCount == -1)
1745 /* Test section name with '.NT' extension */
1746 lstrcpyW(&szBuffer[dwLength], NtExtension);
1747 lLineCount = SetupGetLineCountW(InfHandle, szBuffer);
1752 /* Test section name with '.Win' extension */
1753 lstrcpyW(&szBuffer[dwLength], WinExtension);
1754 lLineCount = SetupGetLineCountW(InfHandle, szBuffer);
1757 if (lLineCount == -1)
1759 /* Test section name without extension */
1760 szBuffer[dwLength] = 0;
1761 lLineCount = SetupGetLineCountW(InfHandle, szBuffer);
1764 if (lLineCount == -1)
1766 SetLastError(ERROR_INVALID_PARAMETER);
1770 dwFullLength = lstrlenW(szBuffer);
1772 if (InfSectionWithExt != NULL && InfSectionWithExtSize != 0)
1774 if (InfSectionWithExtSize < (dwFullLength + 1))
1776 SetLastError(ERROR_INSUFFICIENT_BUFFER);
1780 lstrcpyW(InfSectionWithExt, szBuffer);
1781 if (Extension != NULL)
1783 *Extension = (dwLength == dwFullLength) ? NULL : &InfSectionWithExt[dwLength];
1787 if (RequiredSize != NULL)
1789 *RequiredSize = dwFullLength + 1;
1795 /***********************************************************************
1796 * SetupDiGetClassDescriptionA (SETUPAPI.@)
1798 BOOL WINAPI SetupDiGetClassDescriptionA(
1799 const GUID* ClassGuid,
1800 PSTR ClassDescription,
1801 DWORD ClassDescriptionSize,
1802 PDWORD RequiredSize)
1804 return SetupDiGetClassDescriptionExA(ClassGuid, ClassDescription,
1805 ClassDescriptionSize,
1806 RequiredSize, NULL, NULL);
1809 /***********************************************************************
1810 * SetupDiGetClassDescriptionW (SETUPAPI.@)
1812 BOOL WINAPI SetupDiGetClassDescriptionW(
1813 const GUID* ClassGuid,
1814 PWSTR ClassDescription,
1815 DWORD ClassDescriptionSize,
1816 PDWORD RequiredSize)
1818 return SetupDiGetClassDescriptionExW(ClassGuid, ClassDescription,
1819 ClassDescriptionSize,
1820 RequiredSize, NULL, NULL);
1823 /***********************************************************************
1824 * SetupDiGetClassDescriptionExA (SETUPAPI.@)
1826 BOOL WINAPI SetupDiGetClassDescriptionExA(
1827 const GUID* ClassGuid,
1828 PSTR ClassDescription,
1829 DWORD ClassDescriptionSize,
1830 PDWORD RequiredSize,
1838 hKey = SetupDiOpenClassRegKeyExA(ClassGuid,
1843 if (hKey == INVALID_HANDLE_VALUE)
1845 WARN("SetupDiOpenClassRegKeyExA() failed (Error %u)\n", GetLastError());
1849 dwLength = ClassDescriptionSize;
1850 ret = !RegQueryValueExA( hKey, NULL, NULL, NULL,
1851 (LPBYTE)ClassDescription, &dwLength );
1852 if (RequiredSize) *RequiredSize = dwLength;
1857 /***********************************************************************
1858 * SetupDiGetClassDescriptionExW (SETUPAPI.@)
1860 BOOL WINAPI SetupDiGetClassDescriptionExW(
1861 const GUID* ClassGuid,
1862 PWSTR ClassDescription,
1863 DWORD ClassDescriptionSize,
1864 PDWORD RequiredSize,
1872 hKey = SetupDiOpenClassRegKeyExW(ClassGuid,
1877 if (hKey == INVALID_HANDLE_VALUE)
1879 WARN("SetupDiOpenClassRegKeyExW() failed (Error %u)\n", GetLastError());
1883 dwLength = ClassDescriptionSize * sizeof(WCHAR);
1884 ret = !RegQueryValueExW( hKey, NULL, NULL, NULL,
1885 (LPBYTE)ClassDescription, &dwLength );
1886 if (RequiredSize) *RequiredSize = dwLength / sizeof(WCHAR);
1891 /***********************************************************************
1892 * SetupDiGetClassDevsA (SETUPAPI.@)
1894 HDEVINFO WINAPI SetupDiGetClassDevsA(
1901 LPWSTR enumstrW = NULL;
1905 int len = MultiByteToWideChar(CP_ACP, 0, enumstr, -1, NULL, 0);
1906 enumstrW = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR));
1909 ret = (HDEVINFO)INVALID_HANDLE_VALUE;
1912 MultiByteToWideChar(CP_ACP, 0, enumstr, -1, enumstrW, len);
1914 ret = SetupDiGetClassDevsExW(class, enumstrW, parent, flags, NULL, NULL,
1916 HeapFree(GetProcessHeap(), 0, enumstrW);
1922 /***********************************************************************
1923 * SetupDiGetClassDevsExA (SETUPAPI.@)
1925 HDEVINFO WINAPI SetupDiGetClassDevsExA(
1935 LPWSTR enumstrW = NULL, machineW = NULL;
1939 int len = MultiByteToWideChar(CP_ACP, 0, enumstr, -1, NULL, 0);
1940 enumstrW = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR));
1943 ret = (HDEVINFO)INVALID_HANDLE_VALUE;
1946 MultiByteToWideChar(CP_ACP, 0, enumstr, -1, enumstrW, len);
1950 int len = MultiByteToWideChar(CP_ACP, 0, machine, -1, NULL, 0);
1951 machineW = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR));
1954 HeapFree(GetProcessHeap(), 0, enumstrW);
1955 ret = (HDEVINFO)INVALID_HANDLE_VALUE;
1958 MultiByteToWideChar(CP_ACP, 0, machine, -1, machineW, len);
1960 ret = SetupDiGetClassDevsExW(class, enumstrW, parent, flags, deviceset,
1961 machineW, reserved);
1962 HeapFree(GetProcessHeap(), 0, enumstrW);
1963 HeapFree(GetProcessHeap(), 0, machineW);
1969 static void SETUPDI_AddDeviceInterfaces(SP_DEVINFO_DATA *dev, HKEY key,
1970 const GUID *interface)
1973 WCHAR subKeyName[MAX_PATH];
1974 LONG l = ERROR_SUCCESS;
1976 for (i = 0; !l; i++)
1978 len = sizeof(subKeyName) / sizeof(subKeyName[0]);
1979 l = RegEnumKeyExW(key, i, subKeyName, &len, NULL, NULL, NULL, NULL);
1983 SP_DEVICE_INTERFACE_DATA *iface = NULL;
1985 /* The subkey name is the reference string, with a '#' prepended */
1986 SETUPDI_AddInterfaceInstance(dev, interface, subKeyName + 1,
1988 l = RegOpenKeyExW(key, subKeyName, 0, KEY_READ, &subKey);
1991 WCHAR symbolicLink[MAX_PATH];
1994 len = sizeof(symbolicLink);
1995 l = RegQueryValueExW(subKey, SymbolicLink, NULL, &dataType,
1996 (BYTE *)symbolicLink, &len);
1997 if (!l && dataType == REG_SZ)
1998 SETUPDI_SetInterfaceSymbolicLink(iface, symbolicLink);
1999 RegCloseKey(subKey);
2001 /* Allow enumeration to continue */
2005 /* FIXME: find and add all the device's interfaces to the device */
2008 static void SETUPDI_EnumerateMatchingInterfaces(HDEVINFO DeviceInfoSet,
2009 HKEY key, const GUID *interface, LPCWSTR enumstr)
2011 struct DeviceInfoSet *set = (struct DeviceInfoSet *)DeviceInfoSet;
2013 WCHAR subKeyName[MAX_PATH];
2015 HKEY enumKey = INVALID_HANDLE_VALUE;
2017 TRACE("%s\n", debugstr_w(enumstr));
2019 l = RegCreateKeyExW(HKEY_LOCAL_MACHINE, Enum, 0, NULL, 0, KEY_READ, NULL,
2021 for (i = 0; !l; i++)
2023 len = sizeof(subKeyName) / sizeof(subKeyName[0]);
2024 l = RegEnumKeyExW(key, i, subKeyName, &len, NULL, NULL, NULL, NULL);
2029 l = RegOpenKeyExW(key, subKeyName, 0, KEY_READ, &subKey);
2032 WCHAR deviceInst[MAX_PATH * 3];
2035 len = sizeof(deviceInst);
2036 l = RegQueryValueExW(subKey, DeviceInstance, NULL, &dataType,
2037 (BYTE *)deviceInst, &len);
2038 if (!l && dataType == REG_SZ)
2040 TRACE("found instance ID %s\n", debugstr_w(deviceInst));
2041 if (!enumstr || !lstrcmpiW(enumstr, deviceInst))
2045 l = RegOpenKeyExW(enumKey, deviceInst, 0, KEY_READ,
2049 WCHAR deviceClassStr[40];
2051 len = sizeof(deviceClassStr);
2052 l = RegQueryValueExW(deviceKey, ClassGUID, NULL,
2053 &dataType, (BYTE *)deviceClassStr, &len);
2054 if (!l && dataType == REG_SZ &&
2055 deviceClassStr[0] == '{' &&
2056 deviceClassStr[37] == '}')
2059 SP_DEVINFO_DATA *dev;
2061 deviceClassStr[37] = 0;
2062 UuidFromStringW(&deviceClassStr[1],
2064 if (SETUPDI_AddDeviceToSet(set, &deviceClass,
2065 0 /* FIXME: DevInst */, deviceInst,
2067 SETUPDI_AddDeviceInterfaces(dev, subKey,
2070 RegCloseKey(deviceKey);
2074 RegCloseKey(subKey);
2076 /* Allow enumeration to continue */
2080 if (enumKey != INVALID_HANDLE_VALUE)
2081 RegCloseKey(enumKey);
2084 static void SETUPDI_EnumerateInterfaces(HDEVINFO DeviceInfoSet,
2085 const GUID *interface, LPCWSTR enumstr, DWORD flags)
2087 HKEY interfacesKey = SetupDiOpenClassRegKeyExW(interface, KEY_READ,
2088 DIOCR_INTERFACE, NULL, NULL);
2090 TRACE("%p, %s, %s, %08x\n", DeviceInfoSet, debugstr_guid(interface),
2091 debugstr_w(enumstr), flags);
2093 if (interfacesKey != INVALID_HANDLE_VALUE)
2095 if (flags & DIGCF_ALLCLASSES)
2098 WCHAR interfaceGuidStr[40];
2099 LONG l = ERROR_SUCCESS;
2101 for (i = 0; !l; i++)
2103 len = sizeof(interfaceGuidStr) / sizeof(interfaceGuidStr[0]);
2104 l = RegEnumKeyExW(interfacesKey, i, interfaceGuidStr, &len,
2105 NULL, NULL, NULL, NULL);
2108 if (interfaceGuidStr[0] == '{' &&
2109 interfaceGuidStr[37] == '}')
2114 interfaceGuidStr[37] = 0;
2115 UuidFromStringW(&interfaceGuidStr[1], &interfaceGuid);
2116 l = RegOpenKeyExW(interfacesKey, interfaceGuidStr, 0,
2117 KEY_READ, &interfaceKey);
2120 SETUPDI_EnumerateMatchingInterfaces(DeviceInfoSet,
2121 interfaceKey, &interfaceGuid, enumstr);
2122 RegCloseKey(interfaceKey);
2130 /* In this case, SetupDiOpenClassRegKeyExW opened the specific
2131 * interface's key, so just pass that long
2133 SETUPDI_EnumerateMatchingInterfaces(DeviceInfoSet,
2134 interfacesKey, interface, enumstr);
2136 RegCloseKey(interfacesKey);
2140 static void SETUPDI_EnumerateMatchingDeviceInstances(struct DeviceInfoSet *set,
2141 LPCWSTR enumerator, LPCWSTR deviceName, HKEY deviceKey,
2142 const GUID *class, DWORD flags)
2145 WCHAR deviceInstance[MAX_PATH];
2146 LONG l = ERROR_SUCCESS;
2148 TRACE("%s %s\n", debugstr_w(enumerator), debugstr_w(deviceName));
2150 for (i = 0; !l; i++)
2152 len = sizeof(deviceInstance) / sizeof(deviceInstance[0]);
2153 l = RegEnumKeyExW(deviceKey, i, deviceInstance, &len, NULL, NULL, NULL,
2159 l = RegOpenKeyExW(deviceKey, deviceInstance, 0, KEY_READ, &subKey);
2162 WCHAR classGuid[40];
2165 len = sizeof(classGuid);
2166 l = RegQueryValueExW(subKey, ClassGUID, NULL, &dataType,
2167 (BYTE *)classGuid, &len);
2168 if (!l && dataType == REG_SZ)
2170 if (classGuid[0] == '{' && classGuid[37] == '}')
2175 UuidFromStringW(&classGuid[1], &deviceClass);
2176 if ((flags & DIGCF_ALLCLASSES) ||
2177 IsEqualGUID(class, &deviceClass))
2179 static const WCHAR fmt[] =
2180 {'%','s','\\','%','s','\\','%','s',0};
2183 instanceId = HeapAlloc(GetProcessHeap(), 0,
2184 (lstrlenW(enumerator) + lstrlenW(deviceName) +
2185 lstrlenW(deviceInstance) + 3) * sizeof(WCHAR));
2188 sprintfW(instanceId, fmt, enumerator,
2189 deviceName, deviceInstance);
2190 SETUPDI_AddDeviceToSet(set, &deviceClass,
2191 0 /* FIXME: DevInst */, instanceId,
2193 HeapFree(GetProcessHeap(), 0, instanceId);
2198 RegCloseKey(subKey);
2200 /* Allow enumeration to continue */
2206 static void SETUPDI_EnumerateMatchingDevices(HDEVINFO DeviceInfoSet,
2207 LPCWSTR parent, HKEY key, const GUID *class, DWORD flags)
2209 struct DeviceInfoSet *set = (struct DeviceInfoSet *)DeviceInfoSet;
2211 WCHAR subKeyName[MAX_PATH];
2212 LONG l = ERROR_SUCCESS;
2214 TRACE("%s\n", debugstr_w(parent));
2216 for (i = 0; !l; i++)
2218 len = sizeof(subKeyName) / sizeof(subKeyName[0]);
2219 l = RegEnumKeyExW(key, i, subKeyName, &len, NULL, NULL, NULL, NULL);
2224 l = RegOpenKeyExW(key, subKeyName, 0, KEY_READ, &subKey);
2227 TRACE("%s\n", debugstr_w(subKeyName));
2228 SETUPDI_EnumerateMatchingDeviceInstances(set, parent,
2229 subKeyName, subKey, class, flags);
2230 RegCloseKey(subKey);
2232 /* Allow enumeration to continue */
2238 static void SETUPDI_EnumerateDevices(HDEVINFO DeviceInfoSet, const GUID *class,
2239 LPCWSTR enumstr, DWORD flags)
2244 TRACE("%p, %s, %s, %08x\n", DeviceInfoSet, debugstr_guid(class),
2245 debugstr_w(enumstr), flags);
2247 l = RegCreateKeyExW(HKEY_LOCAL_MACHINE, Enum, 0, NULL, 0, KEY_READ, NULL,
2249 if (enumKey != INVALID_HANDLE_VALUE)
2255 l = RegOpenKeyExW(enumKey, enumstr, 0, KEY_READ,
2259 SETUPDI_EnumerateMatchingDevices(DeviceInfoSet, enumstr,
2260 enumStrKey, class, flags);
2261 RegCloseKey(enumStrKey);
2267 WCHAR subKeyName[MAX_PATH];
2270 for (i = 0; !l; i++)
2272 len = sizeof(subKeyName) / sizeof(subKeyName[0]);
2273 l = RegEnumKeyExW(enumKey, i, subKeyName, &len, NULL,
2279 l = RegOpenKeyExW(enumKey, subKeyName, 0, KEY_READ,
2283 SETUPDI_EnumerateMatchingDevices(DeviceInfoSet,
2284 subKeyName, subKey, class, flags);
2285 RegCloseKey(subKey);
2287 /* Allow enumeration to continue */
2292 RegCloseKey(enumKey);
2296 /***********************************************************************
2297 * SetupDiGetClassDevsW (SETUPAPI.@)
2299 HDEVINFO WINAPI SetupDiGetClassDevsW(
2305 return SetupDiGetClassDevsExW(class, enumstr, parent, flags, NULL, NULL,
2309 /***********************************************************************
2310 * SetupDiGetClassDevsExW (SETUPAPI.@)
2312 HDEVINFO WINAPI SetupDiGetClassDevsExW(
2321 static const DWORD unsupportedFlags = DIGCF_DEFAULT | DIGCF_PRESENT |
2325 TRACE("%s %s %p 0x%08x %p %s %p\n", debugstr_guid(class),
2326 debugstr_w(enumstr), parent, flags, deviceset, debugstr_w(machine),
2329 if (!(flags & DIGCF_ALLCLASSES) && !class)
2331 SetLastError(ERROR_INVALID_PARAMETER);
2334 if (flags & unsupportedFlags)
2335 WARN("unsupported flags %08x\n", flags & unsupportedFlags);
2339 set = SetupDiCreateDeviceInfoListExW(class, parent, machine, reserved);
2343 FIXME("%s: unimplemented for remote machines\n",
2344 debugstr_w(machine));
2345 else if (flags & DIGCF_DEVICEINTERFACE)
2346 SETUPDI_EnumerateInterfaces(set, class, enumstr, flags);
2348 SETUPDI_EnumerateDevices(set, class, enumstr, flags);
2353 /***********************************************************************
2354 * SetupDiGetDeviceInfoListDetailA (SETUPAPI.@)
2356 BOOL WINAPI SetupDiGetDeviceInfoListDetailA(
2357 HDEVINFO DeviceInfoSet,
2358 PSP_DEVINFO_LIST_DETAIL_DATA_A DevInfoData )
2360 struct DeviceInfoSet *set = (struct DeviceInfoSet *)DeviceInfoSet;
2362 TRACE("%p %p\n", DeviceInfoSet, DevInfoData);
2364 if (!DeviceInfoSet || DeviceInfoSet == (HDEVINFO)INVALID_HANDLE_VALUE)
2366 SetLastError(ERROR_INVALID_HANDLE);
2369 if (set->magic != SETUP_DEVICE_INFO_SET_MAGIC)
2371 SetLastError(ERROR_INVALID_HANDLE);
2375 DevInfoData->cbSize != sizeof(SP_DEVINFO_LIST_DETAIL_DATA_A))
2377 SetLastError(ERROR_INVALID_PARAMETER);
2380 memcpy(&DevInfoData->ClassGuid, &set->ClassGuid, sizeof(GUID));
2381 DevInfoData->RemoteMachineHandle = NULL;
2382 DevInfoData->RemoteMachineName[0] = '\0';
2386 /***********************************************************************
2387 * SetupDiGetDeviceInfoListDetailW (SETUPAPI.@)
2389 BOOL WINAPI SetupDiGetDeviceInfoListDetailW(
2390 HDEVINFO DeviceInfoSet,
2391 PSP_DEVINFO_LIST_DETAIL_DATA_W DevInfoData )
2393 struct DeviceInfoSet *set = (struct DeviceInfoSet *)DeviceInfoSet;
2395 TRACE("%p %p\n", DeviceInfoSet, DevInfoData);
2397 if (!DeviceInfoSet || DeviceInfoSet == (HDEVINFO)INVALID_HANDLE_VALUE)
2399 SetLastError(ERROR_INVALID_HANDLE);
2402 if (set->magic != SETUP_DEVICE_INFO_SET_MAGIC)
2404 SetLastError(ERROR_INVALID_HANDLE);
2408 DevInfoData->cbSize != sizeof(SP_DEVINFO_LIST_DETAIL_DATA_W))
2410 SetLastError(ERROR_INVALID_PARAMETER);
2413 memcpy(&DevInfoData->ClassGuid, &set->ClassGuid, sizeof(GUID));
2414 DevInfoData->RemoteMachineHandle = NULL;
2415 DevInfoData->RemoteMachineName[0] = '\0';
2419 /***********************************************************************
2420 * SetupDiCreateDeviceInterfaceA (SETUPAPI.@)
2422 BOOL WINAPI SetupDiCreateDeviceInterfaceA(
2423 HDEVINFO DeviceInfoSet,
2424 PSP_DEVINFO_DATA DeviceInfoData,
2425 const GUID *InterfaceClassGuid,
2426 PCSTR ReferenceString,
2427 DWORD CreationFlags,
2428 PSP_DEVICE_INTERFACE_DATA DeviceInterfaceData)
2431 LPWSTR ReferenceStringW = NULL;
2433 TRACE("%p %p %s %s %08x %p\n", DeviceInfoSet, DeviceInfoData,
2434 debugstr_guid(InterfaceClassGuid), debugstr_a(ReferenceString),
2435 CreationFlags, DeviceInterfaceData);
2437 if (ReferenceString)
2439 ReferenceStringW = MultiByteToUnicode(ReferenceString, CP_ACP);
2440 if (ReferenceStringW == NULL) return FALSE;
2443 ret = SetupDiCreateDeviceInterfaceW(DeviceInfoSet, DeviceInfoData,
2444 InterfaceClassGuid, ReferenceStringW, CreationFlags,
2445 DeviceInterfaceData);
2447 MyFree(ReferenceStringW);
2452 /***********************************************************************
2453 * SetupDiCreateDeviceInterfaceW (SETUPAPI.@)
2455 BOOL WINAPI SetupDiCreateDeviceInterfaceW(
2456 HDEVINFO DeviceInfoSet,
2457 PSP_DEVINFO_DATA DeviceInfoData,
2458 const GUID *InterfaceClassGuid,
2459 PCWSTR ReferenceString,
2460 DWORD CreationFlags,
2461 PSP_DEVICE_INTERFACE_DATA DeviceInterfaceData)
2463 struct DeviceInfoSet *set = (struct DeviceInfoSet *)DeviceInfoSet;
2464 struct DeviceInfo *devInfo;
2465 SP_DEVICE_INTERFACE_DATA *iface = NULL;
2468 TRACE("%p %p %s %s %08x %p\n", DeviceInfoSet, DeviceInfoData,
2469 debugstr_guid(InterfaceClassGuid), debugstr_w(ReferenceString),
2470 CreationFlags, DeviceInterfaceData);
2472 if (!DeviceInfoSet || DeviceInfoSet == (HDEVINFO)INVALID_HANDLE_VALUE)
2474 SetLastError(ERROR_INVALID_HANDLE);
2477 if (set->magic != SETUP_DEVICE_INFO_SET_MAGIC)
2479 SetLastError(ERROR_INVALID_HANDLE);
2482 if (!DeviceInfoData || DeviceInfoData->cbSize != sizeof(SP_DEVINFO_DATA)
2483 || !DeviceInfoData->Reserved)
2485 SetLastError(ERROR_INVALID_PARAMETER);
2488 devInfo = (struct DeviceInfo *)DeviceInfoData->Reserved;
2489 if (devInfo->set != set)
2491 SetLastError(ERROR_INVALID_PARAMETER);
2494 if (!InterfaceClassGuid)
2496 SetLastError(ERROR_INVALID_USER_BUFFER);
2499 if ((ret = SETUPDI_AddInterfaceInstance(DeviceInfoData, InterfaceClassGuid,
2500 ReferenceString, &iface)))
2502 if (DeviceInterfaceData)
2504 if (DeviceInterfaceData->cbSize != sizeof(SP_DEVICE_INTERFACE_DATA))
2506 SetLastError(ERROR_INVALID_USER_BUFFER);
2510 memcpy(DeviceInterfaceData, iface, sizeof(*iface));
2516 /***********************************************************************
2517 * SetupDiCreateDeviceInterfaceRegKeyA (SETUPAPI.@)
2519 HKEY WINAPI SetupDiCreateDeviceInterfaceRegKeyA(
2520 HDEVINFO DeviceInfoSet,
2521 PSP_DEVICE_INTERFACE_DATA DeviceInterfaceData,
2525 PCSTR InfSectionName)
2528 PWSTR InfSectionNameW = NULL;
2530 TRACE("%p %p %d %08x %p %p\n", DeviceInfoSet, DeviceInterfaceData, Reserved,
2531 samDesired, InfHandle, InfSectionName);
2534 if (!InfSectionName)
2536 SetLastError(ERROR_INVALID_PARAMETER);
2537 return INVALID_HANDLE_VALUE;
2539 InfSectionNameW = MultiByteToUnicode(InfSectionName, CP_ACP);
2540 if (!InfSectionNameW)
2541 return INVALID_HANDLE_VALUE;
2543 key = SetupDiCreateDeviceInterfaceRegKeyW(DeviceInfoSet,
2544 DeviceInterfaceData, Reserved, samDesired, InfHandle,
2546 MyFree(InfSectionNameW);
2550 static PWSTR SETUPDI_GetInstancePath(struct InterfaceInfo *ifaceInfo)
2552 static const WCHAR hash[] = {'#',0};
2553 PWSTR instancePath = NULL;
2555 if (ifaceInfo->referenceString)
2557 instancePath = HeapAlloc(GetProcessHeap(), 0,
2558 (lstrlenW(ifaceInfo->referenceString) + 2) * sizeof(WCHAR));
2561 lstrcpyW(instancePath, hash);
2562 lstrcatW(instancePath, ifaceInfo->referenceString);
2565 SetLastError(ERROR_OUTOFMEMORY);
2569 instancePath = HeapAlloc(GetProcessHeap(), 0,
2570 (lstrlenW(hash) + 1) * sizeof(WCHAR));
2572 lstrcpyW(instancePath, hash);
2574 return instancePath;
2577 /***********************************************************************
2578 * SetupDiCreateDeviceInterfaceRegKeyW (SETUPAPI.@)
2580 HKEY WINAPI SetupDiCreateDeviceInterfaceRegKeyW(
2581 HDEVINFO DeviceInfoSet,
2582 PSP_DEVICE_INTERFACE_DATA DeviceInterfaceData,
2586 PCWSTR InfSectionName)
2588 struct DeviceInfoSet *set = (struct DeviceInfoSet *)DeviceInfoSet;
2589 HKEY key = INVALID_HANDLE_VALUE, interfacesKey;
2592 TRACE("%p %p %d %08x %p %p\n", DeviceInfoSet, DeviceInterfaceData, Reserved,
2593 samDesired, InfHandle, InfSectionName);
2595 if (!DeviceInfoSet || DeviceInfoSet == (HDEVINFO)INVALID_HANDLE_VALUE ||
2596 set->magic != SETUP_DEVICE_INFO_SET_MAGIC)
2598 SetLastError(ERROR_INVALID_HANDLE);
2599 return INVALID_HANDLE_VALUE;
2601 if (!DeviceInterfaceData ||
2602 DeviceInterfaceData->cbSize != sizeof(SP_DEVICE_INTERFACE_DATA) ||
2603 !DeviceInterfaceData->Reserved)
2605 SetLastError(ERROR_INVALID_PARAMETER);
2606 return INVALID_HANDLE_VALUE;
2608 if (InfHandle && !InfSectionName)
2610 SetLastError(ERROR_INVALID_PARAMETER);
2611 return INVALID_HANDLE_VALUE;
2613 if (!(l = RegCreateKeyExW(HKEY_LOCAL_MACHINE, DeviceClasses, 0, NULL, 0,
2614 samDesired, NULL, &interfacesKey, NULL)))
2617 WCHAR bracedGuidString[39];
2619 SETUPDI_GuidToString(&DeviceInterfaceData->InterfaceClassGuid,
2621 if (!(l = RegCreateKeyExW(interfacesKey, bracedGuidString, 0, NULL, 0,
2622 samDesired, NULL, &parent, NULL)))
2624 struct InterfaceInfo *ifaceInfo =
2625 (struct InterfaceInfo *)DeviceInterfaceData->Reserved;
2626 PWSTR instancePath = SETUPDI_GetInstancePath(ifaceInfo);
2632 l = RegCreateKeyExW(parent, instancePath, 0, NULL, 0,
2633 samDesired, NULL, &key, NULL);
2637 key = INVALID_HANDLE_VALUE;
2640 FIXME("INF section installation unsupported\n");
2642 HeapFree(GetProcessHeap(), 0, instancePath);
2643 RegCloseKey(parent);
2647 RegCloseKey(interfacesKey);
2654 /***********************************************************************
2655 * SetupDiDeleteDeviceInterfaceRegKey (SETUPAPI.@)
2657 BOOL WINAPI SetupDiDeleteDeviceInterfaceRegKey(
2658 HDEVINFO DeviceInfoSet,
2659 PSP_DEVICE_INTERFACE_DATA DeviceInterfaceData,
2662 struct DeviceInfoSet *set = (struct DeviceInfoSet *)DeviceInfoSet;
2666 TRACE("%p %p %d\n", DeviceInfoSet, DeviceInterfaceData, Reserved);
2668 if (!DeviceInfoSet || DeviceInfoSet == (HDEVINFO)INVALID_HANDLE_VALUE ||
2669 set->magic != SETUP_DEVICE_INFO_SET_MAGIC)
2671 SetLastError(ERROR_INVALID_HANDLE);
2674 if (!DeviceInterfaceData ||
2675 DeviceInterfaceData->cbSize != sizeof(SP_DEVICE_INTERFACE_DATA) ||
2676 !DeviceInterfaceData->Reserved)
2678 SetLastError(ERROR_INVALID_PARAMETER);
2681 parent = SetupDiOpenClassRegKeyExW(&DeviceInterfaceData->InterfaceClassGuid,
2682 KEY_ALL_ACCESS, DIOCR_INTERFACE, NULL, NULL);
2683 if (parent != INVALID_HANDLE_VALUE)
2685 struct InterfaceInfo *ifaceInfo =
2686 (struct InterfaceInfo *)DeviceInterfaceData->Reserved;
2687 PWSTR instancePath = SETUPDI_GetInstancePath(ifaceInfo);
2691 LONG l = RegDeleteKeyW(parent, instancePath);
2697 HeapFree(GetProcessHeap(), 0, instancePath);
2699 RegCloseKey(parent);
2704 /***********************************************************************
2705 * SetupDiEnumDeviceInterfaces (SETUPAPI.@)
2708 * DeviceInfoSet [I] Set of devices from which to enumerate
2710 * DeviceInfoData [I] (Optional) If specified, a specific device
2711 * instance from which to enumerate interfaces.
2712 * If it isn't specified, all interfaces for all
2713 * devices in the set are enumerated.
2714 * InterfaceClassGuid [I] The interface class to enumerate.
2715 * MemberIndex [I] An index of the interface instance to enumerate.
2716 * A caller should start with MemberIndex set to 0,
2717 * and continue until the function fails with
2718 * ERROR_NO_MORE_ITEMS.
2719 * DeviceInterfaceData [I/O] Returns an enumerated interface. Its cbSize
2720 * member must be set to
2721 * sizeof(SP_DEVICE_INTERFACE_DATA).
2724 * Success: non-zero value.
2725 * Failure: FALSE. Call GetLastError() for more info.
2727 BOOL WINAPI SetupDiEnumDeviceInterfaces(
2728 HDEVINFO DeviceInfoSet,
2729 PSP_DEVINFO_DATA DeviceInfoData,
2730 CONST GUID * InterfaceClassGuid,
2732 PSP_DEVICE_INTERFACE_DATA DeviceInterfaceData)
2734 struct DeviceInfoSet *set = (struct DeviceInfoSet *)DeviceInfoSet;
2737 TRACE("%p, %p, %s, %d, %p\n", DeviceInfoSet, DeviceInfoData,
2738 debugstr_guid(InterfaceClassGuid), MemberIndex, DeviceInterfaceData);
2740 if (!DeviceInfoSet || DeviceInfoSet == (HDEVINFO)INVALID_HANDLE_VALUE ||
2741 set->magic != SETUP_DEVICE_INFO_SET_MAGIC)
2743 SetLastError(ERROR_INVALID_HANDLE);
2746 if (DeviceInfoData && (DeviceInfoData->cbSize != sizeof(SP_DEVINFO_DATA) ||
2747 !DeviceInfoData->Reserved))
2749 SetLastError(ERROR_INVALID_PARAMETER);
2752 if (!DeviceInterfaceData ||
2753 DeviceInterfaceData->cbSize != sizeof(SP_DEVICE_INTERFACE_DATA))
2755 SetLastError(ERROR_INVALID_PARAMETER);
2760 struct DeviceInfo *devInfo =
2761 (struct DeviceInfo *)DeviceInfoData->Reserved;
2762 struct InterfaceInstances *iface;
2764 if ((ret = SETUPDI_FindInterface(devInfo, InterfaceClassGuid, &iface)))
2766 if (MemberIndex < iface->cInstances)
2767 memcpy(DeviceInterfaceData, &iface->instances[MemberIndex],
2768 sizeof(SP_DEVICE_INTERFACE_DATA));
2771 SetLastError(ERROR_NO_MORE_ITEMS);
2776 SetLastError(ERROR_NO_MORE_ITEMS);
2780 DWORD i, cEnumerated = 0;
2783 for (i = 0; !found && cEnumerated < MemberIndex + 1 &&
2784 i < set->cDevices; i++)
2786 struct DeviceInfo *devInfo =
2787 (struct DeviceInfo *)set->devices[i].Reserved;
2788 struct InterfaceInstances *iface;
2790 if (SETUPDI_FindInterface(devInfo, InterfaceClassGuid, &iface))
2792 if (cEnumerated + iface->cInstances < MemberIndex + 1)
2793 cEnumerated += iface->cInstances;
2796 DWORD instanceIndex = MemberIndex - cEnumerated;
2798 memcpy(DeviceInterfaceData,
2799 &iface->instances[instanceIndex],
2800 sizeof(SP_DEVICE_INTERFACE_DATA));
2801 cEnumerated += instanceIndex + 1;
2808 SetLastError(ERROR_NO_MORE_ITEMS);
2813 /***********************************************************************
2814 * SetupDiDestroyDeviceInfoList (SETUPAPI.@)
2816 * Destroy a DeviceInfoList and free all used memory of the list.
2819 * devinfo [I] DeviceInfoList pointer to list to destroy
2822 * Success: non zero value.
2823 * Failure: zero value.
2825 BOOL WINAPI SetupDiDestroyDeviceInfoList(HDEVINFO devinfo)
2829 TRACE("%p\n", devinfo);
2830 if (devinfo && devinfo != (HDEVINFO)INVALID_HANDLE_VALUE)
2832 struct DeviceInfoSet *list = (struct DeviceInfoSet *)devinfo;
2834 if (list->magic == SETUP_DEVICE_INFO_SET_MAGIC)
2838 for (i = 0; i < list->cDevices; i++)
2839 SETUPDI_FreeDeviceInfo(
2840 (struct DeviceInfo *)list->devices[i].Reserved);
2841 HeapFree(GetProcessHeap(), 0, list->devices);
2842 HeapFree(GetProcessHeap(), 0, list);
2848 SetLastError(ERROR_INVALID_HANDLE);
2853 /***********************************************************************
2854 * SetupDiGetDeviceInterfaceDetailA (SETUPAPI.@)
2856 BOOL WINAPI SetupDiGetDeviceInterfaceDetailA(
2857 HDEVINFO DeviceInfoSet,
2858 PSP_DEVICE_INTERFACE_DATA DeviceInterfaceData,
2859 PSP_DEVICE_INTERFACE_DETAIL_DATA_A DeviceInterfaceDetailData,
2860 DWORD DeviceInterfaceDetailDataSize,
2861 PDWORD RequiredSize,
2862 PSP_DEVINFO_DATA DeviceInfoData)
2864 struct DeviceInfoSet *set = (struct DeviceInfoSet *)DeviceInfoSet;
2865 struct InterfaceInfo *info;
2866 DWORD bytesNeeded = offsetof(SP_DEVICE_INTERFACE_DETAIL_DATA_A, DevicePath)
2870 TRACE("(%p, %p, %p, %d, %p, %p)\n", DeviceInfoSet,
2871 DeviceInterfaceData, DeviceInterfaceDetailData,
2872 DeviceInterfaceDetailDataSize, RequiredSize, DeviceInfoData);
2874 if (!DeviceInfoSet || DeviceInfoSet == (HDEVINFO)INVALID_HANDLE_VALUE ||
2875 set->magic != SETUP_DEVICE_INFO_SET_MAGIC)
2877 SetLastError(ERROR_INVALID_HANDLE);
2880 if (!DeviceInterfaceData ||
2881 DeviceInterfaceData->cbSize != sizeof(SP_DEVICE_INTERFACE_DATA) ||
2882 !DeviceInterfaceData->Reserved)
2884 SetLastError(ERROR_INVALID_PARAMETER);
2887 if (DeviceInterfaceDetailData && (DeviceInterfaceDetailData->cbSize <
2888 offsetof(SP_DEVICE_INTERFACE_DETAIL_DATA_A, DevicePath) + sizeof(char) ||
2889 DeviceInterfaceDetailData->cbSize > sizeof(SP_DEVICE_INTERFACE_DETAIL_DATA_A)))
2891 SetLastError(ERROR_INVALID_USER_BUFFER);
2894 if (!DeviceInterfaceDetailData && DeviceInterfaceDetailDataSize)
2896 SetLastError(ERROR_INVALID_USER_BUFFER);
2899 info = (struct InterfaceInfo *)DeviceInterfaceData->Reserved;
2900 if (info->symbolicLink)
2901 bytesNeeded += WideCharToMultiByte(CP_ACP, 0, info->symbolicLink, -1,
2902 NULL, 0, NULL, NULL);
2903 if (DeviceInterfaceDetailDataSize >= bytesNeeded)
2905 if (info->symbolicLink)
2906 WideCharToMultiByte(CP_ACP, 0, info->symbolicLink, -1,
2907 DeviceInterfaceDetailData->DevicePath,
2908 DeviceInterfaceDetailDataSize -
2909 offsetof(SP_DEVICE_INTERFACE_DETAIL_DATA_A, DevicePath),
2912 DeviceInterfaceDetailData->DevicePath[0] = '\0';
2913 if (DeviceInfoData && DeviceInfoData->cbSize == sizeof(SP_DEVINFO_DATA))
2914 memcpy(DeviceInfoData, info->device, sizeof(SP_DEVINFO_DATA));
2920 *RequiredSize = bytesNeeded;
2921 SetLastError(ERROR_INSUFFICIENT_BUFFER);
2926 /***********************************************************************
2927 * SetupDiGetDeviceInterfaceDetailW (SETUPAPI.@)
2929 BOOL WINAPI SetupDiGetDeviceInterfaceDetailW(
2930 HDEVINFO DeviceInfoSet,
2931 PSP_DEVICE_INTERFACE_DATA DeviceInterfaceData,
2932 PSP_DEVICE_INTERFACE_DETAIL_DATA_W DeviceInterfaceDetailData,
2933 DWORD DeviceInterfaceDetailDataSize,
2934 PDWORD RequiredSize,
2935 PSP_DEVINFO_DATA DeviceInfoData)
2937 struct DeviceInfoSet *set = (struct DeviceInfoSet *)DeviceInfoSet;
2938 struct InterfaceInfo *info;
2939 DWORD bytesNeeded = offsetof(SP_DEVICE_INTERFACE_DETAIL_DATA_W, DevicePath)
2940 + sizeof(WCHAR); /* include NULL terminator */
2943 TRACE("(%p, %p, %p, %d, %p, %p)\n", DeviceInfoSet,
2944 DeviceInterfaceData, DeviceInterfaceDetailData,
2945 DeviceInterfaceDetailDataSize, RequiredSize, DeviceInfoData);
2947 if (!DeviceInfoSet || DeviceInfoSet == (HDEVINFO)INVALID_HANDLE_VALUE ||
2948 set->magic != SETUP_DEVICE_INFO_SET_MAGIC)
2950 SetLastError(ERROR_INVALID_HANDLE);
2953 if (!DeviceInterfaceData ||
2954 DeviceInterfaceData->cbSize != sizeof(SP_DEVICE_INTERFACE_DATA) ||
2955 !DeviceInterfaceData->Reserved)
2957 SetLastError(ERROR_INVALID_PARAMETER);
2960 if (DeviceInterfaceDetailData && (DeviceInterfaceDetailData->cbSize <
2961 offsetof(SP_DEVICE_INTERFACE_DETAIL_DATA_W, DevicePath) + sizeof(WCHAR) ||
2962 DeviceInterfaceDetailData->cbSize > sizeof(SP_DEVICE_INTERFACE_DETAIL_DATA_W)))
2964 SetLastError(ERROR_INVALID_USER_BUFFER);
2967 if (!DeviceInterfaceDetailData && DeviceInterfaceDetailDataSize)
2969 SetLastError(ERROR_INVALID_USER_BUFFER);
2972 info = (struct InterfaceInfo *)DeviceInterfaceData->Reserved;
2973 if (info->symbolicLink)
2974 bytesNeeded += lstrlenW(info->symbolicLink);
2975 if (DeviceInterfaceDetailDataSize >= bytesNeeded)
2977 if (info->symbolicLink)
2978 lstrcpyW(DeviceInterfaceDetailData->DevicePath, info->symbolicLink);
2980 DeviceInterfaceDetailData->DevicePath[0] = '\0';
2981 if (DeviceInfoData && DeviceInfoData->cbSize == sizeof(SP_DEVINFO_DATA))
2982 memcpy(DeviceInfoData, info->device, sizeof(SP_DEVINFO_DATA));
2988 *RequiredSize = bytesNeeded;
2989 SetLastError(ERROR_INSUFFICIENT_BUFFER);
2994 struct PropertyMapEntry
3001 static struct PropertyMapEntry PropertyMap[] = {
3002 { REG_SZ, "DeviceDesc", DeviceDesc },
3003 { REG_MULTI_SZ, "HardwareId", HardwareId },
3004 { REG_MULTI_SZ, "CompatibleIDs", CompatibleIDs },
3005 { 0, NULL, NULL }, /* SPDRP_UNUSED0 */
3006 { REG_SZ, "Service", Service },
3007 { 0, NULL, NULL }, /* SPDRP_UNUSED1 */
3008 { 0, NULL, NULL }, /* SPDRP_UNUSED2 */
3009 { REG_SZ, "Class", Class },
3010 { REG_SZ, "ClassGUID", ClassGUID },
3011 { REG_SZ, "Driver", Driver },
3012 { REG_DWORD, "ConfigFlags", ConfigFlags },
3013 { REG_SZ, "Mfg", Mfg },
3014 { REG_SZ, "FriendlyName", FriendlyName },
3015 { REG_SZ, "LocationInformation", LocationInformation },
3016 { 0, NULL, NULL }, /* SPDRP_PHYSICAL_DEVICE_OBJECT_NAME */
3017 { REG_DWORD, "Capabilities", Capabilities },
3018 { REG_DWORD, "UINumber", UINumber },
3019 { REG_MULTI_SZ, "UpperFilters", UpperFilters },
3020 { REG_MULTI_SZ, "LowerFilters", LowerFilters },
3023 /***********************************************************************
3024 * SetupDiGetDeviceRegistryPropertyA (SETUPAPI.@)
3026 BOOL WINAPI SetupDiGetDeviceRegistryPropertyA(
3027 HDEVINFO DeviceInfoSet,
3028 PSP_DEVINFO_DATA DeviceInfoData,
3030 PDWORD PropertyRegDataType,
3031 PBYTE PropertyBuffer,
3032 DWORD PropertyBufferSize,
3033 PDWORD RequiredSize)
3036 struct DeviceInfoSet *set = (struct DeviceInfoSet *)DeviceInfoSet;
3037 struct DeviceInfo *devInfo;
3039 TRACE("%04x %p %d %p %p %d %p\n", (DWORD)DeviceInfoSet, DeviceInfoData,
3040 Property, PropertyRegDataType, PropertyBuffer, PropertyBufferSize,
3043 if (!DeviceInfoSet || DeviceInfoSet == INVALID_HANDLE_VALUE)
3045 SetLastError(ERROR_INVALID_HANDLE);
3048 if (set->magic != SETUP_DEVICE_INFO_SET_MAGIC)
3050 SetLastError(ERROR_INVALID_HANDLE);
3053 if (!DeviceInfoData || DeviceInfoData->cbSize != sizeof(SP_DEVINFO_DATA)
3054 || !DeviceInfoData->Reserved)
3056 SetLastError(ERROR_INVALID_PARAMETER);
3059 devInfo = (struct DeviceInfo *)DeviceInfoData->Reserved;
3060 if (Property < sizeof(PropertyMap) / sizeof(PropertyMap[0])
3061 && PropertyMap[Property].nameA)
3063 DWORD size = PropertyBufferSize;
3064 LONG l = RegQueryValueExA(devInfo->key, PropertyMap[Property].nameA,
3065 NULL, PropertyRegDataType, PropertyBuffer, &size);
3068 *RequiredSize = size;
3069 if (!PropertyBuffer)
3070 ; /* do nothing, ret is already FALSE, last error is already set */
3079 /***********************************************************************
3080 * SetupDiGetDeviceRegistryPropertyW (SETUPAPI.@)
3082 BOOL WINAPI SetupDiGetDeviceRegistryPropertyW(
3083 HDEVINFO DeviceInfoSet,
3084 PSP_DEVINFO_DATA DeviceInfoData,
3086 PDWORD PropertyRegDataType,
3087 PBYTE PropertyBuffer,
3088 DWORD PropertyBufferSize,
3089 PDWORD RequiredSize)
3092 struct DeviceInfoSet *set = (struct DeviceInfoSet *)DeviceInfoSet;
3093 struct DeviceInfo *devInfo;
3095 TRACE("%04x %p %d %p %p %d %p\n", (DWORD)DeviceInfoSet, DeviceInfoData,
3096 Property, PropertyRegDataType, PropertyBuffer, PropertyBufferSize,
3099 if (!DeviceInfoSet || DeviceInfoSet == INVALID_HANDLE_VALUE)
3101 SetLastError(ERROR_INVALID_HANDLE);
3104 if (set->magic != SETUP_DEVICE_INFO_SET_MAGIC)
3106 SetLastError(ERROR_INVALID_HANDLE);
3109 if (!DeviceInfoData || DeviceInfoData->cbSize != sizeof(SP_DEVINFO_DATA)
3110 || !DeviceInfoData->Reserved)
3112 SetLastError(ERROR_INVALID_PARAMETER);
3115 devInfo = (struct DeviceInfo *)DeviceInfoData->Reserved;
3116 if (Property < sizeof(PropertyMap) / sizeof(PropertyMap[0])
3117 && PropertyMap[Property].nameW)
3119 DWORD size = PropertyBufferSize;
3120 LONG l = RegQueryValueExW(devInfo->key, PropertyMap[Property].nameW,
3121 NULL, PropertyRegDataType, PropertyBuffer, &size);
3124 *RequiredSize = size;
3125 if (!PropertyBuffer)
3126 ; /* do nothing, ret is already FALSE, last error is already set */
3135 /***********************************************************************
3136 * SetupDiSetDeviceRegistryPropertyA (SETUPAPI.@)
3138 BOOL WINAPI SetupDiSetDeviceRegistryPropertyA(
3139 HDEVINFO DeviceInfoSet,
3140 PSP_DEVINFO_DATA DeviceInfoData,
3142 const BYTE *PropertyBuffer,
3143 DWORD PropertyBufferSize)
3146 struct DeviceInfoSet *set = (struct DeviceInfoSet *)DeviceInfoSet;
3147 struct DeviceInfo *devInfo;
3149 TRACE("%p %p %d %p %d\n", DeviceInfoSet, DeviceInfoData, Property,
3150 PropertyBuffer, PropertyBufferSize);
3152 if (!DeviceInfoSet || DeviceInfoSet == INVALID_HANDLE_VALUE)
3154 SetLastError(ERROR_INVALID_HANDLE);
3157 if (set->magic != SETUP_DEVICE_INFO_SET_MAGIC)
3159 SetLastError(ERROR_INVALID_HANDLE);
3162 if (!DeviceInfoData || DeviceInfoData->cbSize != sizeof(SP_DEVINFO_DATA)
3163 || !DeviceInfoData->Reserved)
3165 SetLastError(ERROR_INVALID_PARAMETER);
3168 devInfo = (struct DeviceInfo *)DeviceInfoData->Reserved;
3169 if (Property < sizeof(PropertyMap) / sizeof(PropertyMap[0])
3170 && PropertyMap[Property].nameA)
3172 LONG l = RegSetValueExA(devInfo->key, PropertyMap[Property].nameA, 0,
3173 PropertyMap[Property].regType, PropertyBuffer,
3174 PropertyBufferSize);
3183 /***********************************************************************
3184 * SetupDiSetDeviceRegistryPropertyW (SETUPAPI.@)
3186 BOOL WINAPI SetupDiSetDeviceRegistryPropertyW(
3187 HDEVINFO DeviceInfoSet,
3188 PSP_DEVINFO_DATA DeviceInfoData,
3190 const BYTE *PropertyBuffer,
3191 DWORD PropertyBufferSize)
3194 struct DeviceInfoSet *set = (struct DeviceInfoSet *)DeviceInfoSet;
3195 struct DeviceInfo *devInfo;
3197 TRACE("%p %p %d %p %d\n", DeviceInfoSet, DeviceInfoData, Property,
3198 PropertyBuffer, PropertyBufferSize);
3200 if (!DeviceInfoSet || DeviceInfoSet == INVALID_HANDLE_VALUE)
3202 SetLastError(ERROR_INVALID_HANDLE);
3205 if (set->magic != SETUP_DEVICE_INFO_SET_MAGIC)
3207 SetLastError(ERROR_INVALID_HANDLE);
3210 if (!DeviceInfoData || DeviceInfoData->cbSize != sizeof(SP_DEVINFO_DATA)
3211 || !DeviceInfoData->Reserved)
3213 SetLastError(ERROR_INVALID_PARAMETER);
3216 devInfo = (struct DeviceInfo *)DeviceInfoData->Reserved;
3217 if (Property < sizeof(PropertyMap) / sizeof(PropertyMap[0])
3218 && PropertyMap[Property].nameW)
3220 LONG l = RegSetValueExW(devInfo->key, PropertyMap[Property].nameW, 0,
3221 PropertyMap[Property].regType, PropertyBuffer,
3222 PropertyBufferSize);
3231 /***********************************************************************
3232 * SetupDiInstallClassA (SETUPAPI.@)
3234 BOOL WINAPI SetupDiInstallClassA(
3240 UNICODE_STRING FileNameW;
3245 SetLastError(ERROR_INVALID_PARAMETER);
3248 if (!RtlCreateUnicodeStringFromAsciiz(&FileNameW, InfFileName))
3250 SetLastError(ERROR_NOT_ENOUGH_MEMORY);
3254 Result = SetupDiInstallClassW(hwndParent, FileNameW.Buffer, Flags, FileQueue);
3256 RtlFreeUnicodeString(&FileNameW);
3261 static HKEY CreateClassKey(HINF hInf)
3263 static const WCHAR slash[] = { '\\',0 };
3264 WCHAR FullBuffer[MAX_PATH];
3265 WCHAR Buffer[MAX_PATH];
3269 if (!SetupGetLineTextW(NULL,
3277 return INVALID_HANDLE_VALUE;
3280 lstrcpyW(FullBuffer, ControlClass);
3281 lstrcatW(FullBuffer, slash);
3282 lstrcatW(FullBuffer, Buffer);
3284 if (RegOpenKeyExW(HKEY_LOCAL_MACHINE,
3290 if (!SetupGetLineTextW(NULL,
3298 return INVALID_HANDLE_VALUE;
3301 if (RegCreateKeyExW(HKEY_LOCAL_MACHINE,
3305 REG_OPTION_NON_VOLATILE,
3311 return INVALID_HANDLE_VALUE;
3316 if (RegSetValueExW(hClassKey,
3321 RequiredSize * sizeof(WCHAR)))
3323 RegCloseKey(hClassKey);
3324 RegDeleteKeyW(HKEY_LOCAL_MACHINE,
3326 return INVALID_HANDLE_VALUE;
3332 /***********************************************************************
3333 * SetupDiInstallClassW (SETUPAPI.@)
3335 BOOL WINAPI SetupDiInstallClassW(
3341 WCHAR SectionName[MAX_PATH];
3342 DWORD SectionNameLength = 0;
3344 BOOL bFileQueueCreated = FALSE;
3352 SetLastError(ERROR_INVALID_PARAMETER);
3355 if ((Flags & DI_NOVCP) && (FileQueue == NULL || FileQueue == INVALID_HANDLE_VALUE))
3357 SetLastError(ERROR_INVALID_PARAMETER);
3361 /* Open the .inf file */
3362 hInf = SetupOpenInfFileW(InfFileName,
3366 if (hInf == INVALID_HANDLE_VALUE)
3372 /* Create or open the class registry key 'HKLM\\CurrentControlSet\\Class\\{GUID}' */
3373 hClassKey = CreateClassKey(hInf);
3374 if (hClassKey == INVALID_HANDLE_VALUE)
3376 SetupCloseInfFile(hInf);
3381 /* Try to append a layout file */
3382 SetupOpenAppendInfFileW(NULL, hInf, NULL);
3384 /* Retrieve the actual section name */
3385 SetupDiGetActualSectionToInstallW(hInf,
3393 if (!(Flags & DI_NOVCP))
3395 FileQueue = SetupOpenFileQueue();
3396 if (FileQueue == INVALID_HANDLE_VALUE)
3398 SetupCloseInfFile(hInf);
3402 bFileQueueCreated = TRUE;
3407 SetupInstallFromInfSectionW(NULL,
3410 SPINST_COPYINF | SPINST_FILES | SPINST_REGISTRY,
3416 INVALID_HANDLE_VALUE,
3419 /* FIXME: More code! */
3421 if (bFileQueueCreated)
3422 SetupCloseFileQueue(FileQueue);
3424 SetupCloseInfFile(hInf);
3430 /***********************************************************************
3431 * SetupDiOpenClassRegKey (SETUPAPI.@)
3433 HKEY WINAPI SetupDiOpenClassRegKey(
3434 const GUID* ClassGuid,
3437 return SetupDiOpenClassRegKeyExW(ClassGuid, samDesired,
3438 DIOCR_INSTALLER, NULL, NULL);
3442 /***********************************************************************
3443 * SetupDiOpenClassRegKeyExA (SETUPAPI.@)
3445 HKEY WINAPI SetupDiOpenClassRegKeyExA(
3446 const GUID* ClassGuid,
3452 PWSTR MachineNameW = NULL;
3459 MachineNameW = MultiByteToUnicode(MachineName, CP_ACP);
3460 if (MachineNameW == NULL)
3461 return INVALID_HANDLE_VALUE;
3464 hKey = SetupDiOpenClassRegKeyExW(ClassGuid, samDesired,
3465 Flags, MachineNameW, Reserved);
3467 MyFree(MachineNameW);
3473 /***********************************************************************
3474 * SetupDiOpenClassRegKeyExW (SETUPAPI.@)
3476 HKEY WINAPI SetupDiOpenClassRegKeyExW(
3477 const GUID* ClassGuid,
3488 if (MachineName != NULL)
3490 FIXME("Remote access not supported yet!\n");
3491 return INVALID_HANDLE_VALUE;
3494 if (Flags == DIOCR_INSTALLER)
3496 lpKeyName = ControlClass;
3498 else if (Flags == DIOCR_INTERFACE)
3500 lpKeyName = DeviceClasses;
3504 ERR("Invalid Flags parameter!\n");
3505 SetLastError(ERROR_INVALID_PARAMETER);
3506 return INVALID_HANDLE_VALUE;
3511 if ((l = RegOpenKeyExW(HKEY_LOCAL_MACHINE,
3518 hClassesKey = INVALID_HANDLE_VALUE;
3524 WCHAR bracedGuidString[39];
3526 SETUPDI_GuidToString(ClassGuid, bracedGuidString);
3528 if (!(l = RegOpenKeyExW(HKEY_LOCAL_MACHINE,
3534 if ((l = RegOpenKeyExW(hClassesKey,
3541 key = INVALID_HANDLE_VALUE;
3543 RegCloseKey(hClassesKey);
3548 key = INVALID_HANDLE_VALUE;
3554 /***********************************************************************
3555 * SetupDiOpenDeviceInterfaceW (SETUPAPI.@)
3557 BOOL WINAPI SetupDiOpenDeviceInterfaceW(
3558 HDEVINFO DeviceInfoSet,
3561 PSP_DEVICE_INTERFACE_DATA DeviceInterfaceData)
3563 FIXME("%p %s %08x %p\n",
3564 DeviceInfoSet, debugstr_w(DevicePath), OpenFlags, DeviceInterfaceData);
3568 /***********************************************************************
3569 * SetupDiOpenDeviceInterfaceA (SETUPAPI.@)
3571 BOOL WINAPI SetupDiOpenDeviceInterfaceA(
3572 HDEVINFO DeviceInfoSet,
3575 PSP_DEVICE_INTERFACE_DATA DeviceInterfaceData)
3577 FIXME("%p %s %08x %p\n", DeviceInfoSet,
3578 debugstr_a(DevicePath), OpenFlags, DeviceInterfaceData);
3582 /***********************************************************************
3583 * SetupDiSetClassInstallParamsA (SETUPAPI.@)
3585 BOOL WINAPI SetupDiSetClassInstallParamsA(
3586 HDEVINFO DeviceInfoSet,
3587 PSP_DEVINFO_DATA DeviceInfoData,
3588 PSP_CLASSINSTALL_HEADER ClassInstallParams,
3589 DWORD ClassInstallParamsSize)
3591 FIXME("%p %p %x %u\n",DeviceInfoSet, DeviceInfoData,
3592 ClassInstallParams->InstallFunction, ClassInstallParamsSize);
3596 /***********************************************************************
3597 * SetupDiCallClassInstaller (SETUPAPI.@)
3599 BOOL WINAPI SetupDiCallClassInstaller(
3600 DI_FUNCTION InstallFunction,
3601 HDEVINFO DeviceInfoSet,
3602 PSP_DEVINFO_DATA DeviceInfoData)
3604 FIXME("%d %p %p\n", InstallFunction, DeviceInfoSet, DeviceInfoData);
3608 /***********************************************************************
3609 * SetupDiGetDeviceInstallParamsA (SETUPAPI.@)
3611 BOOL WINAPI SetupDiGetDeviceInstallParamsA(
3612 HDEVINFO DeviceInfoSet,
3613 PSP_DEVINFO_DATA DeviceInfoData,
3614 PSP_DEVINSTALL_PARAMS_A DeviceInstallParams)
3616 FIXME("%p %p %p\n", DeviceInfoSet, DeviceInfoData, DeviceInstallParams);
3620 static HKEY SETUPDI_OpenDevKey(struct DeviceInfo *devInfo, REGSAM samDesired)
3622 HKEY enumKey, key = INVALID_HANDLE_VALUE;
3625 l = RegCreateKeyExW(HKEY_LOCAL_MACHINE, Enum, 0, NULL, 0, KEY_ALL_ACCESS,
3626 NULL, &enumKey, NULL);
3629 RegOpenKeyExW(enumKey, devInfo->instanceId, 0, samDesired, &key);
3630 RegCloseKey(enumKey);
3635 static HKEY SETUPDI_OpenDrvKey(struct DeviceInfo *devInfo, REGSAM samDesired)
3637 static const WCHAR slash[] = { '\\',0 };
3638 WCHAR classKeyPath[MAX_PATH];
3639 HKEY classKey, key = INVALID_HANDLE_VALUE;
3642 lstrcpyW(classKeyPath, ControlClass);
3643 lstrcatW(classKeyPath, slash);
3644 SETUPDI_GuidToString(&devInfo->set->ClassGuid,
3645 classKeyPath + lstrlenW(classKeyPath));
3646 l = RegCreateKeyExW(HKEY_LOCAL_MACHINE, classKeyPath, 0, NULL, 0,
3647 KEY_ALL_ACCESS, NULL, &classKey, NULL);
3650 static const WCHAR fmt[] = { '%','0','4','u',0 };
3653 sprintfW(devId, fmt, devInfo->devId);
3654 RegOpenKeyExW(classKey, devId, 0, samDesired, &key);
3655 RegCloseKey(classKey);
3660 /***********************************************************************
3661 * SetupDiOpenDevRegKey (SETUPAPI.@)
3663 HKEY WINAPI SetupDiOpenDevRegKey(
3664 HDEVINFO DeviceInfoSet,
3665 PSP_DEVINFO_DATA DeviceInfoData,
3671 struct DeviceInfoSet *set = (struct DeviceInfoSet *)DeviceInfoSet;
3672 struct DeviceInfo *devInfo;
3673 HKEY key = INVALID_HANDLE_VALUE;
3675 TRACE("%p %p %d %d %d %x\n", DeviceInfoSet, DeviceInfoData,
3676 Scope, HwProfile, KeyType, samDesired);
3678 if (!DeviceInfoSet || DeviceInfoSet == (HDEVINFO)INVALID_HANDLE_VALUE)
3680 SetLastError(ERROR_INVALID_HANDLE);
3681 return INVALID_HANDLE_VALUE;
3683 if (set->magic != SETUP_DEVICE_INFO_SET_MAGIC)
3685 SetLastError(ERROR_INVALID_HANDLE);
3686 return INVALID_HANDLE_VALUE;
3688 if (!DeviceInfoData || DeviceInfoData->cbSize != sizeof(SP_DEVINFO_DATA)
3689 || !DeviceInfoData->Reserved)
3691 SetLastError(ERROR_INVALID_PARAMETER);
3692 return INVALID_HANDLE_VALUE;
3694 if (Scope != DICS_FLAG_GLOBAL && Scope != DICS_FLAG_CONFIGSPECIFIC)
3696 SetLastError(ERROR_INVALID_FLAGS);
3697 return INVALID_HANDLE_VALUE;
3699 if (KeyType != DIREG_DEV && KeyType != DIREG_DRV)
3701 SetLastError(ERROR_INVALID_FLAGS);
3702 return INVALID_HANDLE_VALUE;
3704 devInfo = (struct DeviceInfo *)DeviceInfoData->Reserved;
3705 if (devInfo->set != set)
3707 SetLastError(ERROR_INVALID_PARAMETER);
3708 return INVALID_HANDLE_VALUE;
3710 if (devInfo->phantom)
3712 SetLastError(ERROR_DEVINFO_NOT_REGISTERED);
3713 return INVALID_HANDLE_VALUE;
3715 if (Scope != DICS_FLAG_GLOBAL)
3716 FIXME("unimplemented for scope %d\n", Scope);
3720 key = SETUPDI_OpenDevKey(devInfo, samDesired);
3723 key = SETUPDI_OpenDrvKey(devInfo, samDesired);
3726 WARN("unknown KeyType %d\n", KeyType);
3731 static BOOL SETUPDI_DeleteDevKey(struct DeviceInfo *devInfo)
3737 l = RegCreateKeyExW(HKEY_LOCAL_MACHINE, Enum, 0, NULL, 0, KEY_ALL_ACCESS,
3738 NULL, &enumKey, NULL);
3741 ret = RegDeleteTreeW(enumKey, devInfo->instanceId);
3742 RegCloseKey(enumKey);
3749 static BOOL SETUPDI_DeleteDrvKey(struct DeviceInfo *devInfo)
3751 static const WCHAR slash[] = { '\\',0 };
3752 WCHAR classKeyPath[MAX_PATH];
3757 lstrcpyW(classKeyPath, ControlClass);
3758 lstrcatW(classKeyPath, slash);
3759 SETUPDI_GuidToString(&devInfo->set->ClassGuid,
3760 classKeyPath + lstrlenW(classKeyPath));
3761 l = RegCreateKeyExW(HKEY_LOCAL_MACHINE, classKeyPath, 0, NULL, 0,
3762 KEY_ALL_ACCESS, NULL, &classKey, NULL);
3765 static const WCHAR fmt[] = { '%','0','4','u',0 };
3768 sprintfW(devId, fmt, devInfo->devId);
3769 ret = RegDeleteTreeW(classKey, devId);
3770 RegCloseKey(classKey);
3777 /***********************************************************************
3778 * SetupDiOpenDevRegKey (SETUPAPI.@)
3780 BOOL WINAPI SetupDiDeleteDevRegKey(
3781 HDEVINFO DeviceInfoSet,
3782 PSP_DEVINFO_DATA DeviceInfoData,
3787 struct DeviceInfoSet *set = (struct DeviceInfoSet *)DeviceInfoSet;
3788 struct DeviceInfo *devInfo;
3791 TRACE("%p %p %d %d %d\n", DeviceInfoSet, DeviceInfoData, Scope, HwProfile,
3794 if (!DeviceInfoSet || DeviceInfoSet == (HDEVINFO)INVALID_HANDLE_VALUE)
3796 SetLastError(ERROR_INVALID_HANDLE);
3799 if (set->magic != SETUP_DEVICE_INFO_SET_MAGIC)
3801 SetLastError(ERROR_INVALID_HANDLE);
3804 if (!DeviceInfoData || DeviceInfoData->cbSize != sizeof(SP_DEVINFO_DATA)
3805 || !DeviceInfoData->Reserved)
3807 SetLastError(ERROR_INVALID_PARAMETER);
3810 if (Scope != DICS_FLAG_GLOBAL && Scope != DICS_FLAG_CONFIGSPECIFIC)
3812 SetLastError(ERROR_INVALID_FLAGS);
3815 if (KeyType != DIREG_DEV && KeyType != DIREG_DRV)
3817 SetLastError(ERROR_INVALID_FLAGS);
3820 devInfo = (struct DeviceInfo *)DeviceInfoData->Reserved;
3821 if (devInfo->set != set)
3823 SetLastError(ERROR_INVALID_PARAMETER);
3826 if (devInfo->phantom)
3828 SetLastError(ERROR_DEVINFO_NOT_REGISTERED);
3831 if (Scope != DICS_FLAG_GLOBAL)
3832 FIXME("unimplemented for scope %d\n", Scope);
3836 ret = SETUPDI_DeleteDevKey(devInfo);
3839 ret = SETUPDI_DeleteDrvKey(devInfo);
3842 ret = SETUPDI_DeleteDevKey(devInfo);
3844 ret = SETUPDI_DeleteDrvKey(devInfo);
3847 WARN("unknown KeyType %d\n", KeyType);