sing-box/inbound/mixed.go

71 lines
2.3 KiB
Go
Raw Normal View History

2022-07-01 11:34:02 +00:00
package inbound
import (
std_bufio "bufio"
"context"
"net"
2022-07-08 15:03:57 +00:00
"github.com/sagernet/sing-box/adapter"
"github.com/sagernet/sing-box/common/uot"
2022-07-08 15:03:57 +00:00
C "github.com/sagernet/sing-box/constant"
"github.com/sagernet/sing-box/log"
"github.com/sagernet/sing-box/option"
2022-07-01 11:34:02 +00:00
"github.com/sagernet/sing/common/auth"
2024-10-21 15:38:34 +00:00
E "github.com/sagernet/sing/common/exceptions"
2022-07-29 16:29:22 +00:00
N "github.com/sagernet/sing/common/network"
2022-07-01 11:34:02 +00:00
"github.com/sagernet/sing/protocol/http"
"github.com/sagernet/sing/protocol/socks"
"github.com/sagernet/sing/protocol/socks/socks4"
"github.com/sagernet/sing/protocol/socks/socks5"
)
2022-08-29 11:43:13 +00:00
var (
2024-10-21 15:38:34 +00:00
_ adapter.Inbound = (*Mixed)(nil)
_ adapter.TCPInjectableInbound = (*Mixed)(nil)
2022-08-29 11:43:13 +00:00
)
2022-07-01 11:34:02 +00:00
type Mixed struct {
myInboundAdapter
authenticator *auth.Authenticator
2022-07-01 11:34:02 +00:00
}
func NewMixed(ctx context.Context, router adapter.Router, logger log.ContextLogger, tag string, options option.HTTPMixedInboundOptions) *Mixed {
2022-07-01 11:34:02 +00:00
inbound := &Mixed{
myInboundAdapter{
protocol: C.TypeMixed,
2022-07-29 16:29:22 +00:00
network: []string{N.NetworkTCP},
ctx: ctx,
router: uot.NewRouter(router, logger),
logger: logger,
tag: tag,
listenOptions: options.ListenOptions,
setSystemProxy: options.SetSystemProxy,
2022-07-01 11:34:02 +00:00
},
auth.NewAuthenticator(options.Users),
}
inbound.connHandler = inbound
return inbound
}
2024-10-21 15:38:34 +00:00
func (h *Mixed) NewConnectionEx(ctx context.Context, conn net.Conn, metadata adapter.InboundContext, onClose N.CloseHandlerFunc) {
err := h.newConnection(ctx, conn, metadata, onClose)
N.CloseOnHandshakeFailure(conn, onClose, err)
if err != nil {
h.logger.ErrorContext(ctx, E.Cause(err, "process connection from ", metadata.Source))
}
}
func (h *Mixed) newConnection(ctx context.Context, conn net.Conn, metadata adapter.InboundContext, onClose N.CloseHandlerFunc) error {
2024-06-24 01:49:15 +00:00
reader := std_bufio.NewReader(conn)
headerBytes, err := reader.Peek(1)
2022-07-01 11:34:02 +00:00
if err != nil {
2024-10-21 15:38:34 +00:00
return E.Cause(err, "peek first byte")
2022-07-01 11:34:02 +00:00
}
2024-06-24 01:49:15 +00:00
switch headerBytes[0] {
2022-07-01 11:34:02 +00:00
case socks4.Version, socks5.Version:
2024-10-21 15:38:34 +00:00
return socks.HandleConnectionEx(ctx, conn, reader, h.authenticator, nil, h.upstreamUserHandlerEx(metadata), metadata.Source, metadata.Destination, onClose)
2024-06-24 01:49:15 +00:00
default:
2024-10-21 15:38:34 +00:00
return http.HandleConnectionEx(ctx, conn, reader, h.authenticator, nil, h.upstreamUserHandlerEx(metadata), metadata.Source, onClose)
2022-07-01 11:34:02 +00:00
}
}