2020-11-25 13:01:53 +02:00
|
|
|
package socks
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"io"
|
|
|
|
"time"
|
|
|
|
|
2020-12-04 03:36:16 +02:00
|
|
|
"github.com/xtls/xray-core/common"
|
|
|
|
"github.com/xtls/xray-core/common/buf"
|
|
|
|
"github.com/xtls/xray-core/common/log"
|
|
|
|
"github.com/xtls/xray-core/common/net"
|
|
|
|
"github.com/xtls/xray-core/common/protocol"
|
|
|
|
udp_proto "github.com/xtls/xray-core/common/protocol/udp"
|
|
|
|
"github.com/xtls/xray-core/common/session"
|
|
|
|
"github.com/xtls/xray-core/common/signal"
|
|
|
|
"github.com/xtls/xray-core/common/task"
|
|
|
|
"github.com/xtls/xray-core/core"
|
|
|
|
"github.com/xtls/xray-core/features"
|
|
|
|
"github.com/xtls/xray-core/features/policy"
|
|
|
|
"github.com/xtls/xray-core/features/routing"
|
2021-12-15 02:28:47 +02:00
|
|
|
"github.com/xtls/xray-core/transport/internet/stat"
|
2020-12-04 03:36:16 +02:00
|
|
|
"github.com/xtls/xray-core/transport/internet/udp"
|
2020-11-25 13:01:53 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
// Server is a SOCKS 5 proxy server
|
|
|
|
type Server struct {
|
|
|
|
config *ServerConfig
|
|
|
|
policyManager policy.Manager
|
2021-01-10 09:50:21 +02:00
|
|
|
cone bool
|
2020-11-25 13:01:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// NewServer creates a new Server object.
|
|
|
|
func NewServer(ctx context.Context, config *ServerConfig) (*Server, error) {
|
|
|
|
v := core.MustFromContext(ctx)
|
|
|
|
s := &Server{
|
|
|
|
config: config,
|
|
|
|
policyManager: v.GetFeature(policy.ManagerType()).(policy.Manager),
|
2021-01-10 09:50:21 +02:00
|
|
|
cone: ctx.Value("cone").(bool),
|
2020-11-25 13:01:53 +02:00
|
|
|
}
|
|
|
|
return s, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *Server) policy() policy.Session {
|
|
|
|
config := s.config
|
|
|
|
p := s.policyManager.ForLevel(config.UserLevel)
|
|
|
|
if config.Timeout > 0 {
|
|
|
|
features.PrintDeprecatedFeatureWarning("Socks timeout")
|
|
|
|
}
|
|
|
|
if config.Timeout > 0 && config.UserLevel == 0 {
|
|
|
|
p.Timeouts.ConnectionIdle = time.Duration(config.Timeout) * time.Second
|
|
|
|
}
|
|
|
|
return p
|
|
|
|
}
|
|
|
|
|
|
|
|
// Network implements proxy.Inbound.
|
|
|
|
func (s *Server) Network() []net.Network {
|
|
|
|
list := []net.Network{net.Network_TCP}
|
|
|
|
if s.config.UdpEnabled {
|
|
|
|
list = append(list, net.Network_UDP)
|
|
|
|
}
|
|
|
|
return list
|
|
|
|
}
|
|
|
|
|
|
|
|
// Process implements proxy.Inbound.
|
2021-09-20 15:11:21 +03:00
|
|
|
func (s *Server) Process(ctx context.Context, network net.Network, conn stat.Connection, dispatcher routing.Dispatcher) error {
|
2020-11-25 13:01:53 +02:00
|
|
|
if inbound := session.InboundFromContext(ctx); inbound != nil {
|
|
|
|
inbound.User = &protocol.MemoryUser{
|
|
|
|
Level: s.config.UserLevel,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
switch network {
|
|
|
|
case net.Network_TCP:
|
|
|
|
return s.processTCP(ctx, conn, dispatcher)
|
|
|
|
case net.Network_UDP:
|
|
|
|
return s.handleUDPPayload(ctx, conn, dispatcher)
|
|
|
|
default:
|
|
|
|
return newError("unknown network: ", network)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-09-20 15:11:21 +03:00
|
|
|
func (s *Server) processTCP(ctx context.Context, conn stat.Connection, dispatcher routing.Dispatcher) error {
|
2020-11-25 13:01:53 +02:00
|
|
|
plcy := s.policy()
|
|
|
|
if err := conn.SetReadDeadline(time.Now().Add(plcy.Timeouts.Handshake)); err != nil {
|
|
|
|
newError("failed to set deadline").Base(err).WriteToLog(session.ExportIDToError(ctx))
|
|
|
|
}
|
|
|
|
|
|
|
|
inbound := session.InboundFromContext(ctx)
|
|
|
|
if inbound == nil || !inbound.Gateway.IsValid() {
|
|
|
|
return newError("inbound gateway not specified")
|
|
|
|
}
|
|
|
|
|
|
|
|
svrSession := &ServerSession{
|
2021-01-09 18:36:20 +02:00
|
|
|
config: s.config,
|
|
|
|
address: inbound.Gateway.Address,
|
|
|
|
port: inbound.Gateway.Port,
|
|
|
|
localAddress: net.IPAddress(conn.LocalAddr().(*net.TCPAddr).IP),
|
2020-11-25 13:01:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
reader := &buf.BufferedReader{Reader: buf.NewReader(conn)}
|
|
|
|
request, err := svrSession.Handshake(reader, conn)
|
|
|
|
if err != nil {
|
|
|
|
if inbound != nil && inbound.Source.IsValid() {
|
|
|
|
log.Record(&log.AccessMessage{
|
|
|
|
From: inbound.Source,
|
|
|
|
To: "",
|
|
|
|
Status: log.AccessRejected,
|
|
|
|
Reason: err,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
return newError("failed to read request").Base(err)
|
|
|
|
}
|
|
|
|
if request.User != nil {
|
|
|
|
inbound.User.Email = request.User.Email
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := conn.SetReadDeadline(time.Time{}); err != nil {
|
|
|
|
newError("failed to clear deadline").Base(err).WriteToLog(session.ExportIDToError(ctx))
|
|
|
|
}
|
|
|
|
|
|
|
|
if request.Command == protocol.RequestCommandTCP {
|
|
|
|
dest := request.Destination()
|
|
|
|
newError("TCP Connect request to ", dest).WriteToLog(session.ExportIDToError(ctx))
|
|
|
|
if inbound != nil && inbound.Source.IsValid() {
|
|
|
|
ctx = log.ContextWithAccessMessage(ctx, &log.AccessMessage{
|
|
|
|
From: inbound.Source,
|
|
|
|
To: dest,
|
|
|
|
Status: log.AccessAccepted,
|
|
|
|
Reason: "",
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2020-12-05 13:58:10 +02:00
|
|
|
return s.transport(ctx, reader, conn, dest, dispatcher, inbound)
|
2020-11-25 13:01:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if request.Command == protocol.RequestCommandUDP {
|
|
|
|
return s.handleUDP(conn)
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (*Server) handleUDP(c io.Reader) error {
|
|
|
|
// The TCP connection closes after this method returns. We need to wait until
|
|
|
|
// the client closes it.
|
|
|
|
return common.Error2(io.Copy(buf.DiscardBytes, c))
|
|
|
|
}
|
|
|
|
|
2020-12-05 13:58:10 +02:00
|
|
|
func (s *Server) transport(ctx context.Context, reader io.Reader, writer io.Writer, dest net.Destination, dispatcher routing.Dispatcher, inbound *session.Inbound) error {
|
2020-11-25 13:01:53 +02:00
|
|
|
ctx, cancel := context.WithCancel(ctx)
|
|
|
|
timer := signal.CancelAfterInactivity(ctx, cancel, s.policy().Timeouts.ConnectionIdle)
|
|
|
|
|
2020-12-05 13:58:10 +02:00
|
|
|
if inbound != nil {
|
|
|
|
inbound.Timer = timer
|
|
|
|
}
|
|
|
|
|
2020-11-25 13:01:53 +02:00
|
|
|
plcy := s.policy()
|
|
|
|
ctx = policy.ContextWithBufferPolicy(ctx, plcy.Buffer)
|
|
|
|
link, err := dispatcher.Dispatch(ctx, dest)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
requestDone := func() error {
|
|
|
|
defer timer.SetTimeout(plcy.Timeouts.DownlinkOnly)
|
|
|
|
if err := buf.Copy(buf.NewReader(reader), link.Writer, buf.UpdateActivity(timer)); err != nil {
|
|
|
|
return newError("failed to transport all TCP request").Base(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
responseDone := func() error {
|
|
|
|
defer timer.SetTimeout(plcy.Timeouts.UplinkOnly)
|
|
|
|
|
|
|
|
v2writer := buf.NewWriter(writer)
|
|
|
|
if err := buf.Copy(link.Reader, v2writer, buf.UpdateActivity(timer)); err != nil {
|
|
|
|
return newError("failed to transport all TCP response").Base(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2021-10-19 19:57:14 +03:00
|
|
|
requestDonePost := task.OnSuccess(requestDone, task.Close(link.Writer))
|
2020-11-25 13:01:53 +02:00
|
|
|
if err := task.Run(ctx, requestDonePost, responseDone); err != nil {
|
|
|
|
common.Interrupt(link.Reader)
|
|
|
|
common.Interrupt(link.Writer)
|
|
|
|
return newError("connection ends").Base(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2021-09-20 15:11:21 +03:00
|
|
|
func (s *Server) handleUDPPayload(ctx context.Context, conn stat.Connection, dispatcher routing.Dispatcher) error {
|
2020-11-25 13:01:53 +02:00
|
|
|
udpServer := udp.NewDispatcher(dispatcher, func(ctx context.Context, packet *udp_proto.Packet) {
|
|
|
|
payload := packet.Payload
|
|
|
|
newError("writing back UDP response with ", payload.Len(), " bytes").AtDebug().WriteToLog(session.ExportIDToError(ctx))
|
|
|
|
|
|
|
|
request := protocol.RequestHeaderFromContext(ctx)
|
|
|
|
if request == nil {
|
|
|
|
return
|
|
|
|
}
|
2020-12-23 15:06:21 +02:00
|
|
|
|
|
|
|
if payload.UDP != nil {
|
|
|
|
request = &protocol.RequestHeader{
|
|
|
|
User: request.User,
|
2020-12-28 11:40:28 +02:00
|
|
|
Address: payload.UDP.Address,
|
|
|
|
Port: payload.UDP.Port,
|
2020-12-23 15:06:21 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-25 13:01:53 +02:00
|
|
|
udpMessage, err := EncodeUDPPacket(request, payload.Bytes())
|
|
|
|
payload.Release()
|
|
|
|
|
|
|
|
defer udpMessage.Release()
|
|
|
|
if err != nil {
|
|
|
|
newError("failed to write UDP response").AtWarning().Base(err).WriteToLog(session.ExportIDToError(ctx))
|
|
|
|
}
|
|
|
|
|
|
|
|
conn.Write(udpMessage.Bytes())
|
|
|
|
})
|
|
|
|
|
2021-01-08 08:00:51 +02:00
|
|
|
inbound := session.InboundFromContext(ctx)
|
|
|
|
if inbound != nil && inbound.Source.IsValid() {
|
2020-11-25 13:01:53 +02:00
|
|
|
newError("client UDP connection from ", inbound.Source).WriteToLog(session.ExportIDToError(ctx))
|
|
|
|
}
|
|
|
|
|
2020-12-30 10:10:26 +02:00
|
|
|
var dest *net.Destination
|
2020-12-23 15:06:21 +02:00
|
|
|
|
2020-11-25 13:01:53 +02:00
|
|
|
reader := buf.NewPacketReader(conn)
|
|
|
|
for {
|
|
|
|
mpayload, err := reader.ReadMultiBuffer()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, payload := range mpayload {
|
|
|
|
request, err := DecodeUDPPacket(payload)
|
|
|
|
if err != nil {
|
|
|
|
newError("failed to parse UDP request").Base(err).WriteToLog(session.ExportIDToError(ctx))
|
|
|
|
payload.Release()
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
if payload.IsEmpty() {
|
|
|
|
payload.Release()
|
|
|
|
continue
|
|
|
|
}
|
2020-12-28 11:40:28 +02:00
|
|
|
|
|
|
|
destination := request.Destination()
|
|
|
|
|
2020-11-25 13:01:53 +02:00
|
|
|
currentPacketCtx := ctx
|
2020-12-28 11:40:28 +02:00
|
|
|
newError("send packet to ", destination, " with ", payload.Len(), " bytes").AtDebug().WriteToLog(session.ExportIDToError(ctx))
|
2021-01-08 08:00:51 +02:00
|
|
|
if inbound != nil && inbound.Source.IsValid() {
|
2020-11-25 13:01:53 +02:00
|
|
|
currentPacketCtx = log.ContextWithAccessMessage(ctx, &log.AccessMessage{
|
|
|
|
From: inbound.Source,
|
2020-12-28 11:40:28 +02:00
|
|
|
To: destination,
|
2020-11-25 13:01:53 +02:00
|
|
|
Status: log.AccessAccepted,
|
|
|
|
Reason: "",
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2020-12-28 11:40:28 +02:00
|
|
|
payload.UDP = &destination
|
2020-12-23 15:06:21 +02:00
|
|
|
|
2021-01-10 09:50:21 +02:00
|
|
|
if !s.cone || dest == nil {
|
2020-12-30 10:10:26 +02:00
|
|
|
dest = &destination
|
2020-12-23 15:06:21 +02:00
|
|
|
}
|
|
|
|
|
2020-11-25 13:01:53 +02:00
|
|
|
currentPacketCtx = protocol.ContextWithRequestHeader(currentPacketCtx, request)
|
2020-12-30 10:10:26 +02:00
|
|
|
udpServer.Dispatch(currentPacketCtx, *dest, payload)
|
2020-11-25 13:01:53 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
common.Must(common.RegisterConfig((*ServerConfig)(nil), func(ctx context.Context, config interface{}) (interface{}, error) {
|
|
|
|
return NewServer(ctx, config.(*ServerConfig))
|
|
|
|
}))
|
|
|
|
}
|