169 lines
3.7 KiB
Go
Raw Normal View History

2016-06-14 22:54:08 +02:00
package udp
2016-01-28 16:43:47 +00:00
import (
2016-12-09 11:35:27 +01:00
"v2ray.com/core/common/buf"
2016-11-18 21:30:03 +01:00
"v2ray.com/core/common/dice"
2017-08-29 14:32:54 +02:00
"v2ray.com/core/common/net"
2016-01-28 16:43:47 +00:00
)
2016-12-21 15:48:39 +01:00
// Payload represents a single UDP payload.
type Payload struct {
payload *buf.Buffer
2017-08-29 14:32:54 +02:00
source net.Destination
originalDest net.Destination
2016-11-18 21:30:03 +01:00
}
2016-12-21 15:48:39 +01:00
// PayloadHandler is function to handle Payload.
2017-08-29 14:32:54 +02:00
type PayloadHandler func(payload *buf.Buffer, source net.Destination, originalDest net.Destination)
2016-01-28 16:43:47 +00:00
2016-12-21 15:48:39 +01:00
// PayloadQueue is a queue of Payload.
type PayloadQueue struct {
queue []chan Payload
callback PayloadHandler
2016-11-18 21:30:03 +01:00
}
2016-12-21 15:48:39 +01:00
// NewPayloadQueue returns a new PayloadQueue.
func NewPayloadQueue(option ListenOption) *PayloadQueue {
queue := &PayloadQueue{
2016-11-18 21:30:03 +01:00
callback: option.Callback,
2016-12-21 15:48:39 +01:00
queue: make([]chan Payload, option.Concurrency),
2016-11-18 21:30:03 +01:00
}
for i := range queue.queue {
2016-12-21 15:48:39 +01:00
queue.queue[i] = make(chan Payload, 64)
2016-11-18 21:30:03 +01:00
go queue.Dequeue(queue.queue[i])
}
return queue
}
2017-10-28 21:28:50 +02:00
// Enqueue adds the payload to the end of this queue.
func (q *PayloadQueue) Enqueue(payload Payload) {
size := len(q.queue)
2016-11-18 21:34:42 +01:00
idx := 0
if size > 1 {
idx = dice.Roll(size)
}
2016-11-18 21:30:03 +01:00
for i := 0; i < size; i++ {
select {
2017-10-28 21:28:50 +02:00
case q.queue[idx%size] <- payload:
2016-11-18 21:30:03 +01:00
return
default:
2016-11-18 21:34:42 +01:00
idx++
2016-11-18 21:30:03 +01:00
}
}
}
2017-10-28 21:28:50 +02:00
func (q *PayloadQueue) Dequeue(queue <-chan Payload) {
2016-11-19 00:34:30 +01:00
for payload := range queue {
2017-10-28 21:28:50 +02:00
q.callback(payload.payload, payload.source, payload.originalDest)
2016-11-18 21:30:03 +01:00
}
}
2018-02-08 15:39:46 +01:00
func (q *PayloadQueue) Close() error {
2017-10-28 21:28:50 +02:00
for _, queue := range q.queue {
2016-11-18 21:30:03 +01:00
close(queue)
}
2018-02-08 15:39:46 +01:00
return nil
2016-01-28 16:43:47 +00:00
}
2016-08-15 17:44:46 +02:00
type ListenOption struct {
2016-12-21 15:48:39 +01:00
Callback PayloadHandler
2016-08-15 17:44:46 +02:00
ReceiveOriginalDest bool
2016-11-18 21:30:03 +01:00
Concurrency int
}
2016-12-21 15:48:39 +01:00
type Hub struct {
2016-11-18 21:30:03 +01:00
conn *net.UDPConn
2016-12-21 15:48:39 +01:00
queue *PayloadQueue
2016-11-18 21:30:03 +01:00
option ListenOption
2016-08-15 17:44:46 +02:00
}
2017-08-29 14:32:54 +02:00
func ListenUDP(address net.Address, port net.Port, option ListenOption) (*Hub, error) {
2016-11-18 21:30:03 +01:00
if option.Concurrency < 1 {
option.Concurrency = 1
}
2016-01-28 16:43:47 +00:00
udpConn, err := net.ListenUDP("udp", &net.UDPAddr{
2016-05-29 16:37:52 +02:00
IP: address.IP(),
2016-01-28 16:43:47 +00:00
Port: int(port),
})
if err != nil {
return nil, err
}
2017-12-19 21:28:12 +01:00
newError("listening UDP on ", address, ":", port).WriteToLog()
2016-08-15 17:44:46 +02:00
if option.ReceiveOriginalDest {
2017-08-25 21:42:07 +02:00
rawConn, err := udpConn.SyscallConn()
2016-08-15 17:44:46 +02:00
if err != nil {
2017-04-09 01:43:25 +02:00
return nil, newError("failed to get fd").Base(err)
2016-08-15 17:44:46 +02:00
}
2017-08-25 21:42:07 +02:00
err = rawConn.Control(func(fd uintptr) {
if err := SetOriginalDestOptions(int(fd)); err != nil {
2017-12-19 21:28:12 +01:00
newError("failed to set socket options").Base(err).WriteToLog()
2017-08-25 21:42:07 +02:00
}
})
2016-08-15 17:44:46 +02:00
if err != nil {
2017-08-25 21:42:07 +02:00
return nil, newError("failed to control socket").Base(err)
2016-08-15 17:44:46 +02:00
}
}
2016-12-21 15:48:39 +01:00
hub := &Hub{
2016-08-15 17:44:46 +02:00
conn: udpConn,
2016-12-21 15:48:39 +01:00
queue: NewPayloadQueue(option),
2016-11-18 21:30:03 +01:00
option: option,
2016-01-28 16:43:47 +00:00
}
2018-02-08 22:09:41 +01:00
go hub.start()
2016-01-28 16:43:47 +00:00
return hub, nil
}
2018-02-12 11:53:41 +01:00
// Close implements net.Listener.
2018-02-08 15:39:46 +01:00
func (h *Hub) Close() error {
2017-10-28 21:28:50 +02:00
h.conn.Close()
2018-02-08 15:39:46 +01:00
return nil
2016-01-28 16:43:47 +00:00
}
2017-10-28 21:28:50 +02:00
func (h *Hub) WriteTo(payload []byte, dest net.Destination) (int, error) {
return h.conn.WriteToUDP(payload, &net.UDPAddr{
2016-09-20 11:53:05 +02:00
IP: dest.Address.IP(),
Port: int(dest.Port),
2016-01-28 16:43:47 +00:00
})
}
2018-02-08 22:09:41 +01:00
func (h *Hub) start() {
2016-08-15 17:44:46 +02:00
oobBytes := make([]byte, 256)
2017-02-13 23:03:36 +01:00
2018-02-08 22:09:41 +01:00
for {
2017-04-15 21:19:21 +02:00
buffer := buf.New()
2016-12-06 11:03:42 +01:00
var noob int
var addr *net.UDPAddr
2016-12-09 12:08:25 +01:00
err := buffer.AppendSupplier(func(b []byte) (int, error) {
2017-10-28 21:28:50 +02:00
n, nb, _, a, e := ReadUDPMsg(h.conn, b, oobBytes)
2016-12-06 11:03:42 +01:00
noob = nb
addr = a
2016-12-09 12:08:25 +01:00
return n, e
2016-12-06 11:03:42 +01:00
})
2016-01-28 16:43:47 +00:00
if err != nil {
2017-12-19 21:28:12 +01:00
newError("failed to read UDP msg").Base(err).WriteToLog()
2016-01-28 16:43:47 +00:00
buffer.Release()
2018-02-08 22:09:41 +01:00
break
2016-01-28 16:43:47 +00:00
}
2016-08-15 17:44:46 +02:00
payload := Payload{
payload: buffer,
}
2017-08-29 14:32:54 +02:00
payload.source = net.UDPDestination(net.IPAddress(addr.IP), net.Port(addr.Port))
2017-10-28 21:28:50 +02:00
if h.option.ReceiveOriginalDest && noob > 0 {
payload.originalDest = RetrieveOriginalDest(oobBytes[:noob])
2018-02-12 11:52:57 +01:00
if payload.originalDest.IsValid() {
newError("UDP original destination: ", payload.originalDest).AtDebug().WriteToLog()
} else {
2018-02-12 11:52:57 +01:00
newError("failed to read UDP original destination").WriteToLog()
}
2016-08-15 17:44:46 +02:00
}
2017-10-28 21:28:50 +02:00
h.queue.Enqueue(payload)
2016-01-28 16:43:47 +00:00
}
2017-10-28 21:28:50 +02:00
h.queue.Close()
2016-01-28 16:43:47 +00:00
}
2016-07-13 21:39:18 +02:00
2018-02-12 11:53:41 +01:00
// Addr implements net.Listener.
2017-10-28 21:28:50 +02:00
func (h *Hub) Addr() net.Addr {
return h.conn.LocalAddr()
2016-08-15 22:20:16 +02:00
}