-
Notifications
You must be signed in to change notification settings - Fork 59
/
Copy pathService.cpp
346 lines (295 loc) · 7.98 KB
/
Service.cpp
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
// Service.cpp: implementation of the CService class.
//
//////////////////////////////////////////////////////////////////////
#include "StdAfx.h"
#include "Service.h"
#include "MuninNodeServer.h"
CService _Module;
//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////
CService::CService() : m_bQuiet(false)
{
}
CService::~CService()
{
}
void CService::Init(LPCTSTR pServiceName,LPCTSTR pServiceDisplayedName)
{
lstrcpy(m_szServiceName,pServiceName);
lstrcpy(m_szServiceDisplayedName,pServiceDisplayedName);
// set up the initial service status
m_hServiceStatus = NULL;
m_status.dwServiceType = SERVICE_WIN32_OWN_PROCESS;
m_status.dwCurrentState = SERVICE_STOPPED;
m_status.dwControlsAccepted = SERVICE_ACCEPT_STOP;
m_status.dwWin32ExitCode = 0;
m_status.dwServiceSpecificExitCode = 0;
m_status.dwCheckPoint = 0;
m_status.dwWaitHint = 0;
// Setup Event Log
m_EventLog.Init(m_szServiceName);
}
void CService::Start()
{
SERVICE_TABLE_ENTRY st[] =
{
{ m_szServiceName, _ServiceMain },
{ NULL, NULL }
};
if (m_bService)
{
if (!::StartServiceCtrlDispatcher(st))
{
DWORD dw = GetLastError();
LogEvent("StartServiceCtrlDispatcher Error=%d",dw);
m_bService = FALSE;
}
}
if (m_bService == FALSE)
Run();
}
void CService::ServiceMain()
{
// Register the control request handler
m_status.dwCurrentState = SERVICE_START_PENDING;
m_hServiceStatus = RegisterServiceCtrlHandler(m_szServiceName, _Handler);
if (m_hServiceStatus == NULL)
{
LogEvent("Handler not installed");
return;
}
SetServiceStatus(SERVICE_START_PENDING);
m_status.dwWin32ExitCode = S_OK;
m_status.dwCheckPoint = 0;
m_status.dwWaitHint = 0;
// When the Run function returns, the service has stopped.
Run();
SetServiceStatus(SERVICE_STOPPED);
LogEvent("Service stopped");
}
inline void CService::Handler(DWORD dwOpcode)
{
switch (dwOpcode)
{
case SERVICE_CONTROL_STOP:
LogEvent("Request to stop...");
SetServiceStatus(SERVICE_STOP_PENDING);
PostThreadMessage(m_dwThreadID, WM_QUIT, 0, 0);
break;
case SERVICE_CONTROL_PAUSE:
break;
case SERVICE_CONTROL_CONTINUE:
break;
case SERVICE_CONTROL_INTERROGATE:
break;
case SERVICE_CONTROL_SHUTDOWN:
break;
default:
LogEvent("Bad service request");
break;
}
}
void WINAPI CService::_ServiceMain(DWORD dwArgc, LPTSTR* lpszArgv)
{
_Module.ServiceMain();
}
void WINAPI CService::_Handler(DWORD dwOpcode)
{
_Module.Handler(dwOpcode);
}
void CService::SetServiceStatus(DWORD dwState)
{
m_status.dwCurrentState = dwState;
::SetServiceStatus(m_hServiceStatus, &m_status);
}
void CService::Run()
{
LogEvent("Service started");
m_dwThreadID = GetCurrentThreadId();
if (m_bService)
SetServiceStatus(SERVICE_RUNNING);
// The service is running.
MuninNodeServer *server = new MuninNodeServer();
server->JCThread_AddRef();
LogEvent("Starting Server Thread");
server->Run();
//LogEvent("Updating INI File");
// Save any changes to the INI file
// NAAAAH, never ever modify my settings
// g_Config.WriteFile();
if (m_bService)
{
BOOL bRet;
MSG msg;
while ((bRet = GetMessage(&msg,NULL,NULL,NULL)) != 0)
{
if (bRet == -1)
{
// handle the error and possibly exit
break;
}
else
{
TranslateMessage(&msg);
DispatchMessage(&msg);
}
}
}
else
{
// Let the server go for a few seconds
LogEvent("Test Mode, will exit in 100 seconds.");
Sleep(100 * 1000);
}
LogEvent("Stopping Server Thread");
// The service is going to be stopped.
server->Stop();
server->JCThread_RemoveRef();
}
BOOL CService::Install()
{
if (IsInstalled())
return TRUE;
SC_HANDLE hSCM = ::OpenSCManager(NULL, NULL, SC_MANAGER_ALL_ACCESS);
if (hSCM == NULL)
{
ShowMessage(_T("Couldn't open service manager"));
return FALSE;
}
// Get the executable file path
TCHAR szFilePath[_MAX_PATH];
::GetModuleFileName(NULL, szFilePath, _MAX_PATH);
DWORD dwStartupType = SERVICE_AUTO_START;
SC_HANDLE hService = ::CreateService(
hSCM, m_szServiceName, m_szServiceDisplayedName,
SERVICE_ALL_ACCESS, SERVICE_WIN32_OWN_PROCESS,
dwStartupType, SERVICE_ERROR_NORMAL,
szFilePath, NULL, NULL, NULL, NULL, NULL);
if (hService == NULL)
{
::CloseServiceHandle(hSCM);
ShowMessage(_T("Couldn't create service"));
return FALSE;
}
if (dwStartupType == SERVICE_AUTO_START)
StartService(hService, 0, NULL);
::CloseServiceHandle(hService);
::CloseServiceHandle(hSCM);
return TRUE;
}
BOOL CService::Uninstall(DWORD dwTimeout)
{
if (!IsInstalled())
return TRUE;
SC_HANDLE hSCM = ::OpenSCManager(NULL, NULL, SC_MANAGER_ALL_ACCESS);
if (hSCM == NULL)
{
ShowMessage(_T("Couldn't open service manager"));
return FALSE;
}
SC_HANDLE hService = ::OpenService(hSCM, m_szServiceName, SERVICE_STOP | DELETE | SERVICE_QUERY_STATUS);
if (hService == NULL)
{
::CloseServiceHandle(hSCM);
ShowMessage(_T("Couldn't open service"));
return FALSE;
}
SERVICE_STATUS status = {0};
DWORD dwStartTime = GetTickCount();
if (ControlService(hService, SERVICE_CONTROL_STOP, &status))
{
// Wait for the service to stop
while ( status.dwCurrentState != SERVICE_STOPPED )
{
Sleep( status.dwWaitHint );
if ( !QueryServiceStatus( hService, &status ) )
return FALSE;
if ( status.dwCurrentState == SERVICE_STOPPED )
break;
if ( GetTickCount() - dwStartTime > dwTimeout )
{
ShowMessage(_T("Service could not be stopped"));
return FALSE;
}
}
}
if (!m_EventLog.UnRegisterSource())
{
ShowMessage(_T("Failed to unregister event log"));
}
BOOL bDelete = ::DeleteService(hService);
::CloseServiceHandle(hService);
::CloseServiceHandle(hSCM);
if (bDelete)
return TRUE;
ShowMessage(_T("Service could not be deleted"));
return FALSE;
}
BOOL CService::IsInstalled()
{
BOOL bResult = FALSE;
SC_HANDLE hSCM = ::OpenSCManager(NULL, NULL, SC_MANAGER_ALL_ACCESS);
if (hSCM != NULL)
{
SC_HANDLE hService = ::OpenService(hSCM, m_szServiceName, SERVICE_QUERY_CONFIG);
if (hService != NULL)
{
bResult = TRUE;
::CloseServiceHandle(hService);
}
::CloseServiceHandle(hSCM);
}
return bResult;
}
///////////////////////////////////////////////////////////////////////////////////////
// Logging functions
void CService::ShowMessage(LPCTSTR szMessage)
{
if (m_bQuiet)
_tprintf(_T("%s\n"), szMessage);
else
MessageBox(NULL, szMessage, m_szServiceName, MB_OK);
}
void CService::LogEvent(LPCSTR pFormat, ...)
{
char chMsg[512];
va_list pArg;
va_start(pArg, pFormat);
_vsnprintf(chMsg, 512, pFormat, pArg);
va_end(pArg);
chMsg[511] = 0;
if (m_bService)
{
m_EventLog.Write(EVENTLOG_INFORMATION_TYPE, A2TConvert(chMsg).c_str());
}
else
{
// As we don't have an event log handle, just write the error to the console.
printf("%s", chMsg);
printf("\n");
fflush(stdout);
}
}
void CService::LogError(LPCSTR pFormat, ...)
{
char chMsg[512];
va_list pArg;
va_start(pArg, pFormat);
_vsnprintf(chMsg, 512, pFormat, pArg);
va_end(pArg);
chMsg[511] = 0;
if (m_bService)
{
bool debuglog = g_Config.GetValueB("MuninNode","DebugLog", false);
if(debuglog) m_EventLog.Write(EVENTLOG_INFORMATION_TYPE, A2TConvert(chMsg).c_str());
}
else
{
// As we don't have an event log handle, just write the error to the console.
printf("ERROR:");
printf("%s", chMsg);
printf("\n");
fflush(stdout);
}
}