-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwindows_service.go
More file actions
91 lines (78 loc) · 1.94 KB
/
windows_service.go
File metadata and controls
91 lines (78 loc) · 1.94 KB
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
package main
import (
"log"
"sync"
"golang.org/x/sys/windows/svc"
"golang.org/x/sys/windows/svc/debug"
)
type pInjectService struct{}
func (m *pInjectService) Execute(args []string, r <-chan svc.ChangeRequest, status chan<- svc.Status) (bool, uint32) {
const cmdsAccepted = svc.AcceptStop | svc.AcceptShutdown
status <- svc.Status{State: svc.StartPending}
status <- svc.Status{State: svc.Running, Accepts: cmdsAccepted}
var (
wg sync.WaitGroup
quitInjector chan struct{}
injectorActive bool
)
startInjectorGoroutine := func() {
if injectorActive {
return
}
quitInjector = make(chan struct{})
wg.Add(1)
go func() {
defer wg.Done()
for _, inject := range AppConfig.ProcessInjections {
go injectorRoutine(inject.Processes,
inject.ProcessInjectionDLLPath,
inject.ProcessInjectionDLLFunction,
inject.ProcessInjectionDLLFunctionArg,
inject.ProcessInjectionRefreshInterval,
inject.MaxInjectionRetry,
quitInjector)
}
}()
injectorActive = true
}
stopInjectorGoroutine := func() {
if !injectorActive {
return
}
close(quitInjector)
wg.Wait()
injectorActive = false
}
startInjectorGoroutine()
serviceLoop:
for {
select {
case c := <-r:
switch c.Cmd {
case svc.Interrogate:
status <- c.CurrentStatus
case svc.Stop, svc.Shutdown:
logMessage(LOGLEVEL_INFO, "Shutting down process injector service.")
stopInjectorGoroutine()
break serviceLoop
default:
log.Printf("Unexpected service control request #%d", c)
}
}
}
status <- svc.Status{State: svc.StopPending}
return false, 0
}
func runService(name string, isDebug bool) {
if isDebug {
err := debug.Run(name, &pInjectService{})
if err != nil {
log.Fatalln("Error running process injector in interactive mode:", err)
}
} else {
err := svc.Run(name, &pInjectService{})
if err != nil {
log.Fatalln("Error running process injector in Service Control mode:", err)
}
}
}