forked from takama/daemon
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdaemon_linux_systemv.go
More file actions
339 lines (276 loc) · 7.52 KB
/
daemon_linux_systemv.go
File metadata and controls
339 lines (276 loc) · 7.52 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
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
// Copyright 2015 Igor Dolzhikov. All rights reserved.
// Use of this source code is governed by
// license that can be found in the LICENSE file.
package daemon
import (
"errors"
"fmt"
"os"
"os/exec"
"regexp"
"text/template"
)
// systemVRecord - standard record (struct) for linux systemV version of daemon package
type systemVRecord struct {
name string
description string
}
// Standard service path for systemV daemons
func (linux *systemVRecord) servicePath() string {
return "/etc/init.d/" + linux.name
}
// Check service is installed
func (linux *systemVRecord) checkInstalled() bool {
if _, err := os.Stat(linux.servicePath()); err == nil {
return true
}
return false
}
// Check service is running
func (linux *systemVRecord) checkRunning() (string, bool) {
output, err := exec.Command("service", linux.name, "status").Output()
if err == nil {
if matched, err := regexp.MatchString(linux.name, string(output)); err == nil && matched {
reg := regexp.MustCompile("pid ([0-9]+)")
data := reg.FindStringSubmatch(string(output))
if len(data) > 1 {
return "Service (pid " + data[1] + ") is running...", true
}
return "Service is running...", true
}
}
return "Service is stopped", false
}
func (linux *systemVRecord) InstallFromPath(thePath string) (string, error) {
installAction := "Install " + linux.description + ":"
if checkPrivileges() == false {
return installAction + failed, errors.New(rootPrivileges)
}
srvPath := linux.servicePath()
if linux.checkInstalled() == true {
return installAction + failed, errors.New(linux.description + " already installed")
}
file, err := os.Create(srvPath)
if err != nil {
return installAction + failed, err
}
defer file.Close()
isexec, err := IsExecutable(thePath)
if err != nil {
return installAction + failed, err
}
if !isexec {
return installAction + failed, fmt.Errorf("target is not executable: %s", thePath)
}
templ, err := template.New("systemVConfig").Parse(systemVConfig)
if err != nil {
return installAction + failed, err
}
if err := templ.Execute(
file,
&struct {
Name, Description, Path string
}{linux.name, linux.description, thePath},
); err != nil {
return installAction + failed, err
}
if err := os.Chmod(srvPath, 0755); err != nil {
return installAction + failed, err
}
for _, i := range [...]string{"2", "3", "4", "5"} {
if err := os.Symlink(srvPath, "/etc/rc"+i+".d/S87"+linux.name); err != nil {
continue
}
}
for _, i := range [...]string{"0", "1", "6"} {
if err := os.Symlink(srvPath, "/etc/rc"+i+".d/K17"+linux.name); err != nil {
continue
}
}
return installAction + success, nil
}
// Install the service
func (linux *systemVRecord) Install() (string, error) {
installAction := "Install " + linux.description + ":"
execPatch, err := executablePath(linux.name)
if err != nil {
return installAction + failed, err
}
return linux.InstallFromPath(execPatch)
}
// Remove the service
func (linux *systemVRecord) Remove() (string, error) {
removeAction := "Removing " + linux.description + ":"
if checkPrivileges() == false {
return removeAction + failed, errors.New(rootPrivileges)
}
if linux.checkInstalled() == false {
return removeAction + failed, errors.New(linux.description + " is not installed")
}
if err := os.Remove(linux.servicePath()); err != nil {
return removeAction + failed, err
}
for _, i := range [...]string{"2", "3", "4", "5"} {
if err := os.Remove("/etc/rc" + i + ".d/S87" + linux.name); err != nil {
continue
}
}
for _, i := range [...]string{"0", "1", "6"} {
if err := os.Remove("/etc/rc" + i + ".d/K17" + linux.name); err != nil {
continue
}
}
return removeAction + success, nil
}
// Start the service
func (linux *systemVRecord) Start() (string, error) {
startAction := "Starting " + linux.description + ":"
if checkPrivileges() == false {
return startAction + failed, errors.New(rootPrivileges)
}
if linux.checkInstalled() == false {
return startAction + failed, errors.New(linux.description + " is not installed")
}
if _, status := linux.checkRunning(); status == true {
return startAction + failed, errors.New("service already running")
}
if err := exec.Command("service", linux.name, "start").Run(); err != nil {
return startAction + failed, err
}
return startAction + success, nil
}
// Stop the service
func (linux *systemVRecord) Stop() (string, error) {
stopAction := "Stopping " + linux.description + ":"
if checkPrivileges() == false {
return stopAction + failed, errors.New(rootPrivileges)
}
if linux.checkInstalled() == false {
return stopAction + failed, errors.New(linux.description + " is not installed")
}
if _, status := linux.checkRunning(); status == false {
return stopAction + failed, errors.New("service already stopped")
}
if err := exec.Command("service", linux.name, "stop").Run(); err != nil {
return stopAction + failed, err
}
return stopAction + success, nil
}
// Status - Get service status
func (linux *systemVRecord) Status() (string, error) {
if checkPrivileges() == false {
return "", errors.New(rootPrivileges)
}
if linux.checkInstalled() == false {
return "Status could not defined", errors.New(linux.description + " is not installed")
}
statusAction, _ := linux.checkRunning()
return statusAction, nil
}
var systemVConfig = `#! /bin/sh
#
# /etc/rc.d/init.d/{{.Name}}
#
# Starts {{.Name}} as a daemon
#
# chkconfig: 2345 87 17
# description: Starts and stops a single {{.Name}} instance on this system
### BEGIN INIT INFO
# Provides: {{.Name}}
# Required-Start: $network $named
# Required-Stop: $network $named
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Short-Description: This service manages the {{.Description}}.
# Description: {{.Description}}
### END INIT INFO
#
# Source function library.
#
# LSB support
is_lsb=false
if [ -f /etc/rc.d/init.d/functions ]; then
. /etc/rc.d/init.d/functions
else
if [ -f /lib/lsb/init-functions ]; then
is_lsb=true
. /lib/lsb/init-functions
fi
fi
exec="{{.Path}}"
servname="{{.Description}}"
proc=$(basename $exec)
pidfile="/var/run/$proc.pid"
lockfile="/var/lock/subsys/$proc"
stdoutlog="/var/log/$proc.log"
stderrlog="/var/log/$proc.err"
[ -d $(dirname $lockfile) ] || mkdir -p $(dirname $lockfile)
[ -e /etc/sysconfig/$proc ] && . /etc/sysconfig/$proc
start() {
[ -x $exec ] || exit 5
if ! [ -f $pidfile ]; then
printf "Starting $servname:\t"
echo "$(date)" >> $stdoutlog
$exec >> $stdoutlog 2>> $stderrlog &
echo $! > $pidfile
touch $lockfile
if [ "$is_lsb" = true ]; then
log_success_msg "OK"
else
success
fi
echo
else
if [ "$is_lsb" = true ]; then
log_failure_msg "Failure"
else
failure
fi
echo
printf "$pidfile still exists...\n"
exit 7
fi
}
stop() {
echo -n $"Stopping $servname: "
killproc -p $pidfile $proc
retval=$?
echo
[ $retval -eq 0 ] && rm -f $lockfile $pidfile
return $retval
}
restart() {
stop
start
}
rh_status() {
if [ "$is_lsb" = true ]; then
status_of_proc -p $pidfile $proc
else
status -p $pidfile $proc
fi
}
rh_status_q() {
rh_status >/dev/null 2>&1
}
case "$1" in
start)
rh_status_q && exit 0
$1
;;
stop)
rh_status_q || exit 0
$1
;;
restart)
$1
;;
status)
rh_status
;;
*)
echo $"Usage: $0 {start|stop|status|restart}"
exit 2
esac
exit $?
`