v2fly/proxy/socks/server.go

255 lines
7.6 KiB
Go
Raw Normal View History

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