-
-
Notifications
You must be signed in to change notification settings - Fork 48
/
dnscollector.go
270 lines (226 loc) · 6.43 KB
/
dnscollector.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
package main
import (
"context"
"fmt"
"os"
"os/signal"
"strconv"
"strings"
"syscall"
_ "net/http/pprof"
"github.com/dmachard/go-dnscollector/pkgconfig"
"github.com/dmachard/go-dnscollector/pkginit"
"github.com/dmachard/go-dnscollector/telemetry"
"github.com/dmachard/go-dnscollector/workers"
"github.com/dmachard/go-logger"
"github.com/natefinch/lumberjack"
"github.com/prometheus/common/version"
)
func showVersion() {
fmt.Println(version.Version)
}
func printUsage() {
fmt.Printf("Usage of %s:\n", os.Args[0])
fmt.Println(" -config string")
fmt.Println(" path to config file (default \"./config.yml\")")
fmt.Println(" -version")
fmt.Println(" Show version")
fmt.Println(" -test-config")
fmt.Println(" Test config file")
}
func InitLogger(logger *logger.Logger, config *pkgconfig.Config) {
// redirect app logs to file ?
if len(config.Global.Trace.Filename) > 0 {
logger.SetOutput(&lumberjack.Logger{
Filename: config.Global.Trace.Filename,
MaxSize: config.Global.Trace.MaxSize,
MaxBackups: config.Global.Trace.MaxBackups,
})
}
// enable the verbose mode ?
logger.SetVerbose(config.Global.Trace.Verbose)
}
func createPIDFile(pidFilePath string) (string, error) {
if _, err := os.Stat(pidFilePath); err == nil {
pidBytes, err := os.ReadFile(pidFilePath)
if err != nil {
return "", fmt.Errorf("failed to read PID file: %w", err)
}
pid, err := strconv.Atoi(string(pidBytes))
if err != nil {
return "", fmt.Errorf("invalid PID in PID file: %w", err)
}
if process, err := os.FindProcess(pid); err == nil {
if err := process.Signal(syscall.Signal(0)); err == nil {
return "", fmt.Errorf("process with PID %d is already running", pid)
}
}
}
pid := os.Getpid()
pidStr := strconv.Itoa(pid)
err := os.WriteFile(pidFilePath, []byte(pidStr), 0644)
if err != nil {
return "", fmt.Errorf("failed to write PID file: %w", err)
}
return pidStr, nil
}
func removePIDFile(config *pkgconfig.Config) {
if config.Global.PidFile != "" {
os.Remove(config.Global.PidFile)
}
}
func main() {
args := os.Args[1:] // Ignore the first argument (the program name)
verFlag := false
configPath := "./config.yml"
testFlag := false
// Server for pprof
// go func() {
// fmt.Println(http.ListenAndServe("localhost:9999", nil))
// }()
// no more use embedded golang flags...
// external lib like tcpassembly can set some uneeded flags too...
for i := 0; i < len(args); i++ {
switch args[i] {
case "-version", "-v":
verFlag = true
case "-config", "-c":
if i+1 < len(args) {
configPath = args[i+1]
i++ // Skip the next argument
} else {
fmt.Println("Missing argument for -config")
os.Exit(1)
}
case "-help", "-h":
printUsage()
os.Exit(0)
case "-test-config":
testFlag = true
default:
if strings.HasPrefix(args[i], "-") {
printUsage()
os.Exit(1)
}
}
}
if verFlag {
showVersion()
os.Exit(0)
}
done := make(chan bool)
// create logger
logger := logger.New(true)
// load config
config, err := pkgconfig.LoadConfig(configPath)
if err != nil {
fmt.Printf("main - config error: %v\n", err)
os.Exit(1)
}
// If PID file is specified in the config, create it
if config.Global.PidFile != "" {
pid, err := createPIDFile(config.Global.PidFile)
if err != nil {
fmt.Printf("main - PID file error: %v\n", err)
os.Exit(1)
}
logger.Info("main - write pid=%s to file=%s", pid, config.Global.PidFile)
}
// init logger
InitLogger(logger, config)
logger.Info("main - version=%s revision=%s", version.Version, version.Revision)
// // telemetry
if config.Global.Telemetry.Enabled {
logger.Info("main - telemetry enabled on local address: %s", config.Global.Telemetry.WebListen)
}
promServer, metrics, errTelemetry := telemetry.InitTelemetryServer(config, logger)
// init active collectors and loggers
mapLoggers := make(map[string]workers.Worker)
mapCollectors := make(map[string]workers.Worker)
// running mode,
// multiplexer ?
if pkginit.IsMuxEnabled(config) {
logger.Info("main - running in multiplexer mode")
logger.Warning("main - The multiplexer mode is deprecated. Please switch to the pipelines mode.")
pkginit.InitMultiplexer(mapLoggers, mapCollectors, config, logger)
}
// or pipeline ?
if pkginit.IsPipelinesEnabled(config) {
logger.Info("main - running in pipeline mode")
err := pkginit.InitPipelines(mapLoggers, mapCollectors, config, logger, metrics)
if err != nil {
logger.Error("main - %s", err.Error())
removePIDFile(config)
os.Exit(1)
}
}
// Handle Ctrl-C with SIG TERM and SIGHUP
sigTerm := make(chan os.Signal, 1)
sigHUP := make(chan os.Signal, 1)
signal.Notify(sigTerm, os.Interrupt, syscall.SIGTERM)
signal.Notify(sigHUP, syscall.SIGHUP)
go func() {
for {
select {
case err := <-errTelemetry:
logger.Error("main - unable to start telemetry: %v", err)
removePIDFile(config)
os.Exit(1)
case <-sigHUP:
logger.Warning("main - SIGHUP received")
// read config
err := pkgconfig.ReloadConfig(configPath, config)
if err != nil {
logger.Error("main - reload config error: %v", err)
removePIDFile(config)
os.Exit(1)
}
// reload logger and multiplexer
InitLogger(logger, config)
if pkginit.IsMuxEnabled(config) {
pkginit.ReloadMultiplexer(mapLoggers, mapCollectors, config, logger)
}
if pkginit.IsPipelinesEnabled(config) {
pkginit.ReloadPipelines(mapLoggers, mapCollectors, config, logger)
}
case <-sigTerm:
logger.Warning("main - exiting...")
// and stop all workers
for _, c := range mapCollectors {
c.Stop()
}
for _, l := range mapLoggers {
l.Stop()
}
// gracefully shutdown the HTTP server
if config.Global.Telemetry.Enabled {
logger.Info("main - telemetry is stopping")
metrics.Stop()
if err := promServer.Shutdown(context.Background()); err != nil {
logger.Error("main - telemetry error shutting down http server - %s", err.Error())
}
logger.Info("main - telemetry stopped")
}
// unblock main function
done <- true
}
}
}()
if testFlag {
// We've parsed the config and are ready to start, so the config is good enough
logger.Info("main - config OK!")
removePIDFile(config)
os.Exit(0)
}
// run all workers in background
for _, l := range mapLoggers {
go l.StartCollect()
}
for _, c := range mapCollectors {
go c.StartCollect()
}
// block main
<-done
removePIDFile(config)
logger.Info("main - stopped")
}