-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathserviceCgo_windows.go
248 lines (207 loc) · 6.38 KB
/
serviceCgo_windows.go
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
package service
/*
#include <windows.h>
SERVICE_STATUS gSvcStatus;
SERVICE_STATUS_HANDLE gSvcStatusHandle;
HANDLE ghSvcStopEvent = NULL;
void SvcInstall(void);
void WINAPI SvcCtrlHandler( DWORD );
void WINAPI SvcMain( DWORD, LPTSTR * );
void ReportSvcStatus( DWORD, DWORD, DWORD );
static char *goServiceName;
int goSigStart = 0;
int goAckStart = 0;
HANDLE goWaitStart = NULL;
int goSigStop = 0;
int goAckStop = 0;
HANDLE goWaitStop = NULL;
int goSigError = 0;
char *errorText;
void
continueStart(int response) {
goSigStart = 0;
goAckStart = response;
SetEvent(goWaitStart);
}
void
continueStop(int response) {
goSigStop = 0;
goAckStop = response;
SetEvent(goWaitStop);
}
void
signalError(char *text) {
errorText = text;
goSigError = 1;
}
void
initService(char *serviceName) {
if(!goServiceName) {
free(goServiceName);
}
goServiceName = serviceName;
SERVICE_TABLE_ENTRY DispatchTable[] = {
{ serviceName, (LPSERVICE_MAIN_FUNCTION) SvcMain },
{ NULL, NULL }
};
// This call returns when the service has stopped.
// The process should simply terminate when the call returns.
if (!StartServiceCtrlDispatcher( DispatchTable )) {
signalError("StartServiceCtrlDispatcher");
}
}
// Entry point for the service
// dwArgc - Number of arguments in the lpszArgv array
// lpszArgv - Array of strings. The first string is the name of
// the service and subsequent strings are passed by the process
// that called the StartService function to start the service.
VOID WINAPI SvcMain( DWORD dwArgc, LPTSTR *lpszArgv )
{
// Register the handler function for the service
gSvcStatusHandle = RegisterServiceCtrlHandler(
goServiceName,
SvcCtrlHandler);
if( !gSvcStatusHandle ) {
signalError("RegisterServiceCtrlHandler");
return;
}
// These SERVICE_STATUS members remain as set here
gSvcStatus.dwServiceType = SERVICE_WIN32_OWN_PROCESS;
gSvcStatus.dwServiceSpecificExitCode = 0;
// Report initial status to the SCM
ReportSvcStatus( SERVICE_START_PENDING, NO_ERROR, 3000 );
goWaitStart = CreateEvent(NULL, TRUE, FALSE, NULL);
goWaitStop = CreateEvent(NULL, TRUE, FALSE, NULL);
// signal go to start
// wait for go to confirm
goSigStart = 1;
WaitForSingleObject(goWaitStart, INFINITE);
if(goAckStart != 1) {
ReportSvcStatus( SERVICE_STOPPED, NO_ERROR, 0 );
return;
}
// TODO: Declare and set any required variables.
// Be sure to periodically call ReportSvcStatus() with
// SERVICE_START_PENDING. If initialization fails, call
// ReportSvcStatus with SERVICE_STOPPED.
// Create an event. The control handler function, SvcCtrlHandler,
// signals this event when it receives the stop control code.
ghSvcStopEvent = CreateEvent(
NULL, // default security attributes
TRUE, // manual reset event
FALSE, // not signaled
NULL); // no name
if ( ghSvcStopEvent == NULL)
{
ReportSvcStatus( SERVICE_STOPPED, NO_ERROR, 0 );
return;
}
// Report running status when initialization is complete.
ReportSvcStatus( SERVICE_RUNNING, NO_ERROR, 0 );
while(1) {
WaitForSingleObject(ghSvcStopEvent, INFINITE);
// Signal service Stopped
ReportSvcStatus( SERVICE_STOPPED, NO_ERROR, 0 );
return;
}
}
// Sets the current service status and reports it to the SCM.
// dwCurrentState - The current state (see SERVICE_STATUS)
// dwWin32ExitCode - The system error code
// dwWaitHint - Estimated time for pending operation, in milliseconds
VOID ReportSvcStatus( DWORD dwCurrentState, DWORD dwWin32ExitCode, DWORD dwWaitHint) {
static DWORD dwCheckPoint = 1;
// Fill in the SERVICE_STATUS structure.
gSvcStatus.dwCurrentState = dwCurrentState;
gSvcStatus.dwWin32ExitCode = dwWin32ExitCode;
gSvcStatus.dwWaitHint = dwWaitHint;
if (dwCurrentState == SERVICE_START_PENDING) {
gSvcStatus.dwControlsAccepted = 0;
} else {
gSvcStatus.dwControlsAccepted = SERVICE_ACCEPT_STOP;
}
if ( (dwCurrentState == SERVICE_RUNNING) || (dwCurrentState == SERVICE_STOPPED) ) {
gSvcStatus.dwCheckPoint = 0;
} else {
gSvcStatus.dwCheckPoint = dwCheckPoint++;
}
// Report the status of the service to the SCM.
SetServiceStatus( gSvcStatusHandle, &gSvcStatus );
}
// Called by SCM whenever a control code is sent to the service
// using the ControlService function.
VOID WINAPI SvcCtrlHandler( DWORD dwCtrl ) {
// Handle the requested control code.
switch(dwCtrl) {
case SERVICE_CONTROL_STOP:
ReportSvcStatus(SERVICE_STOP_PENDING, NO_ERROR, 0);
goSigStop = 1;
WaitForSingleObject(goWaitStop, INFINITE);
if(goAckStop != 1) {
ReportSvcStatus( SERVICE_STOPPED, NO_ERROR, 0 );
return;
}
// Now signal on the initial thread to stop blocking.
SetEvent(ghSvcStopEvent);
return;
case SERVICE_CONTROL_INTERROGATE:
ReportSvcStatus(gSvcStatus.dwCurrentState, NO_ERROR, 0);
break;
default:
break;
}
}
*/
import "C"
import (
"errors"
"time"
)
// Starts a windows service routine. Service must be registered first.
// Call blocks until an error occurs or the service stops. If onStart returns
// an error, service will not start. If onStop returns an error, the service will
// stop and return that error.
func runService(serviceName string, onStart, onStop func() error) error {
// We alloc a c string here, but do not free it here
cname := C.CString(serviceName)
retErr := make(chan error, 1)
go func() {
// Check C vars on timer.
ticker := time.NewTicker(time.Second * 1)
defer ticker.Stop()
for _ = range ticker.C {
if C.goSigStart == 1 {
err := onStart()
if err != nil {
// An error was returned.
// Signal to NOT start the service.
C.continueStart(-1)
retErr <- err
return
}
C.continueStart(1)
} else if C.goSigStop == 1 {
err := onStop()
if err != nil {
// An error was returned.
// Will signal to stop service.
C.continueStop(-1)
retErr <- err
return
}
C.continueStop(1)
retErr <- nil
} else if C.goSigError == 1 {
// Check for service errors.
errText := "SERVICE ERROR: "
if C.errorText != nil {
errText += C.GoString(C.errorText)
}
retErr <- errors.New(errText)
return
}
}
}()
C.initService(cname)
return <-retErr
}