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