forked from SagerNet/LibSagerNetCore
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathtun.go
490 lines (425 loc) · 11.5 KB
/
tun.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
package libcore
import (
"context"
"github.com/miekg/dns"
"github.com/pkg/errors"
"github.com/sirupsen/logrus"
"github.com/xtls/xray-core/common/buf"
v2rayNet "github.com/xtls/xray-core/common/net"
"github.com/xtls/xray-core/common/session"
"github.com/xtls/xray-core/common/task"
"github.com/xtls/xray-core/core"
v2rayDns "github.com/xtls/xray-core/features/dns"
"github.com/xtls/xray-core/transport"
"github.com/xtls/xray-core/transport/internet"
"github.com/xtls/xray-core/transport/pipe"
"io"
"libcore/gvisor"
"libcore/lwip"
"libcore/tun"
"math"
"net"
"os"
"path/filepath"
"sync"
"sync/atomic"
"time"
)
var _ tun.Handler = (*Tun2ray)(nil)
type Tun2ray struct {
access sync.Mutex
dev tun.Tun
router string
hijackDns bool
v2ray *V2RayInstance
udpTable *natTable
fakedns bool
sniffing bool
overrideDestination bool
debug bool
dumpUid bool
trafficStats bool
appStats map[uint16]*appStats
pcap bool
}
const (
appStatusForeground = "foreground"
appStatusBackground = "background"
)
func NewTun2ray(fd int32, mtu int32, v2ray *V2RayInstance,
router string, gVisor bool, hijackDns bool, sniffing bool,
overrideDestination bool, fakedns bool, debug bool,
dumpUid bool, trafficStats bool, pcap bool) (*Tun2ray, error) {
/* if fd < 0 {
return nil, errors.New("must provide a valid TUN file descriptor")
}
// Make a copy of `fd` so that os.File's finalizer doesn't close `fd`.
newFd, err := unix.Dup(int(fd))
if err != nil {
return nil, err
}*/
if debug {
logrus.SetLevel(logrus.DebugLevel)
} else {
logrus.SetLevel(logrus.WarnLevel)
}
t := &Tun2ray{
router: router,
hijackDns: hijackDns,
v2ray: v2ray,
udpTable: &natTable{},
sniffing: sniffing,
overrideDestination: overrideDestination,
fakedns: fakedns,
debug: debug,
dumpUid: dumpUid,
trafficStats: trafficStats,
}
if trafficStats {
t.appStats = map[uint16]*appStats{}
}
var err error
if gVisor {
var pcapFile *os.File
if pcap {
path := time.Now().UTC().String()
path = externalAssetsPath + "/pcap/" + path + ".pcap"
err = os.MkdirAll(filepath.Dir(path), 0755)
if err != nil {
return nil, errors.WithMessage(err, "unable to create pcap dir")
}
pcapFile, err = os.Create(path)
if err != nil {
return nil, errors.WithMessage(err, "unable to create pcap file")
}
}
t.dev, err = gvisor.New(fd, mtu, t, gvisor.DefaultNIC, pcap, pcapFile, math.MaxUint32, ipv6Mode)
} else {
dev := os.NewFile(uintptr(fd), "")
if dev == nil {
return nil, errors.New("failed to open TUN file descriptor")
}
t.dev, err = lwip.New(dev, mtu, t)
}
if err != nil {
return nil, err
}
dc := v2ray.dnsClient
if fakedns {
_, _ = dc.LookupIP("placeholder", v2rayDns.IPOption{
IPv4Enable: false,
IPv6Enable: false,
FakeEnable: true,
})
}
internet.UseAlternativeSystemDialer(&protectedDialer{
resolver: func(domain string) ([]net.IP, error) {
return dc.LookupIP(domain, v2rayDns.IPOption{
IPv4Enable: true,
IPv6Enable: true,
FakeEnable: false,
})
},
})
nc := &net.Resolver{PreferGo: false}
internet.UseAlternativeSystemDNSDialer(&protectedDialer{
resolver: func(domain string) ([]net.IP, error) {
return nc.LookupIP(context.Background(), "ip", domain)
},
})
net.DefaultResolver.Dial = t.dialDNS
return t, nil
}
func (t *Tun2ray) Close() {
t.access.Lock()
defer t.access.Unlock()
net.DefaultResolver.Dial = nil
closeIgnore(t.dev)
}
func (t *Tun2ray) NewConnection(source v2rayNet.Destination, destination v2rayNet.Destination, conn net.Conn) {
inbound := &session.Inbound{
Source: source,
Tag: "socks",
}
isDns := destination.Address.String() == t.router || destination.Port == 53
if isDns {
inbound.Tag = "dns-in"
}
var uid uint16
var self bool
if t.dumpUid || t.trafficStats {
u, err := uidDumper.DumpUid(destination.Address.Family().IsIPv6(), false, source.Address.IP().String(), int32(source.Port), destination.Address.IP().String(), int32(destination.Port))
if err == nil {
uid = uint16(u)
var info *UidInfo
self = uid > 0 && int(uid) == os.Getuid()
if t.debug && !self && uid >= 10000 {
if err == nil {
info, _ = uidDumper.GetUidInfo(int32(uid))
}
if info == nil {
logrus.Infof("[TCP] %s ==> %s", source.NetAddr(), destination.NetAddr())
} else {
logrus.Infof("[TCP][%s (%d/%s)] %s ==> %s", info.Label, uid, info.PackageName, source.NetAddr(), destination.NetAddr())
}
}
if uid < 10000 {
uid = 1000
}
inbound.Uid = uint32(uid)
if uid == foregroundUid || uid == foregroundImeUid {
inbound.AppStatus = append(inbound.AppStatus, appStatusForeground)
} else {
inbound.AppStatus = append(inbound.AppStatus, appStatusBackground)
}
}
}
ctx := core.WithContext(context.Background(), t.v2ray.core)
ctx = session.ContextWithInbound(ctx, inbound)
if !isDns && (t.sniffing || t.fakedns) {
req := session.SniffingRequest{
Enabled: true,
MetadataOnly: t.fakedns && !t.sniffing,
RouteOnly: !t.overrideDestination,
}
if t.sniffing && t.fakedns {
req.OverrideDestinationForProtocol = []string{"fakedns", "http", "tls"}
}
if t.sniffing && !t.fakedns {
req.OverrideDestinationForProtocol = []string{"http", "tls"}
}
if !t.sniffing && t.fakedns {
req.OverrideDestinationForProtocol = []string{"fakedns"}
}
ctx = session.ContextWithContent(ctx, &session.Content{
SniffingRequest: req,
})
}
if t.trafficStats && !self && !isDns {
stats := t.appStats[uid]
if stats == nil {
t.access.Lock()
stats = t.appStats[uid]
if stats == nil {
stats = &appStats{}
t.appStats[uid] = stats
}
t.access.Unlock()
}
atomic.AddInt32(&stats.tcpConn, 1)
atomic.AddUint32(&stats.tcpConnTotal, 1)
atomic.StoreInt64(&stats.deactivateAt, 0)
defer func() {
if atomic.AddInt32(&stats.tcpConn, -1)+atomic.LoadInt32(&stats.udpConn) == 0 {
atomic.StoreInt64(&stats.deactivateAt, time.Now().Unix())
}
}()
conn = &statsConn{conn, &stats.uplink, &stats.downlink}
}
reader, input := pipe.New()
link := &transport.Link{Reader: reader, Writer: connWriter{conn, buf.NewWriter(conn)}}
err := t.v2ray.dispatcher.DispatchLink(ctx, destination, link)
if err != nil {
logrus.Errorf("[TCP] dispatchLink failed: %s", err.Error())
} else {
_ = task.Run(ctx, func() error {
return buf.Copy(buf.NewReader(conn), input)
})
}
closeIgnore(conn, link.Reader, link.Writer)
}
type connWriter struct {
net.Conn
buf.Writer
}
func (t *Tun2ray) NewPacket(source v2rayNet.Destination, destination v2rayNet.Destination, data []byte, writeBack func([]byte, *net.UDPAddr) (int, error), closer io.Closer) {
natKey := source.NetAddr()
sendTo := func() bool {
conn := t.udpTable.Get(natKey)
if conn == nil {
return false
}
_, err := conn.WriteTo(data, &net.UDPAddr{
IP: destination.Address.IP(),
Port: int(destination.Port),
})
if err != nil {
_ = conn.Close()
}
return true
}
if sendTo() {
return
}
lockKey := natKey + "-lock"
cond, loaded := t.udpTable.GetOrCreateLock(lockKey)
if loaded {
cond.L.Lock()
cond.Wait()
sendTo()
cond.L.Unlock()
return
}
t.udpTable.Delete(lockKey)
cond.Broadcast()
inbound := &session.Inbound{
Source: source,
Tag: "socks",
}
isDns := destination.Address.String() == t.router
if !isDns && t.hijackDns {
dnsMsg := dns.Msg{}
err := dnsMsg.Unpack(data)
if err == nil && !dnsMsg.Response && len(dnsMsg.Question) > 0 {
isDns = true
}
}
if isDns {
inbound.Tag = "dns-in"
}
var uid uint16
var self bool
if t.dumpUid || t.trafficStats {
u, err := uidDumper.DumpUid(source.Address.Family().IsIPv6(), true, source.Address.String(), int32(source.Port), destination.Address.String(), int32(destination.Port))
if err == nil {
uid = uint16(u)
var info *UidInfo
self = uid > 0 && int(uid) == os.Getuid()
if t.debug && !self && uid >= 1000 {
if err == nil {
info, _ = uidDumper.GetUidInfo(int32(uid))
}
var tag string
if !isDns {
tag = "UDP"
} else {
tag = "DNS"
}
if info == nil {
logrus.Infof("[%s] %s ==> %s", tag, source.NetAddr(), destination.NetAddr())
} else {
logrus.Infof("[%s][%s (%d/%s)] %s ==> %s", tag, info.Label, uid, info.PackageName, source.NetAddr(), destination.NetAddr())
}
}
if uid < 10000 {
uid = 1000
}
inbound.Uid = uint32(uid)
if uid == foregroundUid || uid == foregroundImeUid {
inbound.AppStatus = append(inbound.AppStatus, appStatusForeground)
} else {
inbound.AppStatus = append(inbound.AppStatus, appStatusBackground)
}
}
}
ctx := session.ContextWithInbound(context.Background(), inbound)
if !isDns && t.fakedns {
ctx = session.ContextWithContent(ctx, &session.Content{
SniffingRequest: session.SniffingRequest{
Enabled: true,
MetadataOnly: t.fakedns && !t.sniffing,
OverrideDestinationForProtocol: []string{"fakedns"},
RouteOnly: !t.overrideDestination,
},
})
}
conn, err := t.v2ray.dialUDP(ctx, destination, time.Minute*5)
if err != nil {
logrus.Errorf("[UDP] dial failed: %s", err.Error())
return
}
if t.trafficStats && !self && !isDns {
stats := t.appStats[uid]
if stats == nil {
t.access.Lock()
stats = t.appStats[uid]
if stats == nil {
stats = &appStats{}
t.appStats[uid] = stats
}
t.access.Unlock()
}
atomic.AddInt32(&stats.udpConn, 1)
atomic.AddUint32(&stats.udpConnTotal, 1)
atomic.StoreInt64(&stats.deactivateAt, 0)
defer func() {
if atomic.AddInt32(&stats.udpConn, -1)+atomic.LoadInt32(&stats.tcpConn) == 0 {
atomic.StoreInt64(&stats.deactivateAt, time.Now().Unix())
}
}()
conn = &statsPacketConn{conn, &stats.uplink, &stats.downlink}
}
t.udpTable.Set(natKey, conn)
go sendTo()
for {
buffer, addr, err := conn.readFrom()
if err != nil {
break
}
if isDns {
addr = nil
}
if addr, ok := addr.(*net.UDPAddr); ok {
_, err = writeBack(buffer, addr)
} else {
_, err = writeBack(buffer, nil)
}
if err != nil {
break
}
}
// close
closeIgnore(conn, closer)
t.udpTable.Delete(natKey)
}
func (t *Tun2ray) dialDNS(ctx context.Context, _, _ string) (conn net.Conn, err error) {
conn, err = t.v2ray.dialContext(session.ContextWithInbound(ctx, &session.Inbound{
Tag: "dns-in",
SkipFakeDNS: true,
}), v2rayNet.Destination{
Network: v2rayNet.Network_UDP,
Address: v2rayNet.ParseAddress("1.0.0.1"),
Port: 53,
})
if err == nil {
conn = wrappedConn{conn}
}
return
}
type wrappedConn struct {
net.Conn
}
func (c wrappedConn) ReadFrom(p []byte) (n int, addr net.Addr, err error) {
n, err = c.Conn.Read(p)
if err == nil {
addr = c.Conn.RemoteAddr()
}
return
}
func (c wrappedConn) WriteTo(p []byte, _ net.Addr) (n int, err error) {
return c.Conn.Write(p)
}
type natTable struct {
mapping sync.Map
}
func (t *natTable) Set(key string, pc net.PacketConn) {
t.mapping.Store(key, pc)
}
func (t *natTable) Get(key string) net.PacketConn {
item, exist := t.mapping.Load(key)
if !exist {
return nil
}
return item.(net.PacketConn)
}
func (t *natTable) GetOrCreateLock(key string) (*sync.Cond, bool) {
item, loaded := t.mapping.LoadOrStore(key, sync.NewCond(&sync.Mutex{}))
return item.(*sync.Cond), loaded
}
func (t *natTable) Delete(key string) {
t.mapping.Delete(key)
}
var ipv6Mode int32
func SetIPv6Mode(mode int32) {
ipv6Mode = mode
}