| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179 |
- package internet
- import (
- "os"
- "syscall"
- "unsafe"
- "github.com/xtls/xray-core/common/net"
- "golang.org/x/sys/unix"
- )
- const (
- // TCP_FASTOPEN_SERVER is the value to enable TCP fast open on darwin for server connections.
- TCP_FASTOPEN_SERVER = 0x01
- // TCP_FASTOPEN_CLIENT is the value to enable TCP fast open on darwin for client connections.
- TCP_FASTOPEN_CLIENT = 0x02 // nolint: revive,stylecheck
- // syscall.TCP_KEEPINTVL is missing on some darwin architectures.
- sysTCP_KEEPINTVL = 0x101 // nolint: revive,stylecheck
- )
- const (
- PfOut = 2
- IOCOut = 0x40000000
- IOCIn = 0x80000000
- IOCInOut = IOCIn | IOCOut
- IOCPARMMask = 0x1FFF
- LEN = 4*16 + 4*4 + 4*1
- // #define _IOC(inout,group,num,len) (inout | ((len & IOCPARMMask) << 16) | ((group) << 8) | (num))
- // #define _IOWR(g,n,t) _IOC(IOCInOut, (g), (n), sizeof(t))
- // #define DIOCNATLOOK _IOWR('D', 23, struct pfioc_natlook)
- DIOCNATLOOK = IOCInOut | ((LEN & IOCPARMMask) << 16) | ('D' << 8) | 23
- )
- // OriginalDst uses ioctl to read original destination from /dev/pf
- func OriginalDst(la, ra net.Addr) (net.IP, int, error) {
- f, err := os.Open("/dev/pf")
- if err != nil {
- return net.IP{}, -1, newError("failed to open device /dev/pf").Base(err)
- }
- defer f.Close()
- fd := f.Fd()
- nl := struct { // struct pfioc_natlook
- saddr, daddr, rsaddr, rdaddr [16]byte
- sxport, dxport, rsxport, rdxport [4]byte
- af, proto, protoVariant, direction uint8
- }{
- af: syscall.AF_INET,
- proto: syscall.IPPROTO_TCP,
- direction: PfOut,
- }
- var raIP, laIP net.IP
- var raPort, laPort int
- switch la.(type) {
- case *net.TCPAddr:
- raIP = ra.(*net.TCPAddr).IP
- laIP = la.(*net.TCPAddr).IP
- raPort = ra.(*net.TCPAddr).Port
- laPort = la.(*net.TCPAddr).Port
- case *net.UDPAddr:
- raIP = ra.(*net.UDPAddr).IP
- laIP = la.(*net.UDPAddr).IP
- raPort = ra.(*net.UDPAddr).Port
- laPort = la.(*net.UDPAddr).Port
- }
- if raIP.To4() != nil {
- if laIP.IsUnspecified() {
- laIP = net.ParseIP("127.0.0.1")
- }
- copy(nl.saddr[:net.IPv4len], raIP.To4())
- copy(nl.daddr[:net.IPv4len], laIP.To4())
- }
- if raIP.To16() != nil && raIP.To4() == nil {
- if laIP.IsUnspecified() {
- laIP = net.ParseIP("::1")
- }
- copy(nl.saddr[:], raIP)
- copy(nl.daddr[:], laIP)
- }
- nl.sxport[0], nl.sxport[1] = byte(raPort>>8), byte(raPort)
- nl.dxport[0], nl.dxport[1] = byte(laPort>>8), byte(laPort)
- if _, _, errno := syscall.Syscall(syscall.SYS_IOCTL, fd, DIOCNATLOOK, uintptr(unsafe.Pointer(&nl))); errno != 0 {
- return net.IP{}, -1, os.NewSyscallError("ioctl", err)
- }
- odPort := nl.rdxport
- var odIP net.IP
- switch nl.af {
- case syscall.AF_INET:
- odIP = make(net.IP, net.IPv4len)
- copy(odIP, nl.rdaddr[:net.IPv4len])
- case syscall.AF_INET6:
- odIP = make(net.IP, net.IPv6len)
- copy(odIP, nl.rdaddr[:])
- }
- return odIP, int(net.PortFromBytes(odPort[:2])), nil
- }
- func applyOutboundSocketOptions(network string, address string, fd uintptr, config *SocketConfig) error {
- if isTCPSocket(network) {
- tfo := config.ParseTFOValue()
- if tfo > 0 {
- tfo = TCP_FASTOPEN_CLIENT
- }
- if tfo >= 0 {
- if err := unix.SetsockoptInt(int(fd), unix.IPPROTO_TCP, unix.TCP_FASTOPEN, tfo); err != nil {
- return err
- }
- }
- if config.TcpKeepAliveIdle > 0 || config.TcpKeepAliveInterval > 0 {
- if config.TcpKeepAliveIdle > 0 {
- if err := unix.SetsockoptInt(int(fd), unix.IPPROTO_TCP, unix.TCP_KEEPALIVE, int(config.TcpKeepAliveInterval)); err != nil {
- return newError("failed to set TCP_KEEPINTVL", err)
- }
- }
- if config.TcpKeepAliveInterval > 0 {
- if err := unix.SetsockoptInt(int(fd), unix.IPPROTO_TCP, sysTCP_KEEPINTVL, int(config.TcpKeepAliveIdle)); err != nil {
- return newError("failed to set TCP_KEEPIDLE", err)
- }
- }
- if err := unix.SetsockoptInt(int(fd), unix.SOL_SOCKET, unix.SO_KEEPALIVE, 1); err != nil {
- return newError("failed to set SO_KEEPALIVE", err)
- }
- } else if config.TcpKeepAliveInterval < 0 || config.TcpKeepAliveIdle < 0 {
- if err := unix.SetsockoptInt(int(fd), unix.SOL_SOCKET, unix.SO_KEEPALIVE, 0); err != nil {
- return newError("failed to unset SO_KEEPALIVE", err)
- }
- }
- }
- return nil
- }
- func applyInboundSocketOptions(network string, fd uintptr, config *SocketConfig) error {
- if isTCPSocket(network) {
- tfo := config.ParseTFOValue()
- if tfo > 0 {
- tfo = TCP_FASTOPEN_SERVER
- }
- if tfo >= 0 {
- if err := unix.SetsockoptInt(int(fd), unix.IPPROTO_TCP, unix.TCP_FASTOPEN, tfo); err != nil {
- return err
- }
- }
- if config.TcpKeepAliveIdle > 0 || config.TcpKeepAliveInterval > 0 {
- if config.TcpKeepAliveIdle > 0 {
- if err := unix.SetsockoptInt(int(fd), unix.IPPROTO_TCP, unix.TCP_KEEPALIVE, int(config.TcpKeepAliveInterval)); err != nil {
- return newError("failed to set TCP_KEEPINTVL", err)
- }
- }
- if config.TcpKeepAliveInterval > 0 {
- if err := unix.SetsockoptInt(int(fd), unix.IPPROTO_TCP, sysTCP_KEEPINTVL, int(config.TcpKeepAliveIdle)); err != nil {
- return newError("failed to set TCP_KEEPIDLE", err)
- }
- }
- if err := unix.SetsockoptInt(int(fd), unix.SOL_SOCKET, unix.SO_KEEPALIVE, 1); err != nil {
- return newError("failed to set SO_KEEPALIVE", err)
- }
- } else if config.TcpKeepAliveInterval < 0 || config.TcpKeepAliveIdle < 0 {
- if err := unix.SetsockoptInt(int(fd), unix.SOL_SOCKET, unix.SO_KEEPALIVE, 0); err != nil {
- return newError("failed to unset SO_KEEPALIVE", err)
- }
- }
- }
- return nil
- }
- func bindAddr(fd uintptr, address []byte, port uint32) error {
- return nil
- }
- func setReuseAddr(fd uintptr) error {
- return nil
- }
- func setReusePort(fd uintptr) error {
- return nil
- }
|