-
Notifications
You must be signed in to change notification settings - Fork 132
/
traffic_redirect.go
296 lines (267 loc) · 6.85 KB
/
traffic_redirect.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
package rotateproxy
import (
"bytes"
"context"
"errors"
"fmt"
"io"
"net"
"strings"
"time"
"golang.org/x/sync/errgroup"
)
const (
socksVer5 = 5
)
var (
largeBufferSize = 32 * 1024 // 32KB large buffer
ErrNotSocks5Proxy = errors.New("this is not a socks proxy server")
)
type BaseConfig struct {
ListenAddr string
IPRegionFlag int // 0: all 1: cannot bypass gfw 2: bypass gfw
Username string
Password string
SelectStrategy int // 0: random, 1: Select the one with the shortest timeout, 2: Select the two with the shortest timeout, ...
}
type ConnPreProcessorIface interface {
// 上游连接预处理
UpstreamPreProcess(conn net.Conn) (err error)
// 下游连接预处理
DownstreamPreProcess(conn net.Conn) (err error)
}
// AuthPreProcessor 带认证的socks5预处理器
type AuthPreProcessor struct {
cfg BaseConfig
}
type NoAuthPreProcessor struct {
cfg BaseConfig
}
// DownstreamPreProcess auth for socks5 server(local)
func (p *AuthPreProcessor) DownstreamPreProcess(conn net.Conn) (err error) {
buf := make([]byte, 256)
// read VER and NMETHODS
if _, err := io.ReadFull(conn, buf[:2]); err != nil {
return errors.New("reading header: " + err.Error())
}
ver, nMethods := int(buf[0]), int(buf[1])
if ver != socksVer5 {
return errors.New("invalid version")
}
if _, err = io.ReadFull(conn, buf[:nMethods]); err != nil {
return errors.New("reading methods: " + err.Error())
}
/*
X'00' NO AUTHENTICATION REQUIRED
X'01' GSSAPI
X'02' USERNAME/PASSWORD
X'03' to X'7F' IANA ASSIGNED
X'80' to X'FE' RESERVED FOR PRIVATE METHODS
X'FF' NO ACCEPTABLE METHODS
*/
if !bytes.Contains(buf[:nMethods], []byte{0x02}) {
_, err := conn.Write([]byte{socksVer5, 0xff})
if err != nil {
return errors.New("write need auth error: " + err.Error())
}
err = errors.New("method forbidden")
return err
}
// USERNAME/PASSWORD
_, err = conn.Write([]byte{socksVer5, 0x02})
if err != nil {
return
}
_, err = conn.Read(buf[0:])
if err != nil {
return
}
b0 := buf[0]
nameLens := int(buf[1])
uName := string(buf[2 : 2+nameLens])
passLens := int(buf[2+nameLens])
uPass := string(buf[2+nameLens+1 : 2+nameLens+1+passLens])
if uName != p.cfg.Username || uPass != p.cfg.Password {
_, _ = conn.Write([]byte{b0, 0xff})
err = errors.New("authentication failed")
return
}
// send confirmation: version 5, no authentication required
_, err = conn.Write([]byte{b0, 0x00})
return
}
// UpstreamPreProcess no auth for remote socks5 serer
func (p *AuthPreProcessor) UpstreamPreProcess(conn net.Conn) (err error) {
defer func() {
if e := recover(); e != nil {
err = fmt.Errorf("%v", e)
ErrorLog(Warn("close connection: %v", err))
}
}()
if conn == nil {
return errors.New("connection is nil")
}
_, err = conn.Write([]byte{socksVer5, 0x02, 0x00, 0x01})
if err != nil {
return errors.New("write upstream connection failed: " + err.Error())
}
buf := make([]byte, 256)
_, err = io.ReadFull(conn, buf[:2])
if err != nil {
return err
}
if buf[0] != socksVer5 && int(buf[1]) != 0x00 {
return ErrNotSocks5Proxy
}
return
}
func NewAuthPreProcessor(cfg BaseConfig) *AuthPreProcessor {
return &AuthPreProcessor{cfg: cfg}
}
func (p *NoAuthPreProcessor) UpstreamPreProcess(conn net.Conn) (err error) {
return nil
}
func (p *NoAuthPreProcessor) DownstreamPreProcess(conn net.Conn) (err error) {
return nil
}
func NewNoAuthPreProcessor(cfg BaseConfig) *NoAuthPreProcessor {
return &NoAuthPreProcessor{cfg: cfg}
}
type RedirectClient struct {
config *BaseConfig
currentProxy string
preProcessor ConnPreProcessorIface
}
type RedirectClientOption func(*RedirectClient)
func WithConfig(config *BaseConfig) RedirectClientOption {
return func(c *RedirectClient) {
c.config = config
}
}
func NewRedirectClient(opts ...RedirectClientOption) *RedirectClient {
c := &RedirectClient{}
for _, opt := range opts {
opt(c)
}
if c.config != nil {
if c.config.Username != "" && c.config.Password != "" {
c.preProcessor = NewAuthPreProcessor(*c.config)
} else {
c.preProcessor = NewNoAuthPreProcessor(*c.config)
}
}
return c
}
func (c *RedirectClient) Serve(ctx context.Context) error {
l, err := net.Listen("tcp", c.config.ListenAddr)
if err != nil {
return err
}
for IsProxyURLBlank() {
InfoLog(Noticeln("[*] waiting for crawl proxy..."))
time.Sleep(3 * time.Second)
}
for {
select {
case <- ctx.Done():
return nil
default:
conn, err := l.Accept()
if err != nil {
ErrorLog(Warn("[!] accept error: %v", err))
continue
}
go c.HandleConn(conn)
}
}
}
// getValidSocks5Connection 获取可用的socks5连接并完成握手阶段
func (c *RedirectClient) getValidSocks5Connection() (cc net.Conn, err error) {
// var cc net.Conn
for {
key, err := RandomProxyURL(c.config.IPRegionFlag, c.config.SelectStrategy)
if err != nil {
return nil, err
}
key = strings.TrimPrefix(key, "socks5://")
c.currentProxy = key
cc, err = net.DialTimeout("tcp", key, 5*time.Second)
if err != nil {
closeConn(cc)
SetProxyURLUnavail(key)
ErrorLog(Warn("[!] cannot connect to %v", key))
return cc, err
}
InfoLog(Info("[*] use %v", key))
// write header for remote socks5 server
err = c.preProcessor.UpstreamPreProcess(cc)
if err != nil {
closeConn(cc)
if errors.Is(err, ErrNotSocks5Proxy) {
// 将该代理设置为不可用
SetProxyURLUnavail(c.currentProxy)
ErrorLog(Warn("Error : %v", err))
continue
}
ErrorLog(Warn("socks handshake with downstream failed: %v", err))
continue
}
break
}
return cc, nil
}
func (c *RedirectClient) HandleConn(conn net.Conn) {
defer closeConn(conn)
// auth for local socks5 serer
err := c.preProcessor.DownstreamPreProcess(conn)
if err != nil {
ErrorLog(Warn("[!] socks handshake with downstream failed: %v", err))
return
}
cc, err := c.getValidSocks5Connection()
if err != nil {
ErrorLog(Warn("[!] getValidSocks5Connection failed: %v", err))
SetProxyURLUnavail(c.currentProxy)
return
}
defer closeConn(cc)
err = transport(conn, cc)
if err != nil {
ErrorLog(Warn("[!] transport error: %v", err))
SetProxyURLUnavail(c.currentProxy)
}
}
func closeConn(conn net.Conn) (err error) {
defer func() {
if e := recover(); e != nil {
err = fmt.Errorf("%v", e)
ErrorLog(Warn("[*] close connection: %v", err))
}
}()
err = conn.Close()
return err
}
func transport(rw1, rw2 io.ReadWriter) error {
g, _ := errgroup.WithContext(context.Background())
g.Go(func() error {
return copyBuffer(rw1, rw2)
})
g.Go(func() error {
return copyBuffer(rw2, rw1)
})
var err error
if err = g.Wait(); err != nil && err == io.EOF {
err = nil
}
return err
}
func copyBuffer(dst io.Writer, src io.Reader) (err error) {
defer func() {
if e := recover(); e != nil {
err = fmt.Errorf("[!] copyBuffer: %v", e)
}
}()
buf := make([]byte, largeBufferSize)
_, err = CopyBufferWithCloseErr(dst, src, buf)
return err
}