mirror of
https://github.com/XrayR-project/XrayR.git
synced 2025-06-07 21:09:53 +00:00
336 lines
9.6 KiB
Go
336 lines
9.6 KiB
Go
// Package controller Package generate the InboundConfig used by add inbound
|
|
package controller
|
|
|
|
import (
|
|
"crypto/rand"
|
|
"encoding/base64"
|
|
"encoding/hex"
|
|
"encoding/json"
|
|
"fmt"
|
|
"strings"
|
|
|
|
"github.com/sagernet/sing-shadowsocks/shadowaead_2022"
|
|
C "github.com/sagernet/sing/common"
|
|
"github.com/xtls/xray-core/common/net"
|
|
"github.com/xtls/xray-core/core"
|
|
"github.com/xtls/xray-core/infra/conf"
|
|
|
|
"github.com/XrayR-project/XrayR/api"
|
|
"github.com/XrayR-project/XrayR/common/mylego"
|
|
)
|
|
|
|
// InboundBuilder build Inbound config for different protocol
|
|
func InboundBuilder(config *Config, nodeInfo *api.NodeInfo, tag string) (*core.InboundHandlerConfig, error) {
|
|
inboundDetourConfig := &conf.InboundDetourConfig{}
|
|
// Build Listen IP address
|
|
if nodeInfo.NodeType == "Shadowsocks-Plugin" {
|
|
// Shdowsocks listen in 127.0.0.1 for safety
|
|
inboundDetourConfig.ListenOn = &conf.Address{Address: net.ParseAddress("127.0.0.1")}
|
|
} else if config.ListenIP != "" {
|
|
ipAddress := net.ParseAddress(config.ListenIP)
|
|
inboundDetourConfig.ListenOn = &conf.Address{Address: ipAddress}
|
|
}
|
|
|
|
// Build Port
|
|
portList := &conf.PortList{
|
|
Range: []conf.PortRange{{From: nodeInfo.Port, To: nodeInfo.Port}},
|
|
}
|
|
inboundDetourConfig.PortList = portList
|
|
// Build Tag
|
|
inboundDetourConfig.Tag = tag
|
|
// SniffingConfig
|
|
sniffingConfig := &conf.SniffingConfig{
|
|
Enabled: true,
|
|
DestOverride: &conf.StringList{"http", "tls"},
|
|
}
|
|
if config.DisableSniffing {
|
|
sniffingConfig.Enabled = false
|
|
}
|
|
inboundDetourConfig.SniffingConfig = sniffingConfig
|
|
|
|
var (
|
|
protocol string
|
|
streamSetting *conf.StreamConfig
|
|
setting json.RawMessage
|
|
)
|
|
|
|
var proxySetting any
|
|
// Build Protocol and Protocol setting
|
|
switch nodeInfo.NodeType {
|
|
case "V2ray":
|
|
if nodeInfo.EnableVless {
|
|
protocol = "vless"
|
|
// Enable fallback
|
|
if config.EnableFallback {
|
|
fallbackConfigs, err := buildVlessFallbacks(config.FallBackConfigs)
|
|
if err == nil {
|
|
proxySetting = &conf.VLessInboundConfig{
|
|
Decryption: "none",
|
|
Fallbacks: fallbackConfigs,
|
|
}
|
|
} else {
|
|
return nil, err
|
|
}
|
|
} else {
|
|
proxySetting = &conf.VLessInboundConfig{
|
|
Decryption: "none",
|
|
}
|
|
}
|
|
} else {
|
|
protocol = "vmess"
|
|
proxySetting = &conf.VMessInboundConfig{}
|
|
}
|
|
case "Trojan":
|
|
protocol = "trojan"
|
|
// Enable fallback
|
|
if config.EnableFallback {
|
|
fallbackConfigs, err := buildTrojanFallbacks(config.FallBackConfigs)
|
|
if err == nil {
|
|
proxySetting = &conf.TrojanServerConfig{
|
|
Fallbacks: fallbackConfigs,
|
|
}
|
|
} else {
|
|
return nil, err
|
|
}
|
|
} else {
|
|
proxySetting = &conf.TrojanServerConfig{}
|
|
}
|
|
case "Shadowsocks", "Shadowsocks-Plugin":
|
|
protocol = "shadowsocks"
|
|
cipher := strings.ToLower(nodeInfo.CypherMethod)
|
|
|
|
proxySetting = &conf.ShadowsocksServerConfig{
|
|
Cipher: cipher,
|
|
Password: nodeInfo.ServerKey, // shadowsocks2022 shareKey
|
|
}
|
|
|
|
proxySetting, _ := proxySetting.(*conf.ShadowsocksServerConfig)
|
|
// shadowsocks must have a random password
|
|
// shadowsocks2022's password == user PSK, thus should a length of string >= 32 and base64 encoder
|
|
b := make([]byte, 32)
|
|
rand.Read(b)
|
|
randPasswd := hex.EncodeToString(b)
|
|
if C.Contains(shadowaead_2022.List, cipher) {
|
|
proxySetting.Users = append(proxySetting.Users, &conf.ShadowsocksUserConfig{
|
|
Password: base64.StdEncoding.EncodeToString(b),
|
|
})
|
|
} else {
|
|
proxySetting.Password = randPasswd
|
|
}
|
|
|
|
proxySetting.NetworkList = &conf.NetworkList{"tcp", "udp"}
|
|
proxySetting.IVCheck = true
|
|
if config.DisableIVCheck {
|
|
proxySetting.IVCheck = false
|
|
}
|
|
|
|
case "dokodemo-door":
|
|
protocol = "dokodemo-door"
|
|
proxySetting = struct {
|
|
Host string `json:"address"`
|
|
NetworkList []string `json:"network"`
|
|
}{
|
|
Host: "v1.mux.cool",
|
|
NetworkList: []string{"tcp", "udp"},
|
|
}
|
|
default:
|
|
return nil, fmt.Errorf("unsupported node type: %s, Only support: V2ray, Trojan, Shadowsocks, and Shadowsocks-Plugin", nodeInfo.NodeType)
|
|
}
|
|
|
|
setting, err := json.Marshal(proxySetting)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("marshal proxy %s config failed: %s", nodeInfo.NodeType, err)
|
|
}
|
|
inboundDetourConfig.Protocol = protocol
|
|
inboundDetourConfig.Settings = &setting
|
|
|
|
// Build streamSettings
|
|
streamSetting = new(conf.StreamConfig)
|
|
transportProtocol := conf.TransportProtocol(nodeInfo.TransportProtocol)
|
|
networkType, err := transportProtocol.Build()
|
|
if err != nil {
|
|
return nil, fmt.Errorf("convert TransportProtocol failed: %s", err)
|
|
}
|
|
|
|
switch networkType {
|
|
case "tcp":
|
|
tcpSetting := &conf.TCPConfig{
|
|
AcceptProxyProtocol: config.EnableProxyProtocol,
|
|
HeaderConfig: nodeInfo.Header,
|
|
}
|
|
streamSetting.TCPSettings = tcpSetting
|
|
case "websocket":
|
|
headers := make(map[string]string)
|
|
headers["Host"] = nodeInfo.Host
|
|
wsSettings := &conf.WebSocketConfig{
|
|
AcceptProxyProtocol: config.EnableProxyProtocol,
|
|
Path: nodeInfo.Path,
|
|
Headers: headers,
|
|
}
|
|
streamSetting.WSSettings = wsSettings
|
|
case "http":
|
|
hosts := conf.StringList{nodeInfo.Host}
|
|
httpSettings := &conf.HTTPConfig{
|
|
Host: &hosts,
|
|
Path: nodeInfo.Path,
|
|
}
|
|
streamSetting.HTTPSettings = httpSettings
|
|
case "grpc":
|
|
grpcSettings := &conf.GRPCConfig{
|
|
ServiceName: nodeInfo.ServiceName,
|
|
}
|
|
streamSetting.GRPCConfig = grpcSettings
|
|
}
|
|
|
|
streamSetting.Network = &transportProtocol
|
|
|
|
// Build TLS and REALITY settings
|
|
var isREALITY bool
|
|
if config.DisableLocalREALITYConfig {
|
|
if nodeInfo.REALITYConfig != nil && nodeInfo.EnableREALITY {
|
|
isREALITY = true
|
|
streamSetting.Security = "reality"
|
|
|
|
r := nodeInfo.REALITYConfig
|
|
streamSetting.REALITYSettings = &conf.REALITYConfig{
|
|
Show: config.REALITYConfigs.Show,
|
|
Dest: []byte(`"` + r.Dest + `"`),
|
|
Xver: r.ProxyProtocolVer,
|
|
ServerNames: r.ServerNames,
|
|
PrivateKey: r.PrivateKey,
|
|
MinClientVer: r.MinClientVer,
|
|
MaxClientVer: r.MaxClientVer,
|
|
MaxTimeDiff: r.MaxTimeDiff,
|
|
ShortIds: r.ShortIds,
|
|
}
|
|
}
|
|
} else if config.EnableREALITY && config.REALITYConfigs != nil {
|
|
isREALITY = true
|
|
streamSetting.Security = "reality"
|
|
|
|
streamSetting.REALITYSettings = &conf.REALITYConfig{
|
|
Show: config.REALITYConfigs.Show,
|
|
Dest: []byte(`"` + config.REALITYConfigs.Dest + `"`),
|
|
Xver: config.REALITYConfigs.ProxyProtocolVer,
|
|
ServerNames: config.REALITYConfigs.ServerNames,
|
|
PrivateKey: config.REALITYConfigs.PrivateKey,
|
|
MinClientVer: config.REALITYConfigs.MinClientVer,
|
|
MaxClientVer: config.REALITYConfigs.MaxClientVer,
|
|
MaxTimeDiff: config.REALITYConfigs.MaxTimeDiff,
|
|
ShortIds: config.REALITYConfigs.ShortIds,
|
|
}
|
|
}
|
|
|
|
if !isREALITY && nodeInfo.EnableTLS && config.CertConfig.CertMode != "none" {
|
|
streamSetting.Security = "tls"
|
|
certFile, keyFile, err := getCertFile(config.CertConfig)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
tlsSettings := &conf.TLSConfig{
|
|
RejectUnknownSNI: config.CertConfig.RejectUnknownSni,
|
|
}
|
|
tlsSettings.Certs = append(tlsSettings.Certs, &conf.TLSCertConfig{CertFile: certFile, KeyFile: keyFile, OcspStapling: 3600})
|
|
streamSetting.TLSSettings = tlsSettings
|
|
}
|
|
|
|
// Support ProxyProtocol for any transport protocol
|
|
if networkType != "tcp" && networkType != "ws" && config.EnableProxyProtocol {
|
|
sockoptConfig := &conf.SocketConfig{
|
|
AcceptProxyProtocol: config.EnableProxyProtocol,
|
|
}
|
|
streamSetting.SocketSettings = sockoptConfig
|
|
}
|
|
inboundDetourConfig.StreamSetting = streamSetting
|
|
|
|
return inboundDetourConfig.Build()
|
|
}
|
|
|
|
func getCertFile(certConfig *mylego.CertConfig) (certFile string, keyFile string, err error) {
|
|
switch certConfig.CertMode {
|
|
case "file":
|
|
if certConfig.CertFile == "" || certConfig.KeyFile == "" {
|
|
return "", "", fmt.Errorf("cert file path or key file path not exist")
|
|
}
|
|
return certConfig.CertFile, certConfig.KeyFile, nil
|
|
case "dns":
|
|
lego, err := mylego.New(certConfig)
|
|
if err != nil {
|
|
return "", "", err
|
|
}
|
|
certPath, keyPath, err := lego.DNSCert()
|
|
if err != nil {
|
|
return "", "", err
|
|
}
|
|
return certPath, keyPath, err
|
|
case "http", "tls":
|
|
lego, err := mylego.New(certConfig)
|
|
if err != nil {
|
|
return "", "", err
|
|
}
|
|
certPath, keyPath, err := lego.HTTPCert()
|
|
if err != nil {
|
|
return "", "", err
|
|
}
|
|
return certPath, keyPath, err
|
|
default:
|
|
return "", "", fmt.Errorf("unsupported certmode: %s", certConfig.CertMode)
|
|
}
|
|
}
|
|
|
|
func buildVlessFallbacks(fallbackConfigs []*FallBackConfig) ([]*conf.VLessInboundFallback, error) {
|
|
if fallbackConfigs == nil {
|
|
return nil, fmt.Errorf("you must provide FallBackConfigs")
|
|
}
|
|
|
|
vlessFallBacks := make([]*conf.VLessInboundFallback, len(fallbackConfigs))
|
|
for i, c := range fallbackConfigs {
|
|
|
|
if c.Dest == "" {
|
|
return nil, fmt.Errorf("dest is required for fallback failed")
|
|
}
|
|
|
|
var dest json.RawMessage
|
|
dest, err := json.Marshal(c.Dest)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("marshal dest %s config failed: %s", dest, err)
|
|
}
|
|
vlessFallBacks[i] = &conf.VLessInboundFallback{
|
|
Name: c.SNI,
|
|
Alpn: c.Alpn,
|
|
Path: c.Path,
|
|
Dest: dest,
|
|
Xver: c.ProxyProtocolVer,
|
|
}
|
|
}
|
|
return vlessFallBacks, nil
|
|
}
|
|
|
|
func buildTrojanFallbacks(fallbackConfigs []*FallBackConfig) ([]*conf.TrojanInboundFallback, error) {
|
|
if fallbackConfigs == nil {
|
|
return nil, fmt.Errorf("you must provide FallBackConfigs")
|
|
}
|
|
|
|
trojanFallBacks := make([]*conf.TrojanInboundFallback, len(fallbackConfigs))
|
|
for i, c := range fallbackConfigs {
|
|
|
|
if c.Dest == "" {
|
|
return nil, fmt.Errorf("dest is required for fallback failed")
|
|
}
|
|
|
|
var dest json.RawMessage
|
|
dest, err := json.Marshal(c.Dest)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("marshal dest %s config failed: %s", dest, err)
|
|
}
|
|
trojanFallBacks[i] = &conf.TrojanInboundFallback{
|
|
Name: c.SNI,
|
|
Alpn: c.Alpn,
|
|
Path: c.Path,
|
|
Dest: dest,
|
|
Xver: c.ProxyProtocolVer,
|
|
}
|
|
}
|
|
return trojanFallBacks, nil
|
|
}
|