2021-08-21 13:20:40 +08:00
|
|
|
//go:build linux
|
2016-08-15 17:44:46 +02:00
|
|
|
// +build linux
|
|
|
|
|
|
|
|
package udp
|
|
|
|
|
|
|
|
import (
|
|
|
|
"syscall"
|
|
|
|
|
2020-02-25 11:58:49 +08:00
|
|
|
"golang.org/x/sys/unix"
|
2021-02-17 04:31:50 +08:00
|
|
|
|
2022-01-02 15:16:23 +00:00
|
|
|
"github.com/v2fly/v2ray-core/v5/common/net"
|
2016-08-15 17:44:46 +02:00
|
|
|
)
|
|
|
|
|
2017-08-29 14:32:54 +02:00
|
|
|
func RetrieveOriginalDest(oob []byte) net.Destination {
|
2016-08-15 17:44:46 +02:00
|
|
|
msgs, err := syscall.ParseSocketControlMessage(oob)
|
|
|
|
if err != nil {
|
2017-08-29 14:32:54 +02:00
|
|
|
return net.Destination{}
|
2016-08-15 17:44:46 +02:00
|
|
|
}
|
|
|
|
for _, msg := range msgs {
|
2017-01-13 17:10:07 +01:00
|
|
|
if msg.Header.Level == syscall.SOL_IP && msg.Header.Type == syscall.IP_RECVORIGDSTADDR {
|
2017-08-29 14:32:54 +02:00
|
|
|
ip := net.IPAddress(msg.Data[4:8])
|
|
|
|
port := net.PortFromBytes(msg.Data[2:4])
|
|
|
|
return net.UDPDestination(ip, port)
|
2020-02-25 11:58:49 +08:00
|
|
|
} else if msg.Header.Level == syscall.SOL_IPV6 && msg.Header.Type == unix.IPV6_RECVORIGDSTADDR {
|
2017-08-29 14:32:54 +02:00
|
|
|
ip := net.IPAddress(msg.Data[8:24])
|
|
|
|
port := net.PortFromBytes(msg.Data[2:4])
|
|
|
|
return net.UDPDestination(ip, port)
|
2016-08-15 17:44:46 +02:00
|
|
|
}
|
|
|
|
}
|
2017-08-29 14:32:54 +02:00
|
|
|
return net.Destination{}
|
2016-08-15 17:44:46 +02:00
|
|
|
}
|
2016-08-19 12:58:26 +02:00
|
|
|
|
2017-08-29 14:32:54 +02:00
|
|
|
func ReadUDPMsg(conn *net.UDPConn, payload []byte, oob []byte) (int, int, int, *net.UDPAddr, error) {
|
2016-08-19 12:58:26 +02:00
|
|
|
return conn.ReadMsgUDP(payload, oob)
|
|
|
|
}
|