| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 | 
							- package inbound
 
- import (
 
- 	"context"
 
- 	"net"
 
- 	"os"
 
- 	"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-shadowsocks"
 
- 	"github.com/sagernet/sing-shadowsocks/shadowaead"
 
- 	"github.com/sagernet/sing-shadowsocks/shadowaead_2022"
 
- 	"github.com/sagernet/sing/common"
 
- 	"github.com/sagernet/sing/common/buf"
 
- 	E "github.com/sagernet/sing/common/exceptions"
 
- 	N "github.com/sagernet/sing/common/network"
 
- )
 
- func NewShadowsocks(ctx context.Context, router adapter.Router, logger log.ContextLogger, tag string, options option.ShadowsocksInboundOptions) (adapter.Inbound, error) {
 
- 	if len(options.Users) > 0 && len(options.Destinations) > 0 {
 
- 		return nil, E.New("users and destinations options must not be combined")
 
- 	}
 
- 	if len(options.Users) > 0 {
 
- 		return newShadowsocksMulti(ctx, router, logger, tag, options)
 
- 	} else if len(options.Destinations) > 0 {
 
- 		return newShadowsocksRelay(ctx, router, logger, tag, options)
 
- 	} else {
 
- 		return newShadowsocks(ctx, router, logger, tag, options)
 
- 	}
 
- }
 
- var (
 
- 	_ adapter.Inbound           = (*Shadowsocks)(nil)
 
- 	_ adapter.InjectableInbound = (*Shadowsocks)(nil)
 
- )
 
- type Shadowsocks struct {
 
- 	myInboundAdapter
 
- 	service shadowsocks.Service
 
- }
 
- func newShadowsocks(ctx context.Context, router adapter.Router, logger log.ContextLogger, tag string, options option.ShadowsocksInboundOptions) (*Shadowsocks, error) {
 
- 	inbound := &Shadowsocks{
 
- 		myInboundAdapter: myInboundAdapter{
 
- 			protocol:      C.TypeShadowsocks,
 
- 			network:       options.Network.Build(),
 
- 			ctx:           ctx,
 
- 			router:        router,
 
- 			logger:        logger,
 
- 			tag:           tag,
 
- 			listenOptions: options.ListenOptions,
 
- 		},
 
- 	}
 
- 	inbound.connHandler = inbound
 
- 	inbound.packetHandler = inbound
 
- 	var udpTimeout int64
 
- 	if options.UDPTimeout != 0 {
 
- 		udpTimeout = options.UDPTimeout
 
- 	} else {
 
- 		udpTimeout = int64(C.UDPTimeout.Seconds())
 
- 	}
 
- 	var err error
 
- 	switch {
 
- 	case options.Method == shadowsocks.MethodNone:
 
- 		inbound.service = shadowsocks.NewNoneService(options.UDPTimeout, inbound.upstreamContextHandler())
 
- 	case common.Contains(shadowaead.List, options.Method):
 
- 		inbound.service, err = shadowaead.NewService(options.Method, nil, options.Password, udpTimeout, inbound.upstreamContextHandler())
 
- 	case common.Contains(shadowaead_2022.List, options.Method):
 
- 		inbound.service, err = shadowaead_2022.NewServiceWithPassword(options.Method, options.Password, udpTimeout, inbound.upstreamContextHandler(), router.TimeFunc())
 
- 	default:
 
- 		err = E.New("unsupported method: ", options.Method)
 
- 	}
 
- 	inbound.packetUpstream = inbound.service
 
- 	return inbound, err
 
- }
 
- func (h *Shadowsocks) NewConnection(ctx context.Context, conn net.Conn, metadata adapter.InboundContext) error {
 
- 	return h.service.NewConnection(adapter.WithContext(log.ContextWithNewID(ctx), &metadata), conn, adapter.UpstreamMetadata(metadata))
 
- }
 
- func (h *Shadowsocks) NewPacket(ctx context.Context, conn N.PacketConn, buffer *buf.Buffer, metadata adapter.InboundContext) error {
 
- 	return h.service.NewPacket(adapter.WithContext(ctx, &metadata), conn, buffer, adapter.UpstreamMetadata(metadata))
 
- }
 
- func (h *Shadowsocks) NewPacketConnection(ctx context.Context, conn N.PacketConn, metadata adapter.InboundContext) error {
 
- 	return os.ErrInvalid
 
- }
 
 
  |