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
;
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 /***********************************************************************
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
)
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
;
121 if (SetupGetStringFieldW( context
, index
, buffer
, *size
, &required
)) return buffer
;
123 if (buffer
!= static_buffer
) HeapFree( GetProcessHeap(), 0, buffer
);
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
)
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;
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
);
158 SetupQueueCopySectionW( info
->queue
, info
->src_root
, info
->layout
? info
->layout
: hinf
, hinf
, field
, info
->copy_flags
);
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
);
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
);
189 /***********************************************************************
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
;
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
,
219 DWORD size
, type
, total
;
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 */
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
) );
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
);
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
)
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
;
274 int len
= strlenW(src
) + 1;
275 if (strcmpiW( src
, string
))
277 memcpy( dst
, src
, len
* sizeof(WCHAR
) );
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
) );
290 HeapFree( GetProcessHeap(), 0, buffer
);
294 /***********************************************************************
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
)
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
)
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
);
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
;
349 if (type
== REG_MULTI_SZ
)
351 if (!SetupGetMultiSzFieldW( context
, 5, NULL
, 0, &size
)) size
= 0;
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
);
364 /* else fall through to normal string handling */
368 if (!SetupGetStringFieldW( context
, 5, NULL
, 0, &size
)) size
= 0;
371 if (!(str
= HeapAlloc( GetProcessHeap(), 0, size
* sizeof(WCHAR
) ))) return FALSE
;
372 SetupGetStringFieldW( context
, 5, str
, size
, NULL
);
373 if (type
== REG_LINK
) size
--; /* no terminating null for symlinks */
377 if (type
== REG_DWORD
)
379 DWORD dw
= str
? strtoulW( str
, NULL
, 0 ) : 0;
380 TRACE( "setting dword %s to %x\n", debugstr_w(value
), dw
);
381 RegSetValueExW( hkey
, value
, 0, type
, (BYTE
*)&dw
, sizeof(dw
) );
385 TRACE( "setting value %s to %s\n", debugstr_w(value
), debugstr_w(str
) );
386 if (str
) RegSetValueExW( hkey
, value
, 0, type
, (BYTE
*)str
, size
* sizeof(WCHAR
) );
387 else RegSetValueExW( hkey
, value
, 0, type
, (const BYTE
*)&empty
, sizeof(WCHAR
) );
389 HeapFree( GetProcessHeap(), 0, str
);
392 else /* get the binary data */
396 if (!SetupGetBinaryField( context
, 5, NULL
, 0, &size
)) size
= 0;
399 if (!(data
= HeapAlloc( GetProcessHeap(), 0, size
))) return FALSE
;
400 TRACE( "setting binary data %s len %d\n", debugstr_w(value
), size
);
401 SetupGetBinaryField( context
, 5, data
, size
, NULL
);
403 RegSetValueExW( hkey
, value
, 0, type
, data
, size
);
404 HeapFree( GetProcessHeap(), 0, data
);
410 /***********************************************************************
413 * Called once for each AddReg and DelReg entry in a given section.
415 static BOOL
registry_callback( HINF hinf
, PCWSTR field
, void *arg
)
417 struct registry_callback_info
*info
= arg
;
421 BOOL ok
= SetupFindFirstLineW( hinf
, field
, NULL
, &context
);
423 for (; ok
; ok
= SetupFindNextLine( &context
, &context
))
426 WCHAR buffer
[MAX_INF_STRING_LENGTH
];
430 if (!SetupGetStringFieldW( &context
, 1, buffer
, sizeof(buffer
)/sizeof(WCHAR
), NULL
))
432 if (!(root_key
= get_root_key( buffer
, info
->default_root
)))
436 if (!SetupGetStringFieldW( &context
, 2, buffer
, sizeof(buffer
)/sizeof(WCHAR
), NULL
))
440 if (!SetupGetIntField( &context
, 4, &flags
)) flags
= 0;
444 if (flags
& FLG_ADDREG_DELREG_BIT
) continue; /* ignore this entry */
448 if (!flags
) flags
= FLG_ADDREG_DELREG_BIT
;
449 else if (!(flags
& FLG_ADDREG_DELREG_BIT
)) continue; /* ignore this entry */
451 /* Wine extension: magic support for symlinks */
452 if (flags
>> 16 == REG_LINK
) options
= REG_OPTION_OPEN_LINK
| REG_OPTION_CREATE_LINK
;
454 if (info
->delete || (flags
& FLG_ADDREG_OVERWRITEONLY
))
456 if (RegOpenKeyExW( root_key
, buffer
, options
, MAXIMUM_ALLOWED
, &hkey
))
457 continue; /* ignore if it doesn't exist */
461 DWORD res
= RegCreateKeyExW( root_key
, buffer
, 0, NULL
, options
,
462 MAXIMUM_ALLOWED
, NULL
, &hkey
, NULL
);
463 if (res
== ERROR_ALREADY_EXISTS
&& (options
& REG_OPTION_CREATE_LINK
))
464 res
= RegCreateKeyExW( root_key
, buffer
, 0, NULL
, REG_OPTION_OPEN_LINK
,
465 MAXIMUM_ALLOWED
, NULL
, &hkey
, NULL
);
468 ERR( "could not create key %p %s\n", root_key
, debugstr_w(buffer
) );
472 TRACE( "key %p %s\n", root_key
, debugstr_w(buffer
) );
475 if (!SetupGetStringFieldW( &context
, 3, buffer
, sizeof(buffer
)/sizeof(WCHAR
), NULL
))
479 if (!do_reg_operation( hkey
, buffer
, &context
, flags
))
490 /***********************************************************************
493 * Register or unregister a dll.
495 static BOOL
do_register_dll( const struct register_dll_info
*info
, const WCHAR
*path
,
496 INT flags
, INT timeout
, const WCHAR
*args
)
500 SP_REGISTER_CONTROL_STATUSW status
;
501 IMAGE_NT_HEADERS
*nt
;
503 status
.cbSize
= sizeof(status
);
504 status
.FileName
= path
;
505 status
.FailureCode
= SPREG_SUCCESS
;
506 status
.Win32Error
= ERROR_SUCCESS
;
510 switch(info
->callback( info
->callback_context
, SPFILENOTIFY_STARTREGISTRATION
,
511 (UINT_PTR
)&status
, !info
->unregister
))
514 SetLastError( ERROR_OPERATION_ABORTED
);
523 if (!(module
= LoadLibraryExW( path
, 0, LOAD_WITH_ALTERED_SEARCH_PATH
)))
525 WARN( "could not load %s\n", debugstr_w(path
) );
526 status
.FailureCode
= SPREG_LOADLIBRARY
;
527 status
.Win32Error
= GetLastError();
531 if ((nt
= RtlImageNtHeader( module
)) && !(nt
->FileHeader
.Characteristics
& IMAGE_FILE_DLL
))
533 /* file is an executable, not a dll */
534 STARTUPINFOW startup
;
535 PROCESS_INFORMATION info
;
538 static const WCHAR format
[] = {'"','%','s','"',' ','%','s',0};
539 static const WCHAR default_args
[] = {'/','R','e','g','S','e','r','v','e','r',0};
541 FreeLibrary( module
);
543 if (!args
) args
= default_args
;
544 cmd_line
= HeapAlloc( GetProcessHeap(), 0, (strlenW(path
) + strlenW(args
) + 4) * sizeof(WCHAR
) );
545 sprintfW( cmd_line
, format
, path
, args
);
546 memset( &startup
, 0, sizeof(startup
) );
547 startup
.cb
= sizeof(startup
);
548 TRACE( "executing %s\n", debugstr_w(cmd_line
) );
549 res
= CreateProcessW( NULL
, cmd_line
, NULL
, NULL
, FALSE
, 0, NULL
, NULL
, &startup
, &info
);
550 HeapFree( GetProcessHeap(), 0, cmd_line
);
553 status
.FailureCode
= SPREG_LOADLIBRARY
;
554 status
.Win32Error
= GetLastError();
557 CloseHandle( info
.hThread
);
559 if (WaitForSingleObject( info
.hProcess
, timeout
*1000 ) == WAIT_TIMEOUT
)
561 /* timed out, kill the process */
562 TerminateProcess( info
.hProcess
, 1 );
563 status
.FailureCode
= SPREG_TIMEOUT
;
564 status
.Win32Error
= ERROR_TIMEOUT
;
566 CloseHandle( info
.hProcess
);
570 if (flags
& FLG_REGSVR_DLLREGISTER
)
572 const char *entry_point
= info
->unregister
? "DllUnregisterServer" : "DllRegisterServer";
573 HRESULT (WINAPI
*func
)(void) = (void *)GetProcAddress( module
, entry_point
);
577 status
.FailureCode
= SPREG_GETPROCADDR
;
578 status
.Win32Error
= GetLastError();
582 TRACE( "calling %s in %s\n", entry_point
, debugstr_w(path
) );
587 WARN( "calling %s in %s returned error %x\n", entry_point
, debugstr_w(path
), res
);
588 status
.FailureCode
= SPREG_REGSVR
;
589 status
.Win32Error
= res
;
594 if (flags
& FLG_REGSVR_DLLINSTALL
)
596 HRESULT (WINAPI
*func
)(BOOL
,LPCWSTR
) = (void *)GetProcAddress( module
, "DllInstall" );
600 status
.FailureCode
= SPREG_GETPROCADDR
;
601 status
.Win32Error
= GetLastError();
605 TRACE( "calling DllInstall(%d,%s) in %s\n",
606 !info
->unregister
, debugstr_w(args
), debugstr_w(path
) );
607 res
= func( !info
->unregister
, args
);
611 WARN( "calling DllInstall in %s returned error %x\n", debugstr_w(path
), res
);
612 status
.FailureCode
= SPREG_REGSVR
;
613 status
.Win32Error
= res
;
619 if (module
) FreeLibrary( module
);
620 if (info
->callback
) info
->callback( info
->callback_context
, SPFILENOTIFY_ENDREGISTRATION
,
621 (UINT_PTR
)&status
, !info
->unregister
);
626 /***********************************************************************
627 * register_dlls_callback
629 * Called once for each RegisterDlls entry in a given section.
631 static BOOL
register_dlls_callback( HINF hinf
, PCWSTR field
, void *arg
)
633 struct register_dll_info
*info
= arg
;
636 BOOL ok
= SetupFindFirstLineW( hinf
, field
, NULL
, &context
);
638 for (; ok
; ok
= SetupFindNextLine( &context
, &context
))
640 WCHAR
*path
, *args
, *p
;
641 WCHAR buffer
[MAX_INF_STRING_LENGTH
];
645 if (!(path
= PARSER_get_dest_dir( &context
))) continue;
648 if (!SetupGetStringFieldW( &context
, 3, buffer
, sizeof(buffer
)/sizeof(WCHAR
), NULL
))
650 if (!(p
= HeapReAlloc( GetProcessHeap(), 0, path
,
651 (strlenW(path
) + strlenW(buffer
) + 2) * sizeof(WCHAR
) ))) goto done
;
654 if (p
== path
|| p
[-1] != '\\') *p
++ = '\\';
655 strcpyW( p
, buffer
);
658 if (!SetupGetIntField( &context
, 4, &flags
)) flags
= 0;
661 if (!SetupGetIntField( &context
, 5, &timeout
)) timeout
= 60;
663 /* get command line */
665 if (SetupGetStringFieldW( &context
, 6, buffer
, sizeof(buffer
)/sizeof(WCHAR
), NULL
))
668 ret
= do_register_dll( info
, path
, flags
, timeout
, args
);
671 HeapFree( GetProcessHeap(), 0, path
);
677 /***********************************************************************
680 * Called once for each WineFakeDlls entry in a given section.
682 static BOOL
fake_dlls_callback( HINF hinf
, PCWSTR field
, void *arg
)
686 BOOL ok
= SetupFindFirstLineW( hinf
, field
, NULL
, &context
);
688 for (; ok
; ok
= SetupFindNextLine( &context
, &context
))
691 WCHAR buffer
[MAX_INF_STRING_LENGTH
];
694 if (!(path
= PARSER_get_dest_dir( &context
))) continue;
697 if (!SetupGetStringFieldW( &context
, 3, buffer
, sizeof(buffer
)/sizeof(WCHAR
), NULL
))
699 if (!(p
= HeapReAlloc( GetProcessHeap(), 0, path
,
700 (strlenW(path
) + strlenW(buffer
) + 2) * sizeof(WCHAR
) ))) goto done
;
703 if (p
== path
|| p
[-1] != '\\') *p
++ = '\\';
704 strcpyW( p
, buffer
);
707 if (SetupGetStringFieldW( &context
, 4, buffer
, sizeof(buffer
)/sizeof(WCHAR
), NULL
))
708 p
= buffer
; /* otherwise use target base name as default source */
710 create_fake_dll( path
, p
); /* ignore errors */
713 HeapFree( GetProcessHeap(), 0, path
);
719 /***********************************************************************
720 * update_ini_callback
722 * Called once for each UpdateInis entry in a given section.
724 static BOOL
update_ini_callback( HINF hinf
, PCWSTR field
, void *arg
)
728 BOOL ok
= SetupFindFirstLineW( hinf
, field
, NULL
, &context
);
730 for (; ok
; ok
= SetupFindNextLine( &context
, &context
))
732 WCHAR buffer
[MAX_INF_STRING_LENGTH
];
733 WCHAR filename
[MAX_INF_STRING_LENGTH
];
734 WCHAR section
[MAX_INF_STRING_LENGTH
];
735 WCHAR entry
[MAX_INF_STRING_LENGTH
];
736 WCHAR string
[MAX_INF_STRING_LENGTH
];
739 if (!SetupGetStringFieldW( &context
, 1, filename
,
740 sizeof(filename
)/sizeof(WCHAR
), NULL
))
743 if (!SetupGetStringFieldW( &context
, 2, section
,
744 sizeof(section
)/sizeof(WCHAR
), NULL
))
747 if (!SetupGetStringFieldW( &context
, 4, buffer
,
748 sizeof(buffer
)/sizeof(WCHAR
), NULL
))
751 divider
= strchrW(buffer
,'=');
755 strcpyW(entry
,buffer
);
757 strcpyW(string
,divider
);
761 strcpyW(entry
,buffer
);
765 TRACE("Writing %s = %s in %s of file %s\n",debugstr_w(entry
),
766 debugstr_w(string
),debugstr_w(section
),debugstr_w(filename
));
767 WritePrivateProfileStringW(section
,entry
,string
,filename
);
773 static BOOL
update_ini_fields_callback( HINF hinf
, PCWSTR field
, void *arg
)
775 FIXME( "should update ini fields %s\n", debugstr_w(field
) );
779 static BOOL
ini2reg_callback( HINF hinf
, PCWSTR field
, void *arg
)
781 FIXME( "should do ini2reg %s\n", debugstr_w(field
) );
785 static BOOL
logconf_callback( HINF hinf
, PCWSTR field
, void *arg
)
787 FIXME( "should do logconf %s\n", debugstr_w(field
) );
791 static BOOL
bitreg_callback( HINF hinf
, PCWSTR field
, void *arg
)
793 FIXME( "should do bitreg %s\n", debugstr_w(field
) );
797 static BOOL
profile_items_callback( HINF hinf
, PCWSTR field
, void *arg
)
799 WCHAR lnkpath
[MAX_PATH
];
800 LPWSTR cmdline
=NULL
, lnkpath_end
;
801 unsigned int name_size
;
802 INFCONTEXT name_context
, context
;
805 static const WCHAR dotlnk
[] = {'.','l','n','k',0};
807 TRACE( "(%s)\n", debugstr_w(field
) );
809 if (SetupFindFirstLineW( hinf
, field
, Name
, &name_context
))
811 SetupGetIntField( &name_context
, 2, &attrs
);
812 if (attrs
& ~FLG_PROFITEM_GROUP
) FIXME( "unhandled attributes: %x\n", attrs
);
816 /* calculate filename */
817 SHGetFolderPathW( NULL
, CSIDL_COMMON_PROGRAMS
, NULL
, SHGFP_TYPE_CURRENT
, lnkpath
);
818 lnkpath_end
= lnkpath
+ strlenW(lnkpath
);
819 if (lnkpath_end
[-1] != '\\') *lnkpath_end
++ = '\\';
821 if (!(attrs
& FLG_PROFITEM_GROUP
) && SetupFindFirstLineW( hinf
, field
, SubDir
, &context
))
823 unsigned int subdir_size
;
825 if (!SetupGetStringFieldW( &context
, 1, lnkpath_end
, (lnkpath
+MAX_PATH
)-lnkpath_end
, &subdir_size
))
828 lnkpath_end
+= subdir_size
- 1;
829 if (lnkpath_end
[-1] != '\\') *lnkpath_end
++ = '\\';
832 if (!SetupGetStringFieldW( &name_context
, 1, lnkpath_end
, (lnkpath
+MAX_PATH
)-lnkpath_end
, &name_size
))
835 lnkpath_end
+= name_size
- 1;
837 if (attrs
& FLG_PROFITEM_GROUP
)
839 SHPathPrepareForWriteW( NULL
, NULL
, lnkpath
, SHPPFW_DIRCREATE
);
843 IShellLinkW
* shelllink
=NULL
;
844 IPersistFile
* persistfile
=NULL
;
845 HRESULT initresult
=E_FAIL
;
847 if (lnkpath
+MAX_PATH
< lnkpath_end
+ 5) return TRUE
;
848 strcpyW( lnkpath_end
, dotlnk
);
850 TRACE( "link path: %s\n", debugstr_w(lnkpath
) );
852 /* calculate command line */
853 if (SetupFindFirstLineW( hinf
, field
, CmdLine
, &context
))
855 unsigned int dir_len
=0, subdir_size
=0, filename_size
=0;
860 SetupGetIntField( &context
, 1, &dirid
);
861 dir
= DIRID_get_string( dirid
);
863 if (dir
) dir_len
= strlenW(dir
);
865 SetupGetStringFieldW( &context
, 2, NULL
, 0, &subdir_size
);
866 SetupGetStringFieldW( &context
, 3, NULL
, 0, &filename_size
);
868 if (dir_len
&& filename_size
)
870 cmdline
= cmdline_end
= HeapAlloc( GetProcessHeap(), 0, sizeof(WCHAR
) * (dir_len
+subdir_size
+filename_size
+1) );
872 strcpyW( cmdline_end
, dir
);
873 cmdline_end
+= dir_len
;
874 if (cmdline_end
[-1] != '\\') *cmdline_end
++ = '\\';
878 SetupGetStringFieldW( &context
, 2, cmdline_end
, subdir_size
, NULL
);
879 cmdline_end
+= subdir_size
-1;
880 if (cmdline_end
[-1] != '\\') *cmdline_end
++ = '\\';
882 SetupGetStringFieldW( &context
, 3, cmdline_end
, filename_size
, NULL
);
883 TRACE( "cmdline: %s\n", debugstr_w(cmdline
));
887 if (!cmdline
) return TRUE
;
889 initresult
= CoInitialize(NULL
);
891 if (FAILED(CoCreateInstance( &CLSID_ShellLink
, NULL
, CLSCTX_INPROC_SERVER
,
892 &IID_IShellLinkW
, (LPVOID
*)&shelllink
)))
895 IShellLinkW_SetPath( shelllink
, cmdline
);
896 SHPathPrepareForWriteW( NULL
, NULL
, lnkpath
, SHPPFW_DIRCREATE
|SHPPFW_IGNOREFILENAME
);
897 if (SUCCEEDED(IShellLinkW_QueryInterface( shelllink
, &IID_IPersistFile
, (LPVOID
*)&persistfile
)))
899 TRACE( "writing link: %s\n", debugstr_w(lnkpath
) );
900 IPersistFile_Save( persistfile
, lnkpath
, FALSE
);
901 IPersistFile_Release( persistfile
);
903 IShellLinkW_Release( shelllink
);
906 if (SUCCEEDED(initresult
)) CoUninitialize();
907 HeapFree( GetProcessHeap(), 0, cmdline
);
913 static BOOL
copy_inf_callback( HINF hinf
, PCWSTR field
, void *arg
)
915 FIXME( "should do copy inf %s\n", debugstr_w(field
) );
920 /***********************************************************************
921 * iterate_section_fields
923 * Iterate over all fields of a certain key of a certain section
925 static BOOL
iterate_section_fields( HINF hinf
, PCWSTR section
, PCWSTR key
,
926 iterate_fields_func callback
, void *arg
)
928 WCHAR static_buffer
[200];
929 WCHAR
*buffer
= static_buffer
;
930 DWORD size
= sizeof(static_buffer
)/sizeof(WCHAR
);
934 BOOL ok
= SetupFindFirstLineW( hinf
, section
, key
, &context
);
937 UINT i
, count
= SetupGetFieldCount( &context
);
938 for (i
= 1; i
<= count
; i
++)
940 if (!(buffer
= get_field_string( &context
, i
, buffer
, static_buffer
, &size
)))
942 if (!callback( hinf
, buffer
, arg
))
944 WARN("callback failed for %s %s err %d\n",
945 debugstr_w(section
), debugstr_w(buffer
), GetLastError() );
949 ok
= SetupFindNextMatchLineW( &context
, key
, &context
);
953 if (buffer
!= static_buffer
) HeapFree( GetProcessHeap(), 0, buffer
);
958 /***********************************************************************
959 * SetupInstallFilesFromInfSectionA (SETUPAPI.@)
961 BOOL WINAPI
SetupInstallFilesFromInfSectionA( HINF hinf
, HINF hlayout
, HSPFILEQ queue
,
962 PCSTR section
, PCSTR src_root
, UINT flags
)
964 UNICODE_STRING sectionW
;
967 if (!RtlCreateUnicodeStringFromAsciiz( §ionW
, section
))
969 SetLastError( ERROR_NOT_ENOUGH_MEMORY
);
973 ret
= SetupInstallFilesFromInfSectionW( hinf
, hlayout
, queue
, sectionW
.Buffer
,
978 if (RtlCreateUnicodeStringFromAsciiz( &srcW
, src_root
))
980 ret
= SetupInstallFilesFromInfSectionW( hinf
, hlayout
, queue
, sectionW
.Buffer
,
981 srcW
.Buffer
, flags
);
982 RtlFreeUnicodeString( &srcW
);
984 else SetLastError( ERROR_NOT_ENOUGH_MEMORY
);
986 RtlFreeUnicodeString( §ionW
);
991 /***********************************************************************
992 * SetupInstallFilesFromInfSectionW (SETUPAPI.@)
994 BOOL WINAPI
SetupInstallFilesFromInfSectionW( HINF hinf
, HINF hlayout
, HSPFILEQ queue
,
995 PCWSTR section
, PCWSTR src_root
, UINT flags
)
997 struct files_callback_info info
;
1000 info
.src_root
= src_root
;
1001 info
.copy_flags
= flags
;
1002 info
.layout
= hlayout
;
1003 return iterate_section_fields( hinf
, section
, CopyFiles
, copy_files_callback
, &info
);
1007 /***********************************************************************
1008 * SetupInstallFromInfSectionA (SETUPAPI.@)
1010 BOOL WINAPI
SetupInstallFromInfSectionA( HWND owner
, HINF hinf
, PCSTR section
, UINT flags
,
1011 HKEY key_root
, PCSTR src_root
, UINT copy_flags
,
1012 PSP_FILE_CALLBACK_A callback
, PVOID context
,
1013 HDEVINFO devinfo
, PSP_DEVINFO_DATA devinfo_data
)
1015 UNICODE_STRING sectionW
, src_rootW
;
1016 struct callback_WtoA_context ctx
;
1019 src_rootW
.Buffer
= NULL
;
1020 if (src_root
&& !RtlCreateUnicodeStringFromAsciiz( &src_rootW
, src_root
))
1022 SetLastError( ERROR_NOT_ENOUGH_MEMORY
);
1026 if (RtlCreateUnicodeStringFromAsciiz( §ionW
, section
))
1028 ctx
.orig_context
= context
;
1029 ctx
.orig_handler
= callback
;
1030 ret
= SetupInstallFromInfSectionW( owner
, hinf
, sectionW
.Buffer
, flags
, key_root
,
1031 src_rootW
.Buffer
, copy_flags
, QUEUE_callback_WtoA
,
1032 &ctx
, devinfo
, devinfo_data
);
1033 RtlFreeUnicodeString( §ionW
);
1035 else SetLastError( ERROR_NOT_ENOUGH_MEMORY
);
1037 RtlFreeUnicodeString( &src_rootW
);
1042 /***********************************************************************
1043 * SetupInstallFromInfSectionW (SETUPAPI.@)
1045 BOOL WINAPI
SetupInstallFromInfSectionW( HWND owner
, HINF hinf
, PCWSTR section
, UINT flags
,
1046 HKEY key_root
, PCWSTR src_root
, UINT copy_flags
,
1047 PSP_FILE_CALLBACK_W callback
, PVOID context
,
1048 HDEVINFO devinfo
, PSP_DEVINFO_DATA devinfo_data
)
1050 if (flags
& SPINST_FILES
)
1052 struct files_callback_info info
;
1056 if (!(queue
= SetupOpenFileQueue())) return FALSE
;
1058 info
.src_root
= src_root
;
1059 info
.copy_flags
= copy_flags
;
1061 ret
= (iterate_section_fields( hinf
, section
, CopyFiles
, copy_files_callback
, &info
) &&
1062 iterate_section_fields( hinf
, section
, DelFiles
, delete_files_callback
, &info
) &&
1063 iterate_section_fields( hinf
, section
, RenFiles
, rename_files_callback
, &info
) &&
1064 SetupCommitFileQueueW( owner
, queue
, callback
, context
));
1065 SetupCloseFileQueue( queue
);
1066 if (!ret
) return FALSE
;
1068 if (flags
& SPINST_INIFILES
)
1070 if (!iterate_section_fields( hinf
, section
, UpdateInis
, update_ini_callback
, NULL
) ||
1071 !iterate_section_fields( hinf
, section
, UpdateIniFields
,
1072 update_ini_fields_callback
, NULL
))
1075 if (flags
& SPINST_INI2REG
)
1077 if (!iterate_section_fields( hinf
, section
, Ini2Reg
, ini2reg_callback
, NULL
))
1080 if (flags
& SPINST_LOGCONFIG
)
1082 if (!iterate_section_fields( hinf
, section
, LogConf
, logconf_callback
, NULL
))
1085 if (flags
& SPINST_REGSVR
)
1087 struct register_dll_info info
;
1089 info
.unregister
= FALSE
;
1090 if (flags
& SPINST_REGISTERCALLBACKAWARE
)
1092 info
.callback
= callback
;
1093 info
.callback_context
= context
;
1095 else info
.callback
= NULL
;
1097 if (iterate_section_fields( hinf
, section
, WineFakeDlls
, fake_dlls_callback
, NULL
))
1098 cleanup_fake_dlls();
1102 if (!iterate_section_fields( hinf
, section
, RegisterDlls
, register_dlls_callback
, &info
))
1105 if (flags
& SPINST_UNREGSVR
)
1107 struct register_dll_info info
;
1109 info
.unregister
= TRUE
;
1110 if (flags
& SPINST_REGISTERCALLBACKAWARE
)
1112 info
.callback
= callback
;
1113 info
.callback_context
= context
;
1115 else info
.callback
= NULL
;
1117 if (!iterate_section_fields( hinf
, section
, UnregisterDlls
, register_dlls_callback
, &info
))
1120 if (flags
& SPINST_REGISTRY
)
1122 struct registry_callback_info info
;
1124 info
.default_root
= key_root
;
1126 if (!iterate_section_fields( hinf
, section
, DelReg
, registry_callback
, &info
))
1128 info
.delete = FALSE
;
1129 if (!iterate_section_fields( hinf
, section
, AddReg
, registry_callback
, &info
))
1132 if (flags
& SPINST_BITREG
)
1134 if (!iterate_section_fields( hinf
, section
, BitReg
, bitreg_callback
, NULL
))
1137 if (flags
& SPINST_PROFILEITEMS
)
1139 if (!iterate_section_fields( hinf
, section
, ProfileItems
, profile_items_callback
, NULL
))
1142 if (flags
& SPINST_COPYINF
)
1144 if (!iterate_section_fields( hinf
, section
, CopyINF
, copy_inf_callback
, NULL
))
1152 /***********************************************************************
1153 * InstallHinfSectionW (SETUPAPI.@)
1155 * NOTE: 'cmdline' is <section> <mode> <path> from
1156 * RUNDLL32.EXE SETUPAPI.DLL,InstallHinfSection <section> <mode> <path>
1158 void WINAPI
InstallHinfSectionW( HWND hwnd
, HINSTANCE handle
, LPCWSTR cmdline
, INT show
)
1161 static const WCHAR nt_platformW
[] = {'.','n','t','x','8','6',0};
1162 #elif defined(__x86_64)
1163 static const WCHAR nt_platformW
[] = {'.','n','t','a','m','d','6','4',0};
1164 #else /* FIXME: other platforms */
1165 static const WCHAR nt_platformW
[] = {'.','n','t',0};
1167 static const WCHAR nt_genericW
[] = {'.','n','t',0};
1168 static const WCHAR servicesW
[] = {'.','S','e','r','v','i','c','e','s',0};
1170 WCHAR
*s
, *path
, section
[MAX_PATH
+ (sizeof(nt_platformW
) + sizeof(servicesW
)) / sizeof(WCHAR
)];
1171 void *callback_context
;
1175 TRACE("hwnd %p, handle %p, cmdline %s\n", hwnd
, handle
, debugstr_w(cmdline
));
1177 lstrcpynW( section
, cmdline
, MAX_PATH
);
1179 if (!(s
= strchrW( section
, ' ' ))) return;
1181 while (*s
== ' ') s
++;
1184 /* quoted paths are not allowed on native, the rest of the command line is taken as the path */
1185 if (!(s
= strchrW( s
, ' ' ))) return;
1186 while (*s
== ' ') s
++;
1189 hinf
= SetupOpenInfFileW( path
, NULL
, INF_STYLE_WIN4
, NULL
);
1190 if (hinf
== INVALID_HANDLE_VALUE
) return;
1192 if (!(GetVersion() & 0x80000000))
1196 /* check for <section>.ntx86 (or corresponding name for the current platform)
1197 * and then <section>.nt */
1198 s
= section
+ strlenW(section
);
1199 memcpy( s
, nt_platformW
, sizeof(nt_platformW
) );
1200 if (!(SetupFindFirstLineW( hinf
, section
, NULL
, &context
)))
1202 memcpy( s
, nt_genericW
, sizeof(nt_genericW
) );
1203 if (!(SetupFindFirstLineW( hinf
, section
, NULL
, &context
))) *s
= 0;
1205 if (*s
) TRACE( "using section %s instead\n", debugstr_w(section
) );
1208 callback_context
= SetupInitDefaultQueueCallback( hwnd
);
1209 SetupInstallFromInfSectionW( hwnd
, hinf
, section
, SPINST_ALL
, NULL
, NULL
, SP_COPY_NEWER
,
1210 SetupDefaultQueueCallbackW
, callback_context
,
1212 SetupTermDefaultQueueCallback( callback_context
);
1213 strcatW( section
, servicesW
);
1214 SetupInstallServicesFromInfSectionW( hinf
, section
, 0 );
1215 SetupCloseInfFile( hinf
);
1217 /* FIXME: should check the mode and maybe reboot */
1218 /* there isn't much point in doing that since we */
1219 /* don't yet handle deferred file copies anyway. */
1223 /***********************************************************************
1224 * InstallHinfSectionA (SETUPAPI.@)
1226 void WINAPI
InstallHinfSectionA( HWND hwnd
, HINSTANCE handle
, LPCSTR cmdline
, INT show
)
1228 UNICODE_STRING cmdlineW
;
1230 if (RtlCreateUnicodeStringFromAsciiz( &cmdlineW
, cmdline
))
1232 InstallHinfSectionW( hwnd
, handle
, cmdlineW
.Buffer
, show
);
1233 RtlFreeUnicodeString( &cmdlineW
);
1238 /***********************************************************************
1241 * Create a new service. Helper for SetupInstallServicesFromInfSectionW.
1243 static BOOL
add_service( SC_HANDLE scm
, HINF hinf
, const WCHAR
*name
, const WCHAR
*section
, DWORD flags
)
1245 struct registry_callback_info info
;
1248 SERVICE_DESCRIPTIONW descr
;
1249 WCHAR
*display_name
, *start_name
, *load_order
, *binary_path
;
1250 INT service_type
= 0, start_type
= 0, error_control
= 0;
1254 /* first the mandatory fields */
1256 if (!SetupFindFirstLineW( hinf
, section
, ServiceType
, &context
) ||
1257 !SetupGetIntField( &context
, 1, &service_type
))
1259 SetLastError( ERROR_BAD_SERVICE_INSTALLSECT
);
1262 if (!SetupFindFirstLineW( hinf
, section
, StartType
, &context
) ||
1263 !SetupGetIntField( &context
, 1, &start_type
))
1265 SetLastError( ERROR_BAD_SERVICE_INSTALLSECT
);
1268 if (!SetupFindFirstLineW( hinf
, section
, ErrorControl
, &context
) ||
1269 !SetupGetIntField( &context
, 1, &error_control
))
1271 SetLastError( ERROR_BAD_SERVICE_INSTALLSECT
);
1274 if (!(binary_path
= dup_section_line_field( hinf
, section
, ServiceBinary
, 1 )))
1276 SetLastError( ERROR_BAD_SERVICE_INSTALLSECT
);
1280 /* now the optional fields */
1282 display_name
= dup_section_line_field( hinf
, section
, DisplayName
, 1 );
1283 start_name
= dup_section_line_field( hinf
, section
, StartName
, 1 );
1284 load_order
= dup_section_line_field( hinf
, section
, LoadOrderGroup
, 1 );
1285 descr
.lpDescription
= dup_section_line_field( hinf
, section
, Description
, 1 );
1287 /* FIXME: Dependencies field */
1288 /* FIXME: Security field */
1290 TRACE( "service %s display %s type %x start %x error %x binary %s order %s startname %s flags %x\n",
1291 debugstr_w(name
), debugstr_w(display_name
), service_type
, start_type
, error_control
,
1292 debugstr_w(binary_path
), debugstr_w(load_order
), debugstr_w(start_name
), flags
);
1294 service
= CreateServiceW( scm
, name
, display_name
, SERVICE_ALL_ACCESS
,
1295 service_type
, start_type
, error_control
, binary_path
,
1296 load_order
, NULL
, NULL
, start_name
, NULL
);
1299 if (descr
.lpDescription
) ChangeServiceConfig2W( service
, SERVICE_CONFIG_DESCRIPTION
, &descr
);
1303 if (GetLastError() != ERROR_SERVICE_EXISTS
) goto done
;
1304 service
= OpenServiceW( scm
, name
, SERVICE_QUERY_CONFIG
|SERVICE_CHANGE_CONFIG
|SERVICE_START
);
1305 if (!service
) goto done
;
1307 if (flags
& (SPSVCINST_NOCLOBBER_DISPLAYNAME
| SPSVCINST_NOCLOBBER_STARTTYPE
|
1308 SPSVCINST_NOCLOBBER_ERRORCONTROL
| SPSVCINST_NOCLOBBER_LOADORDERGROUP
))
1310 QUERY_SERVICE_CONFIGW
*config
= NULL
;
1312 if (!QueryServiceConfigW( service
, NULL
, 0, &size
) &&
1313 GetLastError() == ERROR_INSUFFICIENT_BUFFER
)
1314 config
= HeapAlloc( GetProcessHeap(), 0, size
);
1315 if (config
&& QueryServiceConfigW( service
, config
, size
, &size
))
1317 if (flags
& SPSVCINST_NOCLOBBER_STARTTYPE
) start_type
= config
->dwStartType
;
1318 if (flags
& SPSVCINST_NOCLOBBER_ERRORCONTROL
) error_control
= config
->dwErrorControl
;
1319 if (flags
& SPSVCINST_NOCLOBBER_DISPLAYNAME
)
1321 HeapFree( GetProcessHeap(), 0, display_name
);
1322 display_name
= strdupW( config
->lpDisplayName
);
1324 if (flags
& SPSVCINST_NOCLOBBER_LOADORDERGROUP
)
1326 HeapFree( GetProcessHeap(), 0, load_order
);
1327 load_order
= strdupW( config
->lpLoadOrderGroup
);
1330 HeapFree( GetProcessHeap(), 0, config
);
1332 TRACE( "changing %s display %s type %x start %x error %x binary %s loadorder %s startname %s\n",
1333 debugstr_w(name
), debugstr_w(display_name
), service_type
, start_type
, error_control
,
1334 debugstr_w(binary_path
), debugstr_w(load_order
), debugstr_w(start_name
) );
1336 ChangeServiceConfigW( service
, service_type
, start_type
, error_control
, binary_path
,
1337 load_order
, NULL
, NULL
, start_name
, NULL
, display_name
);
1339 if (!(flags
& SPSVCINST_NOCLOBBER_DESCRIPTION
))
1340 ChangeServiceConfig2W( service
, SERVICE_CONFIG_DESCRIPTION
, &descr
);
1343 /* execute the AddReg, DelReg and BitReg entries */
1345 info
.default_root
= 0;
1346 if (!RegOpenKeyW( HKEY_LOCAL_MACHINE
, ServicesKey
, &hkey
))
1348 RegOpenKeyW( hkey
, name
, &info
.default_root
);
1349 RegCloseKey( hkey
);
1351 if (info
.default_root
)
1354 iterate_section_fields( hinf
, section
, DelReg
, registry_callback
, &info
);
1355 info
.delete = FALSE
;
1356 iterate_section_fields( hinf
, section
, AddReg
, registry_callback
, &info
);
1357 RegCloseKey( info
.default_root
);
1359 iterate_section_fields( hinf
, section
, BitReg
, bitreg_callback
, NULL
);
1361 if (flags
& SPSVCINST_STARTSERVICE
) StartServiceW( service
, 0, NULL
);
1362 CloseServiceHandle( service
);
1365 if (!service
) WARN( "failed err %u\n", GetLastError() );
1366 HeapFree( GetProcessHeap(), 0, binary_path
);
1367 HeapFree( GetProcessHeap(), 0, display_name
);
1368 HeapFree( GetProcessHeap(), 0, start_name
);
1369 HeapFree( GetProcessHeap(), 0, load_order
);
1370 HeapFree( GetProcessHeap(), 0, descr
.lpDescription
);
1371 return service
!= 0;
1375 /***********************************************************************
1378 * Delete service. Helper for SetupInstallServicesFromInfSectionW.
1380 static BOOL
del_service( SC_HANDLE scm
, HINF hinf
, const WCHAR
*name
, DWORD flags
)
1384 SERVICE_STATUS status
;
1386 if (!(service
= OpenServiceW( scm
, name
, SERVICE_STOP
| DELETE
)))
1388 if (GetLastError() == ERROR_SERVICE_DOES_NOT_EXIST
) return TRUE
;
1389 WARN( "cannot open %s err %u\n", debugstr_w(name
), GetLastError() );
1392 if (flags
& SPSVCINST_STOPSERVICE
) ControlService( service
, SERVICE_CONTROL_STOP
, &status
);
1393 TRACE( "deleting %s\n", debugstr_w(name
) );
1394 ret
= DeleteService( service
);
1395 CloseServiceHandle( service
);
1400 /***********************************************************************
1401 * SetupInstallServicesFromInfSectionW (SETUPAPI.@)
1403 BOOL WINAPI
SetupInstallServicesFromInfSectionW( HINF hinf
, PCWSTR section
, DWORD flags
)
1405 WCHAR service_name
[MAX_INF_STRING_LENGTH
];
1406 WCHAR service_section
[MAX_INF_STRING_LENGTH
];
1410 BOOL ok
, ret
= FALSE
;
1412 if (!(scm
= OpenSCManagerW( NULL
, NULL
, SC_MANAGER_ALL_ACCESS
))) return FALSE
;
1414 if (!(ok
= SetupFindFirstLineW( hinf
, section
, AddService
, &context
)))
1415 SetLastError( ERROR_SECTION_NOT_FOUND
);
1418 if (!SetupGetStringFieldW( &context
, 1, service_name
, MAX_INF_STRING_LENGTH
, NULL
))
1420 if (!SetupGetIntField( &context
, 2, §ion_flags
)) section_flags
= 0;
1421 if (!SetupGetStringFieldW( &context
, 3, service_section
, MAX_INF_STRING_LENGTH
, NULL
))
1423 if (!(ret
= add_service( scm
, hinf
, service_name
, service_section
, section_flags
| flags
)))
1425 ok
= SetupFindNextMatchLineW( &context
, AddService
, &context
);
1428 if (!(ok
= SetupFindFirstLineW( hinf
, section
, DelService
, &context
)))
1429 SetLastError( ERROR_SECTION_NOT_FOUND
);
1432 if (!SetupGetStringFieldW( &context
, 1, service_name
, MAX_INF_STRING_LENGTH
, NULL
))
1434 if (!SetupGetIntField( &context
, 2, §ion_flags
)) section_flags
= 0;
1435 if (!(ret
= del_service( scm
, hinf
, service_name
, section_flags
| flags
))) goto done
;
1436 ok
= SetupFindNextMatchLineW( &context
, AddService
, &context
);
1438 if (ret
) SetLastError( ERROR_SUCCESS
);
1440 CloseServiceHandle( scm
);
1445 /***********************************************************************
1446 * SetupInstallServicesFromInfSectionA (SETUPAPI.@)
1448 BOOL WINAPI
SetupInstallServicesFromInfSectionA( HINF Inf
, PCSTR SectionName
, DWORD Flags
)
1450 UNICODE_STRING SectionNameW
;
1453 if (RtlCreateUnicodeStringFromAsciiz( &SectionNameW
, SectionName
))
1455 ret
= SetupInstallServicesFromInfSectionW( Inf
, SectionNameW
.Buffer
, Flags
);
1456 RtlFreeUnicodeString( &SectionNameW
);
1459 SetLastError( ERROR_NOT_ENOUGH_MEMORY
);
1465 /***********************************************************************
1466 * SetupGetInfFileListA (SETUPAPI.@)
1468 BOOL WINAPI
SetupGetInfFileListA(PCSTR dir
, DWORD style
, PSTR buffer
,
1469 DWORD insize
, PDWORD outsize
)
1471 UNICODE_STRING dirW
;
1472 PWSTR bufferW
= NULL
;
1474 DWORD outsizeA
, outsizeW
;
1477 RtlCreateUnicodeStringFromAsciiz( &dirW
, dir
);
1482 bufferW
= HeapAlloc( GetProcessHeap(), 0, insize
* sizeof( WCHAR
));
1484 ret
= SetupGetInfFileListW( dirW
.Buffer
, style
, bufferW
, insize
, &outsizeW
);
1488 outsizeA
= WideCharToMultiByte( CP_ACP
, 0, bufferW
, outsizeW
,
1489 buffer
, insize
, NULL
, NULL
);
1490 if ( outsize
) *outsize
= outsizeA
;
1493 HeapFree( GetProcessHeap(), 0, bufferW
);
1494 RtlFreeUnicodeString( &dirW
);
1499 /***********************************************************************
1500 * SetupGetInfFileListW (SETUPAPI.@)
1502 BOOL WINAPI
SetupGetInfFileListW(PCWSTR dir
, DWORD style
, PWSTR buffer
,
1503 DWORD insize
, PDWORD outsize
)
1505 static WCHAR inf
[] = {'\\','*','.','i','n','f',0 };
1506 WCHAR
*filter
, *fullname
= NULL
, *ptr
= buffer
;
1507 DWORD dir_len
, name_len
= 20, size
;
1508 WIN32_FIND_DATAW finddata
;
1510 if (style
& ~( INF_STYLE_OLDNT
| INF_STYLE_WIN4
|
1511 INF_STYLE_CACHE_ENABLE
| INF_STYLE_CACHE_DISABLE
))
1513 FIXME( "unknown inf_style(s) 0x%x\n",
1514 style
& ~( INF_STYLE_OLDNT
| INF_STYLE_WIN4
|
1515 INF_STYLE_CACHE_ENABLE
| INF_STYLE_CACHE_DISABLE
));
1516 if( outsize
) *outsize
= 1;
1519 if ((style
& ( INF_STYLE_OLDNT
| INF_STYLE_WIN4
)) == INF_STYLE_NONE
)
1521 FIXME( "inf_style INF_STYLE_NONE not handled\n" );
1522 if( outsize
) *outsize
= 1;
1525 if (style
& ( INF_STYLE_CACHE_ENABLE
| INF_STYLE_CACHE_DISABLE
))
1526 FIXME("ignored inf_style(s) %s %s\n",
1527 ( style
& INF_STYLE_CACHE_ENABLE
) ? "INF_STYLE_CACHE_ENABLE" : "",
1528 ( style
& INF_STYLE_CACHE_DISABLE
) ? "INF_STYLE_CACHE_DISABLE" : "");
1533 dir_len
= strlenW( dir
);
1534 if ( !dir_len
) return FALSE
;
1535 msize
= ( 7 + dir_len
) * sizeof( WCHAR
); /* \\*.inf\0 */
1536 filter
= HeapAlloc( GetProcessHeap(), 0, msize
);
1539 SetLastError( ERROR_NOT_ENOUGH_MEMORY
);
1542 strcpyW( filter
, dir
);
1543 if ( '\\' == filter
[dir_len
- 1] )
1544 filter
[--dir_len
] = 0;
1546 att
= GetFileAttributesW( filter
);
1547 if (att
!= INVALID_FILE_ATTRIBUTES
&& !(att
& FILE_ATTRIBUTE_DIRECTORY
))
1549 HeapFree( GetProcessHeap(), 0, filter
);
1550 SetLastError( ERROR_DIRECTORY
);
1556 WCHAR infdir
[] = {'\\','i','n','f',0 };
1558 dir_len
= GetWindowsDirectoryW( NULL
, 0 );
1559 msize
= ( 7 + 4 + dir_len
) * sizeof( WCHAR
);
1560 filter
= HeapAlloc( GetProcessHeap(), 0, msize
);
1563 SetLastError( ERROR_NOT_ENOUGH_MEMORY
);
1566 GetWindowsDirectoryW( filter
, msize
);
1567 strcatW( filter
, infdir
);
1569 strcatW( filter
, inf
);
1571 hdl
= FindFirstFileW( filter
, &finddata
);
1572 if ( hdl
== INVALID_HANDLE_VALUE
)
1574 if( outsize
) *outsize
= 1;
1575 HeapFree( GetProcessHeap(), 0, filter
);
1581 static const WCHAR key
[] =
1582 {'S','i','g','n','a','t','u','r','e',0 };
1583 static const WCHAR section
[] =
1584 {'V','e','r','s','i','o','n',0 };
1585 static const WCHAR sig_win4_1
[] =
1586 {'$','C','h','i','c','a','g','o','$',0 };
1587 static const WCHAR sig_win4_2
[] =
1588 {'$','W','I','N','D','O','W','S',' ','N','T','$',0 };
1589 WCHAR signature
[ MAX_PATH
];
1591 DWORD len
= strlenW( finddata
.cFileName
);
1592 if (!fullname
|| ( name_len
< len
))
1594 name_len
= ( name_len
< len
) ? len
: name_len
;
1595 HeapFree( GetProcessHeap(), 0, fullname
);
1596 fullname
= HeapAlloc( GetProcessHeap(), 0,
1597 ( 2 + dir_len
+ name_len
) * sizeof( WCHAR
));
1600 HeapFree( GetProcessHeap(), 0, filter
);
1601 SetLastError( ERROR_NOT_ENOUGH_MEMORY
);
1604 strcpyW( fullname
, filter
);
1606 fullname
[ dir_len
+ 1] = 0; /* keep '\\' */
1607 strcatW( fullname
, finddata
.cFileName
);
1608 if (!GetPrivateProfileStringW( section
, key
, NULL
, signature
, MAX_PATH
, fullname
))
1610 if( INF_STYLE_OLDNT
& style
)
1611 valid
= strcmpiW( sig_win4_1
, signature
) &&
1612 strcmpiW( sig_win4_2
, signature
);
1613 if( INF_STYLE_WIN4
& style
)
1614 valid
= valid
|| !strcmpiW( sig_win4_1
, signature
) ||
1615 !strcmpiW( sig_win4_2
, signature
);
1618 size
+= 1 + strlenW( finddata
.cFileName
);
1619 if( ptr
&& insize
>= size
)
1621 strcpyW( ptr
, finddata
.cFileName
);
1622 ptr
+= 1 + strlenW( finddata
.cFileName
);
1627 while( FindNextFileW( hdl
, &finddata
));
1630 HeapFree( GetProcessHeap(), 0, fullname
);
1631 HeapFree( GetProcessHeap(), 0, filter
);
1632 if( outsize
) *outsize
= size
;