-
Notifications
You must be signed in to change notification settings - Fork 35
/
pacrunner.go
365 lines (337 loc) · 10.1 KB
/
pacrunner.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
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
// Copyright 2019, 2021, 2023 The Alpaca Authors
//
// 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.
package main
import (
"encoding/binary"
"errors"
"net"
"net/url"
"strings"
"sync"
"time"
"github.com/gobwas/glob"
"github.com/robertkrimen/otto"
)
// https://developer.mozilla.org/en-US/docs/Web/HTTP/Proxy_servers_and_tunneling/Proxy_Auto-Configuration_(PAC)_file
type PACRunner struct {
vm *otto.Otto
sync.Mutex
}
func (pr *PACRunner) Update(pacjs []byte) error {
vm := otto.New()
var err error
set := func(name string, handler func(otto.FunctionCall) otto.Value) {
if err != nil {
return
}
err = vm.Set(name, handler)
}
set("isPlainHostName", isPlainHostName)
set("dnsDomainIs", dnsDomainIs)
set("localHostOrDomainIs", localHostOrDomainIs)
set("isResolvable", isResolvable)
set("isInNet", isInNet)
set("dnsResolve", dnsResolve)
set("convert_addr", convertAddr)
set("myIpAddress", myIpAddress)
set("dnsDomainLevels", dnsDomainLevels)
set("shExpMatch", shExpMatch)
set("weekdayRange", func(fc otto.FunctionCall) otto.Value {
return weekdayRange(fc, time.Now())
})
set("dateRange", func(fc otto.FunctionCall) otto.Value {
return dateRange(fc, time.Now())
})
set("timeRange", func(fc otto.FunctionCall) otto.Value {
return timeRange(fc, time.Now())
})
if err != nil {
return err
}
_, err = vm.Run(pacjs)
if err != nil {
return err
}
pr.vm = vm
return nil
}
func (pr *PACRunner) FindProxyForURL(u url.URL) (string, error) {
pr.Lock()
defer pr.Unlock()
if u.Scheme == "" {
// When a net/http Server parses a CONNECT request, the URL will
// have no Scheme. In that case, assume the scheme is "https".
u.Scheme = "https"
}
if u.Scheme == "https" || u.Scheme == "wss" {
// Strip the path and query components of https:// URLs.
// https://developer.mozilla.org/en-US/docs/Web/HTTP/Proxy_servers_and_tunneling/Proxy_Auto-Configuration_(PAC)_file#Parameters
// Like Chrome, also strip the path and query for wss:// URLs (secure WebSockets).
// https://cs.chromium.org/chromium/src/net/proxy_resolution/proxy_resolution_service.cc?rcl=fba6691ffca770dd0c916418601b9c9c019a2929&l=383
// It also seems like a good idea to strip the fragment, so do that too.
u.Path = "/"
u.RawPath = "/"
u.RawQuery = ""
u.Fragment = ""
}
val, err := pr.vm.Call("FindProxyForURL", nil, u.String(), u.Hostname())
if err != nil {
return "", err
} else if !val.IsString() {
return "", errors.New("FindProxyForURL didn't return a string")
}
return val.String(), nil
}
func toValue(unwrapped interface{}) otto.Value {
wrapped, err := otto.ToValue(unwrapped)
if err != nil {
return otto.UndefinedValue()
} else {
return wrapped
}
}
func isPlainHostName(call otto.FunctionCall) otto.Value {
host := call.Argument(0).String()
return toValue(!strings.ContainsRune(host, '.'))
}
func dnsDomainIs(call otto.FunctionCall) otto.Value {
host := call.Argument(0).String()
domain := call.Argument(1).String()
return toValue(strings.HasSuffix(host, domain))
}
func localHostOrDomainIs(call otto.FunctionCall) otto.Value {
host := call.Argument(0).String()
hostdom := call.Argument(1).String()
return toValue(host == hostdom || strings.HasPrefix(hostdom, host+"."))
}
func isResolvable(call otto.FunctionCall) otto.Value {
host := call.Argument(0).String()
_, err := net.LookupHost(host)
return toValue(err == nil)
}
func isInNet(call otto.FunctionCall) otto.Value {
host := call.Argument(0).String()
pattern := call.Argument(1).String()
mask := call.Argument(2).String()
buf := net.ParseIP(mask).To4()
if len(buf) != 4 {
return toValue(false)
}
m := net.IPv4Mask(buf[0], buf[1], buf[2], buf[3])
maskedIP := resolve(host).Mask(m)
maskedPattern := net.ParseIP(pattern).To4().Mask(m)
return toValue(maskedIP.Equal(maskedPattern))
}
func dnsResolve(call otto.FunctionCall) otto.Value {
host := call.Argument(0).String()
return toValue(resolve(host).String())
}
func resolve(host string) net.IP {
if ip := net.ParseIP(host); ip != nil {
// The given host is already an IP(v4) address; just return it.
return ip.To4()
}
addrs, err := net.LookupHost(host)
if err != nil {
return nil
}
for _, addr := range addrs {
// There might be multiple IP addresses for this host. Return the first IPv4 address
// that we can find.
if ipv4 := net.ParseIP(addr).To4(); ipv4 != nil {
return ipv4
}
}
return nil
}
func convertAddr(call otto.FunctionCall) otto.Value {
ipaddr := call.Argument(0).String()
ipv4 := net.ParseIP(ipaddr).To4()
if ipv4 == nil {
return toValue(0)
}
return toValue(binary.BigEndian.Uint32(ipv4))
}
func myIpAddress(call otto.FunctionCall) otto.Value {
// When the host has multiple IPs, Chrome seems to go to some length to find the best one
// (see https://cs.chromium.org/chromium/src/net/proxy_resolution/pac_library.cc?g=0&l=22),
// but we'll just return the first non-loopback IPv4 address that we find (or "127.0.0.1" if
// there are none) and hope this is good enough.
addrs, err := net.InterfaceAddrs()
if err != nil {
return otto.UndefinedValue()
}
for _, addr := range addrs {
s := addr.String()
// Remove the first rune that is not either a digit or a dot, as well as anything
// that follows it. This turns strings like "192.0.2.1:25" and "192.168.1.6/24" into
// parsable IPv4 addresses.
if i := strings.IndexFunc(s, func(r rune) bool {
return !strings.ContainsRune("0123456789.", r)
}); i != -1 {
s = s[0:i]
}
if ipv4 := net.ParseIP(s).To4(); ipv4 != nil && !ipv4.IsLoopback() {
return toValue(ipv4.String())
}
}
return toValue("127.0.0.1")
}
func dnsDomainLevels(call otto.FunctionCall) otto.Value {
host := call.Argument(0).String()
return toValue(strings.Count(host, "."))
}
func shExpMatch(call otto.FunctionCall) otto.Value {
str := call.Argument(0).String()
shexp := call.Argument(1).String()
g, err := glob.Compile(shexp)
if err != nil {
return otto.UndefinedValue()
}
return toValue(g.Match(str))
}
func weekdayRange(call otto.FunctionCall, now time.Time) otto.Value {
if call.Argument(len(call.ArgumentList)-1).String() == "GMT" {
now = now.In(time.UTC)
}
weekdays := map[string]time.Weekday{
"SUN": time.Sunday, "MON": time.Monday, "TUE": time.Tuesday, "WED": time.Wednesday,
"THU": time.Thursday, "FRI": time.Friday, "SAT": time.Saturday,
}
wd1, ok := weekdays[call.Argument(0).String()]
if !ok {
return otto.UndefinedValue()
}
wd2, ok := weekdays[call.Argument(1).String()]
if !ok {
return toValue(now.Weekday() == wd1)
} else if wd1 <= wd2 {
return toValue(wd1 <= now.Weekday() && now.Weekday() <= wd2)
} else {
return toValue(wd1 == now.Weekday() || wd2 == now.Weekday())
}
}
func dateRange(call otto.FunctionCall, now time.Time) otto.Value {
argc := len(call.ArgumentList)
if call.Argument(argc-1).String() == "GMT" {
now = now.In(time.UTC)
argc--
}
var days []int
var months []time.Month
var years []int
monthmap := map[string]time.Month{
"JAN": time.January, "FEB": time.February, "MAR": time.March,
"APR": time.April, "MAY": time.May, "JUN": time.June,
"JUL": time.July, "AUG": time.August, "SEP": time.September,
"OCT": time.October, "NOV": time.November, "DEC": time.December,
}
for i := 0; i < argc; i++ {
if call.Argument(i).IsNumber() {
n, err := call.Argument(i).ToInteger()
if err != nil {
return otto.UndefinedValue()
} else if 1 <= n && n <= 31 {
days = append(days, int(n))
} else {
years = append(years, int(n))
}
} else if month, ok := monthmap[call.Argument(i).String()]; ok {
months = append(months, month)
} else {
return otto.UndefinedValue()
}
}
switch max(len(days), len(months), len(years)) {
case 1:
// One (possibly partial) date provided; match it against the current date.
if len(days) == 1 && days[0] != now.Day() {
return otto.FalseValue()
} else if len(months) == 1 && months[0] != now.Month() {
return otto.FalseValue()
} else if len(years) == 1 && years[0] != now.Year() {
return otto.FalseValue()
} else {
return otto.TrueValue()
}
case 2:
// Two dates provided; check that the current date is inside the range.
y1, m1, d1 := now.Date()
y2, m2, d2 := now.Date()
if len(days) == 2 {
d1, d2 = days[0], days[1]
}
if len(months) == 2 {
m1, m2 = months[0], months[1]
}
if len(years) == 2 {
y1, y2 = years[0], years[1]
}
h, m, s := now.Clock()
ns, loc := now.Nanosecond(), now.Location()
start := time.Date(y1, m1, d1, h, m, s, ns, loc)
end := time.Date(y2, m2, d2, h, m, s, ns, loc)
return toValue(!start.After(now) && !end.Before(now))
default:
// Zero, three or more dates provided. Something's wrong.
return otto.UndefinedValue()
}
}
func max(a, b, c int) int {
if a >= b && a >= c {
return a
} else if b >= c {
return b
} else {
return c
}
}
func timeRange(call otto.FunctionCall, now time.Time) otto.Value {
argc := len(call.ArgumentList)
if call.Argument(argc-1).String() == "GMT" {
now = now.In(time.UTC)
argc--
}
h1, m1, s1, h2, m2, s2 := 0, 0, 0, 0, 0, 0
var err error
toInt := func(idx int) int {
val, err2 := call.Argument(idx).ToInteger()
if err2 != nil {
err = err2
}
return int(val)
}
switch argc {
case 1:
h1 = toInt(0)
h2 = h1 + 1
case 2:
h1 = toInt(0)
h2 = toInt(1)
case 4:
h1, m1 = toInt(0), toInt(1)
h2, m2 = toInt(2), toInt(3)
case 6:
h1, m1, s1 = toInt(0), toInt(1), toInt(2)
h2, m2, s2 = toInt(3), toInt(4), toInt(5)
default:
return otto.UndefinedValue()
}
if err != nil {
return otto.UndefinedValue()
}
start := time.Date(now.Year(), now.Month(), now.Day(), h1, m1, s1, 0, now.Location())
end := time.Date(now.Year(), now.Month(), now.Day(), h2, m2, s2, 0, now.Location())
return toValue(!start.After(now) && end.After(now))
}