1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- package mux
- import (
- "context"
- "net"
- "github.com/sagernet/sing-box/adapter"
- C "github.com/sagernet/sing-box/constant"
- "github.com/sagernet/sing-box/log"
- "github.com/sagernet/sing-box/option"
- "github.com/sagernet/sing-mux"
- E "github.com/sagernet/sing/common/exceptions"
- "github.com/sagernet/sing/common/logger"
- N "github.com/sagernet/sing/common/network"
- )
- type Router struct {
- router adapter.ConnectionRouterEx
- service *mux.Service
- }
- func NewRouterWithOptions(router adapter.ConnectionRouterEx, logger logger.ContextLogger, options option.InboundMultiplexOptions) (adapter.ConnectionRouterEx, error) {
- if !options.Enabled {
- return router, nil
- }
- var brutalOptions mux.BrutalOptions
- if options.Brutal != nil && options.Brutal.Enabled {
- brutalOptions = mux.BrutalOptions{
- Enabled: true,
- SendBPS: uint64(options.Brutal.UpMbps * C.MbpsToBps),
- ReceiveBPS: uint64(options.Brutal.DownMbps * C.MbpsToBps),
- }
- if brutalOptions.SendBPS < mux.BrutalMinSpeedBPS {
- return nil, E.New("brutal: invalid upload speed")
- }
- if brutalOptions.ReceiveBPS < mux.BrutalMinSpeedBPS {
- return nil, E.New("brutal: invalid download speed")
- }
- }
- service, err := mux.NewService(mux.ServiceOptions{
- NewStreamContext: func(ctx context.Context, conn net.Conn) context.Context {
- return log.ContextWithNewID(ctx)
- },
- Logger: logger,
- HandlerEx: adapter.NewRouteContextHandlerEx(router),
- Padding: options.Padding,
- Brutal: brutalOptions,
- })
- if err != nil {
- return nil, err
- }
- return &Router{router, service}, nil
- }
- // Deprecated: Use RouteConnectionEx instead.
- func (r *Router) RouteConnection(ctx context.Context, conn net.Conn, metadata adapter.InboundContext) error {
- if metadata.Destination == mux.Destination {
- // TODO: check if WithContext is necessary
- return r.service.NewConnection(adapter.WithContext(ctx, &metadata), conn, adapter.UpstreamMetadata(metadata))
- } else {
- return r.router.RouteConnection(ctx, conn, metadata)
- }
- }
- // Deprecated: Use RoutePacketConnectionEx instead.
- func (r *Router) RoutePacketConnection(ctx context.Context, conn N.PacketConn, metadata adapter.InboundContext) error {
- return r.router.RoutePacketConnection(ctx, conn, metadata)
- }
- func (r *Router) RouteConnectionEx(ctx context.Context, conn net.Conn, metadata adapter.InboundContext, onClose N.CloseHandlerFunc) {
- if metadata.Destination == mux.Destination {
- r.service.NewConnectionEx(adapter.WithContext(ctx, &metadata), conn, metadata.Source, metadata.Destination, onClose)
- return
- }
- r.router.RouteConnectionEx(ctx, conn, metadata, onClose)
- }
- func (r *Router) RoutePacketConnectionEx(ctx context.Context, conn N.PacketConn, metadata adapter.InboundContext, onClose N.CloseHandlerFunc) {
- r.router.RoutePacketConnectionEx(ctx, conn, metadata, onClose)
- }
|