Skip to content

Commit 781b783

Browse files
committed
feat: add amnezia-wg-option to wireguard outbound
1 parent ddfa9e8 commit 781b783

File tree

4 files changed

+60
-10
lines changed

4 files changed

+60
-10
lines changed

adapter/outbound/wireguard.go

+40-4
Original file line numberDiff line numberDiff line change
@@ -24,18 +24,24 @@ import (
2424
"github.com/metacubex/mihomo/dns"
2525
"github.com/metacubex/mihomo/log"
2626

27+
amnezia "github.com/metacubex/amneziawg-go/device"
2728
wireguard "github.com/metacubex/sing-wireguard"
29+
"github.com/metacubex/wireguard-go/device"
2830

2931
"github.com/sagernet/sing/common/debug"
3032
E "github.com/sagernet/sing/common/exceptions"
3133
M "github.com/sagernet/sing/common/metadata"
32-
"github.com/sagernet/wireguard-go/device"
3334
)
3435

36+
type wireguardGoDevice interface {
37+
Close()
38+
IpcSet(uapiConf string) error
39+
}
40+
3541
type WireGuard struct {
3642
*Base
3743
bind *wireguard.ClientBind
38-
device *device.Device
44+
device wireguardGoDevice
3945
tunDevice wireguard.Device
4046
dialer proxydialer.SingDialer
4147
resolver *dns.Resolver
@@ -67,6 +73,8 @@ type WireGuardOption struct {
6773
UDP bool `proxy:"udp,omitempty"`
6874
PersistentKeepalive int `proxy:"persistent-keepalive,omitempty"`
6975

76+
AmneziaWGOption *AmneziaWGOption `proxy:"amnezia-wg-option,omitempty"`
77+
7078
Peers []WireGuardPeerOption `proxy:"peers,omitempty"`
7179

7280
RemoteDnsResolve bool `proxy:"remote-dns-resolve,omitempty"`
@@ -84,6 +92,18 @@ type WireGuardPeerOption struct {
8492
AllowedIPs []string `proxy:"allowed-ips,omitempty"`
8593
}
8694

95+
type AmneziaWGOption struct {
96+
JC int `proxy:"jc"`
97+
JMin int `proxy:"jmin"`
98+
JMax int `proxy:"jmax"`
99+
S1 int `proxy:"s1"`
100+
S2 int `proxy:"s2"`
101+
H1 uint32 `proxy:"h1"`
102+
H2 uint32 `proxy:"h2"`
103+
H3 uint32 `proxy:"h3"`
104+
H4 uint32 `proxy:"h4"`
105+
}
106+
87107
type wgSingErrorHandler struct {
88108
name string
89109
}
@@ -243,14 +263,19 @@ func NewWireGuard(option WireGuardOption) (*WireGuard, error) {
243263
if err != nil {
244264
return nil, E.Cause(err, "create WireGuard device")
245265
}
246-
outbound.device = device.NewDevice(context.Background(), outbound.tunDevice, outbound.bind, &device.Logger{
266+
logger := &device.Logger{
247267
Verbosef: func(format string, args ...interface{}) {
248268
log.SingLogger.Debug(fmt.Sprintf("[WG](%s) %s", option.Name, fmt.Sprintf(format, args...)))
249269
},
250270
Errorf: func(format string, args ...interface{}) {
251271
log.SingLogger.Error(fmt.Sprintf("[WG](%s) %s", option.Name, fmt.Sprintf(format, args...)))
252272
},
253-
}, option.Workers)
273+
}
274+
if option.AmneziaWGOption != nil {
275+
outbound.device = amnezia.NewDevice(outbound.tunDevice, outbound.bind, logger, option.Workers)
276+
} else {
277+
outbound.device = device.NewDevice(outbound.tunDevice, outbound.bind, logger, option.Workers)
278+
}
254279

255280
var has6 bool
256281
for _, address := range outbound.localPrefixes {
@@ -367,6 +392,17 @@ func (w *WireGuard) genIpcConf(ctx context.Context, updateOnly bool) (string, er
367392
ipcConf := ""
368393
if !updateOnly {
369394
ipcConf += "private_key=" + w.option.PrivateKey + "\n"
395+
if w.option.AmneziaWGOption != nil {
396+
ipcConf += "jc=" + strconv.Itoa(w.option.AmneziaWGOption.JC) + "\n"
397+
ipcConf += "jmin=" + strconv.Itoa(w.option.AmneziaWGOption.JMin) + "\n"
398+
ipcConf += "jmax=" + strconv.Itoa(w.option.AmneziaWGOption.JMax) + "\n"
399+
ipcConf += "s1=" + strconv.Itoa(w.option.AmneziaWGOption.S1) + "\n"
400+
ipcConf += "s2=" + strconv.Itoa(w.option.AmneziaWGOption.S2) + "\n"
401+
ipcConf += "h1=" + strconv.FormatUint(uint64(w.option.AmneziaWGOption.H1), 10) + "\n"
402+
ipcConf += "h2=" + strconv.FormatUint(uint64(w.option.AmneziaWGOption.H2), 10) + "\n"
403+
ipcConf += "h3=" + strconv.FormatUint(uint64(w.option.AmneziaWGOption.H3), 10) + "\n"
404+
ipcConf += "h4=" + strconv.FormatUint(uint64(w.option.AmneziaWGOption.H4), 10) + "\n"
405+
}
370406
}
371407
if len(w.option.Peers) > 0 {
372408
for i, peer := range w.option.Peers {

docs/config.yaml

+11
Original file line numberDiff line numberDiff line change
@@ -760,6 +760,17 @@ proxies: # socks5
760760
# # pre-shared-key: 31aIhAPwktDGpH4JDhA8GNvjFXEf/a6+UaQRyOAiyfM=
761761
# allowed-ips: ['0.0.0.0/0']
762762
# reserved: [209,98,59]
763+
# 如果存在则开启AmneziaWG功能
764+
# amnezia-wg-option:
765+
# jc: 5
766+
# jmin: 500
767+
# jmax: 501
768+
# s1: 30
769+
# s2: 40
770+
# h1: 123456
771+
# h2: 67543
772+
# h4: 32345
773+
# h3: 123123
763774

764775
# tuic
765776
- name: tuic

go.mod

+3-2
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ require (
1717
github.com/klauspost/cpuid/v2 v2.2.8
1818
github.com/lunixbochs/struc v0.0.0-20200707160740-784aaebc1d40
1919
github.com/mdlayher/netlink v1.7.2
20+
github.com/metacubex/amneziawg-go v0.0.0-20240922133038-fdf3a4d5a4ab
2021
github.com/metacubex/bbolt v0.0.0-20240822011022-aed6d4850399
2122
github.com/metacubex/chacha v0.1.0
2223
github.com/metacubex/gopacket v1.1.20-0.20230608035415-7e2f98a3e759
@@ -27,9 +28,10 @@ require (
2728
github.com/metacubex/sing-shadowsocks2 v0.2.2
2829
github.com/metacubex/sing-tun v0.2.7-0.20240729131039-ed03f557dee1
2930
github.com/metacubex/sing-vmess v0.1.9-0.20240719134745-1df6fb20bbf9
30-
github.com/metacubex/sing-wireguard v0.0.0-20240826061955-1e4e67afe5cd
31+
github.com/metacubex/sing-wireguard v0.0.0-20240922131718-0f10c39a5531
3132
github.com/metacubex/tfo-go v0.0.0-20240830120620-c5e019b67785
3233
github.com/metacubex/utls v1.6.6
34+
github.com/metacubex/wireguard-go v0.0.0-20240922131502-c182e7471181
3335
github.com/miekg/dns v1.1.62
3436
github.com/mroth/weightedrand/v2 v2.1.0
3537
github.com/openacid/low v0.1.21
@@ -40,7 +42,6 @@ require (
4042
github.com/sagernet/sing v0.5.0-alpha.13
4143
github.com/sagernet/sing-mux v0.2.1-0.20240124034317-9bfb33698bb6
4244
github.com/sagernet/sing-shadowtls v0.1.4
43-
github.com/sagernet/wireguard-go v0.0.0-20231209092712-9a439356a62e
4445
github.com/samber/lo v1.47.0
4546
github.com/shirou/gopsutil/v3 v3.24.5
4647
github.com/sirupsen/logrus v1.9.3

go.sum

+6-4
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,8 @@ github.com/mdlayher/netlink v1.7.2 h1:/UtM3ofJap7Vl4QWCPDGXY8d3GIY2UGSDbK+QWmY8/
9696
github.com/mdlayher/netlink v1.7.2/go.mod h1:xraEF7uJbxLhc5fpHL4cPe221LI2bdttWlU+ZGLfQSw=
9797
github.com/mdlayher/socket v0.4.1 h1:eM9y2/jlbs1M615oshPQOHZzj6R6wMT7bX5NPiQvn2U=
9898
github.com/mdlayher/socket v0.4.1/go.mod h1:cAqeGjoufqdxWkD7DkpyS+wcefOtmu5OQ8KuoJGIReA=
99+
github.com/metacubex/amneziawg-go v0.0.0-20240922133038-fdf3a4d5a4ab h1:Chbw+/31UC14YFNr78pESt5Vowlc62zziw05JCUqoL4=
100+
github.com/metacubex/amneziawg-go v0.0.0-20240922133038-fdf3a4d5a4ab/go.mod h1:xVKK8jC5Sd3hfh7WjmCq+HorehIbrBijaUWmcuKjPcI=
99101
github.com/metacubex/bbolt v0.0.0-20240822011022-aed6d4850399 h1:oBowHVKZycNtAFbZ6avaCSZJYeme2Nrj+4RpV2cNJig=
100102
github.com/metacubex/bbolt v0.0.0-20240822011022-aed6d4850399/go.mod h1:4xcieuIK+M4bGQmQYZVqEaIYqjS1ahO4kXG7EmDgEro=
101103
github.com/metacubex/chacha v0.1.0 h1:tg9RSJ18NvL38cCWNyYH1eiG6qDCyyXIaTLQthon0sc=
@@ -120,12 +122,14 @@ github.com/metacubex/sing-tun v0.2.7-0.20240729131039-ed03f557dee1 h1:ypfofGDZbP
120122
github.com/metacubex/sing-tun v0.2.7-0.20240729131039-ed03f557dee1/go.mod h1:olbEx9yVcaw5tHTNlRamRoxmMKcvDvcVS1YLnQGzvWE=
121123
github.com/metacubex/sing-vmess v0.1.9-0.20240719134745-1df6fb20bbf9 h1:OAXiCosqY8xKDp3pqTW3qbrCprZ1l6WkrXSFSCwyY4I=
122124
github.com/metacubex/sing-vmess v0.1.9-0.20240719134745-1df6fb20bbf9/go.mod h1:olVkD4FChQ5gKMHG4ZzuD7+fMkJY1G8vwOKpRehjrmY=
123-
github.com/metacubex/sing-wireguard v0.0.0-20240826061955-1e4e67afe5cd h1:r7alry8u4qlUFLNMwGvG1A8ZcfPM6AMSmrm6E2yKdB4=
124-
github.com/metacubex/sing-wireguard v0.0.0-20240826061955-1e4e67afe5cd/go.mod h1:uY+BYb0UEknLrqvbGcwi9i++KgrKxsurysgI6G1Pveo=
125+
github.com/metacubex/sing-wireguard v0.0.0-20240922131718-0f10c39a5531 h1:BoIL2fZZTPzvSxuhng9kWwvUZ8fiMJyrWbgdHIX0CDs=
126+
github.com/metacubex/sing-wireguard v0.0.0-20240922131718-0f10c39a5531/go.mod h1:6nitcmzPDL3MXnLdhu6Hm126Zk4S1fBbX3P7jxUxSFw=
125127
github.com/metacubex/tfo-go v0.0.0-20240830120620-c5e019b67785 h1:NNmI+ZV0DzNuqaAInRQuZFLHlWVuyHeow8jYpdKjHjo=
126128
github.com/metacubex/tfo-go v0.0.0-20240830120620-c5e019b67785/go.mod h1:c7bVFM9f5+VzeZ/6Kg77T/jrg1Xp8QpqlSHvG/aXVts=
127129
github.com/metacubex/utls v1.6.6 h1:3D12YKHTf2Z41UPhQU2dWerNWJ5TVQD9gKoQ+H+iLC8=
128130
github.com/metacubex/utls v1.6.6/go.mod h1:+WLFUnXjcpdxXCnyX25nggw8C6YonZ8zOK2Zm/oRvdo=
131+
github.com/metacubex/wireguard-go v0.0.0-20240922131502-c182e7471181 h1:hJLQviGySBuaynlCwf/oYgIxbVbGRUIKZCxdya9YrbQ=
132+
github.com/metacubex/wireguard-go v0.0.0-20240922131502-c182e7471181/go.mod h1:phewKljNYiTVT31Gcif8RiCKnTUOgVWFJjccqYM8s+Y=
129133
github.com/miekg/dns v1.1.62 h1:cN8OuEF1/x5Rq6Np+h1epln8OiyPWV+lROx9LxcGgIQ=
130134
github.com/miekg/dns v1.1.62/go.mod h1:mvDlcItzm+br7MToIKqkglaGhlFMHJ9DTNNWONWXbNQ=
131135
github.com/mroth/weightedrand/v2 v2.1.0 h1:o1ascnB1CIVzsqlfArQQjeMy1U0NcIbBO5rfd5E/OeU=
@@ -168,8 +172,6 @@ github.com/sagernet/sing-shadowtls v0.1.4 h1:aTgBSJEgnumzFenPvc+kbD9/W0PywzWevnV
168172
github.com/sagernet/sing-shadowtls v0.1.4/go.mod h1:F8NBgsY5YN2beQavdgdm1DPlhaKQlaL6lpDdcBglGK4=
169173
github.com/sagernet/smux v0.0.0-20231208180855-7041f6ea79e7 h1:DImB4lELfQhplLTxeq2z31Fpv8CQqqrUwTbrIRumZqQ=
170174
github.com/sagernet/smux v0.0.0-20231208180855-7041f6ea79e7/go.mod h1:FP9X2xjT/Az1EsG/orYYoC+5MojWnuI7hrffz8fGwwo=
171-
github.com/sagernet/wireguard-go v0.0.0-20231209092712-9a439356a62e h1:iGH0RMv2FzELOFNFQtvsxH7NPmlo7X5JizEK51UCojo=
172-
github.com/sagernet/wireguard-go v0.0.0-20231209092712-9a439356a62e/go.mod h1:YbL4TKHRR6APYQv3U2RGfwLDpPYSyWz6oUlpISBEzBE=
173175
github.com/samber/lo v1.47.0 h1:z7RynLwP5nbyRscyvcD043DWYoOcYRv3mV8lBeqOCLc=
174176
github.com/samber/lo v1.47.0/go.mod h1:RmDH9Ct32Qy3gduHQuKJ3gW1fMHAnE/fAzQuf6He5cU=
175177
github.com/shirou/gopsutil/v3 v3.24.5 h1:i0t8kL+kQTvpAYToeuiVk3TgDeKOFioZO3Ztz/iZ9pI=

0 commit comments

Comments
 (0)