sing-box/inbound/shadowsocks_multi.go

153 lines
4.7 KiB
Go
Raw Normal View History

2022-07-04 07:34:43 +00:00
package inbound
import (
"context"
"net"
2022-07-27 13:57:21 +00:00
"net/http"
2022-07-17 07:11:26 +00:00
"os"
2022-07-04 07:34:43 +00:00
2022-07-06 07:01:09 +00:00
"github.com/sagernet/sing-box/adapter"
2022-07-27 13:57:21 +00:00
"github.com/sagernet/sing-box/common/pipelistener"
"github.com/sagernet/sing-box/common/trafficcontrol"
2022-07-06 07:01:09 +00:00
C "github.com/sagernet/sing-box/constant"
"github.com/sagernet/sing-box/log"
"github.com/sagernet/sing-box/option"
2022-07-08 15:03:57 +00:00
"github.com/sagernet/sing-shadowsocks/shadowaead_2022"
"github.com/sagernet/sing/common"
2022-07-17 07:11:26 +00:00
"github.com/sagernet/sing/common/auth"
2022-07-08 15:03:57 +00:00
"github.com/sagernet/sing/common/buf"
2022-07-27 13:57:21 +00:00
E "github.com/sagernet/sing/common/exceptions"
2022-07-08 15:03:57 +00:00
F "github.com/sagernet/sing/common/format"
N "github.com/sagernet/sing/common/network"
2022-07-04 07:34:43 +00:00
)
var _ adapter.Inbound = (*ShadowsocksMulti)(nil)
type ShadowsocksMulti struct {
myInboundAdapter
2022-07-27 13:57:21 +00:00
service *shadowaead_2022.MultiService[int]
users []option.ShadowsocksUser
controlEnabled bool
controller *http.Server
controllerPipe *pipelistener.Listener
trafficManager *trafficcontrol.Manager[int]
2022-07-04 07:34:43 +00:00
}
2022-07-12 07:17:29 +00:00
func newShadowsocksMulti(ctx context.Context, router adapter.Router, logger log.ContextLogger, tag string, options option.ShadowsocksInboundOptions) (*ShadowsocksMulti, error) {
2022-07-04 07:34:43 +00:00
inbound := &ShadowsocksMulti{
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())
2022-07-04 07:34:43 +00:00
}
service, err := shadowaead_2022.NewMultiServiceWithPassword[int](
options.Method,
options.Password,
udpTimeout,
adapter.NewUpstreamContextHandler(inbound.newConnection, inbound.newPacketConnection, inbound),
)
2022-07-27 13:57:21 +00:00
users := options.Users
if options.ControlPassword != "" {
inbound.controlEnabled = true
users = append([]option.ShadowsocksUser{{
Name: "control",
Password: options.ControlPassword,
}}, users...)
inbound.controller = &http.Server{Handler: inbound.createHandler()}
inbound.trafficManager = trafficcontrol.NewManager[int]()
}
2022-07-04 07:34:43 +00:00
if err != nil {
return nil, err
}
2022-07-27 13:57:21 +00:00
err = service.UpdateUsersWithPasswords(common.MapIndexed(users, func(index int, user option.ShadowsocksUser) int {
2022-07-04 07:34:43 +00:00
return index
}), common.Map(options.Users, func(user option.ShadowsocksUser) string {
return user.Password
}))
if err != nil {
return nil, err
}
inbound.service = service
inbound.packetUpstream = service
2022-07-27 13:57:21 +00:00
inbound.users = users
2022-07-04 07:34:43 +00:00
return inbound, err
}
2022-07-27 13:57:21 +00:00
func (h *ShadowsocksMulti) Start() error {
if h.controlEnabled {
h.controllerPipe = pipelistener.New(16)
go func() {
err := h.controller.Serve(h.controllerPipe)
if err != nil {
h.newError(E.Cause(err, "controller serve error"))
}
}()
}
return h.myInboundAdapter.Start()
}
func (h *ShadowsocksMulti) Close() error {
if h.controlEnabled {
h.controllerPipe.Close()
}
return h.myInboundAdapter.Close()
}
2022-07-04 07:34:43 +00:00
func (h *ShadowsocksMulti) NewConnection(ctx context.Context, conn net.Conn, metadata adapter.InboundContext) error {
2022-07-12 07:17:29 +00:00
return h.service.NewConnection(adapter.WithContext(log.ContextWithNewID(ctx), &metadata), conn, adapter.UpstreamMetadata(metadata))
2022-07-04 07:34:43 +00:00
}
func (h *ShadowsocksMulti) NewPacket(ctx context.Context, conn N.PacketConn, buffer *buf.Buffer, metadata adapter.InboundContext) error {
2022-07-17 07:11:26 +00:00
return h.service.NewPacket(adapter.WithContext(ctx, &metadata), conn, buffer, adapter.UpstreamMetadata(metadata))
2022-07-04 07:34:43 +00:00
}
func (h *ShadowsocksMulti) newConnection(ctx context.Context, conn net.Conn, metadata adapter.InboundContext) error {
2022-07-17 07:11:26 +00:00
userIndex, loaded := auth.UserFromContext[int](ctx)
if !loaded {
return os.ErrInvalid
}
2022-07-27 13:57:21 +00:00
if userIndex == 0 && h.controlEnabled {
h.logger.InfoContext(ctx, "inbound control connection")
h.controllerPipe.Serve(conn)
return nil
}
2022-07-17 07:11:26 +00:00
user := h.users[userIndex].Name
2022-07-04 07:34:43 +00:00
if user == "" {
2022-07-17 07:11:26 +00:00
user = F.ToString(userIndex)
} else {
metadata.User = user
2022-07-04 07:34:43 +00:00
}
2022-07-12 07:17:29 +00:00
h.logger.InfoContext(ctx, "[", user, "] inbound connection to ", metadata.Destination)
2022-07-04 07:34:43 +00:00
return h.router.RouteConnection(ctx, conn, metadata)
}
func (h *ShadowsocksMulti) newPacketConnection(ctx context.Context, conn N.PacketConn, metadata adapter.InboundContext) error {
2022-07-17 07:11:26 +00:00
userIndex, loaded := auth.UserFromContext[int](ctx)
if !loaded {
return os.ErrInvalid
}
user := h.users[userIndex].Name
2022-07-04 07:34:43 +00:00
if user == "" {
2022-07-17 07:11:26 +00:00
user = F.ToString(userIndex)
} else {
metadata.User = user
2022-07-04 07:34:43 +00:00
}
2022-07-12 07:17:29 +00:00
ctx = log.ContextWithNewID(ctx)
h.logger.InfoContext(ctx, "[", user, "] inbound packet connection from ", metadata.Source)
h.logger.InfoContext(ctx, "[", user, "] inbound packet connection to ", metadata.Destination)
2022-07-04 07:34:43 +00:00
return h.router.RoutePacketConnection(ctx, conn, metadata)
}