mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-04 17:27:23 -05:00
57 lines
1.4 KiB
Go
57 lines
1.4 KiB
Go
// +build json
|
|
|
|
package shadowsocks
|
|
|
|
import (
|
|
"encoding/json"
|
|
|
|
"github.com/v2ray/v2ray-core/common/log"
|
|
"github.com/v2ray/v2ray-core/common/serial"
|
|
"github.com/v2ray/v2ray-core/proxy/internal"
|
|
"github.com/v2ray/v2ray-core/proxy/internal/config"
|
|
)
|
|
|
|
func (this *Config) UnmarshalJSON(data []byte) error {
|
|
type JsonConfig struct {
|
|
Cipher serial.StringLiteral `json:"method"`
|
|
Password serial.StringLiteral `json:"password"`
|
|
UDP bool `json:"udp"`
|
|
}
|
|
jsonConfig := new(JsonConfig)
|
|
if err := json.Unmarshal(data, jsonConfig); err != nil {
|
|
return err
|
|
}
|
|
|
|
this.UDP = jsonConfig.UDP
|
|
jsonConfig.Cipher = jsonConfig.Cipher.ToLower()
|
|
switch jsonConfig.Cipher.String() {
|
|
case "aes-256-cfb":
|
|
this.Cipher = &AesCfb{
|
|
KeyBytes: 32,
|
|
}
|
|
case "aes-128-cfb":
|
|
this.Cipher = &AesCfb{
|
|
KeyBytes: 16,
|
|
}
|
|
default:
|
|
log.Error("Shadowsocks: Unknown cipher method: ", jsonConfig.Cipher)
|
|
return internal.ErrorBadConfiguration
|
|
}
|
|
|
|
if len(jsonConfig.Password) == 0 {
|
|
log.Error("Shadowsocks: Password is not specified.")
|
|
return internal.ErrorBadConfiguration
|
|
}
|
|
this.Key = PasswordToCipherKey(jsonConfig.Password.String(), this.Cipher.KeySize())
|
|
|
|
return nil
|
|
}
|
|
|
|
func init() {
|
|
config.RegisterInboundConfig("shadowsocks", func(data []byte) (interface{}, error) {
|
|
rawConfig := new(Config)
|
|
err := json.Unmarshal(data, rawConfig)
|
|
return rawConfig, err
|
|
})
|
|
}
|