1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-30 07:46:41 -04:00
v2fly/proxy/vmess/vmessout.go

222 lines
6.2 KiB
Go
Raw Normal View History

2015-09-10 18:24:18 -04:00
package vmess
import (
2015-09-18 07:19:12 -04:00
"bytes"
2015-09-10 18:24:18 -04:00
"crypto/md5"
"crypto/rand"
mrand "math/rand"
"net"
2015-09-23 08:14:53 -04:00
"sync"
2015-09-10 18:24:18 -04:00
"github.com/v2ray/v2ray-core"
"github.com/v2ray/v2ray-core/common/alloc"
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"
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-09-10 18:24:18 -04:00
)
const (
InfoTimeNotSync = "Please check the User ID in your vmess configuration, and make sure the time on your local and remote server are in sync."
)
2015-09-12 16:11:54 -04:00
// VNext is the next Point server in the connection chain.
2015-09-12 05:51:42 -04:00
type VNextServer struct {
2015-09-20 12:22:29 -04:00
Destination v2net.Destination // Address of VNext server
Users []user.User // User accounts for accessing VNext.
2015-09-12 05:51:42 -04:00
}
2015-09-10 18:24:18 -04:00
type VMessOutboundHandler struct {
2015-10-02 15:55:37 -04:00
vPoint *core.Point
vNextList []VNextServer
vNextListUDP []VNextServer
2015-09-10 18:24:18 -04:00
}
2015-10-06 18:30:44 -04:00
func NewVMessOutboundHandler(vp *core.Point, vNextList, vNextListUDP []VNextServer) *VMessOutboundHandler {
2015-09-16 10:27:36 -04:00
return &VMessOutboundHandler{
2015-10-03 05:34:01 -04:00
vPoint: vp,
vNextList: vNextList,
vNextListUDP: vNextListUDP,
2015-09-16 10:27:36 -04:00
}
2015-09-10 18:24:18 -04:00
}
2015-10-02 15:55:37 -04:00
func pickVNext(serverList []VNextServer) (v2net.Destination, user.User) {
vNextLen := len(serverList)
2015-09-10 18:24:18 -04:00
if vNextLen == 0 {
2015-09-18 07:19:12 -04:00
panic("VMessOut: Zero vNext is configured.")
2015-09-10 18:24:18 -04:00
}
vNextIndex := 0
if vNextLen > 1 {
vNextIndex = mrand.Intn(vNextLen)
}
2015-10-02 15:55:37 -04:00
vNext := serverList[vNextIndex]
2015-09-10 18:24:18 -04:00
vNextUserLen := len(vNext.Users)
if vNextUserLen == 0 {
2015-09-18 07:19:12 -04:00
panic("VMessOut: Zero User account.")
2015-09-10 18:24:18 -04:00
}
vNextUserIndex := 0
if vNextUserLen > 1 {
vNextUserIndex = mrand.Intn(vNextUserLen)
}
2015-09-10 18:24:18 -04:00
vNextUser := vNext.Users[vNextUserIndex]
return vNext.Destination, vNextUser
2015-09-10 18:24:18 -04:00
}
2015-10-06 18:30:44 -04:00
func (handler *VMessOutboundHandler) Dispatch(firstPacket v2net.Packet, ray core.OutboundRay) error {
2015-10-03 05:34:01 -04:00
vNextList := handler.vNextList
2015-10-06 18:30:44 -04:00
if firstPacket.Destination().IsUDP() {
2015-10-03 05:34:01 -04:00
vNextList = handler.vNextListUDP
}
vNextAddress, vNextUser := pickVNext(vNextList)
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-09-16 10:27:36 -04:00
UserId: vNextUser.Id,
2015-09-20 12:22:29 -04:00
Command: command,
2015-10-06 18:30:44 -04:00
Address: firstPacket.Destination().Address(),
2015-09-16 10:27:36 -04:00
}
buffer := make([]byte, 36) // 16 + 16 + 4
rand.Read(buffer)
request.RequestIV = buffer[:16]
request.RequestKey = buffer[16:32]
request.ResponseHeader = buffer[32:]
2015-09-10 18:24:18 -04:00
2015-10-06 18:30:44 -04:00
go startCommunicate(request, vNextAddress, ray, firstPacket)
2015-09-12 14:36:21 -04:00
return nil
}
func startCommunicate(request *protocol.VMessRequest, dest v2net.Destination, ray core.OutboundRay, firstPacket v2net.Packet) error {
2015-10-03 05:34:01 -04:00
conn, err := net.Dial(dest.Network(), dest.Address().String())
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-10-03 05:34:01 -04:00
go handleResponse(conn, request, output, &responseFinish, dest.IsUDP())
2015-09-23 08:14:53 -04:00
requestFinish.Lock()
2015-10-03 05:34:01 -04:00
if tcpConn, ok := conn.(*net.TCPConn); ok {
tcpConn.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()
encryptRequestWriter, err := v2io.NewAesEncryptWriter(request.RequestKey[:], request.RequestIV[:], conn)
2015-09-12 14:36:21 -04:00
if err != nil {
2015-09-18 07:19:12 -04:00
log.Error("VMessOut: Failed to create encrypt writer: %v", err)
return
2015-09-12 14:36:21 -04:00
}
2015-09-15 18:06:22 -04:00
buffer := alloc.NewBuffer()
buffer.Clear()
requestBytes, err := request.ToBytes(user.NewTimeHash(user.HMACHash{}), user.GenerateRandomInt64InRange, buffer.Value)
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 {
encryptRequestWriter.Crypt(firstChunk.Value)
requestBytes = append(requestBytes, firstChunk.Value...)
firstChunk.Release()
_, err = conn.Write(requestBytes)
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
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
decryptResponseReader, err := v2io.NewAesDecryptReader(responseKey[:], responseIV[:], conn)
2015-09-12 14:36:21 -04:00
if err != nil {
2015-09-18 07:19:12 -04:00
log.Error("VMessOut: Failed to create decrypt reader: %v", err)
return
2015-09-12 14:36:21 -04:00
}
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
}
if buffer.Len() < 4 || !bytes.Equal(buffer.Value[:4], request.ResponseHeader[:]) {
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
buffer.SliceFrom(4)
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 {
}
2015-10-06 18:30:44 -04:00
func (factory *VMessOutboundHandlerFactory) Create(vp *core.Point, rawConfig interface{}) (core.OutboundConnectionHandler, error) {
2015-10-06 17:11:08 -04:00
config := rawConfig.(*VMessOutboundConfig)
2015-09-12 05:51:42 -04:00
servers := make([]VNextServer, 0, len(config.VNextList))
2015-10-02 15:55:37 -04:00
udpServers := make([]VNextServer, 0, len(config.VNextList))
2015-09-12 05:51:42 -04:00
for _, server := range config.VNextList {
2015-10-02 15:55:37 -04:00
if server.HasNetwork("tcp") {
2015-10-06 10:43:50 -04:00
servers = append(servers, server.ToVNextServer("tcp"))
2015-10-02 15:55:37 -04:00
}
if server.HasNetwork("udp") {
2015-10-06 10:43:50 -04:00
udpServers = append(udpServers, server.ToVNextServer("udp"))
2015-10-02 15:55:37 -04:00
}
2015-09-12 05:51:42 -04:00
}
2015-10-06 18:30:44 -04:00
return NewVMessOutboundHandler(vp, servers, udpServers), nil
2015-09-12 14:36:21 -04:00
}
func init() {
core.RegisterOutboundConnectionHandlerFactory("vmess", &VMessOutboundHandlerFactory{})
2015-09-10 18:24:18 -04:00
}