mirror of
https://github.com/shtorm-7/sing-box-extended.git
synced 2026-05-22 04:16:21 +03:00
127 lines
4.0 KiB
Go
127 lines
4.0 KiB
Go
package traffic
|
|
|
|
import (
|
|
"context"
|
|
"net"
|
|
|
|
"github.com/sagernet/sing-box/adapter"
|
|
"github.com/sagernet/sing-box/adapter/outbound"
|
|
C "github.com/sagernet/sing-box/constant"
|
|
"github.com/sagernet/sing-box/log"
|
|
"github.com/sagernet/sing-box/option"
|
|
"github.com/sagernet/sing-box/route"
|
|
"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"
|
|
"github.com/sagernet/sing/service"
|
|
)
|
|
|
|
func RegisterOutbound(registry *outbound.Registry) {
|
|
outbound.Register[option.TrafficLimiterOutboundOptions](registry, C.TypeTrafficLimiter, NewOutbound)
|
|
}
|
|
|
|
type Outbound struct {
|
|
outbound.Adapter
|
|
ctx context.Context
|
|
outbound adapter.OutboundManager
|
|
connection adapter.ConnectionManager
|
|
logger logger.ContextLogger
|
|
strategy TrafficStrategy
|
|
outboundTag string
|
|
detour adapter.Outbound
|
|
router *route.Router
|
|
}
|
|
|
|
func NewOutbound(ctx context.Context, router adapter.Router, logger log.ContextLogger, tag string, options option.TrafficLimiterOutboundOptions) (adapter.Outbound, error) {
|
|
if options.Route.Final == "" {
|
|
return nil, E.New("missing final outbound")
|
|
}
|
|
strategy := NewManagerTrafficStrategy()
|
|
logFactory := service.FromContext[log.Factory](ctx)
|
|
r := route.NewRouter(ctx, logFactory, options.Route, option.DNSOptions{})
|
|
err := r.Initialize(options.Route.Rules, options.Route.RuleSet)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
outbound := &Outbound{
|
|
Adapter: outbound.NewAdapter(C.TypeTrafficLimiter, tag, nil, []string{}),
|
|
ctx: ctx,
|
|
outbound: service.FromContext[adapter.OutboundManager](ctx),
|
|
connection: service.FromContext[adapter.ConnectionManager](ctx),
|
|
logger: logger,
|
|
strategy: strategy,
|
|
outboundTag: options.Route.Final,
|
|
router: r,
|
|
}
|
|
return outbound, nil
|
|
}
|
|
|
|
func (h *Outbound) Network() []string {
|
|
return []string{N.NetworkTCP, N.NetworkUDP}
|
|
}
|
|
|
|
func (h *Outbound) Start() error {
|
|
detour, loaded := h.outbound.Outbound(h.outboundTag)
|
|
if !loaded {
|
|
return E.New("outbound not found: ", h.outboundTag)
|
|
}
|
|
h.detour = detour
|
|
for _, stage := range []adapter.StartStage{adapter.StartStateStart, adapter.StartStatePostStart, adapter.StartStateStarted} {
|
|
err := h.router.Start(stage)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (h *Outbound) DialContext(ctx context.Context, network string, destination M.Socksaddr) (net.Conn, error) {
|
|
conn, err := h.detour.DialContext(ctx, network, destination)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return h.strategy.wrapConn(ctx, conn, adapter.ContextFrom(ctx), true)
|
|
}
|
|
|
|
func (h *Outbound) ListenPacket(ctx context.Context, destination M.Socksaddr) (net.PacketConn, error) {
|
|
conn, err := h.detour.ListenPacket(ctx, destination)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return h.strategy.wrapPacketConn(ctx, conn, adapter.ContextFrom(ctx), true)
|
|
}
|
|
|
|
func (h *Outbound) NewConnectionEx(ctx context.Context, conn net.Conn, metadata adapter.InboundContext, onClose N.CloseHandlerFunc) {
|
|
conn, err := h.strategy.wrapConn(ctx, conn, &metadata, false)
|
|
if err != nil {
|
|
if err.Error() != "traffic limit exceeded" {
|
|
h.logger.ErrorContext(ctx, err)
|
|
}
|
|
N.CloseOnHandshakeFailure(conn, onClose, err)
|
|
return
|
|
}
|
|
metadata.Inbound = h.Tag()
|
|
metadata.InboundType = h.Type()
|
|
h.router.RouteConnectionEx(ctx, conn, metadata, onClose)
|
|
}
|
|
|
|
func (h *Outbound) NewPacketConnectionEx(ctx context.Context, conn N.PacketConn, metadata adapter.InboundContext, onClose N.CloseHandlerFunc) {
|
|
packetConn, err := h.strategy.wrapPacketConn(ctx, bufio.NewNetPacketConn(conn), &metadata, false)
|
|
if err != nil {
|
|
if err.Error() != "traffic limit exceeded" {
|
|
h.logger.ErrorContext(ctx, err)
|
|
}
|
|
N.CloseOnHandshakeFailure(conn, onClose, err)
|
|
return
|
|
}
|
|
metadata.Inbound = h.Tag()
|
|
metadata.InboundType = h.Type()
|
|
h.router.RoutePacketConnectionEx(ctx, bufio.NewPacketConn(packetConn), metadata, onClose)
|
|
}
|
|
|
|
func (h *Outbound) GetStrategy() TrafficStrategy {
|
|
return h.strategy
|
|
}
|