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