123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117 |
- 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(ctx, 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, tag, networkList, 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)
- }
|