2018-09-10 14:39:57 +02:00
|
|
|
package internet
|
|
|
|
|
|
|
|
import (
|
2021-11-28 21:20:39 +00:00
|
|
|
"golang.org/x/sys/unix"
|
2018-09-10 14:39:57 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
2018-10-14 20:18:09 +02:00
|
|
|
// TCP_FASTOPEN_SERVER is the value to enable TCP fast open on darwin for server connections.
|
2021-11-27 17:16:41 +08:00
|
|
|
TCP_FASTOPEN_SERVER = 0x01 // nolint: revive,stylecheck
|
2018-10-14 20:18:09 +02:00
|
|
|
// TCP_FASTOPEN_CLIENT is the value to enable TCP fast open on darwin for client connections.
|
2021-11-27 17:16:41 +08:00
|
|
|
TCP_FASTOPEN_CLIENT = 0x02 // nolint: revive,stylecheck
|
2018-09-10 14:39:57 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
func applyOutboundSocketOptions(network string, address string, fd uintptr, config *SocketConfig) error {
|
2018-09-11 10:03:26 +02:00
|
|
|
if isTCPSocket(network) {
|
2018-09-10 14:39:57 +02:00
|
|
|
switch config.Tfo {
|
|
|
|
case SocketConfig_Enable:
|
2021-11-28 21:27:28 +00:00
|
|
|
if err := unix.SetsockoptInt(int(fd), unix.IPPROTO_TCP, unix.TCP_FASTOPEN, TCP_FASTOPEN_CLIENT); err != nil {
|
2018-09-10 14:39:57 +02:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
case SocketConfig_Disable:
|
2021-11-28 21:20:39 +00:00
|
|
|
if err := unix.SetsockoptInt(int(fd), unix.IPPROTO_TCP, unix.TCP_FASTOPEN, 0); err != nil {
|
2018-09-10 14:39:57 +02:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
2021-11-13 21:46:45 +00:00
|
|
|
|
2022-01-16 13:17:46 +00:00
|
|
|
if config.TcpKeepAliveIdle > 0 {
|
|
|
|
if err := unix.SetsockoptInt(int(fd), unix.IPPROTO_TCP, unix.TCP_KEEPALIVE, int(config.TcpKeepAliveInterval)); err != nil {
|
2022-01-16 20:39:29 +00:00
|
|
|
return newError("failed to set TCP_KEEPINTVL").Base(err)
|
2021-12-23 14:02:47 +03:00
|
|
|
}
|
2022-01-16 13:17:46 +00:00
|
|
|
}
|
|
|
|
if config.TcpKeepAliveInterval > 0 {
|
|
|
|
if err := unix.SetsockoptInt(int(fd), unix.IPPROTO_TCP, unix.TCP_KEEPINTVL, int(config.TcpKeepAliveIdle)); err != nil {
|
2022-01-16 20:39:29 +00:00
|
|
|
return newError("failed to set TCP_KEEPIDLE").Base(err)
|
2021-11-13 21:46:45 +00:00
|
|
|
}
|
2022-01-16 13:17:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if config.TcpKeepAliveIdle > 0 || config.TcpKeepAliveInterval > 0 {
|
2021-11-28 21:20:39 +00:00
|
|
|
if err := unix.SetsockoptInt(int(fd), unix.SOL_SOCKET, unix.SO_KEEPALIVE, 1); err != nil {
|
2022-01-16 20:39:29 +00:00
|
|
|
return newError("failed to set SO_KEEPALIVE").Base(err)
|
2021-11-13 21:46:45 +00:00
|
|
|
}
|
|
|
|
}
|
2018-09-10 14:39:57 +02:00
|
|
|
}
|
|
|
|
|
2022-01-16 23:02:24 +00:00
|
|
|
if config.TxBufSize != 0 {
|
|
|
|
if err := unix.SetsockoptInt(int(fd), unix.SOL_SOCKET, unix.SO_SNDBUF, int(config.TxBufSize)); err != nil {
|
2022-01-16 22:52:31 +00:00
|
|
|
return newError("failed to set SO_SNDBUF").Base(err)
|
2022-01-16 22:49:58 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-01-16 23:02:24 +00:00
|
|
|
if config.RxBufSize != 0 {
|
|
|
|
if err := unix.SetsockoptInt(int(fd), unix.SOL_SOCKET, unix.SO_RCVBUF, int(config.RxBufSize)); err != nil {
|
2022-01-16 22:52:31 +00:00
|
|
|
return newError("failed to set SO_RCVBUF").Base(err)
|
2022-01-16 22:49:58 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-10 14:39:57 +02:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func applyInboundSocketOptions(network string, fd uintptr, config *SocketConfig) error {
|
2018-09-11 10:03:26 +02:00
|
|
|
if isTCPSocket(network) {
|
2018-09-10 14:39:57 +02:00
|
|
|
switch config.Tfo {
|
|
|
|
case SocketConfig_Enable:
|
2021-11-28 21:20:39 +00:00
|
|
|
if err := unix.SetsockoptInt(int(fd), unix.IPPROTO_TCP, unix.TCP_FASTOPEN, TCP_FASTOPEN_SERVER); err != nil {
|
2018-09-10 14:39:57 +02:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
case SocketConfig_Disable:
|
2021-11-28 21:20:39 +00:00
|
|
|
if err := unix.SetsockoptInt(int(fd), unix.IPPROTO_TCP, unix.TCP_FASTOPEN, 0); err != nil {
|
2018-09-10 14:39:57 +02:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
2022-01-16 13:17:46 +00:00
|
|
|
if config.TcpKeepAliveIdle > 0 {
|
|
|
|
if err := unix.SetsockoptInt(int(fd), unix.IPPROTO_TCP, unix.TCP_KEEPALIVE, int(config.TcpKeepAliveInterval)); err != nil {
|
2022-01-16 20:39:29 +00:00
|
|
|
return newError("failed to set TCP_KEEPINTVL").Base(err)
|
2021-12-23 14:02:47 +03:00
|
|
|
}
|
2022-01-16 13:17:46 +00:00
|
|
|
}
|
|
|
|
if config.TcpKeepAliveInterval > 0 {
|
|
|
|
if err := unix.SetsockoptInt(int(fd), unix.IPPROTO_TCP, unix.SO_KEEPALIVE, int(config.TcpKeepAliveIdle)); err != nil {
|
2022-01-16 20:39:29 +00:00
|
|
|
return newError("failed to set TCP_KEEPIDLE").Base(err)
|
2021-11-13 21:46:45 +00:00
|
|
|
}
|
2022-01-16 13:17:46 +00:00
|
|
|
}
|
|
|
|
if config.TcpKeepAliveIdle > 0 || config.TcpKeepAliveInterval > 0 {
|
2021-11-28 21:20:39 +00:00
|
|
|
if err := unix.SetsockoptInt(int(fd), unix.SOL_SOCKET, unix.SO_KEEPALIVE, 1); err != nil {
|
2022-01-16 20:39:29 +00:00
|
|
|
return newError("failed to set SO_KEEPALIVE").Base(err)
|
2021-11-13 21:46:45 +00:00
|
|
|
}
|
|
|
|
}
|
2018-09-10 14:39:57 +02:00
|
|
|
}
|
|
|
|
|
2022-01-16 23:02:24 +00:00
|
|
|
if config.TxBufSize != 0 {
|
|
|
|
if err := unix.SetsockoptInt(int(fd), unix.SOL_SOCKET, unix.SO_SNDBUF, int(config.TxBufSize)); err != nil {
|
2022-01-16 22:49:58 +00:00
|
|
|
return newError("failed to set SO_SNDBUF/SO_SNDBUFFORCE").Base(err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-01-16 23:02:24 +00:00
|
|
|
if config.RxBufSize != 0 {
|
|
|
|
if err := unix.SetsockoptInt(int(fd), unix.SOL_SOCKET, unix.SO_RCVBUF, int(config.RxBufSize)); err != nil {
|
2022-01-16 22:49:58 +00:00
|
|
|
return newError("failed to set SO_RCVBUF/SO_RCVBUFFORCE").Base(err)
|
|
|
|
}
|
|
|
|
}
|
2018-09-10 14:39:57 +02:00
|
|
|
return nil
|
|
|
|
}
|
2018-09-17 15:12:58 +02:00
|
|
|
|
2018-11-21 14:54:40 +01:00
|
|
|
func bindAddr(fd uintptr, address []byte, port uint32) error {
|
2018-09-17 15:12:58 +02:00
|
|
|
return nil
|
|
|
|
}
|
2020-07-31 01:20:12 +08:00
|
|
|
|
|
|
|
func setReuseAddr(fd uintptr) error {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func setReusePort(fd uintptr) error {
|
|
|
|
return nil
|
|
|
|
}
|