sing-box/protocol/vless/outbound.go

212 lines
6.7 KiB
Go
Raw Normal View History

2024-11-02 00:39:02 +08:00
package vless
2022-09-12 21:59:27 +08:00
import (
"context"
"net"
"github.com/sagernet/sing-box/adapter"
2024-11-02 00:39:02 +08:00
"github.com/sagernet/sing-box/adapter/outbound"
2022-09-12 21:59:27 +08:00
"github.com/sagernet/sing-box/common/dialer"
2023-04-24 09:55:46 +08:00
"github.com/sagernet/sing-box/common/mux"
2022-09-12 21:59:27 +08:00
"github.com/sagernet/sing-box/common/tls"
C "github.com/sagernet/sing-box/constant"
"github.com/sagernet/sing-box/log"
"github.com/sagernet/sing-box/option"
"github.com/sagernet/sing-box/transport/v2ray"
"github.com/sagernet/sing-vmess/packetaddr"
"github.com/sagernet/sing-vmess/vless"
2022-09-12 21:59:27 +08:00
"github.com/sagernet/sing/common"
2023-03-03 16:31:07 +08:00
"github.com/sagernet/sing/common/bufio"
2022-09-12 21:59:27 +08:00
E "github.com/sagernet/sing/common/exceptions"
2024-11-02 00:39:02 +08:00
"github.com/sagernet/sing/common/logger"
2022-09-12 21:59:27 +08:00
M "github.com/sagernet/sing/common/metadata"
N "github.com/sagernet/sing/common/network"
)
2024-11-02 00:39:02 +08:00
func RegisterOutbound(registry *outbound.Registry) {
outbound.Register[option.VLESSOutboundOptions](registry, C.TypeVLESS, NewOutbound)
}
2022-09-12 21:59:27 +08:00
2024-11-02 00:39:02 +08:00
type Outbound struct {
outbound.Adapter
logger logger.ContextLogger
2023-04-24 09:55:46 +08:00
dialer N.Dialer
client *vless.Client
serverAddr M.Socksaddr
multiplexDialer *mux.Client
tlsConfig tls.Config
transport adapter.V2RayClientTransport
packetAddr bool
xudp bool
2022-09-12 21:59:27 +08:00
}
2024-11-02 00:39:02 +08:00
func NewOutbound(ctx context.Context, router adapter.Router, logger log.ContextLogger, tag string, options option.VLESSOutboundOptions) (adapter.Outbound, error) {
2023-08-08 16:14:03 +08:00
outboundDialer, err := dialer.New(router, options.DialerOptions)
if err != nil {
return nil, err
}
2024-11-02 00:39:02 +08:00
outbound := &Outbound{
Adapter: outbound.NewAdapterWithDialerOptions(C.TypeVLESS, options.Network.Build(), tag, options.DialerOptions),
logger: logger,
2023-08-08 16:14:03 +08:00
dialer: outboundDialer,
2022-09-12 21:59:27 +08:00
serverAddr: options.ServerOptions.Build(),
}
if options.TLS != nil {
2023-08-29 13:43:42 +08:00
outbound.tlsConfig, err = tls.NewClient(ctx, options.Server, common.PtrValueOrDefault(options.TLS))
2022-09-12 21:59:27 +08:00
if err != nil {
return nil, err
}
}
if options.Transport != nil {
outbound.transport, err = v2ray.NewClientTransport(ctx, outbound.dialer, outbound.serverAddr, common.PtrValueOrDefault(options.Transport), outbound.tlsConfig)
if err != nil {
return nil, E.Cause(err, "create client transport: ", options.Transport.Type)
}
}
2023-02-28 20:27:30 +08:00
if options.PacketEncoding == nil {
2022-09-12 21:59:27 +08:00
outbound.xudp = true
2023-02-28 20:27:30 +08:00
} else {
switch *options.PacketEncoding {
case "":
case "packetaddr":
outbound.packetAddr = true
case "xudp":
outbound.xudp = true
default:
return nil, E.New("unknown packet encoding: ", options.PacketEncoding)
}
2022-09-12 21:59:27 +08:00
}
2023-02-27 15:07:15 +08:00
outbound.client, err = vless.NewClient(options.UUID, options.Flow, logger)
2022-09-12 21:59:27 +08:00
if err != nil {
return nil, err
}
outbound.multiplexDialer, err = mux.NewClientWithOptions((*vlessDialer)(outbound), logger, common.PtrValueOrDefault(options.Multiplex))
2023-04-24 09:55:46 +08:00
if err != nil {
return nil, err
}
2022-09-12 21:59:27 +08:00
return outbound, nil
}
2024-11-02 00:39:02 +08:00
func (h *Outbound) DialContext(ctx context.Context, network string, destination M.Socksaddr) (net.Conn, error) {
2023-04-24 09:55:46 +08:00
if h.multiplexDialer == nil {
switch N.NetworkName(network) {
case N.NetworkTCP:
h.logger.InfoContext(ctx, "outbound connection to ", destination)
case N.NetworkUDP:
h.logger.InfoContext(ctx, "outbound packet connection to ", destination)
}
return (*vlessDialer)(h).DialContext(ctx, network, destination)
} else {
switch N.NetworkName(network) {
case N.NetworkTCP:
h.logger.InfoContext(ctx, "outbound multiplex connection to ", destination)
case N.NetworkUDP:
h.logger.InfoContext(ctx, "outbound multiplex packet connection to ", destination)
}
return h.multiplexDialer.DialContext(ctx, network, destination)
}
}
2024-11-02 00:39:02 +08:00
func (h *Outbound) ListenPacket(ctx context.Context, destination M.Socksaddr) (net.PacketConn, error) {
2023-04-24 09:55:46 +08:00
if h.multiplexDialer == nil {
h.logger.InfoContext(ctx, "outbound packet connection to ", destination)
return (*vlessDialer)(h).ListenPacket(ctx, destination)
} else {
h.logger.InfoContext(ctx, "outbound multiplex packet connection to ", destination)
return h.multiplexDialer.ListenPacket(ctx, destination)
}
}
2024-11-02 00:39:02 +08:00
func (h *Outbound) InterfaceUpdated() {
2024-07-07 15:45:50 +08:00
if h.transport != nil {
h.transport.Close()
}
2023-04-24 09:55:46 +08:00
if h.multiplexDialer != nil {
h.multiplexDialer.Reset()
}
2023-07-23 14:42:19 +08:00
return
2023-04-24 09:55:46 +08:00
}
2024-11-02 00:39:02 +08:00
func (h *Outbound) Close() error {
2023-04-24 09:55:46 +08:00
return common.Close(common.PtrOrNil(h.multiplexDialer), h.transport)
}
2024-11-02 00:39:02 +08:00
type vlessDialer Outbound
2023-04-24 09:55:46 +08:00
func (h *vlessDialer) DialContext(ctx context.Context, network string, destination M.Socksaddr) (net.Conn, error) {
2024-10-27 07:45:15 +08:00
ctx, metadata := adapter.ExtendContext(ctx)
2024-11-02 00:39:02 +08:00
metadata.Outbound = h.Tag()
2022-09-12 21:59:27 +08:00
metadata.Destination = destination
var conn net.Conn
var err error
if h.transport != nil {
conn, err = h.transport.DialContext(ctx)
} else {
conn, err = h.dialer.DialContext(ctx, N.NetworkTCP, h.serverAddr)
if err == nil && h.tlsConfig != nil {
conn, err = tls.ClientHandshake(ctx, conn, h.tlsConfig)
}
}
if err != nil {
return nil, err
}
switch N.NetworkName(network) {
case N.NetworkTCP:
h.logger.InfoContext(ctx, "outbound connection to ", destination)
return h.client.DialEarlyConn(conn, destination)
2022-09-12 21:59:27 +08:00
case N.NetworkUDP:
h.logger.InfoContext(ctx, "outbound packet connection to ", destination)
2023-03-03 16:31:07 +08:00
if h.xudp {
return h.client.DialEarlyXUDPPacketConn(conn, destination)
} else if h.packetAddr {
2023-04-02 12:01:19 +08:00
if destination.IsFqdn() {
return nil, E.New("packetaddr: domain destination is not supported")
}
2023-03-03 16:31:07 +08:00
packetConn, err := h.client.DialEarlyPacketConn(conn, M.Socksaddr{Fqdn: packetaddr.SeqPacketMagicAddress})
if err != nil {
return nil, err
}
2023-04-14 19:19:27 +08:00
return bufio.NewBindPacketConn(packetaddr.NewConn(packetConn, destination), destination), nil
2023-03-03 16:31:07 +08:00
} else {
return h.client.DialEarlyPacketConn(conn, destination)
}
2022-09-12 21:59:27 +08:00
default:
return nil, E.Extend(N.ErrUnknownNetwork, network)
}
}
2023-04-24 09:55:46 +08:00
func (h *vlessDialer) ListenPacket(ctx context.Context, destination M.Socksaddr) (net.PacketConn, error) {
2022-09-12 21:59:27 +08:00
h.logger.InfoContext(ctx, "outbound packet connection to ", destination)
2024-10-27 07:45:15 +08:00
ctx, metadata := adapter.ExtendContext(ctx)
2024-11-02 00:39:02 +08:00
metadata.Outbound = h.Tag()
2022-09-12 21:59:27 +08:00
metadata.Destination = destination
var conn net.Conn
var err error
if h.transport != nil {
conn, err = h.transport.DialContext(ctx)
} else {
conn, err = h.dialer.DialContext(ctx, N.NetworkTCP, h.serverAddr)
if err == nil && h.tlsConfig != nil {
conn, err = tls.ClientHandshake(ctx, conn, h.tlsConfig)
}
}
if err != nil {
2023-03-03 16:46:49 +08:00
common.Close(conn)
2022-09-12 21:59:27 +08:00
return nil, err
}
if h.xudp {
return h.client.DialEarlyXUDPPacketConn(conn, destination)
2022-09-12 21:59:27 +08:00
} else if h.packetAddr {
2023-04-02 12:01:19 +08:00
if destination.IsFqdn() {
return nil, E.New("packetaddr: domain destination is not supported")
}
conn, err := h.client.DialEarlyPacketConn(conn, M.Socksaddr{Fqdn: packetaddr.SeqPacketMagicAddress})
if err != nil {
return nil, err
}
2023-04-02 12:01:19 +08:00
return packetaddr.NewConn(conn, destination), nil
2022-09-12 21:59:27 +08:00
} else {
return h.client.DialEarlyPacketConn(conn, destination)
2022-09-12 21:59:27 +08:00
}
}