sing-box/outbound/vmess.go

184 lines
5.8 KiB
Go
Raw Normal View History

2022-07-18 04:32:31 +00:00
package outbound
import (
"context"
"net"
"github.com/sagernet/sing-box/adapter"
"github.com/sagernet/sing-box/common/dialer"
2022-08-04 02:38:20 +00:00
"github.com/sagernet/sing-box/common/mux"
2022-09-09 10:45:10 +00:00
"github.com/sagernet/sing-box/common/tls"
2022-07-18 04:32:31 +00:00
C "github.com/sagernet/sing-box/constant"
"github.com/sagernet/sing-box/log"
"github.com/sagernet/sing-box/option"
2022-08-22 10:53:47 +00:00
"github.com/sagernet/sing-box/transport/v2ray"
2022-07-18 04:32:31 +00:00
"github.com/sagernet/sing-vmess"
2022-08-27 03:28:01 +00:00
"github.com/sagernet/sing-vmess/packetaddr"
2022-07-18 12:40:14 +00:00
"github.com/sagernet/sing/common"
2022-07-29 16:29:22 +00:00
E "github.com/sagernet/sing/common/exceptions"
2022-07-18 04:32:31 +00:00
M "github.com/sagernet/sing/common/metadata"
N "github.com/sagernet/sing/common/network"
)
var _ adapter.Outbound = (*VMess)(nil)
type VMess struct {
myOutboundAdapter
2022-08-04 02:38:20 +00:00
dialer N.Dialer
client *vmess.Client
serverAddr M.Socksaddr
multiplexDialer N.Dialer
2022-09-09 10:45:10 +00:00
tlsConfig tls.Config
2022-08-22 10:53:47 +00:00
transport adapter.V2RayClientTransport
2022-08-27 03:28:01 +00:00
packetAddr bool
2022-07-18 04:32:31 +00:00
}
2022-08-04 02:38:20 +00:00
func NewVMess(ctx context.Context, router adapter.Router, logger log.ContextLogger, tag string, options option.VMessOutboundOptions) (*VMess, error) {
2022-08-16 15:37:51 +00:00
outbound := &VMess{
2022-08-04 02:38:20 +00:00
myOutboundAdapter: myOutboundAdapter{
2022-07-21 13:03:41 +00:00
protocol: C.TypeVMess,
2022-07-23 01:15:47 +00:00
network: options.Network.Build(),
router: router,
2022-07-18 04:32:31 +00:00
logger: logger,
tag: tag,
},
2022-09-03 04:55:10 +00:00
dialer: dialer.New(router, options.DialerOptions),
2022-08-04 02:38:20 +00:00
serverAddr: options.ServerOptions.Build(),
}
var err error
2022-08-22 10:53:47 +00:00
if options.TLS != nil {
2022-09-09 10:45:10 +00:00
outbound.tlsConfig, err = tls.NewClient(router, options.Server, common.PtrValueOrDefault(options.TLS))
2022-08-22 10:53:47 +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 {
2022-08-22 14:19:25 +00:00
return nil, E.Cause(err, "create client transport: ", options.Transport.Type)
2022-08-22 10:53:47 +00:00
}
2022-08-04 02:38:20 +00:00
}
2022-08-22 10:53:47 +00:00
outbound.multiplexDialer, err = mux.NewClientWithOptions(ctx, (*vmessDialer)(outbound), common.PtrValueOrDefault(options.Multiplex))
2022-08-04 02:38:20 +00:00
if err != nil {
return nil, err
}
2022-08-27 03:28:01 +00:00
if outbound.multiplexDialer == nil && options.PacketAddr {
outbound.packetAddr = true
}
var clientOptions []vmess.ClientOption
if options.GlobalPadding {
clientOptions = append(clientOptions, vmess.ClientWithGlobalPadding())
}
if options.AuthenticatedLength {
clientOptions = append(clientOptions, vmess.ClientWithAuthenticatedLength())
}
security := options.Security
if security == "" {
security = "auto"
}
if security == "auto" && outbound.tlsConfig != nil {
security = "zero"
}
client, err := vmess.NewClient(options.UUID, security, options.AlterId, clientOptions...)
if err != nil {
return nil, err
}
outbound.client = client
2022-08-16 15:37:51 +00:00
return outbound, nil
2022-07-18 04:32:31 +00:00
}
2022-08-22 10:53:47 +00:00
func (h *VMess) Close() error {
return common.Close(h.transport)
}
2022-07-18 04:32:31 +00:00
func (h *VMess) DialContext(ctx context.Context, network string, destination M.Socksaddr) (net.Conn, error) {
2022-08-04 02:38:20 +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 (*vmessDialer)(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 *VMess) ListenPacket(ctx context.Context, destination M.Socksaddr) (net.PacketConn, error) {
if h.multiplexDialer == nil {
h.logger.InfoContext(ctx, "outbound packet connection to ", destination)
return (*vmessDialer)(h).ListenPacket(ctx, destination)
} else {
h.logger.InfoContext(ctx, "outbound multiplex packet connection to ", destination)
return h.multiplexDialer.ListenPacket(ctx, destination)
}
}
func (h *VMess) NewConnection(ctx context.Context, conn net.Conn, metadata adapter.InboundContext) error {
return NewEarlyConnection(ctx, h, conn, metadata)
}
func (h *VMess) NewPacketConnection(ctx context.Context, conn N.PacketConn, metadata adapter.InboundContext) error {
return NewPacketConnection(ctx, h, conn, metadata)
}
type vmessDialer VMess
func (h *vmessDialer) DialContext(ctx context.Context, network string, destination M.Socksaddr) (net.Conn, error) {
2022-07-18 04:32:31 +00:00
ctx, metadata := adapter.AppendContext(ctx)
metadata.Outbound = h.tag
metadata.Destination = destination
2022-08-22 10:53:47 +00:00
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 {
2022-09-09 10:45:10 +00:00
conn, err = tls.ClientHandshake(ctx, conn, h.tlsConfig)
2022-08-22 10:53:47 +00:00
}
}
if err != nil {
return nil, err
}
2022-07-29 16:29:22 +00:00
switch N.NetworkName(network) {
case N.NetworkTCP:
2022-08-22 10:53:47 +00:00
return h.client.DialEarlyConn(conn, destination), nil
2022-07-29 16:29:22 +00:00
case N.NetworkUDP:
2022-08-22 10:53:47 +00:00
return h.client.DialEarlyPacketConn(conn, destination), nil
2022-07-18 04:32:31 +00:00
default:
2022-07-29 16:29:22 +00:00
return nil, E.Extend(N.ErrUnknownNetwork, network)
2022-07-18 04:32:31 +00:00
}
}
2022-08-04 02:38:20 +00:00
func (h *vmessDialer) ListenPacket(ctx context.Context, destination M.Socksaddr) (net.PacketConn, error) {
2022-08-27 03:28:01 +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 {
2022-09-09 10:45:10 +00:00
conn, err = tls.ClientHandshake(ctx, conn, h.tlsConfig)
2022-08-27 03:28:01 +00:00
}
}
2022-07-18 04:32:31 +00:00
if err != nil {
return nil, err
}
2022-08-27 03:28:01 +00:00
if h.packetAddr {
return packetaddr.NewConn(h.client.DialEarlyPacketConn(conn, M.Socksaddr{Fqdn: packetaddr.SeqPacketMagicAddress}), destination), nil
} else {
return h.client.DialEarlyPacketConn(conn, destination), nil
}
2022-07-18 04:32:31 +00:00
}