-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathurl.go
260 lines (228 loc) · 5.94 KB
/
url.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
package main
// URL matching and regular expressions
import (
"log"
"net"
"net/url"
"regexp"
"strings"
"golang.org/x/net/idna"
"golang.org/x/net/publicsuffix"
)
type regexRule struct {
rule
*regexp.Regexp
}
// A regexMap is a set of regular-expression rules.
// As an optimization, it uses Aho-Corasick string matching find which regular
// expressions might match—instead of trying them all.
type regexMap struct {
stringList phraseList
rules map[string][]regexRule
}
func newRegexMap() *regexMap {
return ®exMap{
stringList: newPhraseList(),
rules: make(map[string][]regexRule),
}
}
func (rm *regexMap) findMatches(s string, tally map[rule]int) {
if len(rm.rules) == 0 {
return
}
tried := map[string]bool{}
scanner := newPhraseScanner(rm.stringList, func(p string) {
if tried[p] {
return
}
for _, r := range rm.rules[p] {
if r.MatchString(s) {
tally[r.rule] = 1
}
}
tried[p] = true
})
for i := 0; i < len(s); i++ {
scanner.scanByte(s[i])
}
// Now try the regexes that have no distinctive literal string component.
for _, r := range rm.rules[""] {
if r.MatchString(s) {
tally[r.rule] = 1
}
}
}
// addRule adds a rule to the map.
func (rm *regexMap) addRule(r simpleRule) {
s := r.content
re, err := regexp.Compile(s)
if err != nil {
log.Printf("Error parsing URL regular expression %s: %v", r, err)
return
}
ss, err := regexStrings(s)
if err != nil || ss.minLen() == 0 {
// Store this rule in the list of rules without a literal string component.
rm.rules[""] = append(rm.rules[""], regexRule{r, re})
return
}
for _, p := range ss {
rm.stringList.addPhrase(p)
rm.rules[p] = append(rm.rules[p], regexRule{r, re})
}
}
type URLMatcher struct {
fragments map[string]rule // a set of domain or domain+path URL fragments to test against
regexes *regexMap // to match whole URL
hostRegexes *regexMap // to match hostname only
domainRegexes *regexMap
pathRegexes *regexMap
queryRegexes *regexMap
publicSuffixes []string
ipAddrs IPMap
urlLists map[string]*CuckooFilter
}
// finalize should be called after all rules have been added, but before
// using the URLMatcher.
func (m *URLMatcher) finalize() {
m.regexes.stringList.findFallbackNodes(0, nil)
m.hostRegexes.stringList.findFallbackNodes(0, nil)
m.domainRegexes.stringList.findFallbackNodes(0, nil)
m.pathRegexes.stringList.findFallbackNodes(0, nil)
m.queryRegexes.stringList.findFallbackNodes(0, nil)
}
func newURLMatcher() *URLMatcher {
m := new(URLMatcher)
m.fragments = make(map[string]rule)
m.regexes = newRegexMap()
m.hostRegexes = newRegexMap()
m.domainRegexes = newRegexMap()
m.pathRegexes = newRegexMap()
m.queryRegexes = newRegexMap()
m.urlLists = make(map[string]*CuckooFilter)
return m
}
// AddRule adds a rule to the matcher (unless it's already there).
func (m *URLMatcher) AddRule(r simpleRule) {
switch r.t {
case urlMatch:
m.fragments[r.content] = r
case urlRegex:
m.regexes.addRule(r)
case hostRegex:
m.hostRegexes.addRule(r)
case domainRegex:
m.domainRegexes.addRule(r)
case pathRegex:
m.pathRegexes.addRule(r)
case queryRegex:
m.queryRegexes.addRule(r)
case ipAddr:
m.ipAddrs.add(r.content, r.content)
}
}
// MatchingRules returns a list of the rules that u matches.
// For consistency with phrase matching, it is a map with rules for keys
// and with all values equal to 1.
func (m *URLMatcher) MatchingRules(u *url.URL) map[rule]int {
result := make(map[rule]int)
host := strings.ToLower(u.Host)
// strip off the port number, if present
colon := strings.LastIndex(host, ":")
// IPv6 addresses contain colons inside brackets, so be careful.
if colon != -1 && !strings.Contains(host[colon:], "]") {
host = host[:colon]
}
host = strings.TrimSuffix(host, ".")
// Find the main domain name (e.g. "google" in "www.google.com").
suffix := publicsuffix.List.PublicSuffix(host)
for _, s := range m.publicSuffixes {
if strings.HasSuffix(host, s) && len(s) > len(suffix) && (host == s || strings.HasSuffix(host, "."+s)) {
suffix = s
}
}
if suffix != "" && suffix != host {
domain := host[:len(host)-len(suffix)-1]
dot := strings.LastIndex(domain, ".")
if dot != -1 {
domain = domain[dot+1:]
}
if idn, err := idna.ToUnicode(domain); err == nil {
domain = idn
}
m.domainRegexes.findMatches(domain, result)
}
if idn, err := idna.ToUnicode(host); err == nil {
host = idn
}
urlString := ""
if u.Scheme != "" {
urlString += strings.ToLower(u.Scheme) + ":"
}
if host != "" {
urlString += "//" + host
m.hostRegexes.findMatches(host, result)
}
path := strings.ToLower(u.Path)
m.pathRegexes.findMatches(path, result)
urlString += path
query := strings.ToLower(u.RawQuery)
if query != "" {
q, err := url.QueryUnescape(query)
if err == nil {
// Change ' ' back to '+'.
query = strings.Replace(q, " ", "+", -1)
}
m.queryRegexes.findMatches(query, result)
urlString += "?" + query
}
m.regexes.findMatches(urlString, result)
// Test for matches of the host and of the domains it belongs to.
s := host
for {
// Test for matches with the path.
s2 := s + path
for {
if r, ok := m.fragments[s2]; ok {
result[r] = 1
}
for filename, filter := range m.urlLists {
if filter.Contains(s2) {
result[simpleRule{
t: urlList,
content: filename,
}] = 1
}
}
slash := strings.LastIndex(s2, "/")
if slash < 1 {
// It's either not found, or at the first character.
break
}
s2 = s2[:slash]
}
if r, ok := m.fragments[s]; ok {
result[r] = 1
}
for filename, filter := range m.urlLists {
if filter.Contains(s) {
result[simpleRule{
t: urlList,
content: filename,
}] = 1
}
}
dot := strings.Index(s, ".")
if dot == -1 {
break
}
s = s[dot+1:]
}
if ip := net.ParseIP(host); ip != nil {
for _, ipRule := range m.ipAddrs.matches(ip) {
r := simpleRule{t: ipAddr, content: ipRule}
result[r] = 1
}
}
return result
}