2019-02-10 13:04:11 -05:00
|
|
|
package conf
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
|
|
|
|
|
|
|
"github.com/golang/protobuf/proto"
|
2021-02-16 15:31:50 -05:00
|
|
|
|
|
|
|
"github.com/v2fly/v2ray-core/v4/common/protocol"
|
|
|
|
"github.com/v2fly/v2ray-core/v4/common/serial"
|
2021-05-04 09:52:35 -04:00
|
|
|
"github.com/v2fly/v2ray-core/v4/infra/conf/cfgcommon"
|
2021-02-16 15:31:50 -05:00
|
|
|
"github.com/v2fly/v2ray-core/v4/proxy/socks"
|
2019-02-10 13:04:11 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
type SocksAccount struct {
|
|
|
|
Username string `json:"user"`
|
|
|
|
Password string `json:"pass"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (v *SocksAccount) Build() *socks.Account {
|
|
|
|
return &socks.Account{
|
|
|
|
Username: v.Username,
|
|
|
|
Password: v.Password,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const (
|
|
|
|
AuthMethodNoAuth = "noauth"
|
|
|
|
AuthMethodUserPass = "password"
|
|
|
|
)
|
|
|
|
|
|
|
|
type SocksServerConfig struct {
|
2021-05-03 22:15:11 -04:00
|
|
|
AuthMethod string `json:"auth"`
|
|
|
|
Accounts []*SocksAccount `json:"accounts"`
|
|
|
|
UDP bool `json:"udp"`
|
|
|
|
Host *cfgcommon.Address `json:"ip"`
|
|
|
|
Timeout uint32 `json:"timeout"`
|
|
|
|
UserLevel uint32 `json:"userLevel"`
|
2019-02-10 13:04:11 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
func (v *SocksServerConfig) Build() (proto.Message, error) {
|
|
|
|
config := new(socks.ServerConfig)
|
|
|
|
switch v.AuthMethod {
|
|
|
|
case AuthMethodNoAuth:
|
|
|
|
config.AuthType = socks.AuthType_NO_AUTH
|
|
|
|
case AuthMethodUserPass:
|
|
|
|
config.AuthType = socks.AuthType_PASSWORD
|
|
|
|
default:
|
2020-10-11 07:22:46 -04:00
|
|
|
// newError("unknown socks auth method: ", v.AuthMethod, ". Default to noauth.").AtWarning().WriteToLog()
|
2019-02-10 13:04:11 -05:00
|
|
|
config.AuthType = socks.AuthType_NO_AUTH
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(v.Accounts) > 0 {
|
|
|
|
config.Accounts = make(map[string]string, len(v.Accounts))
|
|
|
|
for _, account := range v.Accounts {
|
|
|
|
config.Accounts[account.Username] = account.Password
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
config.UdpEnabled = v.UDP
|
|
|
|
if v.Host != nil {
|
|
|
|
config.Address = v.Host.Build()
|
|
|
|
}
|
|
|
|
|
|
|
|
config.Timeout = v.Timeout
|
|
|
|
config.UserLevel = v.UserLevel
|
|
|
|
return config, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
type SocksRemoteConfig struct {
|
2021-05-03 22:15:11 -04:00
|
|
|
Address *cfgcommon.Address `json:"address"`
|
|
|
|
Port uint16 `json:"port"`
|
|
|
|
Users []json.RawMessage `json:"users"`
|
2019-02-10 13:04:11 -05:00
|
|
|
}
|
2021-05-19 17:28:52 -04:00
|
|
|
|
2019-02-10 13:04:11 -05:00
|
|
|
type SocksClientConfig struct {
|
|
|
|
Servers []*SocksRemoteConfig `json:"servers"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (v *SocksClientConfig) Build() (proto.Message, error) {
|
|
|
|
config := new(socks.ClientConfig)
|
|
|
|
config.Server = make([]*protocol.ServerEndpoint, len(v.Servers))
|
|
|
|
for idx, serverConfig := range v.Servers {
|
|
|
|
server := &protocol.ServerEndpoint{
|
|
|
|
Address: serverConfig.Address.Build(),
|
|
|
|
Port: uint32(serverConfig.Port),
|
|
|
|
}
|
|
|
|
for _, rawUser := range serverConfig.Users {
|
|
|
|
user := new(protocol.User)
|
|
|
|
if err := json.Unmarshal(rawUser, user); err != nil {
|
|
|
|
return nil, newError("failed to parse Socks user").Base(err).AtError()
|
|
|
|
}
|
|
|
|
account := new(SocksAccount)
|
|
|
|
if err := json.Unmarshal(rawUser, account); err != nil {
|
|
|
|
return nil, newError("failed to parse socks account").Base(err).AtError()
|
|
|
|
}
|
|
|
|
user.Account = serial.ToTypedMessage(account.Build())
|
|
|
|
server.User = append(server.User, user)
|
|
|
|
}
|
|
|
|
config.Server[idx] = server
|
|
|
|
}
|
|
|
|
return config, nil
|
|
|
|
}
|