4 * Copyright 1998,2000 Andreas Mohr
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
20 * FIXME: Rather non-functional functions for now.
23 * http://www.geocities.com/SiliconValley/Network/5317/drivers.html
24 * http://willemer.de/informatik/windows/inf_info.htm (German)
25 * http://www.microsoft.com/ddk/ddkdocs/win98ddk/devinst_12uw.htm
27 * http://mmatrix.tripod.com/customsystemfolder/infsysntaxfull.html
28 * http://www.rdrop.com/~cary/html/inf_faq.html
29 * http://support.microsoft.com/support/kb/articles/q194/6/40.asp
32 * - rs405deu.exe (German Acroread 4.05 setup)
37 * - string handling is... weird ;) (buflen etc.)
39 * - separate that mess (but probably only when it's done completely)
41 * SETUPX consists of several parts with the following acronyms/prefixes:
42 * Di device installer (devinst.c ?)
43 * Gen generic installer (geninst.c ?)
44 * Ip .INF parsing (infparse.c)
45 * LDD logical device descriptor (ldd.c ?)
46 * LDID logical device ID
47 * SU setup (setup.c ?)
48 * Tp text processing (textproc.c ?)
49 * Vcp virtual copy module (vcp.c ?)
52 * The SETUPX DLL is NOT thread-safe. That's why many installers urge you to
53 * "close all open applications".
54 * All in all the design of it seems to be a bit weak.
55 * Not sure whether my implementation of it is better, though ;-)
71 #include "setupapi_private.h"
73 #include "wine/debug.h"
75 WINE_DEFAULT_DEBUG_CHANNEL(setupapi);
77 #define HINSTANCE_32(h16) ((HINSTANCE)(ULONG_PTR)(h16))
79 /***********************************************************************
80 * SURegOpenKey (SETUPX.47)
82 DWORD WINAPI SURegOpenKey( HKEY hkey, LPCSTR lpszSubKey, PHKEY retkey )
84 FIXME("(%p,%s,%p), semi-stub.\n",hkey,debugstr_a(lpszSubKey),retkey);
85 return RegOpenKeyA( hkey, lpszSubKey, retkey );
88 /***********************************************************************
89 * SURegQueryValueEx (SETUPX.50)
91 DWORD WINAPI SURegQueryValueEx( HKEY hkey, LPSTR lpszValueName,
92 LPDWORD lpdwReserved, LPDWORD lpdwType,
93 LPBYTE lpbData, LPDWORD lpcbData )
95 FIXME("(%p,%s,%p,%p,%p,%d), semi-stub.\n",hkey,debugstr_a(lpszValueName),
96 lpdwReserved,lpdwType,lpbData,lpcbData?*lpcbData:0);
97 return RegQueryValueExA( hkey, lpszValueName, lpdwReserved, lpdwType,
102 /***********************************************************************
103 * InstallHinfSection (SETUPX.527)
105 * hwnd = parent window
106 * hinst = instance of SETUPX.DLL
107 * lpszCmdLine = e.g. "DefaultInstall 132 C:\MYINSTALL\MYDEV.INF"
108 * Here "DefaultInstall" is the .inf file section to be installed (optional).
109 * The 132 value is made of the HOW_xxx flags and sometimes 128 (-> setupx16.h).
111 * nCmdShow = nCmdShow of CreateProcess
113 RETERR16 WINAPI InstallHinfSection16( HWND16 hwnd, HINSTANCE16 hinst, LPCSTR lpszCmdLine, INT16 nCmdShow)
115 InstallHinfSectionA( HWND_32(hwnd), HINSTANCE_32(hinst), lpszCmdLine, nCmdShow );
122 LPCSTR StdString; /* fallback string; sub dir of windows directory */
125 static const LDID_DATA LDID_Data[34] =
127 { /* 0 (LDID_NULL) -- not defined */
131 { /* 1 (LDID_SRCPATH) = source of installation. hmm, what to do here ? */
132 "SourcePath", /* hmm, does SETUPX have to care about updating it ?? */
135 { /* 2 (LDID_SETUPTEMP) = setup temp dir */
139 { /* 3 (LDID_UNINSTALL) = uninstall backup dir */
143 { /* 4 (LDID_BACKUP) = backup dir */
147 { /* 5 (LDID_SETUPSCRATCH) = setup scratch dir */
151 { /* 6 -- not defined */
155 { /* 7 -- not defined */
159 { /* 8 -- not defined */
163 { /* 9 -- not defined */
167 { /* 10 (LDID_WIN) = windows dir */
171 { /* 11 (LDID_SYS) = system dir */
173 NULL /* call GetSystemDirectory() instead */
175 { /* 12 (LDID_IOS) = IOSubSys dir */
176 NULL, /* FIXME: registry string ? */
179 { /* 13 (LDID_CMD) = COMMAND dir */
180 NULL, /* FIXME: registry string ? */
183 { /* 14 (LDID_CPL) = control panel dir */
187 { /* 15 (LDID_PRINT) = windows printer dir */
189 "SYSTEM" /* correct ?? */
191 { /* 16 (LDID_MAIL) = destination mail dir */
195 { /* 17 (LDID_INF) = INF dir */
196 "SetupScratchDir", /* correct ? */
199 { /* 18 (LDID_HELP) = HELP dir */
203 { /* 19 (LDID_WINADMIN) = Admin dir */
207 { /* 20 (LDID_FONTS) = Fonts dir */
211 { /* 21 (LDID_VIEWERS) = Viewers */
215 { /* 22 (LDID_VMM32) = VMM32 dir */
219 { /* 23 (LDID_COLOR) = ICM dir */
223 { /* 24 (LDID_APPS) = root of boot drive ? */
227 { /* 25 (LDID_SHARED) = shared dir */
231 { /* 26 (LDID_WINBOOT) = Windows boot dir */
235 { /* 27 (LDID_MACHINE) = machine specific files */
239 { /* 28 (LDID_HOST_WINBOOT) = Host Windows boot dir */
243 { /* 29 -- not defined */
247 { /* 30 (LDID_BOOT) = Root of boot drive */
251 { /* 31 (LDID_BOOT_HOST) = Root of boot drive host */
255 { /* 32 (LDID_OLD_WINBOOT) = subdir of root */
259 { /* 33 (LDID_OLD_WIN) = old win dir */
263 /* the rest (34-38) isn't too interesting, so I'll forget about it */
267 * LDD == Logical Device Descriptor
268 * LDID == Logical Device ID
270 * The whole LDD/LDID business might go into a separate file named
272 * At the moment I don't know what the hell these functions are really doing.
273 * That's why I added reporting stubs.
274 * The only thing I do know is that I need them for the LDD/LDID infrastructure.
275 * That's why I implemented them in a way that's suitable for my purpose.
277 static LDD_LIST *pFirstLDD = NULL;
279 static BOOL std_LDDs_done = FALSE;
281 static void SETUPX_CreateStandardLDDs(void)
287 char buffer[MAX_PATH];
289 /* has to be here, otherwise loop */
290 std_LDDs_done = TRUE;
292 RegOpenKeyA(HKEY_LOCAL_MACHINE, "SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Setup", &hKey);
294 for (n=0; n < sizeof(LDID_Data)/sizeof(LDID_DATA); n++)
299 if ( (hKey) && (LDID_Data[n].RegValName)
300 && (RegQueryValueExA(hKey, LDID_Data[n].RegValName,
301 NULL, &type, (LPBYTE)buffer, &len) == ERROR_SUCCESS)
302 && (type == REG_SZ) )
304 TRACE("found value '%s' for LDID %d\n", buffer, n);
310 FIXME("LDID_SRCPATH: what exactly do we have to do here ?\n");
311 strcpy(buffer, "X:\\FIXME");
314 GetSystemDirectoryA(buffer, MAX_PATH);
318 case LDID_HOST_WINBOOT:
321 strcpy(buffer, "C:\\");
324 if (LDID_Data[n].StdString)
326 DWORD len = GetWindowsDirectoryA(buffer, MAX_PATH);
330 strcpy(p, LDID_Data[n].StdString);
337 ldd.pszPath = buffer;
338 TRACE("LDID %d -> '%s'\n", ldd.ldid, ldd.pszPath);
342 if (hKey) RegCloseKey(hKey);
345 /***********************************************************************
346 * CtlDelLdd (SETUPX.37)
349 * ERR_VCP_LDDINVALID if ldid < LDID_ASSIGN_START.
351 static RETERR16 SETUPX_DelLdd(LOGDISKID16 ldid)
353 LDD_LIST *pCurr, *pPrev = NULL;
355 TRACE("(%d)\n", ldid);
358 SETUPX_CreateStandardLDDs();
360 if (ldid < LDID_ASSIGN_START)
361 return ERR_VCP_LDDINVALID;
364 /* search until we find the appropriate LDD or hit the end */
365 while ((pCurr != NULL) && (ldid > pCurr->pldd->ldid))
370 if ( (pCurr == NULL) /* hit end of list */
371 || (ldid != pCurr->pldd->ldid) )
372 return ERR_VCP_LDDFIND; /* correct ? */
374 /* ok, found our victim: eliminate it */
377 pPrev->next = pCurr->next;
379 if (pCurr == pFirstLDD)
381 HeapFree(GetProcessHeap(), 0, pCurr);
386 /***********************************************************************
387 * CtlDelLdd (SETUPX.37)
389 RETERR16 WINAPI CtlDelLdd16(LOGDISKID16 ldid)
391 FIXME("(%d); - please report this!\n", ldid);
392 return SETUPX_DelLdd(ldid);
395 /***********************************************************************
396 * CtlFindLdd (SETUPX.35)
398 * doesn't check pldd ptr validity: crash (W98SE)
401 * ERR_VCP_LDDINVALID if pldd->cbSize != structsize
402 * 1 in all other cases ??
405 RETERR16 WINAPI CtlFindLdd16(LPLOGDISKDESC pldd)
407 LDD_LIST *pCurr, *pPrev = NULL;
409 TRACE("(%p)\n", pldd);
412 SETUPX_CreateStandardLDDs();
414 if (pldd->cbSize != sizeof(LOGDISKDESC_S))
415 return ERR_VCP_LDDINVALID;
418 /* search until we find the appropriate LDD or hit the end */
419 while ((pCurr != NULL) && (pldd->ldid > pCurr->pldd->ldid))
424 if ( (pCurr == NULL) /* hit end of list */
425 || (pldd->ldid != pCurr->pldd->ldid) )
426 return ERR_VCP_LDDFIND; /* correct ? */
428 memcpy(pldd, pCurr->pldd, pldd->cbSize);
429 /* hmm, we probably ought to strcpy() the string ptrs here */
431 return 1; /* what is this ?? */
434 /***********************************************************************
435 * CtlSetLdd (SETUPX.33)
440 * ERR_VCP_LDDINVALID if pldd.cbSize != sizeof(LOGDISKDESC_S)
443 RETERR16 WINAPI CtlSetLdd16(LPLOGDISKDESC pldd)
445 LDD_LIST *pCurr, *pPrev = NULL;
446 LPLOGDISKDESC pCurrLDD;
450 TRACE("(%p)\n", pldd);
453 SETUPX_CreateStandardLDDs();
455 if (pldd->cbSize != sizeof(LOGDISKDESC_S))
456 return ERR_VCP_LDDINVALID;
458 heap = GetProcessHeap();
460 /* search until we find the appropriate LDD or hit the end */
461 while ((pCurr != NULL) && (pldd->ldid > pCurr->pldd->ldid))
466 if (!pCurr || pldd->ldid != pCurr->pldd->ldid)
469 pCurr = HeapAlloc(heap, 0, sizeof(LDD_LIST));
470 pCurr->pldd = HeapAlloc(heap, 0, sizeof(LOGDISKDESC_S));
472 pCurrLDD = pCurr->pldd;
476 pCurrLDD = pCurr->pldd;
477 HeapFree(heap, 0, pCurrLDD->pszPath);
478 HeapFree(heap, 0, pCurrLDD->pszVolLabel);
479 HeapFree(heap, 0, pCurrLDD->pszDiskName);
482 memcpy(pCurrLDD, pldd, sizeof(LOGDISKDESC_S));
486 pCurrLDD->pszPath = HeapAlloc( heap, 0, strlen(pldd->pszPath)+1 );
487 strcpy( pCurrLDD->pszPath, pldd->pszPath );
489 if (pldd->pszVolLabel)
491 pCurrLDD->pszVolLabel = HeapAlloc( heap, 0, strlen(pldd->pszVolLabel)+1 );
492 strcpy( pCurrLDD->pszVolLabel, pldd->pszVolLabel );
494 if (pldd->pszDiskName)
496 pCurrLDD->pszDiskName = HeapAlloc( heap, 0, strlen(pldd->pszDiskName)+1 );
497 strcpy( pCurrLDD->pszDiskName, pldd->pszDiskName );
500 if (is_new) /* link into list */
504 pCurr->next = pPrev->next;
515 /***********************************************************************
516 * CtlAddLdd (SETUPX.36)
518 * doesn't check pldd ptr validity: crash (W98SE)
521 static LOGDISKID16 ldid_to_add = LDID_ASSIGN_START;
522 RETERR16 WINAPI CtlAddLdd16(LPLOGDISKDESC pldd)
524 pldd->ldid = ldid_to_add++;
525 return CtlSetLdd16(pldd);
528 /***********************************************************************
529 * CtlGetLdd (SETUPX.34)
531 * doesn't check pldd ptr validity: crash (W98SE)
532 * What the !@#$%&*( is the difference between CtlFindLdd() and CtlGetLdd() ??
535 * ERR_VCP_LDDINVALID if pldd->cbSize != structsize
538 static RETERR16 SETUPX_GetLdd(LPLOGDISKDESC pldd)
540 LDD_LIST *pCurr, *pPrev = NULL;
543 SETUPX_CreateStandardLDDs();
545 if (pldd->cbSize != sizeof(LOGDISKDESC_S))
546 return ERR_VCP_LDDINVALID;
549 /* search until we find the appropriate LDD or hit the end */
550 while ((pCurr != NULL) && (pldd->ldid > pCurr->pldd->ldid))
555 if (pCurr == NULL) /* hit end of list */
556 return ERR_VCP_LDDFIND; /* correct ? */
558 memcpy(pldd, pCurr->pldd, pldd->cbSize);
559 /* hmm, we probably ought to strcpy() the string ptrs here */
564 /**********************************************************************/
566 RETERR16 WINAPI CtlGetLdd16(LPLOGDISKDESC pldd)
568 FIXME("(%p); - please report this!\n", pldd);
569 return SETUPX_GetLdd(pldd);
572 /***********************************************************************
573 * CtlGetLddPath (SETUPX.38)
575 * Gets the path of an LDD.
576 * No crash if szPath == NULL.
577 * szPath has to be at least MAX_PATH_LEN bytes long.
579 * ERR_VCP_LDDUNINIT if LDD for LDID not found.
581 RETERR16 WINAPI CtlGetLddPath16(LOGDISKID16 ldid, LPSTR szPath)
583 TRACE("(%d, %p);\n", ldid, szPath);
589 if (CtlFindLdd16(&ldd) == ERR_VCP_LDDFIND)
590 return ERR_VCP_LDDUNINIT;
592 strcpy(szPath, ldd.pszPath);
593 TRACE("ret '%s' for LDID %d\n", szPath, ldid);
598 /***********************************************************************
599 * CtlSetLddPath (SETUPX.508)
601 * Sets the path of an LDD.
602 * Creates LDD for LDID if not existing yet.
604 RETERR16 WINAPI CtlSetLddPath16(LOGDISKID16 ldid, LPSTR szPath)
607 TRACE("(%d, '%s');\n", ldid, szPath);
609 SetupSetDirectoryIdA( 0, ldid, szPath );
611 ldd.pszPath = szPath;
612 return CtlSetLdd16(&ldd);