-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathservice_windows.go
488 lines (383 loc) · 13.3 KB
/
service_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
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
// +build windows
package service
import (
"errors"
"fmt"
"strings"
"time"
"golang.org/x/sys/windows/svc"
svcMgr "golang.org/x/sys/windows/svc/mgr"
logging "github.com/codemodify/systemkit-logging"
spec "github.com/codemodify/systemkit-service-spec"
"github.com/codemodify/systemkit-service/helpers"
)
var logTag = "Windows-SERVICE"
type serviceErrorType int
const (
serviceErrorSuccess serviceErrorType = iota
serviceErrorDoesNotExist = iota
serviceErrorCantConnect = iota
serviceErrorOther = iota
)
func (thisRef serviceErrorType) String() string {
switch thisRef {
case serviceErrorSuccess:
return "Success"
case serviceErrorDoesNotExist:
return "Service Does Not Exist"
case serviceErrorCantConnect:
return "Service Can't Connect"
case serviceErrorOther:
return "Other error occured"
default:
return fmt.Sprintf("%d", int(thisRef))
}
}
type serviceError struct {
Type serviceErrorType
Error error
}
type windowsService struct {
serviceSpec spec.SERVICE
}
func newServiceFromSERVICE(serviceSpec spec.SERVICE) Service {
logging.Debugf("%s: serviceSpec object: %s", logTag, helpers.AsJSONString(serviceSpec))
return &windowsService{
serviceSpec: serviceSpec,
}
}
func newServiceFromName(name string) (Service, error) {
// quick fire
info := newServiceFromSERVICE(spec.SERVICE{Name: name}).Info()
if helpers.Is(info.Error, ErrServiceDoesNotExist) {
return nil, ErrServiceDoesNotExist
}
// if the service exists then fetch details
// wmic service "systemkit-test-service" get c
serviceSpec := spec.SERVICE{
Name: name,
Description: runWmicCommand("service", fmt.Sprintf("'%s'", name), "get", "Description"),
// Documentation: "",
Executable: runWmicCommand("service", fmt.Sprintf("'%s'", name), "get", "PathName"),
// Args: "",
// WorkingDirectory: "",
// Environment: "",
// DependsOn: "",
// Restart: "",
// DelayBeforeRestart: "",
// StdOut: "",
// StdErr: "",
// RunAsUser: "",
// RunAsGroup: "",
}
executableWithArgs := strings.Split(serviceSpec.Executable, " ")
if len(executableWithArgs) > 0 {
serviceSpec.Executable = executableWithArgs[0]
if len(executableWithArgs) > 1 {
serviceSpec.Args = executableWithArgs[1:]
}
}
return newServiceFromSERVICE(serviceSpec), nil
}
func newServiceFromPlatformTemplate(name string, template string) (Service, error) {
return nil, ErrServiceUnsupportedRequest
}
func (thisRef *windowsService) Install() error {
logging.Debugf("%s: attempting to install: %s", logTag, thisRef.serviceSpec.Name)
// 1. check if service exists
logging.Debugf("%s: check if exists: %s", logTag, thisRef.serviceSpec.Name)
winServiceManager, winService, sError := connectAndOpenService(thisRef.serviceSpec.Name)
if sError.Type == serviceErrorSuccess { // service already exists
if winService != nil {
winService.Close()
}
if winServiceManager != nil {
winServiceManager.Disconnect()
}
return nil
}
if sError.Type != serviceErrorDoesNotExist { // if any other error then return it
if winService != nil {
winService.Close()
}
if winServiceManager != nil {
winServiceManager.Disconnect()
}
logging.Errorf("%s: service '%s' encountered error %s", logTag, thisRef.serviceSpec.Name, sError.Error.Error())
return sError.Error
}
// 2. create the system service
logging.Debugf("%s: creating: '%s', binary: '%s', args: '%s'", logTag, thisRef.serviceSpec.Name, thisRef.serviceSpec.Executable, thisRef.serviceSpec.Args)
var startType uint32 = svcMgr.StartAutomatic
if !thisRef.serviceSpec.Start.AtBoot {
startType = svcMgr.StartManual
}
// FIXME: revisit dependencies
// dependencies := []string{}
// for _, dependsOn := range thisRef.serviceSpec.DependsOn {
// dependencies = append(dependencies, string(dependsOn))
// }
winService, err := winServiceManager.CreateService(
thisRef.serviceSpec.Name,
thisRef.serviceSpec.Executable,
svcMgr.Config{
DisplayName: thisRef.serviceSpec.Name,
Description: thisRef.serviceSpec.Description,
StartType: startType,
// ServiceStartName: thisRef.serviceSpec.Credentials.User, // FIXME:
// Dependencies: dependencies,
},
thisRef.serviceSpec.Args...,
)
winService.SetRecoveryActions([]svcMgr.RecoveryAction{
svcMgr.RecoveryAction{
Type: svcMgr.ServiceRestart,
Delay: time.Duration(thisRef.serviceSpec.Start.RestartTimeout) * time.Second,
},
svcMgr.RecoveryAction{
Type: svcMgr.ServiceRestart,
Delay: time.Duration(thisRef.serviceSpec.Start.RestartTimeout) * time.Second,
},
svcMgr.RecoveryAction{
Type: svcMgr.ServiceRestart,
Delay: time.Duration(thisRef.serviceSpec.Start.RestartTimeout) * time.Second,
},
svcMgr.RecoveryAction{
Type: svcMgr.ServiceRestart,
Delay: time.Duration(thisRef.serviceSpec.Start.RestartTimeout) * time.Second,
},
svcMgr.RecoveryAction{
Type: svcMgr.ServiceRestart,
Delay: time.Duration(thisRef.serviceSpec.Start.RestartTimeout) * time.Second,
},
}, 0)
if err != nil {
if winService != nil {
winService.Close()
}
if winServiceManager != nil {
winServiceManager.Disconnect()
}
logging.Errorf("%s: error creating: %s, details: %v", logTag, thisRef.serviceSpec.Name, err)
return err
}
winService.Close()
winServiceManager.Disconnect()
logging.Debugf("%s: created: '%s', binary: '%s', args: '%s'", logTag, thisRef.serviceSpec.Name, thisRef.serviceSpec.Executable, thisRef.serviceSpec.Args)
return nil
}
func (thisRef *windowsService) Uninstall() error {
// 1.
logging.Debugf("%s: attempting to uninstall: %s", logTag, thisRef.serviceSpec.Name)
winServiceManager, winService, sError := connectAndOpenService(thisRef.serviceSpec.Name)
if sError.Type == serviceErrorDoesNotExist {
return nil
} else if sError.Type != serviceErrorSuccess {
return sError.Error
}
defer winServiceManager.Disconnect()
defer winService.Close()
// 2.
err := winService.Delete()
if err != nil {
logging.Errorf("%s: failed to uninstall: %s, %v", logTag, thisRef.serviceSpec.Name, err)
return err
}
logging.Debugf("%s: uninstalled: %s", logTag, thisRef.serviceSpec.Name)
return nil
}
func (thisRef *windowsService) Start() error {
// 1.
logging.Debugf("%s: attempting to start: %s", logTag, thisRef.serviceSpec.Name)
winServiceManager, winService, sError := connectAndOpenService(thisRef.serviceSpec.Name)
if sError.Type != serviceErrorSuccess {
if winService != nil {
winService.Close()
}
if winServiceManager != nil {
winServiceManager.Disconnect()
}
if sError.Type == serviceErrorDoesNotExist {
return ErrServiceDoesNotExist
}
return sError.Error
}
defer winServiceManager.Disconnect()
defer winService.Close()
// 2.
err := winService.Start()
if err != nil {
if !strings.Contains(err.Error(), "already running") {
logging.Errorf("%s: error starting: %s, %v", logTag, thisRef.serviceSpec.Name, err)
return fmt.Errorf("error starting: %s, %v", thisRef.serviceSpec.Name, err)
}
}
logging.Debugf("%s: started: %s", logTag, thisRef.serviceSpec.Name)
return nil
}
func (thisRef *windowsService) Stop() error {
// 1.
logging.Debugf("%s: attempting to stop: %s", logTag, thisRef.serviceSpec.Name)
if thisRef.serviceSpec.OnStopDelegate != nil {
logging.Debugf("%s: OnStopDelegate before-calling: %s", logTag, thisRef.serviceSpec.Name)
thisRef.serviceSpec.OnStopDelegate()
logging.Debugf("%s: OnStopDelegate after-calling: %s", logTag, thisRef.serviceSpec.Name)
}
// 2.
err := thisRef.control(svc.Stop, svc.Stopped)
if err != nil {
e := err.Error()
if strings.Contains(e, "service does not exist") {
return ErrServiceDoesNotExist
} else if strings.Contains(e, "service has not been started") {
return nil
} else if strings.Contains(e, "the pipe has been ended") {
return nil
}
logging.Errorf("%s: error %s, details: %s", logTag, thisRef.serviceSpec.Name, err.Error())
return err
}
// 3.
attempt := 0
maxAttempts := 10
wait := 3 * time.Second
for {
attempt++
logging.Debugf("%s: waiting for service to stop", logTag)
// Wait a few seconds before retrying
time.Sleep(wait)
// Attempt to stop the service again
info := thisRef.Info()
if info.Error != nil {
if strings.Contains(info.Error.Error(), "the pipe has been ended") {
info.IsRunning = false
} else {
return info.Error
}
}
// If it is now running, exit the retry loop
if !info.IsRunning {
break
}
if attempt == maxAttempts {
return errors.New("could not stop system service after multiple attempts")
}
}
logging.Debugf("%s: stopped: %s", logTag, thisRef.serviceSpec.Name)
return nil
}
func (thisRef *windowsService) Info() Info {
result := Info{
Error: nil,
Service: thisRef.serviceSpec,
IsRunning: false,
PID: -1,
}
// 1.
logging.Debugf("%s: querying status: %s", logTag, thisRef.serviceSpec.Name)
winServiceManager, winService, sError := connectAndOpenService(thisRef.serviceSpec.Name)
if sError.Type != serviceErrorSuccess {
if winService != nil {
winService.Close()
}
if winServiceManager != nil {
winServiceManager.Disconnect()
}
if sError.Type == serviceErrorDoesNotExist {
result.Error = ErrServiceDoesNotExist
} else {
result.Error = sError.Error
}
return result
}
defer winServiceManager.Disconnect()
defer winService.Close()
// 2.
stat, err1 := winService.Query()
if err1 != nil {
logging.Errorf("%s: error getting service status: %s", logTag, err1)
result.Error = fmt.Errorf("error getting service status: %v", err1)
return result
}
logging.Debugf("%s: service status: %#v", logTag, stat)
result.PID = int(stat.ProcessId)
result.IsRunning = (stat.State == svc.Running)
if !result.IsRunning {
result.PID = -1
}
return result
}
func (thisRef *windowsService) control(serviceSpec svc.Cmd, state svc.State) error {
logging.Debugf("%s: attempting to control: %s, cmd: %v", logTag, thisRef.serviceSpec.Name, serviceSpec)
winServiceManager, winService, err := connectAndOpenService(thisRef.serviceSpec.Name)
if err.Type != serviceErrorSuccess {
return err.Error
}
defer winServiceManager.Disconnect()
defer winService.Close()
status, err1 := winService.Control(serviceSpec)
if err1 != nil {
logging.Errorf("%s: could not send control: %d, to: %s, details: %v", logTag, serviceSpec, thisRef.serviceSpec.Name, err1)
return fmt.Errorf("could not send control: %d, to: %s, details: %v", serviceSpec, thisRef.serviceSpec.Name, err1)
}
timeout := time.Now().Add(10 * time.Second)
for status.State != state {
// Exit if a timeout is reached
if timeout.Before(time.Now()) {
logging.Errorf("%s: timeout waiting for service to go to state=%d", logTag, state)
return fmt.Errorf("timeout waiting for service to go to state=%d", state)
}
time.Sleep(300 * time.Millisecond)
// Make sure transition happens to the desired state
status, err1 = winService.Query()
if err1 != nil {
logging.Errorf("%s: could not retrieve service status: %v", logTag, err1)
return fmt.Errorf("could not retrieve service status: %v", err1)
}
}
return nil
}
func connectAndOpenService(serviceName string) (*svcMgr.Mgr, *svcMgr.Service, serviceError) {
// 1.
logging.Debugf("%s: connecting to Windows Service Manager", logTag)
winServiceManager, err := svcMgr.Connect()
if err != nil {
logging.Errorf("%s: error connecting to Windows Service Manager: %v", logTag, err)
return nil, nil, serviceError{Type: serviceErrorCantConnect, Error: err}
}
// 2.
logging.Debugf("%s: opening service: %s", logTag, serviceName)
winService, err := winServiceManager.OpenService(serviceName)
if err != nil {
logging.Errorf("%s: error opening service: %s, %v", logTag, serviceName, err)
return winServiceManager, nil, serviceError{Type: serviceErrorDoesNotExist, Error: err}
}
return winServiceManager, winService, serviceError{Type: serviceErrorSuccess}
}
func (thisRef *windowsService) Exists() bool {
logging.Debugf("%s: checking existence: %s", logTag, thisRef.serviceSpec.Name)
args := []string{"queryex", fmt.Sprintf("\"%s\"", thisRef.serviceSpec.Name)}
// https://www.computerhope.com/sc-serviceSpec.htm
logging.Debugf("%s: running: 'sc %s'", logTag, strings.Join(args, " "))
_, err := helpers.ExecWithArgs("sc", args...)
if err != nil {
logging.Errorf("%s: error when checking %s", logTag, err)
return false
}
return true
}
func runWmicCommand(args ...string) string {
// wmic service "systemkit-test-service" get PathName
logging.Debugf("%s: RUN-WMIC: wmic %s", logTag, strings.Join(args, " "))
output, err := helpers.ExecWithArgs("wmic", args...)
errAsString := ""
if err != nil {
errAsString = err.Error()
}
logging.Debugf("%s: RUN-WMIC-OUT: output: %s, error: %s", logTag, output, errAsString)
lines := strings.Split(output, "\n")
if len(lines) > 1 {
return strings.TrimSpace(lines[1])
}
return ""
}