1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-27 22:36:12 -04:00
v2fly/proxy/vmess/inbound/inbound.go

190 lines
5.5 KiB
Go
Raw Normal View History

package inbound
2015-09-10 18:24:18 -04:00
import (
"crypto/md5"
"io"
2015-09-23 08:14:53 -04:00
"sync"
2015-09-10 18:24:18 -04:00
2015-10-14 08:51:19 -04:00
"github.com/v2ray/v2ray-core/app"
2016-01-31 11:01:28 -05:00
"github.com/v2ray/v2ray-core/app/dispatcher"
"github.com/v2ray/v2ray-core/app/proxyman"
"github.com/v2ray/v2ray-core/common/alloc"
2015-11-03 15:26:16 -05:00
v2crypto "github.com/v2ray/v2ray-core/common/crypto"
2016-01-29 08:39:55 -05:00
v2io "github.com/v2ray/v2ray-core/common/io"
2015-09-19 18:50:21 -04:00
"github.com/v2ray/v2ray-core/common/log"
v2net "github.com/v2ray/v2ray-core/common/net"
proto "github.com/v2ray/v2ray-core/common/protocol"
2016-01-18 06:31:27 -05:00
"github.com/v2ray/v2ray-core/common/serial"
2016-01-02 17:32:18 -05:00
"github.com/v2ray/v2ray-core/proxy"
2016-01-02 17:08:36 -05:00
"github.com/v2ray/v2ray-core/proxy/internal"
2016-02-01 06:22:29 -05:00
vmessio "github.com/v2ray/v2ray-core/proxy/vmess/io"
2015-09-19 18:11:14 -04:00
"github.com/v2ray/v2ray-core/proxy/vmess/protocol"
2016-01-28 11:08:32 -05:00
"github.com/v2ray/v2ray-core/transport/hub"
2015-09-10 18:24:18 -04:00
)
// Inbound connection handler that handles messages in VMess format.
2015-09-10 18:24:18 -04:00
type VMessInboundHandler struct {
sync.Mutex
2016-01-31 11:01:28 -05:00
packetDispatcher dispatcher.PacketDispatcher
inboundHandlerManager proxyman.InboundHandlerManager
clients protocol.UserSet
user *proto.User
2016-01-31 11:01:28 -05:00
accepting bool
listener *hub.TCPHub
features *FeaturesConfig
listeningPort v2net.Port
2015-09-10 18:24:18 -04:00
}
2016-01-19 17:41:40 -05:00
func (this *VMessInboundHandler) Port() v2net.Port {
return this.listeningPort
2015-09-10 18:24:18 -04:00
}
func (this *VMessInboundHandler) Close() {
this.accepting = false
if this.listener != nil {
2016-01-22 11:56:19 -05:00
this.Lock()
this.listener.Close()
2016-01-03 18:33:25 -05:00
this.listener = nil
this.Unlock()
}
}
func (this *VMessInboundHandler) GetUser() *proto.User {
2016-01-19 17:41:40 -05:00
return this.user
2016-01-08 18:10:57 -05:00
}
2015-12-02 15:44:01 -05:00
func (this *VMessInboundHandler) Listen(port v2net.Port) error {
2016-01-19 17:41:40 -05:00
if this.accepting {
if this.listeningPort == port {
return nil
} else {
return proxy.ErrorAlreadyListening
}
}
this.listeningPort = port
2016-01-28 11:08:32 -05:00
tcpListener, err := hub.ListenTCP(port, this.HandleConnection)
2015-09-10 18:24:18 -04:00
if err != nil {
2016-01-18 06:24:33 -05:00
log.Error("Unable to listen tcp port ", port, ": ", err)
return err
2015-09-10 18:24:18 -04:00
}
2015-11-27 15:57:15 -05:00
this.accepting = true
2016-01-04 02:40:24 -05:00
this.Lock()
this.listener = tcpListener
2016-01-04 02:40:24 -05:00
this.Unlock()
2015-09-10 18:24:18 -04:00
return nil
}
2016-01-28 11:08:32 -05:00
func (this *VMessInboundHandler) HandleConnection(connection *hub.TCPConn) {
2015-09-10 18:24:18 -04:00
defer connection.Close()
2015-09-14 12:19:17 -04:00
connReader := v2net.NewTimeOutReader(16, connection)
2015-11-27 15:57:15 -05:00
requestReader := protocol.NewVMessRequestReader(this.clients)
2015-09-10 18:24:18 -04:00
2015-09-24 08:51:19 -04:00
request, err := requestReader.Read(connReader)
2015-09-10 18:24:18 -04:00
if err != nil {
2016-01-18 06:31:27 -05:00
log.Access(connection.RemoteAddr(), serial.StringLiteral(""), log.AccessRejected, serial.StringLiteral(err.Error()))
2016-01-18 06:24:33 -05:00
log.Warning("VMessIn: Invalid request from ", connection.RemoteAddr(), ": ", err)
return
2015-09-10 18:24:18 -04:00
}
2016-02-22 11:10:11 -05:00
log.Access(connection.RemoteAddr(), request.Destination(), log.AccessAccepted, serial.StringLiteral(""))
log.Debug("VMessIn: Received request for ", request.Destination())
2015-09-10 18:24:18 -04:00
2016-01-31 11:01:28 -05:00
ray := this.packetDispatcher.DispatchToOutbound(v2net.NewPacket(request.Destination(), nil, true))
input := ray.InboundInput()
output := ray.InboundOutput()
2015-09-23 08:14:53 -04:00
var readFinish, writeFinish sync.Mutex
readFinish.Lock()
writeFinish.Lock()
2015-09-10 18:24:18 -04:00
userSettings := proto.GetUserSettings(request.User.Level)
2015-10-31 04:39:45 -04:00
connReader.SetTimeOut(userSettings.PayloadReadTimeout)
2015-09-24 08:51:19 -04:00
go handleInput(request, connReader, input, &readFinish)
2015-10-07 08:58:31 -04:00
responseKey := md5.Sum(request.RequestKey)
responseIV := md5.Sum(request.RequestIV)
2015-09-10 18:24:18 -04:00
2015-11-03 15:26:16 -05:00
aesStream, err := v2crypto.NewAesEncryptionStream(responseKey[:], responseIV[:])
2015-09-10 18:24:18 -04:00
if err != nil {
2016-01-18 06:24:33 -05:00
log.Error("VMessIn: Failed to create AES decryption stream: ", err)
close(input)
return
2015-09-10 18:24:18 -04:00
}
2015-11-03 15:26:16 -05:00
responseWriter := v2crypto.NewCryptionWriter(aesStream, connection)
// Optimize for small response packet
2015-10-10 10:50:19 -04:00
buffer := alloc.NewLargeBuffer().Clear()
2016-01-04 07:01:32 -05:00
defer buffer.Release()
buffer.AppendBytes(request.ResponseHeader, byte(0))
2016-01-21 11:22:56 -05:00
this.generateCommand(buffer)
2015-09-18 06:31:42 -04:00
if data, open := <-output; open {
2016-02-01 06:22:29 -05:00
if request.IsChunkStream() {
vmessio.Authenticate(data)
}
2015-10-08 11:41:38 -04:00
buffer.Append(data.Value)
data.Release()
responseWriter.Write(buffer.Value)
2016-02-01 06:22:29 -05:00
go func(finish *sync.Mutex) {
2016-02-03 15:36:52 -05:00
var writer v2io.Writer = v2io.NewAdaptiveWriter(responseWriter)
2016-02-01 06:22:29 -05:00
if request.IsChunkStream() {
writer = vmessio.NewAuthChunkWriter(writer)
}
v2io.ChanToWriter(writer, output)
finish.Unlock()
}(&writeFinish)
2015-09-23 08:14:53 -04:00
writeFinish.Lock()
}
2015-09-18 06:31:42 -04:00
2015-10-07 19:39:50 -04:00
connection.CloseWrite()
2015-09-23 08:14:53 -04:00
readFinish.Lock()
2015-09-10 18:24:18 -04:00
}
func handleInput(request *protocol.VMessRequest, reader io.Reader, input chan<- *alloc.Buffer, finish *sync.Mutex) {
defer close(input)
2015-09-23 08:14:53 -04:00
defer finish.Unlock()
2015-11-03 15:26:16 -05:00
aesStream, err := v2crypto.NewAesDecryptionStream(request.RequestKey, request.RequestIV)
if err != nil {
2016-01-18 06:24:33 -05:00
log.Error("VMessIn: Failed to create AES decryption stream: ", err)
return
}
2016-02-01 06:22:29 -05:00
descriptionReader := v2crypto.NewCryptionReader(aesStream, reader)
var requestReader v2io.Reader
if request.IsChunkStream() {
requestReader = vmessio.NewAuthChunkReader(descriptionReader)
} else {
requestReader = v2io.NewAdaptiveReader(descriptionReader)
}
v2io.ReaderToChan(input, requestReader)
2015-09-10 18:24:18 -04:00
}
func init() {
2016-01-25 11:29:26 -05:00
internal.MustRegisterInboundHandlerCreator("vmess",
func(space app.Space, rawConfig interface{}) (proxy.InboundHandler, error) {
2016-01-31 11:01:28 -05:00
if !space.HasApp(dispatcher.APP_ID) {
return nil, internal.ErrorBadConfiguration
}
config := rawConfig.(*Config)
2016-01-12 05:52:40 -05:00
allowedClients := protocol.NewTimedUserSet()
for _, user := range config.AllowedUsers {
allowedClients.AddUser(user)
}
2015-10-06 17:11:08 -04:00
2016-01-31 11:01:28 -05:00
handler := &VMessInboundHandler{
packetDispatcher: space.GetApp(dispatcher.APP_ID).(dispatcher.PacketDispatcher),
clients: allowedClients,
features: config.Features,
user: config.AllowedUsers[0],
}
if space.HasApp(proxyman.APP_ID_INBOUND_MANAGER) {
handler.inboundHandlerManager = space.GetApp(proxyman.APP_ID_INBOUND_MANAGER).(proxyman.InboundHandlerManager)
}
return handler, nil
})
2015-09-10 18:24:18 -04:00
}