1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-06 20:14:31 -04:00
v2fly/transport/internet/udp/hub.go

146 lines
3.0 KiB
Go
Raw Normal View History

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