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
|
extern "C" {
#include "daemon.h"
#include "libnetdata/libnetdata.h"
int netdata_main(int argc, char *argv[]);
void signals_handle(void);
}
#include <windows.h>
__attribute__((format(printf, 1, 2)))
static void netdata_service_log(const char *fmt, ...)
{
char path[FILENAME_MAX + 1];
snprintfz(path, FILENAME_MAX, "%s/service.log", LOG_DIR);
FILE *fp = fopen(path, "a");
if (fp == NULL) {
return;
}
SYSTEMTIME time;
GetSystemTime(&time);
fprintf(fp, "%d:%d:%d - ", time.wHour, time.wMinute, time.wSecond);
va_list args;
va_start(args, fmt);
vfprintf(fp, fmt, args);
va_end(args);
fprintf(fp, "\n");
fflush(fp);
fclose(fp);
}
static SERVICE_STATUS_HANDLE svc_status_handle = nullptr;
static SERVICE_STATUS svc_status = {};
static HANDLE svc_stop_event_handle = nullptr;
static ND_THREAD *cleanup_thread = nullptr;
static bool ReportSvcStatus(DWORD dwCurrentState, DWORD dwWin32ExitCode, DWORD dwWaitHint, DWORD dwControlsAccepted)
{
static DWORD dwCheckPoint = 1;
svc_status.dwCurrentState = dwCurrentState;
svc_status.dwWin32ExitCode = dwWin32ExitCode;
svc_status.dwWaitHint = dwWaitHint;
svc_status.dwControlsAccepted = dwControlsAccepted;
if (dwCurrentState == SERVICE_RUNNING || dwCurrentState == SERVICE_STOPPED)
{
svc_status.dwCheckPoint = 0;
}
else
{
svc_status.dwCheckPoint = dwCheckPoint++;
}
if (!SetServiceStatus(svc_status_handle, &svc_status)) {
netdata_service_log("@ReportSvcStatus: SetServiceStatusFailed (%d)", GetLastError());
return false;
}
return true;
}
static HANDLE CreateEventHandle(const char *msg)
{
HANDLE h = CreateEvent(NULL, TRUE, FALSE, NULL);
if (!h)
{
netdata_service_log(msg);
if (!ReportSvcStatus(SERVICE_STOPPED, GetLastError(), 1000, 0))
{
netdata_service_log("Failed to set service status to stopped.");
}
return NULL;
}
return h;
}
static void *call_netdata_cleanup(void *arg)
{
UNUSED(arg);
// Wait until we have to stop the service
netdata_service_log("Cleanup thread waiting for stop event...");
WaitForSingleObject(svc_stop_event_handle, INFINITE);
// Stop the agent
netdata_service_log("Running netdata cleanup...");
netdata_cleanup_and_exit(0, NULL, NULL, NULL);
// Close event handle
netdata_service_log("Closing stop event handle...");
CloseHandle(svc_stop_event_handle);
// Set status to stopped
netdata_service_log("Reporting the service as stopped...");
ReportSvcStatus(SERVICE_STOPPED, 0, 0, 0);
return nullptr;
}
static void WINAPI ServiceControlHandler(DWORD controlCode)
{
switch (controlCode)
{
case SERVICE_CONTROL_STOP:
{
if (svc_status.dwCurrentState != SERVICE_RUNNING)
return;
// Set service status to stop-pending
netdata_service_log("Setting service status to stop-pending...");
if (!ReportSvcStatus(SERVICE_STOP_PENDING, 0, 5000, 0))
return;
// Create cleanup thread
netdata_service_log("Creating cleanup thread...");
char tag[NETDATA_THREAD_TAG_MAX + 1];
snprintfz(tag, NETDATA_THREAD_TAG_MAX, "%s", "CLEANUP");
cleanup_thread = nd_thread_create(tag, NETDATA_THREAD_OPTION_JOINABLE, call_netdata_cleanup, NULL);
// Signal the stop request
netdata_service_log("Signalling the cleanup thread...");
SetEvent(svc_stop_event_handle);
break;
}
case SERVICE_CONTROL_INTERROGATE:
{
ReportSvcStatus(svc_status.dwCurrentState, svc_status.dwWin32ExitCode, svc_status.dwWaitHint, svc_status.dwControlsAccepted);
break;
}
default:
break;
}
}
void WINAPI ServiceMain(DWORD argc, LPSTR* argv)
{
UNUSED(argc);
UNUSED(argv);
// Create service status handle
netdata_service_log("Creating service status handle...");
svc_status_handle = RegisterServiceCtrlHandler("Netdata", ServiceControlHandler);
if (!svc_status_handle)
{
netdata_service_log("@ServiceMain() - RegisterServiceCtrlHandler() failed...");
return;
}
// Set status to start-pending
netdata_service_log("Setting service status to start-pending...");
svc_status.dwServiceType = SERVICE_WIN32_OWN_PROCESS;
svc_status.dwServiceSpecificExitCode = 0;
svc_status.dwCheckPoint = 0;
if (!ReportSvcStatus(SERVICE_START_PENDING, 0, 5000, 0))
{
netdata_service_log("Failed to set service status to start pending.");
return;
}
// Create stop service event handle
netdata_service_log("Creating stop service event handle...");
svc_stop_event_handle = CreateEventHandle("Failed to create stop event handle");
if (!svc_stop_event_handle)
return;
// Set status to running
netdata_service_log("Setting service status to running...");
if (!ReportSvcStatus(SERVICE_RUNNING, 0, 5000, SERVICE_ACCEPT_STOP))
{
netdata_service_log("Failed to set service status to running.");
return;
}
// Run the agent
netdata_service_log("Running the agent...");
netdata_main(argc, argv);
netdata_service_log("Agent has been started...");
}
static bool update_path() {
const char *old_path = getenv("PATH");
if (!old_path) {
if (setenv("PATH", "/usr/bin", 1) != 0) {
netdata_service_log("Failed to set PATH to /usr/bin");
return false;
}
return true;
}
size_t new_path_length = strlen(old_path) + strlen("/usr/bin") + 2;
char *new_path = (char *) callocz(new_path_length, sizeof(char));
snprintfz(new_path, new_path_length, "/usr/bin:%s", old_path);
if (setenv("PATH", new_path, 1) != 0) {
netdata_service_log("Failed to add /usr/bin to PATH");
freez(new_path);
return false;
}
freez(new_path);
return true;
}
int main(int argc, char *argv[])
{
bool tty = isatty(fileno(stdin)) == 1;
if (!update_path()) {
return 1;
}
if (tty)
{
int rc = netdata_main(argc, argv);
if (rc != 10)
return rc;
signals_handle();
return 1;
}
else
{
SERVICE_TABLE_ENTRY serviceTable[] = {
{ strdupz("Netdata"), ServiceMain },
{ nullptr, nullptr }
};
if (!StartServiceCtrlDispatcher(serviceTable))
{
netdata_service_log("@main() - StartServiceCtrlDispatcher() failed...");
return 1;
}
return 0;
}
}
|