2016-01-27 11:46:40 +00:00
|
|
|
package shadowsocks
|
|
|
|
|
|
|
|
import (
|
2017-01-12 23:56:21 +00:00
|
|
|
"context"
|
2017-02-03 21:35:09 +00:00
|
|
|
"time"
|
2017-01-12 23:56:21 +00:00
|
|
|
|
2018-01-10 11:22:37 +00:00
|
|
|
"v2ray.com/core"
|
2017-01-12 23:56:21 +00:00
|
|
|
"v2ray.com/core/common"
|
2016-12-09 10:35:27 +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"
|
2016-08-20 18:55:45 +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"
|
2016-01-27 11:46:40 +00:00
|
|
|
)
|
|
|
|
|
2016-05-12 17:42:08 +00:00
|
|
|
type Server struct {
|
2018-01-10 11:22:37 +00:00
|
|
|
config *ServerConfig
|
|
|
|
user *protocol.User
|
|
|
|
account *MemoryAccount
|
|
|
|
v *core.Instance
|
2016-01-31 16:01:28 +00:00
|
|
|
}
|
|
|
|
|
2017-04-07 20:45:07 +00:00
|
|
|
// NewServer create a new Shadowsocks server.
|
2017-01-12 23:56:21 +00:00
|
|
|
func NewServer(ctx context.Context, config *ServerConfig) (*Server, error) {
|
2016-09-17 22:41:21 +00:00
|
|
|
if config.GetUser() == nil {
|
2017-04-08 23:43:25 +00:00
|
|
|
return nil, newError("user is not specified")
|
2016-01-31 16:01:28 +00:00
|
|
|
}
|
2016-10-31 14:24:28 +00:00
|
|
|
|
2016-11-02 15:18:29 +00:00
|
|
|
rawAccount, err := config.User.GetTypedAccount()
|
2016-11-02 15:17:57 +00:00
|
|
|
if err != nil {
|
2017-04-08 23:43:25 +00:00
|
|
|
return nil, newError("failed to get user account").Base(err)
|
2016-11-02 15:17:57 +00:00
|
|
|
}
|
2017-11-29 21:57:18 +00:00
|
|
|
account := rawAccount.(*MemoryAccount)
|
2016-11-02 15:17:57 +00:00
|
|
|
|
2016-09-17 22:41:21 +00:00
|
|
|
s := &Server{
|
2016-11-02 15:17:57 +00:00
|
|
|
config: config,
|
|
|
|
user: config.GetUser(),
|
|
|
|
account: account,
|
2018-02-21 16:05:29 +00:00
|
|
|
v: core.MustFromContext(ctx),
|
2018-01-10 11:22:37 +00:00
|
|
|
}
|
2017-11-27 21:09:30 +00:00
|
|
|
|
2016-09-17 22:41:21 +00:00
|
|
|
return s, nil
|
2016-01-27 11:46:40 +00:00
|
|
|
}
|
|
|
|
|
2017-01-26 19:46:44 +00:00
|
|
|
func (s *Server) Network() net.NetworkList {
|
2017-01-14 23:57:06 +00:00
|
|
|
list := net.NetworkList{
|
|
|
|
Network: []net.Network{net.Network_TCP},
|
|
|
|
}
|
2017-01-26 19:46:44 +00:00
|
|
|
if s.config.UdpEnabled {
|
2017-01-14 23:57:06 +00:00
|
|
|
list.Network = append(list.Network, net.Network_UDP)
|
|
|
|
}
|
|
|
|
return list
|
|
|
|
}
|
|
|
|
|
2018-01-10 11:22:37 +00:00
|
|
|
func (s *Server) Process(ctx context.Context, network net.Network, conn internet.Connection, dispatcher core.Dispatcher) error {
|
2017-01-26 19:46:44 +00:00
|
|
|
switch network {
|
|
|
|
case net.Network_TCP:
|
2017-02-03 21:35:09 +00:00
|
|
|
return s.handleConnection(ctx, conn, dispatcher)
|
2017-01-26 19:46:44 +00:00
|
|
|
case net.Network_UDP:
|
2017-02-03 21:35:09 +00:00
|
|
|
return s.handlerUDPPayload(ctx, conn, dispatcher)
|
2017-01-26 19:46:44 +00:00
|
|
|
default:
|
2017-04-08 23:43:25 +00:00
|
|
|
return newError("unknown network: ", network)
|
2016-01-29 15:43:45 +00:00
|
|
|
}
|
2016-01-27 21:11:31 +00:00
|
|
|
}
|
|
|
|
|
2018-01-10 11:22:37 +00:00
|
|
|
func (s *Server) handlerUDPPayload(ctx context.Context, conn internet.Connection, dispatcher core.Dispatcher) error {
|
2017-02-03 21:35:09 +00:00
|
|
|
udpServer := udp.NewDispatcher(dispatcher)
|
2016-01-28 20:30:05 +00:00
|
|
|
|
2017-01-26 19:46:44 +00:00
|
|
|
reader := buf.NewReader(conn)
|
|
|
|
for {
|
2017-11-09 21:33:15 +00:00
|
|
|
mpayload, err := reader.ReadMultiBuffer()
|
2016-01-28 20:30:05 +00:00
|
|
|
if err != nil {
|
2017-01-26 19:46:44 +00:00
|
|
|
break
|
2016-01-28 20:30:05 +00:00
|
|
|
}
|
|
|
|
|
2017-04-15 19:07:23 +00:00
|
|
|
for _, payload := range mpayload {
|
2017-09-19 21:27:49 +00:00
|
|
|
request, data, err := DecodeUDPPacket(s.user, payload)
|
2017-04-15 19:07:23 +00:00
|
|
|
if err != nil {
|
|
|
|
if source, ok := proxy.SourceFromContext(ctx); ok {
|
2017-12-19 20:28:12 +00:00
|
|
|
newError("dropping invalid UDP packet from: ", source).Base(err).WriteToLog()
|
|
|
|
log.Record(&log.AccessMessage{
|
|
|
|
From: source,
|
|
|
|
To: "",
|
|
|
|
Status: log.AccessRejected,
|
|
|
|
Reason: err,
|
|
|
|
})
|
2017-04-15 19:07:23 +00:00
|
|
|
}
|
|
|
|
payload.Release()
|
|
|
|
continue
|
2017-02-09 21:49:38 +00:00
|
|
|
}
|
2016-01-27 21:11:31 +00:00
|
|
|
|
2017-09-19 21:27:49 +00:00
|
|
|
if request.Option.Has(RequestOptionOneTimeAuth) && s.account.OneTimeAuth == Account_Disabled {
|
2017-12-19 20:28:12 +00:00
|
|
|
newError("client payload enables OTA but server doesn't allow it").WriteToLog()
|
2017-04-15 19:07:23 +00:00
|
|
|
payload.Release()
|
|
|
|
continue
|
|
|
|
}
|
2016-01-28 20:30:05 +00:00
|
|
|
|
2017-09-19 21:27:49 +00:00
|
|
|
if !request.Option.Has(RequestOptionOneTimeAuth) && s.account.OneTimeAuth == Account_Enabled {
|
2017-12-19 20:28:12 +00:00
|
|
|
newError("client payload disables OTA but server forces it").WriteToLog()
|
2017-04-15 19:07:23 +00:00
|
|
|
payload.Release()
|
|
|
|
continue
|
|
|
|
}
|
2016-11-02 15:17:57 +00:00
|
|
|
|
2017-04-15 19:07:23 +00:00
|
|
|
dest := request.Destination()
|
|
|
|
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-04-15 19:07:23 +00:00
|
|
|
}
|
2017-12-19 20:28:12 +00:00
|
|
|
newError("tunnelling request to ", dest).WriteToLog()
|
2016-11-02 15:17:57 +00:00
|
|
|
|
2017-04-15 19:07:23 +00:00
|
|
|
ctx = protocol.ContextWithUser(ctx, request.User)
|
|
|
|
udpServer.Dispatch(ctx, dest, data, func(payload *buf.Buffer) {
|
|
|
|
defer payload.Release()
|
2016-01-30 21:57:20 +00:00
|
|
|
|
2017-04-21 12:51:09 +00:00
|
|
|
data, err := EncodeUDPPacket(request, payload.Bytes())
|
2017-04-15 19:07:23 +00:00
|
|
|
if err != nil {
|
2017-12-19 20:28:12 +00:00
|
|
|
newError("failed to encode UDP packet").Base(err).AtWarning().WriteToLog()
|
2017-04-15 19:07:23 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
defer data.Release()
|
2016-01-28 20:30:05 +00:00
|
|
|
|
2017-04-15 19:07:23 +00:00
|
|
|
conn.Write(data.Bytes())
|
|
|
|
})
|
|
|
|
}
|
2017-01-26 19:46:44 +00:00
|
|
|
}
|
2016-01-28 20:30:05 +00:00
|
|
|
|
2017-01-26 19:46:44 +00:00
|
|
|
return nil
|
2016-01-28 20:30:05 +00:00
|
|
|
}
|
|
|
|
|
2018-01-10 11:22:37 +00:00
|
|
|
func (s *Server) handleConnection(ctx context.Context, conn internet.Connection, dispatcher core.Dispatcher) error {
|
|
|
|
sessionPolicy := s.v.PolicyManager().ForLevel(s.user.Level)
|
|
|
|
conn.SetReadDeadline(time.Now().Add(sessionPolicy.Timeouts.Handshake))
|
2017-11-09 21:33:15 +00:00
|
|
|
bufferedReader := buf.NewBufferedReader(buf.NewReader(conn))
|
2017-01-26 19:46:44 +00:00
|
|
|
request, bodyReader, err := ReadTCPSession(s.user, bufferedReader)
|
2016-01-28 11:33:58 +00:00
|
|
|
if err != nil {
|
2017-12-19 20:28:12 +00:00
|
|
|
log.Record(&log.AccessMessage{
|
|
|
|
From: conn.RemoteAddr(),
|
|
|
|
To: "",
|
|
|
|
Status: log.AccessRejected,
|
|
|
|
Reason: err,
|
|
|
|
})
|
2017-04-08 23:43:25 +00:00
|
|
|
return newError("failed to create request from: ", conn.RemoteAddr()).Base(err)
|
2016-01-28 11:33:58 +00:00
|
|
|
}
|
2017-01-31 15:49:59 +00:00
|
|
|
conn.SetReadDeadline(time.Time{})
|
2016-10-31 14:24:28 +00:00
|
|
|
|
2016-12-27 20:41:44 +00:00
|
|
|
bufferedReader.SetBuffered(false)
|
2016-01-28 11:33:58 +00:00
|
|
|
|
2016-10-31 14:24:28 +00:00
|
|
|
dest := request.Destination()
|
2017-12-19 20:28:12 +00:00
|
|
|
log.Record(&log.AccessMessage{
|
|
|
|
From: conn.RemoteAddr(),
|
|
|
|
To: dest,
|
|
|
|
Status: log.AccessAccepted,
|
|
|
|
Reason: "",
|
|
|
|
})
|
|
|
|
newError("tunnelling request to ", dest).WriteToLog()
|
2016-01-30 21:57:20 +00:00
|
|
|
|
2017-01-26 19:46:44 +00:00
|
|
|
ctx = protocol.ContextWithUser(ctx, request.User)
|
2017-01-31 11:42:05 +00:00
|
|
|
|
2017-11-14 23:36:14 +00:00
|
|
|
ctx, cancel := context.WithCancel(ctx)
|
2018-01-10 11:22:37 +00:00
|
|
|
timer := signal.CancelAfterInactivity(ctx, cancel, sessionPolicy.Timeouts.ConnectionIdle)
|
2017-02-03 21:35:09 +00:00
|
|
|
ray, err := dispatcher.Dispatch(ctx, dest)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2016-01-28 11:33:58 +00:00
|
|
|
|
2017-04-07 20:29:31 +00:00
|
|
|
responseDone := signal.ExecuteAsync(func() error {
|
2017-11-09 21:33:15 +00:00
|
|
|
bufferedWriter := buf.NewBufferedWriter(buf.NewWriter(conn))
|
2016-10-31 14:24:28 +00:00
|
|
|
responseWriter, err := WriteTCPResponse(request, bufferedWriter)
|
|
|
|
if err != nil {
|
2017-04-08 23:43:25 +00:00
|
|
|
return newError("failed to write response").Base(err)
|
2016-10-31 14:24:28 +00:00
|
|
|
}
|
2016-02-23 17:16:13 +00:00
|
|
|
|
2017-11-09 21:33:15 +00:00
|
|
|
payload, err := ray.InboundOutput().ReadMultiBuffer()
|
2016-12-29 23:32:20 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2017-11-09 21:33:15 +00:00
|
|
|
if err := responseWriter.WriteMultiBuffer(payload); err != nil {
|
2017-01-06 10:40:49 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
payload.Release()
|
|
|
|
|
|
|
|
if err := bufferedWriter.SetBuffered(false); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2016-04-18 17:01:24 +00:00
|
|
|
|
2017-04-27 20:30:48 +00:00
|
|
|
if err := buf.Copy(ray.InboundOutput(), responseWriter, buf.UpdateActivity(timer)); err != nil {
|
2017-04-08 23:43:25 +00:00
|
|
|
return newError("failed to transport all TCP response").Base(err)
|
2016-01-28 12:40:00 +00:00
|
|
|
}
|
2016-01-28 11:33:58 +00:00
|
|
|
|
2018-01-10 11:22:37 +00:00
|
|
|
timer.SetTimeout(sessionPolicy.Timeouts.UplinkOnly)
|
2017-09-27 13:29:00 +00:00
|
|
|
|
2016-12-29 23:32:20 +00:00
|
|
|
return nil
|
|
|
|
})
|
|
|
|
|
2017-04-07 20:29:31 +00:00
|
|
|
requestDone := signal.ExecuteAsync(func() error {
|
2016-12-29 23:32:20 +00:00
|
|
|
defer ray.InboundInput().Close()
|
|
|
|
|
2017-04-27 20:30:48 +00:00
|
|
|
if err := buf.Copy(bodyReader, ray.InboundInput(), 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-01-10 11:22:37 +00:00
|
|
|
timer.SetTimeout(sessionPolicy.Timeouts.DownlinkOnly)
|
2016-12-29 23:32:20 +00:00
|
|
|
return nil
|
|
|
|
})
|
2016-01-28 11:33:58 +00:00
|
|
|
|
2017-01-28 20:24:46 +00:00
|
|
|
if err := signal.ErrorOrFinish2(ctx, requestDone, responseDone); err != nil {
|
2017-01-10 13:22:42 +00:00
|
|
|
ray.InboundInput().CloseError()
|
|
|
|
ray.InboundOutput().CloseError()
|
2017-04-08 23:43:25 +00:00
|
|
|
return newError("connection ends").Base(err)
|
2016-12-29 23:32:20 +00:00
|
|
|
}
|
2017-01-26 19:46:44 +00:00
|
|
|
|
|
|
|
return nil
|
2016-01-28 11:33:58 +00:00
|
|
|
}
|
|
|
|
|
2017-01-12 23:56:21 +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
|
|
|
}
|