2022-11-22 01:05:54 +00:00
|
|
|
package conf
|
|
|
|
|
|
|
|
import (
|
2024-06-29 18:32:57 +00:00
|
|
|
"context"
|
2022-11-22 01:05:54 +00:00
|
|
|
"encoding/base64"
|
|
|
|
"encoding/hex"
|
2023-11-12 20:52:09 +00:00
|
|
|
"strings"
|
2022-11-22 01:05:54 +00:00
|
|
|
|
2024-06-29 18:32:57 +00:00
|
|
|
"github.com/xtls/xray-core/common/errors"
|
2022-11-22 01:05:54 +00:00
|
|
|
"github.com/xtls/xray-core/proxy/wireguard"
|
2023-08-10 04:43:34 +00:00
|
|
|
"google.golang.org/protobuf/proto"
|
2022-11-22 01:05:54 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type WireGuardPeerConfig struct {
|
|
|
|
PublicKey string `json:"publicKey"`
|
|
|
|
PreSharedKey string `json:"preSharedKey"`
|
|
|
|
Endpoint string `json:"endpoint"`
|
2023-11-18 03:27:17 +00:00
|
|
|
KeepAlive uint32 `json:"keepAlive"`
|
2022-11-22 01:05:54 +00:00
|
|
|
AllowedIPs []string `json:"allowedIPs,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *WireGuardPeerConfig) Build() (proto.Message, error) {
|
|
|
|
var err error
|
|
|
|
config := new(wireguard.PeerConfig)
|
|
|
|
|
2023-11-18 03:27:17 +00:00
|
|
|
if c.PublicKey != "" {
|
2024-06-01 23:34:31 +00:00
|
|
|
config.PublicKey, err = ParseWireGuardKey(c.PublicKey)
|
2023-11-18 03:27:17 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2022-11-22 01:05:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if c.PreSharedKey != "" {
|
2024-06-01 23:34:31 +00:00
|
|
|
config.PreSharedKey, err = ParseWireGuardKey(c.PreSharedKey)
|
2022-11-22 01:05:54 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
config.Endpoint = c.Endpoint
|
|
|
|
// default 0
|
2023-11-18 03:27:17 +00:00
|
|
|
config.KeepAlive = c.KeepAlive
|
2022-11-22 01:05:54 +00:00
|
|
|
if c.AllowedIPs == nil {
|
|
|
|
config.AllowedIps = []string{"0.0.0.0/0", "::0/0"}
|
|
|
|
} else {
|
|
|
|
config.AllowedIps = c.AllowedIPs
|
|
|
|
}
|
|
|
|
|
|
|
|
return config, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
type WireGuardConfig struct {
|
2023-11-18 03:27:17 +00:00
|
|
|
IsClient bool `json:""`
|
|
|
|
|
|
|
|
KernelMode *bool `json:"kernelMode"`
|
2023-11-12 20:52:09 +00:00
|
|
|
SecretKey string `json:"secretKey"`
|
|
|
|
Address []string `json:"address"`
|
|
|
|
Peers []*WireGuardPeerConfig `json:"peers"`
|
2023-11-18 03:27:17 +00:00
|
|
|
MTU int32 `json:"mtu"`
|
|
|
|
NumWorkers int32 `json:"workers"`
|
2023-11-12 20:52:09 +00:00
|
|
|
Reserved []byte `json:"reserved"`
|
|
|
|
DomainStrategy string `json:"domainStrategy"`
|
2022-11-22 01:05:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (c *WireGuardConfig) Build() (proto.Message, error) {
|
|
|
|
config := new(wireguard.DeviceConfig)
|
|
|
|
|
|
|
|
var err error
|
2024-06-01 23:34:31 +00:00
|
|
|
config.SecretKey, err = ParseWireGuardKey(c.SecretKey)
|
2022-11-22 01:05:54 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
if c.Address == nil {
|
|
|
|
// bogon ips
|
|
|
|
config.Endpoint = []string{"10.0.0.1", "fd59:7153:2388:b5fd:0000:0000:0000:0001"}
|
|
|
|
} else {
|
|
|
|
config.Endpoint = c.Address
|
|
|
|
}
|
|
|
|
|
|
|
|
if c.Peers != nil {
|
|
|
|
config.Peers = make([]*wireguard.PeerConfig, len(c.Peers))
|
|
|
|
for i, p := range c.Peers {
|
|
|
|
msg, err := p.Build()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
config.Peers[i] = msg.(*wireguard.PeerConfig)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if c.MTU == 0 {
|
|
|
|
config.Mtu = 1420
|
|
|
|
} else {
|
2023-11-18 03:27:17 +00:00
|
|
|
config.Mtu = c.MTU
|
2022-11-22 01:05:54 +00:00
|
|
|
}
|
2023-11-18 03:27:17 +00:00
|
|
|
// these a fallback code exists in wireguard-go code,
|
2022-11-22 01:05:54 +00:00
|
|
|
// we don't need to process fallback manually
|
2023-11-18 03:27:17 +00:00
|
|
|
config.NumWorkers = c.NumWorkers
|
2022-11-22 01:05:54 +00:00
|
|
|
|
2023-03-02 16:55:42 +00:00
|
|
|
if len(c.Reserved) != 0 && len(c.Reserved) != 3 {
|
2024-06-29 18:32:57 +00:00
|
|
|
return nil, errors.New(`"reserved" should be empty or 3 bytes`)
|
2023-03-02 16:55:42 +00:00
|
|
|
}
|
|
|
|
config.Reserved = c.Reserved
|
|
|
|
|
2023-11-12 20:52:09 +00:00
|
|
|
switch strings.ToLower(c.DomainStrategy) {
|
|
|
|
case "forceip", "":
|
|
|
|
config.DomainStrategy = wireguard.DeviceConfig_FORCE_IP
|
|
|
|
case "forceipv4":
|
|
|
|
config.DomainStrategy = wireguard.DeviceConfig_FORCE_IP4
|
|
|
|
case "forceipv6":
|
|
|
|
config.DomainStrategy = wireguard.DeviceConfig_FORCE_IP6
|
|
|
|
case "forceipv4v6":
|
|
|
|
config.DomainStrategy = wireguard.DeviceConfig_FORCE_IP46
|
|
|
|
case "forceipv6v4":
|
|
|
|
config.DomainStrategy = wireguard.DeviceConfig_FORCE_IP64
|
|
|
|
default:
|
2024-06-29 18:32:57 +00:00
|
|
|
return nil, errors.New("unsupported domain strategy: ", c.DomainStrategy)
|
2023-11-12 20:52:09 +00:00
|
|
|
}
|
|
|
|
|
2023-11-18 03:27:17 +00:00
|
|
|
config.IsClient = c.IsClient
|
|
|
|
if c.KernelMode != nil {
|
|
|
|
config.KernelMode = *c.KernelMode
|
|
|
|
if config.KernelMode && !wireguard.KernelTunSupported() {
|
2024-06-29 18:32:57 +00:00
|
|
|
errors.LogWarning(context.Background(), "kernel mode is not supported on your OS or permission is insufficient")
|
2023-11-18 03:27:17 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
config.KernelMode = wireguard.KernelTunSupported()
|
|
|
|
if config.KernelMode {
|
2024-06-29 18:32:57 +00:00
|
|
|
errors.LogDebug(context.Background(), "kernel mode is enabled as it's supported and permission is sufficient")
|
2023-11-18 03:27:17 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-11-22 01:05:54 +00:00
|
|
|
return config, nil
|
|
|
|
}
|
|
|
|
|
2024-06-01 23:34:31 +00:00
|
|
|
func ParseWireGuardKey(str string) (string, error) {
|
2023-11-18 03:27:17 +00:00
|
|
|
var err error
|
|
|
|
|
|
|
|
if len(str)%2 == 0 {
|
|
|
|
_, err = hex.DecodeString(str)
|
|
|
|
if err == nil {
|
|
|
|
return str, nil
|
2022-11-22 01:05:54 +00:00
|
|
|
}
|
2023-11-18 03:27:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
var dat []byte
|
|
|
|
str = strings.TrimSuffix(str, "=")
|
|
|
|
if strings.ContainsRune(str, '+') || strings.ContainsRune(str, '/') {
|
|
|
|
dat, err = base64.RawStdEncoding.DecodeString(str)
|
2022-11-22 01:05:54 +00:00
|
|
|
} else {
|
2023-11-18 03:27:17 +00:00
|
|
|
dat, err = base64.RawURLEncoding.DecodeString(str)
|
2022-11-22 01:05:54 +00:00
|
|
|
}
|
2023-11-18 03:27:17 +00:00
|
|
|
if err == nil {
|
|
|
|
return hex.EncodeToString(dat), nil
|
|
|
|
}
|
|
|
|
|
2024-06-29 18:32:57 +00:00
|
|
|
return "", errors.New("failed to deserialize key").Base(err)
|
2022-11-22 01:05:54 +00:00
|
|
|
}
|