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
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
53 /* info passed to callback functions dealing with the registry */
54 struct registry_callback_info
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
;
71 typedef BOOL (*iterate_fields_func
)( HINF hinf
, PCWSTR field
, void *arg
);
73 /* Unicode constants */
74 static const WCHAR CopyFiles
[] = {'C','o','p','y','F','i','l','e','s',0};
75 static const WCHAR DelFiles
[] = {'D','e','l','F','i','l','e','s',0};
76 static const WCHAR RenFiles
[] = {'R','e','n','F','i','l','e','s',0};
77 static const WCHAR Ini2Reg
[] = {'I','n','i','2','R','e','g',0};
78 static const WCHAR LogConf
[] = {'L','o','g','C','o','n','f',0};
79 static const WCHAR AddReg
[] = {'A','d','d','R','e','g',0};
80 static const WCHAR DelReg
[] = {'D','e','l','R','e','g',0};
81 static const WCHAR BitReg
[] = {'B','i','t','R','e','g',0};
82 static const WCHAR UpdateInis
[] = {'U','p','d','a','t','e','I','n','i','s',0};
83 static const WCHAR CopyINF
[] = {'C','o','p','y','I','N','F',0};
84 static const WCHAR AddService
[] = {'A','d','d','S','e','r','v','i','c','e',0};
85 static const WCHAR DelService
[] = {'D','e','l','S','e','r','v','i','c','e',0};
86 static const WCHAR UpdateIniFields
[] = {'U','p','d','a','t','e','I','n','i','F','i','e','l','d','s',0};
87 static const WCHAR RegisterDlls
[] = {'R','e','g','i','s','t','e','r','D','l','l','s',0};
88 static const WCHAR UnregisterDlls
[] = {'U','n','r','e','g','i','s','t','e','r','D','l','l','s',0};
89 static const WCHAR ProfileItems
[] = {'P','r','o','f','i','l','e','I','t','e','m','s',0};
90 static const WCHAR Name
[] = {'N','a','m','e',0};
91 static const WCHAR CmdLine
[] = {'C','m','d','L','i','n','e',0};
92 static const WCHAR SubDir
[] = {'S','u','b','D','i','r',0};
93 static const WCHAR WineFakeDlls
[] = {'W','i','n','e','F','a','k','e','D','l','l','s',0};
94 static const WCHAR WinePreInstall
[] = {'W','i','n','e','P','r','e','I','n','s','t','a','l','l',0};
95 static const WCHAR DisplayName
[] = {'D','i','s','p','l','a','y','N','a','m','e',0};
96 static const WCHAR Description
[] = {'D','e','s','c','r','i','p','t','i','o','n',0};
97 static const WCHAR ServiceBinary
[] = {'S','e','r','v','i','c','e','B','i','n','a','r','y',0};
98 static const WCHAR StartName
[] = {'S','t','a','r','t','N','a','m','e',0};
99 static const WCHAR LoadOrderGroup
[] = {'L','o','a','d','O','r','d','e','r','G','r','o','u','p',0};
100 static const WCHAR ServiceType
[] = {'S','e','r','v','i','c','e','T','y','p','e',0};
101 static const WCHAR StartType
[] = {'S','t','a','r','t','T','y','p','e',0};
102 static const WCHAR ErrorControl
[] = {'E','r','r','o','r','C','o','n','t','r','o','l',0};
104 static const WCHAR ServicesKey
[] = {'S','y','s','t','e','m','\\',
105 'C','u','r','r','e','n','t','C','o','n','t','r','o','l','S','e','t','\\',
106 'S','e','r','v','i','c','e','s',0};
108 /***********************************************************************
111 * Retrieve the contents of a field, dynamically growing the buffer if necessary.
113 static WCHAR
*get_field_string( INFCONTEXT
*context
, DWORD index
, WCHAR
*buffer
,
114 WCHAR
*static_buffer
, DWORD
*size
)
118 if (SetupGetStringFieldW( context
, index
, buffer
, *size
, &required
)) return buffer
;
119 if (GetLastError() == ERROR_INSUFFICIENT_BUFFER
)
121 /* now grow the buffer */
122 if (buffer
!= static_buffer
) HeapFree( GetProcessHeap(), 0, buffer
);
123 if (!(buffer
= HeapAlloc( GetProcessHeap(), 0, required
*sizeof(WCHAR
) ))) return NULL
;
125 if (SetupGetStringFieldW( context
, index
, buffer
, *size
, &required
)) return buffer
;
127 if (buffer
!= static_buffer
) HeapFree( GetProcessHeap(), 0, buffer
);
132 /***********************************************************************
133 * dup_section_line_field
135 * Retrieve the contents of a field in a newly-allocated buffer.
137 static WCHAR
*dup_section_line_field( HINF hinf
, const WCHAR
*section
, const WCHAR
*line
, DWORD index
)
143 if (!SetupFindFirstLineW( hinf
, section
, line
, &context
)) return NULL
;
144 if (!SetupGetStringFieldW( &context
, index
, NULL
, 0, &size
)) return NULL
;
145 if (!(buffer
= HeapAlloc( GetProcessHeap(), 0, size
* sizeof(WCHAR
) ))) return NULL
;
146 if (!SetupGetStringFieldW( &context
, index
, buffer
, size
, NULL
)) buffer
[0] = 0;
150 /***********************************************************************
151 * copy_files_callback
153 * Called once for each CopyFiles entry in a given section.
155 static BOOL
copy_files_callback( HINF hinf
, PCWSTR field
, void *arg
)
157 struct files_callback_info
*info
= arg
;
159 if (field
[0] == '@') /* special case: copy single file */
160 SetupQueueDefaultCopyW( info
->queue
, info
->layout
? info
->layout
: hinf
, info
->src_root
, NULL
, field
+1, info
->copy_flags
);
162 SetupQueueCopySectionW( info
->queue
, info
->src_root
, info
->layout
? info
->layout
: hinf
, hinf
, field
, info
->copy_flags
);
167 /***********************************************************************
168 * delete_files_callback
170 * Called once for each DelFiles entry in a given section.
172 static BOOL
delete_files_callback( HINF hinf
, PCWSTR field
, void *arg
)
174 struct files_callback_info
*info
= arg
;
175 SetupQueueDeleteSectionW( info
->queue
, hinf
, 0, field
);
180 /***********************************************************************
181 * rename_files_callback
183 * Called once for each RenFiles entry in a given section.
185 static BOOL
rename_files_callback( HINF hinf
, PCWSTR field
, void *arg
)
187 struct files_callback_info
*info
= arg
;
188 SetupQueueRenameSectionW( info
->queue
, hinf
, 0, field
);
193 /***********************************************************************
196 * Retrieve the registry root key from its name.
198 static HKEY
get_root_key( const WCHAR
*name
, HKEY def_root
)
200 static const WCHAR HKCR
[] = {'H','K','C','R',0};
201 static const WCHAR HKCU
[] = {'H','K','C','U',0};
202 static const WCHAR HKLM
[] = {'H','K','L','M',0};
203 static const WCHAR HKU
[] = {'H','K','U',0};
204 static const WCHAR HKR
[] = {'H','K','R',0};
206 if (!strcmpiW( name
, HKCR
)) return HKEY_CLASSES_ROOT
;
207 if (!strcmpiW( name
, HKCU
)) return HKEY_CURRENT_USER
;
208 if (!strcmpiW( name
, HKLM
)) return HKEY_LOCAL_MACHINE
;
209 if (!strcmpiW( name
, HKU
)) return HKEY_USERS
;
210 if (!strcmpiW( name
, HKR
)) return def_root
;
215 /***********************************************************************
216 * append_multi_sz_value
218 * Append a multisz string to a multisz registry value.
220 static void append_multi_sz_value( HKEY hkey
, const WCHAR
*value
, const WCHAR
*strings
,
223 DWORD size
, type
, total
;
226 if (RegQueryValueExW( hkey
, value
, NULL
, &type
, NULL
, &size
)) return;
227 if (type
!= REG_MULTI_SZ
) return;
229 if (!(buffer
= HeapAlloc( GetProcessHeap(), 0, (size
+ str_size
) * sizeof(WCHAR
) ))) return;
230 if (RegQueryValueExW( hkey
, value
, NULL
, NULL
, (BYTE
*)buffer
, &size
)) goto done
;
232 /* compare each string against all the existing ones */
236 int len
= strlenW(strings
) + 1;
238 for (p
= buffer
; *p
; p
+= strlenW(p
) + 1)
239 if (!strcmpiW( p
, strings
)) break;
241 if (!*p
) /* not found, need to append it */
243 memcpy( p
, strings
, len
* sizeof(WCHAR
) );
245 total
+= len
* sizeof(WCHAR
);
251 TRACE( "setting value %s to %s\n", debugstr_w(value
), debugstr_w(buffer
) );
252 RegSetValueExW( hkey
, value
, 0, REG_MULTI_SZ
, (BYTE
*)buffer
, total
);
255 HeapFree( GetProcessHeap(), 0, buffer
);
259 /***********************************************************************
260 * delete_multi_sz_value
262 * Remove a string from a multisz registry value.
264 static void delete_multi_sz_value( HKEY hkey
, const WCHAR
*value
, const WCHAR
*string
)
267 WCHAR
*buffer
, *src
, *dst
;
269 if (RegQueryValueExW( hkey
, value
, NULL
, &type
, NULL
, &size
)) return;
270 if (type
!= REG_MULTI_SZ
) return;
271 /* allocate double the size, one for value before and one for after */
272 if (!(buffer
= HeapAlloc( GetProcessHeap(), 0, size
* 2 * sizeof(WCHAR
) ))) return;
273 if (RegQueryValueExW( hkey
, value
, NULL
, NULL
, (BYTE
*)buffer
, &size
)) goto done
;
278 int len
= strlenW(src
) + 1;
279 if (strcmpiW( src
, string
))
281 memcpy( dst
, src
, len
* sizeof(WCHAR
) );
287 if (dst
!= buffer
+ 2*size
) /* did we remove something? */
289 TRACE( "setting value %s to %s\n", debugstr_w(value
), debugstr_w(buffer
+ size
) );
290 RegSetValueExW( hkey
, value
, 0, REG_MULTI_SZ
,
291 (BYTE
*)(buffer
+ size
), dst
- (buffer
+ size
) );
294 HeapFree( GetProcessHeap(), 0, buffer
);
298 /***********************************************************************
301 * Perform an add/delete registry operation depending on the flags.
303 static BOOL
do_reg_operation( HKEY hkey
, const WCHAR
*value
, INFCONTEXT
*context
, INT flags
)
307 if (flags
& (FLG_ADDREG_DELREG_BIT
| FLG_ADDREG_DELVAL
)) /* deletion */
309 if (*value
&& !(flags
& FLG_DELREG_KEYONLY_COMMON
))
311 if ((flags
& FLG_DELREG_MULTI_SZ_DELSTRING
) == FLG_DELREG_MULTI_SZ_DELSTRING
)
315 if (!SetupGetStringFieldW( context
, 5, NULL
, 0, &size
) || !size
) return TRUE
;
316 if (!(str
= HeapAlloc( GetProcessHeap(), 0, size
* sizeof(WCHAR
) ))) return FALSE
;
317 SetupGetStringFieldW( context
, 5, str
, size
, NULL
);
318 delete_multi_sz_value( hkey
, value
, str
);
319 HeapFree( GetProcessHeap(), 0, str
);
321 else RegDeleteValueW( hkey
, value
);
323 else NtDeleteKey( hkey
);
327 if (flags
& (FLG_ADDREG_KEYONLY
|FLG_ADDREG_KEYONLY_COMMON
)) return TRUE
;
329 if (flags
& (FLG_ADDREG_NOCLOBBER
|FLG_ADDREG_OVERWRITEONLY
))
331 BOOL exists
= !RegQueryValueExW( hkey
, value
, NULL
, NULL
, NULL
, NULL
);
332 if (exists
&& (flags
& FLG_ADDREG_NOCLOBBER
)) return TRUE
;
333 if (!exists
&& (flags
& FLG_ADDREG_OVERWRITEONLY
)) return TRUE
;
336 switch(flags
& FLG_ADDREG_TYPE_MASK
)
338 case FLG_ADDREG_TYPE_SZ
: type
= REG_SZ
; break;
339 case FLG_ADDREG_TYPE_MULTI_SZ
: type
= REG_MULTI_SZ
; break;
340 case FLG_ADDREG_TYPE_EXPAND_SZ
: type
= REG_EXPAND_SZ
; break;
341 case FLG_ADDREG_TYPE_BINARY
: type
= REG_BINARY
; break;
342 case FLG_ADDREG_TYPE_DWORD
: type
= REG_DWORD
; break;
343 case FLG_ADDREG_TYPE_NONE
: type
= REG_NONE
; break;
344 default: type
= flags
>> 16; break;
347 if (!(flags
& FLG_ADDREG_BINVALUETYPE
) ||
348 (type
== REG_DWORD
&& SetupGetFieldCount(context
) == 5))
350 static const WCHAR empty
;
353 if (type
== REG_MULTI_SZ
)
355 if (!SetupGetMultiSzFieldW( context
, 5, NULL
, 0, &size
)) size
= 0;
358 if (!(str
= HeapAlloc( GetProcessHeap(), 0, size
* sizeof(WCHAR
) ))) return FALSE
;
359 SetupGetMultiSzFieldW( context
, 5, str
, size
, NULL
);
361 if (flags
& FLG_ADDREG_APPEND
)
363 if (!str
) return TRUE
;
364 append_multi_sz_value( hkey
, value
, str
, size
);
365 HeapFree( GetProcessHeap(), 0, str
);
368 /* else fall through to normal string handling */
372 if (!SetupGetStringFieldW( context
, 5, NULL
, 0, &size
)) size
= 0;
375 if (!(str
= HeapAlloc( GetProcessHeap(), 0, size
* sizeof(WCHAR
) ))) return FALSE
;
376 SetupGetStringFieldW( context
, 5, str
, size
, NULL
);
377 if (type
== REG_LINK
) size
--; /* no terminating null for symlinks */
381 if (type
== REG_DWORD
)
383 DWORD dw
= str
? strtoulW( str
, NULL
, 0 ) : 0;
384 TRACE( "setting dword %s to %x\n", debugstr_w(value
), dw
);
385 RegSetValueExW( hkey
, value
, 0, type
, (BYTE
*)&dw
, sizeof(dw
) );
389 TRACE( "setting value %s to %s\n", debugstr_w(value
), debugstr_w(str
) );
390 if (str
) RegSetValueExW( hkey
, value
, 0, type
, (BYTE
*)str
, size
* sizeof(WCHAR
) );
391 else RegSetValueExW( hkey
, value
, 0, type
, (const BYTE
*)&empty
, sizeof(WCHAR
) );
393 HeapFree( GetProcessHeap(), 0, str
);
396 else /* get the binary data */
400 if (!SetupGetBinaryField( context
, 5, NULL
, 0, &size
)) size
= 0;
403 if (!(data
= HeapAlloc( GetProcessHeap(), 0, size
))) return FALSE
;
404 TRACE( "setting binary data %s len %d\n", debugstr_w(value
), size
);
405 SetupGetBinaryField( context
, 5, data
, size
, NULL
);
407 RegSetValueExW( hkey
, value
, 0, type
, data
, size
);
408 HeapFree( GetProcessHeap(), 0, data
);
414 /***********************************************************************
417 * Called once for each AddReg and DelReg entry in a given section.
419 static BOOL
registry_callback( HINF hinf
, PCWSTR field
, void *arg
)
421 struct registry_callback_info
*info
= arg
;
425 BOOL ok
= SetupFindFirstLineW( hinf
, field
, NULL
, &context
);
427 for (; ok
; ok
= SetupFindNextLine( &context
, &context
))
430 WCHAR buffer
[MAX_INF_STRING_LENGTH
];
434 if (!SetupGetStringFieldW( &context
, 1, buffer
, sizeof(buffer
)/sizeof(WCHAR
), NULL
))
436 if (!(root_key
= get_root_key( buffer
, info
->default_root
)))
440 if (!SetupGetStringFieldW( &context
, 2, buffer
, sizeof(buffer
)/sizeof(WCHAR
), NULL
))
444 if (!SetupGetIntField( &context
, 4, &flags
)) flags
= 0;
448 if (flags
& FLG_ADDREG_DELREG_BIT
) continue; /* ignore this entry */
452 if (!flags
) flags
= FLG_ADDREG_DELREG_BIT
;
453 else if (!(flags
& FLG_ADDREG_DELREG_BIT
)) continue; /* ignore this entry */
455 /* Wine extension: magic support for symlinks */
456 if (flags
>> 16 == REG_LINK
) options
= REG_OPTION_OPEN_LINK
| REG_OPTION_CREATE_LINK
;
458 if (info
->delete || (flags
& FLG_ADDREG_OVERWRITEONLY
))
460 if (RegOpenKeyExW( root_key
, buffer
, options
, MAXIMUM_ALLOWED
, &hkey
))
461 continue; /* ignore if it doesn't exist */
465 DWORD res
= RegCreateKeyExW( root_key
, buffer
, 0, NULL
, options
,
466 MAXIMUM_ALLOWED
, NULL
, &hkey
, NULL
);
467 if (res
== ERROR_ALREADY_EXISTS
&& (options
& REG_OPTION_CREATE_LINK
))
468 res
= RegCreateKeyExW( root_key
, buffer
, 0, NULL
, REG_OPTION_OPEN_LINK
,
469 MAXIMUM_ALLOWED
, NULL
, &hkey
, NULL
);
472 ERR( "could not create key %p %s\n", root_key
, debugstr_w(buffer
) );
476 TRACE( "key %p %s\n", root_key
, debugstr_w(buffer
) );
479 if (!SetupGetStringFieldW( &context
, 3, buffer
, sizeof(buffer
)/sizeof(WCHAR
), NULL
))
483 if (!do_reg_operation( hkey
, buffer
, &context
, flags
))
494 /***********************************************************************
497 * Register or unregister a dll.
499 static BOOL
do_register_dll( struct register_dll_info
*info
, const WCHAR
*path
,
500 INT flags
, INT timeout
, const WCHAR
*args
)
504 SP_REGISTER_CONTROL_STATUSW status
;
505 IMAGE_NT_HEADERS
*nt
;
507 status
.cbSize
= sizeof(status
);
508 status
.FileName
= path
;
509 status
.FailureCode
= SPREG_SUCCESS
;
510 status
.Win32Error
= ERROR_SUCCESS
;
514 switch(info
->callback( info
->callback_context
, SPFILENOTIFY_STARTREGISTRATION
,
515 (UINT_PTR
)&status
, !info
->unregister
))
518 SetLastError( ERROR_OPERATION_ABORTED
);
527 if (!(module
= LoadLibraryExW( path
, 0, LOAD_WITH_ALTERED_SEARCH_PATH
)))
529 WARN( "could not load %s\n", debugstr_w(path
) );
530 status
.FailureCode
= SPREG_LOADLIBRARY
;
531 status
.Win32Error
= GetLastError();
535 if ((nt
= RtlImageNtHeader( module
)) && !(nt
->FileHeader
.Characteristics
& IMAGE_FILE_DLL
))
537 /* file is an executable, not a dll */
538 STARTUPINFOW startup
;
539 PROCESS_INFORMATION process_info
;
542 static const WCHAR format
[] = {'"','%','s','"',' ','%','s',0};
543 static const WCHAR default_args
[] = {'/','R','e','g','S','e','r','v','e','r',0};
545 FreeLibrary( module
);
547 if (!args
) args
= default_args
;
548 cmd_line
= HeapAlloc( GetProcessHeap(), 0, (strlenW(path
) + strlenW(args
) + 4) * sizeof(WCHAR
) );
549 sprintfW( cmd_line
, format
, path
, args
);
550 memset( &startup
, 0, sizeof(startup
) );
551 startup
.cb
= sizeof(startup
);
552 TRACE( "executing %s\n", debugstr_w(cmd_line
) );
553 res
= CreateProcessW( path
, cmd_line
, NULL
, NULL
, FALSE
, 0, NULL
, NULL
, &startup
, &process_info
);
554 HeapFree( GetProcessHeap(), 0, cmd_line
);
557 status
.FailureCode
= SPREG_LOADLIBRARY
;
558 status
.Win32Error
= GetLastError();
561 CloseHandle( process_info
.hThread
);
563 if (WaitForSingleObject( process_info
.hProcess
, timeout
*1000 ) == WAIT_TIMEOUT
)
565 /* timed out, kill the process */
566 TerminateProcess( process_info
.hProcess
, 1 );
567 status
.FailureCode
= SPREG_TIMEOUT
;
568 status
.Win32Error
= ERROR_TIMEOUT
;
570 CloseHandle( process_info
.hProcess
);
574 if (flags
& FLG_REGSVR_DLLREGISTER
)
576 const char *entry_point
= info
->unregister
? "DllUnregisterServer" : "DllRegisterServer";
577 HRESULT (WINAPI
*func
)(void) = (void *)GetProcAddress( module
, entry_point
);
581 status
.FailureCode
= SPREG_GETPROCADDR
;
582 status
.Win32Error
= GetLastError();
586 TRACE( "calling %s in %s\n", entry_point
, debugstr_w(path
) );
591 WARN( "calling %s in %s returned error %x\n", entry_point
, debugstr_w(path
), res
);
592 status
.FailureCode
= SPREG_REGSVR
;
593 status
.Win32Error
= res
;
598 if (flags
& FLG_REGSVR_DLLINSTALL
)
600 HRESULT (WINAPI
*func
)(BOOL
,LPCWSTR
) = (void *)GetProcAddress( module
, "DllInstall" );
604 status
.FailureCode
= SPREG_GETPROCADDR
;
605 status
.Win32Error
= GetLastError();
609 TRACE( "calling DllInstall(%d,%s) in %s\n",
610 !info
->unregister
, debugstr_w(args
), debugstr_w(path
) );
611 res
= func( !info
->unregister
, args
);
615 WARN( "calling DllInstall in %s returned error %x\n", debugstr_w(path
), res
);
616 status
.FailureCode
= SPREG_REGSVR
;
617 status
.Win32Error
= res
;
625 if (info
->modules_count
>= info
->modules_size
)
627 int new_size
= max( 32, info
->modules_size
* 2 );
628 HMODULE
*new = info
->modules
?
629 HeapReAlloc( GetProcessHeap(), 0, info
->modules
, new_size
* sizeof(*new) ) :
630 HeapAlloc( GetProcessHeap(), 0, new_size
* sizeof(*new) );
633 info
->modules_size
= new_size
;
637 if (info
->modules_count
< info
->modules_size
) info
->modules
[info
->modules_count
++] = module
;
638 else FreeLibrary( module
);
640 if (info
->callback
) info
->callback( info
->callback_context
, SPFILENOTIFY_ENDREGISTRATION
,
641 (UINT_PTR
)&status
, !info
->unregister
);
646 /***********************************************************************
647 * register_dlls_callback
649 * Called once for each RegisterDlls entry in a given section.
651 static BOOL
register_dlls_callback( HINF hinf
, PCWSTR field
, void *arg
)
653 struct register_dll_info
*info
= arg
;
656 BOOL ok
= SetupFindFirstLineW( hinf
, field
, NULL
, &context
);
658 for (; ok
; ok
= SetupFindNextLine( &context
, &context
))
660 WCHAR
*path
, *args
, *p
;
661 WCHAR buffer
[MAX_INF_STRING_LENGTH
];
665 if (!(path
= PARSER_get_dest_dir( &context
))) continue;
668 if (!SetupGetStringFieldW( &context
, 3, buffer
, sizeof(buffer
)/sizeof(WCHAR
), NULL
))
670 if (!(p
= HeapReAlloc( GetProcessHeap(), 0, path
,
671 (strlenW(path
) + strlenW(buffer
) + 2) * sizeof(WCHAR
) ))) goto done
;
674 if (p
== path
|| p
[-1] != '\\') *p
++ = '\\';
675 strcpyW( p
, buffer
);
678 if (!SetupGetIntField( &context
, 4, &flags
)) flags
= 0;
681 if (!SetupGetIntField( &context
, 5, &timeout
)) timeout
= 60;
683 /* get command line */
685 if (SetupGetStringFieldW( &context
, 6, buffer
, sizeof(buffer
)/sizeof(WCHAR
), NULL
))
688 ret
= do_register_dll( info
, path
, flags
, timeout
, args
);
691 HeapFree( GetProcessHeap(), 0, path
);
697 /***********************************************************************
700 * Called once for each WineFakeDlls entry in a given section.
702 static BOOL
fake_dlls_callback( HINF hinf
, PCWSTR field
, void *arg
)
705 BOOL ok
= SetupFindFirstLineW( hinf
, field
, NULL
, &context
);
707 for (; ok
; ok
= SetupFindNextLine( &context
, &context
))
710 WCHAR buffer
[MAX_INF_STRING_LENGTH
];
713 if (!(path
= PARSER_get_dest_dir( &context
))) continue;
716 if (!SetupGetStringFieldW( &context
, 3, buffer
, sizeof(buffer
)/sizeof(WCHAR
), NULL
))
718 if (!(p
= HeapReAlloc( GetProcessHeap(), 0, path
,
719 (strlenW(path
) + strlenW(buffer
) + 2) * sizeof(WCHAR
) ))) goto done
;
722 if (p
== path
|| p
[-1] != '\\') *p
++ = '\\';
723 strcpyW( p
, buffer
);
726 if (SetupGetStringFieldW( &context
, 4, buffer
, sizeof(buffer
)/sizeof(WCHAR
), NULL
))
727 p
= buffer
; /* otherwise use target base name as default source */
729 create_fake_dll( path
, p
); /* ignore errors */
732 HeapFree( GetProcessHeap(), 0, path
);
737 /***********************************************************************
738 * update_ini_callback
740 * Called once for each UpdateInis entry in a given section.
742 static BOOL
update_ini_callback( HINF hinf
, PCWSTR field
, void *arg
)
746 BOOL ok
= SetupFindFirstLineW( hinf
, field
, NULL
, &context
);
748 for (; ok
; ok
= SetupFindNextLine( &context
, &context
))
750 WCHAR buffer
[MAX_INF_STRING_LENGTH
];
751 WCHAR filename
[MAX_INF_STRING_LENGTH
];
752 WCHAR section
[MAX_INF_STRING_LENGTH
];
753 WCHAR entry
[MAX_INF_STRING_LENGTH
];
754 WCHAR string
[MAX_INF_STRING_LENGTH
];
757 if (!SetupGetStringFieldW( &context
, 1, filename
,
758 sizeof(filename
)/sizeof(WCHAR
), NULL
))
761 if (!SetupGetStringFieldW( &context
, 2, section
,
762 sizeof(section
)/sizeof(WCHAR
), NULL
))
765 if (!SetupGetStringFieldW( &context
, 4, buffer
,
766 sizeof(buffer
)/sizeof(WCHAR
), NULL
))
769 divider
= strchrW(buffer
,'=');
773 strcpyW(entry
,buffer
);
775 strcpyW(string
,divider
);
779 strcpyW(entry
,buffer
);
783 TRACE("Writing %s = %s in %s of file %s\n",debugstr_w(entry
),
784 debugstr_w(string
),debugstr_w(section
),debugstr_w(filename
));
785 WritePrivateProfileStringW(section
,entry
,string
,filename
);
791 static BOOL
update_ini_fields_callback( HINF hinf
, PCWSTR field
, void *arg
)
793 FIXME( "should update ini fields %s\n", debugstr_w(field
) );
797 static BOOL
ini2reg_callback( HINF hinf
, PCWSTR field
, void *arg
)
799 FIXME( "should do ini2reg %s\n", debugstr_w(field
) );
803 static BOOL
logconf_callback( HINF hinf
, PCWSTR field
, void *arg
)
805 FIXME( "should do logconf %s\n", debugstr_w(field
) );
809 static BOOL
bitreg_callback( HINF hinf
, PCWSTR field
, void *arg
)
811 FIXME( "should do bitreg %s\n", debugstr_w(field
) );
815 static BOOL
profile_items_callback( HINF hinf
, PCWSTR field
, void *arg
)
817 WCHAR lnkpath
[MAX_PATH
];
818 LPWSTR cmdline
=NULL
, lnkpath_end
;
819 unsigned int name_size
;
820 INFCONTEXT name_context
, context
;
823 static const WCHAR dotlnk
[] = {'.','l','n','k',0};
825 TRACE( "(%s)\n", debugstr_w(field
) );
827 if (SetupFindFirstLineW( hinf
, field
, Name
, &name_context
))
829 SetupGetIntField( &name_context
, 2, &attrs
);
830 if (attrs
& ~FLG_PROFITEM_GROUP
) FIXME( "unhandled attributes: %x\n", attrs
);
834 /* calculate filename */
835 SHGetFolderPathW( NULL
, CSIDL_COMMON_PROGRAMS
, NULL
, SHGFP_TYPE_CURRENT
, lnkpath
);
836 lnkpath_end
= lnkpath
+ strlenW(lnkpath
);
837 if (lnkpath_end
[-1] != '\\') *lnkpath_end
++ = '\\';
839 if (!(attrs
& FLG_PROFITEM_GROUP
) && SetupFindFirstLineW( hinf
, field
, SubDir
, &context
))
841 unsigned int subdir_size
;
843 if (!SetupGetStringFieldW( &context
, 1, lnkpath_end
, (lnkpath
+MAX_PATH
)-lnkpath_end
, &subdir_size
))
846 lnkpath_end
+= subdir_size
- 1;
847 if (lnkpath_end
[-1] != '\\') *lnkpath_end
++ = '\\';
850 if (!SetupGetStringFieldW( &name_context
, 1, lnkpath_end
, (lnkpath
+MAX_PATH
)-lnkpath_end
, &name_size
))
853 lnkpath_end
+= name_size
- 1;
855 if (attrs
& FLG_PROFITEM_GROUP
)
857 SHPathPrepareForWriteW( NULL
, NULL
, lnkpath
, SHPPFW_DIRCREATE
);
861 IShellLinkW
* shelllink
=NULL
;
862 IPersistFile
* persistfile
=NULL
;
863 HRESULT initresult
=E_FAIL
;
865 if (lnkpath
+MAX_PATH
< lnkpath_end
+ 5) return TRUE
;
866 strcpyW( lnkpath_end
, dotlnk
);
868 TRACE( "link path: %s\n", debugstr_w(lnkpath
) );
870 /* calculate command line */
871 if (SetupFindFirstLineW( hinf
, field
, CmdLine
, &context
))
873 unsigned int dir_len
=0, subdir_size
=0, filename_size
=0;
878 SetupGetIntField( &context
, 1, &dirid
);
879 dir
= DIRID_get_string( dirid
);
881 if (dir
) dir_len
= strlenW(dir
);
883 SetupGetStringFieldW( &context
, 2, NULL
, 0, &subdir_size
);
884 SetupGetStringFieldW( &context
, 3, NULL
, 0, &filename_size
);
886 if (dir_len
&& filename_size
)
888 cmdline
= cmdline_end
= HeapAlloc( GetProcessHeap(), 0, sizeof(WCHAR
) * (dir_len
+subdir_size
+filename_size
+1) );
890 strcpyW( cmdline_end
, dir
);
891 cmdline_end
+= dir_len
;
892 if (cmdline_end
[-1] != '\\') *cmdline_end
++ = '\\';
896 SetupGetStringFieldW( &context
, 2, cmdline_end
, subdir_size
, NULL
);
897 cmdline_end
+= subdir_size
-1;
898 if (cmdline_end
[-1] != '\\') *cmdline_end
++ = '\\';
900 SetupGetStringFieldW( &context
, 3, cmdline_end
, filename_size
, NULL
);
901 TRACE( "cmdline: %s\n", debugstr_w(cmdline
));
905 if (!cmdline
) return TRUE
;
907 initresult
= CoInitialize(NULL
);
909 if (FAILED(CoCreateInstance( &CLSID_ShellLink
, NULL
, CLSCTX_INPROC_SERVER
,
910 &IID_IShellLinkW
, (LPVOID
*)&shelllink
)))
913 IShellLinkW_SetPath( shelllink
, cmdline
);
914 SHPathPrepareForWriteW( NULL
, NULL
, lnkpath
, SHPPFW_DIRCREATE
|SHPPFW_IGNOREFILENAME
);
915 if (SUCCEEDED(IShellLinkW_QueryInterface( shelllink
, &IID_IPersistFile
, (LPVOID
*)&persistfile
)))
917 TRACE( "writing link: %s\n", debugstr_w(lnkpath
) );
918 IPersistFile_Save( persistfile
, lnkpath
, FALSE
);
919 IPersistFile_Release( persistfile
);
921 IShellLinkW_Release( shelllink
);
924 if (SUCCEEDED(initresult
)) CoUninitialize();
925 HeapFree( GetProcessHeap(), 0, cmdline
);
931 static BOOL
copy_inf_callback( HINF hinf
, PCWSTR field
, void *arg
)
933 FIXME( "should do copy inf %s\n", debugstr_w(field
) );
938 /***********************************************************************
939 * iterate_section_fields
941 * Iterate over all fields of a certain key of a certain section
943 static BOOL
iterate_section_fields( HINF hinf
, PCWSTR section
, PCWSTR key
,
944 iterate_fields_func callback
, void *arg
)
946 WCHAR static_buffer
[200];
947 WCHAR
*buffer
= static_buffer
;
948 DWORD size
= sizeof(static_buffer
)/sizeof(WCHAR
);
952 BOOL ok
= SetupFindFirstLineW( hinf
, section
, key
, &context
);
955 UINT i
, count
= SetupGetFieldCount( &context
);
956 for (i
= 1; i
<= count
; i
++)
958 if (!(buffer
= get_field_string( &context
, i
, buffer
, static_buffer
, &size
)))
960 if (!callback( hinf
, buffer
, arg
))
962 WARN("callback failed for %s %s err %d\n",
963 debugstr_w(section
), debugstr_w(buffer
), GetLastError() );
967 ok
= SetupFindNextMatchLineW( &context
, key
, &context
);
971 if (buffer
!= static_buffer
) HeapFree( GetProcessHeap(), 0, buffer
);
976 /***********************************************************************
977 * SetupInstallFilesFromInfSectionA (SETUPAPI.@)
979 BOOL WINAPI
SetupInstallFilesFromInfSectionA( HINF hinf
, HINF hlayout
, HSPFILEQ queue
,
980 PCSTR section
, PCSTR src_root
, UINT flags
)
982 UNICODE_STRING sectionW
;
985 if (!RtlCreateUnicodeStringFromAsciiz( §ionW
, section
))
987 SetLastError( ERROR_NOT_ENOUGH_MEMORY
);
991 ret
= SetupInstallFilesFromInfSectionW( hinf
, hlayout
, queue
, sectionW
.Buffer
,
996 if (RtlCreateUnicodeStringFromAsciiz( &srcW
, src_root
))
998 ret
= SetupInstallFilesFromInfSectionW( hinf
, hlayout
, queue
, sectionW
.Buffer
,
999 srcW
.Buffer
, flags
);
1000 RtlFreeUnicodeString( &srcW
);
1002 else SetLastError( ERROR_NOT_ENOUGH_MEMORY
);
1004 RtlFreeUnicodeString( §ionW
);
1009 /***********************************************************************
1010 * SetupInstallFilesFromInfSectionW (SETUPAPI.@)
1012 BOOL WINAPI
SetupInstallFilesFromInfSectionW( HINF hinf
, HINF hlayout
, HSPFILEQ queue
,
1013 PCWSTR section
, PCWSTR src_root
, UINT flags
)
1015 struct files_callback_info info
;
1018 info
.src_root
= src_root
;
1019 info
.copy_flags
= flags
;
1020 info
.layout
= hlayout
;
1021 return iterate_section_fields( hinf
, section
, CopyFiles
, copy_files_callback
, &info
);
1025 /***********************************************************************
1026 * SetupInstallFromInfSectionA (SETUPAPI.@)
1028 BOOL WINAPI
SetupInstallFromInfSectionA( HWND owner
, HINF hinf
, PCSTR section
, UINT flags
,
1029 HKEY key_root
, PCSTR src_root
, UINT copy_flags
,
1030 PSP_FILE_CALLBACK_A callback
, PVOID context
,
1031 HDEVINFO devinfo
, PSP_DEVINFO_DATA devinfo_data
)
1033 UNICODE_STRING sectionW
, src_rootW
;
1034 struct callback_WtoA_context ctx
;
1037 src_rootW
.Buffer
= NULL
;
1038 if (src_root
&& !RtlCreateUnicodeStringFromAsciiz( &src_rootW
, src_root
))
1040 SetLastError( ERROR_NOT_ENOUGH_MEMORY
);
1044 if (RtlCreateUnicodeStringFromAsciiz( §ionW
, section
))
1046 ctx
.orig_context
= context
;
1047 ctx
.orig_handler
= callback
;
1048 ret
= SetupInstallFromInfSectionW( owner
, hinf
, sectionW
.Buffer
, flags
, key_root
,
1049 src_rootW
.Buffer
, copy_flags
, QUEUE_callback_WtoA
,
1050 &ctx
, devinfo
, devinfo_data
);
1051 RtlFreeUnicodeString( §ionW
);
1053 else SetLastError( ERROR_NOT_ENOUGH_MEMORY
);
1055 RtlFreeUnicodeString( &src_rootW
);
1060 /***********************************************************************
1061 * SetupInstallFromInfSectionW (SETUPAPI.@)
1063 BOOL WINAPI
SetupInstallFromInfSectionW( HWND owner
, HINF hinf
, PCWSTR section
, UINT flags
,
1064 HKEY key_root
, PCWSTR src_root
, UINT copy_flags
,
1065 PSP_FILE_CALLBACK_W callback
, PVOID context
,
1066 HDEVINFO devinfo
, PSP_DEVINFO_DATA devinfo_data
)
1071 if (flags
& SPINST_REGISTRY
)
1073 struct registry_callback_info info
;
1075 info
.default_root
= key_root
;
1076 info
.delete = FALSE
;
1077 if (!iterate_section_fields( hinf
, section
, WinePreInstall
, registry_callback
, &info
))
1080 if (flags
& SPINST_FILES
)
1082 struct files_callback_info info
;
1085 if (!(queue
= SetupOpenFileQueue())) return FALSE
;
1087 info
.src_root
= src_root
;
1088 info
.copy_flags
= copy_flags
;
1090 ret
= (iterate_section_fields( hinf
, section
, CopyFiles
, copy_files_callback
, &info
) &&
1091 iterate_section_fields( hinf
, section
, DelFiles
, delete_files_callback
, &info
) &&
1092 iterate_section_fields( hinf
, section
, RenFiles
, rename_files_callback
, &info
) &&
1093 SetupCommitFileQueueW( owner
, queue
, callback
, context
));
1094 SetupCloseFileQueue( queue
);
1095 if (!ret
) return FALSE
;
1097 if (flags
& SPINST_INIFILES
)
1099 if (!iterate_section_fields( hinf
, section
, UpdateInis
, update_ini_callback
, NULL
) ||
1100 !iterate_section_fields( hinf
, section
, UpdateIniFields
,
1101 update_ini_fields_callback
, NULL
))
1104 if (flags
& SPINST_INI2REG
)
1106 if (!iterate_section_fields( hinf
, section
, Ini2Reg
, ini2reg_callback
, NULL
))
1109 if (flags
& SPINST_LOGCONFIG
)
1111 if (!iterate_section_fields( hinf
, section
, LogConf
, logconf_callback
, NULL
))
1114 if (flags
& SPINST_REGSVR
)
1116 struct register_dll_info info
;
1118 info
.unregister
= FALSE
;
1119 info
.modules_size
= 0;
1120 info
.modules_count
= 0;
1121 info
.modules
= NULL
;
1122 if (flags
& SPINST_REGISTERCALLBACKAWARE
)
1124 info
.callback
= callback
;
1125 info
.callback_context
= context
;
1127 else info
.callback
= NULL
;
1129 if (iterate_section_fields( hinf
, section
, WineFakeDlls
, fake_dlls_callback
, NULL
))
1130 cleanup_fake_dlls();
1134 ret
= iterate_section_fields( hinf
, section
, RegisterDlls
, register_dlls_callback
, &info
);
1135 for (i
= 0; i
< info
.modules_count
; i
++) FreeLibrary( info
.modules
[i
] );
1136 HeapFree( GetProcessHeap(), 0, info
.modules
);
1137 if (!ret
) return FALSE
;
1139 if (flags
& SPINST_UNREGSVR
)
1141 struct register_dll_info info
;
1143 info
.unregister
= TRUE
;
1144 info
.modules_size
= 0;
1145 info
.modules_count
= 0;
1146 info
.modules
= NULL
;
1147 if (flags
& SPINST_REGISTERCALLBACKAWARE
)
1149 info
.callback
= callback
;
1150 info
.callback_context
= context
;
1152 else info
.callback
= NULL
;
1154 ret
= iterate_section_fields( hinf
, section
, UnregisterDlls
, register_dlls_callback
, &info
);
1155 for (i
= 0; i
< info
.modules_count
; i
++) FreeLibrary( info
.modules
[i
] );
1156 HeapFree( GetProcessHeap(), 0, info
.modules
);
1157 if (!ret
) return FALSE
;
1159 if (flags
& SPINST_REGISTRY
)
1161 struct registry_callback_info info
;
1163 info
.default_root
= key_root
;
1165 if (!iterate_section_fields( hinf
, section
, DelReg
, registry_callback
, &info
))
1167 info
.delete = FALSE
;
1168 if (!iterate_section_fields( hinf
, section
, AddReg
, registry_callback
, &info
))
1171 if (flags
& SPINST_BITREG
)
1173 if (!iterate_section_fields( hinf
, section
, BitReg
, bitreg_callback
, NULL
))
1176 if (flags
& SPINST_PROFILEITEMS
)
1178 if (!iterate_section_fields( hinf
, section
, ProfileItems
, profile_items_callback
, NULL
))
1181 if (flags
& SPINST_COPYINF
)
1183 if (!iterate_section_fields( hinf
, section
, CopyINF
, copy_inf_callback
, NULL
))
1191 /***********************************************************************
1192 * InstallHinfSectionW (SETUPAPI.@)
1194 * NOTE: 'cmdline' is <section> <mode> <path> from
1195 * RUNDLL32.EXE SETUPAPI.DLL,InstallHinfSection <section> <mode> <path>
1197 void WINAPI
InstallHinfSectionW( HWND hwnd
, HINSTANCE handle
, LPCWSTR cmdline
, INT show
)
1200 static const WCHAR nt_platformW
[] = {'.','n','t','x','8','6',0};
1201 #elif defined(__x86_64)
1202 static const WCHAR nt_platformW
[] = {'.','n','t','a','m','d','6','4',0};
1203 #else /* FIXME: other platforms */
1204 static const WCHAR nt_platformW
[] = {'.','n','t',0};
1206 static const WCHAR nt_genericW
[] = {'.','n','t',0};
1207 static const WCHAR servicesW
[] = {'.','S','e','r','v','i','c','e','s',0};
1209 WCHAR
*s
, *path
, section
[MAX_PATH
+ (sizeof(nt_platformW
) + sizeof(servicesW
)) / sizeof(WCHAR
)];
1210 void *callback_context
;
1214 TRACE("hwnd %p, handle %p, cmdline %s\n", hwnd
, handle
, debugstr_w(cmdline
));
1216 lstrcpynW( section
, cmdline
, MAX_PATH
);
1218 if (!(s
= strchrW( section
, ' ' ))) return;
1220 while (*s
== ' ') s
++;
1223 /* quoted paths are not allowed on native, the rest of the command line is taken as the path */
1224 if (!(s
= strchrW( s
, ' ' ))) return;
1225 while (*s
== ' ') s
++;
1228 hinf
= SetupOpenInfFileW( path
, NULL
, INF_STYLE_WIN4
, NULL
);
1229 if (hinf
== INVALID_HANDLE_VALUE
) return;
1231 if (!(GetVersion() & 0x80000000))
1235 /* check for <section>.ntx86 (or corresponding name for the current platform)
1236 * and then <section>.nt */
1237 s
= section
+ strlenW(section
);
1238 memcpy( s
, nt_platformW
, sizeof(nt_platformW
) );
1239 if (!(SetupFindFirstLineW( hinf
, section
, NULL
, &context
)))
1241 memcpy( s
, nt_genericW
, sizeof(nt_genericW
) );
1242 if (!(SetupFindFirstLineW( hinf
, section
, NULL
, &context
))) *s
= 0;
1244 if (*s
) TRACE( "using section %s instead\n", debugstr_w(section
) );
1247 callback_context
= SetupInitDefaultQueueCallback( hwnd
);
1248 SetupInstallFromInfSectionW( hwnd
, hinf
, section
, SPINST_ALL
, NULL
, NULL
, SP_COPY_NEWER
,
1249 SetupDefaultQueueCallbackW
, callback_context
,
1251 SetupTermDefaultQueueCallback( callback_context
);
1252 strcatW( section
, servicesW
);
1253 SetupInstallServicesFromInfSectionW( hinf
, section
, 0 );
1254 SetupCloseInfFile( hinf
);
1256 /* FIXME: should check the mode and maybe reboot */
1257 /* there isn't much point in doing that since we */
1258 /* don't yet handle deferred file copies anyway. */
1259 if (mode
& 7) TRACE( "should consider reboot, mode %u\n", mode
);
1263 /***********************************************************************
1264 * InstallHinfSectionA (SETUPAPI.@)
1266 void WINAPI
InstallHinfSectionA( HWND hwnd
, HINSTANCE handle
, LPCSTR cmdline
, INT show
)
1268 UNICODE_STRING cmdlineW
;
1270 if (RtlCreateUnicodeStringFromAsciiz( &cmdlineW
, cmdline
))
1272 InstallHinfSectionW( hwnd
, handle
, cmdlineW
.Buffer
, show
);
1273 RtlFreeUnicodeString( &cmdlineW
);
1278 /***********************************************************************
1281 * Create a new service. Helper for SetupInstallServicesFromInfSectionW.
1283 static BOOL
add_service( SC_HANDLE scm
, HINF hinf
, const WCHAR
*name
, const WCHAR
*section
, DWORD flags
)
1285 struct registry_callback_info info
;
1288 SERVICE_DESCRIPTIONW descr
;
1289 WCHAR
*display_name
, *start_name
, *load_order
, *binary_path
;
1290 INT service_type
= 0, start_type
= 0, error_control
= 0;
1294 /* first the mandatory fields */
1296 if (!SetupFindFirstLineW( hinf
, section
, ServiceType
, &context
) ||
1297 !SetupGetIntField( &context
, 1, &service_type
))
1299 SetLastError( ERROR_BAD_SERVICE_INSTALLSECT
);
1302 if (!SetupFindFirstLineW( hinf
, section
, StartType
, &context
) ||
1303 !SetupGetIntField( &context
, 1, &start_type
))
1305 SetLastError( ERROR_BAD_SERVICE_INSTALLSECT
);
1308 if (!SetupFindFirstLineW( hinf
, section
, ErrorControl
, &context
) ||
1309 !SetupGetIntField( &context
, 1, &error_control
))
1311 SetLastError( ERROR_BAD_SERVICE_INSTALLSECT
);
1314 if (!(binary_path
= dup_section_line_field( hinf
, section
, ServiceBinary
, 1 )))
1316 SetLastError( ERROR_BAD_SERVICE_INSTALLSECT
);
1320 /* now the optional fields */
1322 display_name
= dup_section_line_field( hinf
, section
, DisplayName
, 1 );
1323 start_name
= dup_section_line_field( hinf
, section
, StartName
, 1 );
1324 load_order
= dup_section_line_field( hinf
, section
, LoadOrderGroup
, 1 );
1325 descr
.lpDescription
= dup_section_line_field( hinf
, section
, Description
, 1 );
1327 /* FIXME: Dependencies field */
1328 /* FIXME: Security field */
1330 TRACE( "service %s display %s type %x start %x error %x binary %s order %s startname %s flags %x\n",
1331 debugstr_w(name
), debugstr_w(display_name
), service_type
, start_type
, error_control
,
1332 debugstr_w(binary_path
), debugstr_w(load_order
), debugstr_w(start_name
), flags
);
1334 service
= CreateServiceW( scm
, name
, display_name
, SERVICE_ALL_ACCESS
,
1335 service_type
, start_type
, error_control
, binary_path
,
1336 load_order
, NULL
, NULL
, start_name
, NULL
);
1339 if (descr
.lpDescription
) ChangeServiceConfig2W( service
, SERVICE_CONFIG_DESCRIPTION
, &descr
);
1343 if (GetLastError() != ERROR_SERVICE_EXISTS
) goto done
;
1344 service
= OpenServiceW( scm
, name
, SERVICE_QUERY_CONFIG
|SERVICE_CHANGE_CONFIG
|SERVICE_START
);
1345 if (!service
) goto done
;
1347 if (flags
& (SPSVCINST_NOCLOBBER_DISPLAYNAME
| SPSVCINST_NOCLOBBER_STARTTYPE
|
1348 SPSVCINST_NOCLOBBER_ERRORCONTROL
| SPSVCINST_NOCLOBBER_LOADORDERGROUP
))
1350 QUERY_SERVICE_CONFIGW
*config
= NULL
;
1352 if (!QueryServiceConfigW( service
, NULL
, 0, &size
) &&
1353 GetLastError() == ERROR_INSUFFICIENT_BUFFER
)
1354 config
= HeapAlloc( GetProcessHeap(), 0, size
);
1355 if (config
&& QueryServiceConfigW( service
, config
, size
, &size
))
1357 if (flags
& SPSVCINST_NOCLOBBER_STARTTYPE
) start_type
= config
->dwStartType
;
1358 if (flags
& SPSVCINST_NOCLOBBER_ERRORCONTROL
) error_control
= config
->dwErrorControl
;
1359 if (flags
& SPSVCINST_NOCLOBBER_DISPLAYNAME
)
1361 HeapFree( GetProcessHeap(), 0, display_name
);
1362 display_name
= strdupW( config
->lpDisplayName
);
1364 if (flags
& SPSVCINST_NOCLOBBER_LOADORDERGROUP
)
1366 HeapFree( GetProcessHeap(), 0, load_order
);
1367 load_order
= strdupW( config
->lpLoadOrderGroup
);
1370 HeapFree( GetProcessHeap(), 0, config
);
1372 TRACE( "changing %s display %s type %x start %x error %x binary %s loadorder %s startname %s\n",
1373 debugstr_w(name
), debugstr_w(display_name
), service_type
, start_type
, error_control
,
1374 debugstr_w(binary_path
), debugstr_w(load_order
), debugstr_w(start_name
) );
1376 ChangeServiceConfigW( service
, service_type
, start_type
, error_control
, binary_path
,
1377 load_order
, NULL
, NULL
, start_name
, NULL
, display_name
);
1379 if (!(flags
& SPSVCINST_NOCLOBBER_DESCRIPTION
))
1380 ChangeServiceConfig2W( service
, SERVICE_CONFIG_DESCRIPTION
, &descr
);
1383 /* execute the AddReg, DelReg and BitReg entries */
1385 info
.default_root
= 0;
1386 if (!RegOpenKeyW( HKEY_LOCAL_MACHINE
, ServicesKey
, &hkey
))
1388 RegOpenKeyW( hkey
, name
, &info
.default_root
);
1389 RegCloseKey( hkey
);
1391 if (info
.default_root
)
1394 iterate_section_fields( hinf
, section
, DelReg
, registry_callback
, &info
);
1395 info
.delete = FALSE
;
1396 iterate_section_fields( hinf
, section
, AddReg
, registry_callback
, &info
);
1397 RegCloseKey( info
.default_root
);
1399 iterate_section_fields( hinf
, section
, BitReg
, bitreg_callback
, NULL
);
1401 if (flags
& SPSVCINST_STARTSERVICE
) StartServiceW( service
, 0, NULL
);
1402 CloseServiceHandle( service
);
1405 if (!service
) WARN( "failed err %u\n", GetLastError() );
1406 HeapFree( GetProcessHeap(), 0, binary_path
);
1407 HeapFree( GetProcessHeap(), 0, display_name
);
1408 HeapFree( GetProcessHeap(), 0, start_name
);
1409 HeapFree( GetProcessHeap(), 0, load_order
);
1410 HeapFree( GetProcessHeap(), 0, descr
.lpDescription
);
1411 return service
!= 0;
1415 /***********************************************************************
1418 * Delete service. Helper for SetupInstallServicesFromInfSectionW.
1420 static BOOL
del_service( SC_HANDLE scm
, HINF hinf
, const WCHAR
*name
, DWORD flags
)
1424 SERVICE_STATUS status
;
1426 if (!(service
= OpenServiceW( scm
, name
, SERVICE_STOP
| DELETE
)))
1428 if (GetLastError() == ERROR_SERVICE_DOES_NOT_EXIST
) return TRUE
;
1429 WARN( "cannot open %s err %u\n", debugstr_w(name
), GetLastError() );
1432 if (flags
& SPSVCINST_STOPSERVICE
) ControlService( service
, SERVICE_CONTROL_STOP
, &status
);
1433 TRACE( "deleting %s\n", debugstr_w(name
) );
1434 ret
= DeleteService( service
);
1435 CloseServiceHandle( service
);
1440 /***********************************************************************
1441 * SetupInstallServicesFromInfSectionW (SETUPAPI.@)
1443 BOOL WINAPI
SetupInstallServicesFromInfSectionW( HINF hinf
, PCWSTR section
, DWORD flags
)
1445 WCHAR service_name
[MAX_INF_STRING_LENGTH
];
1446 WCHAR service_section
[MAX_INF_STRING_LENGTH
];
1450 BOOL ok
, ret
= TRUE
;
1452 if (!(ok
= SetupFindFirstLineW( hinf
, section
, NULL
, &context
)))
1454 SetLastError( ERROR_SECTION_NOT_FOUND
);
1457 if (!(scm
= OpenSCManagerW( NULL
, NULL
, SC_MANAGER_ALL_ACCESS
))) return FALSE
;
1459 ok
= SetupFindFirstLineW( hinf
, section
, AddService
, &context
);
1462 if (!SetupGetStringFieldW( &context
, 1, service_name
, MAX_INF_STRING_LENGTH
, NULL
))
1464 if (!SetupGetIntField( &context
, 2, §ion_flags
)) section_flags
= 0;
1465 if (!SetupGetStringFieldW( &context
, 3, service_section
, MAX_INF_STRING_LENGTH
, NULL
))
1467 if (!(ret
= add_service( scm
, hinf
, service_name
, service_section
, section_flags
| flags
)))
1469 ok
= SetupFindNextMatchLineW( &context
, AddService
, &context
);
1472 ok
= SetupFindFirstLineW( hinf
, section
, DelService
, &context
);
1475 if (!SetupGetStringFieldW( &context
, 1, service_name
, MAX_INF_STRING_LENGTH
, NULL
))
1477 if (!SetupGetIntField( &context
, 2, §ion_flags
)) section_flags
= 0;
1478 if (!(ret
= del_service( scm
, hinf
, service_name
, section_flags
| flags
))) goto done
;
1479 ok
= SetupFindNextMatchLineW( &context
, AddService
, &context
);
1481 if (ret
) SetLastError( ERROR_SUCCESS
);
1483 CloseServiceHandle( scm
);
1488 /***********************************************************************
1489 * SetupInstallServicesFromInfSectionA (SETUPAPI.@)
1491 BOOL WINAPI
SetupInstallServicesFromInfSectionA( HINF Inf
, PCSTR SectionName
, DWORD Flags
)
1493 UNICODE_STRING SectionNameW
;
1496 if (RtlCreateUnicodeStringFromAsciiz( &SectionNameW
, SectionName
))
1498 ret
= SetupInstallServicesFromInfSectionW( Inf
, SectionNameW
.Buffer
, Flags
);
1499 RtlFreeUnicodeString( &SectionNameW
);
1502 SetLastError( ERROR_NOT_ENOUGH_MEMORY
);
1508 /***********************************************************************
1509 * SetupGetInfFileListA (SETUPAPI.@)
1511 BOOL WINAPI
SetupGetInfFileListA(PCSTR dir
, DWORD style
, PSTR buffer
,
1512 DWORD insize
, PDWORD outsize
)
1514 UNICODE_STRING dirW
;
1515 PWSTR bufferW
= NULL
;
1517 DWORD outsizeA
, outsizeW
;
1520 RtlCreateUnicodeStringFromAsciiz( &dirW
, dir
);
1525 bufferW
= HeapAlloc( GetProcessHeap(), 0, insize
* sizeof( WCHAR
));
1527 ret
= SetupGetInfFileListW( dirW
.Buffer
, style
, bufferW
, insize
, &outsizeW
);
1531 outsizeA
= WideCharToMultiByte( CP_ACP
, 0, bufferW
, outsizeW
,
1532 buffer
, insize
, NULL
, NULL
);
1533 if ( outsize
) *outsize
= outsizeA
;
1536 HeapFree( GetProcessHeap(), 0, bufferW
);
1537 RtlFreeUnicodeString( &dirW
);
1542 /***********************************************************************
1543 * SetupGetInfFileListW (SETUPAPI.@)
1545 BOOL WINAPI
SetupGetInfFileListW(PCWSTR dir
, DWORD style
, PWSTR buffer
,
1546 DWORD insize
, PDWORD outsize
)
1548 static const WCHAR inf
[] = {'\\','*','.','i','n','f',0 };
1549 WCHAR
*filter
, *fullname
= NULL
, *ptr
= buffer
;
1550 DWORD dir_len
, name_len
= 20, size
;
1551 WIN32_FIND_DATAW finddata
;
1553 if (style
& ~( INF_STYLE_OLDNT
| INF_STYLE_WIN4
|
1554 INF_STYLE_CACHE_ENABLE
| INF_STYLE_CACHE_DISABLE
))
1556 FIXME( "unknown inf_style(s) 0x%x\n",
1557 style
& ~( INF_STYLE_OLDNT
| INF_STYLE_WIN4
|
1558 INF_STYLE_CACHE_ENABLE
| INF_STYLE_CACHE_DISABLE
));
1559 if( outsize
) *outsize
= 1;
1562 if ((style
& ( INF_STYLE_OLDNT
| INF_STYLE_WIN4
)) == INF_STYLE_NONE
)
1564 FIXME( "inf_style INF_STYLE_NONE not handled\n" );
1565 if( outsize
) *outsize
= 1;
1568 if (style
& ( INF_STYLE_CACHE_ENABLE
| INF_STYLE_CACHE_DISABLE
))
1569 FIXME("ignored inf_style(s) %s %s\n",
1570 ( style
& INF_STYLE_CACHE_ENABLE
) ? "INF_STYLE_CACHE_ENABLE" : "",
1571 ( style
& INF_STYLE_CACHE_DISABLE
) ? "INF_STYLE_CACHE_DISABLE" : "");
1576 dir_len
= strlenW( dir
);
1577 if ( !dir_len
) return FALSE
;
1578 msize
= ( 7 + dir_len
) * sizeof( WCHAR
); /* \\*.inf\0 */
1579 filter
= HeapAlloc( GetProcessHeap(), 0, msize
);
1582 SetLastError( ERROR_NOT_ENOUGH_MEMORY
);
1585 strcpyW( filter
, dir
);
1586 if ( '\\' == filter
[dir_len
- 1] )
1587 filter
[--dir_len
] = 0;
1589 att
= GetFileAttributesW( filter
);
1590 if (att
!= INVALID_FILE_ATTRIBUTES
&& !(att
& FILE_ATTRIBUTE_DIRECTORY
))
1592 HeapFree( GetProcessHeap(), 0, filter
);
1593 SetLastError( ERROR_DIRECTORY
);
1599 WCHAR infdir
[] = {'\\','i','n','f',0 };
1601 dir_len
= GetWindowsDirectoryW( NULL
, 0 );
1602 msize
= ( 7 + 4 + dir_len
) * sizeof( WCHAR
);
1603 filter
= HeapAlloc( GetProcessHeap(), 0, msize
);
1606 SetLastError( ERROR_NOT_ENOUGH_MEMORY
);
1609 GetWindowsDirectoryW( filter
, msize
);
1610 strcatW( filter
, infdir
);
1612 strcatW( filter
, inf
);
1614 hdl
= FindFirstFileW( filter
, &finddata
);
1615 if ( hdl
== INVALID_HANDLE_VALUE
)
1617 if( outsize
) *outsize
= 1;
1618 HeapFree( GetProcessHeap(), 0, filter
);
1624 static const WCHAR key
[] =
1625 {'S','i','g','n','a','t','u','r','e',0 };
1626 static const WCHAR section
[] =
1627 {'V','e','r','s','i','o','n',0 };
1628 static const WCHAR sig_win4_1
[] =
1629 {'$','C','h','i','c','a','g','o','$',0 };
1630 static const WCHAR sig_win4_2
[] =
1631 {'$','W','I','N','D','O','W','S',' ','N','T','$',0 };
1632 WCHAR signature
[ MAX_PATH
];
1634 DWORD len
= strlenW( finddata
.cFileName
);
1635 if (!fullname
|| ( name_len
< len
))
1637 name_len
= ( name_len
< len
) ? len
: name_len
;
1638 HeapFree( GetProcessHeap(), 0, fullname
);
1639 fullname
= HeapAlloc( GetProcessHeap(), 0,
1640 ( 2 + dir_len
+ name_len
) * sizeof( WCHAR
));
1644 HeapFree( GetProcessHeap(), 0, filter
);
1645 SetLastError( ERROR_NOT_ENOUGH_MEMORY
);
1648 strcpyW( fullname
, filter
);
1650 fullname
[ dir_len
+ 1] = 0; /* keep '\\' */
1651 strcatW( fullname
, finddata
.cFileName
);
1652 if (!GetPrivateProfileStringW( section
, key
, NULL
, signature
, MAX_PATH
, fullname
))
1654 if( INF_STYLE_OLDNT
& style
)
1655 valid
= strcmpiW( sig_win4_1
, signature
) &&
1656 strcmpiW( sig_win4_2
, signature
);
1657 if( INF_STYLE_WIN4
& style
)
1658 valid
= valid
|| !strcmpiW( sig_win4_1
, signature
) ||
1659 !strcmpiW( sig_win4_2
, signature
);
1662 size
+= 1 + strlenW( finddata
.cFileName
);
1663 if( ptr
&& insize
>= size
)
1665 strcpyW( ptr
, finddata
.cFileName
);
1666 ptr
+= 1 + strlenW( finddata
.cFileName
);
1671 while( FindNextFileW( hdl
, &finddata
));
1674 HeapFree( GetProcessHeap(), 0, fullname
);
1675 HeapFree( GetProcessHeap(), 0, filter
);
1676 if( outsize
) *outsize
= size
;