v2ray-core/transport/internet/tcp/sockopt_linux.go

43 lines
1.1 KiB
Go
Raw Normal View History

2016-06-12 01:35:40 +02:00
// +build linux
2019-02-01 20:08:21 +01:00
// +build !confonly
2016-06-12 01:35:40 +02:00
package tcp
2016-06-12 01:35:40 +02:00
import (
"syscall"
2017-08-29 14:32:54 +02:00
"v2ray.com/core/common/net"
2016-08-20 20:55:45 +02:00
"v2ray.com/core/transport/internet"
2016-06-12 01:35:40 +02:00
)
const SO_ORIGINAL_DST = 80
2017-08-29 14:32:54 +02:00
func GetOriginalDestination(conn internet.Connection) (net.Destination, error) {
2017-08-25 23:02:54 +02:00
sysrawconn, f := conn.(syscall.Conn)
if !f {
2017-08-29 14:32:54 +02:00
return net.Destination{}, newError("unable to get syscall.Conn")
2017-08-25 23:02:54 +02:00
}
rawConn, err := sysrawconn.SyscallConn()
2016-06-12 01:35:40 +02:00
if err != nil {
2017-08-29 14:32:54 +02:00
return net.Destination{}, newError("failed to get sys fd").Base(err)
2016-06-12 01:35:40 +02:00
}
2017-08-29 14:32:54 +02:00
var dest net.Destination
2017-08-25 23:17:18 +02:00
err = rawConn.Control(func(fd uintptr) {
2017-08-25 23:02:54 +02:00
addr, err := syscall.GetsockoptIPv6Mreq(int(fd), syscall.IPPROTO_IP, SO_ORIGINAL_DST)
if err != nil {
2017-12-19 21:28:12 +01:00
newError("failed to call getsockopt").Base(err).WriteToLog()
2017-08-25 23:46:07 +02:00
return
2017-08-25 23:02:54 +02:00
}
2017-08-29 14:32:54 +02:00
ip := net.IPAddress(addr.Multiaddr[4:8])
2017-08-25 23:02:54 +02:00
port := uint16(addr.Multiaddr[2])<<8 + uint16(addr.Multiaddr[3])
2017-08-29 14:32:54 +02:00
dest = net.TCPDestination(ip, net.Port(port))
2017-08-25 23:02:54 +02:00
})
2016-06-12 01:35:40 +02:00
if err != nil {
2017-08-29 14:32:54 +02:00
return net.Destination{}, newError("failed to control connection").Base(err)
2017-08-25 23:46:07 +02:00
}
if !dest.IsValid() {
2017-08-29 14:32:54 +02:00
return net.Destination{}, newError("failed to call getsockopt")
2016-06-12 01:35:40 +02:00
}
2017-08-25 23:02:54 +02:00
return dest, nil
2016-06-12 01:35:40 +02:00
}