| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152 | package dokodemoimport (	"io"	"sync"	"github.com/v2ray/v2ray-core/app/dispatcher"	"github.com/v2ray/v2ray-core/common/alloc"	v2io "github.com/v2ray/v2ray-core/common/io"	"github.com/v2ray/v2ray-core/common/log"	v2net "github.com/v2ray/v2ray-core/common/net"	"github.com/v2ray/v2ray-core/proxy"	"github.com/v2ray/v2ray-core/transport/hub")type DokodemoDoor struct {	tcpMutex         sync.RWMutex	udpMutex         sync.RWMutex	config           *Config	accepting        bool	address          v2net.Address	port             v2net.Port	packetDispatcher dispatcher.PacketDispatcher	tcpListener      *hub.TCPHub	udpHub           *hub.UDPHub	listeningPort    v2net.Port}func NewDokodemoDoor(config *Config, packetDispatcher dispatcher.PacketDispatcher) *DokodemoDoor {	return &DokodemoDoor{		config:           config,		packetDispatcher: packetDispatcher,		address:          config.Address,		port:             config.Port,	}}func (this *DokodemoDoor) Port() v2net.Port {	return this.listeningPort}func (this *DokodemoDoor) Close() {	this.accepting = false	if this.tcpListener != nil {		this.tcpMutex.Lock()		this.tcpListener.Close()		this.tcpListener = nil		this.tcpMutex.Unlock()	}	if this.udpHub != nil {		this.udpMutex.Lock()		this.udpHub.Close()		this.udpHub = nil		this.udpMutex.Unlock()	}}func (this *DokodemoDoor) Listen(port v2net.Port) error {	if this.accepting {		if this.listeningPort == port {			return nil		} else {			return proxy.ErrorAlreadyListening		}	}	this.listeningPort = port	this.accepting = true	if this.config.Network.HasNetwork(v2net.TCPNetwork) {		err := this.ListenTCP(port)		if err != nil {			return err		}	}	if this.config.Network.HasNetwork(v2net.UDPNetwork) {		err := this.ListenUDP(port)		if err != nil {			return err		}	}	return nil}func (this *DokodemoDoor) ListenUDP(port v2net.Port) error {	udpHub, err := hub.ListenUDP(port, this.handleUDPPackets)	if err != nil {		log.Error("Dokodemo failed to listen on port ", port, ": ", err)		return err	}	this.udpMutex.Lock()	this.udpHub = udpHub	this.udpMutex.Unlock()	return nil}func (this *DokodemoDoor) handleUDPPackets(payload *alloc.Buffer, dest v2net.Destination) {	packet := v2net.NewPacket(v2net.UDPDestination(this.address, this.port), payload, false)	ray := this.packetDispatcher.DispatchToOutbound(packet)	close(ray.InboundInput())	for resp := range ray.InboundOutput() {		this.udpMutex.RLock()		if !this.accepting {			this.udpMutex.RUnlock()			resp.Release()			return		}		this.udpHub.WriteTo(resp.Value, dest)		this.udpMutex.RUnlock()		resp.Release()	}}func (this *DokodemoDoor) ListenTCP(port v2net.Port) error {	tcpListener, err := hub.ListenTCP(port, this.HandleTCPConnection)	if err != nil {		log.Error("Dokodemo: Failed to listen on port ", port, ": ", err)		return err	}	this.tcpMutex.Lock()	this.tcpListener = tcpListener	this.tcpMutex.Unlock()	return nil}func (this *DokodemoDoor) HandleTCPConnection(conn *hub.TCPConn) {	defer conn.Close()	packet := v2net.NewPacket(v2net.TCPDestination(this.address, this.port), nil, true)	ray := this.packetDispatcher.DispatchToOutbound(packet)	var inputFinish, outputFinish sync.Mutex	inputFinish.Lock()	outputFinish.Lock()	reader := v2net.NewTimeOutReader(this.config.Timeout, conn)	go dumpInput(reader, ray.InboundInput(), &inputFinish)	go dumpOutput(conn, ray.InboundOutput(), &outputFinish)	outputFinish.Lock()}func dumpInput(reader io.Reader, input chan<- *alloc.Buffer, finish *sync.Mutex) {	v2io.RawReaderToChan(input, reader)	finish.Unlock()	close(input)}func dumpOutput(writer io.Writer, output <-chan *alloc.Buffer, finish *sync.Mutex) {	v2io.ChanToRawWriter(writer, output)	finish.Unlock()}
 |