-
Notifications
You must be signed in to change notification settings - Fork 140
/
udp.go
executable file
·190 lines (174 loc) · 5.78 KB
/
udp.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
package main
import (
"bytes"
"log"
"net"
"sync"
"time"
)
type UdpSession struct {
cConn net.Conn
udpSConn *net.UDPConn
c2s_CuteBi_XorCrypt_passwordSub, s2c_CuteBi_XorCrypt_passwordSub int
}
var udpBufferPool sync.Pool = sync.Pool{
New: func() interface{} {
return make([]byte, 65536)
},
}
func (udpSess *UdpSession) udpServerToClient() {
/* 不要在for里用:=申请变量, 否则每次循环都会重新申请内存 */
var (
RAddr *net.UDPAddr
payload_len, ignore_head_len, WLen int
err error
)
payload := udpBufferPool.Get().([]byte)
defer func() {
udpBufferPool.Put(payload)
udpSess.cConn.Close()
udpSess.udpSConn.Close()
}()
for {
udpSess.cConn.SetReadDeadline(time.Now().Add(config.Udp_timeout))
udpSess.udpSConn.SetReadDeadline(time.Now().Add(config.Udp_timeout))
payload_len, RAddr, err = udpSess.udpSConn.ReadFromUDP(payload[24:] /*24为httpUDP协议头保留使用*/)
if err != nil || payload_len <= 0 {
return
}
//fmt.Println("readUdpServerLen: ", payload_len, "RAddr: ", RAddr.String())
if bytes.HasPrefix(RAddr.IP, []byte{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0xff, 0xff}) == true {
/* ipv4 */
ignore_head_len = 12 //数组前面的12字节不需要
payload[12] = byte(payload_len + 10) //从第13个字节开始设置协议头
payload[13] = byte((payload_len + 10) >> 8)
copy(payload[14:18], []byte{0, 0, 0, 1})
copy(payload[18:22], []byte(RAddr.IP)[12:16])
} else {
/* ipv6 */
ignore_head_len = 0
payload[0] = byte(payload_len + 22)
payload[1] = byte((payload_len + 22) >> 8)
copy(payload[2:6], []byte{0, 0, 0, 3})
copy(payload[6:22], []byte(RAddr.IP))
}
payload[22] = byte(RAddr.Port >> 8)
payload[23] = byte(RAddr.Port)
if len(CuteBi_XorCrypt_password) != 0 {
udpSess.s2c_CuteBi_XorCrypt_passwordSub = CuteBi_XorCrypt(payload[ignore_head_len:24+payload_len], udpSess.s2c_CuteBi_XorCrypt_passwordSub)
}
udpSess.cConn.SetWriteDeadline(time.Now().Add(config.Udp_timeout))
if WLen, err = udpSess.cConn.Write(payload[ignore_head_len : 24+payload_len]); err != nil || WLen <= 0 {
return
}
}
}
func (udpSess *UdpSession) writeToServer(httpUDP_data []byte) int {
var (
udpAddr net.UDPAddr
err error
WLen int
pkgSub, httpUDP_protocol_head_len int
pkgLen uint16
)
for pkgSub = 0; pkgSub+2 < len(httpUDP_data); pkgSub += 2 + int(pkgLen) {
pkgLen = uint16(httpUDP_data[pkgSub]) | (uint16(httpUDP_data[pkgSub+1]) << 8) //2字节储存包的长度,包括socks5头
//log.Println("pkgSub: ", pkgSub, ", pkgLen: ", pkgLen, " ", uint16(len(httpUDP_data)))
if pkgSub+2+int(pkgLen) > len(httpUDP_data) || pkgLen <= 10 {
return 0
}
if bytes.HasPrefix(httpUDP_data[pkgSub+3:pkgSub+5], []byte{0, 0}) == false {
return 1
}
if httpUDP_data[5] == 1 {
/* ipv4 */
udpAddr.IP = net.IPv4(httpUDP_data[pkgSub+6], httpUDP_data[pkgSub+7], httpUDP_data[pkgSub+8], httpUDP_data[pkgSub+9])
udpAddr.Port = int((uint16(httpUDP_data[pkgSub+10]) << 8) | uint16(httpUDP_data[pkgSub+11]))
httpUDP_protocol_head_len = 12
} else {
if pkgLen <= 24 {
return 0
}
/* ipv6 */
udpAddr.IP = net.IP(httpUDP_data[pkgSub+6 : pkgSub+22])
udpAddr.Port = int((uint16(httpUDP_data[pkgSub+22]) << 8) | uint16(httpUDP_data[pkgSub+23]))
httpUDP_protocol_head_len = 24
}
//log.Println("WriteToUdpAddr: ", udpAddr.String())
if WLen, err = udpSess.udpSConn.WriteToUDP(httpUDP_data[pkgSub+httpUDP_protocol_head_len:pkgSub+2+int(pkgLen)], &udpAddr); err != nil || WLen <= 0 {
return -1
}
}
return int(pkgSub)
}
func (udpSess *UdpSession) udpClientToServer(httpUDP_data []byte) {
var payload_len, RLen, WLen int
var err error
payload := udpBufferPool.Get().([]byte)
defer func() {
udpBufferPool.Put(payload)
udpSess.cConn.Close()
udpSess.udpSConn.Close()
}()
if httpUDP_data != nil {
WLen = udpSess.writeToServer(httpUDP_data)
if WLen == -1 {
return
}
if WLen < len(httpUDP_data) {
payload_len = copy(payload, httpUDP_data[WLen:])
}
}
for {
udpSess.cConn.SetReadDeadline(time.Now().Add(config.Udp_timeout))
udpSess.udpSConn.SetReadDeadline(time.Now().Add(config.Udp_timeout))
RLen, err = udpSess.cConn.Read(payload[payload_len:])
if err != nil || RLen <= 0 {
return
}
if len(CuteBi_XorCrypt_password) != 0 {
udpSess.c2s_CuteBi_XorCrypt_passwordSub = CuteBi_XorCrypt(payload[payload_len:payload_len+RLen], udpSess.c2s_CuteBi_XorCrypt_passwordSub)
}
payload_len += RLen
//log.Println("Read Client: ", payload_len)
WLen = udpSess.writeToServer(payload[:payload_len])
if WLen == -1 {
return
} else if WLen < payload_len {
payload_len = copy(payload, payload[WLen:payload_len])
} else {
payload_len = 0
}
}
}
func (udpSess *UdpSession) initUdp(httpUDP_data []byte) bool {
if httpUDP_data != nil && len(CuteBi_XorCrypt_password) != 0 {
de := make([]byte, 5)
copy(de, httpUDP_data[0:5])
CuteBi_XorCrypt(de, 0)
if de[2] != 0 || de[3] != 0 || de[4] != 0 {
return false
}
udpSess.c2s_CuteBi_XorCrypt_passwordSub = CuteBi_XorCrypt(httpUDP_data, 0)
}
var err error
udpSess.udpSConn, err = net.ListenUDP("udp", nil)
if err != nil {
log.Println(err)
return false
}
return true
}
func handleUdpSession(cConn net.Conn, httpUDP_data []byte) {
//defer log.Println("A udp client close")
udpSess := new(UdpSession)
udpSess.cConn = cConn
if udpSess.initUdp(httpUDP_data) == false {
cConn.Close()
log.Println("Is not httpUDP protocol or Decrypt failed")
return
}
//log.Println("Start udpForward")
go udpSess.udpClientToServer(httpUDP_data)
udpSess.udpServerToClient()
}