forked from cyfdecyf/cow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.go
749 lines (639 loc) · 18.2 KB
/
config.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
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
package main
import (
"errors"
"flag"
"fmt"
"net"
"os"
"path"
"reflect"
"strconv"
"strings"
"time"
"github.com/cyfdecyf/bufio"
)
const (
version = "0.9.8"
defaultListenAddr = "127.0.0.1:7777"
defaultEstimateTarget = "example.com"
)
type LoadBalanceMode byte
const (
loadBalanceBackup LoadBalanceMode = iota
loadBalanceHash
loadBalanceLatency
)
// allow the same tunnel ports as polipo
var defaultTunnelAllowedPort = []string{
"22", "80", "443", // ssh, http, https
"873", // rsync
"143", "220", "585", "993", // imap, imap3, imap4-ssl, imaps
"109", "110", "473", "995", // pop2, pop3, hybrid-pop, pop3s
"5222", "5269", // jabber-client, jabber-server
"2401", "3690", "9418", // cvspserver, svn, git
}
type Config struct {
RcFile string // config file
LogFile string // path for log file
AlwaysProxy bool // whether we should alwyas use parent proxy
LoadBalance LoadBalanceMode // select load balance mode
TunnelAllowedPort map[string]bool // allowed ports to create tunnel
SshServer []string
// authenticate client
UserPasswd string
UserPasswdFile string // file that contains user:passwd:[port] pairs
AllowedClient string
AuthTimeout time.Duration
// advanced options
DialTimeout time.Duration
ReadTimeout time.Duration
Core int
DetectSSLErr bool
HttpErrorCode int
dir string // directory containing config file
StatFile string // Path for stat file
BlockedFile string // blocked sites specified by user
DirectFile string // direct sites specified by user
// not configurable in config file
PrintVer bool
EstimateTimeout bool // Whether to run estimateTimeout().
EstimateTarget string // Timeout estimate target site.
// not config option
saveReqLine bool // for http and cow parent, should save request line from client
}
var config Config
var configNeedUpgrade bool // whether should upgrade config file
func printVersion() {
fmt.Println("cow version", version)
}
func initConfig(rcFile string) {
config.dir = path.Dir(rcFile)
config.BlockedFile = path.Join(config.dir, blockedFname)
config.DirectFile = path.Join(config.dir, directFname)
config.StatFile = path.Join(config.dir, statFname)
config.DetectSSLErr = false
config.AlwaysProxy = false
config.AuthTimeout = 2 * time.Hour
config.DialTimeout = defaultDialTimeout
config.ReadTimeout = defaultReadTimeout
config.TunnelAllowedPort = make(map[string]bool)
for _, port := range defaultTunnelAllowedPort {
config.TunnelAllowedPort[port] = true
}
config.EstimateTarget = defaultEstimateTarget
}
// Whether command line options specifies listen addr
var cmdHasListenAddr bool
func parseCmdLineConfig() *Config {
var c Config
var listenAddr string
flag.StringVar(&c.RcFile, "rc", "", "config file, defaults to $HOME/.cow/rc on Unix, ./rc.txt on Windows")
// Specifying listen default value to StringVar would override config file options
flag.StringVar(&listenAddr, "listen", "", "listen address, disables listen in config")
flag.IntVar(&c.Core, "core", 2, "number of cores to use")
flag.StringVar(&c.LogFile, "logFile", "", "write output to file")
flag.BoolVar(&c.PrintVer, "version", false, "print version")
flag.BoolVar(&c.EstimateTimeout, "estimate", true, "enable/disable estimate timeout")
flag.Parse()
if c.RcFile == "" {
c.RcFile = getDefaultRcFile()
} else {
c.RcFile = expandTilde(c.RcFile)
}
if err := isFileExists(c.RcFile); err != nil {
Fatal("fail to get config file:", err)
}
initConfig(c.RcFile)
if listenAddr != "" {
configParser{}.ParseListen(listenAddr)
cmdHasListenAddr = true // must come after parse
}
return &c
}
func parseBool(v, msg string) bool {
switch v {
case "true":
return true
case "false":
return false
default:
Fatalf("%s should be true or false\n", msg)
}
return false
}
func parseInt(val, msg string) (i int) {
var err error
if i, err = strconv.Atoi(val); err != nil {
Fatalf("%s should be an integer\n", msg)
}
return
}
func parseDuration(val, msg string) (d time.Duration) {
var err error
if d, err = time.ParseDuration(val); err != nil {
Fatalf("%s %v\n", msg, err)
}
return
}
func checkServerAddr(addr string) error {
_, _, err := net.SplitHostPort(addr)
return err
}
func isUserPasswdValid(val string) bool {
arr := strings.SplitN(val, ":", 2)
if len(arr) != 2 || arr[0] == "" || arr[1] == "" {
return false
}
return true
}
// proxyParser provides functions to parse different types of parent proxy
type proxyParser struct{}
func (p proxyParser) ProxySocks5(val string) {
if err := checkServerAddr(val); err != nil {
Fatal("parent socks server", err)
}
parentProxy.add(newSocksParent(val))
}
func (pp proxyParser) ProxyHttp(val string) {
var userPasswd, server string
arr := strings.Split(val, "@")
if len(arr) == 1 {
server = arr[0]
} else if len(arr) == 2 {
userPasswd = arr[0]
server = arr[1]
} else {
Fatal("http parent proxy contains more than one @:", val)
}
if err := checkServerAddr(server); err != nil {
Fatal("parent http server", err)
}
config.saveReqLine = true
parent := newHttpParent(server)
parent.initAuth(userPasswd)
parentProxy.add(parent)
}
// Parse method:passwd@server:port
func parseMethodPasswdServer(val string) (method, passwd, server string, err error) {
// Use the right-most @ symbol to seperate method:passwd and server:port.
idx := strings.LastIndex(val, "@")
if idx == -1 {
err = errors.New("requires both encrypt method and password")
return
}
methodPasswd := val[:idx]
server = val[idx+1:]
if err = checkServerAddr(server); err != nil {
return
}
// Password can have : inside, but I don't recommend this.
arr := strings.SplitN(methodPasswd, ":", 2)
if len(arr) != 2 {
err = errors.New("method and password should be separated by :")
return
}
method = arr[0]
passwd = arr[1]
return
}
// parse shadowsocks proxy
func (pp proxyParser) ProxySs(val string) {
method, passwd, server, err := parseMethodPasswdServer(val)
if err != nil {
Fatal("shadowsocks parent", err)
}
parent := newShadowsocksParent(server)
parent.initCipher(method, passwd)
parentProxy.add(parent)
}
func (pp proxyParser) ProxyCow(val string) {
method, passwd, server, err := parseMethodPasswdServer(val)
if err != nil {
Fatal("cow parent", err)
}
if err := checkServerAddr(server); err != nil {
Fatal("parent cow server", err)
}
config.saveReqLine = true
parent := newCowParent(server, method, passwd)
parentProxy.add(parent)
}
// listenParser provides functions to parse different types of listen addresses
type listenParser struct{}
func (lp listenParser) ListenHttp(val string) {
if cmdHasListenAddr {
return
}
arr := strings.Fields(val)
if len(arr) > 2 {
Fatal("too many fields in listen = http://", val)
}
var addr, addrInPAC string
addr = arr[0]
if len(arr) == 2 {
addrInPAC = arr[1]
}
if err := checkServerAddr(addr); err != nil {
Fatal("listen http server", err)
}
addListenProxy(newHttpProxy(addr, addrInPAC))
}
func (lp listenParser) ListenCow(val string) {
if cmdHasListenAddr {
return
}
method, passwd, addr, err := parseMethodPasswdServer(val)
if err != nil {
Fatal("listen cow", err)
}
addListenProxy(newCowProxy(method, passwd, addr))
}
// configParser provides functions to parse options in config file.
type configParser struct{}
func (p configParser) ParseProxy(val string) {
parser := reflect.ValueOf(proxyParser{})
zeroMethod := reflect.Value{}
arr := strings.Split(val, "://")
if len(arr) != 2 {
Fatal("proxy has no protocol specified:", val)
}
protocol := arr[0]
methodName := "Proxy" + strings.ToUpper(protocol[0:1]) + protocol[1:]
method := parser.MethodByName(methodName)
if method == zeroMethod {
Fatalf("no such protocol \"%s\"\n", arr[0])
}
args := []reflect.Value{reflect.ValueOf(arr[1])}
method.Call(args)
}
func (p configParser) ParseListen(val string) {
if cmdHasListenAddr {
return
}
parser := reflect.ValueOf(listenParser{})
zeroMethod := reflect.Value{}
var protocol, server string
arr := strings.Split(val, "://")
if len(arr) == 1 {
protocol = "http"
server = val
configNeedUpgrade = true
} else {
protocol = arr[0]
server = arr[1]
}
methodName := "Listen" + strings.ToUpper(protocol[0:1]) + protocol[1:]
method := parser.MethodByName(methodName)
if method == zeroMethod {
Fatalf("no such listen protocol \"%s\"\n", arr[0])
}
args := []reflect.Value{reflect.ValueOf(server)}
method.Call(args)
}
func (p configParser) ParseLogFile(val string) {
config.LogFile = expandTilde(val)
}
func (p configParser) ParseAddrInPAC(val string) {
configNeedUpgrade = true
arr := strings.Split(val, ",")
for i, s := range arr {
if s == "" {
continue
}
s = strings.TrimSpace(s)
host, _, err := net.SplitHostPort(s)
if err != nil {
Fatal("proxy address in PAC", err)
}
if host == "0.0.0.0" {
Fatal("can't use 0.0.0.0 as proxy address in PAC")
}
if hp, ok := listenProxy[i].(*httpProxy); ok {
hp.addrInPAC = s
} else {
Fatal("can't specify address in PAC for non http proxy")
}
}
}
func (p configParser) ParseTunnelAllowedPort(val string) {
arr := strings.Split(val, ",")
for _, s := range arr {
s = strings.TrimSpace(s)
if _, err := strconv.Atoi(s); err != nil {
Fatal("tunnel allowed ports", err)
}
config.TunnelAllowedPort[s] = true
}
}
func (p configParser) ParseSocksParent(val string) {
var pp proxyParser
pp.ProxySocks5(val)
configNeedUpgrade = true
}
func (p configParser) ParseSshServer(val string) {
arr := strings.Split(val, ":")
if len(arr) == 2 {
val += ":22"
} else if len(arr) == 3 {
if arr[2] == "" {
val += "22"
}
} else {
Fatal("sshServer should be in the form of: user@server:local_socks_port[:server_ssh_port]")
}
// add created socks server
p.ParseSocksParent("127.0.0.1:" + arr[1])
config.SshServer = append(config.SshServer, val)
}
var http struct {
parent *httpParent
serverCnt int
passwdCnt int
}
func (p configParser) ParseHttpParent(val string) {
if err := checkServerAddr(val); err != nil {
Fatal("parent http server", err)
}
config.saveReqLine = true
http.parent = newHttpParent(val)
parentProxy.add(http.parent)
http.serverCnt++
configNeedUpgrade = true
}
func (p configParser) ParseHttpUserPasswd(val string) {
if !isUserPasswdValid(val) {
Fatal("httpUserPassword syntax wrong, should be in the form of user:passwd")
}
if http.passwdCnt >= http.serverCnt {
Fatal("must specify httpParent before corresponding httpUserPasswd")
}
http.parent.initAuth(val)
http.passwdCnt++
}
func (p configParser) ParseAlwaysProxy(val string) {
config.AlwaysProxy = parseBool(val, "alwaysProxy")
}
func (p configParser) ParseLoadBalance(val string) {
switch val {
case "backup":
config.LoadBalance = loadBalanceBackup
case "hash":
config.LoadBalance = loadBalanceHash
case "latency":
config.LoadBalance = loadBalanceLatency
default:
Fatalf("invalid loadBalance mode: %s\n", val)
}
}
func (p configParser) ParseStatFile(val string) {
config.StatFile = expandTilde(val)
}
func (p configParser) ParseBlockedFile(val string) {
config.BlockedFile = expandTilde(val)
if err := isFileExists(config.BlockedFile); err != nil {
Fatal("blocked file:", err)
}
}
func (p configParser) ParseDirectFile(val string) {
config.DirectFile = expandTilde(val)
if err := isFileExists(config.DirectFile); err != nil {
Fatal("direct file:", err)
}
}
var shadow struct {
parent *shadowsocksParent
passwd string
method string
serverCnt int
passwdCnt int
methodCnt int
}
func (p configParser) ParseShadowSocks(val string) {
if shadow.serverCnt-shadow.passwdCnt > 1 {
Fatal("must specify shadowPasswd for every shadowSocks server")
}
// create new shadowsocks parent if both server and password are given
// previously
if shadow.parent != nil && shadow.serverCnt == shadow.passwdCnt {
if shadow.methodCnt < shadow.serverCnt {
shadow.method = ""
shadow.methodCnt = shadow.serverCnt
}
shadow.parent.initCipher(shadow.method, shadow.passwd)
}
if val == "" { // the final call
shadow.parent = nil
return
}
if err := checkServerAddr(val); err != nil {
Fatal("shadowsocks server", err)
}
shadow.parent = newShadowsocksParent(val)
parentProxy.add(shadow.parent)
shadow.serverCnt++
configNeedUpgrade = true
}
func (p configParser) ParseShadowPasswd(val string) {
if shadow.passwdCnt >= shadow.serverCnt {
Fatal("must specify shadowSocks before corresponding shadowPasswd")
}
if shadow.passwdCnt+1 != shadow.serverCnt {
Fatal("must specify shadowPasswd for every shadowSocks")
}
shadow.passwd = val
shadow.passwdCnt++
}
func (p configParser) ParseShadowMethod(val string) {
if shadow.methodCnt >= shadow.serverCnt {
Fatal("must specify shadowSocks before corresponding shadowMethod")
}
// shadowMethod is optional
shadow.method = val
shadow.methodCnt++
}
func checkShadowsocks() {
if shadow.serverCnt != shadow.passwdCnt {
Fatal("number of shadowsocks server and password does not match")
}
// parse the last shadowSocks option again to initialize the last
// shadowsocks server
parser := configParser{}
parser.ParseShadowSocks("")
}
// Put actual authentication related config parsing in auth.go, so config.go
// doesn't need to know the details of authentication implementation.
func (p configParser) ParseUserPasswd(val string) {
config.UserPasswd = val
if !isUserPasswdValid(config.UserPasswd) {
Fatal("userPassword syntax wrong, should be in the form of user:passwd")
}
}
func (p configParser) ParseUserPasswdFile(val string) {
err := isFileExists(val)
if err != nil {
Fatal("userPasswdFile:", err)
}
config.UserPasswdFile = val
}
func (p configParser) ParseAllowedClient(val string) {
config.AllowedClient = val
}
func (p configParser) ParseAuthTimeout(val string) {
config.AuthTimeout = parseDuration(val, "authTimeout")
}
func (p configParser) ParseCore(val string) {
config.Core = parseInt(val, "core")
}
func (p configParser) ParseHttpErrorCode(val string) {
config.HttpErrorCode = parseInt(val, "httpErrorCode")
}
func (p configParser) ParseReadTimeout(val string) {
config.ReadTimeout = parseDuration(val, "readTimeout")
}
func (p configParser) ParseDialTimeout(val string) {
config.DialTimeout = parseDuration(val, "dialTimeout")
}
func (p configParser) ParseDetectSSLErr(val string) {
config.DetectSSLErr = parseBool(val, "detectSSLErr")
}
func (p configParser) ParseEstimateTarget(val string) {
config.EstimateTarget = val
}
// overrideConfig should contain options from command line to override options
// in config file.
func parseConfig(rc string, override *Config) {
// fmt.Println("rcFile:", path)
f, err := os.Open(expandTilde(rc))
if err != nil {
Fatal("Error opening config file:", err)
}
IgnoreUTF8BOM(f)
scanner := bufio.NewScanner(f)
parser := reflect.ValueOf(configParser{})
zeroMethod := reflect.Value{}
var lines []string // store lines for upgrade
var n int
for scanner.Scan() {
lines = append(lines, scanner.Text())
n++
line := strings.TrimSpace(scanner.Text())
if line == "" || line[0] == '#' {
continue
}
v := strings.SplitN(line, "=", 2)
if len(v) != 2 {
Fatal("config syntax error on line", n)
}
key, val := strings.TrimSpace(v[0]), strings.TrimSpace(v[1])
methodName := "Parse" + strings.ToUpper(key[0:1]) + key[1:]
method := parser.MethodByName(methodName)
if method == zeroMethod {
Fatalf("no such option \"%s\"\n", key)
}
// for backward compatibility, allow empty string in shadowMethod and logFile
if val == "" && key != "shadowMethod" && key != "logFile" {
Fatalf("empty %s, please comment or remove unused option\n", key)
}
args := []reflect.Value{reflect.ValueOf(val)}
method.Call(args)
}
if scanner.Err() != nil {
Fatalf("Error reading rc file: %v\n", scanner.Err())
}
f.Close()
overrideConfig(&config, override)
checkConfig()
if configNeedUpgrade {
upgradeConfig(rc, lines)
}
}
func upgradeConfig(rc string, lines []string) {
newrc := rc + ".upgrade"
f, err := os.Create(newrc)
if err != nil {
fmt.Println("can't create upgraded config file")
return
}
// Upgrade config.
proxyId := 0
listenId := 0
w := bufio.NewWriter(f)
for _, line := range lines {
line := strings.TrimSpace(line)
if line == "" || line[0] == '#' {
w.WriteString(line + newLine)
continue
}
v := strings.Split(line, "=")
key := strings.TrimSpace(v[0])
switch key {
case "listen":
listen := listenProxy[listenId]
listenId++
w.WriteString(listen.genConfig() + newLine)
// comment out original
w.WriteString("#" + line + newLine)
case "httpParent", "shadowSocks", "socksParent":
backPool, ok := parentProxy.(*backupParentPool)
if !ok {
panic("initial parent pool should be backup pool")
}
parent := backPool.parent[proxyId]
proxyId++
w.WriteString(parent.genConfig() + newLine)
// comment out original
w.WriteString("#" + line + newLine)
case "httpUserPasswd", "shadowPasswd", "shadowMethod", "addrInPAC":
// just comment out
w.WriteString("#" + line + newLine)
case "proxy":
proxyId++
w.WriteString(line + newLine)
default:
w.WriteString(line + newLine)
}
}
w.Flush()
f.Close() // Must close file before renaming, otherwise will fail on windows.
// Rename new and old config file.
if err := os.Rename(rc, rc+"0.8"); err != nil {
fmt.Println("can't backup config file for upgrade:", err)
return
}
if err := os.Rename(newrc, rc); err != nil {
fmt.Println("can't rename upgraded rc to original name:", err)
return
}
}
func overrideConfig(oldconfig, override *Config) {
newVal := reflect.ValueOf(override).Elem()
oldVal := reflect.ValueOf(oldconfig).Elem()
// typeOfT := newVal.Type()
for i := 0; i < newVal.NumField(); i++ {
newField := newVal.Field(i)
oldField := oldVal.Field(i)
// log.Printf("%d: %s %s = %v\n", i,
// typeOfT.Field(i).Name, newField.Type(), newField.Interface())
switch newField.Kind() {
case reflect.String:
s := newField.String()
if s != "" {
oldField.SetString(s)
}
case reflect.Int:
i := newField.Int()
if i != 0 {
oldField.SetInt(i)
}
}
}
oldconfig.EstimateTimeout = override.EstimateTimeout
}
// Must call checkConfig before using config.
func checkConfig() {
checkShadowsocks()
// listenAddr must be handled first, as addrInPAC dependends on this.
if listenProxy == nil {
listenProxy = []Proxy{newHttpProxy(defaultListenAddr, "")}
}
}