mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-18 10:26:01 -05:00
291 lines
7.8 KiB
Go
291 lines
7.8 KiB
Go
package inbound
|
|
|
|
import (
|
|
"context"
|
|
"io"
|
|
"sync"
|
|
|
|
"runtime"
|
|
"time"
|
|
|
|
"v2ray.com/core/app"
|
|
"v2ray.com/core/app/dispatcher"
|
|
"v2ray.com/core/app/proxyman"
|
|
"v2ray.com/core/common"
|
|
"v2ray.com/core/common/buf"
|
|
"v2ray.com/core/common/bufio"
|
|
"v2ray.com/core/common/errors"
|
|
"v2ray.com/core/common/log"
|
|
"v2ray.com/core/common/net"
|
|
"v2ray.com/core/common/protocol"
|
|
"v2ray.com/core/common/serial"
|
|
"v2ray.com/core/common/signal"
|
|
"v2ray.com/core/common/uuid"
|
|
"v2ray.com/core/proxy"
|
|
"v2ray.com/core/proxy/vmess"
|
|
"v2ray.com/core/proxy/vmess/encoding"
|
|
"v2ray.com/core/transport/internet"
|
|
"v2ray.com/core/transport/ray"
|
|
)
|
|
|
|
type userByEmail struct {
|
|
sync.RWMutex
|
|
cache map[string]*protocol.User
|
|
defaultLevel uint32
|
|
defaultAlterIDs uint16
|
|
}
|
|
|
|
func NewUserByEmail(users []*protocol.User, config *DefaultConfig) *userByEmail {
|
|
cache := make(map[string]*protocol.User)
|
|
for _, user := range users {
|
|
cache[user.Email] = user
|
|
}
|
|
return &userByEmail{
|
|
cache: cache,
|
|
defaultLevel: config.Level,
|
|
defaultAlterIDs: uint16(config.AlterId),
|
|
}
|
|
}
|
|
|
|
func (v *userByEmail) Get(email string) (*protocol.User, bool) {
|
|
var user *protocol.User
|
|
var found bool
|
|
v.RLock()
|
|
user, found = v.cache[email]
|
|
v.RUnlock()
|
|
if !found {
|
|
v.Lock()
|
|
user, found = v.cache[email]
|
|
if !found {
|
|
account := &vmess.Account{
|
|
Id: uuid.New().String(),
|
|
AlterId: uint32(v.defaultAlterIDs),
|
|
}
|
|
user = &protocol.User{
|
|
Level: v.defaultLevel,
|
|
Email: email,
|
|
Account: serial.ToTypedMessage(account),
|
|
}
|
|
v.cache[email] = user
|
|
}
|
|
v.Unlock()
|
|
}
|
|
return user, found
|
|
}
|
|
|
|
// Inbound connection handler that handles messages in VMess format.
|
|
type VMessInboundHandler struct {
|
|
sync.RWMutex
|
|
packetDispatcher dispatcher.Interface
|
|
inboundHandlerManager proxyman.InboundHandlerManager
|
|
clients protocol.UserValidator
|
|
usersByEmail *userByEmail
|
|
detours *DetourConfig
|
|
}
|
|
|
|
func New(ctx context.Context, config *Config) (*VMessInboundHandler, error) {
|
|
space := app.SpaceFromContext(ctx)
|
|
if space == nil {
|
|
return nil, errors.New("VMess|Inbound: No space in context.")
|
|
}
|
|
|
|
allowedClients := vmess.NewTimedUserValidator(ctx, protocol.DefaultIDHash)
|
|
for _, user := range config.User {
|
|
allowedClients.Add(user)
|
|
}
|
|
|
|
handler := &VMessInboundHandler{
|
|
clients: allowedClients,
|
|
detours: config.Detour,
|
|
usersByEmail: NewUserByEmail(config.User, config.GetDefaultValue()),
|
|
}
|
|
|
|
space.OnInitialize(func() error {
|
|
handler.packetDispatcher = dispatcher.FromSpace(space)
|
|
if handler.packetDispatcher == nil {
|
|
return errors.New("VMess|Inbound: Dispatcher is not found in space.")
|
|
}
|
|
handler.inboundHandlerManager = proxyman.InboundHandlerManagerFromSpace(space)
|
|
if handler.inboundHandlerManager == nil {
|
|
return errors.New("VMess|Inbound: InboundHandlerManager is not found is space.")
|
|
}
|
|
return nil
|
|
})
|
|
|
|
return handler, nil
|
|
}
|
|
|
|
func (*VMessInboundHandler) Network() net.NetworkList {
|
|
return net.NetworkList{
|
|
Network: []net.Network{net.Network_TCP},
|
|
}
|
|
}
|
|
|
|
func (v *VMessInboundHandler) GetUser(email string) *protocol.User {
|
|
v.RLock()
|
|
defer v.RUnlock()
|
|
|
|
user, existing := v.usersByEmail.Get(email)
|
|
if !existing {
|
|
v.clients.Add(user)
|
|
}
|
|
return user
|
|
}
|
|
|
|
func transferRequest(timer *signal.ActivityTimer, session *encoding.ServerSession, request *protocol.RequestHeader, input io.Reader, output ray.OutputStream) error {
|
|
defer output.Close()
|
|
|
|
bodyReader := session.DecodeRequestBody(request, input)
|
|
if err := buf.PipeUntilEOF(timer, bodyReader, output); err != nil {
|
|
return err
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func transferResponse(timer *signal.ActivityTimer, session *encoding.ServerSession, request *protocol.RequestHeader, response *protocol.ResponseHeader, input ray.InputStream, output io.Writer) error {
|
|
session.EncodeResponseHeader(response, output)
|
|
|
|
bodyWriter := session.EncodeResponseBody(request, output)
|
|
|
|
// Optimize for small response packet
|
|
data, err := input.Read()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
if err := bodyWriter.Write(data); err != nil {
|
|
return err
|
|
}
|
|
data.Release()
|
|
|
|
if bufferedWriter, ok := output.(*bufio.BufferedWriter); ok {
|
|
if err := bufferedWriter.SetBuffered(false); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
|
|
if err := buf.PipeUntilEOF(timer, input, bodyWriter); err != nil {
|
|
return err
|
|
}
|
|
|
|
if request.Option.Has(protocol.RequestOptionChunkStream) {
|
|
if err := bodyWriter.Write(buf.NewLocal(8)); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (v *VMessInboundHandler) Process(ctx context.Context, network net.Network, connection internet.Connection) error {
|
|
connection.SetReadDeadline(time.Now().Add(time.Second * 8))
|
|
reader := bufio.NewReader(connection)
|
|
|
|
session := encoding.NewServerSession(v.clients)
|
|
request, err := session.DecodeRequestHeader(reader)
|
|
|
|
if err != nil {
|
|
if errors.Cause(err) != io.EOF {
|
|
log.Access(connection.RemoteAddr(), "", log.AccessRejected, err)
|
|
log.Info("VMess|Inbound: Invalid request from ", connection.RemoteAddr(), ": ", err)
|
|
}
|
|
connection.SetReusable(false)
|
|
return err
|
|
}
|
|
log.Access(connection.RemoteAddr(), request.Destination(), log.AccessAccepted, "")
|
|
log.Info("VMess|Inbound: Received request for ", request.Destination())
|
|
|
|
connection.SetReadDeadline(time.Time{})
|
|
|
|
connection.SetReusable(request.Option.Has(protocol.RequestOptionConnectionReuse))
|
|
userSettings := request.User.GetSettings()
|
|
|
|
ctx = proxy.ContextWithDestination(ctx, request.Destination())
|
|
ctx = protocol.ContextWithUser(ctx, request.User)
|
|
ctx, cancel := context.WithCancel(ctx)
|
|
timer := signal.CancelAfterInactivity(ctx, cancel, userSettings.PayloadTimeout)
|
|
ray := v.packetDispatcher.DispatchToOutbound(ctx)
|
|
|
|
input := ray.InboundInput()
|
|
output := ray.InboundOutput()
|
|
|
|
reader.SetBuffered(false)
|
|
|
|
requestDone := signal.ExecuteAsync(func() error {
|
|
return transferRequest(timer, session, request, reader, input)
|
|
})
|
|
|
|
writer := bufio.NewWriter(connection)
|
|
response := &protocol.ResponseHeader{
|
|
Command: v.generateCommand(ctx, request),
|
|
}
|
|
|
|
if connection.Reusable() {
|
|
response.Option.Set(protocol.ResponseOptionConnectionReuse)
|
|
}
|
|
|
|
responseDone := signal.ExecuteAsync(func() error {
|
|
return transferResponse(timer, session, request, response, output, writer)
|
|
})
|
|
|
|
if err := signal.ErrorOrFinish2(ctx, requestDone, responseDone); err != nil {
|
|
log.Info("VMess|Inbound: Connection ending with ", err)
|
|
connection.SetReusable(false)
|
|
input.CloseError()
|
|
output.CloseError()
|
|
return err
|
|
}
|
|
|
|
if err := writer.Flush(); err != nil {
|
|
log.Info("VMess|Inbound: Failed to flush remain data: ", err)
|
|
connection.SetReusable(false)
|
|
return err
|
|
}
|
|
|
|
runtime.KeepAlive(timer)
|
|
|
|
return nil
|
|
}
|
|
|
|
func (v *VMessInboundHandler) generateCommand(ctx context.Context, request *protocol.RequestHeader) protocol.ResponseCommand {
|
|
if v.detours != nil {
|
|
tag := v.detours.To
|
|
if v.inboundHandlerManager != nil {
|
|
handler, err := v.inboundHandlerManager.GetHandler(ctx, tag)
|
|
if err != nil {
|
|
log.Warning("VMess|Inbound: Failed to get detour handler: ", tag, err)
|
|
return nil
|
|
}
|
|
proxyHandler, port, availableMin := handler.GetRandomInboundProxy()
|
|
inboundHandler, ok := proxyHandler.(*VMessInboundHandler)
|
|
if ok {
|
|
if availableMin > 255 {
|
|
availableMin = 255
|
|
}
|
|
|
|
log.Info("VMessIn: Pick detour handler for port ", port, " for ", availableMin, " minutes.")
|
|
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
|
|
}
|
|
|
|
func init() {
|
|
common.Must(common.RegisterConfig((*Config)(nil), func(ctx context.Context, config interface{}) (interface{}, error) {
|
|
return New(ctx, config.(*Config))
|
|
}))
|
|
}
|