feat(pia): add PIA login-and-add WireGuard outbounds (#6272)

* feat(pia): add login-and-add WireGuard outbounds (#2)

* fix(pia): keep PIA outbounds identifiable after the editor strips hostname

The outbound editor drops piaHostname, so last-segment matching failed for hyphenated servers. Identify rows by the computed tag, re-encrypt stored tokens onto the active key, skip unusable catalog rows, and always release the catalog refresh latch.
This commit is contained in:
Masterain
2026-08-23 05:11:06 +08:00
committed by GitHub
parent a3e617215c
commit bd6a6aba43
73 changed files with 4095 additions and 31 deletions
@@ -0,0 +1,57 @@
package xray
import (
"encoding/base64"
"testing"
)
func testWGKey(seed byte) string {
raw := make([]byte, 32)
for i := range raw {
raw[i] = seed
}
return base64.StdEncoding.EncodeToString(raw)
}
func TestValidateOutboundConfig_PiaUserspaceWireGuard(t *testing.T) {
piaOutbound := `{
"tag": "pia-us-east-useast1",
"piaHostname": "useast1",
"protocol": "wireguard",
"settings": {
"secretKey": "` + testWGKey(1) + `",
"address": ["10.0.0.2/32"],
"mtu": 1420,
"noKernelTun": true,
"peers": [{
"publicKey": "` + testWGKey(2) + `",
"endpoint": "198.51.100.10:51820",
"allowedIPs": ["0.0.0.0/0"],
"keepAlive": 25
}]
}
}`
if err := ValidateOutboundConfig([]byte(piaOutbound)); err != nil {
t.Fatalf("xray-core rejected the PIA WireGuard outbound the panel emits: %v", err)
}
second := `{
"tag": "pia-us-west-uswest1",
"piaHostname": "uswest1",
"protocol": "wireguard",
"settings": {
"secretKey": "` + testWGKey(1) + `",
"address": ["10.0.0.2/32"],
"mtu": 1420,
"noKernelTun": true,
"peers": [{
"publicKey": "` + testWGKey(2) + `",
"endpoint": "198.51.100.20:51820",
"allowedIPs": ["0.0.0.0/0"],
"keepAlive": 25
}]
}
}`
if err := ValidateOutboundConfig([]byte(second)); err != nil {
t.Fatalf("second PIA WireGuard outbound: %v", err)
}
}