-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.go
259 lines (226 loc) · 8.99 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
/*
* go DoH daemon
*
* This is a "DNS over HTTP" (DoH) resolver written in Go.
*
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
*
* Provided to you under the terms of the BSD 3-Clause License
*
* Copyright (c) 2019. Gianpaolo Del Matto, https://github.com/gpdm, <delmatto _ at _ phunsites _ dot _ net>
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice, this
* list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
*
* 3. Neither the name of the copyright holder nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
*/
package main
import (
"encoding/json"
"flag"
"fmt"
"net/http"
"net/url"
"os"
"sync"
"github.com/sirupsen/logrus"
"github.com/spf13/viper"
// DoH lib
dohservice "github.com/gpdm/DoH/go"
goDoH "github.com/gpdm/DoH/go"
)
// setRuntimeConfig initializes the configuration defaults,
// parses configuration settings from the environment,
// potentially existing config files, and finally from CLI args
func setRuntimeConfig(logVerbose bool, logDebug bool, configFile string) {
// set config defaults
viper.SetDefault("global.listen", "")
viper.SetDefault("global.loglevel", logrus.InfoLevel)
viper.SetDefault("http.enable", false)
viper.SetDefault("http.port", "8080")
viper.SetDefault("tls.enable", true)
viper.SetDefault("tls.port", "8443")
viper.SetDefault("tls.pkey", "./conf/private.key")
viper.SetDefault("tls.cert", "./conf/public.crt")
viper.SetDefault("dns.resolvers", []string{"udp://localhost:53"})
viper.SetDefault("redis.enable", false)
viper.SetDefault("redis.addr", "localhost")
viper.SetDefault("redis.port", "6379")
viper.SetDefault("redis.password", nil)
viper.SetDefault("influx.enable", false)
viper.SetDefault("influx.url", nil)
viper.SetDefault("influx.database", nil)
viper.SetDefault("influx.username", nil)
viper.SetDefault("influx.password", nil)
// set default config file locations
viper.SetConfigName("DoH")
viper.AddConfigPath("/etc/DoH/")
viper.AddConfigPath("./conf")
// enable automatic config handling for env vars
viper.AutomaticEnv()
// perform config file/path location override magic, if given from CLI
if configFile != "" {
_, err := os.Stat(configFile)
if !os.IsNotExist(err) {
logrus.Infof("using config file from: %s", configFile)
viper.SetConfigFile(configFile)
} else if os.IsNotExist(err) {
logrus.Fatalf("error accessing '%s': %s", configFile, err)
}
}
// read configuration, and bail out on parser error
if err := viper.ReadInConfig(); err != nil {
// next line catches all errors, *except* file-not-found
if _, ok := err.(viper.ConfigFileNotFoundError); !ok {
logrus.Fatal(err)
}
}
// permit overrides to log level from CLI.
// this takes the highest precedence, and overrides
// any potentially given config settings from ENV or config file.
//
// '-debug' takes precendence over '-verbose'
if logVerbose { // overrides default log level
viper.Set("global.loglevel", dohservice.LogInform)
}
if logDebug { // overrides previous log level
viper.Set("global.loglevel", dohservice.LogDebug)
}
level := viper.GetUint("global.loglevel")
logrus.SetLevel(dohservice.LogLevels[level])
// print runtime configuration in verbose mode
b, _ := json.MarshalIndent(viper.AllSettings(), "", " ")
logrus.Infof("Runtime Configuration dump:\n%s\n", string(b))
}
// sanitizeRuntimeConfig applies some sanity checking against given
// configuration settings, and bails out if an error is encountered
func sanitizeRuntimeConfig() {
// All calls to ConsoleLogger() set fatal=true,
// which enforces an immediate abort from inside our logging routine.
// bail out if neither TLS nor plain-HTTP are enable
//
if !viper.GetBool("http.enable") && !viper.GetBool("tls.enable") {
logrus.Fatalf("Neither TLS nor plain-HTTP modes are enabled. Please check your config and set either 'tls.enable=true' or 'http.enable=true'.")
}
// bail out on missing cert/key files if TLS is enabled
//
if viper.GetBool("tls.enable") {
if _, err := os.Stat(viper.GetString("tls.pkey")); err != nil {
logrus.Fatalf("Error accessing TLS private key: %s", err)
}
if _, err := os.Stat(viper.GetString("tls.cert")); err != nil {
logrus.Fatalf("Error accessing TLS certificate: %s", err)
}
}
// check DNS resolver configuration
//
if len(viper.GetStringSlice("dns.resolvers")) == 0 {
// bail out if no DNS resolvers are configured
logrus.Fatalf("No DNS resolvers are configured")
} else {
// otherwise: parse given resolvers
for key := range viper.GetStringSlice("dns.resolvers") {
// parse URI
u, err := url.Parse(viper.GetStringSlice("dns.resolvers")[key])
if err != nil {
// bail out on URI format error
logrus.Fatalf("Given resolver looks invalid: '%s'", viper.GetStringSlice("dns.resolvers")[key])
} else {
// register valid URIs to global resolvers list
goDoH.GlobalDNSResolvers = append(goDoH.GlobalDNSResolvers,
goDoH.DNSResolver{
Hostname: u.Hostname(),
Scheme: u.Scheme,
ReqType: u.Fragment,
Port: u.Port(),
Reachable: 1, // FIXME: should be initialized false with upcoming refactoring
})
}
}
}
// finally, map assembled global resolvers to active resolvers list
goDoH.ActiveDNSResolvers = goDoH.GlobalDNSResolvers
// bail out on missing influxDB config
//
if viper.GetBool("influx.enable") && (viper.GetString("influx.url") == "" || viper.GetString("influx.username") == "" || viper.GetString("influx.password") == "" || viper.GetString("influx.database") == "") {
logrus.Fatalf("InfluxDB is enabled, but one or more required config values is not properly set.")
}
// bail out on missing redis config
//
if viper.GetBool("redis.enable") && (viper.GetString("redis.addr") == "" || viper.GetString("redis.port") == "" || viper.GetString("redis.password") == "") {
logrus.Fatalf("Redis is enabled, but one or more required config values is not properly set.")
}
}
// main is our main routine
func main() {
// wait group for go routines
var wg sync.WaitGroup
// our minimalistic CLI args support:
// - accept optional override for config file
// - also accept --verbose and --debug switches
cfConfigFile := flag.String("configfile", "", "config file (optional)")
rtVerbose := flag.Bool("verbose", false, "verbose mode")
rtDebug := flag.Bool("debug", false, "debug mode")
flag.Parse()
// assemble our runtime configuration
setRuntimeConfig(*rtVerbose, *rtDebug, *cfConfigFile)
// sanitize our config
sanitizeRuntimeConfig()
// initialize influxDB telemetry collector
TelemetryChannel := make(chan uint, 4096)
go goDoH.TelemetryCollector(TelemetryChannel)
// initialize HTTP service router
router := goDoH.NewRouter(TelemetryChannel)
// fire up optional HTTP-only server
if viper.GetBool("http.enable") {
wg.Add(1)
go func() {
defer wg.Done()
err := http.ListenAndServe(fmt.Sprintf("%s:%s", viper.GetString("global.listen"), viper.GetString("http.port")), router)
if err != nil {
logrus.Fatal(err)
}
}()
logrus.Infof("HTTP Server started (listen %s:%s)", viper.GetString("global.listen"), viper.GetString("http.port"))
}
// fire up TLS HTTP/2 server
wg.Add(1)
if viper.GetBool("tls.enable") {
go func() {
defer wg.Done()
err := http.ListenAndServeTLS(fmt.Sprintf("%s:%s", viper.GetString("global.listen"), viper.GetString("tls.port")),
viper.GetString("tls.cert"), viper.GetString("tls.pkey"), router)
if err != nil {
logrus.Fatal(err)
}
}()
logrus.Infof("TLS HTTP Server started (listen on %s:%s)", viper.GetString("global.listen"), viper.GetString("tls.port"))
}
// wait for all routines to complete
// NOTE: will not currently happen, since we don't listen to any signals yet
wg.Wait()
os.Exit(0)
}