sing-box/outbound/shadowsocks.go

89 lines
2.8 KiB
Go
Raw Normal View History

2022-07-01 11:34:02 +00:00
package outbound
2022-06-30 13:27:56 +00:00
import (
"context"
"net"
"github.com/sagernet/sing-box/adapter"
2022-07-07 13:47:21 +00:00
"github.com/sagernet/sing-box/common/dialer"
2022-06-30 13:27:56 +00:00
C "github.com/sagernet/sing-box/constant"
"github.com/sagernet/sing-box/log"
2022-07-02 06:07:50 +00:00
"github.com/sagernet/sing-box/option"
2022-07-08 15:03:57 +00:00
"github.com/sagernet/sing-shadowsocks"
"github.com/sagernet/sing-shadowsocks/shadowimpl"
"github.com/sagernet/sing/common/bufio"
M "github.com/sagernet/sing/common/metadata"
N "github.com/sagernet/sing/common/network"
2022-06-30 13:27:56 +00:00
)
2022-07-01 11:34:02 +00:00
var _ adapter.Outbound = (*Shadowsocks)(nil)
2022-06-30 13:27:56 +00:00
2022-07-01 11:34:02 +00:00
type Shadowsocks struct {
myOutboundAdapter
dialer N.Dialer
2022-06-30 13:27:56 +00:00
method shadowsocks.Method
serverAddr M.Socksaddr
}
2022-07-12 07:17:29 +00:00
func NewShadowsocks(router adapter.Router, logger log.ContextLogger, tag string, options option.ShadowsocksOutboundOptions) (*Shadowsocks, error) {
2022-07-07 13:47:21 +00:00
method, err := shadowimpl.FetchMethod(options.Method, options.Password)
if err != nil {
return nil, err
}
return &Shadowsocks{
myOutboundAdapter{
2022-07-01 11:34:02 +00:00
protocol: C.TypeDirect,
logger: logger,
tag: tag,
network: options.Network.Build(),
2022-07-01 11:34:02 +00:00
},
2022-07-07 15:36:32 +00:00
dialer.NewOutbound(router, options.OutboundDialerOptions),
2022-07-07 13:47:21 +00:00
method,
options.ServerOptions.Build(),
}, nil
2022-06-30 13:27:56 +00:00
}
2022-07-07 13:47:21 +00:00
func (h *Shadowsocks) DialContext(ctx context.Context, network string, destination M.Socksaddr) (net.Conn, error) {
ctx, metadata := adapter.AppendContext(ctx)
metadata.Outbound = h.tag
2022-07-07 15:36:32 +00:00
metadata.Destination = destination
2022-06-30 13:27:56 +00:00
switch network {
case C.NetworkTCP:
2022-07-12 07:17:29 +00:00
h.logger.InfoContext(ctx, "outbound connection to ", destination)
2022-07-07 13:47:21 +00:00
outConn, err := h.dialer.DialContext(ctx, C.NetworkTCP, h.serverAddr)
2022-06-30 13:27:56 +00:00
if err != nil {
return nil, err
}
2022-07-07 13:47:21 +00:00
return h.method.DialEarlyConn(outConn, destination), nil
2022-06-30 13:27:56 +00:00
case C.NetworkUDP:
2022-07-12 07:17:29 +00:00
h.logger.InfoContext(ctx, "outbound packet connection to ", destination)
2022-07-07 13:47:21 +00:00
outConn, err := h.dialer.DialContext(ctx, C.NetworkUDP, h.serverAddr)
2022-06-30 13:27:56 +00:00
if err != nil {
return nil, err
}
2022-07-07 13:47:21 +00:00
return &bufio.BindPacketConn{PacketConn: h.method.DialPacketConn(outConn), Addr: destination}, nil
2022-06-30 13:27:56 +00:00
default:
panic("unknown network " + network)
}
}
2022-07-07 13:47:21 +00:00
func (h *Shadowsocks) ListenPacket(ctx context.Context, destination M.Socksaddr) (net.PacketConn, error) {
ctx, metadata := adapter.AppendContext(ctx)
metadata.Outbound = h.tag
2022-07-07 15:36:32 +00:00
metadata.Destination = destination
2022-07-18 04:32:31 +00:00
h.logger.InfoContext(ctx, "outbound packet connection to ", destination)
2022-07-10 06:22:28 +00:00
outConn, err := h.dialer.DialContext(ctx, "udp", h.serverAddr)
2022-06-30 13:27:56 +00:00
if err != nil {
return nil, err
}
2022-07-10 06:22:28 +00:00
return h.method.DialPacketConn(outConn), nil
2022-06-30 13:27:56 +00:00
}
2022-07-03 05:14:49 +00:00
2022-07-07 15:36:32 +00:00
func (h *Shadowsocks) NewConnection(ctx context.Context, conn net.Conn, metadata adapter.InboundContext) error {
return NewEarlyConnection(ctx, h, conn, metadata)
2022-07-03 05:14:49 +00:00
}
2022-07-07 15:36:32 +00:00
func (h *Shadowsocks) NewPacketConnection(ctx context.Context, conn N.PacketConn, metadata adapter.InboundContext) error {
return NewPacketConnection(ctx, h, conn, metadata)
2022-07-03 05:14:49 +00:00
}