mirror of https://github.com/XTLS/Xray-core
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
365 lines
10 KiB
365 lines
10 KiB
package inbound |
|
|
|
import ( |
|
"context" |
|
"io" |
|
"strings" |
|
"sync" |
|
"time" |
|
|
|
"github.com/xtls/xray-core/common" |
|
"github.com/xtls/xray-core/common/buf" |
|
"github.com/xtls/xray-core/common/errors" |
|
"github.com/xtls/xray-core/common/log" |
|
"github.com/xtls/xray-core/common/net" |
|
"github.com/xtls/xray-core/common/protocol" |
|
"github.com/xtls/xray-core/common/session" |
|
"github.com/xtls/xray-core/common/signal" |
|
"github.com/xtls/xray-core/common/task" |
|
"github.com/xtls/xray-core/common/uuid" |
|
"github.com/xtls/xray-core/core" |
|
feature_inbound "github.com/xtls/xray-core/features/inbound" |
|
"github.com/xtls/xray-core/features/policy" |
|
"github.com/xtls/xray-core/features/routing" |
|
"github.com/xtls/xray-core/proxy/vmess" |
|
"github.com/xtls/xray-core/proxy/vmess/encoding" |
|
"github.com/xtls/xray-core/transport/internet/stat" |
|
) |
|
|
|
type userByEmail struct { |
|
sync.Mutex |
|
cache map[string]*protocol.MemoryUser |
|
defaultLevel uint32 |
|
} |
|
|
|
func newUserByEmail(config *DefaultConfig) *userByEmail { |
|
return &userByEmail{ |
|
cache: make(map[string]*protocol.MemoryUser), |
|
defaultLevel: config.Level, |
|
} |
|
} |
|
|
|
func (v *userByEmail) addNoLock(u *protocol.MemoryUser) bool { |
|
email := strings.ToLower(u.Email) |
|
_, found := v.cache[email] |
|
if found { |
|
return false |
|
} |
|
v.cache[email] = u |
|
return true |
|
} |
|
|
|
func (v *userByEmail) Add(u *protocol.MemoryUser) bool { |
|
v.Lock() |
|
defer v.Unlock() |
|
|
|
return v.addNoLock(u) |
|
} |
|
|
|
func (v *userByEmail) GetOrGenerate(email string) (*protocol.MemoryUser, bool) { |
|
email = strings.ToLower(email) |
|
|
|
v.Lock() |
|
defer v.Unlock() |
|
|
|
user, found := v.cache[email] |
|
if !found { |
|
id := uuid.New() |
|
rawAccount := &vmess.Account{ |
|
Id: id.String(), |
|
} |
|
account, err := rawAccount.AsAccount() |
|
common.Must(err) |
|
user = &protocol.MemoryUser{ |
|
Level: v.defaultLevel, |
|
Email: email, |
|
Account: account, |
|
} |
|
v.cache[email] = user |
|
} |
|
return user, found |
|
} |
|
|
|
func (v *userByEmail) Get(email string) *protocol.MemoryUser { |
|
email = strings.ToLower(email) |
|
v.Lock() |
|
defer v.Unlock() |
|
return v.cache[email] |
|
} |
|
|
|
func (v *userByEmail) Remove(email string) bool { |
|
email = strings.ToLower(email) |
|
|
|
v.Lock() |
|
defer v.Unlock() |
|
|
|
if _, found := v.cache[email]; !found { |
|
return false |
|
} |
|
delete(v.cache, email) |
|
return true |
|
} |
|
|
|
// Handler is an inbound connection handler that handles messages in VMess protocol. |
|
type Handler struct { |
|
policyManager policy.Manager |
|
inboundHandlerManager feature_inbound.Manager |
|
clients *vmess.TimedUserValidator |
|
usersByEmail *userByEmail |
|
detours *DetourConfig |
|
sessionHistory *encoding.SessionHistory |
|
} |
|
|
|
// New creates a new VMess inbound handler. |
|
func New(ctx context.Context, config *Config) (*Handler, error) { |
|
v := core.MustFromContext(ctx) |
|
handler := &Handler{ |
|
policyManager: v.GetFeature(policy.ManagerType()).(policy.Manager), |
|
inboundHandlerManager: v.GetFeature(feature_inbound.ManagerType()).(feature_inbound.Manager), |
|
clients: vmess.NewTimedUserValidator(), |
|
detours: config.Detour, |
|
usersByEmail: newUserByEmail(config.GetDefaultValue()), |
|
sessionHistory: encoding.NewSessionHistory(), |
|
} |
|
|
|
for _, user := range config.User { |
|
mUser, err := user.ToMemoryUser() |
|
if err != nil { |
|
return nil, errors.New("failed to get VMess user").Base(err) |
|
} |
|
|
|
if err := handler.AddUser(ctx, mUser); err != nil { |
|
return nil, errors.New("failed to initiate user").Base(err) |
|
} |
|
} |
|
|
|
return handler, nil |
|
} |
|
|
|
// Close implements common.Closable. |
|
func (h *Handler) Close() error { |
|
return errors.Combine( |
|
h.sessionHistory.Close(), |
|
common.Close(h.usersByEmail)) |
|
} |
|
|
|
// Network implements proxy.Inbound.Network(). |
|
func (*Handler) Network() []net.Network { |
|
return []net.Network{net.Network_TCP, net.Network_UNIX} |
|
} |
|
|
|
func (h *Handler) GetOrGenerateUser(email string) *protocol.MemoryUser { |
|
user, existing := h.usersByEmail.GetOrGenerate(email) |
|
if !existing { |
|
h.clients.Add(user) |
|
} |
|
return user |
|
} |
|
|
|
func (h *Handler) GetUser(ctx context.Context, email string) *protocol.MemoryUser { |
|
return h.usersByEmail.Get(email) |
|
} |
|
|
|
func (h *Handler) GetUsers(ctx context.Context) []*protocol.MemoryUser { |
|
return h.clients.GetUsers() |
|
} |
|
|
|
func (h *Handler) GetUsersCount(context.Context) int64 { |
|
return h.clients.GetCount() |
|
} |
|
|
|
func (h *Handler) AddUser(ctx context.Context, user *protocol.MemoryUser) error { |
|
if len(user.Email) > 0 && !h.usersByEmail.Add(user) { |
|
return errors.New("User ", user.Email, " already exists.") |
|
} |
|
return h.clients.Add(user) |
|
} |
|
|
|
func (h *Handler) RemoveUser(ctx context.Context, email string) error { |
|
if email == "" { |
|
return errors.New("Email must not be empty.") |
|
} |
|
if !h.usersByEmail.Remove(email) { |
|
return errors.New("User ", email, " not found.") |
|
} |
|
h.clients.Remove(email) |
|
return nil |
|
} |
|
|
|
func transferResponse(timer signal.ActivityUpdater, session *encoding.ServerSession, request *protocol.RequestHeader, response *protocol.ResponseHeader, input buf.Reader, output *buf.BufferedWriter) error { |
|
session.EncodeResponseHeader(response, output) |
|
|
|
bodyWriter, err := session.EncodeResponseBody(request, output) |
|
if err != nil { |
|
return errors.New("failed to start decoding response").Base(err) |
|
} |
|
{ |
|
// Optimize for small response packet |
|
data, err := input.ReadMultiBuffer() |
|
if err != nil { |
|
return err |
|
} |
|
|
|
if err := bodyWriter.WriteMultiBuffer(data); err != nil { |
|
return err |
|
} |
|
} |
|
|
|
if err := output.SetBuffered(false); err != nil { |
|
return err |
|
} |
|
|
|
if err := buf.Copy(input, bodyWriter, buf.UpdateActivity(timer)); err != nil { |
|
return err |
|
} |
|
|
|
account := request.User.Account.(*vmess.MemoryAccount) |
|
|
|
if request.Option.Has(protocol.RequestOptionChunkStream) && !account.NoTerminationSignal { |
|
if err := bodyWriter.WriteMultiBuffer(buf.MultiBuffer{}); err != nil { |
|
return err |
|
} |
|
} |
|
|
|
return nil |
|
} |
|
|
|
// Process implements proxy.Inbound.Process(). |
|
func (h *Handler) Process(ctx context.Context, network net.Network, connection stat.Connection, dispatcher routing.Dispatcher) error { |
|
sessionPolicy := h.policyManager.ForLevel(0) |
|
if err := connection.SetReadDeadline(time.Now().Add(sessionPolicy.Timeouts.Handshake)); err != nil { |
|
return errors.New("unable to set read deadline").Base(err).AtWarning() |
|
} |
|
|
|
iConn := connection |
|
if statConn, ok := iConn.(*stat.CounterConnection); ok { |
|
iConn = statConn.Connection |
|
} |
|
_, isDrain := iConn.(*net.TCPConn) |
|
if !isDrain { |
|
_, isDrain = iConn.(*net.UnixConn) |
|
} |
|
|
|
reader := &buf.BufferedReader{Reader: buf.NewReader(connection)} |
|
svrSession := encoding.NewServerSession(h.clients, h.sessionHistory) |
|
request, err := svrSession.DecodeRequestHeader(reader, isDrain) |
|
if err != nil { |
|
if errors.Cause(err) != io.EOF { |
|
log.Record(&log.AccessMessage{ |
|
From: connection.RemoteAddr(), |
|
To: "", |
|
Status: log.AccessRejected, |
|
Reason: err, |
|
}) |
|
err = errors.New("invalid request from ", connection.RemoteAddr()).Base(err).AtInfo() |
|
} |
|
return err |
|
} |
|
|
|
if request.Command != protocol.RequestCommandMux { |
|
ctx = log.ContextWithAccessMessage(ctx, &log.AccessMessage{ |
|
From: connection.RemoteAddr(), |
|
To: request.Destination(), |
|
Status: log.AccessAccepted, |
|
Reason: "", |
|
Email: request.User.Email, |
|
}) |
|
} |
|
|
|
errors.LogInfo(ctx, "received request for ", request.Destination()) |
|
|
|
if err := connection.SetReadDeadline(time.Time{}); err != nil { |
|
errors.LogInfoInner(ctx, err, "unable to set back read deadline") |
|
} |
|
|
|
inbound := session.InboundFromContext(ctx) |
|
inbound.Name = "vmess" |
|
inbound.CanSpliceCopy = 3 |
|
inbound.User = request.User |
|
|
|
sessionPolicy = h.policyManager.ForLevel(request.User.Level) |
|
|
|
ctx, cancel := context.WithCancel(ctx) |
|
timer := signal.CancelAfterInactivity(ctx, cancel, sessionPolicy.Timeouts.ConnectionIdle) |
|
|
|
ctx = policy.ContextWithBufferPolicy(ctx, sessionPolicy.Buffer) |
|
link, err := dispatcher.Dispatch(ctx, request.Destination()) |
|
if err != nil { |
|
return errors.New("failed to dispatch request to ", request.Destination()).Base(err) |
|
} |
|
|
|
requestDone := func() error { |
|
defer timer.SetTimeout(sessionPolicy.Timeouts.DownlinkOnly) |
|
|
|
bodyReader, err := svrSession.DecodeRequestBody(request, reader) |
|
if err != nil { |
|
return errors.New("failed to start decoding").Base(err) |
|
} |
|
if err := buf.Copy(bodyReader, link.Writer, buf.UpdateActivity(timer)); err != nil { |
|
return errors.New("failed to transfer request").Base(err) |
|
} |
|
return nil |
|
} |
|
|
|
responseDone := func() error { |
|
defer timer.SetTimeout(sessionPolicy.Timeouts.UplinkOnly) |
|
|
|
writer := buf.NewBufferedWriter(buf.NewWriter(connection)) |
|
defer writer.Flush() |
|
|
|
response := &protocol.ResponseHeader{ |
|
Command: h.generateCommand(ctx, request), |
|
} |
|
return transferResponse(timer, svrSession, request, response, link.Reader, writer) |
|
} |
|
|
|
requestDonePost := task.OnSuccess(requestDone, task.Close(link.Writer)) |
|
if err := task.Run(ctx, requestDonePost, responseDone); err != nil { |
|
common.Interrupt(link.Reader) |
|
common.Interrupt(link.Writer) |
|
return errors.New("connection ends").Base(err) |
|
} |
|
|
|
return nil |
|
} |
|
|
|
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) |
|
if err != nil { |
|
errors.LogWarningInner(ctx, err, "failed to get detour handler: ", tag) |
|
return nil |
|
} |
|
proxyHandler, port, availableMin := handler.GetRandomInboundProxy() |
|
inboundHandler, ok := proxyHandler.(*Handler) |
|
if ok && inboundHandler != nil { |
|
if availableMin > 255 { |
|
availableMin = 255 |
|
} |
|
|
|
errors.LogDebug(ctx, "pick detour handler for port ", port, " for ", availableMin, " minutes.") |
|
user := inboundHandler.GetOrGenerateUser(request.User.Email) |
|
if user == nil { |
|
return nil |
|
} |
|
account := user.Account.(*vmess.MemoryAccount) |
|
return &protocol.CommandSwitchAccount{ |
|
Port: port, |
|
ID: account.ID.UUID(), |
|
Level: user.Level, |
|
ValidMin: byte(availableMin), |
|
} |
|
} |
|
} |
|
} |
|
|
|
return nil |
|
} |
|
|
|
func init() { |
|
common.Must(common.RegisterConfig((*Config)(nil), func(ctx context.Context, config interface{}) (interface{}, error) { |
|
return New(ctx, config.(*Config)) |
|
})) |
|
}
|
|
|