| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308 | package inboundimport (	"context"	"io"	"net"	"sync"	"sync/atomic"	"time"	"v2ray.com/core/app/dispatcher"	"v2ray.com/core/app/log"	"v2ray.com/core/app/proxyman"	"v2ray.com/core/common/buf"	v2net "v2ray.com/core/common/net"	"v2ray.com/core/proxy"	"v2ray.com/core/transport/internet"	"v2ray.com/core/transport/internet/tcp"	"v2ray.com/core/transport/internet/udp")type worker interface {	Start() error	Close()	Port() v2net.Port	Proxy() proxy.Inbound}type tcpWorker struct {	address      v2net.Address	port         v2net.Port	proxy        proxy.Inbound	stream       *internet.StreamConfig	recvOrigDest bool	tag          string	dispatcher   dispatcher.Interface	sniffers     []proxyman.KnownProtocols	ctx    context.Context	cancel context.CancelFunc	hub    internet.Listener}func (w *tcpWorker) callback(conn internet.Connection) {	ctx, cancel := context.WithCancel(w.ctx)	if w.recvOrigDest {		dest, err := tcp.GetOriginalDestination(conn)		if err != nil {			log.Trace(newError("failed to get original destination").Base(err))		}		if dest.IsValid() {			ctx = proxy.ContextWithOriginalTarget(ctx, dest)		}	}	if len(w.tag) > 0 {		ctx = proxy.ContextWithInboundTag(ctx, w.tag)	}	ctx = proxy.ContextWithInboundEntryPoint(ctx, v2net.TCPDestination(w.address, w.port))	ctx = proxy.ContextWithSource(ctx, v2net.DestinationFromAddr(conn.RemoteAddr()))	if len(w.sniffers) > 0 {		ctx = proxyman.ContextWithProtocolSniffers(ctx, w.sniffers)	}	if err := w.proxy.Process(ctx, v2net.Network_TCP, conn, w.dispatcher); err != nil {		log.Trace(newError("connection ends").Base(err))	}	cancel()	conn.Close()}func (w *tcpWorker) Proxy() proxy.Inbound {	return w.proxy}func (w *tcpWorker) Start() error {	ctx, cancel := context.WithCancel(context.Background())	w.ctx = ctx	w.cancel = cancel	ctx = internet.ContextWithStreamSettings(ctx, w.stream)	conns := make(chan internet.Connection, 16)	hub, err := internet.ListenTCP(ctx, w.address, w.port, conns)	if err != nil {		return newError("failed to listen TCP on ", w.port).Base(err)	}	go w.handleConnections(conns)	w.hub = hub	return nil}func (w *tcpWorker) handleConnections(conns <-chan internet.Connection) {	for {		select {		case <-w.ctx.Done():			w.hub.Close()		L:			for {				select {				case conn := <-conns:					conn.Close()				default:					break L				}			}			return		case conn := <-conns:			go w.callback(conn)		}	}}func (w *tcpWorker) Close() {	if w.hub != nil {		w.cancel()	}}func (w *tcpWorker) Port() v2net.Port {	return w.port}type udpConn struct {	lastActivityTime int64 // in seconds	input            chan *buf.Buffer	output           func([]byte) (int, error)	remote           net.Addr	local            net.Addr	cancel           context.CancelFunc}func (c *udpConn) updateActivity() {	atomic.StoreInt64(&c.lastActivityTime, time.Now().Unix())}func (c *udpConn) Read(buf []byte) (int, error) {	in, open := <-c.input	if !open {		return 0, io.EOF	}	defer in.Release()	c.updateActivity()	return copy(buf, in.Bytes()), nil}// Write implements io.Writer.func (c *udpConn) Write(buf []byte) (int, error) {	n, err := c.output(buf)	if err == nil {		c.updateActivity()	}	return n, err}func (c *udpConn) Close() error {	return nil}func (c *udpConn) RemoteAddr() net.Addr {	return c.remote}func (c *udpConn) LocalAddr() net.Addr {	return c.remote}func (*udpConn) SetDeadline(time.Time) error {	return nil}func (*udpConn) SetReadDeadline(time.Time) error {	return nil}func (*udpConn) SetWriteDeadline(time.Time) error {	return nil}type udpWorker struct {	sync.RWMutex	proxy        proxy.Inbound	hub          *udp.Hub	address      v2net.Address	port         v2net.Port	recvOrigDest bool	tag          string	dispatcher   dispatcher.Interface	ctx        context.Context	cancel     context.CancelFunc	activeConn map[v2net.Destination]*udpConn}func (w *udpWorker) getConnection(src v2net.Destination) (*udpConn, bool) {	w.Lock()	defer w.Unlock()	if conn, found := w.activeConn[src]; found {		return conn, true	}	conn := &udpConn{		input: make(chan *buf.Buffer, 32),		output: func(b []byte) (int, error) {			return w.hub.WriteTo(b, src)		},		remote: &net.UDPAddr{			IP:   src.Address.IP(),			Port: int(src.Port),		},		local: &net.UDPAddr{			IP:   w.address.IP(),			Port: int(w.port),		},	}	w.activeConn[src] = conn	conn.updateActivity()	return conn, false}func (w *udpWorker) callback(b *buf.Buffer, source v2net.Destination, originalDest v2net.Destination) {	conn, existing := w.getConnection(source)	select {	case conn.input <- b:	default:		b.Release()	}	if !existing {		go func() {			ctx := w.ctx			ctx, cancel := context.WithCancel(ctx)			conn.cancel = cancel			if originalDest.IsValid() {				ctx = proxy.ContextWithOriginalTarget(ctx, originalDest)			}			if len(w.tag) > 0 {				ctx = proxy.ContextWithInboundTag(ctx, w.tag)			}			ctx = proxy.ContextWithSource(ctx, source)			ctx = proxy.ContextWithInboundEntryPoint(ctx, v2net.UDPDestination(w.address, w.port))			if err := w.proxy.Process(ctx, v2net.Network_UDP, conn, w.dispatcher); err != nil {				log.Trace(newError("connection ends").Base(err))			}			w.removeConn(source)			cancel()		}()	}}func (w *udpWorker) removeConn(src v2net.Destination) {	w.Lock()	delete(w.activeConn, src)	w.Unlock()}func (w *udpWorker) Start() error {	w.activeConn = make(map[v2net.Destination]*udpConn)	ctx, cancel := context.WithCancel(context.Background())	w.ctx = ctx	w.cancel = cancel	h, err := udp.ListenUDP(w.address, w.port, udp.ListenOption{		Callback:            w.callback,		ReceiveOriginalDest: w.recvOrigDest,	})	if err != nil {		return err	}	go w.monitor()	w.hub = h	return nil}func (w *udpWorker) Close() {	if w.hub != nil {		w.hub.Close()		w.cancel()	}}func (w *udpWorker) monitor() {	timer := time.NewTicker(time.Second * 16)	defer timer.Stop()	for {		select {		case <-w.ctx.Done():			return		case <-timer.C:			nowSec := time.Now().Unix()			w.Lock()			for addr, conn := range w.activeConn {				if nowSec-atomic.LoadInt64(&conn.lastActivityTime) > 8 {					delete(w.activeConn, addr)					conn.cancel()				}			}			w.Unlock()		}	}}func (w *udpWorker) Port() v2net.Port {	return w.port}func (w *udpWorker) Proxy() proxy.Inbound {	return w.proxy}
 |