setupapi: Implement ProfileItems directive.
[wine/multimedia.git] / dlls / setupapi / install.c
blob0a4db4fe77d1d06f411013b334c9fca82801dc32
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 int attrs=0;
794 static const WCHAR dotlnk[] = {'.','l','n','k',0};
796 TRACE( "(%s)\n", debugstr_w(field) );
798 if (SetupFindFirstLineW( hinf, field, Name, &name_context ))
800 SetupGetIntField( &name_context, 2, &attrs );
801 if (attrs) FIXME( "unhandled attributes: %x\n", attrs );
803 else return TRUE;
805 /* calculate filename */
806 SHGetFolderPathW( NULL, CSIDL_COMMON_PROGRAMS, NULL, SHGFP_TYPE_CURRENT, lnkpath );
807 lnkpath_end = lnkpath + strlenW(lnkpath);
808 if (lnkpath_end[-1] != '\\') *lnkpath_end++ = '\\';
810 if (SetupFindFirstLineW( hinf, field, SubDir, &context ))
812 unsigned int subdir_size;
814 if (!SetupGetStringFieldW( &context, 1, lnkpath_end, (lnkpath+MAX_PATH)-lnkpath_end, &subdir_size ))
815 return TRUE;
817 lnkpath_end += subdir_size - 1;
818 if (lnkpath_end[-1] != '\\') *lnkpath_end++ = '\\';
821 if (!SetupGetStringFieldW( &name_context, 1, lnkpath_end, (lnkpath+MAX_PATH)-lnkpath_end, &name_size ))
822 return TRUE;
824 lnkpath_end += name_size - 1;
825 if (lnkpath+MAX_PATH < lnkpath_end + 5) return TRUE;
826 strcpyW( lnkpath_end, dotlnk );
828 TRACE( "link path: %s\n", debugstr_w(lnkpath) );
830 /* calculate command line */
831 if (SetupFindFirstLineW( hinf, field, CmdLine, &context ))
833 unsigned int dir_len=0, subdir_size=0, filename_size=0;
834 int dirid=0;
835 LPCWSTR dir;
836 LPWSTR cmdline_end;
838 SetupGetIntField( &context, 1, &dirid );
839 dir = DIRID_get_string( dirid );
841 if (dir) dir_len = strlenW(dir);
843 SetupGetStringFieldW( &context, 2, NULL, 0, &subdir_size );
844 SetupGetStringFieldW( &context, 3, NULL, 0, &filename_size );
846 if (dir_len && filename_size)
848 cmdline = cmdline_end = HeapAlloc( GetProcessHeap(), 0, sizeof(WCHAR) * (dir_len+subdir_size+filename_size+1) );
850 strcpyW( cmdline_end, dir );
851 cmdline_end += dir_len;
852 if (cmdline_end[-1] != '\\') *cmdline_end++ = '\\';
854 if (subdir_size)
856 SetupGetStringFieldW( &context, 2, cmdline_end, subdir_size, NULL );
857 cmdline_end += subdir_size-1;
858 if (cmdline_end[-1] != '\\') *cmdline_end++ = '\\';
860 SetupGetStringFieldW( &context, 3, cmdline_end, filename_size, NULL );
861 TRACE( "cmdline: %s\n", debugstr_w(cmdline));
865 if (!cmdline) return TRUE;
867 CoInitialize(NULL);
869 if (!SUCCEEDED(CoCreateInstance( &CLSID_ShellLink, NULL,
870 CLSCTX_INPROC_SERVER, &IID_IShellLinkW, (LPVOID*)&shelllink)))
871 goto done;
873 IShellLinkW_SetPath( shelllink, cmdline );
874 SHPathPrepareForWriteW( NULL, NULL, lnkpath, SHPPFW_DIRCREATE|SHPPFW_IGNOREFILENAME );
875 if (SUCCEEDED(IShellLinkW_QueryInterface( shelllink, &IID_IPersistFile, (LPVOID*)&persistfile)))
877 TRACE( "writing link: %s\n", debugstr_w(lnkpath) );
878 IPersistFile_Save( persistfile, lnkpath, FALSE );
879 IPersistFile_Release( persistfile );
881 IShellLinkW_Release( shelllink );
883 done:
884 HeapFree( GetProcessHeap(), 0, cmdline );
885 return TRUE;
888 static BOOL copy_inf_callback( HINF hinf, PCWSTR field, void *arg )
890 FIXME( "should do copy inf %s\n", debugstr_w(field) );
891 return TRUE;
895 /***********************************************************************
896 * iterate_section_fields
898 * Iterate over all fields of a certain key of a certain section
900 static BOOL iterate_section_fields( HINF hinf, PCWSTR section, PCWSTR key,
901 iterate_fields_func callback, void *arg )
903 WCHAR static_buffer[200];
904 WCHAR *buffer = static_buffer;
905 DWORD size = sizeof(static_buffer)/sizeof(WCHAR);
906 INFCONTEXT context;
907 BOOL ret = FALSE;
909 BOOL ok = SetupFindFirstLineW( hinf, section, key, &context );
910 while (ok)
912 UINT i, count = SetupGetFieldCount( &context );
913 for (i = 1; i <= count; i++)
915 if (!(buffer = get_field_string( &context, i, buffer, static_buffer, &size )))
916 goto done;
917 if (!callback( hinf, buffer, arg ))
919 WARN("callback failed for %s %s err %d\n",
920 debugstr_w(section), debugstr_w(buffer), GetLastError() );
921 goto done;
924 ok = SetupFindNextMatchLineW( &context, key, &context );
926 ret = TRUE;
927 done:
928 if (buffer != static_buffer) HeapFree( GetProcessHeap(), 0, buffer );
929 return ret;
933 /***********************************************************************
934 * SetupInstallFilesFromInfSectionA (SETUPAPI.@)
936 BOOL WINAPI SetupInstallFilesFromInfSectionA( HINF hinf, HINF hlayout, HSPFILEQ queue,
937 PCSTR section, PCSTR src_root, UINT flags )
939 UNICODE_STRING sectionW;
940 BOOL ret = FALSE;
942 if (!RtlCreateUnicodeStringFromAsciiz( &sectionW, section ))
944 SetLastError( ERROR_NOT_ENOUGH_MEMORY );
945 return FALSE;
947 if (!src_root)
948 ret = SetupInstallFilesFromInfSectionW( hinf, hlayout, queue, sectionW.Buffer,
949 NULL, flags );
950 else
952 UNICODE_STRING srcW;
953 if (RtlCreateUnicodeStringFromAsciiz( &srcW, src_root ))
955 ret = SetupInstallFilesFromInfSectionW( hinf, hlayout, queue, sectionW.Buffer,
956 srcW.Buffer, flags );
957 RtlFreeUnicodeString( &srcW );
959 else SetLastError( ERROR_NOT_ENOUGH_MEMORY );
961 RtlFreeUnicodeString( &sectionW );
962 return ret;
966 /***********************************************************************
967 * SetupInstallFilesFromInfSectionW (SETUPAPI.@)
969 BOOL WINAPI SetupInstallFilesFromInfSectionW( HINF hinf, HINF hlayout, HSPFILEQ queue,
970 PCWSTR section, PCWSTR src_root, UINT flags )
972 struct files_callback_info info;
974 info.queue = queue;
975 info.src_root = src_root;
976 info.copy_flags = flags;
977 info.layout = hlayout;
978 return iterate_section_fields( hinf, section, CopyFiles, copy_files_callback, &info );
982 /***********************************************************************
983 * SetupInstallFromInfSectionA (SETUPAPI.@)
985 BOOL WINAPI SetupInstallFromInfSectionA( HWND owner, HINF hinf, PCSTR section, UINT flags,
986 HKEY key_root, PCSTR src_root, UINT copy_flags,
987 PSP_FILE_CALLBACK_A callback, PVOID context,
988 HDEVINFO devinfo, PSP_DEVINFO_DATA devinfo_data )
990 UNICODE_STRING sectionW, src_rootW;
991 struct callback_WtoA_context ctx;
992 BOOL ret = FALSE;
994 src_rootW.Buffer = NULL;
995 if (src_root && !RtlCreateUnicodeStringFromAsciiz( &src_rootW, src_root ))
997 SetLastError( ERROR_NOT_ENOUGH_MEMORY );
998 return FALSE;
1001 if (RtlCreateUnicodeStringFromAsciiz( &sectionW, section ))
1003 ctx.orig_context = context;
1004 ctx.orig_handler = callback;
1005 ret = SetupInstallFromInfSectionW( owner, hinf, sectionW.Buffer, flags, key_root,
1006 src_rootW.Buffer, copy_flags, QUEUE_callback_WtoA,
1007 &ctx, devinfo, devinfo_data );
1008 RtlFreeUnicodeString( &sectionW );
1010 else SetLastError( ERROR_NOT_ENOUGH_MEMORY );
1012 RtlFreeUnicodeString( &src_rootW );
1013 return ret;
1017 /***********************************************************************
1018 * SetupInstallFromInfSectionW (SETUPAPI.@)
1020 BOOL WINAPI SetupInstallFromInfSectionW( HWND owner, HINF hinf, PCWSTR section, UINT flags,
1021 HKEY key_root, PCWSTR src_root, UINT copy_flags,
1022 PSP_FILE_CALLBACK_W callback, PVOID context,
1023 HDEVINFO devinfo, PSP_DEVINFO_DATA devinfo_data )
1025 if (flags & SPINST_FILES)
1027 struct files_callback_info info;
1028 HSPFILEQ queue;
1029 BOOL ret;
1031 if (!(queue = SetupOpenFileQueue())) return FALSE;
1032 info.queue = queue;
1033 info.src_root = src_root;
1034 info.copy_flags = copy_flags;
1035 info.layout = hinf;
1036 ret = (iterate_section_fields( hinf, section, CopyFiles, copy_files_callback, &info ) &&
1037 iterate_section_fields( hinf, section, DelFiles, delete_files_callback, &info ) &&
1038 iterate_section_fields( hinf, section, RenFiles, rename_files_callback, &info ) &&
1039 SetupCommitFileQueueW( owner, queue, callback, context ));
1040 SetupCloseFileQueue( queue );
1041 if (!ret) return FALSE;
1043 if (flags & SPINST_INIFILES)
1045 if (!iterate_section_fields( hinf, section, UpdateInis, update_ini_callback, NULL ) ||
1046 !iterate_section_fields( hinf, section, UpdateIniFields,
1047 update_ini_fields_callback, NULL ))
1048 return FALSE;
1050 if (flags & SPINST_INI2REG)
1052 if (!iterate_section_fields( hinf, section, Ini2Reg, ini2reg_callback, NULL ))
1053 return FALSE;
1055 if (flags & SPINST_LOGCONFIG)
1057 if (!iterate_section_fields( hinf, section, LogConf, logconf_callback, NULL ))
1058 return FALSE;
1060 if (flags & SPINST_REGSVR)
1062 struct register_dll_info info;
1064 info.unregister = FALSE;
1065 if (flags & SPINST_REGISTERCALLBACKAWARE)
1067 info.callback = callback;
1068 info.callback_context = context;
1070 else info.callback = NULL;
1072 if (!iterate_section_fields( hinf, section, RegisterDlls, register_dlls_callback, &info ))
1073 return FALSE;
1075 if (!iterate_section_fields( hinf, section, WineFakeDlls, fake_dlls_callback, NULL ))
1076 return FALSE;
1078 if (flags & SPINST_UNREGSVR)
1080 struct register_dll_info info;
1082 info.unregister = TRUE;
1083 if (flags & SPINST_REGISTERCALLBACKAWARE)
1085 info.callback = callback;
1086 info.callback_context = context;
1088 else info.callback = NULL;
1090 if (!iterate_section_fields( hinf, section, UnregisterDlls, register_dlls_callback, &info ))
1091 return FALSE;
1093 if (flags & SPINST_REGISTRY)
1095 struct registry_callback_info info;
1097 info.default_root = key_root;
1098 info.delete = TRUE;
1099 if (!iterate_section_fields( hinf, section, DelReg, registry_callback, &info ))
1100 return FALSE;
1101 info.delete = FALSE;
1102 if (!iterate_section_fields( hinf, section, AddReg, registry_callback, &info ))
1103 return FALSE;
1105 if (flags & SPINST_BITREG)
1107 if (!iterate_section_fields( hinf, section, BitReg, bitreg_callback, NULL ))
1108 return FALSE;
1110 if (flags & SPINST_PROFILEITEMS)
1112 if (!iterate_section_fields( hinf, section, ProfileItems, profile_items_callback, NULL ))
1113 return FALSE;
1115 if (flags & SPINST_COPYINF)
1117 if (!iterate_section_fields( hinf, section, CopyINF, copy_inf_callback, NULL ))
1118 return FALSE;
1121 return TRUE;
1125 /***********************************************************************
1126 * InstallHinfSectionW (SETUPAPI.@)
1128 * NOTE: 'cmdline' is <section> <mode> <path> from
1129 * RUNDLL32.EXE SETUPAPI.DLL,InstallHinfSection <section> <mode> <path>
1131 void WINAPI InstallHinfSectionW( HWND hwnd, HINSTANCE handle, LPCWSTR cmdline, INT show )
1133 #ifdef __i386__
1134 static const WCHAR nt_platformW[] = {'.','n','t','x','8','6',0};
1135 #elif defined(__x86_64)
1136 static const WCHAR nt_platformW[] = {'.','n','t','a','m','d','6','4',0};
1137 #else /* FIXME: other platforms */
1138 static const WCHAR nt_platformW[] = {'.','n','t',0};
1139 #endif
1140 static const WCHAR nt_genericW[] = {'.','n','t',0};
1141 static const WCHAR servicesW[] = {'.','S','e','r','v','i','c','e','s',0};
1143 WCHAR *s, *path, section[MAX_PATH + (sizeof(nt_platformW) + sizeof(servicesW)) / sizeof(WCHAR)];
1144 void *callback_context;
1145 UINT mode;
1146 HINF hinf;
1148 TRACE("hwnd %p, handle %p, cmdline %s\n", hwnd, handle, debugstr_w(cmdline));
1150 lstrcpynW( section, cmdline, MAX_PATH );
1152 if (!(s = strchrW( section, ' ' ))) return;
1153 *s++ = 0;
1154 while (*s == ' ') s++;
1155 mode = atoiW( s );
1157 /* quoted paths are not allowed on native, the rest of the command line is taken as the path */
1158 if (!(s = strchrW( s, ' ' ))) return;
1159 while (*s == ' ') s++;
1160 path = s;
1162 hinf = SetupOpenInfFileW( path, NULL, INF_STYLE_WIN4, NULL );
1163 if (hinf == INVALID_HANDLE_VALUE) return;
1165 if (!(GetVersion() & 0x80000000))
1167 INFCONTEXT context;
1169 /* check for <section>.ntx86 (or corresponding name for the current platform)
1170 * and then <section>.nt */
1171 s = section + strlenW(section);
1172 memcpy( s, nt_platformW, sizeof(nt_platformW) );
1173 if (!(SetupFindFirstLineW( hinf, section, NULL, &context )))
1175 memcpy( s, nt_genericW, sizeof(nt_genericW) );
1176 if (!(SetupFindFirstLineW( hinf, section, NULL, &context ))) *s = 0;
1178 if (*s) TRACE( "using section %s instead\n", debugstr_w(section) );
1181 callback_context = SetupInitDefaultQueueCallback( hwnd );
1182 SetupInstallFromInfSectionW( hwnd, hinf, section, SPINST_ALL, NULL, NULL, SP_COPY_NEWER,
1183 SetupDefaultQueueCallbackW, callback_context,
1184 NULL, NULL );
1185 SetupTermDefaultQueueCallback( callback_context );
1186 strcatW( section, servicesW );
1187 SetupInstallServicesFromInfSectionW( hinf, section, 0 );
1188 SetupCloseInfFile( hinf );
1190 /* FIXME: should check the mode and maybe reboot */
1191 /* there isn't much point in doing that since we */
1192 /* don't yet handle deferred file copies anyway. */
1196 /***********************************************************************
1197 * InstallHinfSectionA (SETUPAPI.@)
1199 void WINAPI InstallHinfSectionA( HWND hwnd, HINSTANCE handle, LPCSTR cmdline, INT show )
1201 UNICODE_STRING cmdlineW;
1203 if (RtlCreateUnicodeStringFromAsciiz( &cmdlineW, cmdline ))
1205 InstallHinfSectionW( hwnd, handle, cmdlineW.Buffer, show );
1206 RtlFreeUnicodeString( &cmdlineW );
1211 /***********************************************************************
1212 * add_service
1214 * Create a new service. Helper for SetupInstallServicesFromInfSectionW.
1216 static BOOL add_service( SC_HANDLE scm, HINF hinf, const WCHAR *name, const WCHAR *section, DWORD flags )
1218 struct registry_callback_info info;
1219 SC_HANDLE service;
1220 INFCONTEXT context;
1221 SERVICE_DESCRIPTIONW descr;
1222 WCHAR *display_name, *start_name, *load_order, *binary_path;
1223 INT service_type = 0, start_type = 0, error_control = 0;
1224 DWORD size;
1225 HKEY hkey;
1227 /* first the mandatory fields */
1229 if (!SetupFindFirstLineW( hinf, section, ServiceType, &context ) ||
1230 !SetupGetIntField( &context, 1, &service_type ))
1232 SetLastError( ERROR_BAD_SERVICE_INSTALLSECT );
1233 return FALSE;
1235 if (!SetupFindFirstLineW( hinf, section, StartType, &context ) ||
1236 !SetupGetIntField( &context, 1, &start_type ))
1238 SetLastError( ERROR_BAD_SERVICE_INSTALLSECT );
1239 return FALSE;
1241 if (!SetupFindFirstLineW( hinf, section, ErrorControl, &context ) ||
1242 !SetupGetIntField( &context, 1, &error_control ))
1244 SetLastError( ERROR_BAD_SERVICE_INSTALLSECT );
1245 return FALSE;
1247 if (!(binary_path = dup_section_line_field( hinf, section, ServiceBinary, 1 )))
1249 SetLastError( ERROR_BAD_SERVICE_INSTALLSECT );
1250 return FALSE;
1253 /* now the optional fields */
1255 display_name = dup_section_line_field( hinf, section, DisplayName, 1 );
1256 start_name = dup_section_line_field( hinf, section, StartName, 1 );
1257 load_order = dup_section_line_field( hinf, section, LoadOrderGroup, 1 );
1258 descr.lpDescription = dup_section_line_field( hinf, section, Description, 1 );
1260 /* FIXME: Dependencies field */
1261 /* FIXME: Security field */
1263 TRACE( "service %s display %s type %x start %x error %x binary %s order %s startname %s flags %x\n",
1264 debugstr_w(name), debugstr_w(display_name), service_type, start_type, error_control,
1265 debugstr_w(binary_path), debugstr_w(load_order), debugstr_w(start_name), flags );
1267 service = CreateServiceW( scm, name, display_name, SERVICE_ALL_ACCESS,
1268 service_type, start_type, error_control, binary_path,
1269 load_order, NULL, NULL, start_name, NULL );
1270 if (service)
1272 if (descr.lpDescription) ChangeServiceConfig2W( service, SERVICE_CONFIG_DESCRIPTION, &descr );
1274 else
1276 if (GetLastError() != ERROR_SERVICE_EXISTS) goto done;
1277 service = OpenServiceW( scm, name, SERVICE_QUERY_CONFIG|SERVICE_CHANGE_CONFIG|SERVICE_START );
1278 if (!service) goto done;
1280 if (flags & (SPSVCINST_NOCLOBBER_DISPLAYNAME | SPSVCINST_NOCLOBBER_STARTTYPE |
1281 SPSVCINST_NOCLOBBER_ERRORCONTROL | SPSVCINST_NOCLOBBER_LOADORDERGROUP))
1283 QUERY_SERVICE_CONFIGW *config = NULL;
1285 if (!QueryServiceConfigW( service, NULL, 0, &size ) &&
1286 GetLastError() == ERROR_INSUFFICIENT_BUFFER)
1287 config = HeapAlloc( GetProcessHeap(), 0, size );
1288 if (config && QueryServiceConfigW( service, config, size, &size ))
1290 if (flags & SPSVCINST_NOCLOBBER_STARTTYPE) start_type = config->dwStartType;
1291 if (flags & SPSVCINST_NOCLOBBER_ERRORCONTROL) error_control = config->dwErrorControl;
1292 if (flags & SPSVCINST_NOCLOBBER_DISPLAYNAME)
1294 HeapFree( GetProcessHeap(), 0, display_name );
1295 display_name = strdupW( config->lpDisplayName );
1297 if (flags & SPSVCINST_NOCLOBBER_LOADORDERGROUP)
1299 HeapFree( GetProcessHeap(), 0, load_order );
1300 load_order = strdupW( config->lpLoadOrderGroup );
1303 HeapFree( GetProcessHeap(), 0, config );
1305 TRACE( "changing %s display %s type %x start %x error %x binary %s loadorder %s startname %s\n",
1306 debugstr_w(name), debugstr_w(display_name), service_type, start_type, error_control,
1307 debugstr_w(binary_path), debugstr_w(load_order), debugstr_w(start_name) );
1309 ChangeServiceConfigW( service, service_type, start_type, error_control, binary_path,
1310 load_order, NULL, NULL, start_name, NULL, display_name );
1312 if (!(flags & SPSVCINST_NOCLOBBER_DESCRIPTION))
1313 ChangeServiceConfig2W( service, SERVICE_CONFIG_DESCRIPTION, &descr );
1316 /* execute the AddReg, DelReg and BitReg entries */
1318 info.default_root = 0;
1319 if (!RegOpenKeyW( HKEY_LOCAL_MACHINE, ServicesKey, &hkey ))
1321 RegOpenKeyW( hkey, name, &info.default_root );
1322 RegCloseKey( hkey );
1324 if (info.default_root)
1326 info.delete = TRUE;
1327 iterate_section_fields( hinf, section, DelReg, registry_callback, &info );
1328 info.delete = FALSE;
1329 iterate_section_fields( hinf, section, AddReg, registry_callback, &info );
1330 RegCloseKey( info.default_root );
1332 iterate_section_fields( hinf, section, BitReg, bitreg_callback, NULL );
1334 if (flags & SPSVCINST_STARTSERVICE) StartServiceW( service, 0, NULL );
1335 CloseServiceHandle( service );
1337 done:
1338 if (!service) WARN( "failed err %u\n", GetLastError() );
1339 HeapFree( GetProcessHeap(), 0, binary_path );
1340 HeapFree( GetProcessHeap(), 0, display_name );
1341 HeapFree( GetProcessHeap(), 0, start_name );
1342 HeapFree( GetProcessHeap(), 0, load_order );
1343 HeapFree( GetProcessHeap(), 0, descr.lpDescription );
1344 return service != 0;
1348 /***********************************************************************
1349 * del_service
1351 * Delete service. Helper for SetupInstallServicesFromInfSectionW.
1353 static BOOL del_service( SC_HANDLE scm, HINF hinf, const WCHAR *name, DWORD flags )
1355 BOOL ret;
1356 SC_HANDLE service;
1357 SERVICE_STATUS status;
1359 if (!(service = OpenServiceW( scm, name, SERVICE_STOP | DELETE )))
1361 if (GetLastError() == ERROR_SERVICE_DOES_NOT_EXIST) return TRUE;
1362 WARN( "cannot open %s err %u\n", debugstr_w(name), GetLastError() );
1363 return FALSE;
1365 if (flags & SPSVCINST_STOPSERVICE) ControlService( service, SERVICE_CONTROL_STOP, &status );
1366 TRACE( "deleting %s\n", debugstr_w(name) );
1367 ret = DeleteService( service );
1368 CloseServiceHandle( service );
1369 return ret;
1373 /***********************************************************************
1374 * SetupInstallServicesFromInfSectionW (SETUPAPI.@)
1376 BOOL WINAPI SetupInstallServicesFromInfSectionW( HINF hinf, PCWSTR section, DWORD flags )
1378 WCHAR service_name[MAX_INF_STRING_LENGTH];
1379 WCHAR service_section[MAX_INF_STRING_LENGTH];
1380 SC_HANDLE scm;
1381 INFCONTEXT context;
1382 INT section_flags;
1383 BOOL ok, ret = FALSE;
1385 if (!(scm = OpenSCManagerW( NULL, NULL, SC_MANAGER_ALL_ACCESS ))) return FALSE;
1387 if (!(ok = SetupFindFirstLineW( hinf, section, AddService, &context )))
1388 SetLastError( ERROR_SECTION_NOT_FOUND );
1389 while (ok)
1391 if (!SetupGetStringFieldW( &context, 1, service_name, MAX_INF_STRING_LENGTH, NULL ))
1392 continue;
1393 if (!SetupGetIntField( &context, 2, &section_flags )) section_flags = 0;
1394 if (!SetupGetStringFieldW( &context, 3, service_section, MAX_INF_STRING_LENGTH, NULL ))
1395 continue;
1396 if (!(ret = add_service( scm, hinf, service_name, service_section, section_flags | flags )))
1397 goto done;
1398 ok = SetupFindNextMatchLineW( &context, AddService, &context );
1401 if (!(ok = SetupFindFirstLineW( hinf, section, DelService, &context )))
1402 SetLastError( ERROR_SECTION_NOT_FOUND );
1403 while (ok)
1405 if (!SetupGetStringFieldW( &context, 1, service_name, MAX_INF_STRING_LENGTH, NULL ))
1406 continue;
1407 if (!SetupGetIntField( &context, 2, &section_flags )) section_flags = 0;
1408 if (!(ret = del_service( scm, hinf, service_name, section_flags | flags ))) goto done;
1409 ok = SetupFindNextMatchLineW( &context, AddService, &context );
1411 if (ret) SetLastError( ERROR_SUCCESS );
1412 done:
1413 CloseServiceHandle( scm );
1414 return ret;
1418 /***********************************************************************
1419 * SetupInstallServicesFromInfSectionA (SETUPAPI.@)
1421 BOOL WINAPI SetupInstallServicesFromInfSectionA( HINF Inf, PCSTR SectionName, DWORD Flags)
1423 UNICODE_STRING SectionNameW;
1424 BOOL ret = FALSE;
1426 if (RtlCreateUnicodeStringFromAsciiz( &SectionNameW, SectionName ))
1428 ret = SetupInstallServicesFromInfSectionW( Inf, SectionNameW.Buffer, Flags );
1429 RtlFreeUnicodeString( &SectionNameW );
1431 else
1432 SetLastError( ERROR_NOT_ENOUGH_MEMORY );
1434 return ret;