forked from abh/geodns
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgeodns.go
210 lines (169 loc) · 4.71 KB
/
geodns.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
package main
/*
Copyright 2012-2015 Ask Bjørn Hansen
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import (
"flag"
"fmt"
"log"
"net"
"os"
"os/signal"
"path/filepath"
"runtime"
"runtime/pprof"
"strings"
"time"
"github.com/abh/geodns/Godeps/_workspace/src/github.com/pborman/uuid"
)
// VERSION is the current version of GeoDNS
var VERSION string = "2.6.0"
var buildTime string
var gitVersion string
// Set development with the 'devel' build flag to load
// templates from disk instead of from the binary.
var development bool
var (
serverID string
serverIP string
serverGroups []string
serverUUID = uuid.New()
)
var timeStarted = time.Now()
var (
flagconfig = flag.String("config", "./dns/", "directory of zone files")
flagcheckconfig = flag.Bool("checkconfig", false, "check configuration and exit")
flagidentifier = flag.String("identifier", "", "identifier (hostname, pop name or similar)")
flaginter = flag.String("interface", "*", "set the listener address")
flagport = flag.String("port", "53", "default port number")
flaghttp = flag.String("http", ":8053", "http listen address (:8053)")
flaglog = flag.Bool("log", false, "be more verbose")
flagcpus = flag.Int("cpus", 1, "Set the maximum number of CPUs to use")
flagLogFile = flag.String("logfile", "", "log to file")
flagPrivateDebug = flag.Bool("privatedebug", false, "Make debugging queries accepted only on loopback")
flagShowVersion = flag.Bool("version", false, "Show dnsconfig version")
cpuprofile = flag.String("cpuprofile", "", "write cpu profile to file")
memprofile = flag.String("memprofile", "", "write memory profile to this file")
)
func init() {
if len(gitVersion) > 0 {
VERSION = VERSION + "/" + gitVersion
}
log.SetPrefix("geodns ")
log.SetFlags(log.Lmicroseconds | log.Lshortfile)
}
func main() {
flag.Parse()
if *memprofile != "" {
runtime.MemProfileRate = 1024
}
if *flagShowVersion {
extra := []string{}
if len(buildTime) > 0 {
extra = append(extra, buildTime)
}
extra = append(extra, runtime.Version())
fmt.Printf("geodns %s (%s)\n", VERSION, strings.Join(extra, ", "))
os.Exit(0)
}
if len(*flagLogFile) > 0 {
logToFileOpen(*flagLogFile)
}
if len(*flagidentifier) > 0 {
ids := strings.Split(*flagidentifier, ",")
serverID = ids[0]
if len(ids) > 1 {
serverGroups = ids[1:]
}
}
configFileName := filepath.Clean(*flagconfig + "/geodns.conf")
if *flagcheckconfig {
dirName := *flagconfig
err := configReader(configFileName)
if err != nil {
log.Println("Errors reading config", err)
os.Exit(2)
}
Zones := make(Zones)
setupPgeodnsZone(Zones)
err = zonesReadDir(dirName, Zones)
if err != nil {
log.Println("Errors reading zones", err)
os.Exit(2)
}
return
}
if *flagcpus == 0 {
runtime.GOMAXPROCS(runtime.NumCPU())
} else {
runtime.GOMAXPROCS(*flagcpus)
}
log.Printf("Starting geodns %s (%s)\n", VERSION, runtime.Version())
if *cpuprofile != "" {
prof, err := os.Create(*cpuprofile)
if err != nil {
panic(err.Error())
}
pprof.StartCPUProfile(prof)
defer func() {
log.Println("closing file")
prof.Close()
}()
defer func() {
log.Println("stopping profile")
pprof.StopCPUProfile()
}()
}
go configWatcher(configFileName)
metrics := NewMetrics()
go metrics.Updater()
if *flaginter == "*" {
addrs, _ := net.InterfaceAddrs()
ips := make([]string, 0)
for _, addr := range addrs {
ip, _, err := net.ParseCIDR(addr.String())
if err != nil {
continue
}
if !(ip.IsLoopback() || ip.IsGlobalUnicast()) {
continue
}
ips = append(ips, ip.String())
}
*flaginter = strings.Join(ips, ",")
}
inter := getInterfaces()
go statHatPoster()
Zones := make(Zones)
go monitor(Zones)
go Zones.statHatPoster()
setupRootZone()
setupPgeodnsZone(Zones)
dirName := *flagconfig
go zonesReader(dirName, Zones)
for _, host := range inter {
go listenAndServe(host)
}
terminate := make(chan os.Signal)
signal.Notify(terminate, os.Interrupt)
<-terminate
log.Printf("geodns: signal received, stopping")
if *memprofile != "" {
f, err := os.Create(*memprofile)
if err != nil {
log.Fatal(err)
}
pprof.WriteHeapProfile(f)
f.Close()
}
logToFileClose()
}