-
Notifications
You must be signed in to change notification settings - Fork 108
/
updater.go
191 lines (153 loc) · 4.21 KB
/
updater.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
package main
import (
"bufio"
"fmt"
"io"
"net/http"
"net/url"
"os"
"path/filepath"
"regexp"
"strings"
"sync"
)
var timesSeen = make(map[string]int)
var whitelist = make(map[string]bool)
// Update downloads all the blocklists and imports them into the database
func update(blockCache *MemoryBlockCache, wlist []string, blist []string, sources []string) error {
if _, err := os.Stat("sources"); os.IsNotExist(err) {
if err := os.Mkdir("sources", 0700); err != nil {
return fmt.Errorf("error creating sources directory: %s", err)
}
}
for _, entry := range wlist {
whitelist[entry] = true
}
for _, entry := range blist {
err := blockCache.Set(entry, true)
if err != nil {
logger.Critical(err)
}
}
if err := fetchSources(sources); err != nil {
return fmt.Errorf("error fetching sources: %s", err)
}
return nil
}
func downloadFile(uri string, name string) error {
filePath := filepath.FromSlash(fmt.Sprintf("sources/%s", name))
output, err := os.Create(filePath)
if err != nil {
return fmt.Errorf("error creating file: %s", err)
}
defer func() {
if err := output.Close(); err != nil {
logger.Criticalf("Error closing file: %s\n", err)
}
}()
response, err := http.Get(uri)
if err != nil {
return fmt.Errorf("error downloading source: %s", err)
}
defer func(Body io.ReadCloser) {
err := Body.Close()
if err != nil {
}
}(response.Body)
if _, err := io.Copy(output, response.Body); err != nil {
return fmt.Errorf("error copying output: %s", err)
}
return nil
}
func fetchSources(sources []string) error {
var wg sync.WaitGroup
for _, uri := range sources {
wg.Add(1)
u, _ := url.Parse(uri)
host := u.Host
timesSeen[host] = timesSeen[host] + 1
fileName := fmt.Sprintf("%s.%d.list", host, timesSeen[host])
go func(uri string, name string) {
logger.Debugf("fetching source %s\n", uri)
if err := downloadFile(uri, name); err != nil {
fmt.Println(err)
}
wg.Done()
}(uri, fileName)
}
wg.Wait()
return nil
}
// UpdateBlockCache updates the BlockCache
func updateBlockCache(blockCache *MemoryBlockCache, sourceDirs []string) error {
logger.Debugf("loading blocked domains from %d locations...\n", len(sourceDirs))
for _, dir := range sourceDirs {
if _, err := os.Stat(dir); os.IsNotExist(err) {
logger.Errorf("directory %s not found, skipping\n", dir)
continue
}
err := filepath.Walk(dir, func(path string, f os.FileInfo, _ error) error {
if !f.IsDir() {
fileName := filepath.FromSlash(path)
if err := parseHostFile(fileName, blockCache); err != nil {
return fmt.Errorf("error parsing hostfile %s", err)
}
}
return nil
})
if err != nil {
return fmt.Errorf("error walking location %s", err)
}
}
logger.Debugf("%d domains loaded from sources\n", blockCache.Length())
return nil
}
func parseHostFile(fileName string, blockCache *MemoryBlockCache) error {
file, err := os.Open(fileName)
if err != nil {
return fmt.Errorf("error opening file: %s", err)
}
defer func() {
if err := file.Close(); err != nil {
logger.Criticalf("Error closing file: %s\n", err)
}
}()
scanner := bufio.NewScanner(file)
for scanner.Scan() {
line := scanner.Text()
line = strings.Split(line, "#")[0]
line = strings.TrimSpace(line)
if len(line) > 0 {
fields := strings.Fields(line)
if len(fields) > 1 {
line = fields[1]
} else {
line = fields[0]
}
if !blockCache.Exists(line) && !whitelist[line] {
err := blockCache.Set(line, true)
if err != nil {
logger.Critical(err)
}
}
}
}
if err := scanner.Err(); err != nil {
return fmt.Errorf("error scanning hostfile: %s", err)
}
return nil
}
// PerformUpdate updates the block cache by building a new one and swapping
// it for the old cache.
func PerformUpdate(config *Config, forceUpdate bool) *MemoryBlockCache {
newBlockCache := &MemoryBlockCache{Backend: make(map[string]bool), Special: make(map[string]*regexp.Regexp)}
if _, err := os.Stat("lists"); os.IsNotExist(err) || forceUpdate {
if err := update(newBlockCache, config.Whitelist, config.Blocklist, config.Sources); err != nil {
logger.Fatal(err)
}
}
if err := updateBlockCache(newBlockCache, config.SourceDirs); err != nil {
logger.Fatal(err)
}
return newBlockCache
}