Skip to content

Commit 654de1c

Browse files
committed
Merge branch 'win-daita-v2'
2 parents ff88a77 + 0d5ba1a commit 654de1c

File tree

29 files changed

+817
-206
lines changed

29 files changed

+817
-206
lines changed

.github/workflows/clippy.yml

+10-1
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,17 @@ jobs:
6363
sudo apt-get update
6464
sudo apt-get install libdbus-1-dev
6565
66+
- name: Install msbuild
67+
if: matrix.os == 'windows-latest'
68+
uses: microsoft/setup-msbuild@v1.0.2
69+
with:
70+
vs-version: 16
71+
72+
- name: Install latest zig
73+
if: matrix.os == 'windows-latest'
74+
uses: mlugg/setup-zig@v1
75+
6676
- name: Install Go
67-
if: matrix.os == 'linux-latest' || matrix.os == 'macos-latest'
6877
uses: actions/setup-go@v5
6978
with:
7079
go-version: 1.21.3

.github/workflows/daemon.yml

+6-1
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,9 @@ jobs:
130130
uses: actions/checkout@v4
131131

132132
- name: Checkout submodules
133-
run: git submodule update --init --depth=1
133+
run: |
134+
git submodule update --init --depth=1
135+
git submodule update --init --recursive --depth=1 wireguard-go-rs
134136
135137
- name: Install Protoc
136138
# NOTE: ARM runner already has protoc
@@ -183,6 +185,9 @@ jobs:
183185
with:
184186
vs-version: 16
185187

188+
- name: Install latest zig
189+
uses: mlugg/setup-zig@v1
190+
186191
- name: Build Windows modules
187192
if: steps.cache-windows-modules.outputs.cache-hit != 'true'
188193
shell: bash

.github/workflows/desktop-e2e.yml

+2
Original file line numberDiff line numberDiff line change
@@ -200,6 +200,8 @@ jobs:
200200
toolchain: stable
201201
target: i686-pc-windows-msvc
202202
default: true
203+
- name: Install latest zig
204+
uses: mlugg/setup-zig@v1
203205
- name: Install msbuild
204206
uses: microsoft/setup-msbuild@v1.0.2
205207
with:

.github/workflows/rust-unused-dependencies.yml

+11-1
Original file line numberDiff line numberDiff line change
@@ -103,11 +103,21 @@ jobs:
103103
uses: actions/checkout@v4
104104

105105
- name: Checkout wireguard-go submodule
106-
if: matrix.os == 'macos-latest'
107106
run: |
108107
git config --global --add safe.directory '*'
108+
git submodule update --init --depth=1
109109
git submodule update --init --recursive --depth=1 wireguard-go-rs
110110
111+
- name: Install msbuild
112+
if: matrix.os == 'windows-latest'
113+
uses: microsoft/setup-msbuild@v1.0.2
114+
with:
115+
vs-version: 16
116+
117+
- name: Install latest zig
118+
if: matrix.os == 'windows-latest'
119+
uses: mlugg/setup-zig@v1
120+
111121
- name: Install Protoc
112122
uses: arduino/setup-protoc@v3
113123
with:

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@
1414
/dist-assets/mullvad-setup.exe
1515
/dist-assets/mullvad-problem-report
1616
/dist-assets/mullvad-problem-report.exe
17+
/dist-assets/libwg.dll
18+
/dist-assets/maybenot_ffi.dll
1719
/dist-assets/libtalpid_openvpn_plugin.dylib
1820
/dist-assets/libtalpid_openvpn_plugin.so
1921
/dist-assets/talpid_openvpn_plugin.dll

BuildInstructions.md

+5-4
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,8 @@ on your platform please submit an issue or a pull request.
2323

2424
Install the `msi` hosted here: https://github.com/volta-cli/volta
2525

