-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclient.go
More file actions
432 lines (404 loc) · 10.4 KB
/
Copy pathclient.go
File metadata and controls
432 lines (404 loc) · 10.4 KB
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
package tuicv4
import (
"bytes"
"context"
"io"
"net"
"os"
"runtime"
"sync"
"time"
"github.com/sagernet/quic-go"
"github.com/sagernet/sing-quic"
"github.com/sagernet/sing/common"
"github.com/sagernet/sing/common/buf"
E "github.com/sagernet/sing/common/exceptions"
M "github.com/sagernet/sing/common/metadata"
N "github.com/sagernet/sing/common/network"
aTLS "github.com/sagernet/sing/common/tls"
"lukechampine.com/blake3"
)
type ClientOptions struct {
Context context.Context
Dialer N.Dialer
ServerAddress M.Socksaddr
TLSConfig aTLS.Config
QUICConfig *quic.Config
QUICOptions qtls.QUICOptions
Password string
CongestionControl string
UDPStream bool
ZeroRTTHandshake bool
Heartbeat time.Duration
// Deperecated: no-op
UDPMTU int
}
type Client struct {
ctx context.Context
dialer N.Dialer
serverAddr M.Socksaddr
tlsConfig aTLS.Config
quicConfig *quic.Config
password string
congestionControl string
udpStream bool
zeroRTTHandshake bool
heartbeat time.Duration
connAccess sync.Mutex
conn *clientQUICConnection
pending *clientOffer
}
func NewClient(options ClientOptions) (*Client, error) {
if options.Heartbeat == 0 {
options.Heartbeat = 10 * time.Second
}
quicConfig := options.QUICConfig
if quicConfig == nil {
quicConfig = &quic.Config{
DisablePathMTUDiscovery: !(runtime.GOOS == "windows" || runtime.GOOS == "linux" || runtime.GOOS == "android" || runtime.GOOS == "darwin"),
EnableDatagrams: !options.UDPStream,
}
qtls.ApplyQUICOptions(quicConfig, options.QUICOptions)
}
congestionControl := options.CongestionControl
switch congestionControl {
case "":
congestionControl = "cubic"
case "cubic", "new_reno", "bbr", "bbr2":
case "bbr_meta_v1", "bbr_quiche", "bbr2_aggressive":
// sing-quic private names
default:
return nil, E.New("unknown congestion control algorithm: ", congestionControl)
}
return &Client{
ctx: options.Context,
dialer: options.Dialer,
serverAddr: options.ServerAddress,
tlsConfig: options.TLSConfig,
quicConfig: quicConfig,
password: options.Password,
congestionControl: congestionControl,
udpStream: options.UDPStream,
zeroRTTHandshake: options.ZeroRTTHandshake,
heartbeat: options.Heartbeat,
}, nil
}
func (c *Client) offer(ctx context.Context) (*clientQUICConnection, error) {
c.connAccess.Lock()
conn := c.conn
if conn != nil && conn.active() {
c.connAccess.Unlock()
return conn, nil
}
pending := c.pending
if pending != nil {
c.connAccess.Unlock()
select {
case <-pending.done:
return pending.conn, pending.err
case <-ctx.Done():
return nil, ctx.Err()
}
}
// A pending offer is shared by concurrent callers. Do not derive offerCtx
// from the foreground request ctx: a timed-out request must stop waiting for
// the shared result, but it must not tear down the background QUIC dial that
// may still be reused by later requests. The connection attempt is owned by
// the client lifetime context instead.
offerCtx := c.ctx
if offerCtx == nil {
offerCtx = context.Background()
}
offerCtx, cancel := common.ContextWithCancelCause(offerCtx)
pending = &clientOffer{
done: make(chan struct{}),
cancel: cancel,
}
c.pending = pending
c.connAccess.Unlock()
go c.completeOffer(pending, offerCtx)
select {
case <-pending.done:
return pending.conn, pending.err
case <-ctx.Done():
return nil, ctx.Err()
}
}
func (c *Client) completeOffer(pending *clientOffer, offerCtx context.Context) {
conn, err := c.offerNew(offerCtx)
pending.cancel(nil)
discardErr := err
shouldDiscard := false
c.connAccess.Lock()
if pending.discarded {
shouldDiscard = true
if pending.cause != nil {
discardErr = pending.cause
}
pending.err = discardErr
} else {
pending.conn = conn
pending.err = err
if err == nil {
c.conn = conn
}
}
if c.pending == pending {
c.pending = nil
}
close(pending.done)
c.connAccess.Unlock()
if shouldDiscard && conn != nil {
conn.closeWithError(discardErr)
}
}
func (c *Client) offerNew(ctx context.Context) (*clientQUICConnection, error) {
udpConn, err := c.dialer.DialContext(c.ctx, "udp", c.serverAddr)
if err != nil {
return nil, err
}
var quicConn *quic.Conn
if c.zeroRTTHandshake {
quicConn, err = qtls.DialEarly(ctx, udpConn, c.tlsConfig, c.quicConfig)
} else {
quicConn, err = qtls.Dial(ctx, udpConn, c.tlsConfig, c.quicConfig)
}
if err != nil {
udpConn.Close()
return nil, E.Cause(err, "open connection")
}
setCongestion(c.ctx, quicConn, c.congestionControl)
conn := &clientQUICConnection{
quicConn: quicConn,
rawConn: udpConn,
connDone: make(chan struct{}),
udpConnMap: make(map[uint32]*udpPacketConn),
}
go func() {
hErr := c.clientHandshake(quicConn)
if hErr != nil {
conn.closeWithError(hErr)
}
}()
if c.udpStream {
go c.loopUniStreams(conn)
} else {
go c.loopMessages(conn)
}
go c.loopHeartbeats(conn)
return conn, nil
}
func (c *Client) clientHandshake(conn *quic.Conn) error {
authStream, err := conn.OpenUniStream()
if err != nil {
return E.Cause(err, "open handshake stream")
}
tuicAuthToken := blake3.Sum256([]byte(c.password))
authRequest := buf.NewSize(AuthenticateLen)
common.Must(authRequest.WriteByte(Version))
common.Must(authRequest.WriteByte(CommandAuthenticate))
common.Must1(authRequest.Write(tuicAuthToken[:]))
_, err = authStream.Write(authRequest.Bytes())
authRequest.Release()
authStream.Close()
return err
}
func (c *Client) loopHeartbeats(conn *clientQUICConnection) {
ticker := time.NewTicker(c.heartbeat)
defer ticker.Stop()
for {
select {
case <-conn.connDone:
return
case <-ticker.C:
stream, err := conn.quicConn.OpenUniStream()
if err != nil {
continue
}
_, _ = stream.Write([]byte{Version, CommandHeartbeat})
stream.Close()
}
}
}
func (c *Client) DialConn(ctx context.Context, destination M.Socksaddr) (net.Conn, error) {
conn, err := c.offer(ctx)
if err != nil {
return nil, err
}
stream, err := conn.quicConn.OpenStream()
if err != nil {
return nil, err
}
return &clientConn{
Stream: stream,
parent: conn,
destination: destination,
}, nil
}
func (c *Client) ListenPacket(ctx context.Context) (net.PacketConn, error) {
conn, err := c.offer(ctx)
if err != nil {
return nil, err
}
var sessionID uint32
clientPacketConn := newUDPPacketConn(c.ctx, conn.quicConn, c.udpStream, false, func() {
conn.udpAccess.Lock()
delete(conn.udpConnMap, sessionID)
conn.udpAccess.Unlock()
})
conn.udpAccess.Lock()
select {
case <-conn.connDone:
conn.udpAccess.Unlock()
return nil, E.Errors(conn.connErr, os.ErrClosed)
default:
}
sessionID = conn.udpSessionID
conn.udpSessionID++
conn.udpConnMap[sessionID] = clientPacketConn
conn.udpAccess.Unlock()
clientPacketConn.sessionID = sessionID
return clientPacketConn, nil
}
func (c *Client) CloseWithError(err error) error {
c.connAccess.Lock()
conn := c.conn
c.conn = nil
pending := c.pending
if pending != nil {
pending.discarded = true
pending.cause = err
}
c.connAccess.Unlock()
if pending != nil {
pending.cancel(err)
}
if conn != nil {
conn.closeWithError(err)
}
return nil
}
type clientOffer struct {
done chan struct{}
cancel func(error)
conn *clientQUICConnection
err error
discarded bool
cause error
}
type clientQUICConnection struct {
quicConn *quic.Conn
rawConn io.Closer
closeOnce sync.Once
connDone chan struct{}
connErr error
udpAccess sync.RWMutex
udpConnMap map[uint32]*udpPacketConn
udpSessionID uint32
}
func (c *clientQUICConnection) active() bool {
select {
case <-c.quicConn.Context().Done():
return false
default:
}
select {
case <-c.connDone:
return false
default:
}
return true
}
func (c *clientQUICConnection) closeWithError(err error) {
c.closeOnce.Do(func() {
c.connErr = err
c.udpAccess.Lock()
close(c.connDone)
udpConnMap := c.udpConnMap
c.udpConnMap = make(map[uint32]*udpPacketConn)
c.udpAccess.Unlock()
for _, udpConn := range udpConnMap {
udpConn.closeWithError(err)
}
_ = c.quicConn.CloseWithError(0, "")
_ = c.rawConn.Close()
})
}
var (
_ net.Conn = (*clientConn)(nil)
_ N.EarlyWriter = (*clientConn)(nil)
)
type clientConn struct {
*quic.Stream
parent *clientQUICConnection
destination M.Socksaddr
requestWritten bool
responseRead bool
}
func (c *clientConn) NeedHandshakeForWrite() bool {
return !c.requestWritten
}
func (c *clientConn) Read(b []byte) (int, error) {
if !c.responseRead {
buffer := buf.New()
defer buffer.Release()
_, err := buffer.ReadAtLeastFrom(c.Stream, 3)
if err != nil {
return 0, err
}
version := buffer.Byte(0)
if version != Version {
return 0, E.New("unknown version: ", version)
}
command := buffer.Byte(1)
if command != CommandResponse {
return 0, E.New("unknown command: ", command)
}
option := buffer.Byte(2)
if option == OptionResponseFailed {
return 0, E.New("response failed")
}
if option != OptionResponseSuccess {
return 0, E.New("unknown response option: ", option)
}
c.responseRead = true
reader := io.MultiReader(bytes.NewReader(buffer.From(3)), c.Stream)
n, err := reader.Read(b)
return n, wrapQUICError(err)
}
n, err := c.Stream.Read(b)
return n, wrapQUICError(err)
}
func (c *clientConn) Write(b []byte) (int, error) {
if !c.requestWritten {
request := buf.NewSize(2 + AddressSerializer.AddrPortLen(c.destination) + len(b))
common.Must(request.WriteByte(Version))
common.Must(request.WriteByte(CommandConnect))
common.Must(AddressSerializer.WriteAddrPort(request, c.destination))
common.Must1(request.Write(b))
_, err := c.Stream.Write(request.Bytes())
request.Release()
if err != nil {
c.parent.closeWithError(E.Cause(err, "create new connection"))
return 0, wrapQUICError(err)
}
c.requestWritten = true
return len(b), nil
}
n, err := c.Stream.Write(b)
return n, wrapQUICError(err)
}
func (c *clientConn) Close() error {
c.Stream.CancelRead(0)
err := c.Stream.Close()
// quic-go's Stream.Close does not unblock a Write blocked on flow control,
// but a past write deadline does; buffered data and the FIN are unaffected.
c.Stream.SetWriteDeadline(time.Now())
return err
}
func (c *clientConn) LocalAddr() net.Addr {
return M.Socksaddr{}
}
func (c *clientConn) RemoteAddr() net.Addr {
return c.destination
}