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
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
|
// Copyright Epic Games, Inc. All Rights Reserved.
#include <zenutil/service.h>
#include <zencore/except.h>
#include <zencore/process.h>
#include <zencore/scopeguard.h>
#include <zencore/zencore.h>
#include <string_view>
#if ZEN_PLATFORM_WINDOWS
# include <zencore/windows.h>
# include <zenutil/windows/service.h>
#endif
#if ZEN_PLATFORM_MAC
# include <zencore/filesystem.h>
# include <zencore/fmtutils.h>
# include <unistd.h>
# include <sys/stat.h>
#endif
#if ZEN_PLATFORM_LINUX
# include <zencore/filesystem.h>
# include <zencore/fmtutils.h>
# include <unistd.h>
# include <sys/stat.h>
# include <regex>
ZEN_THIRD_PARTY_INCLUDES_START
# include <systemd/sd-daemon.h>
ZEN_THIRD_PARTY_INCLUDES_END
#endif
namespace zen {
using namespace std::literals;
void
ReportServiceStatus(ServiceStatus Status)
{
#if ZEN_PLATFORM_WINDOWS
switch (Status)
{
case ServiceStatus::Starting:
ReportSvcStatus(SERVICE_START_PENDING, NO_ERROR, 3000);
break;
case ServiceStatus::Running:
ReportSvcStatus(SERVICE_RUNNING, NO_ERROR, 0);
break;
case ServiceStatus::Stopping:
ReportSvcStatus(SERVICE_STOP_PENDING, NO_ERROR, 0);
break;
case ServiceStatus::Stopped:
ReportSvcStatus(SERVICE_STOPPED, (DWORD)ApplicationExitCode(), 0);
break;
default:
break;
}
#elif ZEN_PLATFORM_LINUX
switch (Status)
{
case ServiceStatus::Running:
sd_notify(0, "READY=1");
break;
case ServiceStatus::Stopping:
sd_notify(0, "STOPPING=1");
break;
case ServiceStatus::Stopped:
sd_notifyf(0, "EXIT_STATUS=%d", ApplicationExitCode());
break;
}
#endif
(void)Status;
}
namespace {
#if ZEN_PLATFORM_WINDOWS
bool SplitExecutableAndArgs(const std::wstring& ExeAndArgs, std::filesystem::path& OutExecutablePath, std::string& OutArguments)
{
if (ExeAndArgs.size())
{
if (ExeAndArgs[0] == '"')
{
std::wstring::size_type ExecutableEnd = ExeAndArgs.find('"', 1);
if (ExecutableEnd == std::wstring::npos)
{
OutExecutablePath = ExeAndArgs;
return true;
}
else
{
OutExecutablePath = ExeAndArgs.substr(0, ExecutableEnd + 1);
OutArguments = WideToUtf8(ExeAndArgs.substr(ExecutableEnd + 1 + ExeAndArgs[ExecutableEnd + 1] == ' ' ? 1 : 0));
return true;
}
}
else
{
std::wstring::size_type ExecutableEnd = ExeAndArgs.find(' ', 1);
if (ExecutableEnd == std::wstring::npos)
{
OutExecutablePath = ExeAndArgs;
return true;
}
else
{
OutExecutablePath = ExeAndArgs.substr(0, ExecutableEnd);
OutArguments = WideToUtf8(ExeAndArgs.substr(ExecutableEnd + 1));
return true;
}
}
}
return false;
}
#endif // ZEN_PLATFORM_WINDOWS
#if ZEN_PLATFORM_MAC
std::vector<std::string_view> SplitArguments(std::string_view Arguments)
{
bool IsQuote = false;
size_t Start = 0;
size_t Offset = 0;
std::vector<std::string_view> Result;
for (; Offset < Arguments.length(); Offset++)
{
switch (Arguments[Offset])
{
case ' ':
if (IsQuote)
{
continue;
}
else if (Offset > Start)
{
Result.push_back(Arguments.substr(Start, Offset - Start));
Start = Offset + 1;
}
break;
case '"':
if (IsQuote)
{
IsQuote = false;
if (Offset - Start > 1)
{
Result.push_back(Arguments.substr(Start + 1, Offset - (Start + 1)));
}
Start = Offset + 1;
}
else
{
IsQuote = true;
}
break;
case '=':
if (IsQuote)
{
continue;
}
else if (Offset > Start)
{
Result.push_back(Arguments.substr(Start, Offset - Start));
Start = Offset + 1;
}
break;
default:
break;
}
}
ZEN_ASSERT(!IsQuote);
if (Offset > Start)
{
Result.push_back(Arguments.substr(Start, Offset - Start));
}
return Result;
}
// Needs special character escaping
void AppendEscaped(std::string_view String, StringBuilderBase& SB)
{
size_t Offset = 0;
while (Offset < String.length())
{
size_t NextEscapeCharacter = String.find_first_of("\"'<>&", Offset);
if (NextEscapeCharacter == std::string_view::npos)
{
break;
}
if (NextEscapeCharacter > Offset)
{
SB.Append(String.substr(Offset, NextEscapeCharacter - Offset));
}
switch (String[NextEscapeCharacter])
{
case '"':
SB.Append(""");
break;
case '\'':
SB.Append("&apos");
break;
case '<':
SB.Append("<");
break;
case '>':
SB.Append(">");
break;
case '&':
SB.Append("&");
break;
default:
ZEN_ASSERT(false);
break;
}
Offset = NextEscapeCharacter + 1;
}
if (Offset == 0)
{
SB.Append(String);
}
else if (String.length() > Offset)
{
SB.Append(String.substr(Offset));
}
}
std::string GetDaemonName(std::string_view ServiceName) { return fmt::format("com.epicgames.unreal.{}", ServiceName); }
std::filesystem::path GetPListPath(const std::string& DaemonName)
{
const std::filesystem::path PListFolder = "/Library/LaunchDaemons";
return PListFolder / (DaemonName + ".plist");
}
std::string BuildPlist(std::string_view ServiceName,
const std::filesystem::path& ExecutablePath,
std::string_view CommandLineOptions,
std::string_view DaemonName,
bool Debug)
{
std::vector<std::string_view> Arguments = SplitArguments(CommandLineOptions);
ExtendableStringBuilder<256> ProgramArguments;
for (const std::string_view Argument : Arguments)
{
ProgramArguments.Append(" <string>");
AppendEscaped(Argument, ProgramArguments);
ProgramArguments.Append("</string>\n");
}
return fmt::format(
"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n"
"<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n"
"<plist version=\"1.0\">\n"
"<dict>\n"
" <key>Label</key>\n"
" <string>{}</string>\n" // DaemonName
" \n"
" <key>ProgramArguments</key>\n"
" <array>\n"
" <string>{}</string>\n" // Program name
"{}" // "<string>arg</string>\n" * number of arguments
" </array>\n"
" \n"
" <key>RunAtLoad</key>\n"
" <true/>\n"
" \n"
// " <key>KeepAlive</key>\n"
// " <true/>\n"
// " \n"
" <key>StandardOutPath</key>\n"
" <string>/var/log/{}.log</string>\n"
" \n"
" <key>StandardErrorPath</key>\n"
" <string>/var/log/{}.err.log</string>\n"
" \n"
" <key>Debug</key>\n"
" <{}/>\n"
" \n"
"</dict>\n"
"</plist>\n",
DaemonName,
ExecutablePath,
ProgramArguments.ToView(),
ServiceName,
ServiceName,
Debug ? "true"sv : "false"sv);
// "<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>"
}
#endif // ZEN_PLATFORM_MAC
#if ZEN_PLATFORM_MAC || ZEN_PLATFORM_LINUX
std::pair<int, std::string> ExecuteProgram(std::string_view Cmd)
{
std::string Data;
const int BufferSize = 256;
char Buffer[BufferSize];
std::string Command(Cmd);
Command.append(" 2>&1");
ZEN_DEBUG("Running: '{}'", Command);
FILE* Stream = popen(Command.c_str(), "r");
if (Stream)
{
while (!feof(Stream))
{
if (fgets(Buffer, BufferSize, Stream) != NULL)
{
Data.append(Buffer);
}
}
while (!Data.empty() && isspace(Data[Data.length() - 1]))
{
Data.pop_back();
}
int Res = -1;
int Status = pclose(Stream);
if (Status < 0)
{
ZEN_DEBUG("Command {} returned {}, errno {}", Command, Status, errno);
return {Status, Data};
}
uint64_t WaitMS = 100;
if (WIFEXITED(Status))
{
Res = WEXITSTATUS(Status);
}
if (Res != 0 && Res != (128 + 13))
{
return {Res, Data};
}
return {0, Data};
}
return {errno, ""};
}
#endif // ZEN_PLATFORM_MAC || ZEN_PLATFORM_LINUX
#if ZEN_PLATFORM_LINUX
std::string GetUnitName(std::string_view ServiceName) { return fmt::format("com.epicgames.unreal.{}", ServiceName); }
std::filesystem::path GetServiceUnitPath(const std::string& UnitName)
{
const std::filesystem::path SystemUnitFolder = "/etc/systemd/system/";
return SystemUnitFolder / (UnitName + ".service");
}
std::string BuildUnitFile(std::string_view ServiceName,
const std::filesystem::path& ExecutablePath,
std::string_view CommandLineOptions,
std::string_view UserName)
{
return fmt::format(
"[Unit]\n"
"Description={}\n"
"Documentation=https://github.com/epicgames/zen\n"
"\n"
"DefaultDependencies=no\n"
"After=network.target\n"
"StartLimitIntervalSec=0\n"
"\n"
"[Service]\n"
"Type=notify\n"
"Restart=always\n"
"RestartSec=1\n"
"User={}\n"
"ExecStart={} {}\n"
"RuntimeDirectory={}\n"
"[Install]\n"
"WantedBy=multi-user.target",
ServiceName,
UserName,
ExecutablePath,
CommandLineOptions,
ExecutablePath.parent_path());
}
#endif // ZEN_PLATFORM_LINUX
} // namespace
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(std::string_view ServiceName, const ServiceSpec& Spec)
{
// TODO: Is "LocalService account" the correct account?
// TODO: Is ther eother parameters/security settings that we need to set up properly?
// 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(Spec.DisplayName, DisplayName);
ExtendableWideStringBuilder<128> Path;
Path.Append(Spec.ExecutablePath.c_str());
if (!Spec.CommandLineOptions.empty())
{
Path.AppendAscii(" ");
Utf8ToWide(Spec.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_AUTO_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
TEXT("NT AUTHORITY\\LocalService"), // LocalService account
NULL); // no password
if (schService == NULL)
{
return MakeErrorCodeFromLastError();
}
auto __ = MakeGuard([schService]() { CloseServiceHandle(schService); });
if (!Spec.Description.empty())
{
ExtendableWideStringBuilder<128> DescriptionBuilder;
Utf8ToWide(Spec.Description, DescriptionBuilder);
SERVICE_DESCRIPTION Description;
Description.lpDescription = const_cast<wchar_t*>(DescriptionBuilder.c_str());
if (!ChangeServiceConfig2(schService, SERVICE_CONFIG_DESCRIPTION, &Description))
{
return MakeErrorCodeFromLastError();
}
}
// Actions defining what the service manager should do in the event of a zenserver crash.
// Attempt an immediate restart twice. If both restarts fail, stop trying.
// The attempt count will be reset based on the timeout specified in SERVICE_FAILURE_ACTIONS.
// If the service manages to survive for the length of that timeout, the reset attempt count
// will be reset and we will try restarting if we fail again.
SC_ACTION Actions[] = {{SC_ACTION_RESTART, 0}, {SC_ACTION_RESTART, 0}, {SC_ACTION_NONE, 0}};
SERVICE_FAILURE_ACTIONS FailureAction = {
60, // if we haven't failed for one minute, assume the service is healthy and reset the failure count
NULL, // no reboot message - we don't want to reboot the whole system if zen dies
NULL, // no command to run on failure - just attempt restarting the service
ZEN_ARRAY_COUNT(Actions),
Actions};
if (!ChangeServiceConfig2(schService, SERVICE_CONFIG_FAILURE_ACTIONS, &FailureAction))
{
return MakeErrorCodeFromLastError();
}
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();
}
std::wstring BinaryWithArguments(ServiceConfig->lpBinaryPathName);
(void)SplitExecutableAndArgs(BinaryWithArguments, OutInfo.Spec.ExecutablePath, OutInfo.Spec.CommandLineOptions);
OutInfo.Spec.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.Spec.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 {};
}
#endif
#if ZEN_PLATFORM_MAC
std::error_code
InstallService(std::string_view ServiceName, const ServiceSpec& Spec)
{
// TODO: Do we need to create a separate user for the service or is running as the default service user OK?
const std::string DaemonName = GetDaemonName(ServiceName);
std::string PList = BuildPlist(ServiceName, Spec.ExecutablePath, Spec.CommandLineOptions, DaemonName, true);
const std::filesystem::path PListPath = GetPListPath(DaemonName);
ZEN_INFO("Writing launchd plist to {}", PListPath.string());
try
{
zen::WriteFile(PListPath, IoBuffer(IoBuffer::Wrap, PList.data(), PList.size()));
}
catch (const std::system_error& Ex)
{
return MakeErrorCode(Ex.code().value());
}
ZEN_INFO("Changing permissions to 644 for {}", PListPath.string());
if (chmod(PListPath.string().c_str(), 0644) == -1)
{
return MakeErrorCodeFromLastError();
}
return {};
}
std::error_code
UninstallService(std::string_view ServiceName)
{
const std::string DaemonName = GetDaemonName(ServiceName);
const std::filesystem::path PListPath = GetPListPath(DaemonName);
ZEN_INFO("Attempting to remove launchd plist from {}", PListPath.string());
std::error_code Ec;
std::filesystem::remove(PListPath, Ec);
return Ec;
}
std::error_code
QueryInstalledService(std::string_view ServiceName, ServiceInfo& OutInfo)
{
OutInfo.Status = ServiceStatus::NotInstalled;
const std::string DaemonName = GetDaemonName(ServiceName);
const std::filesystem::path PListPath = GetPListPath(DaemonName);
if (std::filesystem::is_regular_file(PListPath))
{
OutInfo.Status = ServiceStatus::Stopped;
{
// Parse plist :(
IoBuffer Buffer = ReadFile(PListPath).Flatten();
MemoryView Data = Buffer.GetView();
std::string PList((const char*)Data.GetData(), Data.GetSize());
enum class ParseMode
{
None,
ExpectingProgramArgumentsArray,
ExpectingProgramExecutablePath,
ExpectingCommandLineOption
};
ParseMode Mode = ParseMode::None;
ForEachStrTok(PList, '\n', [&](std::string_view Line) {
switch (Mode)
{
case ParseMode::None:
{
if (Line.find("<key>ProgramArguments</key>") != std::string_view::npos)
{
Mode = ParseMode::ExpectingProgramArgumentsArray;
return true;
}
}
break;
case ParseMode::ExpectingProgramArgumentsArray:
{
if (Line.find("<array>") != std::string_view::npos)
{
Mode = ParseMode::ExpectingProgramExecutablePath;
return true;
}
Mode = ParseMode::None;
}
break;
case ParseMode::ExpectingProgramExecutablePath:
{
if (std::string_view::size_type ArgStart = Line.find("<string>"); ArgStart != std::string_view::npos)
{
ArgStart += 8;
if (std::string_view::size_type ArgEnd = Line.find("</string>", ArgStart); ArgEnd != std::string_view::npos)
{
std::string_view ProgramString = Line.substr(ArgStart, ArgEnd - ArgStart);
OutInfo.Spec.ExecutablePath = ProgramString;
Mode = ParseMode::ExpectingCommandLineOption;
return true;
}
}
Mode = ParseMode::None;
}
break;
case ParseMode::ExpectingCommandLineOption:
{
if (std::string_view::size_type ArgStart = Line.find("</array>"); ArgStart != std::string_view::npos)
{
Mode = ParseMode::None;
return true;
}
else if (std::string_view::size_type ArgStart = Line.find("<string>"); ArgStart != std::string_view::npos)
{
ArgStart += 8;
if (std::string_view::size_type ArgEnd = Line.find("</string>", ArgStart); ArgEnd != std::string_view::npos)
{
std::string_view ArgumentString = Line.substr(ArgStart, ArgEnd - ArgStart);
if (!OutInfo.Spec.CommandLineOptions.empty())
{
OutInfo.Spec.CommandLineOptions += " ";
}
OutInfo.Spec.CommandLineOptions += ArgumentString;
return true;
}
}
Mode = ParseMode::None;
}
break;
}
return true;
});
}
{
std::pair<int, std::string> Res = ExecuteProgram(fmt::format("launchctl list {}", DaemonName));
if (Res.first == 0 && !Res.second.empty())
{
ForEachStrTok(Res.second, '\n', [&](std::string_view Line) {
if (Line.find("\"PID\"") != std::string_view::npos)
{
std::string_view::size_type PidStart = Line.find('=');
std::string_view::size_type PidEnd = Line.find(';');
std::string_view PidString = Line.substr(PidStart + 2, PidEnd - (PidStart + 2));
if (ParseInt<int>(PidString).has_value())
{
OutInfo.Status = ServiceStatus::Running;
}
return false;
}
return true;
});
// Parse installed info
}
}
}
return {};
}
std::error_code
StartService(std::string_view ServiceName)
{
const std::string DaemonName = GetDaemonName(ServiceName);
const std::filesystem::path PListPath = GetPListPath(DaemonName);
std::pair<int, std::string> Res = ExecuteProgram(fmt::format("launchctl bootstrap system {}", PListPath));
if (Res.first != 0)
{
return MakeErrorCode(Res.first);
}
return {};
}
std::error_code
StopService(std::string_view ServiceName)
{
const std::string DaemonName = GetDaemonName(ServiceName);
const std::filesystem::path PListPath = GetPListPath(DaemonName);
/*
std::pair<int, std::string> Res = ExecuteProgram(fmt::format("launchctl bootout system ", PListPath.));
if (Res.first != 0)
{
return MakeErrorCode(Res.first);
}
*/
return {};
}
#endif // ZEN_PLATFORM_MAC
#if ZEN_PLATFORM_LINUX
std::error_code
InstallService(std::string_view ServiceName, const ServiceSpec& Spec)
{
const std::string UnitName = GetUnitName(ServiceName);
const std::filesystem::path ServiceUnitPath = GetServiceUnitPath(UnitName);
std::string UserName = Spec.UserName;
if (UserName == "")
{
std::pair<int, std::string> UserResult = ExecuteProgram("echo $SUDO_USER");
if (UserResult.first != 0 || UserResult.second.empty())
{
ZEN_ERROR("Unable to determine current user");
return MakeErrorCode(UserResult.first);
}
UserName = UserResult.second;
}
std::string UnitFile = BuildUnitFile(ServiceName, Spec.ExecutablePath, Spec.CommandLineOptions, UserName);
ZEN_DEBUG("Writing systemd unit file to {}", ServiceUnitPath.string());
try
{
zen::WriteFile(ServiceUnitPath, IoBuffer(IoBuffer::Wrap, UnitFile.data(), UnitFile.size()));
}
catch (const std::system_error& Ex)
{
return MakeErrorCode(Ex.code().value());
}
ZEN_DEBUG("Changing permissions to 644 for {}", ServiceUnitPath.string());
if (chmod(ServiceUnitPath.string().c_str(), 0644) == -1)
{
return MakeErrorCodeFromLastError();
}
std::pair<int, std::string> Res = ExecuteProgram("systemctl daemon-reload");
if (Res.first != 0 && Res.first != -1)
{
ZEN_ERROR("systemctl daemon-reload failed with {}: '{}'", Res.first, Res.second);
return MakeErrorCode(Res.first);
}
Res = ExecuteProgram(fmt::format("systemctl enable {}", UnitName));
if (Res.first != 0 && Res.first != -1)
{
ZEN_ERROR("systemctl enable failed with {}: '{}'", Res.first, Res.second);
return MakeErrorCode(Res.first);
}
return {};
}
std::error_code
UninstallService(std::string_view ServiceName)
{
const std::string UnitName = GetUnitName(ServiceName);
const std::filesystem::path ServiceUnitPath = GetServiceUnitPath(UnitName);
std::pair<int, std::string> Res = ExecuteProgram(fmt::format("systemctl disable {}", UnitName));
if (Res.first != 0 && Res.first != -1)
{
ZEN_ERROR("systemctl disable failed with {}: '{}'", Res.first, Res.second);
return MakeErrorCode(Res.first);
}
ZEN_DEBUG("Attempting to remove systemd unit file from {}", ServiceUnitPath.string());
std::error_code Ec;
std::filesystem::remove(ServiceUnitPath, Ec);
if (Ec)
{
ZEN_ERROR("failed to remove {}: '{}'", ServiceUnitPath, Ec.message());
return Ec;
}
Res = ExecuteProgram("systemctl daemon-reload");
if (Res.first != 0 && Res.first != -1)
{
ZEN_ERROR("systemctl daemon-reload failed with {}: '{}'", Res.first, Res.second);
return MakeErrorCode(Res.first);
}
return {};
}
std::error_code
QueryInstalledService(std::string_view ServiceName, ServiceInfo& OutInfo)
{
const std::string UnitName = GetUnitName(ServiceName);
const std::filesystem::path ServiceUnitPath = GetServiceUnitPath(UnitName);
OutInfo.Status = ServiceStatus::NotInstalled;
if (std::filesystem::is_regular_file(ServiceUnitPath))
{
OutInfo.Status = ServiceStatus::Stopped;
std::pair<int, std::string> Res = ExecuteProgram(fmt::format("systemctl is-active --quiet {}", UnitName));
if (Res.first == 0)
{
OutInfo.Status = ServiceStatus::Running;
std::pair<int, std::string> ShowResult = ExecuteProgram(fmt::format("systemctl show -p ExecStart {}", UnitName));
if (ShowResult.first == 0)
{
std::regex Regex(R"~(ExecStart=\{ path=(.*?) ; argv\[\]=(.*?) ;)~");
std::smatch Match;
if (std::regex_search(ShowResult.second, Match, Regex))
{
std::string Executable = Match[1].str();
std::string CommandLine = Match[2].str();
OutInfo.Spec.ExecutablePath = Executable;
OutInfo.Spec.CommandLineOptions = CommandLine.substr(Executable.size(), CommandLine.size());
}
else
{
ZEN_WARN("Failed to parse output of systemctl show: {}", ShowResult.second);
}
}
else
{
ZEN_WARN("Failed to read start info from systemctl: error code {}", ShowResult.first);
}
}
else
{
ZEN_DEBUG("systemctl status failed with '{}'({})", Res.second, Res.first);
}
}
return {};
}
std::error_code
StartService(std::string_view ServiceName)
{
// TODO: Starting the service returns -1 from ExecuteProgram, so the service won't start
// TODO: Running start from command line gives no output but the service does not start - not sure what is wrong.
// Starting the same command line for the service using `sudo` *will* start the service sucessfully so I
// assume that the Unit file or some config is wrong/missing.
const std::string UnitName = GetUnitName(ServiceName);
const std::filesystem::path ServiceUnitPath = GetServiceUnitPath(UnitName);
std::pair<int, std::string> Res = ExecuteProgram(fmt::format("systemctl start {}", UnitName));
if (Res.first != 0)
{
ZEN_ERROR("service start failed with {}: '{}'", Res.first, Res.second);
return MakeErrorCode(Res.first);
}
return {};
}
std::error_code
StopService(std::string_view ServiceName)
{
// TODO: Stopping the service returns -1 from ExecuteProgram, maybe this ie expected as I have yet to successfully start the service
// using systemctl start
const std::string UnitName = GetUnitName(ServiceName);
const std::filesystem::path ServiceUnitPath = GetServiceUnitPath(UnitName);
std::pair<int, std::string> Res = ExecuteProgram(fmt::format("systemctl stop {}", UnitName));
if (Res.first != 0)
{
ZEN_ERROR("service stop failed with {}: '{}'", Res.first, Res.second);
return MakeErrorCode(Res.first);
}
return {};
}
#endif // ZEN_PLATFORM_LINUX
} // namespace zen
|