Move proxy/common/config to proxy/internal/config

pull/69/head
v2ray 2016-01-02 17:40:51 +01:00
parent dc86eb76da
commit 1c4c9bffad
29 changed files with 225 additions and 221 deletions

View File

@ -1,14 +1,15 @@
package json package json
import ( import (
"github.com/v2ray/v2ray-core/proxy/common/config/json" "github.com/v2ray/v2ray-core/proxy/internal/config"
"github.com/v2ray/v2ray-core/proxy/internal/config/json"
) )
type BlackHoleConfig struct { type BlackHoleConfig struct {
} }
func init() { func init() {
json.RegisterOutboundConnectionConfig("blackhole", func() interface{} { config.RegisterOutboundConnectionConfig("blackhole", json.JsonConfigLoader(func() interface{} {
return new(BlackHoleConfig) return new(BlackHoleConfig)
}) }))
} }

View File

@ -1,9 +0,0 @@
package config
import (
"errors"
)
var (
BadConfiguration = errors.New("Bad proxy configuration.")
)

View File

@ -1,45 +0,0 @@
package json
import (
"github.com/v2ray/v2ray-core/proxy/common/config"
)
type ConfigObjectCreator func() interface{}
var (
configCache map[string]ConfigObjectCreator
)
func getConfigKey(protocol string, cType config.Type) string {
return protocol + "_" + string(cType)
}
func registerConfigType(protocol string, cType config.Type, creator ConfigObjectCreator) error {
// TODO: check name
configCache[getConfigKey(protocol, cType)] = creator
return nil
}
func RegisterInboundConnectionConfig(protocol string, creator ConfigObjectCreator) error {
return registerConfigType(protocol, config.TypeInbound, creator)
}
func RegisterOutboundConnectionConfig(protocol string, creator ConfigObjectCreator) error {
return registerConfigType(protocol, config.TypeOutbound, creator)
}
func CreateConfig(protocol string, cType config.Type) interface{} {
creator, found := configCache[getConfigKey(protocol, cType)]
if !found {
return nil
}
return creator()
}
func initializeConfigCache() {
configCache = make(map[string]ConfigObjectCreator)
}
func init() {
initializeConfigCache()
}

View File

@ -1,8 +0,0 @@
package config
type Type string
const (
TypeInbound = Type("inbound")
TypeOutbound = Type("outbound")
)

View File

