| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142 | package pointimport (	"sync"	"time"	"github.com/v2ray/v2ray-core/app"	"github.com/v2ray/v2ray-core/common/dice"	"github.com/v2ray/v2ray-core/common/log"	v2net "github.com/v2ray/v2ray-core/common/net"	"github.com/v2ray/v2ray-core/common/retry"	"github.com/v2ray/v2ray-core/proxy"	proxyrepo "github.com/v2ray/v2ray-core/proxy/repo")type InboundDetourHandlerDynamic struct {	sync.RWMutex	space       app.Space	config      *InboundDetourConfig	portsInUse  map[v2net.Port]bool	ichInUse    []*InboundConnectionHandlerWithPort	ich2Recycle []*InboundConnectionHandlerWithPort	lastRefresh time.Time	started     bool}func NewInboundDetourHandlerDynamic(space app.Space, config *InboundDetourConfig) (*InboundDetourHandlerDynamic, error) {	handler := &InboundDetourHandlerDynamic{		space:      space,		config:     config,		portsInUse: make(map[v2net.Port]bool),	}	if err := handler.refresh(); err != nil {		return nil, err	}	return handler, nil}func (this *InboundDetourHandlerDynamic) refresh() error {	this.Lock()	defer this.Unlock()	this.ich2Recycle, this.ichInUse = this.ichInUse, this.ich2Recycle	if this.ich2Recycle != nil {		time.AfterFunc(time.Minute, func() {			for i := 0; i < len(this.ich2Recycle); i++ {				ich := this.ich2Recycle[i]				if ich != nil {					ich.handler.Close()					delete(this.portsInUse, ich.port)				}				this.ich2Recycle[i] = nil			}		})	}	ichCount := this.config.Allocation.Concurrency	// TODO: check ichCount	if this.ichInUse == nil {		this.ichInUse = make([]*InboundConnectionHandlerWithPort, ichCount)	}	for idx, _ := range this.ichInUse {		port := this.pickUnusedPort()		ich, err := proxyrepo.CreateInboundConnectionHandler(this.config.Protocol, this.space, this.config.Settings)		if err != nil {			log.Error("Point: Failed to create inbound connection handler: ", err)			return err		}		this.ichInUse[idx] = &InboundConnectionHandlerWithPort{			port:    port,			handler: ich,		}	}	if this.started {		this.Start()	}	this.lastRefresh = time.Now()	time.AfterFunc(time.Duration(this.config.Allocation.Refresh)*time.Minute, func() {		this.refresh()	})	return nil}func (this *InboundDetourHandlerDynamic) pickUnusedPort() v2net.Port {	delta := int(this.config.PortRange.To) - int(this.config.PortRange.From) + 1	for {		r := dice.Roll(delta)		port := this.config.PortRange.From + v2net.Port(r)		_, used := this.portsInUse[port]		if !used {			this.portsInUse[port] = true			return port		}	}}func (this *InboundDetourHandlerDynamic) GetConnectionHandler() (proxy.InboundConnectionHandler, int) {	this.RLock()	defer this.RUnlock()	ich := this.ichInUse[dice.Roll(len(this.ichInUse))]	until := this.config.Allocation.Refresh - int((time.Now().Unix()-this.lastRefresh.Unix())/60/1000)	if until < 0 {		until = 0	}	return ich.handler, int(until)}func (this *InboundDetourHandlerDynamic) Close() {	this.Lock()	defer this.Unlock()	for _, ich := range this.ichInUse {		ich.handler.Close()	}	if this.ich2Recycle != nil {		for _, ich := range this.ich2Recycle {			if ich != nil && ich.handler != nil {				ich.handler.Close()			}		}	}}func (this *InboundDetourHandlerDynamic) Start() error {	for _, ich := range this.ichInUse {		err := retry.Timed(100 /* times */, 100 /* ms */).On(func() error {			err := ich.handler.Listen(ich.port)			if err != nil {				log.Error("Point: Failed to start inbound detour on port ", ich.port, ": ", err)				return err			}			return nil		})		if err != nil {			return err		}	}	this.started = true	return nil}
 |