forked from vzex/dog-tunnel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
client.go
1215 lines (1157 loc) · 30.7 KB
/
client.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
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
package main
import (
"bufio"
"crypto/aes"
"crypto/cipher"
"crypto/tls"
"encoding/json"
"flag"
"fmt"
"io/ioutil"
"log"
"math/rand"
"net"
"os"
"os/signal"
"os/user"
"path"
"strconv"
"strings"
"sync"
"syscall"
"time"
"github.com/vzex/dog-tunnel/common"
"github.com/vzex/dog-tunnel/nat"
)
var accessKey = flag.String("key", "", "please login into dog-tunnel.tk to get accesskey")
var clientKey = flag.String("clientkey", "", "when other client linkt to the reg client, need clientkey, or empty")
var serverAddr = flag.String("remote", "dog-tunnel.tk:8000", "connect remote server")
var serverBustAddr = flag.String("buster", "dog-tunnel.tk:8018", "MakeHole server")
var addInitAddr = flag.String("addip", "127.0.0.1", "addip for bust,xx.xx.xx.xx;xx.xx.xx.xx;")
var pipeNum = flag.Int("pipen", 1, "pipe num for transmission")
var serveName = flag.String("reg", "", "reg the name for client link, must assign reg or link")
var linkName = flag.String("link", "", "name for link, must assign reg or link")
var localAddr = flag.String("local", "", "addr for listen or connect(value \"socks5\" means tcp socks5 proxy for reg),depends on link or reg")
var bVerbose = flag.Bool("v", false, "verbose mode")
var delayTime = flag.Int("delay", 2, "if bust fail, try to make some delay seconds")
var clientMode = flag.Int("mode", 0, "connect mode:0 if p2p fail, use c/s mode;1 just p2p mode;2 just c/s mode")
var bUseSSL = flag.Bool("ssl", true, "use ssl")
var bShowVersion = flag.Bool("version", false, "show version")
var bLoadSettingFromFile = flag.Bool("f", false, "load setting from file(~/.dtunnel)")
var bEncrypt = flag.Bool("encrypt", false, "p2p mode encrypt")
var dnsCacheNum = flag.Int("dnscache", 0, "if > 0, dns will cache xx minutes")
var aesKey *cipher.Block
var remoteConn net.Conn
var clientType = -1
type dnsInfo struct {
Ip string
Status string
Queue []*dnsQueryReq
overTime, cacheTime int64
}
func (u *dnsInfo) IsAlive() bool {
return time.Now().Unix() < u.overTime
}
func (u *dnsInfo) GetCacheTime() int64 {
return u.overTime
}
func (u *dnsInfo) SetCacheTime(t int64) {
if t >= 0 {
u.cacheTime = t
} else {
t = u.cacheTime
}
u.overTime = t + time.Now().Unix()
}
func (u *dnsInfo) DeInit() {}
var g_ClientMap map[string]*Client
var g_ClientMapKey map[string]*cipher.Block
var g_Id2UDPSession map[string]*UDPMakeSession
var markName = ""
var bForceQuit = false
func isCommonSessionId(id string) bool {
return id == "common"
}
func handleResponse(conn net.Conn, clientId string, action string, content string) {
//log.Println("got", clientId, action)
switch action {
case "aeskey":
fmt.Println("init aeskey for client", clientId, content)
block, _ := aes.NewCipher([]byte(content))
g_ClientMapKey[clientId] = &block
case "show":
fmt.Println(time.Now().Format("2006-01-02 15:04:05"), content)
case "showandretry":
fmt.Println(time.Now().Format("2006-01-02 15:04:05"), content)
remoteConn.Close()
case "showandquit":
fmt.Println(time.Now().Format("2006-01-02 15:04:05"), content)
remoteConn.Close()
bForceQuit = true
case "clientquit":
client := g_ClientMap[clientId]
log.Println("clientquit!!!", clientId, client)
if client != nil {
client.Quit()
}
case "remove_udpsession":
log.Println("server force remove udpsession", clientId)
delete(g_Id2UDPSession, clientId)
case "query_addrlist_a":
outip := content
arr := strings.Split(clientId, "-")
id := arr[0]
sessionId := arr[1]
pipeType := arr[2]
g_Id2UDPSession[id] = &UDPMakeSession{id: id, sessionId: sessionId, pipeType: pipeType}
go g_Id2UDPSession[id].reportAddrList(true, outip)
case "query_addrlist_b":
arr := strings.Split(clientId, "-")
id := arr[0]
sessionId := arr[1]
pipeType := arr[2]
g_Id2UDPSession[id] = &UDPMakeSession{id: id, sessionId: sessionId, pipeType: pipeType}
go g_Id2UDPSession[id].reportAddrList(false, content)
case "tell_bust_a":
session, bHave := g_Id2UDPSession[clientId]
if bHave {
go session.beginMakeHole(content)
}
case "tell_bust_b":
session, bHave := g_Id2UDPSession[clientId]
if bHave {
go session.beginMakeHole("")
}
case "csmode_c_tunnel_close":
log.Println("receive close msg from server")
arr := strings.Split(clientId, "-")
clientId = arr[0]
sessionId := arr[1]
client, bHave := g_ClientMap[clientId]
if bHave {
client.removeSession(sessionId)
}
case "csmode_s_tunnel_close":
arr := strings.Split(clientId, "-")
clientId = arr[0]
sessionId := arr[1]
client, bHave := g_ClientMap[clientId]
if bHave {
client.removeSession(sessionId)
}
case "csmode_s_tunnel_open":
oriId := clientId
arr := strings.Split(oriId, "-")
clientId = arr[0]
sessionId := arr[1]
client, bHave := g_ClientMap[clientId]
if !bHave {
client = &Client{id: clientId, pipes: make(map[int]net.Conn), engine: nil, buster: true, sessions: make(map[string]*clientSession), ready: true, bUdp: false}
client.pipes[0] = remoteConn
g_ClientMap[clientId] = client
} else {
client.pipes[0] = remoteConn
client.ready = true
client.bUdp = false
}
//log.Println("client init csmode", clientId, sessionId)
if *localAddr != "socks5" {
s_conn, err := net.DialTimeout("tcp", *localAddr, 10*time.Second)
if err != nil {
log.Println("connect to local server fail:", err.Error())
msg := "cannot connect to bind addr" + *localAddr
common.Write(remoteConn, clientId, "tunnel_error", msg)
//remoteConn.Close()
return
} else {
client.sessionLock.Lock()
client.sessions[sessionId] = &clientSession{pipe: remoteConn, localConn: s_conn}
client.sessionLock.Unlock()
go handleLocalPortResponse(client, oriId)
}
} else {
client.sessionLock.Lock()
client.sessions[sessionId] = &clientSession{pipe: remoteConn, localConn: nil, status: "init", recvMsg: ""}
client.sessionLock.Unlock()
}
case "csmode_c_begin":
client, bHave := g_ClientMap[clientId]
if !bHave {
client = &Client{id: clientId, pipes: make(map[int]net.Conn), engine: nil, buster: false, sessions: make(map[string]*clientSession), ready: true, bUdp: false}
client.pipes[0] = remoteConn
g_ClientMap[clientId] = client
} else {
client.pipes[0] = remoteConn
client.ready = true
client.bUdp = false
}
if client.MultiListen() {
common.Write(remoteConn, clientId, "makeholeok", "csmode")
}
case "csmode_msg_c":
oriId := clientId
arr := strings.Split(clientId, "-")
clientId = arr[0]
sessionId := arr[1]
client, bHave := g_ClientMap[clientId]
if bHave {
session := client.getSession(sessionId)
if session != nil && session.localConn != nil {
session.localConn.Write([]byte(content))
} else if session != nil && *localAddr == "socks5" {
session.processSockProxy(client, oriId, content, func() {
if len(session.recvMsg) > 0 && session.localConn != nil {
session.localConn.Write([]byte(session.recvMsg))
}
})
}
}
case "csmode_msg_s":
arr := strings.Split(clientId, "-")
clientId = arr[0]
sessionId := arr[1]
client, bHave := g_ClientMap[clientId]
if bHave {
session := client.getSession(sessionId)
if session != nil && session.localConn != nil {
session.localConn.Write([]byte(content))
} else {
//log.Println("cs:cannot tunnel msg", sessionId)
}
}
}
}
type UDPMakeSession struct {
id string
sessionId string
buster bool
engine *nat.AttemptEngine
delay int
pipeType string
}
func (session *UDPMakeSession) beginMakeHole(content string) {
engine := session.engine
if engine == nil {
return
}
addrList := content
if session.buster {
engine.SetOtherAddrList(addrList)
}
log.Println("begin bust", session.id, session.sessionId, session.buster)
if clientType == 1 && !session.buster {
log.Println("retry bust!")
}
report := func() {
if session.buster {
if session.delay > 0 {
log.Println("try to delay", session.delay, "seconds")
time.Sleep(time.Duration(session.delay) * time.Second)
}
go common.Write(remoteConn, session.id, "success_bust_a", "")
}
}
oldSession := session
var aesBlock *cipher.Block
if clientType == 1 {
aesBlock = aesKey
} else {
aesBlock, _ = g_ClientMapKey[session.sessionId]
}
var conn net.Conn
var err error
if aesBlock == nil {
conn, err = engine.GetConn(report, nil, nil)
} else {
conn, err = engine.GetConn(report, func(s []byte) []byte {
if aesBlock == nil {
return s
} else {
padLen := aes.BlockSize - (len(s) % aes.BlockSize)
for i := 0; i < padLen; i++ {
s = append(s, byte(padLen))
}
srcLen := len(s)
encryptText := make([]byte, srcLen+aes.BlockSize)
iv := encryptText[srcLen:]
for i := 0; i < len(iv); i++ {
iv[i] = byte(i)
}
mode := cipher.NewCBCEncrypter(*aesBlock, iv)
mode.CryptBlocks(encryptText[:srcLen], s)
return encryptText
}
}, func(s []byte) []byte {
if aesBlock == nil {
return s
} else {
if len(s) < aes.BlockSize*2 || len(s)%aes.BlockSize != 0 {
return []byte{}
}
srcLen := len(s) - aes.BlockSize
decryptText := make([]byte, srcLen)
iv := s[srcLen:]
mode := cipher.NewCBCDecrypter(*aesBlock, iv)
mode.CryptBlocks(decryptText, s[:srcLen])
paddingLen := int(decryptText[srcLen-1])
if paddingLen > 16 {
return []byte{}
}
return decryptText[:srcLen-paddingLen]
}
})
}
session, _bHave := g_Id2UDPSession[session.id]
if session != oldSession {
return
}
if !_bHave {
return
}
delete(g_Id2UDPSession, session.id)
if err == nil {
if !session.buster {
common.Write(remoteConn, session.id, "makeholeok", "")
}
client, bHave := g_ClientMap[session.sessionId]
if !bHave {
client = &Client{id: session.sessionId, engine: session.engine, buster: session.buster, ready: true, bUdp: true, sessions: make(map[string]*clientSession), specPipes: make(map[string]net.Conn), pipes: make(map[int]net.Conn)}
g_ClientMap[session.sessionId] = client
}
if isCommonSessionId(session.pipeType) {
size := len(client.pipes)
client.pipes[size] = conn
go client.Run(size, "")
log.Println("add common session", session.buster, session.sessionId, session.id)
if clientType == 1 {
if len(client.pipes) == *pipeNum {
client.MultiListen()
}
}
} else {
client.specPipes[session.pipeType] = conn
go client.Run(-1, session.pipeType)
log.Println("add session for", session.pipeType)
}
} else {
delete(g_ClientMap, session.sessionId)
delete(g_ClientMapKey, session.sessionId)
log.Println("cannot connect", err.Error())
if !session.buster && err.Error() != "quit" {
common.Write(remoteConn, session.id, "makeholefail", "")
}
}
}
func (session *UDPMakeSession) reportAddrList(buster bool, outip string) {
id := session.id
var otherAddrList string
if !buster {
arr := strings.SplitN(outip, ":", 2)
outip, otherAddrList = arr[0], arr[1]
} else {
arr := strings.SplitN(outip, ":", 2)
var delayTime string
outip, delayTime = arr[0], arr[1]
session.delay, _ = strconv.Atoi(delayTime)
if session.delay < 0 {
session.delay = 0
}
}
outip += ";" + *addInitAddr
_id, _ := strconv.Atoi(id)
engine, err := nat.Init(outip, buster, _id, *serverBustAddr)
if err != nil {
println("init error", err.Error())
disconnect()
return
}
session.engine = engine
session.buster = buster
if !buster {
engine.SetOtherAddrList(otherAddrList)
}
addrList := engine.GetAddrList()
println("addrList", addrList)
common.Write(remoteConn, id, "report_addrlist", addrList)
}
type fileSetting struct {
Key string
}
func saveSettings(info fileSetting) error {
clientInfoStr, err := json.Marshal(info)
if err != nil {
return err
}
user, err := user.Current()
if err != nil {
return err
}
filePath := path.Join(user.HomeDir, ".dtunnel")
return ioutil.WriteFile(filePath, clientInfoStr, 0700)
}
func loadSettings(info *fileSetting) error {
user, err := user.Current()
if err != nil {
return err
}
filePath := path.Join(user.HomeDir, ".dtunnel")
content, err := ioutil.ReadFile(filePath)
if err != nil {
return err
}
err = json.Unmarshal([]byte(content), info)
if err != nil {
return err
}
return nil
}
func main() {
flag.Parse()
checkDns = make(chan *dnsQueryReq)
checkDnsRes = make(chan *dnsQueryBack)
go dnsLoop()
if *bShowVersion {
fmt.Printf("%.2f\n", common.Version)
return
}
if !*bVerbose {
log.SetOutput(ioutil.Discard)
}
if *serveName == "" && *linkName == "" {
println("you must assign reg or link")
return
}
if *serveName != "" && *linkName != "" {
println("you must assign reg or link, not both of them")
return
}
if *localAddr == "" {
println("you must assign the local addr")
return
}
if *serveName != "" {
clientType = 0
} else {
clientType = 1
}
if *bEncrypt {
if clientType != 1 {
println("only link size need encrypt")
return
}
}
go func() {
c := make(chan os.Signal, 1)
signal.Notify(c, os.Interrupt, syscall.SIGTERM)
n := 0
for {
<-c
log.Println("received signal,shutdown")
bForceQuit = true
if remoteConn != nil {
remoteConn.Close()
}
n++
if n > 5 {
log.Println("force shutdown")
os.Exit(-1)
}
}
}()
loop := func() bool {
if bForceQuit {
return true
}
g_ClientMap = make(map[string]*Client)
g_ClientMapKey = make(map[string]*cipher.Block)
g_Id2UDPSession = make(map[string]*UDPMakeSession)
//var err error
if *bUseSSL {
_remoteConn, err := tls.Dial("tcp", *serverAddr, &tls.Config{InsecureSkipVerify: true})
if err != nil {
println("connect remote err:" + err.Error())
return false
}
remoteConn = net.Conn(_remoteConn)
} else {
_remoteConn, err := net.DialTimeout("tcp", *serverAddr, 10*time.Second)
if err != nil {
println("connect remote err:" + err.Error())
return false
}
remoteConn = _remoteConn
}
println("connect to server succeed")
go connect()
q := make(chan bool)
go func() {
c := time.NewTicker(time.Second * 10)
out:
for {
select {
case <-c.C:
if remoteConn != nil {
common.Write(remoteConn, "-1", "ping", "")
}
case <-q:
break out
}
}
c.Stop()
}()
common.Read(remoteConn, handleResponse)
q <- true
for clientId, client := range g_ClientMap {
log.Println("client shutdown", clientId)
client.Quit()
}
for _, session := range g_Id2UDPSession {
if session.engine != nil {
session.engine.Fail()
}
}
if remoteConn != nil {
remoteConn.Close()
}
if bForceQuit {
return true
}
return false
}
if clientType == 0 {
for {
if loop() {
break
}
time.Sleep(10 * time.Second)
}
} else {
loop()
}
log.Println("service shutdown")
}
func connect() {
if *pipeNum <= 0 {
*pipeNum = 1
}
clientInfo := common.ClientSetting{Version: common.Version, Delay: *delayTime, Mode: *clientMode, PipeNum: *pipeNum, AccessKey: *accessKey, ClientKey: *clientKey, AesKey: ""}
if *bEncrypt {
clientInfo.AesKey = string([]byte(fmt.Sprintf("asd4%d%d", int32(time.Now().Unix()), (rand.Intn(100000) + 100)))[:16])
log.Println("debug aeskey", clientInfo.AesKey)
key, _ := aes.NewCipher([]byte(clientInfo.AesKey))
aesKey = &key
}
if *bLoadSettingFromFile {
var setting fileSetting
err := loadSettings(&setting)
if err == nil {
clientInfo.AccessKey = setting.Key
} else {
log.Println("load setting fail", err.Error())
}
} else {
if clientInfo.AccessKey != "" {
var setting = fileSetting{Key: clientInfo.AccessKey}
err := saveSettings(setting)
if err != nil {
log.Println("save setting error", err.Error())
} else {
println("save setting ok, nexttime please use -f to replace -key")
}
}
}
if clientType == 0 {
markName = *serveName
clientInfo.ClientType = "reg"
} else if clientType == 1 {
markName = *linkName
clientInfo.ClientType = "link"
} else {
println("no clienttype!")
}
clientInfo.Name = markName
clientInfoStr, err := json.Marshal(clientInfo)
if err != nil {
println("encode args error")
}
log.Println("init client", string(clientInfoStr))
common.Write(remoteConn, "0", "init", string(clientInfoStr))
}
func disconnect() {
if remoteConn != nil {
remoteConn.Close()
remoteConn = nil
}
}
type clientSession struct {
pipe net.Conn
localConn net.Conn
status string
recvMsg string
extra uint8
}
func (session *clientSession) processSockProxy(sc *Client, sessionId, content string, callback func()) {
pipe := session.pipe
session.recvMsg += content
bytes := []byte(session.recvMsg)
size := len(bytes)
//log.Println("recv msg-====", len(session.recvMsg), session.recvMsg, session.status, sessionId)
switch session.status {
case "init":
if session.localConn != nil {
session.localConn.Close()
session.localConn = nil
}
if size < 2 {
//println("wait init")
return
}
var _, nmethod uint8 = bytes[0], bytes[1]
//println("version", version, nmethod)
session.status = "version"
session.recvMsg = string(bytes[2:])
session.extra = nmethod
case "version":
if uint8(size) < session.extra {
//println("wait version")
return
}
var send = []uint8{5, 0}
go common.Write(pipe, sessionId, "tunnel_msg_s", string(send))
session.status = "hello"
session.recvMsg = string(bytes[session.extra:])
session.extra = 0
//log.Println("now", len(session.recvMsg))
case "hello":
var hello reqMsg
bOk, tail := hello.read(bytes)
if bOk {
go func() {
var ansmsg ansMsg
url := hello.url
var s_conn net.Conn
var err error
if *dnsCacheNum > 0 && hello.atyp == 3 {
host := string(hello.dst_addr[1 : 1+hello.dst_addr[0]])
resChan := make(chan *dnsQueryRes)
checkDns <- &dnsQueryReq{c: resChan, host: host, port: int(hello.dst_port2), reqtype: hello.reqtype, url: url}
res := <-resChan
s_conn = res.conn
err = res.err
if res.ip != "" {
url = net.JoinHostPort(res.ip, fmt.Sprintf("%d", hello.dst_port2))
}
}
if s_conn == nil && err == nil {
s_conn, err = net.DialTimeout(hello.reqtype, url, 30*time.Second)
}
if err != nil {
log.Println("connect to local server fail:", err.Error())
ansmsg.gen(&hello, 4)
go common.Write(pipe, sessionId, "tunnel_msg_s", string(ansmsg.buf[:ansmsg.mlen]))
return
} else {
session.localConn = s_conn
go handleLocalPortResponse(sc, sessionId)
ansmsg.gen(&hello, 0)
go common.Write(pipe, sessionId, "tunnel_msg_s", string(ansmsg.buf[:ansmsg.mlen]))
session.status = "ok"
session.recvMsg = string(tail)
callback()
return
}
}()
} else {
//log.Println("wait hello")
}
return
case "ok":
return
}
session.processSockProxy(sc, sessionId, "", callback)
}
var checkDns chan *dnsQueryReq
var checkDnsRes chan *dnsQueryBack
type dnsQueryReq struct {
c chan *dnsQueryRes
host string
port int
reqtype string
url string
}
type dnsQueryBack struct {
host string
status string
conn net.Conn
err error
}
type dnsQueryRes struct {
conn net.Conn
err error
ip string
}
func dnsLoop() {
for {
select {
case info := <-checkDns:
cache := common.GetCacheContainer("dns")
cacheInfo := cache.GetCache(info.host)
if cacheInfo == nil {
cache.AddCache(info.host, &dnsInfo{Queue: []*dnsQueryReq{info}, Status: "querying"}, int64(*dnsCacheNum*60))
go func() {
back := &dnsQueryBack{host: info.host}
//log.Println("try dial", info.url)
s_conn, err := net.DialTimeout(info.reqtype, info.url, 30*time.Second)
//log.Println("try dial", info.url, "ok")
if err != nil {
back.status = "queryfail"
back.err = err
} else {
back.status = "queryok"
back.conn = s_conn
}
checkDnsRes <- back
}()
} else {
_cacheInfo := cacheInfo.(*dnsInfo)
//log.Println("on trigger", info.host, _cacheInfo.GetCacheTime(), len(_cacheInfo.Queue))
switch _cacheInfo.Status {
case "querying":
_cacheInfo.Queue = append(_cacheInfo.Queue, info)
//cache.UpdateCache(info.host, _cacheInfo)
cacheInfo.SetCacheTime(-1)
case "queryok":
cacheInfo.SetCacheTime(-1)
go func() {
info.c <- &dnsQueryRes{ip: _cacheInfo.Ip}
}()
}
//url = cacheInfo.(*dnsInfo).Ip + fmt.Sprintf(":%d", info.port)
}
case info := <-checkDnsRes:
cache := common.GetCacheContainer("dns")
cacheInfo := cache.GetCache(info.host)
if cacheInfo != nil {
_cacheInfo := cacheInfo.(*dnsInfo)
_cacheInfo.Status = info.status
switch info.status {
case "queryfail":
for _, _info := range _cacheInfo.Queue {
c := _info.c
go func() {
c <- &dnsQueryRes{err: info.err}
}()
}
cache.DelCache(info.host)
case "queryok":
log.Println("add host", info.host, "to dns cache")
_cacheInfo.Ip, _, _ = net.SplitHostPort(info.conn.RemoteAddr().String())
_cacheInfo.SetCacheTime(-1)
//log.Println("process the queue of host", info.host, len(_cacheInfo.Queue))
conn := info.conn
for _, _info := range _cacheInfo.Queue {
c := _info.c
go func() {
c <- &dnsQueryRes{ip: _cacheInfo.Ip, conn: conn}
}()
conn = nil
}
_cacheInfo.Queue = []*dnsQueryReq{}
}
//cache.UpdateCache(info.host, _cacheInfo)
}
}
}
}
type ansMsg struct {
ver uint8
rep uint8
rsv uint8
atyp uint8
buf [300]uint8
mlen uint16
}
func (msg *ansMsg) gen(req *reqMsg, rep uint8) {
msg.ver = 5
msg.rep = rep //rfc1928
msg.rsv = 0
msg.atyp = 1
msg.buf[0], msg.buf[1], msg.buf[2], msg.buf[3] = msg.ver, msg.rep, msg.rsv, msg.atyp
for i := 5; i < 11; i++ {
msg.buf[i] = 0
}
msg.mlen = 10
}
type reqMsg struct {
ver uint8 // socks v5: 0x05
cmd uint8 // CONNECT: 0x01, BIND:0x02, UDP ASSOCIATE: 0x03
rsv uint8 //RESERVED
atyp uint8 //IP V4 addr: 0x01, DOMANNAME: 0x03, IP V6 addr: 0x04
dst_addr [255]byte //
dst_port [2]uint8 //
dst_port2 uint16 //
reqtype string
url string
}
func (msg *reqMsg) read(bytes []byte) (bool, []byte) {
size := len(bytes)
if size < 4 {
return false, bytes
}
buf := bytes[0:4]
msg.ver, msg.cmd, msg.rsv, msg.atyp = buf[0], buf[1], buf[2], buf[3]
//println("test", msg.ver, msg.cmd, msg.rsv, msg.atyp)
if 5 != msg.ver || 0 != msg.rsv {
log.Println("Request Message VER or RSV error!")
return false, bytes[4:]
}
buf = bytes[4:]
size = len(buf)
switch msg.atyp {
case 1: //ip v4
if size < 4 {
return false, buf
}
copy(msg.dst_addr[:4], buf[:4])
buf = buf[4:]
size = len(buf)
case 4:
if size < 16 {
return false, buf
}
copy(msg.dst_addr[:16], buf[:16])
buf = buf[16:]
size = len(buf)
case 3:
if size < 1 {
return false, buf
}
copy(msg.dst_addr[:1], buf[:1])
buf = buf[1:]
size = len(buf)
if size < int(msg.dst_addr[0]) {
return false, buf
}
copy(msg.dst_addr[1:], buf[:int(msg.dst_addr[0])])
buf = buf[int(msg.dst_addr[0]):]
size = len(buf)
}
if size < 2 {
return false, buf
}
copy(msg.dst_port[:], buf[:2])
msg.dst_port2 = (uint16(msg.dst_port[0]) << 8) + uint16(msg.dst_port[1])
switch msg.cmd {
case 1:
msg.reqtype = "tcp"
case 2:
log.Println("BIND")
case 3:
msg.reqtype = "udp"
}
switch msg.atyp {
case 1: // ipv4
msg.url = fmt.Sprintf("%d.%d.%d.%d:%d", msg.dst_addr[0], msg.dst_addr[1], msg.dst_addr[2], msg.dst_addr[3], msg.dst_port2)
case 3: //DOMANNAME
msg.url = net.JoinHostPort(string(msg.dst_addr[1:1+msg.dst_addr[0]]), fmt.Sprintf("%d", msg.dst_port2))
case 4: //ipv6
msg.url = fmt.Sprintf("[%x%x:%x%x:%x%x:%x%x:%x%x:%x%x:%x%x:%x%x]:%d", msg.dst_addr[0], msg.dst_addr[1], msg.dst_addr[2], msg.dst_addr[3],
msg.dst_addr[4], msg.dst_addr[5], msg.dst_addr[6], msg.dst_addr[7],
msg.dst_addr[8], msg.dst_addr[9], msg.dst_addr[10], msg.dst_addr[11],
msg.dst_addr[12], msg.dst_addr[13], msg.dst_addr[14], msg.dst_addr[15],
msg.dst_port2)
}
log.Println(msg.reqtype, msg.url, msg.atyp, msg.dst_port2)
return true, buf[2:]
}
type Client struct {
id string
buster bool
engine *nat.AttemptEngine
pipes map[int]net.Conn // client for pipes
specPipes map[string]net.Conn // client for pipes
sessions map[string]*clientSession // session to pipeid
sessionLock sync.RWMutex
ready bool
bUdp bool
}
// pipe : client to client
// local : client to local apps
func (sc *Client) getSession(sessionId string) *clientSession {
sc.sessionLock.RLock()
session, _ := sc.sessions[sessionId]
sc.sessionLock.RUnlock()
return session
}
func (sc *Client) removeSession(sessionId string) bool {
if clientType == 1 {
common.RmId("udp", sessionId)
}
sc.sessionLock.RLock()
session, bHave := sc.sessions[sessionId]
sc.sessionLock.RUnlock()
if bHave {
if session.localConn != nil {
session.localConn.Close()
}
sc.sessionLock.Lock()
delete(sc.sessions, sessionId)
sc.sessionLock.Unlock()
//log.Println("client", sc.id, "remove session", sessionId)
return true
}
return false
}
func (sc *Client) OnTunnelRecv(pipe net.Conn, sessionId string, action string, content string) {
//println("recv p2p tunnel", sessionId, action, content)
session := sc.getSession(sessionId)
var conn net.Conn
if session != nil {
conn = session.localConn
}
switch action {
case "tunnel_error":
if conn != nil {
conn.Write([]byte(content))
log.Println("tunnel error", content, sessionId)
}
sc.removeSession(sessionId)
//case "serve_begin":
case "tunnel_msg_s":
if conn != nil {
//println("tunnel msg", sessionId, len(content))
conn.Write([]byte(content))
} else {
//log.Println("cannot tunnel msg", sessionId)
}
case "tunnel_close_s":
sc.removeSession(sessionId)
case "ping", "pingback":
//log.Println("recv", action)
if action == "ping" {
common.Write(pipe, sessionId, "pingback", "")
}
case "tunnel_msg_c":
if conn != nil {
//log.Println("tunnel", len(content), sessionId)
conn.Write([]byte(content))
} else if *localAddr == "socks5" {
if session == nil {
return
}
session.processSockProxy(sc, sessionId, content, func() {
sc.OnTunnelRecv(pipe, sessionId, action, session.recvMsg)
})
}
case "tunnel_close":
sc.removeSession(sessionId)
case "tunnel_open":
if clientType == 0 {
if *localAddr != "socks5" {
s_conn, err := net.DialTimeout("tcp", *localAddr, 10*time.Second)