setupapi: Add a matching CoUninitialize call.
[wine/multimedia.git] / dlls / setupapi / install.c
blob133fb3373a7a11838651c5b2d835d9a76ffacd5d
1 /*
2 * Setupapi install routines
4 * Copyright 2002 Alexandre Julliard 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
21 #include <stdarg.h>
23 #define COBJMACROS
25 #include "windef.h"
26 #include "winbase.h"
27 #include "winreg.h"
28 #include "winternl.h"
29 #include "winerror.h"
30 #include "wingdi.h"
31 #include "winuser.h"
32 #include "winnls.h"
33 #include "winsvc.h"
34 #include "shlobj.h"
35 #include "objidl.h"
36 #include "objbase.h"
37 #include "setupapi.h"
38 #include "setupapi_private.h"
39 #include "wine/unicode.h"
40 #include "wine/debug.h"
42 WINE_DEFAULT_DEBUG_CHANNEL(setupapi);
44 /* info passed to callback functions dealing with files */
45 struct files_callback_info
47 HSPFILEQ queue;
48 PCWSTR src_root;
49 UINT copy_flags;
50 HINF layout;
53 /* info passed to callback functions dealing with the registry */
54 struct registry_callback_info
56 HKEY default_root;
57 BOOL delete;
60 /* info passed to callback functions dealing with registering dlls */
61 struct register_dll_info
63 PSP_FILE_CALLBACK_W callback;
64 PVOID callback_context;
65 BOOL unregister;
68 typedef BOOL (*iterate_fields_func)( HINF hinf, PCWSTR field, void *arg );
70 /* Unicode constants */
71 static const WCHAR CopyFiles[] = {'C','o','p','y','F','i','l','e','s',0};
72 static const WCHAR DelFiles[] = {'D','e','l','F','i','l','e','s',0};
73 static const WCHAR RenFiles[] = {'R','e','n','F','i','l','e','s',0};
74 static const WCHAR Ini2Reg[] = {'I','n','i','2','R','e','g',0};
75 static const WCHAR LogConf[] = {'L','o','g','C','o','n','f',0};
76 static const WCHAR AddReg[] = {'A','d','d','R','e','g',0};
77 static const WCHAR DelReg[] = {'D','e','l','R','e','g',0};
78 static const WCHAR BitReg[] = {'B','i','t','R','e','g',0};
79 static const WCHAR UpdateInis[] = {'U','p','d','a','t','e','I','n','i','s',0};
80 static const WCHAR CopyINF[] = {'C','o','p','y','I','N','F',0};
81 static const WCHAR AddService[] = {'A','d','d','S','e','r','v','i','c','e',0};
82 static const WCHAR DelService[] = {'D','e','l','S','e','r','v','i','c','e',0};
83 static const WCHAR UpdateIniFields[] = {'U','p','d','a','t','e','I','n','i','F','i','e','l','d','s',0};
84 static const WCHAR RegisterDlls[] = {'R','e','g','i','s','t','e','r','D','l','l','s',0};
85 static const WCHAR UnregisterDlls[] = {'U','n','r','e','g','i','s','t','e','r','D','l','l','s',0};
86 static const WCHAR ProfileItems[] = {'P','r','o','f','i','l','e','I','t','e','m','s',0};
87 static const WCHAR Name[] = {'N','a','m','e',0};
88 static const WCHAR CmdLine[] = {'C','m','d','L','i','n','e',0};
89 static const WCHAR SubDir[] = {'S','u','b','D','i','r',0};
90 static const WCHAR WineFakeDlls[] = {'W','i','n','e','F','a','k','e','D','l','l','s',0};
91 static const WCHAR DisplayName[] = {'D','i','s','p','l','a','y','N','a','m','e',0};
92 static const WCHAR Description[] = {'D','e','s','c','r','i','p','t','i','o','n',0};
93 static const WCHAR ServiceBinary[] = {'S','e','r','v','i','c','e','B','i','n','a','r','y',0};
94 static const WCHAR StartName[] = {'S','t','a','r','t','N','a','m','e',0};
95 static const WCHAR LoadOrderGroup[] = {'L','o','a','d','O','r','d','e','r','G','r','o','u','p',0};
96 static const WCHAR ServiceType[] = {'S','e','r','v','i','c','e','T','y','p','e',0};
97 static const WCHAR StartType[] = {'S','t','a','r','t','T','y','p','e',0};
98 static const WCHAR ErrorControl[] = {'E','r','r','o','r','C','o','n','t','r','o','l',0};
100 static const WCHAR ServicesKey[] = {'S','y','s','t','e','m','\\',
101 'C','u','r','r','e','n','t','C','o','n','t','r','o','l','S','e','t','\\',
102 'S','e','r','v','i','c','e','s',0};
104 /***********************************************************************
105 * get_field_string
107 * Retrieve the contents of a field, dynamically growing the buffer if necessary.
109 static WCHAR *get_field_string( INFCONTEXT *context, DWORD index, WCHAR *buffer,
110 WCHAR *static_buffer, DWORD *size )
112 DWORD required;
114 if (SetupGetStringFieldW( context, index, buffer, *size, &required )) return buffer;
115 if (GetLastError() == ERROR_INSUFFICIENT_BUFFER)
117 /* now grow the buffer */
118 if (buffer != static_buffer) HeapFree( GetProcessHeap(), 0, buffer );
119 if (!(buffer = HeapAlloc( GetProcessHeap(), 0, required*sizeof(WCHAR) ))) return NULL;
120 *size = required;
121 if (SetupGetStringFieldW( context, index, buffer, *size, &required )) return buffer;
123 if (buffer != static_buffer) HeapFree( GetProcessHeap(), 0, buffer );
124 return NULL;
128 /***********************************************************************
129 * dup_section_line_field
131 * Retrieve the contents of a field in a newly-allocated buffer.
133 static WCHAR *dup_section_line_field( HINF hinf, const WCHAR *section, const WCHAR *line, DWORD index )
135 INFCONTEXT context;
136 DWORD size;
137 WCHAR *buffer;
139 if (!SetupFindFirstLineW( hinf, section, line, &context )) return NULL;
140 if (!SetupGetStringFieldW( &context, index, NULL, 0, &size )) return NULL;
141 if (!(buffer = HeapAlloc( GetProcessHeap(), 0, size * sizeof(WCHAR) ))) return NULL;
142 if (!SetupGetStringFieldW( &context, index, buffer, size, NULL )) buffer[0] = 0;
143 return buffer;
146 /***********************************************************************
147 * copy_files_callback
149 * Called once for each CopyFiles entry in a given section.
151 static BOOL copy_files_callback( HINF hinf, PCWSTR field, void *arg )
153 struct files_callback_info *info = arg;
155 if (field[0] == '@') /* special case: copy single file */
156 SetupQueueDefaultCopyW( info->queue, info->layout ? info->layout : hinf, info->src_root, NULL, field+1, info->copy_flags );
157 else
158 SetupQueueCopySectionW( info->queue, info->src_root, info->layout ? info->layout : hinf, hinf, field, info->copy_flags );
159 return TRUE;
163 /***********************************************************************
164 * delete_files_callback
166 * Called once for each DelFiles entry in a given section.
168 static BOOL delete_files_callback( HINF hinf, PCWSTR field, void *arg )
170 struct files_callback_info *info = arg;
171 SetupQueueDeleteSectionW( info->queue, hinf, 0, field );
172 return TRUE;
176 /***********************************************************************
177 * rename_files_callback
179 * Called once for each RenFiles entry in a given section.
181 static BOOL rename_files_callback( HINF hinf, PCWSTR field, void *arg )
183 struct files_callback_info *info = arg;
184 SetupQueueRenameSectionW( info->queue, hinf, 0, field );
185 return TRUE;
189 /***********************************************************************
190 * get_root_key
192 * Retrieve the registry root key from its name.
194 static HKEY get_root_key( const WCHAR *name, HKEY def_root )
196 static const WCHAR HKCR[] = {'H','K','C','R',0};
197 static const WCHAR HKCU[] = {'H','K','C','U',0};
198 static const WCHAR HKLM[] = {'H','K','L','M',0};
199 static const WCHAR HKU[] = {'H','K','U',0};
200 static const WCHAR HKR[] = {'H','K','R',0};
202 if (!strcmpiW( name, HKCR )) return HKEY_CLASSES_ROOT;
203 if (!strcmpiW( name, HKCU )) return HKEY_CURRENT_USER;
204 if (!strcmpiW( name, HKLM )) return HKEY_LOCAL_MACHINE;
205 if (!strcmpiW( name, HKU )) return HKEY_USERS;
206 if (!strcmpiW( name, HKR )) return def_root;
207 return 0;
211 /***********************************************************************
212 * append_multi_sz_value
214 * Append a multisz string to a multisz registry value.
216 static void append_multi_sz_value( HKEY hkey, const WCHAR *value, const WCHAR *strings,
217 DWORD str_size )
219 DWORD size, type, total;
220 WCHAR *buffer, *p;
222 if (RegQueryValueExW( hkey, value, NULL, &type, NULL, &size )) return;
223 if (type != REG_MULTI_SZ) return;
225 if (!(buffer = HeapAlloc( GetProcessHeap(), 0, (size + str_size) * sizeof(WCHAR) ))) return;
226 if (RegQueryValueExW( hkey, value, NULL, NULL, (BYTE *)buffer, &size )) goto done;
228 /* compare each string against all the existing ones */
229 total = size;
230 while (*strings)
232 int len = strlenW(strings) + 1;
234 for (p = buffer; *p; p += strlenW(p) + 1)
235 if (!strcmpiW( p, strings )) break;
237 if (!*p) /* not found, need to append it */
239 memcpy( p, strings, len * sizeof(WCHAR) );
240 p[len] = 0;
241 total += len;
243 strings += len;
245 if (total != size)
247 TRACE( "setting value %s to %s\n", debugstr_w(value), debugstr_w(buffer) );
248 RegSetValueExW( hkey, value, 0, REG_MULTI_SZ, (BYTE *)buffer, total );
250 done:
251 HeapFree( GetProcessHeap(), 0, buffer );
255 /***********************************************************************
256 * delete_multi_sz_value
258 * Remove a string from a multisz registry value.
260 static void delete_multi_sz_value( HKEY hkey, const WCHAR *value, const WCHAR *string )
262 DWORD size, type;
263 WCHAR *buffer, *src, *dst;
265 if (RegQueryValueExW( hkey, value, NULL, &type, NULL, &size )) return;
266 if (type != REG_MULTI_SZ) return;
267 /* allocate double the size, one for value before and one for after */
268 if (!(buffer = HeapAlloc( GetProcessHeap(), 0, size * 2 * sizeof(WCHAR) ))) return;
269 if (RegQueryValueExW( hkey, value, NULL, NULL, (BYTE *)buffer, &size )) goto done;
270 src = buffer;
271 dst = buffer + size;
272 while (*src)
274 int len = strlenW(src) + 1;
275 if (strcmpiW( src, string ))
277 memcpy( dst, src, len * sizeof(WCHAR) );
278 dst += len;
280 src += len;
282 *dst++ = 0;
283 if (dst != buffer + 2*size) /* did we remove something? */
285 TRACE( "setting value %s to %s\n", debugstr_w(value), debugstr_w(buffer + size) );
286 RegSetValueExW( hkey, value, 0, REG_MULTI_SZ,
287 (BYTE *)(buffer + size), dst - (buffer + size) );
289 done:
290 HeapFree( GetProcessHeap(), 0, buffer );
294 /***********************************************************************
295 * do_reg_operation
297 * Perform an add/delete registry operation depending on the flags.
299 static BOOL do_reg_operation( HKEY hkey, const WCHAR *value, INFCONTEXT *context, INT flags )
301 DWORD type, size;
303 if (flags & (FLG_ADDREG_DELREG_BIT | FLG_ADDREG_DELVAL)) /* deletion */
305 if (*value && !(flags & FLG_DELREG_KEYONLY_COMMON))
307 if ((flags & FLG_DELREG_MULTI_SZ_DELSTRING) == FLG_DELREG_MULTI_SZ_DELSTRING)
309 WCHAR *str;
311 if (!SetupGetStringFieldW( context, 5, NULL, 0, &size ) || !size) return TRUE;
312 if (!(str = HeapAlloc( GetProcessHeap(), 0, size * sizeof(WCHAR) ))) return FALSE;
313 SetupGetStringFieldW( context, 5, str, size, NULL );
314 delete_multi_sz_value( hkey, value, str );
315 HeapFree( GetProcessHeap(), 0, str );
317 else RegDeleteValueW( hkey, value );
319 else NtDeleteKey( hkey );
320 return TRUE;
323 if (flags & (FLG_ADDREG_KEYONLY|FLG_ADDREG_KEYONLY_COMMON)) return TRUE;
325 if (flags & (FLG_ADDREG_NOCLOBBER|FLG_ADDREG_OVERWRITEONLY))
327 BOOL exists = !RegQueryValueExW( hkey, value, NULL, NULL, NULL, NULL );
328 if (exists && (flags & FLG_ADDREG_NOCLOBBER)) return TRUE;
329 if (!exists && (flags & FLG_ADDREG_OVERWRITEONLY)) return TRUE;
332 switch(flags & FLG_ADDREG_TYPE_MASK)
334 case FLG_ADDREG_TYPE_SZ: type = REG_SZ; break;
335 case FLG_ADDREG_TYPE_MULTI_SZ: type = REG_MULTI_SZ; break;
336 case FLG_ADDREG_TYPE_EXPAND_SZ: type = REG_EXPAND_SZ; break;
337 case FLG_ADDREG_TYPE_BINARY: type = REG_BINARY; break;
338 case FLG_ADDREG_TYPE_DWORD: type = REG_DWORD; break;
339 case FLG_ADDREG_TYPE_NONE: type = REG_NONE; break;
340 default: type = flags >> 16; break;
343 if (!(flags & FLG_ADDREG_BINVALUETYPE) ||
344 (type == REG_DWORD && SetupGetFieldCount(context) == 5))
346 static const WCHAR empty;
347 WCHAR *str = NULL;
349 if (type == REG_MULTI_SZ)
351 if (!SetupGetMultiSzFieldW( context, 5, NULL, 0, &size )) size = 0;
352 if (size)
354 if (!(str = HeapAlloc( GetProcessHeap(), 0, size * sizeof(WCHAR) ))) return FALSE;
355 SetupGetMultiSzFieldW( context, 5, str, size, NULL );
357 if (flags & FLG_ADDREG_APPEND)
359 if (!str) return TRUE;
360 append_multi_sz_value( hkey, value, str, size );
361 HeapFree( GetProcessHeap(), 0, str );
362 return TRUE;
364 /* else fall through to normal string handling */
366 else
368 if (!SetupGetStringFieldW( context, 5, NULL, 0, &size )) size = 0;
369 if (size)
371 if (!(str = HeapAlloc( GetProcessHeap(), 0, size * sizeof(WCHAR) ))) return FALSE;
372 SetupGetStringFieldW( context, 5, str, size, NULL );
376 if (type == REG_DWORD)
378 DWORD dw = str ? strtoulW( str, NULL, 0 ) : 0;
379 TRACE( "setting dword %s to %x\n", debugstr_w(value), dw );
380 RegSetValueExW( hkey, value, 0, type, (BYTE *)&dw, sizeof(dw) );
382 else
384 TRACE( "setting value %s to %s\n", debugstr_w(value), debugstr_w(str) );
385 if (str) RegSetValueExW( hkey, value, 0, type, (BYTE *)str, size * sizeof(WCHAR) );
386 else RegSetValueExW( hkey, value, 0, type, (const BYTE *)&empty, sizeof(WCHAR) );
388 HeapFree( GetProcessHeap(), 0, str );
389 return TRUE;
391 else /* get the binary data */
393 BYTE *data = NULL;
395 if (!SetupGetBinaryField( context, 5, NULL, 0, &size )) size = 0;
396 if (size)
398 if (!(data = HeapAlloc( GetProcessHeap(), 0, size ))) return FALSE;
399 TRACE( "setting binary data %s len %d\n", debugstr_w(value), size );
400 SetupGetBinaryField( context, 5, data, size, NULL );
402 RegSetValueExW( hkey, value, 0, type, data, size );
403 HeapFree( GetProcessHeap(), 0, data );
404 return TRUE;
409 /***********************************************************************
410 * registry_callback
412 * Called once for each AddReg and DelReg entry in a given section.
414 static BOOL registry_callback( HINF hinf, PCWSTR field, void *arg )
416 struct registry_callback_info *info = arg;
417 INFCONTEXT context;
418 HKEY root_key, hkey;
420 BOOL ok = SetupFindFirstLineW( hinf, field, NULL, &context );
422 for (; ok; ok = SetupFindNextLine( &context, &context ))
424 WCHAR buffer[MAX_INF_STRING_LENGTH];
425 INT flags;
427 /* get root */
428 if (!SetupGetStringFieldW( &context, 1, buffer, sizeof(buffer)/sizeof(WCHAR), NULL ))
429 continue;
430 if (!(root_key = get_root_key( buffer, info->default_root )))
431 continue;
433 /* get key */
434 if (!SetupGetStringFieldW( &context, 2, buffer, sizeof(buffer)/sizeof(WCHAR), NULL ))
435 *buffer = 0;
437 /* get flags */
438 if (!SetupGetIntField( &context, 4, &flags )) flags = 0;
440 if (!info->delete)
442 if (flags & FLG_ADDREG_DELREG_BIT) continue; /* ignore this entry */
444 else
446 if (!flags) flags = FLG_ADDREG_DELREG_BIT;
447 else if (!(flags & FLG_ADDREG_DELREG_BIT)) continue; /* ignore this entry */
450 if (info->delete || (flags & FLG_ADDREG_OVERWRITEONLY))
452 if (RegOpenKeyW( root_key, buffer, &hkey )) continue; /* ignore if it doesn't exist */
454 else if (RegCreateKeyW( root_key, buffer, &hkey ))
456 ERR( "could not create key %p %s\n", root_key, debugstr_w(buffer) );
457 continue;
459 TRACE( "key %p %s\n", root_key, debugstr_w(buffer) );
461 /* get value name */
462 if (!SetupGetStringFieldW( &context, 3, buffer, sizeof(buffer)/sizeof(WCHAR), NULL ))
463 *buffer = 0;
465 /* and now do it */
466 if (!do_reg_operation( hkey, buffer, &context, flags ))
468 RegCloseKey( hkey );
469 return FALSE;
471 RegCloseKey( hkey );
473 return TRUE;
477 /***********************************************************************
478 * do_register_dll
480 * Register or unregister a dll.
482 static BOOL do_register_dll( const struct register_dll_info *info, const WCHAR *path,
483 INT flags, INT timeout, const WCHAR *args )
485 HMODULE module;
486 HRESULT res;
487 SP_REGISTER_CONTROL_STATUSW status;
488 IMAGE_NT_HEADERS *nt;
490 status.cbSize = sizeof(status);
491 status.FileName = path;
492 status.FailureCode = SPREG_SUCCESS;
493 status.Win32Error = ERROR_SUCCESS;
495 if (info->callback)
497 switch(info->callback( info->callback_context, SPFILENOTIFY_STARTREGISTRATION,
498 (UINT_PTR)&status, !info->unregister ))
500 case FILEOP_ABORT:
501 SetLastError( ERROR_OPERATION_ABORTED );
502 return FALSE;
503 case FILEOP_SKIP:
504 return TRUE;
505 case FILEOP_DOIT:
506 break;
510 if (!(module = LoadLibraryExW( path, 0, LOAD_WITH_ALTERED_SEARCH_PATH )))
512 WARN( "could not load %s\n", debugstr_w(path) );
513 status.FailureCode = SPREG_LOADLIBRARY;
514 status.Win32Error = GetLastError();
515 goto done;
518 if ((nt = RtlImageNtHeader( module )) && !(nt->FileHeader.Characteristics & IMAGE_FILE_DLL))
520 /* file is an executable, not a dll */
521 STARTUPINFOW startup;
522 PROCESS_INFORMATION info;
523 WCHAR *cmd_line;
524 BOOL res;
525 static const WCHAR format[] = {'"','%','s','"',' ','%','s',0};
526 static const WCHAR default_args[] = {'/','R','e','g','S','e','r','v','e','r',0};
528 FreeLibrary( module );
529 module = NULL;
530 if (!args) args = default_args;
531 cmd_line = HeapAlloc( GetProcessHeap(), 0, (strlenW(path) + strlenW(args) + 4) * sizeof(WCHAR) );
532 sprintfW( cmd_line, format, path, args );
533 memset( &startup, 0, sizeof(startup) );
534 startup.cb = sizeof(startup);
535 TRACE( "executing %s\n", debugstr_w(cmd_line) );
536 res = CreateProcessW( NULL, cmd_line, NULL, NULL, FALSE, 0, NULL, NULL, &startup, &info );
537 HeapFree( GetProcessHeap(), 0, cmd_line );
538 if (!res)
540 status.FailureCode = SPREG_LOADLIBRARY;
541 status.Win32Error = GetLastError();
542 goto done;
544 CloseHandle( info.hThread );
546 if (WaitForSingleObject( info.hProcess, timeout*1000 ) == WAIT_TIMEOUT)
548 /* timed out, kill the process */
549 TerminateProcess( info.hProcess, 1 );
550 status.FailureCode = SPREG_TIMEOUT;
551 status.Win32Error = ERROR_TIMEOUT;
553 CloseHandle( info.hProcess );
554 goto done;
557 if (flags & FLG_REGSVR_DLLREGISTER)
559 const char *entry_point = info->unregister ? "DllUnregisterServer" : "DllRegisterServer";
560 HRESULT (WINAPI *func)(void) = (void *)GetProcAddress( module, entry_point );
562 if (!func)
564 status.FailureCode = SPREG_GETPROCADDR;
565 status.Win32Error = GetLastError();
566 goto done;
569 TRACE( "calling %s in %s\n", entry_point, debugstr_w(path) );
570 res = func();
572 if (FAILED(res))
574 WARN( "calling %s in %s returned error %x\n", entry_point, debugstr_w(path), res );
575 status.FailureCode = SPREG_REGSVR;
576 status.Win32Error = res;
577 goto done;
581 if (flags & FLG_REGSVR_DLLINSTALL)
583 HRESULT (WINAPI *func)(BOOL,LPCWSTR) = (void *)GetProcAddress( module, "DllInstall" );
585 if (!func)
587 status.FailureCode = SPREG_GETPROCADDR;
588 status.Win32Error = GetLastError();
589 goto done;
592 TRACE( "calling DllInstall(%d,%s) in %s\n",
593 !info->unregister, debugstr_w(args), debugstr_w(path) );
594 res = func( !info->unregister, args );
596 if (FAILED(res))
598 WARN( "calling DllInstall in %s returned error %x\n", debugstr_w(path), res );
599 status.FailureCode = SPREG_REGSVR;
600 status.Win32Error = res;
601 goto done;
605 done:
606 if (module) FreeLibrary( module );
607 if (info->callback) info->callback( info->callback_context, SPFILENOTIFY_ENDREGISTRATION,
608 (UINT_PTR)&status, !info->unregister );
609 return TRUE;
613 /***********************************************************************
614 * register_dlls_callback
616 * Called once for each RegisterDlls entry in a given section.
618 static BOOL register_dlls_callback( HINF hinf, PCWSTR field, void *arg )
620 struct register_dll_info *info = arg;
621 INFCONTEXT context;
622 BOOL ret = TRUE;
623 BOOL ok = SetupFindFirstLineW( hinf, field, NULL, &context );
625 for (; ok; ok = SetupFindNextLine( &context, &context ))
627 WCHAR *path, *args, *p;
628 WCHAR buffer[MAX_INF_STRING_LENGTH];
629 INT flags, timeout;
631 /* get directory */
632 if (!(path = PARSER_get_dest_dir( &context ))) continue;
634 /* get dll name */
635 if (!SetupGetStringFieldW( &context, 3, buffer, sizeof(buffer)/sizeof(WCHAR), NULL ))
636 goto done;
637 if (!(p = HeapReAlloc( GetProcessHeap(), 0, path,
638 (strlenW(path) + strlenW(buffer) + 2) * sizeof(WCHAR) ))) goto done;
639 path = p;
640 p += strlenW(p);
641 if (p == path || p[-1] != '\\') *p++ = '\\';
642 strcpyW( p, buffer );
644 /* get flags */
645 if (!SetupGetIntField( &context, 4, &flags )) flags = 0;
647 /* get timeout */
648 if (!SetupGetIntField( &context, 5, &timeout )) timeout = 60;
650 /* get command line */
651 args = NULL;
652 if (SetupGetStringFieldW( &context, 6, buffer, sizeof(buffer)/sizeof(WCHAR), NULL ))
653 args = buffer;
655 ret = do_register_dll( info, path, flags, timeout, args );
657 done:
658 HeapFree( GetProcessHeap(), 0, path );
659 if (!ret) break;
661 return ret;
664 /***********************************************************************
665 * fake_dlls_callback
667 * Called once for each WineFakeDlls entry in a given section.
669 static BOOL fake_dlls_callback( HINF hinf, PCWSTR field, void *arg )
671 INFCONTEXT context;
672 BOOL ret = TRUE;
673 BOOL ok = SetupFindFirstLineW( hinf, field, NULL, &context );
675 for (; ok; ok = SetupFindNextLine( &context, &context ))
677 WCHAR *path, *p;
678 WCHAR buffer[MAX_INF_STRING_LENGTH];
680 /* get directory */
681 if (!(path = PARSER_get_dest_dir( &context ))) continue;
683 /* get dll name */
684 if (!SetupGetStringFieldW( &context, 3, buffer, sizeof(buffer)/sizeof(WCHAR), NULL ))
685 goto done;
686 if (!(p = HeapReAlloc( GetProcessHeap(), 0, path,
687 (strlenW(path) + strlenW(buffer) + 2) * sizeof(WCHAR) ))) goto done;
688 path = p;
689 p += strlenW(p);
690 if (p == path || p[-1] != '\\') *p++ = '\\';
691 strcpyW( p, buffer );
693 /* get source dll */
694 if (SetupGetStringFieldW( &context, 4, buffer, sizeof(buffer)/sizeof(WCHAR), NULL ))
695 p = buffer; /* otherwise use target base name as default source */
697 create_fake_dll( path, p ); /* ignore errors */
699 done:
700 HeapFree( GetProcessHeap(), 0, path );
701 if (!ret) break;
703 return ret;
706 /***********************************************************************
707 * update_ini_callback
709 * Called once for each UpdateInis entry in a given section.
711 static BOOL update_ini_callback( HINF hinf, PCWSTR field, void *arg )
713 INFCONTEXT context;
715 BOOL ok = SetupFindFirstLineW( hinf, field, NULL, &context );
717 for (; ok; ok = SetupFindNextLine( &context, &context ))
719 WCHAR buffer[MAX_INF_STRING_LENGTH];
720 WCHAR filename[MAX_INF_STRING_LENGTH];
721 WCHAR section[MAX_INF_STRING_LENGTH];
722 WCHAR entry[MAX_INF_STRING_LENGTH];
723 WCHAR string[MAX_INF_STRING_LENGTH];
724 LPWSTR divider;
726 if (!SetupGetStringFieldW( &context, 1, filename,
727 sizeof(filename)/sizeof(WCHAR), NULL ))
728 continue;
730 if (!SetupGetStringFieldW( &context, 2, section,
731 sizeof(section)/sizeof(WCHAR), NULL ))
732 continue;
734 if (!SetupGetStringFieldW( &context, 4, buffer,
735 sizeof(buffer)/sizeof(WCHAR), NULL ))
736 continue;
738 divider = strchrW(buffer,'=');
739 if (divider)
741 *divider = 0;
742 strcpyW(entry,buffer);
743 divider++;
744 strcpyW(string,divider);
746 else
748 strcpyW(entry,buffer);
749 string[0]=0;
752 TRACE("Writing %s = %s in %s of file %s\n",debugstr_w(entry),
753 debugstr_w(string),debugstr_w(section),debugstr_w(filename));
754 WritePrivateProfileStringW(section,entry,string,filename);
757 return TRUE;
760 static BOOL update_ini_fields_callback( HINF hinf, PCWSTR field, void *arg )
762 FIXME( "should update ini fields %s\n", debugstr_w(field) );
763 return TRUE;
766 static BOOL ini2reg_callback( HINF hinf, PCWSTR field, void *arg )
768 FIXME( "should do ini2reg %s\n", debugstr_w(field) );
769 return TRUE;
772 static BOOL logconf_callback( HINF hinf, PCWSTR field, void *arg )
774 FIXME( "should do logconf %s\n", debugstr_w(field) );
775 return TRUE;
778 static BOOL bitreg_callback( HINF hinf, PCWSTR field, void *arg )
780 FIXME( "should do bitreg %s\n", debugstr_w(field) );
781 return TRUE;
784 static BOOL profile_items_callback( HINF hinf, PCWSTR field, void *arg )
786 WCHAR lnkpath[MAX_PATH];
787 LPWSTR cmdline=NULL, lnkpath_end;
788 unsigned int name_size;
789 INFCONTEXT name_context, context;
790 IShellLinkW* shelllink=NULL;
791 IPersistFile* persistfile=NULL;
792 HRESULT initresult=E_FAIL;
793 int attrs=0;
795 static const WCHAR dotlnk[] = {'.','l','n','k',0};
797 TRACE( "(%s)\n", debugstr_w(field) );
799 if (SetupFindFirstLineW( hinf, field, Name, &name_context ))
801 SetupGetIntField( &name_context, 2, &attrs );
802 if (attrs) FIXME( "unhandled attributes: %x\n", attrs );
804 else return TRUE;
806 /* calculate filename */
807 SHGetFolderPathW( NULL, CSIDL_COMMON_PROGRAMS, NULL, SHGFP_TYPE_CURRENT, lnkpath );
808 lnkpath_end = lnkpath + strlenW(lnkpath);
809 if (lnkpath_end[-1] != '\\') *lnkpath_end++ = '\\';
811 if (SetupFindFirstLineW( hinf, field, SubDir, &context ))
813 unsigned int subdir_size;
815 if (!SetupGetStringFieldW( &context, 1, lnkpath_end, (lnkpath+MAX_PATH)-lnkpath_end, &subdir_size ))
816 return TRUE;
818 lnkpath_end += subdir_size - 1;
819 if (lnkpath_end[-1] != '\\') *lnkpath_end++ = '\\';
822 if (!SetupGetStringFieldW( &name_context, 1, lnkpath_end, (lnkpath+MAX_PATH)-lnkpath_end, &name_size ))
823 return TRUE;
825 lnkpath_end += name_size - 1;
826 if (lnkpath+MAX_PATH < lnkpath_end + 5) return TRUE;
827 strcpyW( lnkpath_end, dotlnk );
829 TRACE( "link path: %s\n", debugstr_w(lnkpath) );
831 /* calculate command line */
832 if (SetupFindFirstLineW( hinf, field, CmdLine, &context ))
834 unsigned int dir_len=0, subdir_size=0, filename_size=0;
835 int dirid=0;
836 LPCWSTR dir;
837 LPWSTR cmdline_end;
839 SetupGetIntField( &context, 1, &dirid );
840 dir = DIRID_get_string( dirid );
842 if (dir) dir_len = strlenW(dir);
844 SetupGetStringFieldW( &context, 2, NULL, 0, &subdir_size );
845 SetupGetStringFieldW( &context, 3, NULL, 0, &filename_size );
847 if (dir_len && filename_size)
849 cmdline = cmdline_end = HeapAlloc( GetProcessHeap(), 0, sizeof(WCHAR) * (dir_len+subdir_size+filename_size+1) );
851 strcpyW( cmdline_end, dir );
852 cmdline_end += dir_len;
853 if (cmdline_end[-1] != '\\') *cmdline_end++ = '\\';
855 if (subdir_size)
857 SetupGetStringFieldW( &context, 2, cmdline_end, subdir_size, NULL );
858 cmdline_end += subdir_size-1;
859 if (cmdline_end[-1] != '\\') *cmdline_end++ = '\\';
861 SetupGetStringFieldW( &context, 3, cmdline_end, filename_size, NULL );
862 TRACE( "cmdline: %s\n", debugstr_w(cmdline));
866 if (!cmdline) return TRUE;
868 initresult = CoInitialize(NULL);
870 if (!SUCCEEDED(CoCreateInstance( &CLSID_ShellLink, NULL,
871 CLSCTX_INPROC_SERVER, &IID_IShellLinkW, (LPVOID*)&shelllink)))
872 goto done;
874 IShellLinkW_SetPath( shelllink, cmdline );
875 SHPathPrepareForWriteW( NULL, NULL, lnkpath, SHPPFW_DIRCREATE|SHPPFW_IGNOREFILENAME );
876 if (SUCCEEDED(IShellLinkW_QueryInterface( shelllink, &IID_IPersistFile, (LPVOID*)&persistfile)))
878 TRACE( "writing link: %s\n", debugstr_w(lnkpath) );
879 IPersistFile_Save( persistfile, lnkpath, FALSE );
880 IPersistFile_Release( persistfile );
882 IShellLinkW_Release( shelllink );
884 done:
885 if (SUCCEEDED(initresult)) CoUninitialize();
886 HeapFree( GetProcessHeap(), 0, cmdline );
887 return TRUE;
890 static BOOL copy_inf_callback( HINF hinf, PCWSTR field, void *arg )
892 FIXME( "should do copy inf %s\n", debugstr_w(field) );
893 return TRUE;
897 /***********************************************************************
898 * iterate_section_fields
900 * Iterate over all fields of a certain key of a certain section
902 static BOOL iterate_section_fields( HINF hinf, PCWSTR section, PCWSTR key,
903 iterate_fields_func callback, void *arg )
905 WCHAR static_buffer[200];
906 WCHAR *buffer = static_buffer;
907 DWORD size = sizeof(static_buffer)/sizeof(WCHAR);
908 INFCONTEXT context;
909 BOOL ret = FALSE;
911 BOOL ok = SetupFindFirstLineW( hinf, section, key, &context );
912 while (ok)
914 UINT i, count = SetupGetFieldCount( &context );
915 for (i = 1; i <= count; i++)
917 if (!(buffer = get_field_string( &context, i, buffer, static_buffer, &size )))
918 goto done;
919 if (!callback( hinf, buffer, arg ))
921 WARN("callback failed for %s %s err %d\n",
922 debugstr_w(section), debugstr_w(buffer), GetLastError() );
923 goto done;
926 ok = SetupFindNextMatchLineW( &context, key, &context );
928 ret = TRUE;
929 done:
930 if (buffer != static_buffer) HeapFree( GetProcessHeap(), 0, buffer );
931 return ret;
935 /***********************************************************************
936 * SetupInstallFilesFromInfSectionA (SETUPAPI.@)
938 BOOL WINAPI SetupInstallFilesFromInfSectionA( HINF hinf, HINF hlayout, HSPFILEQ queue,
939 PCSTR section, PCSTR src_root, UINT flags )
941 UNICODE_STRING sectionW;
942 BOOL ret = FALSE;
944 if (!RtlCreateUnicodeStringFromAsciiz( &sectionW, section ))
946 SetLastError( ERROR_NOT_ENOUGH_MEMORY );
947 return FALSE;
949 if (!src_root)
950 ret = SetupInstallFilesFromInfSectionW( hinf, hlayout, queue, sectionW.Buffer,
951 NULL, flags );
952 else
954 UNICODE_STRING srcW;
955 if (RtlCreateUnicodeStringFromAsciiz( &srcW, src_root ))
957 ret = SetupInstallFilesFromInfSectionW( hinf, hlayout, queue, sectionW.Buffer,
958 srcW.Buffer, flags );
959 RtlFreeUnicodeString( &srcW );
961 else SetLastError( ERROR_NOT_ENOUGH_MEMORY );
963 RtlFreeUnicodeString( &sectionW );
964 return ret;
968 /***********************************************************************
969 * SetupInstallFilesFromInfSectionW (SETUPAPI.@)
971 BOOL WINAPI SetupInstallFilesFromInfSectionW( HINF hinf, HINF hlayout, HSPFILEQ queue,
972 PCWSTR section, PCWSTR src_root, UINT flags )
974 struct files_callback_info info;
976 info.queue = queue;
977 info.src_root = src_root;
978 info.copy_flags = flags;
979 info.layout = hlayout;
980 return iterate_section_fields( hinf, section, CopyFiles, copy_files_callback, &info );
984 /***********************************************************************
985 * SetupInstallFromInfSectionA (SETUPAPI.@)
987 BOOL WINAPI SetupInstallFromInfSectionA( HWND owner, HINF hinf, PCSTR section, UINT flags,
988 HKEY key_root, PCSTR src_root, UINT copy_flags,
989 PSP_FILE_CALLBACK_A callback, PVOID context,
990 HDEVINFO devinfo, PSP_DEVINFO_DATA devinfo_data )
992 UNICODE_STRING sectionW, src_rootW;
993 struct callback_WtoA_context ctx;
994 BOOL ret = FALSE;
996 src_rootW.Buffer = NULL;
997 if (src_root && !RtlCreateUnicodeStringFromAsciiz( &src_rootW, src_root ))
999 SetLastError( ERROR_NOT_ENOUGH_MEMORY );
1000 return FALSE;
1003 if (RtlCreateUnicodeStringFromAsciiz( &sectionW, section ))
1005 ctx.orig_context = context;
1006 ctx.orig_handler = callback;
1007 ret = SetupInstallFromInfSectionW( owner, hinf, sectionW.Buffer, flags, key_root,
1008 src_rootW.Buffer, copy_flags, QUEUE_callback_WtoA,
1009 &ctx, devinfo, devinfo_data );
1010 RtlFreeUnicodeString( &sectionW );
1012 else SetLastError( ERROR_NOT_ENOUGH_MEMORY );
1014 RtlFreeUnicodeString( &src_rootW );
1015 return ret;
1019 /***********************************************************************
1020 * SetupInstallFromInfSectionW (SETUPAPI.@)
1022 BOOL WINAPI SetupInstallFromInfSectionW( HWND owner, HINF hinf, PCWSTR section, UINT flags,
1023 HKEY key_root, PCWSTR src_root, UINT copy_flags,
1024 PSP_FILE_CALLBACK_W callback, PVOID context,
1025 HDEVINFO devinfo, PSP_DEVINFO_DATA devinfo_data )
1027 if (flags & SPINST_FILES)
1029 struct files_callback_info info;
1030 HSPFILEQ queue;
1031 BOOL ret;
1033 if (!(queue = SetupOpenFileQueue())) return FALSE;
1034 info.queue = queue;
1035 info.src_root = src_root;
1036 info.copy_flags = copy_flags;
1037 info.layout = hinf;
1038 ret = (iterate_section_fields( hinf, section, CopyFiles, copy_files_callback, &info ) &&
1039 iterate_section_fields( hinf, section, DelFiles, delete_files_callback, &info ) &&
1040 iterate_section_fields( hinf, section, RenFiles, rename_files_callback, &info ) &&
1041 SetupCommitFileQueueW( owner, queue, callback, context ));
1042 SetupCloseFileQueue( queue );
1043 if (!ret) return FALSE;
1045 if (flags & SPINST_INIFILES)
1047 if (!iterate_section_fields( hinf, section, UpdateInis, update_ini_callback, NULL ) ||
1048 !iterate_section_fields( hinf, section, UpdateIniFields,
1049 update_ini_fields_callback, NULL ))
1050 return FALSE;
1052 if (flags & SPINST_INI2REG)
1054 if (!iterate_section_fields( hinf, section, Ini2Reg, ini2reg_callback, NULL ))
1055 return FALSE;
1057 if (flags & SPINST_LOGCONFIG)
1059 if (!iterate_section_fields( hinf, section, LogConf, logconf_callback, NULL ))
1060 return FALSE;
1062 if (flags & SPINST_REGSVR)
1064 struct register_dll_info info;
1066 info.unregister = FALSE;
1067 if (flags & SPINST_REGISTERCALLBACKAWARE)
1069 info.callback = callback;
1070 info.callback_context = context;
1072 else info.callback = NULL;
1074 if (!iterate_section_fields( hinf, section, RegisterDlls, register_dlls_callback, &info ))
1075 return FALSE;
1077 if (!iterate_section_fields( hinf, section, WineFakeDlls, fake_dlls_callback, NULL ))
1078 return FALSE;
1080 if (flags & SPINST_UNREGSVR)
1082 struct register_dll_info info;
1084 info.unregister = TRUE;
1085 if (flags & SPINST_REGISTERCALLBACKAWARE)
1087 info.callback = callback;
1088 info.callback_context = context;
1090 else info.callback = NULL;
1092 if (!iterate_section_fields( hinf, section, UnregisterDlls, register_dlls_callback, &info ))
1093 return FALSE;
1095 if (flags & SPINST_REGISTRY)
1097 struct registry_callback_info info;
1099 info.default_root = key_root;
1100 info.delete = TRUE;
1101 if (!iterate_section_fields( hinf, section, DelReg, registry_callback, &info ))
1102 return FALSE;
1103 info.delete = FALSE;
1104 if (!iterate_section_fields( hinf, section, AddReg, registry_callback, &info ))
1105 return FALSE;
1107 if (flags & SPINST_BITREG)
1109 if (!iterate_section_fields( hinf, section, BitReg, bitreg_callback, NULL ))
1110 return FALSE;
1112 if (flags & SPINST_PROFILEITEMS)
1114 if (!iterate_section_fields( hinf, section, ProfileItems, profile_items_callback, NULL ))
1115 return FALSE;
1117 if (flags & SPINST_COPYINF)
1119 if (!iterate_section_fields( hinf, section, CopyINF, copy_inf_callback, NULL ))
1120 return FALSE;
1123 return TRUE;
1127 /***********************************************************************
1128 * InstallHinfSectionW (SETUPAPI.@)
1130 * NOTE: 'cmdline' is <section> <mode> <path> from
1131 * RUNDLL32.EXE SETUPAPI.DLL,InstallHinfSection <section> <mode> <path>
1133 void WINAPI InstallHinfSectionW( HWND hwnd, HINSTANCE handle, LPCWSTR cmdline, INT show )
1135 #ifdef __i386__
1136 static const WCHAR nt_platformW[] = {'.','n','t','x','8','6',0};
1137 #elif defined(__x86_64)
1138 static const WCHAR nt_platformW[] = {'.','n','t','a','m','d','6','4',0};
1139 #else /* FIXME: other platforms */
1140 static const WCHAR nt_platformW[] = {'.','n','t',0};
1141 #endif
1142 static const WCHAR nt_genericW[] = {'.','n','t',0};
1143 static const WCHAR servicesW[] = {'.','S','e','r','v','i','c','e','s',0};
1145 WCHAR *s, *path, section[MAX_PATH + (sizeof(nt_platformW) + sizeof(servicesW)) / sizeof(WCHAR)];
1146 void *callback_context;
1147 UINT mode;
1148 HINF hinf;
1150 TRACE("hwnd %p, handle %p, cmdline %s\n", hwnd, handle, debugstr_w(cmdline));
1152 lstrcpynW( section, cmdline, MAX_PATH );
1154 if (!(s = strchrW( section, ' ' ))) return;
1155 *s++ = 0;
1156 while (*s == ' ') s++;
1157 mode = atoiW( s );
1159 /* quoted paths are not allowed on native, the rest of the command line is taken as the path */
1160 if (!(s = strchrW( s, ' ' ))) return;
1161 while (*s == ' ') s++;
1162 path = s;
1164 hinf = SetupOpenInfFileW( path, NULL, INF_STYLE_WIN4, NULL );
1165 if (hinf == INVALID_HANDLE_VALUE) return;
1167 if (!(GetVersion() & 0x80000000))
1169 INFCONTEXT context;
1171 /* check for <section>.ntx86 (or corresponding name for the current platform)
1172 * and then <section>.nt */
1173 s = section + strlenW(section);
1174 memcpy( s, nt_platformW, sizeof(nt_platformW) );
1175 if (!(SetupFindFirstLineW( hinf, section, NULL, &context )))
1177 memcpy( s, nt_genericW, sizeof(nt_genericW) );
1178 if (!(SetupFindFirstLineW( hinf, section, NULL, &context ))) *s = 0;
1180 if (*s) TRACE( "using section %s instead\n", debugstr_w(section) );
1183 callback_context = SetupInitDefaultQueueCallback( hwnd );
1184 SetupInstallFromInfSectionW( hwnd, hinf, section, SPINST_ALL, NULL, NULL, SP_COPY_NEWER,
1185 SetupDefaultQueueCallbackW, callback_context,
1186 NULL, NULL );
1187 SetupTermDefaultQueueCallback( callback_context );
1188 strcatW( section, servicesW );
1189 SetupInstallServicesFromInfSectionW( hinf, section, 0 );
1190 SetupCloseInfFile( hinf );
1192 /* FIXME: should check the mode and maybe reboot */
1193 /* there isn't much point in doing that since we */
1194 /* don't yet handle deferred file copies anyway. */
1198 /***********************************************************************
1199 * InstallHinfSectionA (SETUPAPI.@)
1201 void WINAPI InstallHinfSectionA( HWND hwnd, HINSTANCE handle, LPCSTR cmdline, INT show )
1203 UNICODE_STRING cmdlineW;
1205 if (RtlCreateUnicodeStringFromAsciiz( &cmdlineW, cmdline ))
1207 InstallHinfSectionW( hwnd, handle, cmdlineW.Buffer, show );
1208 RtlFreeUnicodeString( &cmdlineW );
1213 /***********************************************************************
1214 * add_service
1216 * Create a new service. Helper for SetupInstallServicesFromInfSectionW.
1218 static BOOL add_service( SC_HANDLE scm, HINF hinf, const WCHAR *name, const WCHAR *section, DWORD flags )
1220 struct registry_callback_info info;
1221 SC_HANDLE service;
1222 INFCONTEXT context;
1223 SERVICE_DESCRIPTIONW descr;
1224 WCHAR *display_name, *start_name, *load_order, *binary_path;
1225 INT service_type = 0, start_type = 0, error_control = 0;
1226 DWORD size;
1227 HKEY hkey;
1229 /* first the mandatory fields */
1231 if (!SetupFindFirstLineW( hinf, section, ServiceType, &context ) ||
1232 !SetupGetIntField( &context, 1, &service_type ))
1234 SetLastError( ERROR_BAD_SERVICE_INSTALLSECT );
1235 return FALSE;
1237 if (!SetupFindFirstLineW( hinf, section, StartType, &context ) ||
1238 !SetupGetIntField( &context, 1, &start_type ))
1240 SetLastError( ERROR_BAD_SERVICE_INSTALLSECT );
1241 return FALSE;
1243 if (!SetupFindFirstLineW( hinf, section, ErrorControl, &context ) ||
1244 !SetupGetIntField( &context, 1, &error_control ))
1246 SetLastError( ERROR_BAD_SERVICE_INSTALLSECT );
1247 return FALSE;
1249 if (!(binary_path = dup_section_line_field( hinf, section, ServiceBinary, 1 )))
1251 SetLastError( ERROR_BAD_SERVICE_INSTALLSECT );
1252 return FALSE;
1255 /* now the optional fields */
1257 display_name = dup_section_line_field( hinf, section, DisplayName, 1 );
1258 start_name = dup_section_line_field( hinf, section, StartName, 1 );
1259 load_order = dup_section_line_field( hinf, section, LoadOrderGroup, 1 );
1260 descr.lpDescription = dup_section_line_field( hinf, section, Description, 1 );
1262 /* FIXME: Dependencies field */
1263 /* FIXME: Security field */
1265 TRACE( "service %s display %s type %x start %x error %x binary %s order %s startname %s flags %x\n",
1266 debugstr_w(name), debugstr_w(display_name), service_type, start_type, error_control,
1267 debugstr_w(binary_path), debugstr_w(load_order), debugstr_w(start_name), flags );
1269 service = CreateServiceW( scm, name, display_name, SERVICE_ALL_ACCESS,
1270 service_type, start_type, error_control, binary_path,
1271 load_order, NULL, NULL, start_name, NULL );
1272 if (service)
1274 if (descr.lpDescription) ChangeServiceConfig2W( service, SERVICE_CONFIG_DESCRIPTION, &descr );
1276 else
1278 if (GetLastError() != ERROR_SERVICE_EXISTS) goto done;
1279 service = OpenServiceW( scm, name, SERVICE_QUERY_CONFIG|SERVICE_CHANGE_CONFIG|SERVICE_START );
1280 if (!service) goto done;
1282 if (flags & (SPSVCINST_NOCLOBBER_DISPLAYNAME | SPSVCINST_NOCLOBBER_STARTTYPE |
1283 SPSVCINST_NOCLOBBER_ERRORCONTROL | SPSVCINST_NOCLOBBER_LOADORDERGROUP))
1285 QUERY_SERVICE_CONFIGW *config = NULL;
1287 if (!QueryServiceConfigW( service, NULL, 0, &size ) &&
1288 GetLastError() == ERROR_INSUFFICIENT_BUFFER)
1289 config = HeapAlloc( GetProcessHeap(), 0, size );
1290 if (config && QueryServiceConfigW( service, config, size, &size ))
1292 if (flags & SPSVCINST_NOCLOBBER_STARTTYPE) start_type = config->dwStartType;
1293 if (flags & SPSVCINST_NOCLOBBER_ERRORCONTROL) error_control = config->dwErrorControl;
1294 if (flags & SPSVCINST_NOCLOBBER_DISPLAYNAME)
1296 HeapFree( GetProcessHeap(), 0, display_name );
1297 display_name = strdupW( config->lpDisplayName );
1299 if (flags & SPSVCINST_NOCLOBBER_LOADORDERGROUP)
1301 HeapFree( GetProcessHeap(), 0, load_order );
1302 load_order = strdupW( config->lpLoadOrderGroup );
1305 HeapFree( GetProcessHeap(), 0, config );
1307 TRACE( "changing %s display %s type %x start %x error %x binary %s loadorder %s startname %s\n",
1308 debugstr_w(name), debugstr_w(display_name), service_type, start_type, error_control,
1309 debugstr_w(binary_path), debugstr_w(load_order), debugstr_w(start_name) );
1311 ChangeServiceConfigW( service, service_type, start_type, error_control, binary_path,
1312 load_order, NULL, NULL, start_name, NULL, display_name );
1314 if (!(flags & SPSVCINST_NOCLOBBER_DESCRIPTION))
1315 ChangeServiceConfig2W( service, SERVICE_CONFIG_DESCRIPTION, &descr );
1318 /* execute the AddReg, DelReg and BitReg entries */
1320 info.default_root = 0;
1321 if (!RegOpenKeyW( HKEY_LOCAL_MACHINE, ServicesKey, &hkey ))
1323 RegOpenKeyW( hkey, name, &info.default_root );
1324 RegCloseKey( hkey );
1326 if (info.default_root)
1328 info.delete = TRUE;
1329 iterate_section_fields( hinf, section, DelReg, registry_callback, &info );
1330 info.delete = FALSE;
1331 iterate_section_fields( hinf, section, AddReg, registry_callback, &info );
1332 RegCloseKey( info.default_root );
1334 iterate_section_fields( hinf, section, BitReg, bitreg_callback, NULL );
1336 if (flags & SPSVCINST_STARTSERVICE) StartServiceW( service, 0, NULL );
1337 CloseServiceHandle( service );
1339 done:
1340 if (!service) WARN( "failed err %u\n", GetLastError() );
1341 HeapFree( GetProcessHeap(), 0, binary_path );
1342 HeapFree( GetProcessHeap(), 0, display_name );
1343 HeapFree( GetProcessHeap(), 0, start_name );
1344 HeapFree( GetProcessHeap(), 0, load_order );
1345 HeapFree( GetProcessHeap(), 0, descr.lpDescription );
1346 return service != 0;
1350 /***********************************************************************
1351 * del_service
1353 * Delete service. Helper for SetupInstallServicesFromInfSectionW.
1355 static BOOL del_service( SC_HANDLE scm, HINF hinf, const WCHAR *name, DWORD flags )
1357 BOOL ret;
1358 SC_HANDLE service;
1359 SERVICE_STATUS status;
1361 if (!(service = OpenServiceW( scm, name, SERVICE_STOP | DELETE )))
1363 if (GetLastError() == ERROR_SERVICE_DOES_NOT_EXIST) return TRUE;
1364 WARN( "cannot open %s err %u\n", debugstr_w(name), GetLastError() );
1365 return FALSE;
1367 if (flags & SPSVCINST_STOPSERVICE) ControlService( service, SERVICE_CONTROL_STOP, &status );
1368 TRACE( "deleting %s\n", debugstr_w(name) );
1369 ret = DeleteService( service );
1370 CloseServiceHandle( service );
1371 return ret;
1375 /***********************************************************************
1376 * SetupInstallServicesFromInfSectionW (SETUPAPI.@)
1378 BOOL WINAPI SetupInstallServicesFromInfSectionW( HINF hinf, PCWSTR section, DWORD flags )
1380 WCHAR service_name[MAX_INF_STRING_LENGTH];
1381 WCHAR service_section[MAX_INF_STRING_LENGTH];
1382 SC_HANDLE scm;
1383 INFCONTEXT context;
1384 INT section_flags;
1385 BOOL ok, ret = FALSE;
1387 if (!(scm = OpenSCManagerW( NULL, NULL, SC_MANAGER_ALL_ACCESS ))) return FALSE;
1389 if (!(ok = SetupFindFirstLineW( hinf, section, AddService, &context )))
1390 SetLastError( ERROR_SECTION_NOT_FOUND );
1391 while (ok)
1393 if (!SetupGetStringFieldW( &context, 1, service_name, MAX_INF_STRING_LENGTH, NULL ))
1394 continue;
1395 if (!SetupGetIntField( &context, 2, &section_flags )) section_flags = 0;
1396 if (!SetupGetStringFieldW( &context, 3, service_section, MAX_INF_STRING_LENGTH, NULL ))
1397 continue;
1398 if (!(ret = add_service( scm, hinf, service_name, service_section, section_flags | flags )))
1399 goto done;
1400 ok = SetupFindNextMatchLineW( &context, AddService, &context );
1403 if (!(ok = SetupFindFirstLineW( hinf, section, DelService, &context )))
1404 SetLastError( ERROR_SECTION_NOT_FOUND );
1405 while (ok)
1407 if (!SetupGetStringFieldW( &context, 1, service_name, MAX_INF_STRING_LENGTH, NULL ))
1408 continue;
1409 if (!SetupGetIntField( &context, 2, &section_flags )) section_flags = 0;
1410 if (!(ret = del_service( scm, hinf, service_name, section_flags | flags ))) goto done;
1411 ok = SetupFindNextMatchLineW( &context, AddService, &context );
1413 if (ret) SetLastError( ERROR_SUCCESS );
1414 done:
1415 CloseServiceHandle( scm );
1416 return ret;
1420 /***********************************************************************
1421 * SetupInstallServicesFromInfSectionA (SETUPAPI.@)
1423 BOOL WINAPI SetupInstallServicesFromInfSectionA( HINF Inf, PCSTR SectionName, DWORD Flags)
1425 UNICODE_STRING SectionNameW;
1426 BOOL ret = FALSE;
1428 if (RtlCreateUnicodeStringFromAsciiz( &SectionNameW, SectionName ))
1430 ret = SetupInstallServicesFromInfSectionW( Inf, SectionNameW.Buffer, Flags );
1431 RtlFreeUnicodeString( &SectionNameW );
1433 else
1434 SetLastError( ERROR_NOT_ENOUGH_MEMORY );
1436 return ret;