mirror of
https://github.com/SagerNet/sing-box.git
synced 2024-11-16 07:42:22 +08:00
118 lines
3.6 KiB
Go
118 lines
3.6 KiB
Go
package hysteria2
|
|
|
|
import (
|
|
"context"
|
|
"net"
|
|
"os"
|
|
|
|
"github.com/sagernet/sing-box/adapter"
|
|
"github.com/sagernet/sing-box/adapter/outbound"
|
|
"github.com/sagernet/sing-box/common/dialer"
|
|
"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/protocol/tuic"
|
|
"github.com/sagernet/sing-quic/hysteria"
|
|
"github.com/sagernet/sing-quic/hysteria2"
|
|
"github.com/sagernet/sing/common"
|
|
"github.com/sagernet/sing/common/bufio"
|
|
E "github.com/sagernet/sing/common/exceptions"
|
|
"github.com/sagernet/sing/common/logger"
|
|
M "github.com/sagernet/sing/common/metadata"
|
|
N "github.com/sagernet/sing/common/network"
|
|
)
|
|
|
|
func RegisterOutbound(registry *outbound.Registry) {
|
|
outbound.Register[option.Hysteria2OutboundOptions](registry, C.TypeHysteria2, NewOutbound)
|
|
}
|
|
|
|
var (
|
|
_ adapter.Outbound = (*tuic.Outbound)(nil)
|
|
_ adapter.InterfaceUpdateListener = (*tuic.Outbound)(nil)
|
|
)
|
|
|
|
type Outbound struct {
|
|
outbound.Adapter
|
|
logger logger.ContextLogger
|
|
client *hysteria2.Client
|
|
}
|
|
|
|
func NewOutbound(ctx context.Context, router adapter.Router, logger log.ContextLogger, tag string, options option.Hysteria2OutboundOptions) (adapter.Outbound, error) {
|
|
options.UDPFragmentDefault = true
|
|
if options.TLS == nil || !options.TLS.Enabled {
|
|
return nil, C.ErrTLSRequired
|
|
}
|
|
tlsConfig, err := tls.NewClient(ctx, options.Server, common.PtrValueOrDefault(options.TLS))
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
var salamanderPassword string
|
|
if options.Obfs != nil {
|
|
if options.Obfs.Password == "" {
|
|
return nil, E.New("missing obfs password")
|
|
}
|
|
switch options.Obfs.Type {
|
|
case hysteria2.ObfsTypeSalamander:
|
|
salamanderPassword = options.Obfs.Password
|
|
default:
|
|
return nil, E.New("unknown obfs type: ", options.Obfs.Type)
|
|
}
|
|
}
|
|
outboundDialer, err := dialer.New(router, options.DialerOptions)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
networkList := options.Network.Build()
|
|
client, err := hysteria2.NewClient(hysteria2.ClientOptions{
|
|
Context: ctx,
|
|
Dialer: outboundDialer,
|
|
Logger: logger,
|
|
BrutalDebug: options.BrutalDebug,
|
|
ServerAddress: options.ServerOptions.Build(),
|
|
SendBPS: uint64(options.UpMbps * hysteria.MbpsToBps),
|
|
ReceiveBPS: uint64(options.DownMbps * hysteria.MbpsToBps),
|
|
SalamanderPassword: salamanderPassword,
|
|
Password: options.Password,
|
|
TLSConfig: tlsConfig,
|
|
UDPDisabled: !common.Contains(networkList, N.NetworkUDP),
|
|
})
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return &Outbound{
|
|
Adapter: outbound.NewAdapterWithDialerOptions(C.TypeHysteria2, networkList, tag, options.DialerOptions),
|
|
logger: logger,
|
|
client: client,
|
|
}, nil
|
|
}
|
|
|
|
func (h *Outbound) DialContext(ctx context.Context, network string, destination M.Socksaddr) (net.Conn, error) {
|
|
switch N.NetworkName(network) {
|
|
case N.NetworkTCP:
|
|
h.logger.InfoContext(ctx, "outbound connection to ", destination)
|
|
return h.client.DialConn(ctx, destination)
|
|
case N.NetworkUDP:
|
|
conn, err := h.ListenPacket(ctx, destination)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return bufio.NewBindPacketConn(conn, destination), nil
|
|
default:
|
|
return nil, E.New("unsupported network: ", network)
|
|
}
|
|
}
|
|
|
|
func (h *Outbound) ListenPacket(ctx context.Context, destination M.Socksaddr) (net.PacketConn, error) {
|
|
h.logger.InfoContext(ctx, "outbound packet connection to ", destination)
|
|
return h.client.ListenPacket(ctx)
|
|
}
|
|
|
|
func (h *Outbound) InterfaceUpdated() {
|
|
h.client.CloseWithError(E.New("network changed"))
|
|
}
|
|
|
|
func (h *Outbound) Close() error {
|
|
return h.client.CloseWithError(os.ErrClosed)
|
|
}
|