2 * Services - controls services keeps track of their state
4 * Copyright 2007 Google (Mikolaj Zalewski)
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
21 #define WIN32_LEAN_AND_MEAN
29 #include "wine/unicode.h"
30 #include "wine/debug.h"
35 #define MAX_SERVICE_NAME 260
37 WINE_DEFAULT_DEBUG_CHANNEL(service
);
39 HANDLE g_hStartedEvent
;
40 struct scmdatabase
*active_database
;
42 DWORD service_pipe_timeout
= 10000;
43 DWORD service_kill_timeout
= 20000;
44 static DWORD default_preshutdown_timeout
= 180000;
45 static void *env
= NULL
;
47 static const int is_win64
= (sizeof(void *) > sizeof(int));
49 static const WCHAR SZ_LOCAL_SYSTEM
[] = {'L','o','c','a','l','S','y','s','t','e','m',0};
51 /* Registry constants */
52 static const WCHAR SZ_SERVICES_KEY
[] = { 'S','y','s','t','e','m','\\',
53 'C','u','r','r','e','n','t','C','o','n','t','r','o','l','S','e','t','\\',
54 'S','e','r','v','i','c','e','s',0 };
56 /* Service key values names */
57 static const WCHAR SZ_DISPLAY_NAME
[] = {'D','i','s','p','l','a','y','N','a','m','e',0 };
58 static const WCHAR SZ_TYPE
[] = {'T','y','p','e',0 };
59 static const WCHAR SZ_START
[] = {'S','t','a','r','t',0 };
60 static const WCHAR SZ_ERROR
[] = {'E','r','r','o','r','C','o','n','t','r','o','l',0 };
61 static const WCHAR SZ_IMAGE_PATH
[] = {'I','m','a','g','e','P','a','t','h',0};
62 static const WCHAR SZ_GROUP
[] = {'G','r','o','u','p',0};
63 static const WCHAR SZ_DEPEND_ON_SERVICE
[] = {'D','e','p','e','n','d','O','n','S','e','r','v','i','c','e',0};
64 static const WCHAR SZ_DEPEND_ON_GROUP
[] = {'D','e','p','e','n','d','O','n','G','r','o','u','p',0};
65 static const WCHAR SZ_OBJECT_NAME
[] = {'O','b','j','e','c','t','N','a','m','e',0};
66 static const WCHAR SZ_TAG
[] = {'T','a','g',0};
67 static const WCHAR SZ_DESCRIPTION
[] = {'D','e','s','c','r','i','p','t','i','o','n',0};
68 static const WCHAR SZ_PRESHUTDOWN
[] = {'P','r','e','s','h','u','t','d','o','w','n','T','i','m','e','o','u','t',0};
71 DWORD
service_create(LPCWSTR name
, struct service_entry
**entry
)
73 *entry
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, sizeof(**entry
));
75 return ERROR_NOT_ENOUGH_SERVER_MEMORY
;
76 (*entry
)->name
= strdupW(name
);
79 HeapFree(GetProcessHeap(), 0, *entry
);
80 return ERROR_NOT_ENOUGH_SERVER_MEMORY
;
82 (*entry
)->control_pipe
= INVALID_HANDLE_VALUE
;
83 (*entry
)->status
.dwCurrentState
= SERVICE_STOPPED
;
84 (*entry
)->status
.dwWin32ExitCode
= ERROR_SERVICE_NEVER_STARTED
;
85 (*entry
)->preshutdown_timeout
= default_preshutdown_timeout
;
86 /* all other fields are zero */
90 void free_service_entry(struct service_entry
*entry
)
92 HeapFree(GetProcessHeap(), 0, entry
->name
);
93 HeapFree(GetProcessHeap(), 0, entry
->config
.lpBinaryPathName
);
94 HeapFree(GetProcessHeap(), 0, entry
->config
.lpDependencies
);
95 HeapFree(GetProcessHeap(), 0, entry
->config
.lpLoadOrderGroup
);
96 HeapFree(GetProcessHeap(), 0, entry
->config
.lpServiceStartName
);
97 HeapFree(GetProcessHeap(), 0, entry
->config
.lpDisplayName
);
98 HeapFree(GetProcessHeap(), 0, entry
->description
);
99 HeapFree(GetProcessHeap(), 0, entry
->dependOnServices
);
100 HeapFree(GetProcessHeap(), 0, entry
->dependOnGroups
);
101 CloseHandle(entry
->process
);
102 CloseHandle(entry
->control_mutex
);
103 CloseHandle(entry
->control_pipe
);
104 CloseHandle(entry
->overlapped_event
);
105 CloseHandle(entry
->status_changed_event
);
106 HeapFree(GetProcessHeap(), 0, entry
);
109 static DWORD
load_service_config(HKEY hKey
, struct service_entry
*entry
)
114 if ((err
= load_reg_string(hKey
, SZ_IMAGE_PATH
, TRUE
, &entry
->config
.lpBinaryPathName
)) != 0)
116 if ((err
= load_reg_string(hKey
, SZ_GROUP
, 0, &entry
->config
.lpLoadOrderGroup
)) != 0)
118 if ((err
= load_reg_string(hKey
, SZ_OBJECT_NAME
, TRUE
, &entry
->config
.lpServiceStartName
)) != 0)
120 if ((err
= load_reg_string(hKey
, SZ_DISPLAY_NAME
, 0, &entry
->config
.lpDisplayName
)) != 0)
122 if ((err
= load_reg_string(hKey
, SZ_DESCRIPTION
, 0, &entry
->description
)) != 0)
124 if ((err
= load_reg_multisz(hKey
, SZ_DEPEND_ON_SERVICE
, TRUE
, &entry
->dependOnServices
)) != 0)
126 if ((err
= load_reg_multisz(hKey
, SZ_DEPEND_ON_GROUP
, FALSE
, &entry
->dependOnGroups
)) != 0)
129 if ((err
= load_reg_dword(hKey
, SZ_TYPE
, &entry
->config
.dwServiceType
)) != 0)
131 if ((err
= load_reg_dword(hKey
, SZ_START
, &entry
->config
.dwStartType
)) != 0)
133 if ((err
= load_reg_dword(hKey
, SZ_ERROR
, &entry
->config
.dwErrorControl
)) != 0)
135 if ((err
= load_reg_dword(hKey
, SZ_TAG
, &entry
->config
.dwTagId
)) != 0)
137 if ((err
= load_reg_dword(hKey
, SZ_PRESHUTDOWN
, &entry
->preshutdown_timeout
)) != 0)
140 WINE_TRACE("Image path = %s\n", wine_dbgstr_w(entry
->config
.lpBinaryPathName
) );
141 WINE_TRACE("Group = %s\n", wine_dbgstr_w(entry
->config
.lpLoadOrderGroup
) );
142 WINE_TRACE("Service account name = %s\n", wine_dbgstr_w(entry
->config
.lpServiceStartName
) );
143 WINE_TRACE("Display name = %s\n", wine_dbgstr_w(entry
->config
.lpDisplayName
) );
144 WINE_TRACE("Service dependencies : %s\n", entry
->dependOnServices
[0] ? "" : "(none)");
145 for (wptr
= entry
->dependOnServices
; *wptr
; wptr
+= strlenW(wptr
) + 1)
146 WINE_TRACE(" * %s\n", wine_dbgstr_w(wptr
));
147 WINE_TRACE("Group dependencies : %s\n", entry
->dependOnGroups
[0] ? "" : "(none)");
148 for (wptr
= entry
->dependOnGroups
; *wptr
; wptr
+= strlenW(wptr
) + 1)
149 WINE_TRACE(" * %s\n", wine_dbgstr_w(wptr
));
151 return ERROR_SUCCESS
;
154 static DWORD
reg_set_string_value(HKEY hKey
, LPCWSTR value_name
, LPCWSTR string
)
159 err
= RegDeleteValueW(hKey
, value_name
);
160 if (err
!= ERROR_FILE_NOT_FOUND
)
163 return ERROR_SUCCESS
;
166 return RegSetValueExW(hKey
, value_name
, 0, REG_SZ
, (const BYTE
*)string
, sizeof(WCHAR
)*(strlenW(string
) + 1));
169 static DWORD
reg_set_multisz_value(HKEY hKey
, LPCWSTR value_name
, LPCWSTR string
)
176 err
= RegDeleteValueW(hKey
, value_name
);
177 if (err
!= ERROR_FILE_NOT_FOUND
)
180 return ERROR_SUCCESS
;
184 while (*ptr
) ptr
+= strlenW(ptr
) + 1;
185 return RegSetValueExW(hKey
, value_name
, 0, REG_MULTI_SZ
, (const BYTE
*)string
, sizeof(WCHAR
)*(ptr
- string
+ 1));
188 DWORD
save_service_config(struct service_entry
*entry
)
193 err
= RegCreateKeyW(entry
->db
->root_key
, entry
->name
, &hKey
);
194 if (err
!= ERROR_SUCCESS
)
197 if ((err
= reg_set_string_value(hKey
, SZ_DISPLAY_NAME
, entry
->config
.lpDisplayName
)) != 0)
199 if ((err
= reg_set_string_value(hKey
, SZ_IMAGE_PATH
, entry
->config
.lpBinaryPathName
)) != 0)
201 if ((err
= reg_set_string_value(hKey
, SZ_GROUP
, entry
->config
.lpLoadOrderGroup
)) != 0)
203 if ((err
= reg_set_string_value(hKey
, SZ_OBJECT_NAME
, entry
->config
.lpServiceStartName
)) != 0)
205 if ((err
= reg_set_string_value(hKey
, SZ_DESCRIPTION
, entry
->description
)) != 0)
207 if ((err
= reg_set_multisz_value(hKey
, SZ_DEPEND_ON_SERVICE
, entry
->dependOnServices
)) != 0)
209 if ((err
= reg_set_multisz_value(hKey
, SZ_DEPEND_ON_GROUP
, entry
->dependOnGroups
)) != 0)
211 if ((err
= RegSetValueExW(hKey
, SZ_START
, 0, REG_DWORD
, (LPBYTE
)&entry
->config
.dwStartType
, sizeof(DWORD
))) != 0)
213 if ((err
= RegSetValueExW(hKey
, SZ_ERROR
, 0, REG_DWORD
, (LPBYTE
)&entry
->config
.dwErrorControl
, sizeof(DWORD
))) != 0)
215 if ((err
= RegSetValueExW(hKey
, SZ_TYPE
, 0, REG_DWORD
, (LPBYTE
)&entry
->config
.dwServiceType
, sizeof(DWORD
))) != 0)
217 if ((err
= RegSetValueExW(hKey
, SZ_PRESHUTDOWN
, 0, REG_DWORD
, (LPBYTE
)&entry
->preshutdown_timeout
, sizeof(DWORD
))) != 0)
220 if (entry
->config
.dwTagId
)
221 err
= RegSetValueExW(hKey
, SZ_TAG
, 0, REG_DWORD
, (LPBYTE
)&entry
->config
.dwTagId
, sizeof(DWORD
));
223 err
= RegDeleteValueW(hKey
, SZ_TAG
);
225 if (err
!= 0 && err
!= ERROR_FILE_NOT_FOUND
)
234 DWORD
scmdatabase_add_service(struct scmdatabase
*db
, struct service_entry
*service
)
238 if ((err
= save_service_config(service
)) != ERROR_SUCCESS
)
240 WINE_ERR("Couldn't store service configuration: error %u\n", err
);
241 return ERROR_GEN_FAILURE
;
244 list_add_tail(&db
->services
, &service
->entry
);
245 return ERROR_SUCCESS
;
248 DWORD
scmdatabase_remove_service(struct scmdatabase
*db
, struct service_entry
*service
)
252 err
= RegDeleteTreeW(db
->root_key
, service
->name
);
257 list_remove(&service
->entry
);
258 service
->entry
.next
= service
->entry
.prev
= NULL
;
259 return ERROR_SUCCESS
;
262 static void scmdatabase_autostart_services(struct scmdatabase
*db
)
264 struct service_entry
**services_list
;
266 unsigned int size
= 32;
267 struct service_entry
*service
;
269 services_list
= HeapAlloc(GetProcessHeap(), 0, size
* sizeof(services_list
[0]));
273 scmdatabase_lock_shared(db
);
275 LIST_FOR_EACH_ENTRY(service
, &db
->services
, struct service_entry
, entry
)
277 if (service
->config
.dwStartType
== SERVICE_BOOT_START
||
278 service
->config
.dwStartType
== SERVICE_SYSTEM_START
||
279 service
->config
.dwStartType
== SERVICE_AUTO_START
)
283 struct service_entry
**slist_new
;
285 slist_new
= HeapReAlloc(GetProcessHeap(), 0, services_list
, size
* sizeof(services_list
[0]));
288 services_list
= slist_new
;
290 services_list
[i
] = service
;
291 service
->ref_count
++;
296 scmdatabase_unlock(db
);
299 for (i
= 0; i
< size
; i
++)
302 const WCHAR
*argv
[2];
303 service
= services_list
[i
];
304 argv
[0] = service
->name
;
306 err
= service_start(service
, 1, argv
);
307 if (err
!= ERROR_SUCCESS
)
308 WINE_FIXME("Auto-start service %s failed to start: %d\n",
309 wine_dbgstr_w(service
->name
), err
);
310 release_service(service
);
313 HeapFree(GetProcessHeap(), 0, services_list
);
316 static void scmdatabase_wait_terminate(struct scmdatabase
*db
)
318 struct service_entry
*service
;
321 scmdatabase_lock_shared(db
);
325 LIST_FOR_EACH_ENTRY(service
, &db
->services
, struct service_entry
, entry
)
329 scmdatabase_unlock(db
);
330 WaitForSingleObject(service
->process
, INFINITE
);
331 scmdatabase_lock_shared(db
);
332 CloseHandle(service
->process
);
333 service
->process
= NULL
;
339 scmdatabase_unlock(db
);
342 BOOL
validate_service_name(LPCWSTR name
)
344 return (name
&& name
[0] && !strchrW(name
, '/') && !strchrW(name
, '\\'));
347 BOOL
validate_service_config(struct service_entry
*entry
)
349 if (entry
->config
.dwServiceType
& SERVICE_WIN32
&& (entry
->config
.lpBinaryPathName
== NULL
|| !entry
->config
.lpBinaryPathName
[0]))
351 WINE_ERR("Service %s is Win32 but has no image path set\n", wine_dbgstr_w(entry
->name
));
355 switch (entry
->config
.dwServiceType
)
357 case SERVICE_KERNEL_DRIVER
:
358 case SERVICE_FILE_SYSTEM_DRIVER
:
359 case SERVICE_WIN32_OWN_PROCESS
:
360 case SERVICE_WIN32_SHARE_PROCESS
:
363 case SERVICE_WIN32_OWN_PROCESS
| SERVICE_INTERACTIVE_PROCESS
:
364 case SERVICE_WIN32_SHARE_PROCESS
| SERVICE_INTERACTIVE_PROCESS
:
365 /* These can be only run as LocalSystem */
366 if (entry
->config
.lpServiceStartName
&& strcmpiW(entry
->config
.lpServiceStartName
, SZ_LOCAL_SYSTEM
) != 0)
368 WINE_ERR("Service %s is interactive but has a start name\n", wine_dbgstr_w(entry
->name
));
373 WINE_ERR("Service %s has an unknown service type (0x%x)\n", wine_dbgstr_w(entry
->name
), entry
->config
.dwServiceType
);
377 /* StartType can only be a single value (if several values are mixed the result is probably not what was intended) */
378 if (entry
->config
.dwStartType
> SERVICE_DISABLED
)
380 WINE_ERR("Service %s has an unknown start type\n", wine_dbgstr_w(entry
->name
));
384 /* SERVICE_BOOT_START and SERVICE_SYSTEM_START are only allowed for driver services */
385 if (((entry
->config
.dwStartType
== SERVICE_BOOT_START
) || (entry
->config
.dwStartType
== SERVICE_SYSTEM_START
)) &&
386 ((entry
->config
.dwServiceType
& SERVICE_WIN32_OWN_PROCESS
) || (entry
->config
.dwServiceType
& SERVICE_WIN32_SHARE_PROCESS
)))
388 WINE_ERR("Service %s - SERVICE_BOOT_START and SERVICE_SYSTEM_START are only allowed for driver services\n", wine_dbgstr_w(entry
->name
));
392 if (entry
->config
.lpServiceStartName
== NULL
)
393 entry
->config
.lpServiceStartName
= strdupW(SZ_LOCAL_SYSTEM
);
399 struct service_entry
*scmdatabase_find_service(struct scmdatabase
*db
, LPCWSTR name
)
401 struct service_entry
*service
;
403 LIST_FOR_EACH_ENTRY(service
, &db
->services
, struct service_entry
, entry
)
405 if (strcmpiW(name
, service
->name
) == 0)
412 struct service_entry
*scmdatabase_find_service_by_displayname(struct scmdatabase
*db
, LPCWSTR name
)
414 struct service_entry
*service
;
416 LIST_FOR_EACH_ENTRY(service
, &db
->services
, struct service_entry
, entry
)
418 if (service
->config
.lpDisplayName
&& strcmpiW(name
, service
->config
.lpDisplayName
) == 0)
425 void release_service(struct service_entry
*service
)
427 if (InterlockedDecrement(&service
->ref_count
) == 0 && is_marked_for_delete(service
))
428 free_service_entry(service
);
431 static DWORD
scmdatabase_create(struct scmdatabase
**db
)
435 *db
= HeapAlloc(GetProcessHeap(), 0, sizeof(**db
));
437 return ERROR_NOT_ENOUGH_SERVER_MEMORY
;
439 (*db
)->service_start_lock
= FALSE
;
440 list_init(&(*db
)->services
);
442 InitializeCriticalSection(&(*db
)->cs
);
443 (*db
)->cs
.DebugInfo
->Spare
[0] = (DWORD_PTR
)(__FILE__
": scmdatabase");
445 err
= RegCreateKeyExW(HKEY_LOCAL_MACHINE
, SZ_SERVICES_KEY
, 0, NULL
,
446 REG_OPTION_NON_VOLATILE
, MAXIMUM_ALLOWED
, NULL
,
447 &(*db
)->root_key
, NULL
);
448 if (err
!= ERROR_SUCCESS
)
449 HeapFree(GetProcessHeap(), 0, *db
);
454 static void scmdatabase_destroy(struct scmdatabase
*db
)
456 RegCloseKey(db
->root_key
);
457 db
->cs
.DebugInfo
->Spare
[0] = 0;
458 DeleteCriticalSection(&db
->cs
);
459 HeapFree(GetProcessHeap(), 0, db
);
462 static DWORD
scmdatabase_load_services(struct scmdatabase
*db
)
467 for (i
= 0; TRUE
; i
++)
469 WCHAR szName
[MAX_SERVICE_NAME
];
470 struct service_entry
*entry
;
473 err
= RegEnumKeyW(db
->root_key
, i
, szName
, MAX_SERVICE_NAME
);
474 if (err
== ERROR_NO_MORE_ITEMS
)
479 WINE_ERR("Error %d reading key %d name - skipping\n", err
, i
);
483 err
= service_create(szName
, &entry
);
484 if (err
!= ERROR_SUCCESS
)
487 WINE_TRACE("Loading service %s\n", wine_dbgstr_w(szName
));
488 err
= RegOpenKeyExW(db
->root_key
, szName
, 0, KEY_READ
, &hServiceKey
);
489 if (err
== ERROR_SUCCESS
)
491 err
= load_service_config(hServiceKey
, entry
);
492 RegCloseKey(hServiceKey
);
495 if (err
!= ERROR_SUCCESS
)
497 WINE_ERR("Error %d reading registry key for service %s - skipping\n", err
, wine_dbgstr_w(szName
));
498 free_service_entry(entry
);
502 if (entry
->config
.dwServiceType
== 0)
504 /* Maybe an application only wrote some configuration in the service key. Continue silently */
505 WINE_TRACE("Even the service type not set for service %s - skipping\n", wine_dbgstr_w(szName
));
506 free_service_entry(entry
);
510 if (!validate_service_config(entry
))
512 WINE_ERR("Invalid configuration of service %s - skipping\n", wine_dbgstr_w(szName
));
513 free_service_entry(entry
);
517 entry
->status
.dwServiceType
= entry
->config
.dwServiceType
;
520 list_add_tail(&db
->services
, &entry
->entry
);
522 return ERROR_SUCCESS
;
525 DWORD
scmdatabase_lock_startup(struct scmdatabase
*db
)
527 if (InterlockedCompareExchange(&db
->service_start_lock
, TRUE
, FALSE
))
528 return ERROR_SERVICE_DATABASE_LOCKED
;
529 return ERROR_SUCCESS
;
532 void scmdatabase_unlock_startup(struct scmdatabase
*db
)
534 InterlockedCompareExchange(&db
->service_start_lock
, FALSE
, TRUE
);
537 void scmdatabase_lock_shared(struct scmdatabase
*db
)
539 EnterCriticalSection(&db
->cs
);
542 void scmdatabase_lock_exclusive(struct scmdatabase
*db
)
544 EnterCriticalSection(&db
->cs
);
547 void scmdatabase_unlock(struct scmdatabase
*db
)
549 LeaveCriticalSection(&db
->cs
);
552 void service_lock_shared(struct service_entry
*service
)
554 EnterCriticalSection(&service
->db
->cs
);
557 void service_lock_exclusive(struct service_entry
*service
)
559 EnterCriticalSection(&service
->db
->cs
);
562 void service_unlock(struct service_entry
*service
)
564 LeaveCriticalSection(&service
->db
->cs
);
567 /* only one service started at a time, so there is no race on the registry
569 static LPWSTR
service_get_pipe_name(void)
571 static const WCHAR format
[] = { '\\','\\','.','\\','p','i','p','e','\\',
572 'n','e','t','\\','N','t','C','o','n','t','r','o','l','P','i','p','e','%','u',0};
573 static const WCHAR service_current_key_str
[] = { 'S','Y','S','T','E','M','\\',
574 'C','u','r','r','e','n','t','C','o','n','t','r','o','l','S','e','t','\\',
575 'C','o','n','t','r','o','l','\\',
576 'S','e','r','v','i','c','e','C','u','r','r','e','n','t',0};
579 HKEY service_current_key
;
580 DWORD service_current
= -1;
584 ret
= RegCreateKeyExW(HKEY_LOCAL_MACHINE
, service_current_key_str
, 0,
585 NULL
, REG_OPTION_VOLATILE
, KEY_SET_VALUE
| KEY_QUERY_VALUE
, NULL
,
586 &service_current_key
, NULL
);
587 if (ret
!= ERROR_SUCCESS
)
589 len
= sizeof(service_current
);
590 ret
= RegQueryValueExW(service_current_key
, NULL
, NULL
, &type
,
591 (BYTE
*)&service_current
, &len
);
592 if ((ret
== ERROR_SUCCESS
&& type
== REG_DWORD
) || ret
== ERROR_FILE_NOT_FOUND
)
595 RegSetValueExW(service_current_key
, NULL
, 0, REG_DWORD
,
596 (BYTE
*)&service_current
, sizeof(service_current
));
598 RegCloseKey(service_current_key
);
599 if ((ret
!= ERROR_SUCCESS
|| type
!= REG_DWORD
) && (ret
!= ERROR_FILE_NOT_FOUND
))
601 len
= sizeof(format
)/sizeof(WCHAR
) + 10 /* strlenW("4294967295") */;
602 name
= HeapAlloc(GetProcessHeap(), 0, len
* sizeof(WCHAR
));
605 snprintfW(name
, len
, format
, service_current
);
609 static DWORD
service_start_process(struct service_entry
*service_entry
, HANDLE
*process
)
611 PROCESS_INFORMATION pi
;
617 service_lock_exclusive(service_entry
);
623 if (OpenProcessToken(GetCurrentProcess(), TOKEN_QUERY
|TOKEN_DUPLICATE
, &htok
))
624 CreateEnvironmentBlock(&env
, htok
, FALSE
);
627 WINE_ERR("failed to create services environment\n");
630 size
= ExpandEnvironmentStringsW(service_entry
->config
.lpBinaryPathName
,NULL
,0);
631 path
= HeapAlloc(GetProcessHeap(),0,size
*sizeof(WCHAR
));
634 service_unlock(service_entry
);
635 return ERROR_NOT_ENOUGH_SERVER_MEMORY
;
637 ExpandEnvironmentStringsW(service_entry
->config
.lpBinaryPathName
,path
,size
);
639 if (service_entry
->config
.dwServiceType
== SERVICE_KERNEL_DRIVER
)
641 static const WCHAR winedeviceW
[] = {'\\','w','i','n','e','d','e','v','i','c','e','.','e','x','e',' ',0};
642 WCHAR system_dir
[MAX_PATH
];
645 GetSystemDirectoryW( system_dir
, MAX_PATH
);
648 if (!GetBinaryTypeW( path
, &type
))
650 HeapFree( GetProcessHeap(), 0, path
);
651 service_unlock(service_entry
);
652 return GetLastError();
654 if (type
== SCS_32BIT_BINARY
) GetSystemWow64DirectoryW( system_dir
, MAX_PATH
);
657 len
= strlenW( system_dir
) + sizeof(winedeviceW
)/sizeof(WCHAR
) + strlenW(service_entry
->name
);
658 HeapFree( GetProcessHeap(), 0, path
);
659 if (!(path
= HeapAlloc( GetProcessHeap(), 0, len
* sizeof(WCHAR
) )))
661 service_unlock(service_entry
);
662 return ERROR_NOT_ENOUGH_SERVER_MEMORY
;
664 lstrcpyW( path
, system_dir
);
665 lstrcatW( path
, winedeviceW
);
666 lstrcatW( path
, service_entry
->name
);
669 ZeroMemory(&si
, sizeof(STARTUPINFOW
));
670 si
.cb
= sizeof(STARTUPINFOW
);
671 if (!(service_entry
->config
.dwServiceType
& SERVICE_INTERACTIVE_PROCESS
))
673 static WCHAR desktopW
[] = {'_','_','w','i','n','e','s','e','r','v','i','c','e','_','w','i','n','s','t','a','t','i','o','n','\\','D','e','f','a','u','l','t',0};
674 si
.lpDesktop
= desktopW
;
677 service_entry
->status
.dwCurrentState
= SERVICE_START_PENDING
;
679 service_unlock(service_entry
);
681 r
= CreateProcessW(NULL
, path
, NULL
, NULL
, FALSE
, CREATE_UNICODE_ENVIRONMENT
, env
, NULL
, &si
, &pi
);
682 HeapFree(GetProcessHeap(),0,path
);
685 service_lock_exclusive(service_entry
);
686 service_entry
->status
.dwCurrentState
= SERVICE_STOPPED
;
687 service_unlock(service_entry
);
688 return GetLastError();
691 service_entry
->status
.dwProcessId
= pi
.dwProcessId
;
692 service_entry
->process
= pi
.hProcess
;
693 *process
= pi
.hProcess
;
694 CloseHandle( pi
.hThread
);
696 return ERROR_SUCCESS
;
699 static DWORD
service_wait_for_startup(struct service_entry
*service_entry
, HANDLE process_handle
)
701 WINE_TRACE("%p\n", service_entry
);
705 DWORD dwCurrentStatus
;
706 HANDLE handles
[2] = { service_entry
->status_changed_event
, process_handle
};
708 ret
= WaitForMultipleObjects( 2, handles
, FALSE
, service_pipe_timeout
);
709 if (ret
!= WAIT_OBJECT_0
)
710 return ERROR_SERVICE_REQUEST_TIMEOUT
;
711 service_lock_shared(service_entry
);
712 dwCurrentStatus
= service_entry
->status
.dwCurrentState
;
713 service_unlock(service_entry
);
714 if (dwCurrentStatus
== SERVICE_START_PENDING
)
716 WINE_TRACE("Service changed its status to SERVICE_START_PENDING\n");
717 return ERROR_SUCCESS
;
719 else if (dwCurrentStatus
== SERVICE_RUNNING
)
721 WINE_TRACE("Service started successfully\n");
722 return ERROR_SUCCESS
;
724 if (dwCurrentStatus
!= SERVICE_START_PENDING
)
725 return ERROR_SERVICE_REQUEST_TIMEOUT
;
729 /******************************************************************************
730 * service_send_start_message
732 static BOOL
service_send_start_message(struct service_entry
*service
, HANDLE process_handle
,
733 LPCWSTR
*argv
, DWORD argc
)
735 OVERLAPPED overlapped
;
736 DWORD i
, len
, result
;
737 service_start_info
*ssi
;
741 WINE_TRACE("%s %p %d\n", wine_dbgstr_w(service
->name
), argv
, argc
);
743 overlapped
.hEvent
= service
->overlapped_event
;
744 if (!ConnectNamedPipe(service
->control_pipe
, &overlapped
))
746 if (GetLastError() == ERROR_IO_PENDING
)
749 handles
[0] = service
->overlapped_event
;
750 handles
[1] = process_handle
;
751 if (WaitForMultipleObjects( 2, handles
, FALSE
, service_pipe_timeout
) != WAIT_OBJECT_0
)
752 CancelIo( service
->control_pipe
);
753 if (!HasOverlappedCompleted( &overlapped
))
755 WINE_ERR( "service %s failed to start\n", wine_dbgstr_w( service
->name
));
759 else if (GetLastError() != ERROR_PIPE_CONNECTED
)
761 WINE_ERR("pipe connect failed\n");
766 /* calculate how much space do we need to send the startup info */
767 len
= strlenW(service
->name
) + 1;
768 for (i
=0; i
<argc
; i
++)
769 len
+= strlenW(argv
[i
])+1;
772 ssi
= HeapAlloc(GetProcessHeap(),0,FIELD_OFFSET(service_start_info
, data
[len
]));
773 ssi
->cmd
= WINESERV_STARTINFO
;
775 ssi
->total_size
= FIELD_OFFSET(service_start_info
, data
[len
]);
776 ssi
->name_size
= strlenW(service
->name
) + 1;
777 strcpyW( ssi
->data
, service
->name
);
779 /* copy service args into a single buffer*/
780 p
= &ssi
->data
[ssi
->name_size
];
781 for (i
=0; i
<argc
; i
++)
788 r
= service_send_command( service
, service
->control_pipe
, ssi
, ssi
->total_size
, &result
);
791 SetLastError(result
);
795 HeapFree(GetProcessHeap(),0,ssi
);
800 DWORD
service_start(struct service_entry
*service
, DWORD service_argc
, LPCWSTR
*service_argv
)
804 HANDLE process_handle
= NULL
;
806 err
= scmdatabase_lock_startup(service
->db
);
807 if (err
!= ERROR_SUCCESS
)
810 if (WaitForSingleObject(service
->process
, 0) == WAIT_TIMEOUT
)
812 scmdatabase_unlock_startup(service
->db
);
813 return ERROR_SERVICE_ALREADY_RUNNING
;
816 CloseHandle(service
->control_pipe
);
817 service
->control_mutex
= CreateMutexW(NULL
, TRUE
, NULL
);
819 if (!service
->status_changed_event
)
820 service
->status_changed_event
= CreateEventW(NULL
, FALSE
, FALSE
, NULL
);
821 if (!service
->overlapped_event
)
822 service
->overlapped_event
= CreateEventW(NULL
, TRUE
, FALSE
, NULL
);
824 name
= service_get_pipe_name();
825 service
->control_pipe
= CreateNamedPipeW(name
, PIPE_ACCESS_DUPLEX
| FILE_FLAG_OVERLAPPED
,
826 PIPE_TYPE_BYTE
|PIPE_WAIT
, 1, 256, 256, 10000, NULL
);
827 HeapFree(GetProcessHeap(), 0, name
);
828 if (service
->control_pipe
==INVALID_HANDLE_VALUE
)
830 WINE_ERR("failed to create pipe for %s, error = %d\n",
831 wine_dbgstr_w(service
->name
), GetLastError());
832 err
= GetLastError();
836 err
= service_start_process(service
, &process_handle
);
837 if (err
== ERROR_SUCCESS
)
839 if (!service_send_start_message(service
, process_handle
, service_argv
, service_argc
))
840 err
= ERROR_SERVICE_REQUEST_TIMEOUT
;
843 if (err
== ERROR_SUCCESS
)
844 err
= service_wait_for_startup(service
, process_handle
);
847 if (err
== ERROR_SUCCESS
)
848 ReleaseMutex(service
->control_mutex
);
850 service_terminate(service
);
851 scmdatabase_unlock_startup(service
->db
);
853 WINE_TRACE("returning %d\n", err
);
858 void service_terminate(struct service_entry
*service
)
860 service_lock_exclusive(service
);
861 TerminateProcess(service
->process
, 0);
862 CloseHandle(service
->process
);
863 service
->process
= NULL
;
864 CloseHandle(service
->status_changed_event
);
865 service
->status_changed_event
= NULL
;
866 CloseHandle(service
->control_mutex
);
867 service
->control_mutex
= NULL
;
868 CloseHandle(service
->control_pipe
);
869 service
->control_pipe
= INVALID_HANDLE_VALUE
;
871 service
->status
.dwProcessId
= 0;
872 service
->status
.dwCurrentState
= SERVICE_STOPPED
;
873 service_unlock(service
);
876 static void load_registry_parameters(void)
878 static const WCHAR controlW
[] =
879 { 'S','y','s','t','e','m','\\',
880 'C','u','r','r','e','n','t','C','o','n','t','r','o','l','S','e','t','\\',
881 'C','o','n','t','r','o','l',0 };
882 static const WCHAR pipetimeoutW
[] =
883 {'S','e','r','v','i','c','e','s','P','i','p','e','T','i','m','e','o','u','t',0};
884 static const WCHAR killtimeoutW
[] =
885 {'W','a','i','t','T','o','K','i','l','l','S','e','r','v','i','c','e','T','i','m','e','o','u','t',0};
888 DWORD type
, count
, val
;
890 if (RegOpenKeyW( HKEY_LOCAL_MACHINE
, controlW
, &key
)) return;
892 count
= sizeof(buffer
);
893 if (!RegQueryValueExW( key
, pipetimeoutW
, NULL
, &type
, (BYTE
*)buffer
, &count
) &&
894 type
== REG_SZ
&& (val
= atoiW( buffer
)))
895 service_pipe_timeout
= val
;
897 count
= sizeof(buffer
);
898 if (!RegQueryValueExW( key
, killtimeoutW
, NULL
, &type
, (BYTE
*)buffer
, &count
) &&
899 type
== REG_SZ
&& (val
= atoiW( buffer
)))
900 service_kill_timeout
= val
;
905 int main(int argc
, char *argv
[])
907 static const WCHAR svcctl_started_event
[] = SVCCTL_STARTED_EVENT
;
910 g_hStartedEvent
= CreateEventW(NULL
, TRUE
, FALSE
, svcctl_started_event
);
911 load_registry_parameters();
912 err
= scmdatabase_create(&active_database
);
913 if (err
!= ERROR_SUCCESS
)
915 if ((err
= scmdatabase_load_services(active_database
)) != ERROR_SUCCESS
)
917 if ((err
= RPC_Init()) == ERROR_SUCCESS
)
919 scmdatabase_autostart_services(active_database
);
921 scmdatabase_wait_terminate(active_database
);
923 scmdatabase_destroy(active_database
);
925 DestroyEnvironmentBlock(env
);
927 WINE_TRACE("services.exe exited with code %d\n", err
);