mirror of
https://gitclone.com/github.com/MetaCubeX/Clash.Meta
synced 2024-11-14 05:11:17 +08:00
85 lines
1.7 KiB
Go
85 lines
1.7 KiB
Go
package tproxy
|
|
|
|
import (
|
|
"net"
|
|
|
|
"github.com/metacubex/mihomo/adapter/inbound"
|
|
"github.com/metacubex/mihomo/component/keepalive"
|
|
C "github.com/metacubex/mihomo/constant"
|
|
"github.com/metacubex/mihomo/transport/socks5"
|
|
)
|
|
|
|
type Listener struct {
|
|
listener net.Listener
|
|
addr string
|
|
closed bool
|
|
}
|
|
|
|
// RawAddress implements C.Listener
|
|
func (l *Listener) RawAddress() string {
|
|
return l.addr
|
|
}
|
|
|
|
// Address implements C.Listener
|
|
func (l *Listener) Address() string {
|
|
return l.listener.Addr().String()
|
|
}
|
|
|
|
// Close implements C.Listener
|
|
func (l *Listener) Close() error {
|
|
l.closed = true
|
|
return l.listener.Close()
|
|
}
|
|
|
|
func (l *Listener) handleTProxy(conn net.Conn, tunnel C.Tunnel, additions ...inbound.Addition) {
|
|
target := socks5.ParseAddrToSocksAddr(conn.LocalAddr())
|
|
keepalive.TCPKeepAlive(conn)
|
|
// TProxy's conn.LocalAddr() is target address, so we set from l.listener
|
|
additions = append([]inbound.Addition{inbound.WithInAddr(l.listener.Addr())}, additions...)
|
|
tunnel.HandleTCPConn(inbound.NewSocket(target, conn, C.TPROXY, additions...))
|
|
}
|
|
|
|
func New(addr string, tunnel C.Tunnel, additions ...inbound.Addition) (*Listener, error) {
|
|
if len(additions) == 0 {
|
|
additions = []inbound.Addition{
|
|
inbound.WithInName("DEFAULT-TPROXY"),
|
|
inbound.WithSpecialRules(""),
|
|
}
|
|
}
|
|
l, err := net.Listen("tcp", addr)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
tl := l.(*net.TCPListener)
|
|
rc, err := tl.SyscallConn()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
err = setsockopt(rc, addr)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
rl := &Listener{
|
|
listener: l,
|
|
addr: addr,
|
|
}
|
|
|
|
go func() {
|
|
for {
|
|
c, err := l.Accept()
|
|
if err != nil {
|
|
if rl.closed {
|
|
break
|
|
}
|
|
continue
|
|
}
|
|
go rl.handleTProxy(c, tunnel, additions...)
|
|
}
|
|
}()
|
|
|
|
return rl, nil
|
|
}
|