-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathblocklist.go
324 lines (259 loc) · 7.51 KB
/
blocklist.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
package main
import (
"fmt"
"net"
"bufio"
"strings"
"net/http"
"time"
"log/syslog"
"log"
"os"
"os/signal"
"syscall"
)
// BEGIN Configuration ===================================================================================================
const SleepTime = 30 * time.Minute
// Blocklist URLS need to return a list of IP addresses either in raw IP, I.e. 192.168.1.4 or
// CIDR format 192.168.0.0/16
var blocklists = []string{"https://www.spamhaus.org/drop/drop.txt",
"https://www.spamhaus.org/drop/edrop.txt",
"https://rules.emergingthreats.net/fwrules/emerging-Block-IPs.txt",
"https://lists.blocklist.de/lists/all.txt"}
// Announcement & Withdrawl strings %s will be replaced by the CIDR formatted route to add/remove
const announce_template = "announce route %s next-hop 192.0.2.1 community [65332:666]\n"
const withdraw_template = "withdraw route %s next-hop 192.0.2.1 community [65332:666]\n"
// END Configuration ===================================================================================================
type IPSet struct {
root BitNode
}
type BitNode struct {
parent,zero,one *BitNode
depth uint32
full bool
value uint32
}
var sysLog *syslog.Writer
// Process blocklists
func main () {
var ipsetCurrent = createIPSet()
logger, err := syslog.Dial("udp", "localhost:514",
syslog.LOG_INFO|syslog.LOG_DAEMON, "blocklist")
if err != nil {
log.Fatal(err)
}
sysLog = logger
// Channels to control reloading
sigs := make(chan os.Signal, 1)
again := make(chan bool, 1)
signal.Notify(sigs, syscall.SIGUSR1)
// Watch for USR1 signal and reload data.
go func() {
for 1==1 {
<-sigs
again <- true
}
}()
// Also reload based on timer.
go func() {
for 1==1 {
time.Sleep(SleepTime)
again <- true
}
}()
// Run forever, we sleep at the end of the loop
for 1==1 {
var announcements = 0
var withdrawls = 0
var ipsetNew = createIPSet()
sysLog.Info("begin blocklist refresh")
for _, url := range blocklists {
data := downloadBlocklist(url)
sysLog.Info(fmt.Sprintf("%d entries downloaded from %s\n",len(data), url))
for _, ipnet := range data {
ipsetNew.add(&ipnet)
}
}
// If IPs in the new set aren't in the current set, announce them
for _, newip := range ipsetNew.getAll() {
current := ipsetCurrent.contains(&newip)
if current == nil {
fmt.Printf(announce_template, newip.String())
announcements++
} else {
// However, if the thing that matched wasn't identical to the existing one
// I.e. more specific IP, withdraw the existing one *and* annouce the new one
if current.String() != newip.String() {
fmt.Printf(withdraw_template, current.String())
fmt.Printf(announce_template, newip.String())
announcements++
withdrawls++
}
}
}
// If IPs from the current set aren't in the new set
for _, existing := range ipsetCurrent.getAll() {
newip := ipsetNew.contains(&existing)
if newip == nil {
fmt.Printf(withdraw_template, existing.String())
withdrawls++
} else {
// However, if the thing that matched wasn't identical to the existing one
// I.e. more specific IP, withdraw the existing one *and* annouce the new one
if newip != nil && newip.String() != existing.String() {
fmt.Printf(withdraw_template, existing.String())
fmt.Printf(announce_template, newip.String())
announcements++
withdrawls++
}
}
}
ipsetCurrent = ipsetNew
sysLog.Info(fmt.Sprintf("completed with %d routes announced and %d routes withdrawn\n",announcements, withdrawls))
// Wait for the signal to go again.
<-again
}
}
func downloadBlocklist(url string) []net.IPNet {
var nets = make([]net.IPNet,0)
resp, err := http.Get(url)
if err != nil {
sysLog.Err(fmt.Sprintf("Error downloading %s: %v",url,err))
return nil
}
scanner := bufio.NewScanner(resp.Body)
for scanner.Scan() {
line := scanner.Text()
items := strings.Split(line,";")
ipnet := StringToIPNet(items[0])
if ipnet != nil {
nets = append(nets,*ipnet)
}
}
return nets
}
func createIPSet() IPSet {
return IPSet { root: BitNode{parent: nil, zero :nil, one :nil, depth: 32, full: false, value: 0} }
}
func (ipset *IPSet) add(ipnet *net.IPNet) {
if ipnet != nil {
// We can't handle IPv6 now
if ipnet.IP.To4() == nil {
return
}
var bits,_ = ipnet.Mask.Size()
var addr = IPtoInt(ipnet.IP)
addIP(&ipset.root,addr,uint32(bits))
}
}
func (ipset *IPSet) getAll() []net.IPNet {
return collectIPs(&ipset.root)
}
func (ipset *IPSet) contains(ipnet *net.IPNet) *net.IPNet {
if ipnet != nil {
var bits,_ = ipnet.Mask.Size()
var addr = IPtoInt(ipnet.IP)
return containsIP(&ipset.root,addr,uint32(bits))
} else {
return nil
}
}
func StringToIPNet(text string) *net.IPNet {
var ip,ipnet,error = net.ParseCIDR(strings.TrimSpace(text))
if error != nil {
ip = net.ParseIP(text)
if ip != nil {
ipnet = &net.IPNet{IP: ip, Mask: net.CIDRMask(32,32)}
}
}
return ipnet
}
func IPtoInt(addr net.IP) uint32 {
return uint32(addr.To4()[0]) << 24 |
uint32(addr.To4()[1]) << 16 |
uint32(addr.To4()[2]) << 8 |
uint32(addr.To4()[3])
}
func IntToIP(ip uint32) net.IP {
result := make(net.IP, 4)
result[3] = byte(ip)
result[2] = byte(ip >>8)
result[1] = byte(ip >>16)
result[0] = byte(ip >> 24)
return result
}
func CheckBit(num uint32, bit uint32) bool {
return (num & (1 << bit)) != 0
}
func collectIPs(node *BitNode) []net.IPNet {
var nets = make([]net.IPNet,0)
if node.full {
var ipnet = IPNetFromNode(node)
return []net.IPNet{ipnet}
} else {
if node.zero != nil {
nets = append(nets,collectIPs(node.zero)...)
}
if node.one != nil {
nets = append(nets,collectIPs(node.one)...)
}
}
return nets
}
func IPNetFromNode(node *BitNode) net.IPNet {
var cur = node
var accumulate uint32 = 0
var mask = int(32 - node.depth)
for cur.parent != nil {
accumulate |= cur.value << cur.depth
cur = cur.parent
}
return net.IPNet{IP: IntToIP(accumulate), Mask: net.CIDRMask(mask,32)}
}
func containsIP(node *BitNode, addr uint32, mask uint32) *net.IPNet {
if node.full {
ipnet := IPNetFromNode(node)
return &ipnet
}
if 32-node.depth > mask {
return nil
}
if CheckBit(addr,node.depth - 1) {
if node.one == nil {
return nil
} else {
return containsIP(node.one,addr,mask)
}
} else {
if node.zero == nil {
return nil
} else {
return containsIP(node.zero,addr,mask)
}
}
}
func addIP(node *BitNode, addr uint32, mask uint32) bool {
if node.depth == 0 || 32 - node.depth == mask || node.full {
node.full = true
return node.full
}
var child *BitNode
if CheckBit(addr,node.depth - 1) {
if node.one == nil {
child = &BitNode{parent: node, zero: nil, one: nil, depth: node.depth -1, full: false, value: 1}
node.one = child
} else {
child = node.one
}
} else {
if node.zero == nil {
child = &BitNode{parent: node, zero: nil, one: nil, depth: node.depth -1, full: false, value: 0 }
node.zero = child
} else {
child = node.zero
}
}
addIP(child, addr, mask)
node.full = (node.one != nil && node.one.full) && (node.zero != nil && node.zero.full)
return node.full
}