sing-box/outbound/vless.go

218 lines
6.8 KiB
Go
Raw Permalink Normal View History

2022-09-12 13:59:27 +00:00
package outbound
import (
"context"
"net"
"github.com/sagernet/sing-box/adapter"
"github.com/sagernet/sing-box/common/dialer"
2023-04-24 01:55:46 +00:00
"github.com/sagernet/sing-box/common/mux"
2022-09-12 13:59:27 +00: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-box/transport/vless"
2022-09-12 13:59:27 +00:00
"github.com/sagernet/sing-vmess/packetaddr"
"github.com/sagernet/sing/common"
2023-03-03 08:31:07 +00:00
"github.com/sagernet/sing/common/bufio"
2022-09-12 13:59:27 +00:00
E "github.com/sagernet/sing/common/exceptions"
M "github.com/sagernet/sing/common/metadata"
N "github.com/sagernet/sing/common/network"
)
var _ adapter.Outbound = (*VLESS)(nil)
type VLESS struct {
myOutboundAdapter
2023-04-24 01:55:46 +00: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 13:59:27 +00:00
}
func NewVLESS(ctx context.Context, router adapter.Router, logger log.ContextLogger, tag string, options option.VLESSOutboundOptions) (*VLESS, error) {
2023-08-08 08:14:03 +00:00
outboundDialer, err := dialer.New(router, options.DialerOptions)
if err != nil {
return nil, err
}
2022-09-12 13:59:27 +00:00
outbound := &VLESS{
myOutboundAdapter: myOutboundAdapter{
2023-06-13 14:38:05 +00:00
protocol: C.TypeVLESS,
network: options.Network.Build(),
router: router,
logger: logger,
tag: tag,
dependencies: withDialerDependency(options.DialerOptions),
2022-09-12 13:59:27 +00:00
},
2023-08-08 08:14:03 +00:00
dialer: outboundDialer,
2022-09-12 13:59:27 +00:00
serverAddr: options.ServerOptions.Build(),
}
if options.TLS != nil {
2023-08-29 05:43:42 +00:00
outbound.tlsConfig, err = tls.NewClient(ctx, options.Server, common.PtrValueOrDefault(options.TLS))
2022-09-12 13:59:27 +00: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 12:27:30 +00:00
if options.PacketEncoding == nil {
2022-09-12 13:59:27 +00:00
outbound.xudp = true
2023-02-28 12:27:30 +00: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 13:59:27 +00:00
}
2023-02-27 07:07:15 +00:00
outbound.client, err = vless.NewClient(options.UUID, options.Flow, logger)
2022-09-12 13:59:27 +00:00
if err != nil {
return nil, err
}
outbound.multiplexDialer, err = mux.NewClientWithOptions((*vlessDialer)(outbound), logger, common.PtrValueOrDefault(options.Multiplex))
2023-04-24 01:55:46 +00:00
if err != nil {
return nil, err
}
2022-09-12 13:59:27 +00:00
return outbound, nil
}
func (h *VLESS) DialContext(ctx context.Context, network string, destination M.Socksaddr) (net.Conn, error) {
2023-04-24 01:55:46 +00: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)
}
}
func (h *VLESS) ListenPacket(ctx context.Context, destination M.Socksaddr) (net.PacketConn, error) {
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)
}
}
func (h *VLESS) NewConnection(ctx context.Context, conn net.Conn, metadata adapter.InboundContext) error {
return NewConnection(ctx, h, conn, metadata)
}
func (h *VLESS) NewPacketConnection(ctx context.Context, conn N.PacketConn, metadata adapter.InboundContext) error {
return NewPacketConnection(ctx, h, conn, metadata)
}
2023-07-23 06:42:19 +00:00
func (h *VLESS) InterfaceUpdated() {
2023-04-24 01:55:46 +00:00
if h.multiplexDialer != nil {
h.multiplexDialer.Reset()
}
2023-07-23 06:42:19 +00:00
return
2023-04-24 01:55:46 +00:00
}
func (h *VLESS) Close() error {
return common.Close(common.PtrOrNil(h.multiplexDialer), h.transport)
}
type vlessDialer VLESS
func (h *vlessDialer) DialContext(ctx context.Context, network string, destination M.Socksaddr) (net.Conn, error) {
2022-09-12 13:59:27 +00:00
ctx, metadata := adapter.AppendContext(ctx)
metadata.Outbound = h.tag
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 13:59:27 +00:00
case N.NetworkUDP:
h.logger.InfoContext(ctx, "outbound packet connection to ", destination)
2023-03-03 08:31:07 +00:00
if h.xudp {
return h.client.DialEarlyXUDPPacketConn(conn, destination)
} else if h.packetAddr {
2023-04-02 04:01:19 +00:00
if destination.IsFqdn() {
return nil, E.New("packetaddr: domain destination is not supported")
}
2023-03-03 08:31:07 +00:00
packetConn, err := h.client.DialEarlyPacketConn(conn, M.Socksaddr{Fqdn: packetaddr.SeqPacketMagicAddress})
if err != nil {
return nil, err
}
2023-04-14 11:19:27 +00:00
return bufio.NewBindPacketConn(packetaddr.NewConn(packetConn, destination), destination), nil
2023-03-03 08:31:07 +00:00
} else {
return h.client.DialEarlyPacketConn(conn, destination)
}
2022-09-12 13:59:27 +00:00
default:
return nil, E.Extend(N.ErrUnknownNetwork, network)
}
}
2023-04-24 01:55:46 +00:00
func (h *vlessDialer) ListenPacket(ctx context.Context, destination M.Socksaddr) (net.PacketConn, error) {
2022-09-12 13:59:27 +00:00
h.logger.InfoContext(ctx, "outbound packet connection to ", destination)
ctx, metadata := adapter.AppendContext(ctx)
metadata.Outbound = h.tag
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 08:46:49 +00:00
common.Close(conn)
2022-09-12 13:59:27 +00:00
return nil, err
}
if h.xudp {
return h.client.DialEarlyXUDPPacketConn(conn, destination)
2022-09-12 13:59:27 +00:00
} else if h.packetAddr {
2023-04-02 04:01:19 +00: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 04:01:19 +00:00
return packetaddr.NewConn(conn, destination), nil
2022-09-12 13:59:27 +00:00
} else {
return h.client.DialEarlyPacketConn(conn, destination)
2022-09-12 13:59:27 +00:00
}
}