| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561 |
- package conf
- import (
- "encoding/base64"
- "encoding/json"
- "strings"
- "github.com/golang/protobuf/proto"
- "github.com/v2fly/v2ray-core/v4/common/platform/filesystem"
- "github.com/v2fly/v2ray-core/v4/common/protocol"
- "github.com/v2fly/v2ray-core/v4/common/serial"
- "github.com/v2fly/v2ray-core/v4/infra/conf/cfgcommon"
- "github.com/v2fly/v2ray-core/v4/transport/internet"
- "github.com/v2fly/v2ray-core/v4/transport/internet/domainsocket"
- httpheader "github.com/v2fly/v2ray-core/v4/transport/internet/headers/http"
- "github.com/v2fly/v2ray-core/v4/transport/internet/http"
- "github.com/v2fly/v2ray-core/v4/transport/internet/kcp"
- "github.com/v2fly/v2ray-core/v4/transport/internet/quic"
- "github.com/v2fly/v2ray-core/v4/transport/internet/tcp"
- "github.com/v2fly/v2ray-core/v4/transport/internet/tls"
- "github.com/v2fly/v2ray-core/v4/transport/internet/websocket"
- )
- var (
- kcpHeaderLoader = NewJSONConfigLoader(ConfigCreatorCache{
- "none": func() interface{} { return new(NoOpAuthenticator) },
- "srtp": func() interface{} { return new(SRTPAuthenticator) },
- "utp": func() interface{} { return new(UTPAuthenticator) },
- "wechat-video": func() interface{} { return new(WechatVideoAuthenticator) },
- "dtls": func() interface{} { return new(DTLSAuthenticator) },
- "wireguard": func() interface{} { return new(WireguardAuthenticator) },
- }, "type", "")
- tcpHeaderLoader = NewJSONConfigLoader(ConfigCreatorCache{
- "none": func() interface{} { return new(NoOpConnectionAuthenticator) },
- "http": func() interface{} { return new(Authenticator) },
- }, "type", "")
- )
- type KCPConfig struct {
- Mtu *uint32 `json:"mtu"`
- Tti *uint32 `json:"tti"`
- UpCap *uint32 `json:"uplinkCapacity"`
- DownCap *uint32 `json:"downlinkCapacity"`
- Congestion *bool `json:"congestion"`
- ReadBufferSize *uint32 `json:"readBufferSize"`
- WriteBufferSize *uint32 `json:"writeBufferSize"`
- HeaderConfig json.RawMessage `json:"header"`
- Seed *string `json:"seed"`
- }
- // Build implements Buildable.
- func (c *KCPConfig) Build() (proto.Message, error) {
- config := new(kcp.Config)
- if c.Mtu != nil {
- mtu := *c.Mtu
- if mtu < 576 || mtu > 1460 {
- return nil, newError("invalid mKCP MTU size: ", mtu).AtError()
- }
- config.Mtu = &kcp.MTU{Value: mtu}
- }
- if c.Tti != nil {
- tti := *c.Tti
- if tti < 10 || tti > 100 {
- return nil, newError("invalid mKCP TTI: ", tti).AtError()
- }
- config.Tti = &kcp.TTI{Value: tti}
- }
- if c.UpCap != nil {
- config.UplinkCapacity = &kcp.UplinkCapacity{Value: *c.UpCap}
- }
- if c.DownCap != nil {
- config.DownlinkCapacity = &kcp.DownlinkCapacity{Value: *c.DownCap}
- }
- if c.Congestion != nil {
- config.Congestion = *c.Congestion
- }
- if c.ReadBufferSize != nil {
- size := *c.ReadBufferSize
- if size > 0 {
- config.ReadBuffer = &kcp.ReadBuffer{Size: size * 1024 * 1024}
- } else {
- config.ReadBuffer = &kcp.ReadBuffer{Size: 512 * 1024}
- }
- }
- if c.WriteBufferSize != nil {
- size := *c.WriteBufferSize
- if size > 0 {
- config.WriteBuffer = &kcp.WriteBuffer{Size: size * 1024 * 1024}
- } else {
- config.WriteBuffer = &kcp.WriteBuffer{Size: 512 * 1024}
- }
- }
- if len(c.HeaderConfig) > 0 {
- headerConfig, _, err := kcpHeaderLoader.Load(c.HeaderConfig)
- if err != nil {
- return nil, newError("invalid mKCP header config.").Base(err).AtError()
- }
- ts, err := headerConfig.(Buildable).Build()
- if err != nil {
- return nil, newError("invalid mKCP header config").Base(err).AtError()
- }
- config.HeaderConfig = serial.ToTypedMessage(ts)
- }
- if c.Seed != nil {
- config.Seed = &kcp.EncryptionSeed{Seed: *c.Seed}
- }
- return config, nil
- }
- type TCPConfig struct {
- HeaderConfig json.RawMessage `json:"header"`
- AcceptProxyProtocol bool `json:"acceptProxyProtocol"`
- }
- // Build implements Buildable.
- func (c *TCPConfig) Build() (proto.Message, error) {
- config := new(tcp.Config)
- if len(c.HeaderConfig) > 0 {
- headerConfig, _, err := tcpHeaderLoader.Load(c.HeaderConfig)
- if err != nil {
- return nil, newError("invalid TCP header config").Base(err).AtError()
- }
- ts, err := headerConfig.(Buildable).Build()
- if err != nil {
- return nil, newError("invalid TCP header config").Base(err).AtError()
- }
- config.HeaderSettings = serial.ToTypedMessage(ts)
- }
- if c.AcceptProxyProtocol {
- config.AcceptProxyProtocol = c.AcceptProxyProtocol
- }
- return config, nil
- }
- type WebSocketConfig struct {
- Path string `json:"path"`
- Headers map[string]string `json:"headers"`
- AcceptProxyProtocol bool `json:"acceptProxyProtocol"`
- MaxEarlyData int32 `json:"maxEarlyData"`
- UseBrowserForwarding bool `json:"useBrowserForwarding"`
- EarlyDataHeaderName string `json:"earlyDataHeaderName"`
- }
- // Build implements Buildable.
- func (c *WebSocketConfig) Build() (proto.Message, error) {
- path := c.Path
- header := make([]*websocket.Header, 0, 32)
- for key, value := range c.Headers {
- header = append(header, &websocket.Header{
- Key: key,
- Value: value,
- })
- }
- config := &websocket.Config{
- Path: path,
- Header: header,
- MaxEarlyData: c.MaxEarlyData,
- UseBrowserForwarding: c.UseBrowserForwarding,
- EarlyDataHeaderName: c.EarlyDataHeaderName,
- }
- if c.AcceptProxyProtocol {
- config.AcceptProxyProtocol = c.AcceptProxyProtocol
- }
- return config, nil
- }
- type HTTPConfig struct {
- Host *cfgcommon.StringList `json:"host"`
- Path string `json:"path"`
- Method string `json:"method"`
- Headers map[string]*cfgcommon.StringList `json:"headers"`
- }
- // Build implements Buildable.
- func (c *HTTPConfig) Build() (proto.Message, error) {
- config := &http.Config{
- Path: c.Path,
- }
- if c.Host != nil {
- config.Host = []string(*c.Host)
- }
- if c.Method != "" {
- config.Method = c.Method
- }
- if len(c.Headers) > 0 {
- config.Header = make([]*httpheader.Header, 0, len(c.Headers))
- headerNames := sortMapKeys(c.Headers)
- for _, key := range headerNames {
- value := c.Headers[key]
- if value == nil {
- return nil, newError("empty HTTP header value: " + key).AtError()
- }
- config.Header = append(config.Header, &httpheader.Header{
- Name: key,
- Value: append([]string(nil), (*value)...),
- })
- }
- }
- return config, nil
- }
- type QUICConfig struct {
- Header json.RawMessage `json:"header"`
- Security string `json:"security"`
- Key string `json:"key"`
- }
- // Build implements Buildable.
- func (c *QUICConfig) Build() (proto.Message, error) {
- config := &quic.Config{
- Key: c.Key,
- }
- if len(c.Header) > 0 {
- headerConfig, _, err := kcpHeaderLoader.Load(c.Header)
- if err != nil {
- return nil, newError("invalid QUIC header config.").Base(err).AtError()
- }
- ts, err := headerConfig.(Buildable).Build()
- if err != nil {
- return nil, newError("invalid QUIC header config").Base(err).AtError()
- }
- config.Header = serial.ToTypedMessage(ts)
- }
- var st protocol.SecurityType
- switch strings.ToLower(c.Security) {
- case "aes-128-gcm":
- st = protocol.SecurityType_AES128_GCM
- case "chacha20-poly1305":
- st = protocol.SecurityType_CHACHA20_POLY1305
- default:
- st = protocol.SecurityType_NONE
- }
- config.Security = &protocol.SecurityConfig{
- Type: st,
- }
- return config, nil
- }
- type DomainSocketConfig struct {
- Path string `json:"path"`
- Abstract bool `json:"abstract"`
- Padding bool `json:"padding"`
- }
- // Build implements Buildable.
- func (c *DomainSocketConfig) Build() (proto.Message, error) {
- return &domainsocket.Config{
- Path: c.Path,
- Abstract: c.Abstract,
- Padding: c.Padding,
- }, nil
- }
- func readFileOrString(f string, s []string) ([]byte, error) {
- if len(f) > 0 {
- return filesystem.ReadFile(f)
- }
- if len(s) > 0 {
- return []byte(strings.Join(s, "\n")), nil
- }
- return nil, newError("both file and bytes are empty.")
- }
- type TLSCertConfig struct {
- CertFile string `json:"certificateFile"`
- CertStr []string `json:"certificate"`
- KeyFile string `json:"keyFile"`
- KeyStr []string `json:"key"`
- Usage string `json:"usage"`
- }
- // Build implements Buildable.
- func (c *TLSCertConfig) Build() (*tls.Certificate, error) {
- certificate := new(tls.Certificate)
- cert, err := readFileOrString(c.CertFile, c.CertStr)
- if err != nil {
- return nil, newError("failed to parse certificate").Base(err)
- }
- certificate.Certificate = cert
- if len(c.KeyFile) > 0 || len(c.KeyStr) > 0 {
- key, err := readFileOrString(c.KeyFile, c.KeyStr)
- if err != nil {
- return nil, newError("failed to parse key").Base(err)
- }
- certificate.Key = key
- }
- switch strings.ToLower(c.Usage) {
- case "encipherment":
- certificate.Usage = tls.Certificate_ENCIPHERMENT
- case "verify":
- certificate.Usage = tls.Certificate_AUTHORITY_VERIFY
- case "verifyclient":
- certificate.Usage = tls.Certificate_AUTHORITY_VERIFY_CLIENT
- case "issue":
- certificate.Usage = tls.Certificate_AUTHORITY_ISSUE
- default:
- certificate.Usage = tls.Certificate_ENCIPHERMENT
- }
- return certificate, nil
- }
- type TLSConfig struct {
- Insecure bool `json:"allowInsecure"`
- Certs []*TLSCertConfig `json:"certificates"`
- ServerName string `json:"serverName"`
- ALPN *cfgcommon.StringList `json:"alpn"`
- EnableSessionResumption bool `json:"enableSessionResumption"`
- DisableSystemRoot bool `json:"disableSystemRoot"`
- PinnedPeerCertificateChainSha256 *[]string `json:"pinnedPeerCertificateChainSha256"`
- VerifyClientCertificate bool `json:"verifyClientCertificate"`
- }
- // Build implements Buildable.
- func (c *TLSConfig) Build() (proto.Message, error) {
- config := new(tls.Config)
- config.Certificate = make([]*tls.Certificate, len(c.Certs))
- for idx, certConf := range c.Certs {
- cert, err := certConf.Build()
- if err != nil {
- return nil, err
- }
- config.Certificate[idx] = cert
- }
- serverName := c.ServerName
- config.AllowInsecure = c.Insecure
- config.VerifyClientCertificate = c.VerifyClientCertificate
- if len(c.ServerName) > 0 {
- config.ServerName = serverName
- }
- if c.ALPN != nil && len(*c.ALPN) > 0 {
- config.NextProtocol = []string(*c.ALPN)
- }
- config.EnableSessionResumption = c.EnableSessionResumption
- config.DisableSystemRoot = c.DisableSystemRoot
- if c.PinnedPeerCertificateChainSha256 != nil {
- config.PinnedPeerCertificateChainSha256 = [][]byte{}
- for _, v := range *c.PinnedPeerCertificateChainSha256 {
- hashValue, err := base64.StdEncoding.DecodeString(v)
- if err != nil {
- return nil, err
- }
- config.PinnedPeerCertificateChainSha256 = append(config.PinnedPeerCertificateChainSha256, hashValue)
- }
- }
- return config, nil
- }
- type TransportProtocol string
- // Build implements Buildable.
- func (p TransportProtocol) Build() (string, error) {
- switch strings.ToLower(string(p)) {
- case "tcp":
- return "tcp", nil
- case "kcp", "mkcp":
- return "mkcp", nil
- case "ws", "websocket":
- return "websocket", nil
- case "h2", "http":
- return "http", nil
- case "ds", "domainsocket":
- return "domainsocket", nil
- case "quic":
- return "quic", nil
- case "gun", "grpc":
- return "gun", nil
- default:
- return "", newError("Config: unknown transport protocol: ", p)
- }
- }
- type SocketConfig struct {
- Mark uint32 `json:"mark"`
- TFO *bool `json:"tcpFastOpen"`
- TProxy string `json:"tproxy"`
- AcceptProxyProtocol bool `json:"acceptProxyProtocol"`
- TCPKeepAliveInterval int32 `json:"tcpKeepAliveInterval"`
- }
- // Build implements Buildable.
- func (c *SocketConfig) Build() (*internet.SocketConfig, error) {
- var tfoSettings internet.SocketConfig_TCPFastOpenState
- if c.TFO != nil {
- if *c.TFO {
- tfoSettings = internet.SocketConfig_Enable
- } else {
- tfoSettings = internet.SocketConfig_Disable
- }
- }
- var tproxy internet.SocketConfig_TProxyMode
- switch strings.ToLower(c.TProxy) {
- case "tproxy":
- tproxy = internet.SocketConfig_TProxy
- case "redirect":
- tproxy = internet.SocketConfig_Redirect
- default:
- tproxy = internet.SocketConfig_Off
- }
- return &internet.SocketConfig{
- Mark: c.Mark,
- Tfo: tfoSettings,
- Tproxy: tproxy,
- AcceptProxyProtocol: c.AcceptProxyProtocol,
- TcpKeepAliveInterval: c.TCPKeepAliveInterval,
- }, nil
- }
- type StreamConfig struct {
- Network *TransportProtocol `json:"network"`
- Security string `json:"security"`
- TLSSettings *TLSConfig `json:"tlsSettings"`
- TCPSettings *TCPConfig `json:"tcpSettings"`
- KCPSettings *KCPConfig `json:"kcpSettings"`
- WSSettings *WebSocketConfig `json:"wsSettings"`
- HTTPSettings *HTTPConfig `json:"httpSettings"`
- DSSettings *DomainSocketConfig `json:"dsSettings"`
- QUICSettings *QUICConfig `json:"quicSettings"`
- GunSettings *GunConfig `json:"gunSettings"`
- GRPCSettings *GunConfig `json:"grpcSettings"`
- SocketSettings *SocketConfig `json:"sockopt"`
- }
- // Build implements Buildable.
- func (c *StreamConfig) Build() (*internet.StreamConfig, error) {
- config := &internet.StreamConfig{
- ProtocolName: "tcp",
- }
- if c.Network != nil {
- protocol, err := c.Network.Build()
- if err != nil {
- return nil, err
- }
- config.ProtocolName = protocol
- }
- if strings.EqualFold(c.Security, "tls") {
- tlsSettings := c.TLSSettings
- if tlsSettings == nil {
- tlsSettings = &TLSConfig{}
- }
- ts, err := tlsSettings.Build()
- if err != nil {
- return nil, newError("Failed to build TLS config.").Base(err)
- }
- tm := serial.ToTypedMessage(ts)
- config.SecuritySettings = append(config.SecuritySettings, tm)
- config.SecurityType = tm.Type
- }
- if c.TCPSettings != nil {
- ts, err := c.TCPSettings.Build()
- if err != nil {
- return nil, newError("Failed to build TCP config.").Base(err)
- }
- config.TransportSettings = append(config.TransportSettings, &internet.TransportConfig{
- ProtocolName: "tcp",
- Settings: serial.ToTypedMessage(ts),
- })
- }
- if c.KCPSettings != nil {
- ts, err := c.KCPSettings.Build()
- if err != nil {
- return nil, newError("Failed to build mKCP config.").Base(err)
- }
- config.TransportSettings = append(config.TransportSettings, &internet.TransportConfig{
- ProtocolName: "mkcp",
- Settings: serial.ToTypedMessage(ts),
- })
- }
- if c.WSSettings != nil {
- ts, err := c.WSSettings.Build()
- if err != nil {
- return nil, newError("Failed to build WebSocket config.").Base(err)
- }
- config.TransportSettings = append(config.TransportSettings, &internet.TransportConfig{
- ProtocolName: "websocket",
- Settings: serial.ToTypedMessage(ts),
- })
- }
- if c.HTTPSettings != nil {
- ts, err := c.HTTPSettings.Build()
- if err != nil {
- return nil, newError("Failed to build HTTP config.").Base(err)
- }
- config.TransportSettings = append(config.TransportSettings, &internet.TransportConfig{
- ProtocolName: "http",
- Settings: serial.ToTypedMessage(ts),
- })
- }
- if c.DSSettings != nil {
- ds, err := c.DSSettings.Build()
- if err != nil {
- return nil, newError("Failed to build DomainSocket config.").Base(err)
- }
- config.TransportSettings = append(config.TransportSettings, &internet.TransportConfig{
- ProtocolName: "domainsocket",
- Settings: serial.ToTypedMessage(ds),
- })
- }
- if c.QUICSettings != nil {
- qs, err := c.QUICSettings.Build()
- if err != nil {
- return nil, newError("Failed to build QUIC config.").Base(err)
- }
- config.TransportSettings = append(config.TransportSettings, &internet.TransportConfig{
- ProtocolName: "quic",
- Settings: serial.ToTypedMessage(qs),
- })
- }
- if c.GunSettings == nil {
- c.GunSettings = c.GRPCSettings
- }
- if c.GunSettings != nil {
- gs, err := c.GunSettings.Build()
- if err != nil {
- return nil, newError("Failed to build Gun config.").Base(err)
- }
- config.TransportSettings = append(config.TransportSettings, &internet.TransportConfig{
- ProtocolName: "gun",
- Settings: serial.ToTypedMessage(gs),
- })
- }
- if c.SocketSettings != nil {
- ss, err := c.SocketSettings.Build()
- if err != nil {
- return nil, newError("Failed to build sockopt.").Base(err)
- }
- config.SocketSettings = ss
- }
- return config, nil
- }
- type ProxyConfig struct {
- Tag string `json:"tag"`
- TransportLayerProxy bool `json:"transportLayer"`
- }
- // Build implements Buildable.
- func (v *ProxyConfig) Build() (*internet.ProxyConfig, error) {
- if v.Tag == "" {
- return nil, newError("Proxy tag is not set.")
- }
- return &internet.ProxyConfig{
- Tag: v.Tag,
- TransportLayerProxy: v.TransportLayerProxy,
- }, nil
- }
|