@ -4,9 +4,8 @@ import (
"net" "net"
"testing" "testing"
v2netjson "github.com/v2ray/v2ray-core/common/net/json"
v2nettesting "github.com/v2ray/v2ray-core/common/net/testing" v2nettesting "github.com/v2ray/v2ray-core/common/net/testing"
"github.com/v2ray/v2ray-core/proxy/dokodemo/json" _ "github.com/v2ray/v2ray-core/proxy/dokodemo/json"
_ "github.com/v2ray/v2ray-core/proxy/freedom" _ "github.com/v2ray/v2ray-core/proxy/freedom"
"github.com/v2ray/v2ray-core/shell/point" "github.com/v2ray/v2ray-core/shell/point"
"github.com/v2ray/v2ray-core/shell/point/testing/mocks" "github.com/v2ray/v2ray-core/shell/point/testing/mocks"
@ -36,17 +35,16 @@ func TestDokodemoTCP(t *testing.T) {
assert.Error(err).IsNil() assert.Error(err).IsNil()
pointPort := v2nettesting.PickPort() pointPort := v2nettesting.PickPort()
networkList := v2netjson.NetworkList([]string{"tcp"})
config := mocks.Config{ config := mocks.Config{
PortValue: pointPort, PortValue: pointPort,
InboundConfigValue: &mocks.ConnectionConfig{ InboundConfigValue: &mocks.ConnectionConfig{
ProtocolValue: "dokodemo-door", ProtocolValue: "dokodemo-door",
SettingsValue: &json.DokodemoConfig{ SettingsValue: []byte(`{
Host: v2netjson.NewIPHost(net.ParseIP("127.0.0.1")), "address": "127.0.0.1",
PortValue: port, "port": ` + port.String() + `,
NetworkList: &networkList, "network": "tcp",
TimeoutValue: 0, "timeout": 0
}, }`),
}, },
OutboundConfigValue: &mocks.ConnectionConfig{ OutboundConfigValue: &mocks.ConnectionConfig{
ProtocolValue: "freedom", ProtocolValue: "freedom",
@ -98,17 +96,16 @@ func TestDokodemoUDP(t *testing.T) {
assert.Error(err).IsNil() assert.Error(err).IsNil()
pointPort := v2nettesting.PickPort() pointPort := v2nettesting.PickPort()
networkList := v2netjson.NetworkList([]string{"udp"})
config := mocks.Config{ config := mocks.Config{
PortValue: pointPort, PortValue: pointPort,
InboundConfigValue: &mocks.ConnectionConfig{ InboundConfigValue: &mocks.ConnectionConfig{
ProtocolValue: "dokodemo-door", ProtocolValue: "dokodemo-door",
SettingsValue: &json.DokodemoConfig{ SettingsValue: []byte(`{
Host: v2netjson.NewIPHost(net.ParseIP("127.0.0.1")), "address": "127.0.0.1",
PortValue: port, "port": ` + port.String() + `,
NetworkList: &networkList, "network": "udp",
TimeoutValue: 0, "timeout": 0
}, }`),
}, },
OutboundConfigValue: &mocks.ConnectionConfig{ OutboundConfigValue: &mocks.ConnectionConfig{
ProtocolValue: "freedom", ProtocolValue: "freedom",

View File

@ -3,7 +3,8 @@ package json
import ( import (
v2net "github.com/v2ray/v2ray-core/common/net" v2net "github.com/v2ray/v2ray-core/common/net"
v2netjson "github.com/v2ray/v2ray-core/common/net/json" v2netjson "github.com/v2ray/v2ray-core/common/net/json"
"github.com/v2ray/v2ray-core/proxy/common/config/json" "github.com/v2ray/v2ray-core/proxy/internal/config"
"github.com/v2ray/v2ray-core/proxy/internal/config/json"
) )
type DokodemoConfig struct { type DokodemoConfig struct {
@ -30,7 +31,7 @@ func (this *DokodemoConfig) Timeout() int {
} }
func init() { func init() {
json.RegisterInboundConnectionConfig("dokodemo-door", func() interface{} { config.RegisterInboundConnectionConfig("dokodemo-door", json.JsonConfigLoader(func() interface{} {
return new(DokodemoConfig) return new(DokodemoConfig)
}) }))
} }

View File

@ -1,4 +1,4 @@
package errors package proxy
import ( import (
"errors" "errors"

View File

@ -14,7 +14,7 @@ import (
v2nettesting "github.com/v2ray/v2ray-core/common/net/testing" v2nettesting "github.com/v2ray/v2ray-core/common/net/testing"
"github.com/v2ray/v2ray-core/proxy/common/connhandler" "github.com/v2ray/v2ray-core/proxy/common/connhandler"
_ "github.com/v2ray/v2ray-core/proxy/socks" _ "github.com/v2ray/v2ray-core/proxy/socks"
"github.com/v2ray/v2ray-core/proxy/socks/json" _ "github.com/v2ray/v2ray-core/proxy/socks/json"
proxytesting "github.com/v2ray/v2ray-core/proxy/testing" proxytesting "github.com/v2ray/v2ray-core/proxy/testing"
proxymocks "github.com/v2ray/v2ray-core/proxy/testing/mocks" proxymocks "github.com/v2ray/v2ray-core/proxy/testing/mocks"
"github.com/v2ray/v2ray-core/shell/point" "github.com/v2ray/v2ray-core/shell/point"
@ -103,9 +103,7 @@ func TestSocksTcpConnect(t *testing.T) {
PortValue: pointPort, PortValue: pointPort,
InboundConfigValue: &mocks.ConnectionConfig{ InboundConfigValue: &mocks.ConnectionConfig{
ProtocolValue: "socks", ProtocolValue: "socks",
SettingsValue: &json.SocksConfig{ SettingsValue: []byte(`{"auth": "noauth"}`),
AuthMethod: "auth",
},
}, },
OutboundConfigValue: &mocks.ConnectionConfig{ OutboundConfigValue: &mocks.ConnectionConfig{
ProtocolValue: "freedom", ProtocolValue: "freedom",

View File

@ -1,14 +1,15 @@
package json package json
import ( import (
"github.com/v2ray/v2ray-core/proxy/common/config/json" "github.com/v2ray/v2ray-core/proxy/internal/config"
"github.com/v2ray/v2ray-core/proxy/internal/config/json"
) )
type FreedomConfiguration struct { type FreedomConfiguration struct {
} }
func init() { func init() {
json.RegisterOutboundConnectionConfig("freedom", func() interface{} { config.RegisterOutboundConnectionConfig("freedom", json.JsonConfigLoader(func() interface{} {
return &FreedomConfiguration{} return &FreedomConfiguration{}
}) }))
} }

View File

@ -1,14 +1,15 @@
package json package json
import ( import (
"github.com/v2ray/v2ray-core/proxy/common/config/json" "github.com/v2ray/v2ray-core/proxy/internal/config"
"github.com/v2ray/v2ray-core/proxy/internal/config/json"
) )
type HttpProxyConfig struct { type HttpProxyConfig struct {
} }
func init() { func init() {
json.RegisterInboundConnectionConfig("http", func() interface{} { config.RegisterInboundConnectionConfig("http", json.JsonConfigLoader(func() interface{} {
return new(HttpProxyConfig) return new(HttpProxyConfig)
}) }))
} }

View File

@ -0,0 +1,53 @@
package config
import (
"errors"
)
type ConfigObjectCreator func(data []byte) (interface{}, error)
var (
configCache map[string]ConfigObjectCreator
)
func getConfigKey(protocol string, proxyType string) string {
return protocol + "_" + proxyType
}
func registerConfigType(protocol string, proxyType string, creator ConfigObjectCreator) error {
// TODO: check name
configCache[getConfigKey(protocol, proxyType)] = creator
return nil
}
func RegisterInboundConnectionConfig(protocol string, creator ConfigObjectCreator) error {
return registerConfigType(protocol, "inbound", creator)
}
func RegisterOutboundConnectionConfig(protocol string, creator ConfigObjectCreator) error {
return registerConfigType(protocol, "outbound", creator)
}
func CreateInboundConnectionConfig(protocol string, data []byte) (interface{}, error) {
creator, found := configCache[getConfigKey(protocol, "inbound")]
if !found {
return nil, errors.New(protocol + " not found.")
}
return creator(data)
}
func CreateOutboundConnectionConfig(protocol string, data []byte) (interface{}, error) {
creator, found := configCache[getConfigKey(protocol, "outbound")]
if !found {
return nil, errors.New(protocol + " not found.")
}
return creator(data)
}
func initializeConfigCache() {
configCache = make(map[string]ConfigObjectCreator)
}
func init() {
initializeConfigCache()
}

View File

@ -1,9 +1,8 @@
package json package config
import ( import (
"testing" "testing"
"github.com/v2ray/v2ray-core/proxy/common/config"
v2testing "github.com/v2ray/v2ray-core/testing" v2testing "github.com/v2ray/v2ray-core/testing"
"github.com/v2ray/v2ray-core/testing/assert" "github.com/v2ray/v2ray-core/testing/assert"
) )
@ -13,17 +12,18 @@ func TestRegisterInboundConfig(t *testing.T) {
initializeConfigCache() initializeConfigCache()
protocol := "test_protocol" protocol := "test_protocol"
creator := func() interface{} { creator := func([]byte) (interface{}, error) {
return true return true, nil
} }
err := RegisterInboundConnectionConfig(protocol, creator) err := RegisterInboundConnectionConfig(protocol, creator)
assert.Error(err).IsNil() assert.Error(err).IsNil()
configObj := CreateConfig(protocol, config.TypeInbound) configObj, err := CreateInboundConnectionConfig(protocol, nil)
assert.Bool(configObj.(bool)).IsTrue() assert.Bool(configObj.(bool)).IsTrue()
assert.Error(err).IsNil()
configObj = CreateConfig(protocol, config.TypeOutbound) configObj, err = CreateOutboundConnectionConfig(protocol, nil)
assert.Pointer(configObj).IsNil() assert.Pointer(configObj).IsNil()
} }
@ -32,16 +32,17 @@ func TestRegisterOutboundConfig(t *testing.T) {
initializeConfigCache() initializeConfigCache()
protocol := "test_protocol" protocol := "test_protocol"
creator := func() interface{} { creator := func([]byte) (interface{}, error) {
return true return true, nil
} }
err := RegisterOutboundConnectionConfig(protocol, creator) err := RegisterOutboundConnectionConfig(protocol, creator)
assert.Error(err).IsNil() assert.Error(err).IsNil()
configObj := CreateConfig(protocol, config.TypeOutbound) configObj, err := CreateOutboundConnectionConfig(protocol, nil)
assert.Bool(configObj.(bool)).IsTrue() assert.Bool(configObj.(bool)).IsTrue()
assert.Error(err).IsNil()
configObj = CreateConfig(protocol, config.TypeInbound) configObj, err = CreateInboundConnectionConfig(protocol, nil)
assert.Pointer(configObj).IsNil() assert.Pointer(configObj).IsNil()
} }

View File

@ -0,0 +1,16 @@
package json
import (
"encoding/json"
"github.com/v2ray/v2ray-core/common/log"
)
func JsonConfigLoader(newConfig func() interface{}) func(data []byte) (interface{}, error) {
return func(data []byte) (interface{}, error) {
obj := newConfig()
log.Debug("Unmarshalling JSON: %s", string(data))
err := json.Unmarshal(data, obj)
return obj, err
}
}

View File

@ -8,6 +8,7 @@ import (
"github.com/v2ray/v2ray-core/app" "github.com/v2ray/v2ray-core/app"
"github.com/v2ray/v2ray-core/proxy/common/connhandler" "github.com/v2ray/v2ray-core/proxy/common/connhandler"
"github.com/v2ray/v2ray-core/proxy/internal" "github.com/v2ray/v2ray-core/proxy/internal"
"github.com/v2ray/v2ray-core/proxy/internal/config"
) )
var ( var (
@ -16,6 +17,7 @@ var (
ErrorProxyNotFound = errors.New("Proxy not found.") ErrorProxyNotFound = errors.New("Proxy not found.")
ErrorNameExists = errors.New("Proxy with the same name already exists.") ErrorNameExists = errors.New("Proxy with the same name already exists.")
ErrorBadConfiguration = errors.New("Bad proxy configuration.")
) )
func RegisterInboundConnectionHandlerFactory(name string, creator internal.InboundConnectionHandlerCreator) error { func RegisterInboundConnectionHandlerFactory(name string, creator internal.InboundConnectionHandlerCreator) error {
@ -34,18 +36,34 @@ func RegisterOutboundConnectionHandlerFactory(name string, creator internal.Outb
return nil return nil
} }
func CreateInboundConnectionHandler(name string, space app.Space, config interface{}) (connhandler.InboundConnectionHandler, error) { func CreateInboundConnectionHandler(name string, space app.Space, rawConfig []byte) (connhandler.InboundConnectionHandler, error) {
if creator, found := inboundFactories[name]; !found { creator, found := inboundFactories[name]
if !found {
return nil, ErrorProxyNotFound return nil, ErrorProxyNotFound
} else {
return creator(space, config)
} }
if len(rawConfig) > 0 {
proxyConfig, err := config.CreateInboundConnectionConfig(name, rawConfig)
if err != nil {
return nil, err
}
return creator(space, proxyConfig)
}
return creator(space, nil)
} }
func CreateOutboundConnectionHandler(name string, space app.Space, config interface{}) (connhandler.OutboundConnectionHandler, error) { func CreateOutboundConnectionHandler(name string, space app.Space, rawConfig []byte) (connhandler.OutboundConnectionHandler, error) {
if creator, found := outboundFactories[name]; !found { creator, found := outboundFactories[name]
if !found {
return nil, ErrorNameExists return nil, ErrorNameExists
} else {
return creator(space, config)
} }
if len(rawConfig) > 0 {
proxyConfig, err := config.CreateOutboundConnectionConfig(name, rawConfig)
if err != nil {
return nil, err
}
return creator(space, proxyConfig)
}
return creator(space, nil)
} }

View File

@ -5,7 +5,8 @@ import (
"errors" "errors"
"net" "net"
jsonconfig "github.com/v2ray/v2ray-core/proxy/common/config/json" "github.com/v2ray/v2ray-core/proxy/internal/config"
jsonconfig "github.com/v2ray/v2ray-core/proxy/internal/config/json"
) )
const ( const (
@ -84,9 +85,9 @@ func (this *SocksConfig) UDPEnabled() bool {
} }
func init() { func init() {
jsonconfig.RegisterInboundConnectionConfig("socks", func() interface{} { config.RegisterInboundConnectionConfig("socks", jsonconfig.JsonConfigLoader(func() interface{} {
return &SocksConfig{ return &SocksConfig{
HostIP: IPAddress(net.IPv4(127, 0, 0, 1)), HostIP: IPAddress(net.IPv4(127, 0, 0, 1)),
} }
}) }))
} }

View File

@ -5,8 +5,7 @@ import (
"net" "net"
"testing" "testing"
"github.com/v2ray/v2ray-core/proxy/common/config" "github.com/v2ray/v2ray-core/proxy/internal/config"
jsonconfig "github.com/v2ray/v2ray-core/proxy/common/config/json"
v2testing "github.com/v2ray/v2ray-core/testing" v2testing "github.com/v2ray/v2ray-core/testing"
"github.com/v2ray/v2ray-core/testing/assert" "github.com/v2ray/v2ray-core/testing/assert"
) )
@ -27,8 +26,9 @@ func TestAccountMapParsing(t *testing.T) {
func TestDefaultIPAddress(t *testing.T) { func TestDefaultIPAddress(t *testing.T) {
v2testing.Current(t) v2testing.Current(t)
socksConfig := jsonconfig.CreateConfig("socks", config.TypeInbound).(*SocksConfig) socksConfig, err := config.CreateInboundConnectionConfig("socks", []byte(`{}`))
assert.String(socksConfig.IP()).Equals("127.0.0.1") assert.Error(err).IsNil()
assert.String(socksConfig.(*SocksConfig).IP()).Equals("127.0.0.1")
} }
func TestIPAddressParsing(t *testing.T) { func TestIPAddressParsing(t *testing.T) {

View File

@ -7,7 +7,7 @@ import (
"github.com/v2ray/v2ray-core/common/alloc" "github.com/v2ray/v2ray-core/common/alloc"
"github.com/v2ray/v2ray-core/common/log" "github.com/v2ray/v2ray-core/common/log"
v2net "github.com/v2ray/v2ray-core/common/net" v2net "github.com/v2ray/v2ray-core/common/net"
proxyerrors "github.com/v2ray/v2ray-core/proxy/common/errors" "github.com/v2ray/v2ray-core/proxy"
"github.com/v2ray/v2ray-core/transport" "github.com/v2ray/v2ray-core/transport"
) )
@ -66,7 +66,7 @@ func ReadAuthentication(reader io.Reader) (auth Socks5AuthenticationRequest, aut
auth.version = buffer.Value[0] auth.version = buffer.Value[0]
if auth.version != socksVersion { if auth.version != socksVersion {
log.Warning("Unknown protocol version %d", auth.version) log.Warning("Unknown protocol version %d", auth.version)
err = proxyerrors.InvalidProtocolVersion err = proxy.InvalidProtocolVersion
return return
} }

View File

@ -12,7 +12,7 @@ import (
"github.com/v2ray/v2ray-core/common/log" "github.com/v2ray/v2ray-core/common/log"
v2net "github.com/v2ray/v2ray-core/common/net" v2net "github.com/v2ray/v2ray-core/common/net"
"github.com/v2ray/v2ray-core/common/retry" "github.com/v2ray/v2ray-core/common/retry"
proxyerrors "github.com/v2ray/v2ray-core/proxy/common/errors" "github.com/v2ray/v2ray-core/proxy"
"github.com/v2ray/v2ray-core/proxy/socks/protocol" "github.com/v2ray/v2ray-core/proxy/socks/protocol"
) )
@ -127,7 +127,7 @@ func (this *SocksServer) handleSocks5(reader *v2net.TimeOutReader, writer io.Wri
} }
if status != byte(0) { if status != byte(0) {
log.Warning("Invalid user account: %s", upRequest.AuthDetail()) log.Warning("Invalid user account: %s", upRequest.AuthDetail())
return proxyerrors.InvalidAuthentication return proxy.InvalidAuthentication
} }
} }

View File

@ -12,7 +12,7 @@ import (
"github.com/v2ray/v2ray-core/app" "github.com/v2ray/v2ray-core/app"
v2nettesting "github.com/v2ray/v2ray-core/common/net/testing" v2nettesting "github.com/v2ray/v2ray-core/common/net/testing"
"github.com/v2ray/v2ray-core/proxy/common/connhandler" "github.com/v2ray/v2ray-core/proxy/common/connhandler"
"github.com/v2ray/v2ray-core/proxy/socks/json" _ "github.com/v2ray/v2ray-core/proxy/socks/json"
proxytesting "github.com/v2ray/v2ray-core/proxy/testing" proxytesting "github.com/v2ray/v2ray-core/proxy/testing"
proxymocks "github.com/v2ray/v2ray-core/proxy/testing/mocks" proxymocks "github.com/v2ray/v2ray-core/proxy/testing/mocks"
"github.com/v2ray/v2ray-core/shell/point" "github.com/v2ray/v2ray-core/shell/point"
@ -41,9 +41,10 @@ func TestSocksTcpConnect(t *testing.T) {
PortValue: port, PortValue: port,
InboundConfigValue: &mocks.ConnectionConfig{ InboundConfigValue: &mocks.ConnectionConfig{
ProtocolValue: "socks", ProtocolValue: "socks",
SettingsValue: &json.SocksConfig{ SettingsValue: []byte(`
AuthMethod: "noauth", {
}, "auth": "noauth"
}`),
}, },
OutboundConfigValue: &mocks.ConnectionConfig{ OutboundConfigValue: &mocks.ConnectionConfig{
ProtocolValue: protocol, ProtocolValue: protocol,
@ -99,12 +100,13 @@ func TestSocksTcpConnectWithUserPass(t *testing.T) {
PortValue: port, PortValue: port,
InboundConfigValue: &mocks.ConnectionConfig{ InboundConfigValue: &mocks.ConnectionConfig{
ProtocolValue: "socks", ProtocolValue: "socks",
SettingsValue: &json.SocksConfig{ SettingsValue: []byte(`
AuthMethod: "password", {
Accounts: json.SocksAccountMap{ "auth": "password",
"userx": "passy", "accounts": [
}, {"user": "userx", "pass": "passy"}
}, ]
}`),
}, },
OutboundConfigValue: &mocks.ConnectionConfig{ OutboundConfigValue: &mocks.ConnectionConfig{
ProtocolValue: protocol, ProtocolValue: protocol,
@ -160,12 +162,13 @@ func TestSocksTcpConnectWithWrongUserPass(t *testing.T) {
PortValue: port, PortValue: port,
InboundConfigValue: &mocks.ConnectionConfig{ InboundConfigValue: &mocks.ConnectionConfig{
ProtocolValue: "socks", ProtocolValue: "socks",
SettingsValue: &json.SocksConfig{ SettingsValue: []byte(`
AuthMethod: "password", {
Accounts: json.SocksAccountMap{ "auth": "password",
"userx": "passy", "accounts": [
}, {"user": "userx", "pass": "passy"}
}, ]
}`),
}, },
OutboundConfigValue: &mocks.ConnectionConfig{ OutboundConfigValue: &mocks.ConnectionConfig{
ProtocolValue: protocol, ProtocolValue: protocol,
@ -207,12 +210,13 @@ func TestSocksTcpConnectWithWrongAuthMethod(t *testing.T) {
PortValue: port, PortValue: port,
InboundConfigValue: &mocks.ConnectionConfig{ InboundConfigValue: &mocks.ConnectionConfig{
ProtocolValue: "socks", ProtocolValue: "socks",
SettingsValue: &json.SocksConfig{ SettingsValue: []byte(`
AuthMethod: "password", {
Accounts: json.SocksAccountMap{ "auth": "password",
"userx": "passy", "accounts": [
}, {"user": "userx", "pass": "passy"}
}, ]
}`),
}, },
OutboundConfigValue: &mocks.ConnectionConfig{ OutboundConfigValue: &mocks.ConnectionConfig{
ProtocolValue: protocol, ProtocolValue: protocol,
@ -254,10 +258,7 @@ func TestSocksUdpSend(t *testing.T) {
PortValue: port, PortValue: port,
InboundConfigValue: &mocks.ConnectionConfig{ InboundConfigValue: &mocks.ConnectionConfig{
ProtocolValue: "socks", ProtocolValue: "socks",
SettingsValue: &json.SocksConfig{ SettingsValue: []byte(`{"auth": "noauth", "udp": true}`),
AuthMethod: "noauth",
UDP: true,
},
}, },
OutboundConfigValue: &mocks.ConnectionConfig{ OutboundConfigValue: &mocks.ConnectionConfig{
ProtocolValue: protocol, ProtocolValue: protocol,

View File

@ -1,7 +1,8 @@
package json package json
import ( import (
"github.com/v2ray/v2ray-core/proxy/common/config/json" "github.com/v2ray/v2ray-core/proxy/internal/config"
"github.com/v2ray/v2ray-core/proxy/internal/config/json"
"github.com/v2ray/v2ray-core/proxy/vmess" "github.com/v2ray/v2ray-core/proxy/vmess"
vmessjson "github.com/v2ray/v2ray-core/proxy/vmess/json" vmessjson "github.com/v2ray/v2ray-core/proxy/vmess/json"
) )
@ -19,7 +20,7 @@ func (c *Inbound) AllowedUsers() []vmess.User {
} }
func init() { func init() {
json.RegisterInboundConnectionConfig("vmess", func() interface{} { config.RegisterInboundConnectionConfig("vmess", json.JsonConfigLoader(func() interface{} {
return new(Inbound) return new(Inbound)
}) }))
} }

View File

@ -6,8 +6,9 @@ import (
"github.com/v2ray/v2ray-core/common/log" "github.com/v2ray/v2ray-core/common/log"
v2net "github.com/v2ray/v2ray-core/common/net" v2net "github.com/v2ray/v2ray-core/common/net"
v2netjson "github.com/v2ray/v2ray-core/common/net/json" v2netjson "github.com/v2ray/v2ray-core/common/net/json"
proxyconfig "github.com/v2ray/v2ray-core/proxy/common/config" "github.com/v2ray/v2ray-core/proxy"
jsonconfig "github.com/v2ray/v2ray-core/proxy/common/config/json" proxyconfig "github.com/v2ray/v2ray-core/proxy/internal/config"
jsonconfig "github.com/v2ray/v2ray-core/proxy/internal/config/json"
"github.com/v2ray/v2ray-core/proxy/vmess" "github.com/v2ray/v2ray-core/proxy/vmess"
vmessjson "github.com/v2ray/v2ray-core/proxy/vmess/json" vmessjson "github.com/v2ray/v2ray-core/proxy/vmess/json"
"github.com/v2ray/v2ray-core/proxy/vmess/outbound" "github.com/v2ray/v2ray-core/proxy/vmess/outbound"
@ -30,12 +31,12 @@ func (t *ConfigTarget) UnmarshalJSON(data []byte) error {
} }
if len(rawConfig.Users) == 0 { if len(rawConfig.Users) == 0 {
log.Error("0 user configured for VMess outbound.") log.Error("0 user configured for VMess outbound.")
return proxyconfig.BadConfiguration return proxy.ErrorBadConfiguration
} }
t.Users = rawConfig.Users t.Users = rawConfig.Users
if rawConfig.Address == nil { if rawConfig.Address == nil {
log.Error("Address is not set in VMess outbound config.") log.Error("Address is not set in VMess outbound config.")
return proxyconfig.BadConfiguration return proxy.ErrorBadConfiguration
} }
t.Destination = v2net.TCPDestination(rawConfig.Address.Address(), rawConfig.Port) t.Destination = v2net.TCPDestination(rawConfig.Address.Address(), rawConfig.Port)
return nil return nil
@ -56,7 +57,7 @@ func (this *Outbound) UnmarshalJSON(data []byte) error {
} }
if len(rawOutbound.TargetList) == 0 { if len(rawOutbound.TargetList) == 0 {
log.Error("0 VMess receiver configured.") log.Error("0 VMess receiver configured.")
return proxyconfig.BadConfiguration return proxy.ErrorBadConfiguration
} }
this.TargetList = rawOutbound.TargetList this.TargetList = rawOutbound.TargetList
return nil return nil
@ -78,7 +79,7 @@ func (o *Outbound) Receivers() []*outbound.Receiver {
} }
func init() { func init() {
jsonconfig.RegisterOutboundConnectionConfig("vmess", func() interface{} { proxyconfig.RegisterOutboundConnectionConfig("vmess", jsonconfig.JsonConfigLoader(func() interface{} {
return new(Outbound) return new(Outbound)
}) }))
} }

View File

@ -11,7 +11,7 @@ import (
v2crypto "github.com/v2ray/v2ray-core/common/crypto" v2crypto "github.com/v2ray/v2ray-core/common/crypto"
"github.com/v2ray/v2ray-core/common/log" "github.com/v2ray/v2ray-core/common/log"
v2net "github.com/v2ray/v2ray-core/common/net" v2net "github.com/v2ray/v2ray-core/common/net"
proxyerrors "github.com/v2ray/v2ray-core/proxy/common/errors" "github.com/v2ray/v2ray-core/proxy"
"github.com/v2ray/v2ray-core/proxy/vmess" "github.com/v2ray/v2ray-core/proxy/vmess"
"github.com/v2ray/v2ray-core/proxy/vmess/protocol/user" "github.com/v2ray/v2ray-core/proxy/vmess/protocol/user"
"github.com/v2ray/v2ray-core/transport" "github.com/v2ray/v2ray-core/transport"
@ -76,7 +76,7 @@ func (this *VMessRequestReader) Read(reader io.Reader) (*VMessRequest, error) {
userObj, timeSec, valid := this.vUserSet.GetUser(buffer.Value[:nBytes]) userObj, timeSec, valid := this.vUserSet.GetUser(buffer.Value[:nBytes])
if !valid { if !valid {
return nil, proxyerrors.InvalidAuthentication return nil, proxy.InvalidAuthentication
} }
aesStream, err := v2crypto.NewAesDecryptionStream(userObj.ID().CmdKey(), user.Int64Hash(timeSec)) aesStream, err := v2crypto.NewAesDecryptionStream(userObj.ID().CmdKey(), user.Int64Hash(timeSec))
@ -99,7 +99,7 @@ func (this *VMessRequestReader) Read(reader io.Reader) (*VMessRequest, error) {
if request.Version != Version { if request.Version != Version {
log.Warning("Invalid protocol version %d", request.Version) log.Warning("Invalid protocol version %d", request.Version)
return nil, proxyerrors.InvalidProtocolVersion return nil, proxy.InvalidProtocolVersion
} }
request.RequestIV = buffer.Value[1:17] // 16 bytes request.RequestIV = buffer.Value[1:17] // 16 bytes

View File

@ -13,10 +13,9 @@ import (
proxymocks "github.com/v2ray/v2ray-core/proxy/testing/mocks" proxymocks "github.com/v2ray/v2ray-core/proxy/testing/mocks"
vmess "github.com/v2ray/v2ray-core/proxy/vmess" vmess "github.com/v2ray/v2ray-core/proxy/vmess"
_ "github.com/v2ray/v2ray-core/proxy/vmess/inbound" _ "github.com/v2ray/v2ray-core/proxy/vmess/inbound"
inboundjson "github.com/v2ray/v2ray-core/proxy/vmess/inbound/json" _ "github.com/v2ray/v2ray-core/proxy/vmess/inbound/json"
vmessjson "github.com/v2ray/v2ray-core/proxy/vmess/json"
_ "github.com/v2ray/v2ray-core/proxy/vmess/outbound" _ "github.com/v2ray/v2ray-core/proxy/vmess/outbound"
outboundjson "github.com/v2ray/v2ray-core/proxy/vmess/outbound/json" _ "github.com/v2ray/v2ray-core/proxy/vmess/outbound/json"
"github.com/v2ray/v2ray-core/shell/point" "github.com/v2ray/v2ray-core/shell/point"
"github.com/v2ray/v2ray-core/shell/point/testing/mocks" "github.com/v2ray/v2ray-core/shell/point/testing/mocks"
v2testing "github.com/v2ray/v2ray-core/testing" v2testing "github.com/v2ray/v2ray-core/testing"
@ -55,16 +54,17 @@ func TestVMessInAndOut(t *testing.T) {
}, },
OutboundConfigValue: &mocks.ConnectionConfig{ OutboundConfigValue: &mocks.ConnectionConfig{
ProtocolValue: "vmess", ProtocolValue: "vmess",
SettingsValue: &outboundjson.Outbound{ SettingsValue: []byte(`{
[]*outboundjson.ConfigTarget{ "vnext": [
&outboundjson.ConfigTarget{ {
Destination: v2net.TCPDestination(v2net.IPAddress([]byte{127, 0, 0, 1}), portB), "address": "127.0.0.1",
Users: []*vmessjson.ConfigUser{ "port": ` + portB.String() + `,
&vmessjson.ConfigUser{Id: testAccount}, "users": [
}, {"id": "` + testAccount.String() + `"}
}, ]
}, }
}, ]
}`),
}, },
} }
@ -90,11 +90,11 @@ func TestVMessInAndOut(t *testing.T) {
PortValue: portB, PortValue: portB,
InboundConfigValue: &mocks.ConnectionConfig{ InboundConfigValue: &mocks.ConnectionConfig{
ProtocolValue: "vmess", ProtocolValue: "vmess",
SettingsValue: &inboundjson.Inbound{ SettingsValue: []byte(`{
AllowedClients: []*vmessjson.ConfigUser{ "clients": [
&vmessjson.ConfigUser{Id: testAccount}, {"id": "` + testAccount.String() + `"}
}, ]
}, }`),
}, },
OutboundConfigValue: &mocks.ConnectionConfig{ OutboundConfigValue: &mocks.ConnectionConfig{
ProtocolValue: protocol, ProtocolValue: protocol,

View File

@ -9,7 +9,7 @@ import (
type ConnectionConfig interface { type ConnectionConfig interface {
Protocol() string Protocol() string
Settings() interface{} Settings() []byte
} }
type LogConfig interface { type LogConfig interface {
@ -40,13 +40,13 @@ type InboundDetourConfig interface {
PortRange() v2net.PortRange PortRange() v2net.PortRange
Tag() string Tag() string
Allocation() InboundDetourAllocationConfig Allocation() InboundDetourAllocationConfig
Settings() interface{} Settings() []byte
} }
type OutboundDetourConfig interface { type OutboundDetourConfig interface {
Protocol() string Protocol() string
Tag() string Tag() string
Settings() interface{} Settings() []byte
} }
type PointConfig interface { type PointConfig interface {

View File

@ -2,35 +2,17 @@ package json
import ( import (
"encoding/json" "encoding/json"
"github.com/v2ray/v2ray-core/common/log"
proxyconfig "github.com/v2ray/v2ray-core/proxy/common/config"
proxyjson "github.com/v2ray/v2ray-core/proxy/common/config/json"
) )
type ConnectionConfig struct { type ConnectionConfig struct {
ProtocolString string `json:"protocol"` ProtocolString string `json:"protocol"`
SettingsMessage json.RawMessage `json:"settings"` SettingsMessage json.RawMessage `json:"settings"`
Type proxyconfig.Type `json:"-"`
} }
func (c *ConnectionConfig) Protocol() string { func (c *ConnectionConfig) Protocol() string {
return c.ProtocolString return c.ProtocolString
} }
func (c *ConnectionConfig) Settings() interface{} { func (c *ConnectionConfig) Settings() []byte {
return loadConnectionConfig(c.SettingsMessage, c.Protocol(), c.Type) return []byte(c.SettingsMessage)
}
func loadConnectionConfig(message json.RawMessage, protocol string, cType proxyconfig.Type) interface{} {
configObj := proxyjson.CreateConfig(protocol, cType)
if configObj == nil {
panic("Unknown protocol " + protocol)
}
err := json.Unmarshal(message, configObj)
if err != nil {
log.Error("Unable to parse connection config: %v", err)
panic("Failed to parse connection config.")
}
return configObj
} }

View File

@ -5,7 +5,6 @@ import (
v2net "github.com/v2ray/v2ray-core/common/net" v2net "github.com/v2ray/v2ray-core/common/net"
v2netjson "github.com/v2ray/v2ray-core/common/net/json" v2netjson "github.com/v2ray/v2ray-core/common/net/json"
proxyconfig "github.com/v2ray/v2ray-core/proxy/common/config"
"github.com/v2ray/v2ray-core/shell/point" "github.com/v2ray/v2ray-core/shell/point"
) )
@ -47,8 +46,8 @@ func (this *InboundDetourConfig) PortRange() v2net.PortRange {
return this.PortRangeValue return this.PortRangeValue
} }
func (this *InboundDetourConfig) Settings() interface{} { func (this *InboundDetourConfig) Settings() []byte {
return loadConnectionConfig(this.SettingsValue, this.ProtocolValue, proxyconfig.TypeInbound) return []byte(this.SettingsValue)
} }
func (this *InboundDetourConfig) Tag() string { func (this *InboundDetourConfig) Tag() string {

View File

@ -9,7 +9,6 @@ import (
routerjson "github.com/v2ray/v2ray-core/app/router/json" routerjson "github.com/v2ray/v2ray-core/app/router/json"
"github.com/v2ray/v2ray-core/common/log" "github.com/v2ray/v2ray-core/common/log"
v2net "github.com/v2ray/v2ray-core/common/net" v2net "github.com/v2ray/v2ray-core/common/net"
proxyconfig "github.com/v2ray/v2ray-core/proxy/common/config"
"github.com/v2ray/v2ray-core/shell/point" "github.com/v2ray/v2ray-core/shell/point"
) )
@ -87,8 +86,5 @@ func LoadConfig(file string) (*Config, error) {
return nil, err return nil, err
} }
jsonConfig.InboundConfigValue.Type = proxyconfig.TypeInbound
jsonConfig.OutboundConfigValue.Type = proxyconfig.TypeOutbound
return jsonConfig, err return jsonConfig, err
} }

View File

@ -2,8 +2,6 @@ package json
import ( import (
"encoding/json" "encoding/json"
proxyconfig "github.com/v2ray/v2ray-core/proxy/common/config"
) )
type OutboundDetourConfig struct { type OutboundDetourConfig struct {
@ -20,6 +18,6 @@ func (this *OutboundDetourConfig) Tag() string {
return this.TagValue return this.TagValue
} }
func (this *OutboundDetourConfig) Settings() interface{} { func (this *OutboundDetourConfig) Settings() []byte {
return loadConnectionConfig(this.SettingsValue, this.ProtocolValue, proxyconfig.TypeOutbound) return []byte(this.SettingsValue)
} }

View File

@ -10,14 +10,14 @@ import (
type ConnectionConfig struct { type ConnectionConfig struct {
ProtocolValue string ProtocolValue string
SettingsValue interface{} SettingsValue []byte
} }
func (config *ConnectionConfig) Protocol() string { func (config *ConnectionConfig) Protocol() string {
return config.ProtocolValue return config.ProtocolValue
} }
func (config *ConnectionConfig) Settings() interface{} { func (config *ConnectionConfig) Settings() []byte {
return config.SettingsValue return config.SettingsValue
} }