1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2025-02-20 23:47:21 -05:00
v2fly/proxy/socks/server.go

253 lines
7.5 KiB
Go
Raw Normal View History

package socks
2015-09-07 14:49:40 +02:00
import (
"context"
2015-09-16 00:06:22 +02:00
"io"
2015-10-06 17:24:57 +02:00
"time"
2015-09-09 12:13:52 +02:00
2021-02-17 04:31:50 +08:00
core "github.com/v2fly/v2ray-core/v4"
"github.com/v2fly/v2ray-core/v4/common"
"github.com/v2fly/v2ray-core/v4/common/buf"
"github.com/v2fly/v2ray-core/v4/common/log"
"github.com/v2fly/v2ray-core/v4/common/net"
"github.com/v2fly/v2ray-core/v4/common/protocol"
udp_proto "github.com/v2fly/v2ray-core/v4/common/protocol/udp"
"github.com/v2fly/v2ray-core/v4/common/session"
"github.com/v2fly/v2ray-core/v4/common/signal"
"github.com/v2fly/v2ray-core/v4/common/task"
"github.com/v2fly/v2ray-core/v4/features"
"github.com/v2fly/v2ray-core/v4/features/policy"
"github.com/v2fly/v2ray-core/v4/features/routing"
"github.com/v2fly/v2ray-core/v4/transport/internet"
"github.com/v2fly/v2ray-core/v4/transport/internet/udp"
2015-09-09 12:13:52 +02:00
)
2016-04-26 00:33:16 +02:00
// Server is a SOCKS 5 proxy server
type Server struct {
2018-10-18 09:25:58 +02:00
config *ServerConfig
policyManager policy.Manager
2015-09-11 00:24:18 +02:00
}
2016-04-26 00:33:16 +02:00
// NewServer creates a new Server object.
func NewServer(ctx context.Context, config *ServerConfig) (*Server, error) {
2018-10-18 09:25:58 +02:00
v := core.MustFromContext(ctx)
2016-07-23 11:09:49 +02:00
s := &Server{
2018-10-18 09:25:58 +02:00
config: config,
2018-10-21 10:27:13 +02:00
policyManager: v.GetFeature(policy.ManagerType()).(policy.Manager),
2015-09-16 22:27:36 +08:00
}
return s, nil
2015-09-07 14:49:40 +02:00
}
2018-10-11 22:34:31 +02:00
func (s *Server) policy() policy.Session {
config := s.config
2018-10-18 09:25:58 +02:00
p := s.policyManager.ForLevel(config.UserLevel)
2018-09-21 16:54:06 +02:00
if config.Timeout > 0 {
2018-10-13 15:15:49 +02:00
features.PrintDeprecatedFeatureWarning("Socks timeout")
2018-09-21 16:54:06 +02:00
}
if config.Timeout > 0 && config.UserLevel == 0 {
p.Timeouts.ConnectionIdle = time.Duration(config.Timeout) * time.Second
}
return p
}
2018-02-23 17:14:20 +01:00
// Network implements proxy.Inbound.
2018-11-20 16:58:26 +01:00
func (s *Server) Network() []net.Network {
list := []net.Network{net.Network_TCP}
if s.config.UdpEnabled {
2018-11-20 16:58:26 +01:00
list = append(list, net.Network_UDP)
2017-01-15 00:57:06 +01:00
}
return list
}
2018-02-23 17:14:20 +01:00
// Process implements proxy.Inbound.
func (s *Server) Process(ctx context.Context, network net.Network, conn internet.Connection, dispatcher routing.Dispatcher) error {
2019-02-15 00:28:26 +01: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:
2017-04-09 01:43:25 +02:00
return newError("unknown network: ", network)
}
}
func (s *Server) processTCP(ctx context.Context, conn internet.Connection, dispatcher routing.Dispatcher) error {
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))
2018-02-23 17:14:20 +01:00
}
inbound := session.InboundFromContext(ctx)
if inbound == nil || !inbound.Gateway.IsValid() {
return newError("inbound gateway not specified")
2017-02-09 22:49:38 +01:00
}
svrSession := &ServerSession{
config: s.config,
address: inbound.Gateway.Address,
port: inbound.Gateway.Port,
clientAddress: inbound.Source.Address,
2015-09-09 12:13:52 +02:00
}
reader := &buf.BufferedReader{Reader: buf.NewReader(conn)}
request, err := svrSession.Handshake(reader, conn)
2015-10-03 21:42:03 +02:00
if err != nil {
if inbound != nil && inbound.Source.IsValid() {
2017-12-19 21:28:12 +01:00
log.Record(&log.AccessMessage{
From: inbound.Source,
2017-12-19 21:28:12 +01:00
To: "",
Status: log.AccessRejected,
Reason: err,
})
2017-02-09 22:49:38 +01:00
}
2017-04-18 22:35:13 +02:00
return newError("failed to read request").Base(err)
2015-10-04 00:21:06 +02:00
}
if request.User != nil {
inbound.User.Email = request.User.Email
}
2018-02-23 17:14:20 +01:00
if err := conn.SetReadDeadline(time.Time{}); err != nil {
newError("failed to clear deadline").Base(err).WriteToLog(session.ExportIDToError(ctx))
2018-02-23 17:14:20 +01:00
}
2015-10-04 00:21:06 +02:00
2017-01-07 21:57:24 +01:00
if request.Command == protocol.RequestCommandTCP {
2017-01-04 00:43:13 +01:00
dest := request.Destination()
newError("TCP Connect request to ", dest).WriteToLog(session.ExportIDToError(ctx))
if inbound != nil && inbound.Source.IsValid() {
2019-06-12 13:04:34 +08:00
ctx = log.ContextWithAccessMessage(ctx, &log.AccessMessage{
From: inbound.Source,
2017-12-19 21:28:12 +01:00
To: dest,
Status: log.AccessAccepted,
Reason: "",
})
2017-02-09 22:49:38 +01:00
}
2015-10-04 00:21:06 +02:00
return s.transport(ctx, reader, conn, dest, dispatcher)
2015-10-03 21:42:03 +02:00
}
2017-01-07 21:57:24 +01:00
if request.Command == protocol.RequestCommandUDP {
return s.handleUDP(conn)
2016-08-14 17:08:01 +02:00
}
return nil
2015-10-03 21:42:03 +02:00
}
2018-02-23 17:14:20 +01:00
func (*Server) handleUDP(c io.Reader) error {
// The TCP connection closes after this method returns. We need to wait until
2015-10-06 17:24:57 +02:00
// the client closes it.
2018-04-11 16:15:29 +02:00
return common.Error2(io.Copy(buf.DiscardBytes, c))
2015-10-04 00:21:06 +02:00
}
func (s *Server) transport(ctx context.Context, reader io.Reader, writer io.Writer, dest net.Destination, dispatcher routing.Dispatcher) error {
2017-11-15 00:36:14 +01:00
ctx, cancel := context.WithCancel(ctx)
2018-02-23 17:14:20 +01:00
timer := signal.CancelAfterInactivity(ctx, cancel, s.policy().Timeouts.ConnectionIdle)
2017-01-31 12:42:05 +01:00
2018-05-25 12:08:28 +02:00
plcy := s.policy()
2018-10-11 22:34:31 +02:00
ctx = policy.ContextWithBufferPolicy(ctx, plcy.Buffer)
2018-04-17 00:31:10 +02:00
link, err := dispatcher.Dispatch(ctx, dest)
if err != nil {
return err
}
2018-04-11 16:45:09 +02:00
requestDone := func() error {
2018-05-25 12:08:28 +02:00
defer timer.SetTimeout(plcy.Timeouts.DownlinkOnly)
if err := buf.Copy(buf.NewReader(reader), link.Writer, buf.UpdateActivity(timer)); err != nil {
2017-04-09 01:43:25 +02:00
return newError("failed to transport all TCP request").Base(err)
2016-12-30 00:32:20 +01:00
}
2018-02-23 17:07:45 +01:00
2016-12-30 00:32:20 +01:00
return nil
2018-04-11 16:45:09 +02:00
}
2016-12-30 00:32:20 +01:00
2018-04-11 16:45:09 +02:00
responseDone := func() error {
2018-05-25 12:08:28 +02:00
defer timer.SetTimeout(plcy.Timeouts.UplinkOnly)
2018-02-23 17:07:45 +01:00
2016-12-30 00:32:20 +01:00
v2writer := buf.NewWriter(writer)
2018-04-17 00:31:10 +02:00
if err := buf.Copy(link.Reader, v2writer, buf.UpdateActivity(timer)); err != nil {
2017-04-09 01:43:25 +02:00
return newError("failed to transport all TCP response").Base(err)
2016-11-22 00:17:49 +01:00
}
2018-02-23 17:07:45 +01:00
2016-12-30 00:32:20 +01:00
return nil
2018-04-11 16:45:09 +02:00
}
2021-05-20 05:28:52 +08:00
requestDonePost := task.OnSuccess(requestDone, task.Close(link.Writer))
2018-12-06 11:35:02 +01:00
if err := task.Run(ctx, requestDonePost, responseDone); err != nil {
2018-12-31 21:25:10 +01:00
common.Interrupt(link.Reader)
common.Interrupt(link.Writer)
2017-04-09 01:43:25 +02:00
return newError("connection ends").Base(err)
}
return nil
}
func (s *Server) handleUDPPayload(ctx context.Context, conn internet.Connection, dispatcher routing.Dispatcher) error {
2019-01-05 21:43:22 +01: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
}
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())
})
if inbound := session.InboundFromContext(ctx); inbound != nil && inbound.Source.IsValid() {
newError("client UDP connection from ", inbound.Source).WriteToLog(session.ExportIDToError(ctx))
2017-02-09 22:49:38 +01:00
}
2019-02-07 19:14:37 +01:00
reader := buf.NewPacketReader(conn)
for {
2017-11-09 22:33:15 +01:00
mpayload, err := reader.ReadMultiBuffer()
if err != nil {
return err
}
2017-04-15 21:07:23 +02:00
for _, payload := range mpayload {
2018-02-23 23:42:01 +01:00
request, err := DecodeUDPPacket(payload)
2017-04-15 21:07:23 +02:00
if err != nil {
newError("failed to parse UDP request").Base(err).WriteToLog(session.ExportIDToError(ctx))
2018-02-23 23:42:01 +01:00
payload.Release()
2017-04-15 21:07:23 +02:00
continue
}
2018-02-23 23:42:01 +01:00
if payload.IsEmpty() {
payload.Release()
2017-04-15 21:07:23 +02:00
continue
}
2020-06-18 12:01:37 +08:00
currentPacketCtx := ctx
newError("send packet to ", request.Destination(), " with ", payload.Len(), " bytes").AtDebug().WriteToLog(session.ExportIDToError(ctx))
if inbound := session.InboundFromContext(ctx); inbound != nil && inbound.Source.IsValid() {
2020-06-18 12:01:37 +08:00
currentPacketCtx = log.ContextWithAccessMessage(ctx, &log.AccessMessage{
From: inbound.Source,
2018-05-26 01:55:50 +02:00
To: request.Destination(),
2017-12-19 21:28:12 +01:00
Status: log.AccessAccepted,
Reason: "",
})
2017-04-15 21:07:23 +02:00
}
2020-06-18 12:01:37 +08:00
currentPacketCtx = protocol.ContextWithRequestHeader(currentPacketCtx, request)
udpServer.Dispatch(currentPacketCtx, request.Destination(), payload)
2017-04-15 21:07:23 +02:00
}
2016-11-22 00:17:49 +01:00
}
2015-09-11 00:24:18 +02:00
}
2016-04-26 00:35:42 +02:00
func init() {
common.Must(common.RegisterConfig((*ServerConfig)(nil), func(ctx context.Context, config interface{}) (interface{}, error) {
return NewServer(ctx, config.(*ServerConfig))
}))
2016-06-14 22:54:08 +02:00
}