2015-12-04 06:42:56 -05:00
|
|
|
package inbound
|
2015-09-10 18:24:18 -04:00
|
|
|
|
2017-12-02 19:04:57 -05:00
|
|
|
//go:generate go run $GOPATH/src/v2ray.com/core/common/errors/errorgen/main.go -pkg inbound -path Proxy,VMess,Inbound
|
2017-04-08 19:43:25 -04:00
|
|
|
|
2015-09-10 18:24:18 -04:00
|
|
|
import (
|
2017-01-13 17:42:39 -05:00
|
|
|
"context"
|
2016-05-30 18:21:41 -04:00
|
|
|
"io"
|
2017-02-13 07:10:43 -05:00
|
|
|
"sync"
|
2017-01-31 06:42:05 -05:00
|
|
|
"time"
|
|
|
|
|
2016-08-20 14:55:45 -04:00
|
|
|
"v2ray.com/core/app"
|
|
|
|
"v2ray.com/core/app/dispatcher"
|
2017-11-27 16:09:30 -05:00
|
|
|
"v2ray.com/core/app/policy"
|
2016-08-20 14:55:45 -04:00
|
|
|
"v2ray.com/core/app/proxyman"
|
|
|
|
"v2ray.com/core/common"
|
2016-12-09 05:35:27 -05:00
|
|
|
"v2ray.com/core/common/buf"
|
2016-12-04 03:10:47 -05:00
|
|
|
"v2ray.com/core/common/errors"
|
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"
|
2016-08-20 14:55:45 -04:00
|
|
|
"v2ray.com/core/common/protocol"
|
2016-12-15 05:51:09 -05:00
|
|
|
"v2ray.com/core/common/serial"
|
2016-12-29 16:17:12 -05:00
|
|
|
"v2ray.com/core/common/signal"
|
2016-08-20 14:55:45 -04:00
|
|
|
"v2ray.com/core/common/uuid"
|
|
|
|
"v2ray.com/core/proxy/vmess"
|
|
|
|
"v2ray.com/core/proxy/vmess/encoding"
|
|
|
|
"v2ray.com/core/transport/internet"
|
2016-12-28 17:42:32 -05:00
|
|
|
"v2ray.com/core/transport/ray"
|
2015-09-10 18:24:18 -04:00
|
|
|
)
|
|
|
|
|
2016-02-25 08:38:41 -05:00
|
|
|
type userByEmail struct {
|
|
|
|
sync.RWMutex
|
2016-05-07 14:26:29 -04:00
|
|
|
cache map[string]*protocol.User
|
2016-09-17 18:41:21 -04:00
|
|
|
defaultLevel uint32
|
2016-02-25 08:38:41 -05:00
|
|
|
defaultAlterIDs uint16
|
|
|
|
}
|
|
|
|
|
2017-11-25 09:20:59 -05:00
|
|
|
func newUserByEmail(users []*protocol.User, config *DefaultConfig) *userByEmail {
|
2016-05-07 14:26:29 -04:00
|
|
|
cache := make(map[string]*protocol.User)
|
2016-02-25 08:38:41 -05:00
|
|
|
for _, user := range users {
|
|
|
|
cache[user.Email] = user
|
|
|
|
}
|
|
|
|
return &userByEmail{
|
|
|
|
cache: cache,
|
|
|
|
defaultLevel: config.Level,
|
2016-09-24 17:11:58 -04:00
|
|
|
defaultAlterIDs: uint16(config.AlterId),
|
2016-02-25 08:38:41 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-27 15:39:09 -05:00
|
|
|
func (v *userByEmail) Get(email string) (*protocol.User, bool) {
|
2016-05-07 14:26:29 -04:00
|
|
|
var user *protocol.User
|
2016-02-25 08:38:41 -05:00
|
|
|
var found bool
|
2016-11-27 15:39:09 -05:00
|
|
|
v.RLock()
|
|
|
|
user, found = v.cache[email]
|
|
|
|
v.RUnlock()
|
2016-02-25 08:38:41 -05:00
|
|
|
if !found {
|
2016-11-27 15:39:09 -05:00
|
|
|
v.Lock()
|
|
|
|
user, found = v.cache[email]
|
2016-02-25 08:38:41 -05:00
|
|
|
if !found {
|
2016-10-12 12:43:55 -04:00
|
|
|
account := &vmess.Account{
|
2016-09-17 18:41:21 -04:00
|
|
|
Id: uuid.New().String(),
|
2016-11-27 15:39:09 -05:00
|
|
|
AlterId: uint32(v.defaultAlterIDs),
|
2016-09-17 18:41:21 -04:00
|
|
|
}
|
|
|
|
user = &protocol.User{
|
2016-11-27 15:39:09 -05:00
|
|
|
Level: v.defaultLevel,
|
2016-09-17 18:41:21 -04:00
|
|
|
Email: email,
|
2016-12-15 05:51:09 -05:00
|
|
|
Account: serial.ToTypedMessage(account),
|
2016-05-28 07:44:11 -04:00
|
|
|
}
|
2016-11-27 15:39:09 -05:00
|
|
|
v.cache[email] = user
|
2016-02-25 08:38:41 -05:00
|
|
|
}
|
2016-11-27 15:39:09 -05:00
|
|
|
v.Unlock()
|
2016-02-25 08:38:41 -05:00
|
|
|
}
|
|
|
|
return user, found
|
|
|
|
}
|
|
|
|
|
2017-02-13 07:16:37 -05:00
|
|
|
// Handler is an inbound connection handler that handles messages in VMess protocol.
|
|
|
|
type Handler struct {
|
2016-01-31 11:01:28 -05:00
|
|
|
inboundHandlerManager proxyman.InboundHandlerManager
|
2016-05-07 14:26:29 -04:00
|
|
|
clients protocol.UserValidator
|
2016-02-25 08:38:41 -05:00
|
|
|
usersByEmail *userByEmail
|
2016-06-01 16:45:12 -04:00
|
|
|
detours *DetourConfig
|
2017-02-12 10:53:23 -05:00
|
|
|
sessionHistory *encoding.SessionHistory
|
2017-11-27 16:18:39 -05:00
|
|
|
policyManager policy.Manager
|
2015-09-10 18:24:18 -04:00
|
|
|
}
|
|
|
|
|
2017-11-25 09:20:59 -05:00
|
|
|
// New creates a new VMess inbound handler.
|
2017-02-13 07:16:37 -05:00
|
|
|
func New(ctx context.Context, config *Config) (*Handler, error) {
|
2017-01-12 18:56:21 -05:00
|
|
|
space := app.SpaceFromContext(ctx)
|
|
|
|
if space == nil {
|
2017-04-08 19:43:25 -04:00
|
|
|
return nil, newError("no space in context")
|
2017-01-12 18:56:21 -05:00
|
|
|
}
|
|
|
|
|
2017-01-29 06:58:52 -05:00
|
|
|
allowedClients := vmess.NewTimedUserValidator(ctx, protocol.DefaultIDHash)
|
2017-01-12 18:56:21 -05:00
|
|
|
for _, user := range config.User {
|
2017-05-23 19:35:05 -04:00
|
|
|
if err := allowedClients.Add(user); err != nil {
|
|
|
|
return nil, newError("failed to initiate user").Base(err)
|
|
|
|
}
|
2017-01-12 18:56:21 -05:00
|
|
|
}
|
|
|
|
|
2017-02-13 07:16:37 -05:00
|
|
|
handler := &Handler{
|
2017-02-12 10:53:23 -05:00
|
|
|
clients: allowedClients,
|
|
|
|
detours: config.Detour,
|
2017-11-25 09:20:59 -05:00
|
|
|
usersByEmail: newUserByEmail(config.User, config.GetDefaultValue()),
|
2017-02-12 10:53:23 -05:00
|
|
|
sessionHistory: encoding.NewSessionHistory(ctx),
|
2017-01-12 18:56:21 -05:00
|
|
|
}
|
|
|
|
|
2017-11-28 17:41:20 -05:00
|
|
|
space.On(app.SpaceInitializing, func(interface{}) error {
|
2017-01-12 18:56:21 -05:00
|
|
|
handler.inboundHandlerManager = proxyman.InboundHandlerManagerFromSpace(space)
|
|
|
|
if handler.inboundHandlerManager == nil {
|
2017-11-27 16:09:30 -05:00
|
|
|
return newError("InboundHandlerManager is not found is space.")
|
|
|
|
}
|
2017-11-27 16:18:39 -05:00
|
|
|
handler.policyManager = policy.FromSpace(space)
|
2017-11-27 16:09:30 -05:00
|
|
|
if handler.policyManager == nil {
|
|
|
|
return newError("Policy is not found in space.")
|
2017-01-12 18:56:21 -05:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
})
|
|
|
|
|
|
|
|
return handler, nil
|
|
|
|
}
|
|
|
|
|
2017-02-13 07:16:37 -05:00
|
|
|
// Network implements proxy.Inbound.Network().
|
|
|
|
func (*Handler) Network() net.NetworkList {
|
2017-01-14 18:57:06 -05:00
|
|
|
return net.NetworkList{
|
|
|
|
Network: []net.Network{net.Network_TCP},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-25 09:20:59 -05:00
|
|
|
func (h *Handler) GetUser(email string) *protocol.User {
|
|
|
|
user, existing := h.usersByEmail.Get(email)
|
2016-02-25 08:38:41 -05:00
|
|
|
if !existing {
|
2017-11-25 09:20:59 -05:00
|
|
|
h.clients.Add(user)
|
2016-02-25 08:38:41 -05:00
|
|
|
}
|
|
|
|
return user
|
2016-01-08 18:10:57 -05:00
|
|
|
}
|
|
|
|
|
2017-09-27 09:29:00 -04:00
|
|
|
func transferRequest(timer signal.ActivityUpdater, session *encoding.ServerSession, request *protocol.RequestHeader, input io.Reader, output ray.OutputStream) error {
|
2016-12-29 16:17:12 -05:00
|
|
|
defer output.Close()
|
|
|
|
|
|
|
|
bodyReader := session.DecodeRequestBody(request, input)
|
2017-04-27 16:30:48 -04:00
|
|
|
if err := buf.Copy(bodyReader, output, buf.UpdateActivity(timer)); err != nil {
|
2017-09-19 17:27:49 -04:00
|
|
|
return newError("failed to transfer request").Base(err)
|
2016-12-29 16:17:12 -05:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2017-09-27 09:29:00 -04:00
|
|
|
func transferResponse(timer signal.ActivityUpdater, session *encoding.ServerSession, request *protocol.RequestHeader, response *protocol.ResponseHeader, input buf.Reader, output io.Writer) error {
|
2016-12-29 16:17:12 -05:00
|
|
|
session.EncodeResponseHeader(response, output)
|
|
|
|
|
|
|
|
bodyWriter := session.EncodeResponseBody(request, output)
|
|
|
|
|
|
|
|
// Optimize for small response packet
|
2017-11-09 16:33:15 -05:00
|
|
|
data, err := input.ReadMultiBuffer()
|
2017-01-06 05:59:51 -05:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2016-12-29 16:17:12 -05:00
|
|
|
|
2017-11-09 16:33:15 -05:00
|
|
|
if err := bodyWriter.WriteMultiBuffer(data); err != nil {
|
2017-01-06 05:59:51 -05:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
data.Release()
|
2016-12-29 16:17:12 -05:00
|
|
|
|
2017-02-15 16:51:01 -05:00
|
|
|
if bufferedWriter, ok := output.(*buf.BufferedWriter); ok {
|
2017-01-06 05:59:51 -05:00
|
|
|
if err := bufferedWriter.SetBuffered(false); err != nil {
|
2016-12-29 16:17:12 -05:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-27 16:30:48 -04:00
|
|
|
if err := buf.Copy(input, bodyWriter, buf.UpdateActivity(timer)); err != nil {
|
2017-01-06 05:59:51 -05:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2016-12-29 16:17:12 -05:00
|
|
|
if request.Option.Has(protocol.RequestOptionChunkStream) {
|
2017-11-09 16:33:15 -05:00
|
|
|
if err := bodyWriter.WriteMultiBuffer(buf.MultiBuffer{}); err != nil {
|
2016-12-29 16:17:12 -05:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2017-02-13 07:16:37 -05:00
|
|
|
// Process implements proxy.Inbound.Process().
|
2017-11-25 09:20:59 -05:00
|
|
|
func (h *Handler) Process(ctx context.Context, network net.Network, connection internet.Connection, dispatcher dispatcher.Interface) error {
|
2017-11-27 16:09:30 -05:00
|
|
|
sessionPolicy := h.policyManager.GetPolicy(0)
|
|
|
|
if err := connection.SetReadDeadline(time.Now().Add(sessionPolicy.Timeout.Handshake.Duration())); err != nil {
|
2017-11-14 19:14:02 -05:00
|
|
|
return newError("unable to set read deadline").Base(err).AtWarning()
|
2017-05-30 11:33:41 -04:00
|
|
|
}
|
2017-05-23 19:35:05 -04:00
|
|
|
|
2017-11-09 16:33:15 -05:00
|
|
|
reader := buf.NewBufferedReader(buf.NewReader(connection))
|
2017-01-26 14:46:44 -05:00
|
|
|
|
2017-11-25 09:20:59 -05:00
|
|
|
session := encoding.NewServerSession(h.clients, h.sessionHistory)
|
2016-02-27 11:28:21 -05:00
|
|
|
request, err := session.DecodeRequestHeader(reader)
|
2016-06-18 11:01:48 -04:00
|
|
|
|
2015-09-10 18:24:18 -04:00
|
|
|
if err != nil {
|
2016-12-04 03:10:47 -05:00
|
|
|
if errors.Cause(err) != io.EOF {
|
2017-12-19 15:28:12 -05:00
|
|
|
log.Record(&log.AccessMessage{
|
|
|
|
From: connection.RemoteAddr(),
|
|
|
|
To: "",
|
|
|
|
Status: log.AccessRejected,
|
|
|
|
Reason: err,
|
|
|
|
})
|
|
|
|
newError("invalid request from ", connection.RemoteAddr(), ": ", err).AtInfo().WriteToLog()
|
2016-05-30 18:21:41 -04:00
|
|
|
}
|
2017-01-26 14:46:44 -05:00
|
|
|
return err
|
2015-09-10 18:24:18 -04:00
|
|
|
}
|
2017-05-17 15:13:01 -04:00
|
|
|
|
|
|
|
if request.Command == protocol.RequestCommandMux {
|
|
|
|
request.Address = net.DomainAddress("v1.mux.com")
|
|
|
|
request.Port = net.Port(0)
|
|
|
|
}
|
|
|
|
|
2017-12-19 15:28:12 -05:00
|
|
|
log.Record(&log.AccessMessage{
|
|
|
|
From: connection.RemoteAddr(),
|
|
|
|
To: request.Destination(),
|
|
|
|
Status: log.AccessAccepted,
|
|
|
|
Reason: "",
|
|
|
|
})
|
|
|
|
|
|
|
|
newError("received request for ", request.Destination()).WriteToLog()
|
2015-09-10 18:24:18 -04:00
|
|
|
|
2017-11-14 19:14:02 -05:00
|
|
|
if err := connection.SetReadDeadline(time.Time{}); err != nil {
|
2017-12-19 15:28:12 -05:00
|
|
|
newError("unable to set back read deadline").Base(err).WriteToLog()
|
2017-11-14 19:14:02 -05:00
|
|
|
}
|
2017-01-31 10:49:59 -05:00
|
|
|
|
2017-11-27 16:09:30 -05:00
|
|
|
sessionPolicy = h.policyManager.GetPolicy(request.User.Level)
|
2017-01-26 14:46:44 -05:00
|
|
|
ctx = protocol.ContextWithUser(ctx, request.User)
|
2017-03-31 15:10:33 -04:00
|
|
|
|
2017-11-14 18:36:14 -05:00
|
|
|
ctx, cancel := context.WithCancel(ctx)
|
2017-11-27 16:09:30 -05:00
|
|
|
timer := signal.CancelAfterInactivity(ctx, cancel, sessionPolicy.Timeout.ConnectionIdle.Duration())
|
2017-02-03 16:35:09 -05:00
|
|
|
ray, err := dispatcher.Dispatch(ctx, request.Destination())
|
|
|
|
if err != nil {
|
2017-04-09 03:49:19 -04:00
|
|
|
return newError("failed to dispatch request to ", request.Destination()).Base(err)
|
2017-02-03 16:35:09 -05:00
|
|
|
}
|
2017-01-26 14:46:44 -05:00
|
|
|
|
2015-09-17 17:00:17 -04:00
|
|
|
input := ray.InboundInput()
|
|
|
|
output := ray.InboundOutput()
|
2016-05-07 03:53:15 -04:00
|
|
|
|
2016-12-29 16:17:12 -05:00
|
|
|
requestDone := signal.ExecuteAsync(func() error {
|
2017-11-27 16:09:30 -05:00
|
|
|
defer timer.SetTimeout(sessionPolicy.Timeout.DownlinkOnly.Duration())
|
2017-01-31 06:42:05 -05:00
|
|
|
return transferRequest(timer, session, request, reader, input)
|
2016-12-28 17:42:32 -05:00
|
|
|
})
|
2015-09-17 17:00:17 -04:00
|
|
|
|
2016-12-29 16:17:12 -05:00
|
|
|
responseDone := signal.ExecuteAsync(func() error {
|
2017-11-09 16:33:15 -05:00
|
|
|
writer := buf.NewBufferedWriter(buf.NewWriter(connection))
|
2017-05-23 19:35:05 -04:00
|
|
|
defer writer.Flush()
|
2017-11-27 16:09:30 -05:00
|
|
|
defer timer.SetTimeout(sessionPolicy.Timeout.UplinkOnly.Duration())
|
2017-05-23 19:35:05 -04:00
|
|
|
|
|
|
|
response := &protocol.ResponseHeader{
|
2017-11-25 09:20:59 -05:00
|
|
|
Command: h.generateCommand(ctx, request),
|
2017-05-23 19:35:05 -04:00
|
|
|
}
|
2017-01-31 06:42:05 -05:00
|
|
|
return transferResponse(timer, session, request, response, output, writer)
|
2016-12-28 17:42:32 -05:00
|
|
|
})
|
2016-05-12 20:20:07 -04:00
|
|
|
|
2017-01-28 15:24:46 -05:00
|
|
|
if err := signal.ErrorOrFinish2(ctx, requestDone, responseDone); err != nil {
|
2017-01-10 08:22:42 -05:00
|
|
|
input.CloseError()
|
|
|
|
output.CloseError()
|
2017-04-09 03:49:19 -04:00
|
|
|
return newError("connection ends").Base(err)
|
2016-06-10 19:37:33 -04:00
|
|
|
}
|
2015-09-18 06:31:42 -04:00
|
|
|
|
2017-01-26 14:46:44 -05:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2017-11-25 09:20:59 -05:00
|
|
|
func (h *Handler) generateCommand(ctx context.Context, request *protocol.RequestHeader) protocol.ResponseCommand {
|
|
|
|
if h.detours != nil {
|
|
|
|
tag := h.detours.To
|
|
|
|
if h.inboundHandlerManager != nil {
|
|
|
|
handler, err := h.inboundHandlerManager.GetHandler(ctx, tag)
|
2017-01-26 14:46:44 -05:00
|
|
|
if err != nil {
|
2017-12-19 15:28:12 -05:00
|
|
|
newError("failed to get detour handler: ", tag, err).AtWarning().WriteToLog()
|
2017-01-26 14:46:44 -05:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
proxyHandler, port, availableMin := handler.GetRandomInboundProxy()
|
2017-02-13 07:16:37 -05:00
|
|
|
inboundHandler, ok := proxyHandler.(*Handler)
|
2017-02-13 07:08:28 -05:00
|
|
|
if ok && inboundHandler != nil {
|
2017-01-26 14:46:44 -05:00
|
|
|
if availableMin > 255 {
|
|
|
|
availableMin = 255
|
|
|
|
}
|
|
|
|
|
2017-12-19 15:28:12 -05:00
|
|
|
newError("pick detour handler for port ", port, " for ", availableMin, " minutes.").AtDebug().WriteToLog()
|
2017-01-26 14:46:44 -05:00
|
|
|
user := inboundHandler.GetUser(request.User.Email)
|
|
|
|
if user == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
account, _ := user.GetTypedAccount()
|
|
|
|
return &protocol.CommandSwitchAccount{
|
|
|
|
Port: port,
|
|
|
|
ID: account.(*vmess.InternalAccount).ID.UUID(),
|
|
|
|
AlterIds: uint16(len(account.(*vmess.InternalAccount).AlterIDs)),
|
|
|
|
Level: user.Level,
|
|
|
|
ValidMin: byte(availableMin),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
2015-09-10 18:24:18 -04:00
|
|
|
}
|
2016-06-14 16:54:08 -04:00
|
|
|
|
|
|
|
func init() {
|
2017-01-12 18:56:21 -05:00
|
|
|
common.Must(common.RegisterConfig((*Config)(nil), func(ctx context.Context, config interface{}) (interface{}, error) {
|
|
|
|
return New(ctx, config.(*Config))
|
|
|
|
}))
|
2015-09-10 18:24:18 -04:00
|
|
|
}
|