-
Notifications
You must be signed in to change notification settings - Fork 2
/
main.go
454 lines (362 loc) · 12.3 KB
/
main.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
package main
import (
"fmt"
"os"
"os/signal"
"os/user"
"path/filepath"
"strings"
"syscall"
flags "github.com/mvilche/go-flags"
)
const (
Name = "go-crond"
Author = "Martin Fabrizzio Vilche"
Version = "1.0.1"
LogPrefix = "go-crond: "
)
const (
CRONTAB_TYPE_SYSTEM = ""
)
var opts struct {
DefaultUser string ` long:"default-user" description:"Default user" default:"root"`
IncludeCronD []string ` long:"include" description:"Include files in directory as system crontabs (with user)"`
NoAuto bool ` long:"no-auto" description:"Disable automatic system crontab detection"`
RunParts []string ` long:"run-parts" description:"Execute files in directory with custom spec (like run-parts; spec-units:ns,us,s,m,h; format:time-spec:path; eg:10s,1m,1h30m)"`
RunParts1m []string ` long:"run-parts-1min" description:"Execute files in directory every beginning minute (like run-parts)"`
RunParts15m []string ` long:"run-parts-15min" description:"Execute files in directory every beginning 15 minutes (like run-parts)"`
RunPartsHourly []string ` long:"run-parts-hourly" description:"Execute files in directory every beginning hour (like run-parts)"`
RunPartsDaily []string ` long:"run-parts-daily" description:"Execute files in directory every beginning day (like run-parts)"`
RunPartsWeekly []string ` long:"run-parts-weekly" description:"Execute files in directory every beginning week (like run-parts)"`
RunPartsMonthly []string ` long:"run-parts-monthly" description:"Execute files in directory every beginning month (like run-parts)"`
AllowUnprivileged bool ` long:"allow-unprivileged" description:"Allow daemon to run as non root (unprivileged) user"`
EnableUserSwitching bool
Verbose bool `short:"v" long:"verbose" description:"verbose mode"`
ShowVersion bool `short:"V" long:"version" description:"show version and exit"`
ShowOnlyVersion bool ` long:"dumpversion" description:"show only version number and exit"`
ShowHelp bool `short:"h" long:"help" description:"show this help message"`
ConfigFile []string ` long:"configfile" description:"Include configmail to send email"`
}
var argparser *flags.Parser
var args []string
func initArgParser() []string {
var err error
argparser = flags.NewParser(&opts, flags.PassDoubleDash)
args, err = argparser.Parse()
// check if there is an parse error
if err != nil {
logFatalErrorAndExit(err, 1)
}
// --dumpversion
if opts.ShowOnlyVersion {
fmt.Println(Version)
os.Exit(0)
}
// --version
if opts.ShowVersion {
fmt.Println(fmt.Sprintf("%s version %s", Name, Version))
fmt.Println(fmt.Sprintf("Copyright (C) 2017 %s", Author))
os.Exit(0)
}
// --help
if opts.ShowHelp {
argparser.WriteHelp(os.Stdout)
os.Exit(1)
}
return args
}
// Log error object as message
func logFatalErrorAndExit(err error, exitCode int) {
if err != nil {
LoggerError.Fatalf("ERROR: %s\n", err)
} else {
LoggerError.Fatalln("ERROR: Unknown fatal error")
}
os.Exit(exitCode)
}
func findFilesInPaths(pathlist []string, callback func(os.FileInfo, string)) {
for _, path := range pathlist {
if stat, err := os.Stat(path); err == nil && stat.IsDir() {
filepath.Walk(path, func(path string, f os.FileInfo, err error) error {
path, _ = filepath.Abs(path)
if f.IsDir() {
return nil
}
if checkIfFileIsValid(f, path) {
callback(f, path)
}
return nil
})
} else {
// LoggerInfo.Printf("Path %s does not exists\n", path)
}
}
}
func findExecutabesInPathes(pathlist []string, callback func(os.FileInfo, string)) {
findFilesInPaths(pathlist, func(f os.FileInfo, path string) {
if f.Mode().IsRegular() && (f.Mode().Perm()&0100 != 0) {
callback(f, path)
} else {
LoggerInfo.Printf("Ignoring non exectuable file %s\n", path)
}
})
}
func includePathsForCrontabs(paths []string, username string) []CrontabEntry {
var ret []CrontabEntry
findFilesInPaths(paths, func(f os.FileInfo, path string) {
entries := parseCrontab(path, username)
ret = append(ret, entries...)
})
return ret
}
func includePathForCrontabs(path string, username string) []CrontabEntry {
var ret []CrontabEntry
var paths []string = []string{path}
findFilesInPaths(paths, func(f os.FileInfo, path string) {
entries := parseCrontab(path, username)
ret = append(ret, entries...)
})
return ret
}
func includeRunPartsDirectories(spec string, paths []string) []CrontabEntry {
var ret []CrontabEntry
for _, path := range paths {
ret = append(ret, includeRunPartsDirectory(spec, path)...)
}
return ret
}
func includeRunPartsDirectory(spec string, path string) []CrontabEntry {
var ret []CrontabEntry
user := opts.DefaultUser
// extract user from path
if strings.Contains(path, ":") {
split := strings.SplitN(path, ":", 2)
user, path = split[0], split[1]
}
var paths []string = []string{path}
findExecutabesInPathes(paths, func(f os.FileInfo, path string) {
ret = append(ret, CrontabEntry{Spec: spec, User: user, Command: path})
})
return ret
}
func parseCrontab(path string, username string) []CrontabEntry {
var parser *Parser
var err error
file, err := os.Open(path)
if err != nil {
LoggerError.Fatalf("crontab path: %v err:%v", path, err)
}
if username == CRONTAB_TYPE_SYSTEM {
parser, err = NewCronjobSystemParser(file)
} else {
parser, err = NewCronjobUserParser(file, username)
}
if err != nil {
LoggerError.Fatalf("Parser read err: %v", err)
}
crontabEntries := parser.Parse()
return crontabEntries
}
var configfile Config
func collectCrontabs(args []string) []CrontabEntry {
var ret []CrontabEntry
// include system default crontab
if !opts.NoAuto {
ret = append(ret, includeSystemDefaults()...)
}
// args: crontab files as normal arguments
for _, crontabPath := range args {
crontabUser := CRONTAB_TYPE_SYSTEM
if strings.Contains(crontabPath, ":") {
split := strings.SplitN(crontabPath, ":", 2)
crontabUser, crontabPath = split[0], split[1]
}
crontabAbsPath, f := fileGetAbsolutePath(crontabPath)
if checkIfFileIsValid(f, crontabAbsPath) {
entries := parseCrontab(crontabAbsPath, crontabUser)
ret = append(ret, entries...)
}
}
// --include-crond
if len(opts.IncludeCronD) >= 1 {
ret = append(ret, includePathsForCrontabs(opts.IncludeCronD, CRONTAB_TYPE_SYSTEM)...)
}
// --configfile
if len(opts.ConfigFile) >= 1 {
LoggerInfo.Println("Archivo configfile definido encontrado", opts.ConfigFile)
var c Config
configfile = ReadConfig(opts.ConfigFile)
if configfile != c {
ret = append(ret, includePathsForCrontabs(opts.ConfigFile, CRONTAB_TYPE_SYSTEM)...)
}
}
// --run-parts
if len(opts.RunParts) >= 1 {
for _, runPart := range opts.RunParts {
if strings.Contains(runPart, ":") {
split := strings.SplitN(runPart, ":", 2)
cronSpec, cronPath := split[0], split[1]
cronSpec = fmt.Sprintf("@every %s", cronSpec)
ret = append(ret, includeRunPartsDirectory(cronSpec, cronPath)...)
} else {
LoggerError.Printf("Ignoring --run-parts because of missing time spec: %s\n", runPart)
}
}
}
// --run-parts-1min
if len(opts.RunParts1m) >= 1 {
ret = append(ret, includeRunPartsDirectories("@every 1m", opts.RunParts1m)...)
}
// --run-parts-15min
if len(opts.RunParts15m) >= 1 {
ret = append(ret, includeRunPartsDirectories("*/15 * * * *", opts.RunParts15m)...)
}
// --run-parts-hourly
if len(opts.RunPartsHourly) >= 1 {
ret = append(ret, includeRunPartsDirectories("@hourly", opts.RunPartsHourly)...)
}
// --run-parts-daily
if len(opts.RunPartsDaily) >= 1 {
ret = append(ret, includeRunPartsDirectories("@daily", opts.RunPartsDaily)...)
}
// --run-parts-weekly
if len(opts.RunPartsWeekly) >= 1 {
ret = append(ret, includeRunPartsDirectories("@weekly", opts.RunPartsWeekly)...)
}
// --run-parts-monthly
if len(opts.RunPartsMonthly) >= 1 {
ret = append(ret, includeRunPartsDirectories("@monthly", opts.RunPartsMonthly)...)
}
return ret
}
func includeSystemDefaults() []CrontabEntry {
var ret []CrontabEntry
systemDetected := false
// ----------------------
// Alpine
// ----------------------
if checkIfFileExistsAndOwnedByRoot("/etc/alpine-release") {
LoggerInfo.Println(" --> detected Alpine family, using distribution defaults")
if checkIfDirectoryExists("/etc/crontabs") {
ret = append(ret, includePathForCrontabs("/etc/crontabs", opts.DefaultUser)...)
}
systemDetected = true
}
// ----------------------
// RedHat
// ----------------------
if checkIfFileExistsAndOwnedByRoot("/etc/redhat-release") {
LoggerInfo.Println(" --> detected RedHat family, using distribution defaults")
if checkIfFileExists("/etc/crontabs") {
ret = append(ret, includePathForCrontabs("/etc/crontabs", CRONTAB_TYPE_SYSTEM)...)
}
systemDetected = true
}
// ----------------------
// SuSE
// ----------------------
if checkIfFileExistsAndOwnedByRoot("/etc/SuSE-release") {
LoggerInfo.Println(" --> detected SuSE family, using distribution defaults")
if checkIfFileExists("/etc/crontab") {
ret = append(ret, includePathForCrontabs("/etc/crontab", CRONTAB_TYPE_SYSTEM)...)
}
systemDetected = true
}
// ----------------------
// Debian
// ----------------------
if checkIfFileExistsAndOwnedByRoot("/etc/debian_version") {
LoggerInfo.Println(" --> detected Debian family, using distribution defaults")
if checkIfFileExists("/etc/crontab") {
ret = append(ret, includePathForCrontabs("/etc/crontab", CRONTAB_TYPE_SYSTEM)...)
}
systemDetected = true
}
// ----------------------
// General
// ----------------------
if !systemDetected {
if checkIfFileExists("/etc/crontab") {
ret = append(ret, includePathForCrontabs("/etc/crontab", CRONTAB_TYPE_SYSTEM)...)
}
if checkIfFileExists("/etc/crontabs") {
ret = append(ret, includePathForCrontabs("/etc/crontabs", CRONTAB_TYPE_SYSTEM)...)
}
}
if checkIfDirectoryExists("/etc/cron.d") {
ret = append(ret, includePathForCrontabs("/etc/cron.d", CRONTAB_TYPE_SYSTEM)...)
}
return ret
}
func createCronRunner(args []string) *Runner {
crontabEntries := collectCrontabs(args)
runner := NewRunner()
for _, crontabEntry := range crontabEntries {
if opts.EnableUserSwitching {
runner.AddWithUser(crontabEntry)
} else {
runner.Add(crontabEntry)
}
}
return runner
}
func main() {
initLogger()
args := initArgParser()
c := make(chan os.Signal, 1)
signal.Notify(c, syscall.SIGHUP)
LoggerInfo.Printf("---------------------------------------")
LoggerInfo.Printf("Starting %s version %s", Name, Version)
LoggerInfo.Printf("Autor: Martin Fabrizzio Vilche")
LoggerInfo.Printf("---------------------------------------")
// check if user switching is possible (have to be root)
opts.EnableUserSwitching = true
currentUser, err := user.Current()
if err != nil || currentUser.Uid != "0" {
if opts.AllowUnprivileged {
opts.EnableUserSwitching = false
} else {
LoggerError.Println("ERROR: go-crond is NOT running as root, add option --allow-unprivileged if this is ok")
os.Exit(1)
}
}
// get current path
confDir, err := os.Getwd()
if err != nil {
LoggerError.Fatalf("Could not get current path: %v", err)
}
// endless daemon-reload loop
for {
// change to initial directory for fetching crontabs
err = os.Chdir(confDir)
if err != nil {
LoggerError.Fatalf("Cannot switch to path %s: %v", confDir, err)
}
// create new cron runner
runner := createCronRunner(args)
registerRunnerShutdown(runner)
// chdir to root to prevent relative path errors
os.Chdir("/")
if err != nil {
LoggerError.Fatalf("Cannot switch to path %s: %v", confDir, err)
}
// start new cron runner
runner.Start()
// check if we received SIGHUP and start a new loop
s := <-c
LoggerInfo.Println("Got signal: ", s)
runner.Stop()
LoggerInfo.Println("Reloading configuration")
}
}
func registerRunnerShutdown(runner *Runner) {
c := make(chan os.Signal, 2)
signal.Notify(c, os.Interrupt, syscall.SIGTERM)
go func() {
s := <-c
LoggerInfo.Println("Got signal: ", s)
runner.Stop()
LoggerInfo.Println("Terminated")
os.Exit(1)
}()
}