1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-27 22:36:12 -04:00
v2fly/proxy/socks/server.go

202 lines
5.2 KiB
Go
Raw Normal View History

package socks
2015-09-07 08:49:40 -04:00
import (
"context"
2015-09-15 18:06:22 -04:00
"io"
2017-01-31 06:42:05 -05:00
"runtime"
2015-10-06 11:24:57 -04:00
"time"
2015-09-09 06:13:52 -04:00
2016-08-20 14:55:45 -04:00
"v2ray.com/core/app"
"v2ray.com/core/app/dispatcher"
"v2ray.com/core/common"
2016-12-09 07:17:34 -05:00
"v2ray.com/core/common/buf"
"v2ray.com/core/common/bufio"
2016-12-04 03:10:47 -05:00
"v2ray.com/core/common/errors"
2016-08-20 14:55:45 -04: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"
2016-12-29 18:32:20 -05:00
"v2ray.com/core/common/signal"
2016-08-20 14:55:45 -04:00
"v2ray.com/core/proxy"
"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 {
2017-01-13 07:53:44 -05:00
packetDispatcher dispatcher.Interface
2016-08-28 17:46:50 -04:00
config *ServerConfig
2017-01-27 08:45:16 -05:00
udpServer *udp.Dispatcher
2015-09-10 18:24:18 -04:00
}
2016-04-25 18:33:16 -04:00
// NewServer creates a new Server object.
func NewServer(ctx context.Context, config *ServerConfig) (*Server, error) {
space := app.SpaceFromContext(ctx)
if space == nil {
return nil, errors.New("Socks|Server: No space in context.")
}
2016-07-23 05:09:49 -04:00
s := &Server{
config: config,
2015-09-16 10:27:36 -04:00
}
2017-01-06 09:32:36 -05:00
space.OnInitialize(func() error {
s.packetDispatcher = dispatcher.FromSpace(space)
if s.packetDispatcher == nil {
2016-11-21 15:13:01 -05:00
return errors.New("Socks|Server: Dispatcher is not found in the space.")
2016-07-23 05:09:49 -04:00
}
2017-01-27 08:45:16 -05:00
s.udpServer = udp.NewDispatcher(s.packetDispatcher)
2016-07-23 05:09:49 -04:00
return nil
})
return s, nil
2015-09-07 08:49:40 -04:00
}
func (s *Server) Network() net.NetworkList {
2017-01-14 18:57:06 -05:00
list := net.NetworkList{
Network: []net.Network{net.Network_TCP},
}
if s.config.UdpEnabled {
2017-01-14 18:57:06 -05:00
list.Network = append(list.Network, net.Network_UDP)
}
return list
}
func (s *Server) Process(ctx context.Context, network net.Network, conn internet.Connection) error {
2017-01-28 16:31:21 -05:00
conn.SetReusable(false)
switch network {
case net.Network_TCP:
return s.processTCP(ctx, conn)
case net.Network_UDP:
return s.handleUDPPayload(ctx, conn)
default:
return errors.New("Socks|Server: Unknown network: ", network)
}
}
func (s *Server) processTCP(ctx context.Context, conn internet.Connection) error {
timedReader := net.NewTimeOutReader(16 /* seconds, for handshake */, conn)
2016-12-09 07:17:34 -05:00
reader := bufio.NewReader(timedReader)
inboundDest := proxy.InboundDestinationFromContext(ctx)
2017-01-03 18:43:13 -05:00
session := &ServerSession{
config: s.config,
port: inboundDest.Port,
2015-09-09 06:13:52 -04:00
}
source := proxy.SourceFromContext(ctx)
request, err := session.Handshake(reader, conn)
2015-10-03 15:42:03 -04:00
if err != nil {
log.Access(source, "", log.AccessRejected, err)
2017-01-03 18:43:13 -05:00
log.Info("Socks|Server: Failed to read request: ", err)
return err
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()
log.Info("Socks|Server: TCP Connect request to ", dest)
log.Access(source, dest, log.AccessAccepted, "")
2015-10-03 18:21:06 -04:00
timedReader.SetTimeOut(s.config.Timeout)
ctx = proxy.ContextWithDestination(ctx, dest)
return s.transport(ctx, reader, conn)
2015-10-03 15:42:03 -04:00
}
2017-01-07 15:57:24 -05:00
if request.Command == protocol.RequestCommandUDP {
return s.handleUDP()
2016-08-14 11:08:01 -04:00
}
return nil
2015-10-03 15:42:03 -04:00
}
func (*Server) handleUDP() error {
2016-11-27 15:39:09 -05:00
// The TCP connection closes after v method returns. We need to wait until
2015-10-06 11:24:57 -04:00
// the client closes it.
// TODO: get notified from UDP part
2015-10-06 05:57:26 -04:00
<-time.After(5 * time.Minute)
return nil
2015-10-03 18:21:06 -04:00
}
func (v *Server) transport(ctx context.Context, reader io.Reader, writer io.Writer) error {
2017-01-31 06:42:05 -05:00
ctx, cancel := context.WithCancel(ctx)
timer := signal.CancelAfterInactivity(ctx, cancel, time.Minute*2)
ray := v.packetDispatcher.DispatchToOutbound(ctx)
2015-09-10 18:24:18 -04:00
input := ray.InboundInput()
output := ray.InboundOutput()
2016-12-29 18:32:20 -05:00
requestDone := signal.ExecuteAsync(func() error {
defer input.Close()
2015-09-09 06:13:52 -04:00
2016-12-09 07:17:34 -05:00
v2reader := buf.NewReader(reader)
2017-01-31 06:42:05 -05:00
if err := buf.PipeUntilEOF(timer, v2reader, input); err != nil {
2016-11-21 18:17:49 -05:00
log.Info("Socks|Server: Failed to transport all TCP request: ", err)
2016-12-29 18:32:20 -05:00
return err
}
return nil
})
responseDone := signal.ExecuteAsync(func() error {
v2writer := buf.NewWriter(writer)
2017-01-31 06:42:05 -05:00
if err := buf.PipeUntilEOF(timer, output, v2writer); err != nil {
2016-12-29 18:32:20 -05:00
log.Info("Socks|Server: Failed to transport all TCP response: ", err)
return err
2016-11-21 18:17:49 -05:00
}
2016-12-29 18:32:20 -05:00
return nil
})
if err := signal.ErrorOrFinish2(ctx, requestDone, responseDone); err != nil {
2016-12-29 18:32:20 -05:00
log.Info("Socks|Server: Connection ends with ", err)
2017-01-10 08:22:42 -05:00
input.CloseError()
output.CloseError()
return err
}
2017-01-31 06:42:05 -05:00
runtime.KeepAlive(timer)
return nil
}
func (v *Server) handleUDPPayload(ctx context.Context, conn internet.Connection) error {
source := proxy.SourceFromContext(ctx)
log.Info("Socks|Server: Client UDP connection from ", source)
reader := buf.NewReader(conn)
for {
payload, err := reader.Read()
if err != nil {
return err
}
request, data, err := DecodeUDPPacket(payload.Bytes())
if err != nil {
log.Info("Socks|Server: Failed to parse UDP request: ", err)
continue
}
if len(data) == 0 {
continue
}
log.Info("Socks: Send packet to ", request.Destination(), " with ", len(data), " bytes")
log.Access(source, request.Destination, log.AccessAccepted, "")
dataBuf := buf.NewSmall()
dataBuf.Append(data)
v.udpServer.Dispatch(ctx, request.Destination(), dataBuf, func(payload *buf.Buffer) {
defer payload.Release()
log.Info("Socks|Server: Writing back UDP response with ", payload.Len(), " bytes")
udpMessage := EncodeUDPPacket(request, payload.Bytes())
defer udpMessage.Release()
conn.Write(udpMessage.Bytes())
})
2016-11-21 18:17:49 -05:00
}
2015-09-10 18:24:18 -04:00
}
2016-04-25 18:35:42 -04: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
}