1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-07-01 19:45:24 +00:00
v2fly/transport/internet/tcp/sockopt_linux.go

43 lines
1.2 KiB
Go
Raw Normal View History

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