26-
- (Not Windows) Install Go (ideally version `1.21`) by following the [official
27-
instructions](https://golang.org/doc/install). Newer versions may work
28-
too.
26+
- Install Go (ideally version `1.21`) by following the [official instructions](https://golang.org/doc/install).
27+
Newer versions may work too.
2928

3029
- Install a protobuf compiler (version 3.15 and up), it can be installed on most major Linux distros
3130
via the package name `protobuf-compiler`, `protobuf` on macOS via Homebrew, and on Windows
@@ -96,6 +95,8 @@ The host has to have the following installed:
9695
- `bash` installed as well as a few base unix utilities, including `sed` and `tail`.
9796
You are recommended to use [Git for Windows].
9897
98+
- `zig` installed and available in `%PATH%`. 0.14 or later is recommended: https://ziglang.org/download/.
99+
99100
- `msbuild.exe` available in `%PATH%`. If you installed Visual Studio Community edition, the
100101
binary can be found under:
101102
@@ -153,7 +154,7 @@ In addition to the above requirements:
153154
the Electron app:
154155

155156
```
156-
pushd gui
157+
pushd desktop/packages/mullvad-vpn
157158
npm install --target_arch=x64 grpc-tools
158159
popd
159160
```

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@ Line wrap the file at 100 chars. Th
2525
### Added
2626
#### Windows
2727
- Add support for Windows ARM64.
28+
- Add support for DAITA V2.
29+
- Add back wireguard-go (userspace WireGuard) support.
2830

2931
### Changed
3032
- (Linux and macOS only) Update to DAITA v2. The main difference is that many different machines are

Cargo.lock

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build.sh

+2
Original file line numberDiff line numberDiff line change
@@ -265,6 +265,8 @@ function build {
265265
mullvad-problem-report.exe
266266
talpid_openvpn_plugin.dll
267267
mullvad-setup.exe
268+
libwg.dll
269+
maybenot_ffi.dll
268270
)
269271
fi
270272

desktop/packages/mullvad-vpn/tasks/distribution.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,8 @@ function newConfig() {
177177
),
178178
to: '.',
179179
},
180-
{ from: distAssets('maybenot_machines'), to: '.' },
180+
{ from: distAssets(path.join('${env.DIST_SUBDIR}', 'libwg.dll')), to: '.' },
181+
{ from: distAssets(path.join('${env.DIST_SUBDIR}', 'maybenot_ffi.dll')), to: '.' },
181182
],
182183
},
183184

talpid-tunnel-config-client/src/lib.rs

+18-32
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ mod proto {
2222
tonic::include_proto!("ephemeralpeer");
2323
}
2424

25-
#[cfg(unix)]
2625
const DAITA_VERSION: u32 = 2;
2726

2827
#[derive(Debug)]
@@ -88,7 +87,6 @@ pub const CONFIG_SERVICE_PORT: u16 = 1337;
8887

8988
pub struct EphemeralPeer {
9089
pub psk: Option<PresharedKey>,
91-
#[cfg(unix)]
9290
pub daita: Option<DaitaSettings>,
9391
}
9492

