1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-29 18:45:23 +00:00
v2fly/proxy/vmess/vmessout.go

211 lines
5.9 KiB
Go
Raw Normal View History

2015-09-10 22:24:18 +00:00
package vmess
import (
2015-09-18 11:19:12 +00:00
"bytes"
2015-09-10 22:24:18 +00:00
"crypto/md5"
"crypto/rand"
mrand "math/rand"
"net"
2015-09-23 12:14:53 +00:00
"sync"
2015-09-10 22:24:18 +00:00
"github.com/v2ray/v2ray-core/common/alloc"
v2io "github.com/v2ray/v2ray-core/common/io"
2015-09-19 22:50:21 +00:00
"github.com/v2ray/v2ray-core/common/log"
v2net "github.com/v2ray/v2ray-core/common/net"
"github.com/v2ray/v2ray-core/proxy/common/connhandler"
2015-10-16 10:03:22 +00:00
"github.com/v2ray/v2ray-core/proxy/vmess/config"
2015-09-19 22:11:14 +00:00
"github.com/v2ray/v2ray-core/proxy/vmess/protocol"
2015-09-19 22:50:21 +00:00
"github.com/v2ray/v2ray-core/proxy/vmess/protocol/user"
2015-10-14 12:51:19 +00:00
"github.com/v2ray/v2ray-core/transport/ray"
2015-09-10 22:24:18 +00:00
)
type VMessOutboundHandler struct {
2015-10-16 10:03:22 +00:00
vNextList []*config.OutboundTarget
vNextListUDP []*config.OutboundTarget
2015-09-10 22:24:18 +00:00
}
2015-10-16 10:03:22 +00:00
func NewVMessOutboundHandler(vNextList, vNextListUDP []*config.OutboundTarget) *VMessOutboundHandler {
2015-09-16 14:27:36 +00:00
return &VMessOutboundHandler{
2015-10-03 09:34:01 +00:00
vNextList: vNextList,
vNextListUDP: vNextListUDP,
2015-09-16 14:27:36 +00:00
}
2015-09-10 22:24:18 +00:00
}
2015-10-16 10:03:22 +00:00
func pickVNext(serverList []*config.OutboundTarget) (v2net.Destination, config.User) {
2015-10-02 19:55:37 +00:00
vNextLen := len(serverList)
2015-09-10 22:24:18 +00:00
if vNextLen == 0 {
2015-09-18 11:19:12 +00:00
panic("VMessOut: Zero vNext is configured.")
2015-09-10 22:24:18 +00:00
}
vNextIndex := 0
if vNextLen > 1 {
vNextIndex = mrand.Intn(vNextLen)
}
2015-10-02 19:55:37 +00:00
vNext := serverList[vNextIndex]
2015-10-16 10:03:22 +00:00
vNextUserLen := len(vNext.Accounts)
2015-09-10 22:24:18 +00:00
if vNextUserLen == 0 {
2015-09-18 11:19:12 +00:00
panic("VMessOut: Zero User account.")
2015-09-10 22:24:18 +00:00
}
vNextUserIndex := 0
if vNextUserLen > 1 {
vNextUserIndex = mrand.Intn(vNextUserLen)
}
2015-10-16 10:03:22 +00:00
vNextUser := vNext.Accounts[vNextUserIndex]
return vNext.Destination, vNextUser
2015-09-10 22:24:18 +00:00
}
2015-10-14 12:51:19 +00:00
func (handler *VMessOutboundHandler) Dispatch(firstPacket v2net.Packet, ray ray.OutboundRay) error {
2015-10-03 09:34:01 +00:00
vNextList := handler.vNextList
2015-10-06 22:30:44 +00:00
if firstPacket.Destination().IsUDP() {
2015-10-03 09:34:01 +00:00
vNextList = handler.vNextListUDP
}
vNextAddress, vNextUser := pickVNext(vNextList)
2015-09-10 22:24:18 +00:00
2015-09-20 16:22:29 +00:00
command := protocol.CmdTCP
2015-10-06 22:30:44 +00:00
if firstPacket.Destination().IsUDP() {
2015-09-20 16:22:29 +00:00
command = protocol.CmdUDP
}
request := &protocol.VMessRequest{
Version: protocol.Version,
2015-10-31 13:08:13 +00:00
User: vNextUser,
2015-09-20 16:22:29 +00:00
Command: command,
2015-10-06 22:30:44 +00:00
Address: firstPacket.Destination().Address(),
2015-09-16 14:27:36 +00:00
}
2015-10-21 20:38:53 +00: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 22:24:18 +00:00
2015-10-09 23:25:12 +00:00
return startCommunicate(request, vNextAddress, ray, firstPacket)
2015-09-12 18:36:21 +00:00
}
2015-10-14 12:51:19 +00:00
func startCommunicate(request *protocol.VMessRequest, dest v2net.Destination, ray ray.OutboundRay, firstPacket v2net.Packet) error {
2015-10-03 09:34:01 +00:00
conn, err := net.Dial(dest.Network(), dest.Address().String())
2015-09-10 22:24:18 +00:00
if err != nil {
2015-10-03 09:34:01 +00:00
log.Error("Failed to open %s: %v", dest.String(), err)
if ray != nil {
close(ray.OutboundOutput())
}
2015-09-10 22:24:18 +00:00
return err
}
2015-10-06 14:43:50 +00:00
log.Info("VMessOut: Tunneling request to %s via %s", request.Address.String(), dest.String())
2015-09-10 22:24:18 +00:00
defer conn.Close()
2015-09-15 22:06:22 +00:00
input := ray.OutboundInput()
output := ray.OutboundOutput()
2015-09-23 12:14:53 +00:00
var requestFinish, responseFinish sync.Mutex
requestFinish.Lock()
responseFinish.Lock()
2015-09-15 22:06:22 +00:00
2015-10-02 13:32:26 +00:00
go handleRequest(conn, request, firstPacket, input, &requestFinish)
2015-10-03 09:34:01 +00:00
go handleResponse(conn, request, output, &responseFinish, dest.IsUDP())
2015-09-23 12:14:53 +00:00
requestFinish.Lock()
2015-10-03 09:34:01 +00:00
if tcpConn, ok := conn.(*net.TCPConn); ok {
tcpConn.CloseWrite()
}
2015-09-23 12:14:53 +00: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 12:14:53 +00:00
defer finish.Unlock()
encryptRequestWriter, err := v2io.NewAesEncryptWriter(request.RequestKey[:], request.RequestIV[:], conn)
2015-09-12 18:36:21 +00:00
if err != nil {
2015-09-18 11:19:12 +00:00
log.Error("VMessOut: Failed to create encrypt writer: %v", err)
return
2015-09-12 18:36:21 +00:00
}
2015-09-15 22:06:22 +00:00
2015-10-10 14:54:15 +00:00
buffer := alloc.NewBuffer().Clear()
2015-10-21 20:28:26 +00: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 11:19:12 +00:00
return
}
2015-09-18 10:31:42 +00:00
// Send first packet of payload together with request, in favor of small requests.
2015-10-02 13:32:26 +00:00
firstChunk := firstPacket.Chunk()
moreChunks := firstPacket.MoreChunks()
if firstChunk == nil && moreChunks {
firstChunk, moreChunks = <-input
}
if firstChunk != nil {
encryptRequestWriter.Crypt(firstChunk.Value)
2015-10-21 20:28:26 +00:00
buffer.Append(firstChunk.Value)
firstChunk.Release()
2015-10-21 20:28:26 +00:00
_, err = conn.Write(buffer.Value)
buffer.Release()
2015-09-18 10:31:42 +00:00
if err != nil {
log.Error("VMessOut: Failed to write VMess request: %v", err)
2015-09-18 11:19:12 +00:00
return
2015-09-18 10:31:42 +00:00
}
2015-10-02 13:32:26 +00:00
}
2015-09-18 10:31:42 +00:00
2015-10-02 13:32:26 +00:00
if moreChunks {
2015-09-18 10:31:42 +00:00
v2net.ChanToWriter(encryptRequestWriter, input)
}
2015-09-18 11:19:12 +00:00
return
}
2015-09-10 22:24:18 +00:00
func handleResponse(conn net.Conn, request *protocol.VMessRequest, output chan<- *alloc.Buffer, finish *sync.Mutex, isUDP bool) {
2015-09-23 12:14:53 +00:00
defer finish.Unlock()
defer close(output)
2015-09-15 22:06:22 +00:00
responseKey := md5.Sum(request.RequestKey[:])
responseIV := md5.Sum(request.RequestIV[:])
2015-09-10 22:24:18 +00:00
decryptResponseReader, err := v2io.NewAesDecryptReader(responseKey[:], responseIV[:], conn)
2015-09-12 18:36:21 +00:00
if err != nil {
2015-09-18 11:19:12 +00:00
log.Error("VMessOut: Failed to create decrypt reader: %v", err)
return
2015-09-12 18:36:21 +00:00
}
2015-10-06 07:35:02 +00:00
buffer, err := v2net.ReadFrom(decryptResponseReader, nil)
2015-09-10 22:24:18 +00:00
if err != nil {
log.Error("VMessOut: Failed to read VMess response (%d bytes): %v", buffer.Len(), err)
2015-09-18 11:19:12 +00:00
return
}
if buffer.Len() < 4 || !bytes.Equal(buffer.Value[:4], request.ResponseHeader[:]) {
2015-09-18 11:19:12 +00:00
log.Warning("VMessOut: unexepcted response header. The connection is probably hijacked.")
return
2015-09-10 22:24:18 +00:00
}
log.Info("VMessOut received %d bytes from %s", buffer.Len()-4, conn.RemoteAddr().String())
2015-09-15 22:06:22 +00:00
buffer.SliceFrom(4)
output <- buffer
2015-10-03 09:34:01 +00:00
if !isUDP {
v2net.ReaderToChan(output, decryptResponseReader)
}
2015-09-18 11:19:12 +00:00
return
2015-09-10 22:24:18 +00:00
}
type VMessOutboundHandlerFactory struct {
}
func (factory *VMessOutboundHandlerFactory) Create(rawConfig interface{}) (connhandler.OutboundConnectionHandler, error) {
2015-10-16 10:03:22 +00:00
vOutConfig := rawConfig.(config.Outbound)
servers := make([]*config.OutboundTarget, 0, 16)
udpServers := make([]*config.OutboundTarget, 0, 16)
for _, target := range vOutConfig.Targets() {
if target.Destination.IsTCP() {
servers = append(servers, target)
2015-10-02 19:55:37 +00:00
}
2015-10-16 10:03:22 +00:00
if target.Destination.IsUDP() {
udpServers = append(udpServers, target)
2015-10-02 19:55:37 +00:00
}
2015-09-12 09:51:42 +00:00
}
2015-10-14 12:51:19 +00:00
return NewVMessOutboundHandler(servers, udpServers), nil
2015-09-12 18:36:21 +00:00
}
func init() {
connhandler.RegisterOutboundConnectionHandlerFactory("vmess", &VMessOutboundHandlerFactory{})
2015-09-10 22:24:18 +00:00
}