2019-02-01 20:08:21 +01:00
|
|
|
// +build !confonly
|
|
|
|
|
2015-09-08 13:18:55 +02:00
|
|
|
package socks
|
2015-09-07 14:49:40 +02:00
|
|
|
|
|
|
|
import (
|
2017-01-13 00:56:21 +01:00
|
|
|
"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
|
|
|
|
2018-01-10 12:22:37 +01:00
|
|
|
"v2ray.com/core"
|
2017-01-13 00:56:21 +01:00
|
|
|
"v2ray.com/core/common"
|
2016-12-09 13:17:34 +01:00
|
|
|
"v2ray.com/core/common/buf"
|
2017-12-19 21:28:12 +01:00
|
|
|
"v2ray.com/core/common/log"
|
2017-01-13 23:42:39 +01:00
|
|
|
"v2ray.com/core/common/net"
|
2017-01-07 21:57:24 +01:00
|
|
|
"v2ray.com/core/common/protocol"
|
2019-01-05 21:43:22 +01:00
|
|
|
udp_proto "v2ray.com/core/common/protocol/udp"
|
2018-06-25 01:09:02 +02:00
|
|
|
"v2ray.com/core/common/session"
|
2016-12-30 00:32:20 +01:00
|
|
|
"v2ray.com/core/common/signal"
|
2018-06-25 01:09:02 +02:00
|
|
|
"v2ray.com/core/common/task"
|
2018-10-13 15:15:49 +02:00
|
|
|
"v2ray.com/core/features"
|
2018-10-11 22:34:31 +02:00
|
|
|
"v2ray.com/core/features/policy"
|
2018-10-11 20:43:37 +02:00
|
|
|
"v2ray.com/core/features/routing"
|
2016-08-20 20:55:45 +02:00
|
|
|
"v2ray.com/core/transport/internet"
|
|
|
|
"v2ray.com/core/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.
|
2017-01-13 00:56:21 +01:00
|
|
|
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
|
|
|
}
|
2017-01-13 00:56:21 +01: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 {
|
2018-01-10 12:22:37 +01:00
|
|
|
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
|
|
|
}
|
2018-01-10 12:22:37 +01: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}
|
2017-01-26 20:46:44 +01:00
|
|
|
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.
|
2018-10-11 20:43:37 +02:00
|
|
|
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,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-01-26 20:46:44 +01:00
|
|
|
switch network {
|
|
|
|
case net.Network_TCP:
|
2017-02-03 22:35:09 +01:00
|
|
|
return s.processTCP(ctx, conn, dispatcher)
|
2017-01-26 20:46:44 +01:00
|
|
|
case net.Network_UDP:
|
2017-02-03 22:35:09 +01:00
|
|
|
return s.handleUDPPayload(ctx, conn, dispatcher)
|
2017-01-26 20:46:44 +01:00
|
|
|
default:
|
2017-04-09 01:43:25 +02:00
|
|
|
return newError("unknown network: ", network)
|
2016-01-03 23:30:37 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-11 20:43:37 +02:00
|
|
|
func (s *Server) processTCP(ctx context.Context, conn internet.Connection, dispatcher routing.Dispatcher) error {
|
2018-07-31 16:05:57 +02:00
|
|
|
plcy := s.policy()
|
|
|
|
if err := conn.SetReadDeadline(time.Now().Add(plcy.Timeouts.Handshake)); err != nil {
|
2018-06-25 01:09:02 +02:00
|
|
|
newError("failed to set deadline").Base(err).WriteToLog(session.ExportIDToError(ctx))
|
2018-02-23 17:14:20 +01:00
|
|
|
}
|
|
|
|
|
2018-09-18 23:09:54 +02: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
|
|
|
}
|
2018-09-18 23:09:54 +02:00
|
|
|
|
2018-06-25 01:09:02 +02:00
|
|
|
svrSession := &ServerSession{
|
2017-01-26 20:46:44 +01:00
|
|
|
config: s.config,
|
2018-09-18 23:09:54 +02:00
|
|
|
port: inbound.Gateway.Port,
|
2015-09-09 12:13:52 +02:00
|
|
|
}
|
|
|
|
|
2018-08-17 20:54:25 +02:00
|
|
|
reader := &buf.BufferedReader{Reader: buf.NewReader(conn)}
|
2018-06-25 01:09:02 +02:00
|
|
|
request, err := svrSession.Handshake(reader, conn)
|
2015-10-03 21:42:03 +02:00
|
|
|
if err != nil {
|
2018-09-18 23:09:54 +02:00
|
|
|
if inbound != nil && inbound.Source.IsValid() {
|
2017-12-19 21:28:12 +01:00
|
|
|
log.Record(&log.AccessMessage{
|
2018-09-18 23:09:54 +02:00
|
|
|
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
|
|
|
}
|
2019-12-17 11:59:18 +08: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 {
|
2018-06-25 01:09:02 +02:00
|
|
|
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()
|
2018-06-25 01:09:02 +02:00
|
|
|
newError("TCP Connect request to ", dest).WriteToLog(session.ExportIDToError(ctx))
|
2018-09-18 23:09:54 +02:00
|
|
|
if inbound != nil && inbound.Source.IsValid() {
|
2019-06-12 13:04:34 +08:00
|
|
|
ctx = log.ContextWithAccessMessage(ctx, &log.AccessMessage{
|
2018-09-18 23:09:54 +02:00
|
|
|
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
|
|
|
|
2017-02-03 22:35:09 +01: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 {
|
2017-11-04 20:50:17 +01:00
|
|
|
return s.handleUDP(conn)
|
2016-08-14 17:08:01 +02:00
|
|
|
}
|
2017-01-26 20:46:44 +01: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 {
|
2017-11-04 20:50:17 +01:00
|
|
|
// 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
|
|
|
}
|
|
|
|
|
2018-10-11 20:43:37 +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)
|
2017-02-03 22:35:09 +01:00
|
|
|
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)
|
2018-07-31 16:05:57 +02:00
|
|
|
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
|
|
|
}
|
2016-04-18 19:01:24 +02:00
|
|
|
|
2018-12-06 11:35:02 +01:00
|
|
|
var requestDonePost = task.OnSuccess(requestDone, task.Close(link.Writer))
|
|
|
|
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)
|
2017-01-26 20:46:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2018-10-11 20:43:37 +02:00
|
|
|
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
|
2018-07-03 21:38:02 +02:00
|
|
|
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))
|
|
|
|
}
|
|
|
|
|
2020-10-11 19:22:46 +08:00
|
|
|
conn.Write(udpMessage.Bytes())
|
2018-07-03 21:38:02 +02:00
|
|
|
})
|
2017-02-03 22:35:09 +01:00
|
|
|
|
2018-09-18 23:09:54 +02:00
|
|
|
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
|
|
|
}
|
2017-01-26 20:46:44 +01:00
|
|
|
|
2019-02-07 19:14:37 +01:00
|
|
|
reader := buf.NewPacketReader(conn)
|
2017-01-26 20:46:44 +01:00
|
|
|
for {
|
2017-11-09 22:33:15 +01:00
|
|
|
mpayload, err := reader.ReadMultiBuffer()
|
2017-01-26 20:46:44 +01:00
|
|
|
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-01-26 20:46:44 +01:00
|
|
|
|
2017-04-15 21:07:23 +02:00
|
|
|
if err != nil {
|
2018-06-25 01:09:02 +02:00
|
|
|
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
|
|
|
|
}
|
2017-01-26 20:46:44 +01:00
|
|
|
|
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
|
2018-06-25 01:09:02 +02:00
|
|
|
newError("send packet to ", request.Destination(), " with ", payload.Len(), " bytes").AtDebug().WriteToLog(session.ExportIDToError(ctx))
|
2018-09-18 23:09:54 +02:00
|
|
|
if inbound := session.InboundFromContext(ctx); inbound != nil && inbound.Source.IsValid() {
|
2020-06-18 12:01:37 +08:00
|
|
|
currentPacketCtx = log.ContextWithAccessMessage(ctx, &log.AccessMessage{
|
2018-09-18 23:09:54 +02:00
|
|
|
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
|
|
|
}
|
2017-01-26 20:46:44 +01: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
|
|
|
|
2017-01-13 00:56:21 +01: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
|
|
|
}
|