| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180 | package udpimport (	"net"	"sync"	"v2ray.com/core/common/alloc"	"v2ray.com/core/common/dice"	"v2ray.com/core/common/log"	v2net "v2ray.com/core/common/net"	"v2ray.com/core/common/signal"	"v2ray.com/core/proxy"	"v2ray.com/core/transport/internet/internal")type UDPPayload struct {	payload *alloc.Buffer	session *proxy.SessionInfo}type UDPPayloadHandler func(*alloc.Buffer, *proxy.SessionInfo)type UDPPayloadQueue struct {	queue    []chan UDPPayload	callback UDPPayloadHandler}func NewUDPPayloadQueue(option ListenOption) *UDPPayloadQueue {	queue := &UDPPayloadQueue{		callback: option.Callback,		queue:    make([]chan UDPPayload, option.Concurrency),	}	for i := range queue.queue {		queue.queue[i] = make(chan UDPPayload, 64)		go queue.Dequeue(queue.queue[i])	}	return queue}func (v *UDPPayloadQueue) Enqueue(payload UDPPayload) {	size := len(v.queue)	idx := 0	if size > 1 {		idx = dice.Roll(size)	}	for i := 0; i < size; i++ {		select {		case v.queue[idx%size] <- payload:			return		default:			idx++		}	}}func (v *UDPPayloadQueue) Dequeue(queue <-chan UDPPayload) {	for payload := range queue {		v.callback(payload.payload, payload.session)	}}func (v *UDPPayloadQueue) Close() {	for _, queue := range v.queue {		close(queue)	}}type ListenOption struct {	Callback            UDPPayloadHandler	ReceiveOriginalDest bool	Concurrency         int}type UDPHub struct {	sync.RWMutex	conn   *net.UDPConn	cancel *signal.CancelSignal	queue  *UDPPayloadQueue	option ListenOption}func ListenUDP(address v2net.Address, port v2net.Port, option ListenOption) (*UDPHub, error) {	if option.Concurrency < 1 {		option.Concurrency = 1	}	udpConn, err := net.ListenUDP("udp", &net.UDPAddr{		IP:   address.IP(),		Port: int(port),	})	if err != nil {		return nil, err	}	if option.ReceiveOriginalDest {		fd, err := internal.GetSysFd(udpConn)		if err != nil {			log.Warning("UDP|Listener: Failed to get fd: ", err)			return nil, err		}		err = SetOriginalDestOptions(fd)		if err != nil {			log.Warning("UDP|Listener: Failed to set socket options: ", err)			return nil, err		}	}	hub := &UDPHub{		conn:   udpConn,		queue:  NewUDPPayloadQueue(option),		option: option,		cancel: signal.NewCloseSignal(),	}	go hub.start()	return hub, nil}func (v *UDPHub) Close() {	v.Lock()	defer v.Unlock()	v.cancel.Cancel()	v.conn.Close()	v.cancel.WaitForDone()	v.queue.Close()}func (v *UDPHub) WriteTo(payload []byte, dest v2net.Destination) (int, error) {	return v.conn.WriteToUDP(payload, &net.UDPAddr{		IP:   dest.Address.IP(),		Port: int(dest.Port),	})}func (v *UDPHub) start() {	v.cancel.WaitThread()	defer v.cancel.FinishThread()	oobBytes := make([]byte, 256)	for v.Running() {		buffer := alloc.NewSmallBuffer()		var noob int		var addr *net.UDPAddr		var err error		buffer.AppendFunc(func(b []byte) int {			n, nb, _, a, e := ReadUDPMsg(v.conn, b, oobBytes)			noob = nb			addr = a			err = e			return n		})		if err != nil {			log.Info("UDP|Hub: Failed to read UDP msg: ", err)			buffer.Release()			continue		}		session := new(proxy.SessionInfo)		session.Source = v2net.UDPDestination(v2net.IPAddress(addr.IP), v2net.Port(addr.Port))		if v.option.ReceiveOriginalDest && noob > 0 {			session.Destination = RetrieveOriginalDest(oobBytes[:noob])		}		v.queue.Enqueue(UDPPayload{			payload: buffer,			session: session,		})	}}func (v *UDPHub) Running() bool {	return !v.cancel.Cancelled()}// Connection return the net.Conn underneath v hub.// Private: Visible for testing onlyfunc (v *UDPHub) Connection() net.Conn {	return v.conn}func (v *UDPHub) Addr() net.Addr {	return v.conn.LocalAddr()}
 |