v2fly/proxy/vmess/encoding/commands.go

148 lines
3.7 KiB
Go
Raw Normal View History

2016-07-23 11:17:51 +00:00
package encoding
2016-02-26 23:05:53 +00:00
import (
2018-11-02 14:47:58 +00:00
"encoding/binary"
2016-02-26 23:05:53 +00:00
"io"
2021-02-16 20:31:50 +00:00
"github.com/v2fly/v2ray-core/v4/common"
"github.com/v2fly/v2ray-core/v4/common/buf"
"github.com/v2fly/v2ray-core/v4/common/net"
"github.com/v2fly/v2ray-core/v4/common/protocol"
"github.com/v2fly/v2ray-core/v4/common/serial"
"github.com/v2fly/v2ray-core/v4/common/uuid"
2016-02-26 23:05:53 +00:00
)
var (
2017-04-08 23:43:25 +00:00
ErrCommandTypeMismatch = newError("Command type mismatch.")
ErrUnknownCommand = newError("Unknown command.")
ErrCommandTooLarge = newError("Command too large.")
2016-02-26 23:05:53 +00:00
)
func MarshalCommand(command interface{}, writer io.Writer) error {
2016-02-27 16:28:21 +00:00
if command == nil {
2016-06-27 06:53:35 +00:00
return ErrUnknownCommand
2016-02-27 16:28:21 +00:00
}
2016-12-13 10:15:11 +00:00
var cmdID byte
2016-02-26 23:05:53 +00:00
var factory CommandFactory
switch command.(type) {
case *protocol.CommandSwitchAccount:
factory = new(CommandSwitchAccountFactory)
2016-12-13 10:15:11 +00:00
cmdID = 1
2016-02-26 23:05:53 +00:00
default:
2016-06-27 06:53:35 +00:00
return ErrUnknownCommand
2016-02-26 23:05:53 +00:00
}
2016-02-27 15:41:21 +00:00
2018-03-09 10:26:00 +00:00
buffer := buf.New()
2016-07-16 11:22:18 +00:00
defer buffer.Release()
2016-02-27 15:41:21 +00:00
err := factory.Marshal(command, buffer)
if err != nil {
return err
}
2016-12-05 20:33:24 +00:00
auth := Authenticate(buffer.Bytes())
length := buffer.Len() + 4
if length > 255 {
2016-06-27 06:53:35 +00:00
return ErrCommandTooLarge
2016-02-27 15:41:21 +00:00
}
common.Must2(writer.Write([]byte{cmdID, byte(length), byte(auth >> 24), byte(auth >> 16), byte(auth >> 8), byte(auth)}))
2017-09-19 21:27:49 +00:00
common.Must2(writer.Write(buffer.Bytes()))
2016-02-27 15:41:21 +00:00
return nil
2016-02-26 23:05:53 +00:00
}
2016-12-13 10:15:11 +00:00
func UnmarshalCommand(cmdID byte, data []byte) (protocol.ResponseCommand, error) {
2016-02-27 15:41:21 +00:00
if len(data) <= 4 {
2017-04-08 23:43:25 +00:00
return nil, newError("insufficient length")
2016-02-27 15:41:21 +00:00
}
expectedAuth := Authenticate(data[4:])
2018-11-02 14:47:58 +00:00
actualAuth := binary.BigEndian.Uint32(data[:4])
2016-02-27 15:41:21 +00:00
if expectedAuth != actualAuth {
2017-04-08 23:43:25 +00:00
return nil, newError("invalid auth")
2016-02-27 15:41:21 +00:00
}
2016-02-26 23:05:53 +00:00
var factory CommandFactory
2016-12-13 10:15:11 +00:00
switch cmdID {
2016-02-26 23:05:53 +00:00
case 1:
factory = new(CommandSwitchAccountFactory)
default:
2016-06-27 06:53:35 +00:00
return nil, ErrUnknownCommand
2016-02-26 23:05:53 +00:00
}
2016-02-27 15:41:21 +00:00
return factory.Unmarshal(data[4:])
2016-02-26 23:05:53 +00:00
}
type CommandFactory interface {
Marshal(command interface{}, writer io.Writer) error
Unmarshal(data []byte) (interface{}, error)
}
2021-05-19 21:28:52 +00:00
type CommandSwitchAccountFactory struct{}
2016-02-26 23:05:53 +00:00
2017-09-19 21:27:49 +00:00
func (f *CommandSwitchAccountFactory) Marshal(command interface{}, writer io.Writer) error {
2016-02-26 23:05:53 +00:00
cmd, ok := command.(*protocol.CommandSwitchAccount)
if !ok {
2016-06-27 06:53:35 +00:00
return ErrCommandTypeMismatch
2016-02-26 23:05:53 +00:00
}
hostStr := ""
if cmd.Host != nil {
hostStr = cmd.Host.String()
}
2017-09-19 21:27:49 +00:00
common.Must2(writer.Write([]byte{byte(len(hostStr))}))
2016-02-26 23:05:53 +00:00
if len(hostStr) > 0 {
2017-09-19 21:27:49 +00:00
common.Must2(writer.Write([]byte(hostStr)))
2016-02-26 23:05:53 +00:00
}
2018-11-03 12:03:02 +00:00
common.Must2(serial.WriteUint16(writer, cmd.Port.Value()))
2016-02-26 23:05:53 +00:00
idBytes := cmd.ID.Bytes()
2017-09-19 21:27:49 +00:00
common.Must2(writer.Write(idBytes))
2018-11-03 12:03:02 +00:00
common.Must2(serial.WriteUint16(writer, cmd.AlterIds))
2017-09-19 21:27:49 +00:00
common.Must2(writer.Write([]byte{byte(cmd.Level)}))
2016-02-26 23:05:53 +00:00
2017-09-19 21:27:49 +00:00
common.Must2(writer.Write([]byte{cmd.ValidMin}))
2016-02-26 23:05:53 +00:00
return nil
}
2017-09-19 21:27:49 +00:00
func (f *CommandSwitchAccountFactory) Unmarshal(data []byte) (interface{}, error) {
2016-02-26 23:05:53 +00:00
cmd := new(protocol.CommandSwitchAccount)
if len(data) == 0 {
2017-04-08 23:43:25 +00:00
return nil, newError("insufficient length.")
2016-02-26 23:05:53 +00:00
}
lenHost := int(data[0])
if len(data) < lenHost+1 {
2017-04-08 23:43:25 +00:00
return nil, newError("insufficient length.")
2016-02-26 23:05:53 +00:00
}
if lenHost > 0 {
2017-01-13 22:42:39 +00:00
cmd.Host = net.ParseAddress(string(data[1 : 1+lenHost]))
2016-02-26 23:05:53 +00:00
}
portStart := 1 + lenHost
if len(data) < portStart+2 {
2017-04-08 23:43:25 +00:00
return nil, newError("insufficient length.")
2016-02-26 23:05:53 +00:00
}
2017-01-13 22:42:39 +00:00
cmd.Port = net.PortFromBytes(data[portStart : portStart+2])
2016-02-26 23:05:53 +00:00
idStart := portStart + 2
if len(data) < idStart+16 {
2017-04-08 23:43:25 +00:00
return nil, newError("insufficient length.")
2016-02-26 23:05:53 +00:00
}
cmd.ID, _ = uuid.ParseBytes(data[idStart : idStart+16])
2016-12-13 10:15:11 +00:00
alterIDStart := idStart + 16
if len(data) < alterIDStart+2 {
2017-04-08 23:43:25 +00:00
return nil, newError("insufficient length.")
2016-02-26 23:05:53 +00:00
}
2018-11-02 14:47:58 +00:00
cmd.AlterIds = binary.BigEndian.Uint16(data[alterIDStart : alterIDStart+2])
2016-12-13 10:15:11 +00:00
levelStart := alterIDStart + 2
2016-02-26 23:05:53 +00:00
if len(data) < levelStart+1 {
2017-04-08 23:43:25 +00:00
return nil, newError("insufficient length.")
2016-02-26 23:05:53 +00:00
}
2016-09-17 22:41:21 +00:00
cmd.Level = uint32(data[levelStart])
2016-02-26 23:05:53 +00:00
timeStart := levelStart + 1
if len(data) < timeStart {
2017-04-08 23:43:25 +00:00
return nil, newError("insufficient length.")
2016-02-26 23:05:53 +00:00
}
cmd.ValidMin = data[timeStart]
return cmd, nil
}