1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
|
// Copyright Epic Games, Inc. All Rights Reserved.
#include <zenutil/service.h>
#include <zencore/except.h>
#include <zencore/scopeguard.h>
#include <zencore/zencore.h>
#if ZEN_PLATFORM_WINDOWS
# include <zencore/windows.h>
#endif
namespace zen {
using namespace std::literals;
std::string_view
ToString(ServiceStatus Status)
{
switch (Status)
{
case ServiceStatus::NotInstalled:
return "Not installed"sv;
case ServiceStatus::Starting:
return "Starting"sv;
case ServiceStatus::Running:
return "Running"sv;
case ServiceStatus::Stopping:
return "Stopping"sv;
case ServiceStatus::Stopped:
return "Stopped"sv;
case ServiceStatus::Pausing:
return "Pausing"sv;
case ServiceStatus::Paused:
return "Paused"sv;
case ServiceStatus::Resuming:
return "Resuming"sv;
default:
ZEN_ASSERT(false);
return ""sv;
}
}
#if ZEN_PLATFORM_WINDOWS
std::error_code
InstallService(const std::filesystem::path& ExecutablePath,
std::string_view CommandLineOptions,
std::string_view ServiceName,
std::string_view ServiceDisplayName,
std::string_view ServiceDescription)
{
// Get a handle to the SCM database.
SC_HANDLE schSCManager = OpenSCManager(NULL, // local computer
NULL, // ServicesActive database
SC_MANAGER_ALL_ACCESS); // full access rights
if (NULL == schSCManager)
{
return MakeErrorCodeFromLastError();
}
auto _ = MakeGuard([schSCManager]() { CloseServiceHandle(schSCManager); });
// Create the service
ExtendableWideStringBuilder<128> Name;
Utf8ToWide(ServiceName, Name);
ExtendableWideStringBuilder<128> DisplayName;
Utf8ToWide(ServiceDisplayName, DisplayName);
ExtendableWideStringBuilder<128> Path;
Path.Append(ExecutablePath.c_str());
if (!CommandLineOptions.empty())
{
Path.AppendAscii(" ");
Utf8ToWide(CommandLineOptions, Path);
}
SC_HANDLE schService = CreateService(schSCManager, // SCM database
Name.c_str(), // name of service
DisplayName.c_str(), // service name to display
SERVICE_ALL_ACCESS, // desired access
SERVICE_WIN32_OWN_PROCESS, // service type
SERVICE_DEMAND_START, // start type
SERVICE_ERROR_NORMAL, // error control type
Path.c_str(), // path to service's binary
NULL, // no load ordering group
NULL, // no tag identifier
NULL, // no dependencies
NULL, // LocalSystem account
NULL); // no password
if (schService == NULL)
{
return MakeErrorCodeFromLastError();
}
if (!ServiceDescription.empty())
{
ExtendableWideStringBuilder<128> DescriptionBuilder;
Utf8ToWide(ServiceDescription, DescriptionBuilder);
SERVICE_DESCRIPTION Description;
Description.lpDescription = const_cast<wchar_t*>(DescriptionBuilder.c_str());
if (!ChangeServiceConfig2(schService, SERVICE_CONFIG_DESCRIPTION, &Description))
{
return MakeErrorCodeFromLastError();
}
}
CloseServiceHandle(schService);
return {};
}
std::error_code
UninstallService(std::string_view ServiceName)
{
// Get a handle to the SCM database.
SC_HANDLE schSCManager = OpenSCManager(NULL, // local computer
NULL, // ServicesActive database
SC_MANAGER_ALL_ACCESS); // full access rights
if (NULL == schSCManager)
{
return MakeErrorCodeFromLastError();
}
auto _ = MakeGuard([schSCManager]() { CloseServiceHandle(schSCManager); });
// Get a handle to the service.
ExtendableWideStringBuilder<128> Name;
Utf8ToWide(ServiceName, Name);
SC_HANDLE schService = OpenService(schSCManager, // SCM database
Name.c_str(), // name of service
DELETE); // need delete access
if (schService == NULL)
{
DWORD Error = ::GetLastError();
if (Error == ERROR_SERVICE_DOES_NOT_EXIST)
{
return {};
}
return MakeErrorCode(Error);
}
auto __ = MakeGuard([schService]() { CloseServiceHandle(schService); });
// Delete the service.
if (!DeleteService(schService))
{
return MakeErrorCodeFromLastError();
}
return {};
}
std::error_code
QueryInstalledService(std::string_view ServiceName, ServiceInfo& OutInfo)
{
// Get a handle to the SCM database.
SC_HANDLE schSCManager = OpenSCManager(NULL, // local computer
NULL, // ServicesActive database
SC_MANAGER_CONNECT); // standard access rights
if (NULL == schSCManager)
{
return MakeErrorCodeFromLastError();
}
auto _ = MakeGuard([schSCManager]() { CloseServiceHandle(schSCManager); });
// Get a handle to the service.
ExtendableWideStringBuilder<128> Name;
Utf8ToWide(ServiceName, Name);
SC_HANDLE schService = OpenService(schSCManager, // SCM database
Name.c_str(), // name of service
SERVICE_QUERY_STATUS | SERVICE_QUERY_CONFIG); // need delete access
if (schService == NULL)
{
DWORD Error = ::GetLastError();
if (Error == ERROR_SERVICE_DOES_NOT_EXIST)
{
OutInfo.Status = ServiceStatus::NotInstalled;
return {};
}
return MakeErrorCode(Error);
}
auto __ = MakeGuard([schService]() { CloseServiceHandle(schService); });
std::vector<std::uint8_t> Buffer(8192);
QUERY_SERVICE_CONFIG* ServiceConfig = reinterpret_cast<QUERY_SERVICE_CONFIG*>(Buffer.data());
DWORD BytesNeeded = 0;
if (!QueryServiceConfig(schService, ServiceConfig, (DWORD)Buffer.size(), &BytesNeeded))
{
return MakeErrorCodeFromLastError();
}
OutInfo.ExecutablePath = std::filesystem::path(ServiceConfig->lpBinaryPathName);
OutInfo.DisplayName = WideToUtf8(ServiceConfig->lpDisplayName);
SERVICE_STATUS ServiceStatus;
if (!::QueryServiceStatus(schService, &ServiceStatus))
{
return MakeErrorCodeFromLastError();
}
switch (ServiceStatus.dwCurrentState)
{
case SERVICE_STOPPED:
OutInfo.Status = ServiceStatus::Stopped;
break;
case SERVICE_START_PENDING:
OutInfo.Status = ServiceStatus::Starting;
break;
case SERVICE_STOP_PENDING:
OutInfo.Status = ServiceStatus::Stopping;
break;
case SERVICE_RUNNING:
OutInfo.Status = ServiceStatus::Running;
break;
case SERVICE_CONTINUE_PENDING:
OutInfo.Status = ServiceStatus::Resuming;
break;
case SERVICE_PAUSE_PENDING:
OutInfo.Status = ServiceStatus::Pausing;
break;
case SERVICE_PAUSED:
OutInfo.Status = ServiceStatus::Paused;
break;
default:
throw std::runtime_error(fmt::format("Unknown service status for '{}': {}", ServiceName, ServiceStatus.dwCurrentState));
}
if (!QueryServiceConfig2(schService, SERVICE_CONFIG_DESCRIPTION, Buffer.data(), (DWORD)Buffer.size(), &BytesNeeded))
{
DWORD Error = ::GetLastError();
if (Error == ERROR_INSUFFICIENT_BUFFER)
{
Buffer.resize((size_t)BytesNeeded);
if (!QueryServiceConfig2(schService, SERVICE_CONFIG_DESCRIPTION, Buffer.data(), (DWORD)Buffer.size(), &BytesNeeded))
{
return MakeErrorCodeFromLastError();
}
}
else
{
return MakeErrorCode(Error);
}
}
SERVICE_DESCRIPTION* Description = (SERVICE_DESCRIPTION*)Buffer.data();
if (Description->lpDescription != NULL)
{
OutInfo.Description = WideToUtf8(std::wstring(Description->lpDescription));
}
return {};
}
std::error_code
StartService(std::string_view ServiceName)
{
// Get a handle to the SCM database.
SC_HANDLE schSCManager = OpenSCManager(NULL, // local computer
NULL, // ServicesActive database
SC_MANAGER_CONNECT); // default access rights
if (NULL == schSCManager)
{
return MakeErrorCodeFromLastError();
}
auto _ = MakeGuard([schSCManager]() { CloseServiceHandle(schSCManager); });
// Get a handle to the service.
ExtendableWideStringBuilder<128> Name;
Utf8ToWide(ServiceName, Name);
SC_HANDLE schService = OpenService(schSCManager, // SCM database
Name.c_str(), // name of service
SERVICE_START); // need start access
if (schService == NULL)
{
return MakeErrorCodeFromLastError();
}
auto __ = MakeGuard([schService]() { CloseServiceHandle(schService); });
// Start the service.
if (!::StartService(schService, 0, NULL))
{
return MakeErrorCodeFromLastError();
}
return {};
}
std::error_code
StopService(std::string_view ServiceName)
{
// Get a handle to the SCM database.
SC_HANDLE schSCManager = OpenSCManager(NULL, // local computer
NULL, // ServicesActive database
SC_MANAGER_CONNECT); // default access rights
if (NULL == schSCManager)
{
return MakeErrorCodeFromLastError();
}
auto _ = MakeGuard([schSCManager]() { CloseServiceHandle(schSCManager); });
// Get a handle to the service.
ExtendableWideStringBuilder<128> Name;
Utf8ToWide(ServiceName, Name);
SC_HANDLE schService = OpenService(schSCManager, // SCM database
Name.c_str(), // name of service
SERVICE_STOP); // need start access
if (schService == NULL)
{
return MakeErrorCodeFromLastError();
}
auto __ = MakeGuard([schService]() { CloseServiceHandle(schService); });
// Stop the service.
SERVICE_STATUS ServiceStatus;
if (!::ControlService(schService, SERVICE_CONTROL_STOP, &ServiceStatus))
{
return MakeErrorCodeFromLastError();
}
return {};
}
#else
std::error_code
InstallService(const std::filesystem::path& ExecutablePath,
std::string_view CommandLineOptions,
std::string_view ServiceName,
std::string_view ServiceDisplayName,
std::string_view ServiceDescription)
{
ZEN_UNUSED(ExecutablePath, CommandLineOptions, ServiceName, ServiceDisplayName, ServiceDescription);
ZEN_NOT_IMPLEMENTED("InstallService");
return {};
}
std::error_code
UninstallService(std::string_view ServiceName)
{
ZEN_UNUSED(ServiceName);
ZEN_NOT_IMPLEMENTED("UninstallService");
return {};
}
std::error_code
QueryInstalledService(std::string_view ServiceName, ServiceInfo& OutStatus)
{
ZEN_UNUSED(ServiceName, OutStatus);
ZEN_NOT_IMPLEMENTED("QueryInstalledService");
return {};
}
std::error_code
StartService(std::string_view ServiceName)
{
ZEN_UNUSED(ServiceName);
ZEN_NOT_IMPLEMENTED("StartService");
return {};
}
std::error_code
StopService(std::string_view ServiceName)
{
ZEN_UNUSED(ServiceName);
ZEN_NOT_IMPLEMENTED("StopService");
return {};
}
#endif // ZEN_PLATFORM_WINDOWS
#if ZEN_PLATFORM_MAC
std::error_code
InstallService(const std::filesystem::path& ExecutablePath,
std::string_view CommandLineOptions,
std::string_view ServiceName,
std::string_view ServiceDisplayName,
std::string_view ServiceDescription)
{
const char* PlistTemplate =
"<?xml version=\"1.0\" encoding=\"UTF-8\"?>"
"<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">"
"<plist version=\"1.0\">"
"<dict>"
"<key>Label</key>"
"<string>{}</string>" // ServiceName
"<key>ProgramArguments</key>"
"<array>"
"<string>{}</string>" // Program name
"{}" // "<string>arg</string>\n" * number of arguments
"</array>"
"<key>KeepAlive</key>"
"<true/>"
// "<key>Sockets</key>"
// "<dict>"
// "<key>Listeners</key>"
// "<dict>"
// "<key>SockServiceName</key>"
// "<string>{}</string>" // Listen socket
// "<key>SockType</key>"
// "<string>tcp</string>"
// "<key>SockFamily</key>"
// "<string>IPv4</string>"
// "</dict>"
// "</dict>"
"<key>StandardOutPath</key>"
"<string>/var/log/myjob.log</string>"
"<key>StandardErrorPath</key>"
"<string>/var/log/myjob.log</string>"
"<key>Debug</key>"
"<{}/>"
"</dict>"
"</plist>";
std::string ExecutableName = ExecutablePath.filename();
const bool Debug = true;
bool IsQuote = false;
size_t Start = 0;
ExtendableStringBuilder<256> CommandLineOptions;
for (size_t Offset = 0; Offset < CommandLineOptions.length(); Offset++)
{
switch(CommandLineOptions[Offset])
{
case ' ':
if (IsQuote)
{
continue;
}
else if (Offset > Start)
{
CommandLineOptions.Append("<string>");
CommandLineOptions.Append(CommandLineOptions.substr(Start, Offset - Start));
CommandLineOptions.Append("</string>\n");
Start = Offset + 1;
}
break;
case '"':
if (IsQuite)
{
IsQuote = false;
if (Offset - Start > 1)
{
CommandLineOptions.Append("<string>");
CommandLineOptions.Append(CommandLineOptions.substr(Start + 1, (Offset - 1) - (Start + 1));
CommandLineOptions.Append("</string>\n");
}
Start = Offset + 1;
}
else{
IsQuite = true;
}
break;
default:
break;
}
}
ZEN_ASSERT(!IsQuote);
if (Offset > Start)
{
CommandLineOptions.Append("<string>");
CommandLineOptions.Append(CommandLineOptions.substr(Start, Offset - Start));
CommandLineOptions.Append("</string>\n");
}
ForEachStrTok(CommandLineOptions, ' ', <#Fn &&Func#>)
std::string PList = fmt::format(PlistTemplate, ServiceName,ExecutableName, CommandLineOptions,debug ? "true" : "false");
std::filesystem::path SymLink = std::filesystem::path("/usr/local/libexec") / ExecutableName;
if (symlink(ExecutablePath.c_str(), SymLink.c_str()) == -1)
{
return MakeErrorCodeFromLastError();
}
return {};
}
#endif // ZEN_PLATFORM_MAC
} // namespace zen
|