1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-10 18:00:43 +00:00
v2fly/proxy/socks/server.go

209 lines
5.0 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-09-23 12:14:53 +00:00
"sync"
2015-10-06 15:24:57 +00:00
"time"
2015-09-09 10:13:52 +00:00
2016-08-20 18:55:45 +00:00
"v2ray.com/core/app"
"v2ray.com/core/app/dispatcher"
"v2ray.com/core/common"
2016-12-09 12:17:34 +00:00
"v2ray.com/core/common/buf"
"v2ray.com/core/common/bufio"
2016-12-04 08:10:47 +00:00
"v2ray.com/core/common/errors"
2016-08-20 18:55:45 +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"
2016-12-29 23:32:20 +00:00
"v2ray.com/core/common/signal"
2016-08-20 18:55:45 +00:00
"v2ray.com/core/proxy"
"v2ray.com/core/transport/internet"
"v2ray.com/core/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 {
2016-01-31 16:01:28 +00:00
tcpMutex sync.RWMutex
udpMutex sync.RWMutex
accepting bool
2017-01-13 12:53:44 +00:00
packetDispatcher dispatcher.Interface
2016-08-28 21:46:50 +00:00
config *ServerConfig
2016-06-14 20:54:08 +00:00
tcpListener *internet.TCPHub
2016-12-21 14:48:39 +00:00
udpHub *udp.Hub
2017-01-13 22:42:39 +00:00
udpAddress net.Destination
2016-12-21 14:37:16 +00:00
udpServer *udp.Server
2016-06-04 12:25:13 +00:00
meta *proxy.InboundHandlerMeta
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) {
space := app.SpaceFromContext(ctx)
if space == nil {
return nil, errors.New("Socks|Server: No space in context.")
}
meta := proxy.InboundMetaFromContext(ctx)
if meta == nil {
return nil, errors.New("Socks|Server: No inbound meta in context.")
}
2016-07-23 09:09:49 +00:00
s := &Server{
config: config,
meta: meta,
2015-09-16 14:27:36 +00:00
}
2017-01-06 14:32:36 +00:00
space.OnInitialize(func() error {
s.packetDispatcher = dispatcher.FromSpace(space)
if s.packetDispatcher == nil {
2016-11-21 20:13:01 +00:00
return errors.New("Socks|Server: Dispatcher is not found in the space.")
2016-07-23 09:09:49 +00:00
}
return nil
})
return s, nil
2015-09-07 12:49:40 +00:00
}
2017-01-14 23:57:06 +00:00
func (v *Server) Network() net.NetworkList {
list := net.NetworkList{
Network: []net.Network{net.Network_TCP},
}
if v.config.UdpEnabled {
list.Network = append(list.Network, net.Network_UDP)
}
return list
}
2016-02-06 17:01:27 +00:00
// Port implements InboundHandler.Port().
2017-01-13 22:42:39 +00:00
func (v *Server) Port() net.Port {
2016-11-27 20:39:09 +00:00
return v.meta.Port
2016-01-19 22:41:40 +00:00
}
2016-02-06 17:01:27 +00:00
// Close implements InboundHandler.Close().
2016-11-27 20:39:09 +00:00
func (v *Server) Close() {
v.accepting = false
if v.tcpListener != nil {
v.tcpMutex.Lock()
v.tcpListener.Close()
v.tcpListener = nil
v.tcpMutex.Unlock()
}
2016-11-27 20:39:09 +00:00
if v.udpHub != nil {
v.udpMutex.Lock()
v.udpHub.Close()
v.udpHub = nil
v.udpMutex.Unlock()
}
}
2017-01-03 23:43:13 +00:00
// Start implements InboundHandler.Start().
2016-11-27 20:39:09 +00:00
func (v *Server) Start() error {
if v.accepting {
2016-06-03 22:38:22 +00:00
return nil
2016-01-19 22:41:40 +00:00
}
2016-06-14 20:54:08 +00:00
listener, err := internet.ListenTCP(
2016-11-27 20:39:09 +00:00
v.meta.Address,
v.meta.Port,
v.handleConnection,
v.meta.StreamSettings)
2015-09-07 12:49:40 +00:00
if err != nil {
2016-11-27 20:39:09 +00:00
log.Error("Socks: failed to listen on ", v.meta.Address, ":", v.meta.Port, ": ", err)
2015-09-12 18:36:21 +00:00
return err
2015-09-07 12:49:40 +00:00
}
2016-11-27 20:39:09 +00:00
v.accepting = true
v.tcpMutex.Lock()
v.tcpListener = listener
v.tcpMutex.Unlock()
if v.config.UdpEnabled {
2017-01-08 23:14:44 +00:00
if err := v.listenUDP(); err != nil {
return err
}
2015-10-03 19:42:03 +00:00
}
2015-09-07 12:49:40 +00:00
return nil
}
2016-11-27 20:39:09 +00:00
func (v *Server) handleConnection(connection internet.Connection) {
2015-09-09 10:13:52 +00:00
defer connection.Close()
2015-09-15 22:06:22 +00:00
2017-01-03 13:53:59 +00:00
connection.SetReusable(false)
2017-01-13 22:42:39 +00:00
timedReader := net.NewTimeOutReader(16 /* seconds, for handshake */, connection)
2016-12-09 12:17:34 +00:00
reader := bufio.NewReader(timedReader)
2017-01-03 23:43:13 +00:00
session := &ServerSession{
config: v.config,
meta: v.meta,
2015-09-09 10:13:52 +00:00
}
2017-01-13 22:42:39 +00:00
clientAddr := net.DestinationFromAddr(connection.RemoteAddr())
2015-09-09 10:13:52 +00:00
2017-01-03 23:43:13 +00:00
request, err := session.Handshake(reader, connection)
2015-10-03 19:42:03 +00:00
if err != nil {
2017-01-03 23:43:13 +00:00
log.Access(clientAddr, "", log.AccessRejected, err)
log.Info("Socks|Server: Failed to read request: ", err)
return
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()
session := &proxy.SessionInfo{
Source: clientAddr,
Destination: dest,
Inbound: v.meta,
}
2017-01-03 23:43:13 +00:00
log.Info("Socks|Server: TCP Connect request to ", dest)
log.Access(clientAddr, dest, log.AccessAccepted, "")
2015-10-03 22:21:06 +00:00
2017-01-08 22:15:29 +00:00
timedReader.SetTimeOut(v.config.Timeout)
2017-01-03 23:43:13 +00:00
v.transport(reader, connection, session)
return
2015-10-03 19:42:03 +00:00
}
2017-01-07 20:57:24 +00:00
if request.Command == protocol.RequestCommandUDP {
2017-01-03 23:43:13 +00:00
v.handleUDP()
return
2016-08-14 15:08:01 +00:00
}
2015-10-03 19:42:03 +00:00
}
2017-01-08 23:14:44 +00:00
func (v *Server) handleUDP() {
2016-11-27 20:39:09 +00:00
// The TCP connection closes after v method returns. We need to wait until
2015-10-06 15:24:57 +00:00
// the client closes it.
// TODO: get notified from UDP part
2015-10-06 09:57:26 +00:00
<-time.After(5 * time.Minute)
2015-10-03 22:21:06 +00:00
}
2016-11-27 20:39:09 +00:00
func (v *Server) transport(reader io.Reader, writer io.Writer, session *proxy.SessionInfo) {
ray := v.packetDispatcher.DispatchToOutbound(session)
2015-09-10 22:24:18 +00:00
input := ray.InboundInput()
output := ray.InboundOutput()
2016-12-29 23:32:20 +00:00
requestDone := signal.ExecuteAsync(func() error {
defer input.Close()
2015-09-09 10:13:52 +00:00
2016-12-09 12:17:34 +00:00
v2reader := buf.NewReader(reader)
if err := buf.PipeUntilEOF(v2reader, input); err != nil {
2016-11-21 23:17:49 +00:00
log.Info("Socks|Server: Failed to transport all TCP request: ", err)
2016-12-29 23:32:20 +00:00
return err
}
return nil
})
responseDone := signal.ExecuteAsync(func() error {
v2writer := buf.NewWriter(writer)
if err := buf.PipeUntilEOF(output, v2writer); err != nil {
log.Info("Socks|Server: Failed to transport all TCP response: ", err)
return err
2016-11-21 23:17:49 +00:00
}
2016-12-29 23:32:20 +00:00
return nil
2015-09-10 22:24:18 +00:00
2016-12-29 23:32:20 +00:00
})
2016-12-29 23:32:20 +00:00
if err := signal.ErrorOrFinish2(requestDone, responseDone); err != nil {
log.Info("Socks|Server: Connection ends with ", err)
2017-01-10 13:22:42 +00:00
input.CloseError()
output.CloseError()
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
}