-
Notifications
You must be signed in to change notification settings - Fork 387
/
Copy pathlib.rs
1166 lines (1029 loc) · 41.9 KB
/
lib.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
//! Manage WireGuard tunnels.
#![deny(missing_docs)]
use self::config::Config;
use futures::future::{abortable, AbortHandle as FutureAbortHandle, BoxFuture, Future};
#[cfg(windows)]
use futures::{channel::mpsc, StreamExt};
#[cfg(target_os = "linux")]
use once_cell::sync::Lazy;
#[cfg(target_os = "android")]
use std::borrow::Cow;
#[cfg(target_os = "linux")]
use std::env;
#[cfg(windows)]
use std::io;
use std::{
convert::Infallible,
net::IpAddr,
path::Path,
pin::Pin,
sync::{mpsc as sync_mpsc, Arc, Mutex},
time::Duration,
};
use talpid_routing as routing;
use talpid_routing::{self, RequiredRoute};
#[cfg(not(windows))]
use talpid_tunnel::tun_provider;
use talpid_tunnel::{tun_provider::TunProvider, TunnelArgs, TunnelEvent, TunnelMetadata};
use ipnetwork::IpNetwork;
use talpid_types::{
net::{
obfuscation::ObfuscatorConfig,
wireguard::{PresharedKey, PrivateKey, PublicKey},
AllowedTunnelTraffic, Endpoint, TransportProtocol,
},
BoxedError, ErrorExt,
};
use tokio::sync::Mutex as AsyncMutex;
use tunnel_obfuscation::{
create_obfuscator, Error as ObfuscationError, Settings as ObfuscationSettings, Udp2TcpSettings,
};
#[cfg(any(target_os = "linux", target_os = "macos"))]
use talpid_tunnel::{IPV4_HEADER_SIZE, IPV6_HEADER_SIZE, WIREGUARD_HEADER_SIZE};
/// WireGuard config data-types
pub mod config;
mod connectivity_check;
mod logging;
mod ping_monitor;
mod stats;
#[cfg(target_os = "linux")]
mod unix;
#[cfg(wireguard_go)]
mod wireguard_go;
#[cfg(target_os = "linux")]
pub(crate) mod wireguard_kernel;
#[cfg(windows)]
mod wireguard_nt;
#[cfg(wireguard_go)]
use self::wireguard_go::WgGoTunnel;
type Result<T> = std::result::Result<T, Error>;
type EventCallback = Box<dyn (Fn(TunnelEvent) -> BoxFuture<'static, ()>) + Send + Sync + 'static>;
/// Errors that can happen in the Wireguard tunnel monitor.
#[derive(err_derive::Error, Debug)]
#[error(no_from)]
pub enum Error {
/// Failed to set up routing.
#[error(display = "Failed to setup routing")]
SetupRoutingError(#[error(source)] talpid_routing::Error),
/// Failed to set MTU
#[error(display = "Failed to detect MTU because every ping was dropped.")]
MtuDetectionAllDropped,
/// Failed to set MTU
#[error(display = "Failed to detect MTU because of unexpected ping error.")]
MtuDetectionPingError(#[error(source)] surge_ping::SurgeError),
/// Tunnel timed out
#[error(display = "Tunnel timed out")]
TimeoutError,
/// An interaction with a tunnel failed
#[error(display = "Tunnel failed")]
TunnelError(#[error(source)] TunnelError),
/// Failed to create tunnel obfuscator
#[error(display = "Failed to create tunnel obfuscator")]
CreateObfuscatorError(#[error(source)] ObfuscationError),
/// Failed to run tunnel obfuscator
#[error(display = "Tunnel obfuscator failed")]
ObfuscatorError(#[error(source)] ObfuscationError),
/// Failed to set up connectivity monitor
#[error(display = "Connectivity monitor failed")]
ConnectivityMonitorError(#[error(source)] connectivity_check::Error),
/// Failed to negotiate PQ PSK
#[error(display = "Failed to negotiate PQ PSK")]
PskNegotiationError(#[error(source)] talpid_tunnel_config_client::Error),
/// Failed to set up IP interfaces.
#[cfg(windows)]
#[error(display = "Failed to set up IP interfaces")]
IpInterfacesError,
/// Failed to set IP addresses on WireGuard interface
#[cfg(target_os = "windows")]
#[error(display = "Failed to set IP addresses on WireGuard interface")]
SetIpAddressesError(#[error(source)] talpid_windows::net::Error),
}
impl Error {
/// Return whether retrying the operation that caused this error is likely to succeed.
pub fn is_recoverable(&self) -> bool {
match self {
Error::CreateObfuscatorError(_) => true,
Error::ObfuscatorError(_) => true,
Error::PskNegotiationError(_) => true,
Error::TunnelError(TunnelError::RecoverableStartWireguardError) => true,
Error::SetupRoutingError(error) => error.is_recoverable(),
#[cfg(target_os = "android")]
Error::TunnelError(TunnelError::BypassError(_)) => true,
#[cfg(windows)]
_ => self.get_tunnel_device_error().is_some(),
#[cfg(not(windows))]
_ => false,
}
}
/// Get the inner tunnel device error, if there is one
#[cfg(windows)]
pub fn get_tunnel_device_error(&self) -> Option<&io::Error> {
match self {
Error::TunnelError(TunnelError::SetupTunnelDevice(error)) => Some(error),
_ => None,
}
}
}
/// Spawns and monitors a wireguard tunnel
pub struct WireguardMonitor {
runtime: tokio::runtime::Handle,
/// Tunnel implementation
tunnel: Arc<Mutex<Option<Box<dyn Tunnel>>>>,
/// Callback to signal tunnel events
event_callback: EventCallback,
close_msg_receiver: sync_mpsc::Receiver<CloseMsg>,
pinger_stop_sender: sync_mpsc::Sender<()>,
obfuscator: Arc<AsyncMutex<Option<ObfuscatorHandle>>>,
}
const INITIAL_PSK_EXCHANGE_TIMEOUT: Duration = Duration::from_secs(8);
const MAX_PSK_EXCHANGE_TIMEOUT: Duration = Duration::from_secs(48);
const PSK_EXCHANGE_TIMEOUT_MULTIPLIER: u32 = 2;
/// Simple wrapper that automatically cancels the future which runs an obfuscator.
struct ObfuscatorHandle {
abort_handle: FutureAbortHandle,
#[cfg(target_os = "android")]
remote_socket_fd: std::os::unix::io::RawFd,
}
impl ObfuscatorHandle {
pub fn new(
abort_handle: FutureAbortHandle,
#[cfg(target_os = "android")] remote_socket_fd: std::os::unix::io::RawFd,
) -> Self {
Self {
abort_handle,
#[cfg(target_os = "android")]
remote_socket_fd,
}
}
#[cfg(target_os = "android")]
pub fn remote_socket_fd(&self) -> std::os::unix::io::RawFd {
self.remote_socket_fd
}
pub fn abort(&self) {
self.abort_handle.abort();
}
}
impl Drop for ObfuscatorHandle {
fn drop(&mut self) {
self.abort_handle.abort();
}
}
#[cfg(target_os = "linux")]
/// Overrides the preference for the kernel module for WireGuard.
static FORCE_USERSPACE_WIREGUARD: Lazy<bool> = Lazy::new(|| {
env::var("TALPID_FORCE_USERSPACE_WIREGUARD")
.map(|v| v != "0")
.unwrap_or(false)
});
async fn maybe_create_obfuscator(
config: &mut Config,
close_msg_sender: sync_mpsc::Sender<CloseMsg>,
) -> Result<Option<ObfuscatorHandle>> {
if let Some(ref obfuscator_config) = config.obfuscator_config {
match obfuscator_config {
ObfuscatorConfig::Udp2Tcp { endpoint } => {
log::trace!("Connecting to Udp2Tcp endpoint {:?}", *endpoint);
let settings = Udp2TcpSettings {
peer: *endpoint,
#[cfg(target_os = "linux")]
fwmark: config.fwmark,
};
let obfuscator = create_obfuscator(&ObfuscationSettings::Udp2Tcp(settings))
.await
.map_err(Error::CreateObfuscatorError)?;
let endpoint = obfuscator.endpoint();
log::trace!("Patching first WireGuard peer to become {:?}", endpoint);
config.entry_peer.endpoint = endpoint;
#[cfg(target_os = "android")]
let remote_socket_fd = obfuscator.remote_socket_fd();
let (runner, abort_handle) = abortable(async move {
match obfuscator.run().await {
Ok(_) => {
let _ = close_msg_sender.send(CloseMsg::ObfuscatorExpired);
}
Err(error) => {
log::error!(
"{}",
error.display_chain_with_msg("Obfuscation controller failed")
);
let _ = close_msg_sender
.send(CloseMsg::ObfuscatorFailed(Error::ObfuscatorError(error)));
}
}
});
tokio::spawn(runner);
return Ok(Some(ObfuscatorHandle::new(
abort_handle,
#[cfg(target_os = "android")]
remote_socket_fd,
)));
}
}
}
Ok(None)
}
impl WireguardMonitor {
/// Starts a WireGuard tunnel with the given config
pub fn start<
F: (Fn(TunnelEvent) -> Pin<Box<dyn std::future::Future<Output = ()> + Send>>)
+ Send
+ Sync
+ Clone
+ 'static,
>(
mut config: Config,
psk_negotiation: bool,
log_path: Option<&Path>,
args: TunnelArgs<'_, F>,
) -> Result<WireguardMonitor> {
let on_event = args.on_event.clone();
let endpoint_addrs: Vec<IpAddr> = config.peers().map(|peer| peer.endpoint.ip()).collect();
let (close_obfs_sender, close_obfs_listener) = sync_mpsc::channel();
let obfuscator = args.runtime.block_on(maybe_create_obfuscator(
&mut config,
close_obfs_sender.clone(),
))?;
#[cfg(target_os = "windows")]
let (setup_done_tx, setup_done_rx) = mpsc::channel(0);
let tunnel = Self::open_tunnel(
args.runtime.clone(),
&config,
log_path,
args.resource_dir,
args.tun_provider.clone(),
#[cfg(target_os = "windows")]
args.route_manager.clone(),
#[cfg(target_os = "windows")]
setup_done_tx,
#[cfg(target_os = "android")]
psk_negotiation,
)?;
let iface_name = tunnel.get_interface_name();
#[cfg(target_os = "android")]
if let Some(remote_socket_fd) = obfuscator.as_ref().map(|obfs| obfs.remote_socket_fd()) {
// Exclude remote obfuscation socket or bridge
log::debug!("Excluding remote socket fd from the tunnel");
if let Err(error) = args.tun_provider.lock().unwrap().bypass(remote_socket_fd) {
log::error!("Failed to exclude remote socket fd: {error}");
}
}
let obfuscator = Arc::new(AsyncMutex::new(obfuscator));
let event_callback = Box::new(on_event.clone());
let (pinger_tx, pinger_rx) = sync_mpsc::channel();
let monitor = WireguardMonitor {
runtime: args.runtime.clone(),
tunnel: Arc::new(Mutex::new(Some(tunnel))),
event_callback,
close_msg_receiver: close_obfs_listener,
pinger_stop_sender: pinger_tx,
obfuscator,
};
let gateway = config.ipv4_gateway;
let mut connectivity_monitor = connectivity_check::ConnectivityMonitor::new(
gateway,
#[cfg(any(target_os = "macos", target_os = "linux"))]
iface_name.clone(),
Arc::downgrade(&monitor.tunnel),
pinger_rx,
)
.map_err(Error::ConnectivityMonitorError)?;
let moved_tunnel = monitor.tunnel.clone();
let moved_close_obfs_sender = close_obfs_sender.clone();
let moved_obfuscator = monitor.obfuscator.clone();
let tunnel_fut = async move {
let tunnel = moved_tunnel;
let close_obfs_sender: sync_mpsc::Sender<CloseMsg> = moved_close_obfs_sender;
let obfuscator = moved_obfuscator;
#[cfg(windows)]
Self::add_device_ip_addresses(&iface_name, &config.tunnel.addresses, setup_done_rx)
.await?;
let metadata = Self::tunnel_metadata(&iface_name, &config);
let allowed_traffic = if psk_negotiation {
AllowedTunnelTraffic::One(Endpoint::new(
config.ipv4_gateway,
talpid_tunnel_config_client::CONFIG_SERVICE_PORT,
TransportProtocol::Tcp,
))
} else {
AllowedTunnelTraffic::All
};
(on_event)(TunnelEvent::InterfaceUp(metadata.clone(), allowed_traffic)).await;
// Add non-default routes before establishing the tunnel.
#[cfg(target_os = "linux")]
args.route_manager
.create_routing_rules(config.enable_ipv6)
.await
.map_err(Error::SetupRoutingError)
.map_err(CloseMsg::SetupError)?;
let routes = Self::get_pre_tunnel_routes(&iface_name, &config)
.chain(Self::get_endpoint_routes(&endpoint_addrs))
.collect();
args.route_manager
.add_routes(routes)
.await
.map_err(Error::SetupRoutingError)
.map_err(CloseMsg::SetupError)?;
let psk_obfs_sender = close_obfs_sender.clone();
if psk_negotiation {
Self::psk_negotiation(
&tunnel,
&mut config,
args.retry_attempt,
args.on_event.clone(),
&iface_name,
obfuscator.clone(),
psk_obfs_sender,
#[cfg(target_os = "android")]
args.tun_provider,
)
.await?;
}
let mut connectivity_monitor = tokio::task::spawn_blocking(move || {
match connectivity_monitor.establish_connectivity(args.retry_attempt) {
Ok(true) => Ok(connectivity_monitor),
Ok(false) => {
log::warn!("Timeout while checking tunnel connection");
Err(CloseMsg::PingErr)
}
Err(error) => {
log::error!(
"{}",
error.display_chain_with_msg("Failed to check tunnel connection")
);
Err(CloseMsg::PingErr)
}
}
})
.await
.unwrap()?;
// Add any default route(s) that may exist.
args.route_manager
.add_routes(Self::get_post_tunnel_routes(&iface_name, &config).collect())
.await
.map_err(Error::SetupRoutingError)
.map_err(CloseMsg::SetupError)?;
let metadata = Self::tunnel_metadata(&iface_name, &config);
(on_event)(TunnelEvent::Up(metadata)).await;
tokio::task::spawn_blocking(move || {
if let Err(error) = connectivity_monitor.run() {
log::error!(
"{}",
error.display_chain_with_msg("Connectivity monitor failed")
);
}
})
.await
.unwrap();
Err::<Infallible, CloseMsg>(CloseMsg::PingErr)
};
let close_sender = close_obfs_sender.clone();
let monitor_handle = tokio::spawn(async move {
// This is safe to unwrap because the future resolves to `Result<Infallible, E>`.
let close_msg = tunnel_fut.await.unwrap_err();
let _ = close_sender.send(close_msg);
});
tokio::spawn(async move {
if args.tunnel_close_rx.await.is_ok() {
monitor_handle.abort();
let _ = close_obfs_sender.send(CloseMsg::Stop);
}
});
Ok(monitor)
}
#[allow(clippy::too_many_arguments)]
async fn psk_negotiation<F>(
tunnel: &Arc<Mutex<Option<Box<dyn Tunnel>>>>,
config: &mut Config,
retry_attempt: u32,
on_event: F,
iface_name: &str,
obfuscator: Arc<AsyncMutex<Option<ObfuscatorHandle>>>,
close_obfs_sender: sync_mpsc::Sender<CloseMsg>,
#[cfg(target_os = "android")] tun_provider: Arc<Mutex<TunProvider>>,
) -> std::result::Result<(), CloseMsg>
where
F: (Fn(TunnelEvent) -> Pin<Box<dyn std::future::Future<Output = ()> + Send>>)
+ Send
+ Sync
+ Clone
+ 'static,
{
let wg_psk_privkey = PrivateKey::new_from_random();
let close_obfs_sender = close_obfs_sender.clone();
let allowed_traffic = Endpoint::new(
config.ipv4_gateway,
talpid_tunnel_config_client::CONFIG_SERVICE_PORT,
TransportProtocol::Tcp,
);
let allowed_traffic = if config.is_multihop() {
// NOTE: We need to let traffic meant for the exit IP through the firewall. This
// should not allow any non-PQ traffic to leak since you can only reach the
// exit peer with these rules and not the broader internet.
AllowedTunnelTraffic::Two(
allowed_traffic,
Endpoint::from_socket_address(
config.exit_peer_mut().endpoint,
TransportProtocol::Udp,
),
)
} else {
AllowedTunnelTraffic::One(allowed_traffic)
};
let metadata = Self::tunnel_metadata(iface_name, config);
(on_event)(TunnelEvent::InterfaceUp(metadata, allowed_traffic.clone())).await;
let exit_psk =
Self::perform_psk_negotiation(retry_attempt, config, wg_psk_privkey.public_key())
.await?;
log::debug!("Successfully exchanged PSK with exit peer");
if config.is_multihop() {
// Set up tunnel to lead to entry
let mut entry_tun_config = config.clone();
entry_tun_config
.entry_peer
.allowed_ips
.push(IpNetwork::new(IpAddr::V4(config.ipv4_gateway), 32).unwrap());
let close_obfs_sender = close_obfs_sender.clone();
let entry_config = Self::reconfigure_tunnel(
tunnel,
entry_tun_config,
obfuscator.clone(),
close_obfs_sender,
#[cfg(target_os = "android")]
&tun_provider,
)
.await?;
let entry_psk = Some(
Self::perform_psk_negotiation(
retry_attempt,
&entry_config,
wg_psk_privkey.public_key(),
)
.await?,
);
log::debug!("Successfully exchanged PSK with entry peer");
config.entry_peer.psk = entry_psk;
}
config.exit_peer_mut().psk = Some(exit_psk);
config.tunnel.private_key = wg_psk_privkey;
*config = Self::reconfigure_tunnel(
tunnel,
config.clone(),
obfuscator,
close_obfs_sender,
#[cfg(target_os = "android")]
&tun_provider,
)
.await?;
let metadata = Self::tunnel_metadata(iface_name, config);
(on_event)(TunnelEvent::InterfaceUp(
metadata,
AllowedTunnelTraffic::All,
))
.await;
Ok(())
}
/// Reconfigures the tunnel to use the provided config while potentially modifying the config
/// and restarting the obfuscation provider. Returns the new config used by the new tunnel.
async fn reconfigure_tunnel(
tunnel: &Arc<Mutex<Option<Box<dyn Tunnel>>>>,
mut config: Config,
obfuscator: Arc<AsyncMutex<Option<ObfuscatorHandle>>>,
close_obfs_sender: sync_mpsc::Sender<CloseMsg>,
#[cfg(target_os = "android")] tun_provider: &Arc<Mutex<TunProvider>>,
) -> std::result::Result<Config, CloseMsg> {
let mut obfs_guard = obfuscator.lock().await;
if let Some(obfuscator_handle) = obfs_guard.take() {
obfuscator_handle.abort();
*obfs_guard = maybe_create_obfuscator(&mut config, close_obfs_sender)
.await
.map_err(CloseMsg::ObfuscatorFailed)?;
// Exclude new remote obfuscation socket or bridge
#[cfg(target_os = "android")]
if let Some(obfuscator_handle) = &*obfs_guard {
let remote_socket_fd = obfuscator_handle.remote_socket_fd();
log::debug!("Excluding remote socket fd from the tunnel");
if let Err(error) = tun_provider.lock().unwrap().bypass(remote_socket_fd) {
log::error!("Failed to exclude remote socket fd: {error}");
}
}
}
let set_config_future = tunnel
.lock()
.unwrap()
.as_ref()
.map(|tunnel| tunnel.set_config(config.clone()));
if let Some(f) = set_config_future {
f.await
.map_err(Error::TunnelError)
.map_err(CloseMsg::SetupError)?;
}
Ok(config)
}
/// Replace `0.0.0.0/0`/`::/0` with the gateway IPs when `gateway_only` is true.
/// Used to block traffic to other destinations while connecting on Android.
#[cfg(target_os = "android")]
fn patch_allowed_ips(config: &Config, gateway_only: bool) -> Cow<'_, Config> {
if gateway_only {
let mut patched_config = config.clone();
let gateway_net_v4 = ipnetwork::IpNetwork::from(IpAddr::from(config.ipv4_gateway));
let gateway_net_v6 = config
.ipv6_gateway
.map(|net| ipnetwork::IpNetwork::from(IpAddr::from(net)));
for peer in patched_config.peers_mut() {
peer.allowed_ips = peer
.allowed_ips
.iter()
.cloned()
.filter_map(|mut allowed_ip| {
if allowed_ip.prefix() == 0 {
if allowed_ip.is_ipv4() {
allowed_ip = gateway_net_v4;
} else if let Some(net) = gateway_net_v6 {
allowed_ip = net;
} else {
return None;
}
}
Some(allowed_ip)
})
.collect();
}
Cow::Owned(patched_config)
} else {
Cow::Borrowed(config)
}
}
#[cfg(windows)]
async fn add_device_ip_addresses(
iface_name: &str,
addresses: &[IpAddr],
mut setup_done_rx: mpsc::Receiver<std::result::Result<(), BoxedError>>,
) -> std::result::Result<(), CloseMsg> {
setup_done_rx
.next()
.await
.ok_or_else(|| {
// Tunnel was shut down early
CloseMsg::SetupError(Error::IpInterfacesError)
})?
.map_err(|error| {
log::error!(
"{}",
error.display_chain_with_msg("Failed to configure tunnel interface")
);
CloseMsg::SetupError(Error::IpInterfacesError)
})?;
// TODO: The LUID can be obtained directly.
let luid = talpid_windows::net::luid_from_alias(iface_name).map_err(|error| {
log::error!("Failed to obtain tunnel interface LUID: {}", error);
CloseMsg::SetupError(Error::IpInterfacesError)
})?;
for address in addresses {
talpid_windows::net::add_ip_address_for_interface(luid, *address)
.map_err(|error| CloseMsg::SetupError(Error::SetIpAddressesError(error)))?;
}
Ok(())
}
async fn perform_psk_negotiation(
retry_attempt: u32,
config: &Config,
wg_psk_pubkey: PublicKey,
) -> std::result::Result<PresharedKey, CloseMsg> {
log::debug!("Performing PQ-safe PSK exchange");
let timeout = std::cmp::min(
MAX_PSK_EXCHANGE_TIMEOUT,
INITIAL_PSK_EXCHANGE_TIMEOUT
.saturating_mul(PSK_EXCHANGE_TIMEOUT_MULTIPLIER.saturating_pow(retry_attempt)),
);
let psk = tokio::time::timeout(
timeout,
talpid_tunnel_config_client::push_pq_key(
IpAddr::from(config.ipv4_gateway),
config.tunnel.private_key.public_key(),
wg_psk_pubkey,
),
)
.await
.map_err(|_timeout_err| {
log::warn!("Timeout while negotiating PSK");
CloseMsg::PskNegotiationTimeout
})?
.map_err(Error::PskNegotiationError)
.map_err(CloseMsg::SetupError)?;
Ok(psk)
}
#[allow(unused_variables)]
fn open_tunnel(
runtime: tokio::runtime::Handle,
config: &Config,
log_path: Option<&Path>,
resource_dir: &Path,
tun_provider: Arc<Mutex<TunProvider>>,
#[cfg(target_os = "android")] psk_negotiation: bool,
#[cfg(windows)] route_manager_handle: crate::routing::RouteManagerHandle,
#[cfg(windows)] setup_done_tx: mpsc::Sender<std::result::Result<(), BoxedError>>,
) -> Result<Box<dyn Tunnel>> {
log::debug!("Tunnel MTU: {}", config.mtu);
#[cfg(target_os = "linux")]
if !*FORCE_USERSPACE_WIREGUARD {
if will_nm_manage_dns() {
match wireguard_kernel::NetworkManagerTunnel::new(runtime, config) {
Ok(tunnel) => {
log::debug!("Using NetworkManager to use kernel WireGuard implementation");
return Ok(Box::new(tunnel));
}
Err(err) => {
log::error!(
"{}",
err.display_chain_with_msg(
"Failed to initialize WireGuard tunnel via NetworkManager"
)
);
}
};
} else {
match wireguard_kernel::NetlinkTunnel::new(runtime, config) {
Ok(tunnel) => {
log::debug!("Using kernel WireGuard implementation");
return Ok(Box::new(tunnel));
}
Err(error) => {
log::error!(
"{}",
error.display_chain_with_msg(
"Failed to setup kernel WireGuard device, falling back to the userspace implementation"
)
);
}
};
}
}
#[cfg(target_os = "windows")]
{
wireguard_nt::WgNtTunnel::start_tunnel(config, log_path, resource_dir, setup_done_tx)
.map(|tun| Box::new(tun) as Box<dyn Tunnel + 'static>)
.map_err(Error::TunnelError)
}
#[cfg(wireguard_go)]
{
let routes =
Self::get_tunnel_destinations(config).flat_map(Self::replace_default_prefixes);
#[cfg(target_os = "android")]
let config = Self::patch_allowed_ips(config, psk_negotiation);
#[cfg(target_os = "linux")]
log::debug!("Using userspace WireGuard implementation");
Ok(Box::new(
WgGoTunnel::start_tunnel(
#[allow(clippy::needless_borrow)]
&config,
log_path,
tun_provider,
routes,
)
.map_err(Error::TunnelError)?,
))
}
}
/// Blocks the current thread until tunnel disconnects
pub fn wait(mut self) -> Result<()> {
let wait_result = match self.close_msg_receiver.recv() {
Ok(CloseMsg::PskNegotiationTimeout) | Ok(CloseMsg::PingErr) => Err(Error::TimeoutError),
Ok(CloseMsg::Stop) | Ok(CloseMsg::ObfuscatorExpired) => Ok(()),
Ok(CloseMsg::SetupError(error)) => Err(error),
Ok(CloseMsg::ObfuscatorFailed(error)) => Err(error),
Err(_) => Ok(()),
};
let _ = self.pinger_stop_sender.send(());
self.runtime
.block_on((self.event_callback)(TunnelEvent::Down));
self.stop_tunnel();
wait_result
}
fn stop_tunnel(&mut self) {
match self.tunnel.lock().expect("Tunnel lock poisoned").take() {
Some(tunnel) => {
if let Err(e) = tunnel.stop() {
log::error!("{}", e.display_chain_with_msg("Failed to stop tunnel"));
}
}
None => {
log::debug!("Tunnel already stopped");
}
}
}
/// Returns routes to the peer endpoints (through the physical interface).
#[cfg_attr(target_os = "linux", allow(unused_variables))]
fn get_endpoint_routes(endpoints: &[IpAddr]) -> impl Iterator<Item = RequiredRoute> + '_ {
#[cfg(target_os = "linux")]
{
// No need due to policy based routing.
std::iter::empty::<RequiredRoute>()
}
#[cfg(not(target_os = "linux"))]
endpoints.iter().map(|ip| {
RequiredRoute::new(
ipnetwork::IpNetwork::from(*ip),
routing::NetNode::DefaultNode,
)
})
}
#[cfg_attr(not(target_os = "windows"), allow(unused_variables))]
fn get_tunnel_nodes(iface_name: &str, config: &Config) -> (routing::Node, routing::Node) {
#[cfg(windows)]
{
let v4 = routing::Node::new(config.ipv4_gateway.into(), iface_name.to_string());
let v6 = if let Some(ipv6_gateway) = config.ipv6_gateway.as_ref() {
routing::Node::new((*ipv6_gateway).into(), iface_name.to_string())
} else {
routing::Node::device(iface_name.to_string())
};
(v4, v6)
}
#[cfg(not(windows))]
{
let node = routing::Node::device(iface_name.to_string());
(node.clone(), node)
}
}
/// Return routes for all allowed IPs, as well as the gateway, except 0.0.0.0/0.
fn get_pre_tunnel_routes<'a>(
iface_name: &str,
config: &'a Config,
) -> impl Iterator<Item = RequiredRoute> + 'a {
let gateway_node = routing::Node::device(iface_name.to_string());
let gateway_routes = std::iter::once(RequiredRoute::new(
ipnetwork::Ipv4Network::from(config.ipv4_gateway).into(),
gateway_node.clone(),
))
.chain(config.ipv6_gateway.map(|gateway| {
RequiredRoute::new(ipnetwork::Ipv6Network::from(gateway).into(), gateway_node)
}));
let (node_v4, node_v6) = Self::get_tunnel_nodes(iface_name, config);
#[cfg(any(target_os = "linux", target_os = "macos"))]
let gateway_routes =
gateway_routes.map(|route| Self::apply_route_mtu_for_multihop(route, config));
let routes = gateway_routes.chain(
Self::get_tunnel_destinations(config)
.filter(|allowed_ip| allowed_ip.prefix() != 0)
.map(move |allowed_ip| {
if allowed_ip.is_ipv4() {
RequiredRoute::new(allowed_ip, node_v4.clone())
} else {
RequiredRoute::new(allowed_ip, node_v6.clone())
}
}),
);
routes
}
/// Return any 0.0.0.0/0 routes specified by the allowed IPs.
fn get_post_tunnel_routes<'a>(
iface_name: &str,
config: &'a Config,
) -> impl Iterator<Item = RequiredRoute> + 'a {
let (node_v4, node_v6) = Self::get_tunnel_nodes(iface_name, config);
let iter = Self::get_tunnel_destinations(config)
.filter(|allowed_ip| allowed_ip.prefix() == 0)
.flat_map(Self::replace_default_prefixes)
.map(move |allowed_ip| {
if allowed_ip.is_ipv4() {
RequiredRoute::new(allowed_ip, node_v4.clone())
} else {
RequiredRoute::new(allowed_ip, node_v6.clone())
}
});
#[cfg(not(any(target_os = "linux", target_os = "macos")))]
return iter;
#[cfg(target_os = "linux")]
return iter
.map(|route| route.use_main_table(false))
.map(|route| Self::apply_route_mtu_for_multihop(route, config));
#[cfg(target_os = "macos")]
iter.map(|route| Self::apply_route_mtu_for_multihop(route, config))
}
#[cfg(any(target_os = "linux", target_os = "macos"))]
fn apply_route_mtu_for_multihop(route: RequiredRoute, config: &Config) -> RequiredRoute {
if !config.is_multihop() {
route
} else {
// Set route MTU by subtracting the WireGuard overhead from the tunnel MTU. Plus
// some margin to make room for padding bytes.
let ip_overhead = match route.prefix.is_ipv4() {
true => IPV4_HEADER_SIZE,
false => IPV6_HEADER_SIZE,
};
const PADDING_BYTES_MARGIN: u16 = 15;
let mtu = config.mtu - ip_overhead - WIREGUARD_HEADER_SIZE - PADDING_BYTES_MARGIN;
route.mtu(mtu)
}
}
/// Return routes for all allowed IPs.
fn get_tunnel_destinations(config: &Config) -> impl Iterator<Item = ipnetwork::IpNetwork> + '_ {
config
.peers()
.flat_map(|peer| peer.allowed_ips.iter())
.cloned()
}
/// Replace default (0-prefix) routes with more specific routes.
fn replace_default_prefixes(network: ipnetwork::IpNetwork) -> Vec<ipnetwork::IpNetwork> {
#[cfg(windows)]
if network.prefix() == 0 {
if network.is_ipv4() {
vec!["0.0.0.0/1".parse().unwrap(), "128.0.0.0/1".parse().unwrap()]
} else {
vec!["8000::/1".parse().unwrap(), "::/1".parse().unwrap()]
}
} else {
vec![network]
}
#[cfg(not(windows))]
vec![network]
}
fn tunnel_metadata(interface_name: &str, config: &Config) -> TunnelMetadata {
TunnelMetadata {
interface: interface_name.to_string(),
ips: config.tunnel.addresses.clone(),
ipv4_gateway: config.ipv4_gateway,
ipv6_gateway: config.ipv6_gateway,
}
}
}
/// Detects the maximum MTU that does not cause dropped packets.
///
/// The detection works by sending evenly spread out range of pings between 576 and the given
/// current tunnel MTU, and returning the maximum packet size that was returned within a timeout.
#[cfg(target_os = "linux")]
async fn auto_mtu_detection(
gateway: std::net::Ipv4Addr,
#[cfg(any(target_os = "macos", target_os = "linux"))] iface_name: String,
current_mtu: u16,
) -> Result<u16> {
use futures::{future, stream::FuturesUnordered, TryStreamExt};
use surge_ping::{Client, Config, PingIdentifier, PingSequence, SurgeError};
use talpid_tunnel::{ICMP_HEADER_SIZE, MIN_IPV4_MTU};
use tokio_stream::StreamExt;
/// Max time to wait for any ping, when this expires, we give up and throw an error.
const PING_TIMEOUT: Duration = Duration::from_secs(10);
/// Max time to wait after the first ping arrives. Every ping after this timeout is considered
/// dropped, so we return the largest collected packet size.
const PING_OFFSET_TIMEOUT: Duration = Duration::from_secs(2);
let config_builder = Config::builder().kind(surge_ping::ICMP::V4);
#[cfg(any(target_os = "macos", target_os = "linux"))]
let config_builder = config_builder.interface(&iface_name);
let client = Client::new(&config_builder.build()).unwrap();
let step_size = 20;
let linspace = mtu_spacing(MIN_IPV4_MTU, current_mtu, step_size);
let payload_buf = vec![0; current_mtu as usize];
let mut ping_stream = linspace
.iter()
.enumerate()
.map(|(i, &mtu)| {
let client = client.clone();
let payload_size = (mtu - IPV4_HEADER_SIZE - ICMP_HEADER_SIZE) as usize;
let payload = &payload_buf[0..payload_size];
async move {
log::trace!("Sending ICMP ping of total size {mtu}");
client