mirror of
https://github.com/apernet/hysteria.git
synced 2025-04-03 20:47:38 +03:00
conn.File() not returns real file. Signed-off-by: HystericalDragon <HystericalDragons@proton.me>
78 lines
1.6 KiB
Go
78 lines
1.6 KiB
Go
//go:build linux
|
|
|
|
package protect
|
|
|
|
import (
|
|
"errors"
|
|
"net"
|
|
"reflect"
|
|
|
|
"golang.org/x/sys/unix"
|
|
)
|
|
|
|
const (
|
|
timevalSec = 3
|
|
)
|
|
|
|
// protect try to connect with path by unix socket, then send the conn's fd to it.
|
|
func protect(connFd int, path string) error {
|
|
if path == "" {
|
|
return nil
|
|
}
|
|
|
|
socketFd, err := unix.Socket(unix.AF_UNIX, unix.SOCK_STREAM, unix.PROT_NONE)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
defer unix.Close(socketFd)
|
|
|
|
_ = unix.SetsockoptTimeval(socketFd, unix.SOL_SOCKET, unix.SO_RCVTIMEO, &unix.Timeval{Sec: timevalSec})
|
|
_ = unix.SetsockoptTimeval(socketFd, unix.SOL_SOCKET, unix.SO_SNDTIMEO, &unix.Timeval{Sec: timevalSec})
|
|
|
|
err = unix.Connect(socketFd, &unix.SockaddrUnix{Name: path})
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
err = unix.Sendmsg(socketFd, nil, unix.UnixRights(connFd), nil, 0)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
dummy := []byte{1}
|
|
n, err := unix.Read(socketFd, dummy)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if n != 1 {
|
|
return errors.New("protect failed")
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func ListenUDP(protectPath string) ListenUDPFunc {
|
|
return func() (net.PacketConn, error) {
|
|
udpConn, err := net.ListenUDP("udp", nil)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
err = protect(fdFromConn(udpConn), protectPath)
|
|
if err != nil {
|
|
_ = udpConn.Close()
|
|
return nil, err
|
|
}
|
|
|
|
return udpConn, nil
|
|
}
|
|
}
|
|
|
|
// fdFromConn get net.Conn's file descriptor.
|
|
func fdFromConn(conn net.Conn) int {
|
|
v := reflect.ValueOf(conn)
|
|
netFD := reflect.Indirect(reflect.Indirect(v).FieldByName("fd"))
|
|
pfd := reflect.Indirect(netFD.FieldByName("pfd"))
|
|
fd := int(pfd.FieldByName("Sysfd").Int())
|
|
return fd
|
|
}
|