@@ -141,19 +139,15 @@ pub async fn request_ephemeral_peer_with(
141139
wg_parent_pubkey: parent_pubkey.as_bytes().to_vec(),
142140
wg_ephemeral_peer_pubkey: ephemeral_pubkey.as_bytes().to_vec(),
143141
post_quantum: pq_request,
144-
#[cfg(windows)]
145-
daita: Some(proto::DaitaRequestV1 {
146-
activate_daita: enable_daita,
147-
}),
148-
#[cfg(windows)]
149-
daita_v2: None,
150-
#[cfg(unix)]
151142
daita: None,
152-
#[cfg(unix)]
153-
daita_v2: enable_daita.then(|| proto::DaitaRequestV2 {
154-
level: i32::from(proto::DaitaLevel::LevelDefault),
155-
platform: i32::from(get_platform()),
156-
version: DAITA_VERSION,
143+
daita_v2: enable_daita.then(|| {
144+
let platform = get_platform();
145+
log::trace!("DAITA v2 platform: {platform:?}");
146+
proto::DaitaRequestV2 {
147+
level: i32::from(proto::DaitaLevel::LevelDefault),
148+
platform: i32::from(platform),
149+
version: DAITA_VERSION,
150+
}
157151
}),
158152
})
159153
.await
@@ -204,30 +198,22 @@ pub async fn request_ephemeral_peer_with(
204198
None
205199
};
206200

207-
#[cfg(unix)]
208-
{
209-
let daita = response.daita.map(|daita| DaitaSettings {
210-
client_machines: daita.client_machines,
211-
max_padding_frac: daita.max_padding_frac,
212-
max_blocking_frac: daita.max_blocking_frac,
213-
});
214-
if daita.is_none() && enable_daita {
215-
return Err(Error::MissingDaitaResponse);
216-
}
217-
Ok(EphemeralPeer { psk, daita })
218-
}
219-
220-
#[cfg(windows)]
221-
{
222-
Ok(EphemeralPeer { psk })
201+
let daita = response.daita.map(|daita| DaitaSettings {
202+
client_machines: daita.client_machines,
203+
max_padding_frac: daita.max_padding_frac,
204+
max_blocking_frac: daita.max_blocking_frac,
205+
});
206+
if daita.is_none() && enable_daita {
207+
return Err(Error::MissingDaitaResponse);
223208
}
209+
Ok(EphemeralPeer { psk, daita })
224210
}
225211

226-
#[cfg(unix)]
227212
const fn get_platform() -> proto::DaitaPlatform {
228213
use proto::DaitaPlatform;
229214
const PLATFORM: DaitaPlatform = if cfg!(target_os = "windows") {
230-
DaitaPlatform::WindowsNative
215+
// FIXME: wggo
216+
DaitaPlatform::LinuxWgGo
231217
} else if cfg!(target_os = "linux") {
232218
DaitaPlatform::LinuxWgGo
233219
} else if cfg!(target_os = "macos") {

talpid-wireguard/Cargo.toml

-2
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,6 @@ tunnel-obfuscation = { path = "../tunnel-obfuscation" }
3030
rand = "0.8.5"
3131
surge-ping = "0.8.0"
3232
rand_chacha = "0.3.1"
33-
34-
[target.'cfg(not(windows))'.dependencies]
3533
wireguard-go-rs = { path = "../wireguard-go-rs"}
3634

3735
[target.'cfg(target_os="android")'.dependencies]

talpid-wireguard/build.rs

+3-4
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,10 @@ fn main() {
66
if target_os == "windows" {
77
declare_libs_dir("../dist-assets/binaries");
88
}
9-
// Wireguard-Go can be used on all platforms except Windows
9+
// Wireguard-Go can be used on all platforms
1010
println!("cargo::rustc-check-cfg=cfg(wireguard_go)");
11-
if matches!(target_os.as_str(), "linux" | "macos" | "android") {
12-
println!("cargo::rustc-cfg=wireguard_go");
13-
}
11+
println!("cargo::rustc-cfg=wireguard_go");
12+
1413
// Enable DAITA by default on desktop and android
1514
println!("cargo::rustc-check-cfg=cfg(daita)");
1615
println!("cargo::rustc-cfg=daita");

talpid-wireguard/src/connectivity/mock.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ impl Tunnel for MockTunnel {
121121
#[cfg(daita)]
122122
fn start_daita(
123123
&mut self,
124-
#[cfg(not(target_os = "windows"))] _: talpid_tunnel_config_client::DaitaSettings,
124+
_: talpid_tunnel_config_client::DaitaSettings,
125125
) -> std::result::Result<(), TunnelError> {
126126
Ok(())
127127
}

talpid-wireguard/src/ephemeral.rs

+2-17
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,6 @@ async fn config_ephemeral_peers_inner(
110110
)
111111
.await?;
112112

113-
#[cfg(not(target_os = "windows"))]
114113
let mut daita = exit_ephemeral_peer.daita;
115114

116115
log::debug!("Retrieved ephemeral peer");
@@ -145,14 +144,10 @@ async fn config_ephemeral_peers_inner(
145144
log::debug!("Successfully exchanged PSK with entry peer");
146145

147146
config.entry_peer.psk = entry_ephemeral_peer.psk;
148-
#[cfg(not(target_os = "windows"))]
149-
{
150-
daita = entry_ephemeral_peer.daita;
151-
}
147+
daita = entry_ephemeral_peer.daita;
152148
}
153149

154150
config.exit_peer_mut().psk = exit_ephemeral_peer.psk;
155-
#[cfg(daita)]
156151
if config.daita {
157152
log::trace!("Enabling constant packet size for entry peer");
158153
config.entry_peer.constant_packet_size = true;
@@ -170,28 +165,18 @@ async fn config_ephemeral_peers_inner(
170165
)
171166
.await?;
172167

173-
#[cfg(daita)]
174168
if config.daita {
175-
#[cfg(not(target_os = "windows"))]
176-
let Some(daita) = daita
177-
else {
169+
let Some(daita) = daita else {
178170
unreachable!("missing DAITA settings");
179171
};
180172

181173
// Start local DAITA machines
182174
let mut tunnel = tunnel.lock().await;
183175
if let Some(tunnel) = tunnel.as_mut() {
184-
#[cfg(not(target_os = "windows"))]
185176
tunnel
186177
.start_daita(daita)
187178
.map_err(Error::TunnelError)
188179
.map_err(CloseMsg::SetupError)?;
189-
190-
#[cfg(target_os = "windows")]
191-
tunnel
192-
.start_daita()
193-
.map_err(Error::TunnelError)
194-
.map_err(CloseMsg::SetupError)?;
195180
}
196181
}
197182

0 commit comments

Comments
 (0)