-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathservice_linux.go
More file actions
324 lines (303 loc) · 8.08 KB
/
service_linux.go
File metadata and controls
324 lines (303 loc) · 8.08 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
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
//go:build linux
package cli
import (
"bytes"
"fmt"
"io/ioutil"
"log"
"os"
"os/exec"
"os/user"
"path/filepath"
"strconv"
"strings"
"syscall"
"text/template"
"time"
)
func exePath() (string, error) {
prog := os.Args[0]
p, err := filepath.Abs(prog)
if err != nil {
return "", err
}
fi, err := os.Stat(p)
if err == nil {
if !fi.Mode().IsDir() {
return p, nil
}
err = fmt.Errorf("%s is directory", p)
}
return "", err
}
// Daemonize makes the application work as a linux/windows service
func (b *Builder) Daemonize(serviceName string, serviceDescription string) *Builder {
if b.daemoize {
return b
}
b.daemoize = true
exepath, err := exePath()
if err != nil {
panic(err)
}
serviceNameDashedUnderscored := strings.ToLower(strings.ReplaceAll(serviceName, " ", "-"))
systemdServicePath := filepath.Join("/etc/systemd/system", serviceNameDashedUnderscored+".service")
existsService := func() bool {
_, err := os.Stat(systemdServicePath)
return err == nil
}
enableService := func() error {
cmd := exec.Command("systemctl", "enable", serviceNameDashedUnderscored)
out, err := cmd.CombinedOutput()
if err != nil {
return err
}
if len(out) == 0 {
return fmt.Errorf("already enabled")
}
return nil
}
disableService := func() error {
cmd := exec.Command("systemctl", "disable", serviceNameDashedUnderscored)
out, err := cmd.CombinedOutput()
if err != nil {
return err
}
if len(out) == 0 {
return fmt.Errorf("already disabled")
}
return nil
}
statusService := func() (enabled bool, running bool, err error) {
cmd := exec.Command("systemctl", "is-active", serviceNameDashedUnderscored)
out, _ := cmd.CombinedOutput()
if len(out) == 0 {
return false, false, fmt.Errorf("no output from systemctl")
}
if strings.TrimSpace(string(out)) == "active" {
running = true
}
cmd = exec.Command("systemctl", "is-enabled", serviceNameDashedUnderscored)
out, _ = cmd.CombinedOutput()
if len(out) == 0 {
return false, false, fmt.Errorf("no output from systemctl")
}
if strings.TrimSpace(string(out)) == "enabled" {
enabled = true
}
return enabled, running, nil
}
installService := func() error {
funcMap := template.FuncMap{}
tmp, err := template.New("systemd").Funcs(funcMap).Parse(systemdTemplate)
if err != nil {
return err
}
info, err := os.Stat(exepath)
if err != nil {
panic(err)
}
stat := info.Sys().(*syscall.Stat_t)
uid := stat.Uid
gid := stat.Gid
u := strconv.FormatUint(uint64(uid), 10)
g := strconv.FormatUint(uint64(gid), 10)
usr, err := user.LookupId(u)
if err != nil {
panic(err)
}
group, err := user.LookupGroupId(g)
if err != nil {
panic(err)
}
var bts bytes.Buffer
var templateData struct {
Description string
BinaryPath string
User string
Group string
CurrentWorkingDirectory string
}
templateData.Description = serviceName + " - " + serviceDescription
templateData.User = usr.Name
templateData.Group = group.Name
templateData.BinaryPath = exepath
templateData.CurrentWorkingDirectory = filepath.Dir(exepath)
if err := tmp.Execute(&bts, templateData); err != nil {
return err
}
ioutil.WriteFile(systemdServicePath, bts.Bytes(), 0664)
return nil
}
removeService := func() error {
return os.Remove(systemdServicePath)
}
stopService := func() error {
cmd := exec.Command("systemctl", "stop", serviceNameDashedUnderscored)
out, err := cmd.CombinedOutput()
if err != nil {
return err
}
if len(out) == 0 {
return fmt.Errorf("already stopped")
}
return nil
}
startService := func() error {
_, running, err := statusService()
if err != nil {
return err
} else if running {
return fmt.Errorf("already started")
}
cmd := exec.Command("systemctl", "start", serviceNameDashedUnderscored)
_, err = cmd.CombinedOutput()
if err != nil {
fmt.Println("start cmd failed")
return err
}
<-time.After(time.Second)
_, running, err = statusService()
if err != nil {
return err
} else if !running {
return fmt.Errorf("failed to start service (was not running one second after start-up)")
}
return nil
}
b.Command("install", "installs systemd service", func(runner *Runner, args Args, flags Flags) error {
if os.Getuid() != 0 {
return fmt.Errorf("you need root priviledges to install this service")
}
_, err := os.Stat("/etc/systemd/system")
if err != nil {
return fmt.Errorf("/etc/systemd/system folder missing")
}
if existsService() {
disableService()
stopService()
if err := removeService(); err != nil {
return err
}
}
if err := installService(); err != nil {
return err
}
if err := enableService(); err != nil {
return err
}
if err := startService(); err != nil {
return err
}
log.Println("service was successfully installed and started")
os.Exit(0)
return nil
})
b.Command("remove", "uninstalls systemd service", func(runner *Runner, args Args, flags Flags) error {
if os.Getuid() != 0 {
return fmt.Errorf("you need root priviledges to remove this service")
}
if existsService() {
disableService()
stopService()
if err := removeService(); err != nil {
return err
}
log.Println("service was successfully uninstalled")
} else {
return fmt.Errorf("service %s is not installed", serviceNameDashedUnderscored)
}
os.Exit(0)
return nil
})
b.Command("enable", "enables automatic start of systemd service", func(runner *Runner, args Args, flags Flags) error {
if os.Getuid() != 0 {
return fmt.Errorf("you need root priviledges to enable this service")
}
if !existsService() {
return fmt.Errorf("service %s is not installed", serviceNameDashedUnderscored)
}
if err := enableService(); err != nil {
return err
}
log.Println("automatic start of service was successfully enabled")
os.Exit(0)
return nil
})
b.Command("disable", "disables automatic start of systemd service", func(runner *Runner, args Args, flags Flags) error {
if os.Getuid() != 0 {
return fmt.Errorf("you need root priviledges to disable this service")
}
if !existsService() {
return fmt.Errorf("service %s is not installed", serviceNameDashedUnderscored)
}
if err := disableService(); err != nil {
return err
}
log.Println("automatic start of service was successfully disabled")
os.Exit(0)
return nil
})
b.Command("start", "starts systemd service", func(runner *Runner, args Args, flags Flags) error {
if os.Getuid() != 0 {
return fmt.Errorf("you need root priviledges to start this service")
}
if !existsService() {
return fmt.Errorf("service %s is not installed", serviceNameDashedUnderscored)
}
if err := startService(); err != nil {
return err
}
log.Println("service was successfully started")
os.Exit(0)
return nil
})
b.Command("stop", "stops systemd service", func(runner *Runner, args Args, flags Flags) error {
if os.Getuid() != 0 {
return fmt.Errorf("you need root priviledges to stop this service")
}
if !existsService() {
return fmt.Errorf("service %s is not installed", serviceNameDashedUnderscored)
}
if err := stopService(); err == nil {
log.Println("service was successfully stopped")
} else if err.Error() == "already stopped" {
log.Println("service was already stopped")
} else {
return err
}
os.Exit(0)
return nil
})
b.Command("status", "checks systemd service status", func(runner *Runner, args Args, flags Flags) error {
if os.Getuid() != 0 {
return fmt.Errorf("you need root priviledges to status this service")
}
if !existsService() {
return fmt.Errorf("service %s is not installed", serviceNameDashedUnderscored)
}
enabled, running, err := statusService()
if err != nil {
return err
}
log.Printf("enabled: %t, running: %t", enabled, running)
os.Exit(0)
return nil
})
return b
}
const systemdTemplate = `
[Unit]
Description={{ .Description }}
ConditionPathExists={{ .BinaryPath }}
[Service]
Type=simple
User={{ .User }}
Group={{ .Group }}
WorkingDirectory={{ .CurrentWorkingDirectory }}
Restart=always
RestartSec=3
ExecStart={{ .BinaryPath }}
[Install]
WantedBy=multi-user.target
`