v2fly/proxy/socks/server.go

237 lines
6.5 KiB
Go
Raw Normal View History

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
"v2ray.com/core"
"v2ray.com/core/common"
2016-12-09 12:17:34 +00:00
"v2ray.com/core/common/buf"
2017-12-19 20:28:12 +00:00
"v2ray.com/core/common/log"
2017-01-13 22:42:39 +00:00
"v2ray.com/core/common/net"
2017-01-07 20:57:24 +00:00
"v2ray.com/core/common/protocol"
"v2ray.com/core/common/session"
2016-12-29 23:32:20 +00:00
"v2ray.com/core/common/signal"
"v2ray.com/core/common/task"
2016-08-20 18:55:45 +00:00
"v2ray.com/core/proxy"
"v2ray.com/core/transport/internet"
"v2ray.com/core/transport/internet/udp"
2018-04-16 22:31:10 +00:00
"v2ray.com/core/transport/pipe"
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 {
config *ServerConfig
v *core.Instance
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) {
2016-07-23 09:09:49 +00:00
s := &Server{
config: config,
2018-02-21 16:05:29 +00:00
v: core.MustFromContext(ctx),
2015-09-16 14:27:36 +00:00
}
return s, nil
2015-09-07 12:49:40 +00:00
}
func (s *Server) policy() core.Policy {
config := s.config
p := s.v.PolicyManager().ForLevel(config.UserLevel)
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.
func (s *Server) Network() net.NetworkList {
2017-01-14 23:57:06 +00:00
list := net.NetworkList{
Network: []net.Network{net.Network_TCP},
}
if s.config.UdpEnabled {
2017-01-14 23:57:06 +00:00
list.Network = append(list.Network, net.Network_UDP)
}
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 core.Dispatcher) error {
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 core.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
}
2017-02-09 21:49:38 +00:00
inboundDest, ok := proxy.InboundEntryPointFromContext(ctx)
if !ok {
2017-04-08 23:43:25 +00:00
return newError("inbound entry point not specified")
2017-02-09 21:49:38 +00:00
}
svrSession := &ServerSession{
config: s.config,
port: inboundDest.Port,
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 {
2017-02-09 21:49:38 +00:00
if source, ok := proxy.SourceFromContext(ctx); ok {
2017-12-19 20:28:12 +00:00
log.Record(&log.AccessMessage{
From: source,
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
}
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))
2017-02-09 21:49:38 +00:00
if source, ok := proxy.SourceFromContext(ctx); ok {
2017-12-19 20:28:12 +00:00
log.Record(&log.AccessMessage{
From: source,
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
}
2018-02-23 16:14:20 +00:00
func (s *Server) transport(ctx context.Context, reader io.Reader, writer io.Writer, dest net.Destination, dispatcher core.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()
ctx = core.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
}
2018-05-27 11:02:29 +00:00
var requestDonePost = task.Single(requestDone, task.OnSuccess(task.Close(link.Writer)))
if err := task.Run(task.WithContext(ctx), task.Parallel(requestDonePost, responseDone))(); err != nil {
2018-04-16 22:31:10 +00:00
pipe.CloseError(link.Reader)
pipe.CloseError(link.Writer)
2017-04-08 23:43:25 +00:00
return newError("connection ends").Base(err)
}
return nil
}
2018-02-23 16:14:20 +00:00
func (s *Server) handleUDPPayload(ctx context.Context, conn internet.Connection, dispatcher core.Dispatcher) error {
udpServer := udp.NewDispatcher(dispatcher, func(ctx context.Context, payload *buf.Buffer) {
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-09 21:49:38 +00:00
if source, ok := proxy.SourceFromContext(ctx); ok {
newError("client UDP connection from ", source).WriteToLog(session.ExportIDToError(ctx))
2017-02-09 21:49:38 +00:00
}
reader := buf.NewReader(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
}
newError("send packet to ", request.Destination(), " with ", payload.Len(), " bytes").AtDebug().WriteToLog(session.ExportIDToError(ctx))
2017-04-15 19:07:23 +00:00
if source, ok := proxy.SourceFromContext(ctx); ok {
2017-12-19 20:28:12 +00:00
log.Record(&log.AccessMessage{
From: 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
}
ctx = protocol.ContextWithRequestHeader(ctx, request)
udpServer.Dispatch(ctx, 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
}