-
Notifications
You must be signed in to change notification settings - Fork 61
/
main.go
523 lines (475 loc) · 14.2 KB
/
main.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
package main
import (
"context"
"encoding/binary"
"flag"
"fmt"
"io"
"net"
"os"
"os/signal"
"strings"
"syscall"
"time"
// "net/http"
// _ "net/http/pprof"
"gopkg.in/yaml.v2"
)
var (
version string // 编译时写入版本号
ConfigFilePath string // 配置文件
LogFilePath string // 日志文件
EnableDebug bool // 调试模式(详细日志)
ForwardPort = 443 // 要转发至的目标端口
cfg configModel // 配置文件结构
)
// 配置文件结构
type configModel struct {
ForwardRules []string `yaml:"rules,omitempty"`
ListenAddr string `yaml:"listen_addr,omitempty"`
EnableSocks bool `yaml:"enable_socks5,omitempty"`
SocksAddr string `yaml:"socks_addr,omitempty"`
AllowAllHosts bool `yaml:"allow_all_hosts,omitempty"`
}
func init() {
var printVersion bool
var help = `
SNIProxy ` + version + `
https://github.com/XIU2/SNIProxy
参数:
-c config.yaml
配置文件 (默认 config.yaml)
-l sni.log
日志文件 (默认 无)
-d
调试模式 (默认 关)
-v
程序版本
-h
帮助说明
`
flag.StringVar(&ConfigFilePath, "c", "config.yaml", "配置文件")
flag.StringVar(&LogFilePath, "l", "", "日志文件")
flag.BoolVar(&EnableDebug, "d", false, "调试模式")
flag.BoolVar(&printVersion, "v", false, "程序版本")
flag.Usage = func() { fmt.Print(help) }
flag.Parse()
if printVersion {
fmt.Printf("XIU2/SNIProxy %s\n", version)
os.Exit(0)
}
}
// func webPprof() {
// if err := http.ListenAndServe(":6060", nil); err != nil {
// serviceLogger(fmt.Sprintf("启动 pprof 服务失败: %v", err), 31, false)
// }
// }
func main() {
data, err := os.ReadFile(ConfigFilePath) // 读取配置文件
if err != nil {
serviceLogger(fmt.Sprintf("配置文件读取失败: %v", err), 31, false)
os.Exit(1)
}
if err := yaml.Unmarshal(data, &cfg); err != nil {
serviceLogger(fmt.Sprintf("配置文件解析失败: %v", err), 31, false)
os.Exit(1)
}
if len(cfg.ForwardRules) <= 0 && !cfg.AllowAllHosts { // 如果 rules 为空且 allow_all_hosts 不等于 true
serviceLogger("配置文件中 rules 不能为空(除非 allow_all_hosts 等于 true)!", 31, false)
os.Exit(1)
}
for _, rule := range cfg.ForwardRules { // 输出规则中的所有域名
serviceLogger(fmt.Sprintf("加载规则: %v", rule), 32, false)
}
serviceLogger(fmt.Sprintf("调试模式: %v", EnableDebug), 32, false)
serviceLogger(fmt.Sprintf("前置代理: %v", cfg.EnableSocks), 32, false)
serviceLogger(fmt.Sprintf("任意域名: %v", cfg.AllowAllHosts), 32, false)
// go webPprof() // 启动 pprof 服务
startSniProxy() // 启动 SNI Proxy
}
// 启动 SNI Proxy
func startSniProxy() {
_, cancel := context.WithCancel(context.Background())
defer cancel()
listener, err := net.Listen("tcp", cfg.ListenAddr)
if err != nil {
serviceLogger(fmt.Sprintf("监听失败: %v", err), 31, false)
os.Exit(1)
}
serviceLogger(fmt.Sprintf("开始监听: %v", listener.Addr()), 0, false)
go func(listener net.Listener) {
defer listener.Close()
for {
connection, err := listener.Accept()
if err != nil {
serviceLogger(fmt.Sprintf("接受连接请求时出错: %v", err), 31, false)
continue
}
raddr := connection.RemoteAddr().(*net.TCPAddr)
serviceLogger("连接来自: "+raddr.String(), 32, false)
go serve(connection, raddr.String()) // 有新连接进来,启动一个新线程处理
}
}(listener)
ch := make(chan os.Signal, 2)
signal.Notify(ch, syscall.SIGINT, syscall.SIGTERM)
s := <-ch
cancel()
fmt.Printf("\n接收到信号 %s, 退出.\n", s)
}
// 处理新连接
func serve(c net.Conn, raddr string) {
defer c.Close()
buf := make([]byte, 2048)
var fullHeader []byte
const maxAttempts = 2
attempts := 0
for {
n, err := c.Read(buf)
if err != nil && err != io.EOF {
serviceLogger(fmt.Sprintf("读取连接请求时出错: %v", err), 31, false)
return
}
fullHeader = append(fullHeader, buf[:n]...)
if len(fullHeader) < 5 { // 判断是不是 TLS 握手消息
serviceLogger("不是 TLS 握手消息", 31, true)
return
} else if IsCompleteHandshake(fullHeader) { // 检查是否已经接收到完整的 TLS 握手消息
break // 如果已经完整,那么退出循环
}
attempts++
if attempts >= maxAttempts {
serviceLogger("接收握手消息超时...", 31, false)
return // 如果超过最大等待次数,退出函数
}
}
if attempts > 0 { // 如果等于 0 说明第一次就接收到了完整握手消息,如果大于 0 说明握手消息丢包或分段了
serviceLogger("已接收到完整握手消息...", 32, true)
}
ServerName := getSNIServerName(fullHeader) // 获取 SNI 域名
if ServerName == "" {
serviceLogger("未找到 SNI 域名, 忽略...", 31, true)
return
}
if cfg.AllowAllHosts { // 如果 allow_all_hosts 为 true 则代表无需判断 SNI 域名
serviceLogger(fmt.Sprintf("转发目标: %s:%d", ServerName, ForwardPort), 32, false)
forward(c, fullHeader, fmt.Sprintf("%s:%d", ServerName, ForwardPort), raddr)
return
}
for _, rule := range cfg.ForwardRules { // 循环遍历 Rules 中指定的白名单域名
if strings.Contains(ServerName, rule) { // 如果 SNI 域名中包含 Rule 白名单域名(例如 www.aa.com 中包含 aa.com)则转发该连接
serviceLogger(fmt.Sprintf("转发目标: %s:%d", ServerName, ForwardPort), 32, false)
forward(c, fullHeader, fmt.Sprintf("%s:%d", ServerName, ForwardPort), raddr)
}
}
}
// 判断握手消息是否完整
func IsCompleteHandshake(header []byte) bool {
Length := binary.BigEndian.Uint16(header[3:5])
return len(header) >= int(Length)+5
}
// 获取 SNI 域名
func getSNIServerName(buf []byte) string {
n := len(buf)
if n < 5 {
serviceLogger("不是 TLS 握手消息", 31, true)
return ""
}
// TLS 记录类型
if recordType(buf[0]) != recordTypeHandshake {
serviceLogger("不是 TLS", 31, true)
return ""
}
// TLS 主要版本
if buf[1] != 3 {
serviceLogger("不支持 TLS 版本 < 3", 31, true)
return ""
}
// payload 长度
//l := int(buf[3])<<16 + int(buf[4])
//log.Printf("length: %d, got: %d", l, n)
// 握手消息类型
if buf[5] != typeClientHello {
serviceLogger("不是 Client Hello 消息", 31, true)
return ""
}
// 以下开始解析 Client Hello 消息
msg := &clientHelloMsg{}
// Client Hello 不包含 TLS 标头, 5 字节
ret := msg.unmarshal(buf[5:n])
if !ret {
serviceLogger("解析 Client Hello 消息失败", 31, true)
return ""
}
return msg.serverName
}
// forward 函数接收一个 net.Conn 类型的连接对象 conn、一个 []byte 类型的数据 data、一个目标地址 dst、一个来源地址 raddr
// 该函数使用 GetDialer 函数创建一个与目标地址 dst 的后端连接 backend,将 data 写入 backend,然后使用 ioReflector 函数将 backend 和 conn 连接起来,以便将数据从一个连接转发到另一个连接
func forward(conn net.Conn, data []byte, dst string, raddr string) {
backend, err := GetDialer(cfg.EnableSocks).Dial("tcp", dst)
if err != nil {
serviceLogger(fmt.Sprintf("无法连接到后端, %v", err), 31, false)
return
}
defer backend.Close()
if _, err = backend.Write(data); err != nil {
serviceLogger(fmt.Sprintf("无法传输到后端, %v", err), 31, false)
return
}
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
conChk := make(chan struct{})
go ioReflector(ctx, backend, conn, false, conChk, raddr, dst)
go ioReflector(ctx, conn, backend, true, conChk, raddr, dst)
<-conChk
// 取消上下文,通知另一个 ioReflector 退出
cancel()
}
// ioReflector 函数接收一个 io.WriteCloser 类型的写入对象 dst、一个 io.Reader 类型的读取对象 src、一个 bool 类型的 isToClient、一个 chan struct{} 类型的 conChk,以及两个字符串类型的 raddr 和 dsts
// 该函数使用 io.Copy 函数将 src 中读取到的数据流复制到 dst 中,然后将转发的字节数写入日志
// 最后,该函数关闭 dst 连接,并向 conChk 通道发送一个信号以表示连接已关闭。
func ioReflector(ctx context.Context, dst io.WriteCloser, src io.Reader, isToClient bool, conChk chan struct{}, raddr string, dsts string) {
// 将 IO 流反映到另一个
defer onDisconnect(dst, conChk)
done := make(chan struct{})
go func() {
written, _ := io.Copy(dst, src)
if isToClient {
serviceLogger(fmt.Sprintf("[%v] -> [%v] %d bytes", dsts, raddr, written), 33, true)
} else {
serviceLogger(fmt.Sprintf("[%v] -> [%v] %d bytes", raddr, dsts, written), 33, true)
}
close(done)
}()
select {
case <-ctx.Done():
// 上下文取消,退出
case <-done:
// 复制完成,退出
}
}
// onDisconnect 函数接收一个 io.WriteCloser 类型的写入对象 dst 和一个 chan struct{} 类型的 conChk
// 该函数在 dst 连接关闭时被调用,并向 conChk 通道发送一个信号以表示连接已关闭
func onDisconnect(dst io.WriteCloser, conChk chan struct{}) {
// 关闭时 -> 强制断开另一对连接
dst.Close()
select {
case conChk <- struct{}{}:
default:
}
}
// 解析 Client Hello 消息
func (m *clientHelloMsg) unmarshal(data []byte) bool {
if len(data) < 42 {
return false
}
m.raw = data
m.vers = uint16(data[4])<<8 | uint16(data[5])
m.random = data[6:38]
sessionIDLen := int(data[38])
if sessionIDLen > 32 || len(data) < 39+sessionIDLen {
return false
}
m.sessionID = data[39 : 39+sessionIDLen]
data = data[39+sessionIDLen:]
if len(data) < 2 {
return false
}
// cipherSuiteLen 是密码套件编号的字节数。由于是 uint16,因此数字必须是偶数
cipherSuiteLen := int(data[0])<<8 | int(data[1])
if cipherSuiteLen%2 == 1 || len(data) < 2+cipherSuiteLen {
return false
}
numCipherSuites := cipherSuiteLen / 2
m.cipherSuites = make([]uint16, numCipherSuites)
for i := 0; i < numCipherSuites; i++ {
m.cipherSuites[i] = uint16(data[2+2*i])<<8 | uint16(data[3+2*i])
if m.cipherSuites[i] == scsvRenegotiation {
m.secureRenegotiationSupported = true
}
}
data = data[2+cipherSuiteLen:]
if len(data) < 1 {
return false
}
compressionMethodsLen := int(data[0])
if len(data) < 1+compressionMethodsLen {
return false
}
m.compressionMethods = data[1 : 1+compressionMethodsLen]
data = data[1+compressionMethodsLen:]
m.nextProtoNeg = false
m.serverName = ""
m.ocspStapling = false
m.ticketSupported = false
m.sessionTicket = nil
m.signatureAndHashes = nil
m.alpnProtocols = nil
m.scts = false
if len(data) == 0 {
// ClientHello 后面可选地跟着扩展数据
return true
}
if len(data) < 2 {
return false
}
extensionsLength := int(data[0])<<8 | int(data[1])
data = data[2:]
if extensionsLength != len(data) {
return false
}
for len(data) != 0 {
if len(data) < 4 {
return false
}
extension := uint16(data[0])<<8 | uint16(data[1])
length := int(data[2])<<8 | int(data[3])
data = data[4:]
if len(data) < length {
return false
}
switch extension {
case extensionServerName:
d := data[:length]
if len(d) < 2 {
return false
}
namesLen := int(d[0])<<8 | int(d[1])
d = d[2:]
if len(d) != namesLen {
return false
}
for len(d) > 0 {
if len(d) < 3 {
return false
}
nameType := d[0]
nameLen := int(d[1])<<8 | int(d[2])
d = d[3:]
if len(d) < nameLen {
return false
}
if nameType == 0 {
m.serverName = string(d[:nameLen])
// SNI 值末尾不能有点
if strings.HasSuffix(m.serverName, ".") {
return false
}
break
}
d = d[nameLen:]
}
case extensionNextProtoNeg:
if length > 0 {
return false
}
m.nextProtoNeg = true
case extensionStatusRequest:
m.ocspStapling = length > 0 && data[0] == statusTypeOCSP
case extensionSupportedCurves:
// http://tools.ietf.org/html/rfc4492#section-5.5.1
if length < 2 {
return false
}
l := int(data[0])<<8 | int(data[1])
if l%2 == 1 || length != l+2 {
return false
}
numCurves := l / 2
m.supportedCurves = make([]CurveID, numCurves)
d := data[2:]
for i := 0; i < numCurves; i++ {
m.supportedCurves[i] = CurveID(d[0])<<8 | CurveID(d[1])
d = d[2:]
}
case extensionSupportedPoints:
// http://tools.ietf.org/html/rfc4492#section-5.5.2
if length < 1 {
return false
}
l := int(data[0])
if length != l+1 {
return false
}
m.supportedPoints = make([]uint8, l)
copy(m.supportedPoints, data[1:])
case extensionSessionTicket:
// http://tools.ietf.org/html/rfc5077#section-3.2
m.ticketSupported = true
m.sessionTicket = data[:length]
case extensionSignatureAlgorithms:
// https://tools.ietf.org/html/rfc5246#section-7.4.1.4.1
if length < 2 || length&1 != 0 {
return false
}
l := int(data[0])<<8 | int(data[1])
if l != length-2 {
return false
}
n := l / 2
d := data[2:]
m.signatureAndHashes = make([]signatureAndHash, n)
for i := range m.signatureAndHashes {
m.signatureAndHashes[i].hash = d[0]
m.signatureAndHashes[i].signature = d[1]
d = d[2:]
}
case extensionRenegotiationInfo:
if length == 0 {
return false
}
d := data[:length]
l := int(d[0])
d = d[1:]
if l != len(d) {
return false
}
m.secureRenegotiation = d
m.secureRenegotiationSupported = true
case extensionALPN:
if length < 2 {
return false
}
l := int(data[0])<<8 | int(data[1])
if l != length-2 {
return false
}
d := data[2:length]
for len(d) != 0 {
stringLen := int(d[0])
d = d[1:]
if stringLen == 0 || stringLen > len(d) {
return false
}
m.alpnProtocols = append(m.alpnProtocols, string(d[:stringLen]))
d = d[stringLen:]
}
case extensionSCT:
m.scts = true
if length != 0 {
return false
}
}
data = data[length:]
}
return true
}
// 输出日志
func serviceLogger(log string, color int, isDebug bool) {
if isDebug && !EnableDebug {
return
}
log = strings.Replace(log, "\n", "", -1)
log = strings.Join([]string{time.Now().Format("2006/01/02 15:04:05"), " ", log}, "")
if color == 0 {
fmt.Printf("%s\n", log)
} else {
fmt.Printf("%c[1;0;%dm%s%c[0m\n", 0x1B, color, log, 0x1B)
}
if LogFilePath != "" {
fd, _ := os.OpenFile(LogFilePath, os.O_RDWR|os.O_CREATE|os.O_APPEND, 0644)
fdContent := strings.Join([]string{log, "\n"}, "")
buf := []byte(fdContent)
fd.Write(buf)
fd.Close()
}
}