1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-28 23:06:14 -04:00
v2fly/proxy/vmess/outbound/outbound.go

210 lines
6.2 KiB
Go
Raw Normal View History

2015-12-04 06:07:32 -05:00
package outbound
2015-09-10 18:24:18 -04:00
import (
"crypto/md5"
"crypto/rand"
"net"
2015-09-23 08:14:53 -04:00
"sync"
2015-09-10 18:24:18 -04:00
2015-12-06 05:00:10 -05:00
"github.com/v2ray/v2ray-core/app"
"github.com/v2ray/v2ray-core/common/alloc"
2015-11-03 15:26:16 -05:00
v2crypto "github.com/v2ray/v2ray-core/common/crypto"
2015-09-19 18:50:21 -04:00
"github.com/v2ray/v2ray-core/common/log"
v2net "github.com/v2ray/v2ray-core/common/net"
"github.com/v2ray/v2ray-core/proxy"
"github.com/v2ray/v2ray-core/proxy/common/connhandler"
2015-09-19 18:11:14 -04:00
"github.com/v2ray/v2ray-core/proxy/vmess/protocol"
2015-09-19 18:50:21 -04:00
"github.com/v2ray/v2ray-core/proxy/vmess/protocol/user"
2015-10-14 08:51:19 -04:00
"github.com/v2ray/v2ray-core/transport/ray"
2015-09-10 18:24:18 -04:00
)
type VMessOutboundHandler struct {
2015-12-04 19:16:21 -05:00
receiverManager *ReceiverManager
space app.Space
2015-09-10 18:24:18 -04:00
}
2015-11-27 15:57:15 -05:00
func (this *VMessOutboundHandler) Dispatch(firstPacket v2net.Packet, ray ray.OutboundRay) error {
2015-12-04 19:16:21 -05:00
vNextAddress, vNextUser := this.receiverManager.PickReceiver()
2015-09-10 18:24:18 -04:00
2015-09-20 12:22:29 -04:00
command := protocol.CmdTCP
2015-10-06 18:30:44 -04:00
if firstPacket.Destination().IsUDP() {
2015-09-20 12:22:29 -04:00
command = protocol.CmdUDP
}
request := &protocol.VMessRequest{
Version: protocol.Version,
2015-10-31 09:08:13 -04:00
User: vNextUser,
2015-09-20 12:22:29 -04:00
Command: command,
2015-10-06 18:30:44 -04:00
Address: firstPacket.Destination().Address(),
2015-12-16 17:53:38 -05:00
Port: firstPacket.Destination().Port(),
2015-09-16 10:27:36 -04:00
}
2015-10-21 16:38:53 -04:00
buffer := alloc.NewSmallBuffer()
defer buffer.Release()
v2net.ReadAllBytes(rand.Reader, buffer.Value[:36]) // 16 + 16 + 4
request.RequestIV = buffer.Value[:16]
request.RequestKey = buffer.Value[16:32]
request.ResponseHeader = buffer.Value[32:36]
2015-09-10 18:24:18 -04:00
2015-10-09 19:25:12 -04:00
return startCommunicate(request, vNextAddress, ray, firstPacket)
2015-09-12 14:36:21 -04:00
}
2015-12-16 17:53:38 -05:00
func startCommunicate(request *protocol.VMessRequest, dest v2net.Destination, ray ray.OutboundRay, firstPacket v2net.Packet) error {
var destIp net.IP
if dest.Address().IsIPv4() || dest.Address().IsIPv6() {
destIp = dest.Address().IP()
} else {
ips, err := net.LookupIP(dest.Address().Domain())
if err != nil {
return err
}
destIp = ips[0]
}
conn, err := net.DialTCP("tcp", nil, &net.TCPAddr{
IP: destIp,
Port: int(dest.Port()),
})
2015-09-10 18:24:18 -04:00
if err != nil {
2015-10-03 05:34:01 -04:00
log.Error("Failed to open %s: %v", dest.String(), err)
if ray != nil {
close(ray.OutboundOutput())
}
2015-09-10 18:24:18 -04:00
return err
}
2015-10-06 10:43:50 -04:00
log.Info("VMessOut: Tunneling request to %s via %s", request.Address.String(), dest.String())
2015-09-10 18:24:18 -04:00
defer conn.Close()
2015-09-15 18:06:22 -04:00
input := ray.OutboundInput()
output := ray.OutboundOutput()
2015-09-23 08:14:53 -04:00
var requestFinish, responseFinish sync.Mutex
requestFinish.Lock()
responseFinish.Lock()
2015-09-15 18:06:22 -04:00
2015-10-02 09:32:26 -04:00
go handleRequest(conn, request, firstPacket, input, &requestFinish)
2015-12-04 19:16:21 -05:00
go handleResponse(conn, request, output, &responseFinish, (request.Command == protocol.CmdUDP))
2015-09-23 08:14:53 -04:00
requestFinish.Lock()
2015-12-16 17:53:38 -05:00
conn.CloseWrite()
2015-09-23 08:14:53 -04:00
responseFinish.Lock()
return nil
}
func handleRequest(conn net.Conn, request *protocol.VMessRequest, firstPacket v2net.Packet, input <-chan *alloc.Buffer, finish *sync.Mutex) {
2015-09-23 08:14:53 -04:00
defer finish.Unlock()
2015-11-03 15:26:16 -05:00
aesStream, err := v2crypto.NewAesEncryptionStream(request.RequestKey[:], request.RequestIV[:])
2015-09-12 14:36:21 -04:00
if err != nil {
2015-11-03 15:26:16 -05:00
log.Error("VMessOut: Failed to create AES encryption stream: %v", err)
2015-09-18 07:19:12 -04:00
return
2015-09-12 14:36:21 -04:00
}
2015-11-03 15:26:16 -05:00
encryptRequestWriter := v2crypto.NewCryptionWriter(aesStream, conn)
2015-09-15 18:06:22 -04:00
2015-10-10 10:54:15 -04:00
buffer := alloc.NewBuffer().Clear()
2015-10-21 16:28:26 -04:00
buffer, err = request.ToBytes(user.NewTimeHash(user.HMACHash{}), user.GenerateRandomInt64InRange, buffer)
if err != nil {
log.Error("VMessOut: Failed to serialize VMess request: %v", err)
2015-09-18 07:19:12 -04:00
return
}
2015-09-18 06:31:42 -04:00
// Send first packet of payload together with request, in favor of small requests.
2015-10-02 09:32:26 -04:00
firstChunk := firstPacket.Chunk()
moreChunks := firstPacket.MoreChunks()
if firstChunk == nil && moreChunks {
firstChunk, moreChunks = <-input
}
if firstChunk != nil {
2015-11-03 15:26:16 -05:00
aesStream.XORKeyStream(firstChunk.Value, firstChunk.Value)
2015-10-21 16:28:26 -04:00
buffer.Append(firstChunk.Value)
firstChunk.Release()
2015-10-21 16:28:26 -04:00
_, err = conn.Write(buffer.Value)
buffer.Release()
2015-09-18 06:31:42 -04:00
if err != nil {
log.Error("VMessOut: Failed to write VMess request: %v", err)
2015-09-18 07:19:12 -04:00
return
2015-09-18 06:31:42 -04:00
}
2015-10-02 09:32:26 -04:00
}
2015-09-18 06:31:42 -04:00
2015-10-02 09:32:26 -04:00
if moreChunks {
2015-09-18 06:31:42 -04:00
v2net.ChanToWriter(encryptRequestWriter, input)
}
2015-09-18 07:19:12 -04:00
return
}
2015-09-10 18:24:18 -04:00
2015-11-28 04:11:56 -05:00
func headerMatch(request *protocol.VMessRequest, responseHeader []byte) bool {
return ((request.ResponseHeader[0] ^ request.ResponseHeader[1]) == responseHeader[0]) &&
((request.ResponseHeader[2] ^ request.ResponseHeader[3]) == responseHeader[1])
2015-11-28 04:11:56 -05:00
}
func handleResponse(conn net.Conn, request *protocol.VMessRequest, output chan<- *alloc.Buffer, finish *sync.Mutex, isUDP bool) {
2015-09-23 08:14:53 -04:00
defer finish.Unlock()
defer close(output)
2015-09-15 18:06:22 -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.NewAesDecryptionStream(responseKey[:], responseIV[:])
2015-09-12 14:36:21 -04:00
if err != nil {
2015-11-03 15:26:16 -05:00
log.Error("VMessOut: Failed to create AES encryption stream: %v", err)
2015-09-18 07:19:12 -04:00
return
2015-09-12 14:36:21 -04:00
}
2015-11-03 15:26:16 -05:00
decryptResponseReader := v2crypto.NewCryptionReader(aesStream, conn)
2015-10-06 03:35:02 -04:00
buffer, err := v2net.ReadFrom(decryptResponseReader, nil)
2015-09-10 18:24:18 -04:00
if err != nil {
log.Error("VMessOut: Failed to read VMess response (%d bytes): %v", buffer.Len(), err)
2015-09-18 07:19:12 -04:00
return
}
2015-11-28 04:11:56 -05:00
if buffer.Len() < 4 || !headerMatch(request, buffer.Value[:2]) {
2015-09-18 07:19:12 -04:00
log.Warning("VMessOut: unexepcted response header. The connection is probably hijacked.")
return
2015-09-10 18:24:18 -04:00
}
log.Info("VMessOut received %d bytes from %s", buffer.Len()-4, conn.RemoteAddr().String())
2015-09-15 18:06:22 -04:00
responseBegin := 4
if buffer.Value[2] != 0 {
dataLen := int(buffer.Value[3])
if buffer.Len() < dataLen+4 { // Rare case
diffBuffer := make([]byte, dataLen+4-buffer.Len())
v2net.ReadAllBytes(decryptResponseReader, diffBuffer)
buffer.Append(diffBuffer)
}
command := buffer.Value[2]
data := buffer.Value[4 : 4+dataLen]
go handleCommand(command, data)
responseBegin = 4 + dataLen
}
buffer.SliceFrom(responseBegin)
output <- buffer
2015-10-03 05:34:01 -04:00
if !isUDP {
v2net.ReaderToChan(output, decryptResponseReader)
}
2015-09-18 07:19:12 -04:00
return
2015-09-10 18:24:18 -04:00
}
type VMessOutboundHandlerFactory struct {
}
func (this *VMessOutboundHandlerFactory) Create(space app.Space, rawConfig interface{}) (connhandler.OutboundConnectionHandler, error) {
2015-12-07 14:32:38 -05:00
vOutConfig := rawConfig.(Config)
2015-12-04 19:16:21 -05:00
return &VMessOutboundHandler{
2015-12-06 05:00:10 -05:00
space: space,
2015-12-04 19:16:21 -05:00
receiverManager: NewReceiverManager(vOutConfig.Receivers()),
}, nil
2015-09-12 14:36:21 -04:00
}
func init() {
if err := proxy.RegisterOutboundConnectionHandlerFactory("vmess", func(space app.Space, rawConfig interface{}) (connhandler.OutboundConnectionHandler, error) {
vOutConfig := rawConfig.(Config)
return &VMessOutboundHandler{
space: space,
receiverManager: NewReceiverManager(vOutConfig.Receivers()),
}, nil
}); err != nil {
panic(err)
}
2015-09-10 18:24:18 -04:00
}