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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
|
//! When changing relay selection, please verify if `docs/relay-selector.md` needs to be
//! updated as well.
use chrono::{DateTime, Local};
use futures::{
channel::mpsc,
future::{Fuse, FusedFuture},
FutureExt, SinkExt, StreamExt,
};
use ipnetwork::IpNetwork;
use log::{debug, error, info, warn};
use mullvad_rpc::{availability::ApiAvailabilityHandle, rest::MullvadRestHandle, RelayListProxy};
use mullvad_types::{
endpoint::MullvadEndpoint,
location::Location,
relay_constraints::{
BridgeState, Constraint, InternalBridgeConstraints, LocationConstraint, Match,
OpenVpnConstraints, Providers, RelayConstraints, Set, TransportPort, WireguardConstraints,
},
relay_list::{OpenVpnEndpointData, Relay, RelayList, RelayTunnels, WireguardEndpointData},
};
use parking_lot::Mutex;
use rand::{self, rngs::ThreadRng, seq::SliceRandom, Rng};
use std::{
future::Future,
io,
net::{IpAddr, SocketAddr},
path::{Path, PathBuf},
sync::Arc,
time::{self, Duration, Instant, SystemTime},
};
use talpid_core::future_retry::{retry_future, ExponentialBackoff, Jittered};
use talpid_types::{
net::{
all_of_the_internet, openvpn::ProxySettings, wireguard, IpVersion, TransportProtocol,
TunnelType,
},
ErrorExt,
};
use tokio::fs::File;
const DATE_TIME_FORMAT_STR: &str = "%Y-%m-%d %H:%M:%S%.3f";
const RELAYS_FILENAME: &str = "relays.json";
/// How often the updater should wake up to check the cache of the in-memory cache of relays.
/// This check is very cheap. The only reason to not have it very often is because if downloading
/// constantly fails it will try very often and fill the logs etc.
const UPDATE_CHECK_INTERVAL: Duration = Duration::from_secs(60 * 15);
/// How old the cached relays need to be to trigger an update
const UPDATE_INTERVAL: Duration = Duration::from_secs(60 * 60);
const EXPONENTIAL_BACKOFF_INITIAL: Duration = Duration::from_secs(16);
const EXPONENTIAL_BACKOFF_FACTOR: u32 = 8;
const DEFAULT_WIREGUARD_PORT: u16 = 51820;
const WIREGUARD_EXIT_CONSTRAINTS: WireguardConstraints = WireguardConstraints {
port: Constraint::Only(TransportPort {
protocol: TransportProtocol::Udp,
port: Constraint::Only(DEFAULT_WIREGUARD_PORT),
}),
ip_version: Constraint::Only(IpVersion::V4),
use_multihop: false,
entry_location: Constraint::Any,
};
const WIREGUARD_TCP_PORTS: [(u16, u16); 3] = [(80, 80), (443, 443), (5001, 5001)];
#[derive(err_derive::Error, Debug)]
#[error(no_from)]
pub enum Error {
#[error(display = "Failed to open relay cache file")]
OpenRelayCache(#[error(source)] io::Error),
#[error(display = "Failed to write relay cache file to disk")]
WriteRelayCache(#[error(source)] io::Error),
#[error(display = "No relays matching current constraints")]
NoRelay,
#[error(display = "Failure in serialization of the relay list")]
Serialize(#[error(source)] serde_json::Error),
#[error(display = "Downloader already shut down")]
DownloaderShutDown,
}
struct ParsedRelays {
last_updated: SystemTime,
locations: RelayList,
relays: Vec<Relay>,
}
impl ParsedRelays {
pub fn empty() -> Self {
ParsedRelays {
last_updated: time::UNIX_EPOCH,
locations: RelayList::empty(),
relays: Vec::new(),
}
}
pub fn from_relay_list(relay_list: RelayList, last_updated: SystemTime) -> Self {
let mut relays = Vec::new();
for country in &relay_list.countries {
let country_name = country.name.clone();
let country_code = country.code.clone();
for city in &country.cities {
let city_name = city.name.clone();
let city_code = city.code.clone();
let latitude = city.latitude;
let longitude = city.longitude;
for relay in &city.relays {
let mut relay_with_location = relay.clone();
relay_with_location.location = Some(Location {
country: country_name.clone(),
country_code: country_code.clone(),
city: city_name.clone(),
city_code: city_code.clone(),
latitude,
longitude,
});
for wg_tunnel in &relay.tunnels.wireguard {
relay_with_location
.tunnels
.wireguard
.push(WireguardEndpointData {
protocol: TransportProtocol::Tcp,
port_ranges: WIREGUARD_TCP_PORTS.to_vec(),
..wg_tunnel.clone()
});
}
relays.push(relay_with_location);
}
}
}
ParsedRelays {
last_updated,
locations: relay_list,
relays,
}
}
pub fn from_file(path: impl AsRef<Path>) -> Result<Self, Error> {
debug!("Reading relays from {}", path.as_ref().display());
let (last_modified, file) =
Self::open_file(path.as_ref()).map_err(Error::OpenRelayCache)?;
let relay_list =
serde_json::from_reader(io::BufReader::new(file)).map_err(Error::Serialize)?;
Ok(Self::from_relay_list(relay_list, last_modified))
}
fn open_file(path: &Path) -> io::Result<(SystemTime, std::fs::File)> {
let file = std::fs::File::open(path)?;
let last_modified = file.metadata()?.modified()?;
Ok((last_modified, file))
}
pub fn last_updated(&self) -> SystemTime {
self.last_updated
}
pub fn locations(&self) -> &RelayList {
&self.locations
}
pub fn relays(&self) -> &Vec<Relay> {
&self.relays
}
pub fn tag(&self) -> Option<&str> {
self.locations.etag.as_deref()
}
}
pub struct RelaySelector {
parsed_relays: Arc<Mutex<ParsedRelays>>,
rng: ThreadRng,
updater: Option<RelayListUpdaterHandle>,
}
impl RelaySelector {
/// Returns a new `RelaySelector` backed by relays cached on disk. Use the `update` method
/// to refresh the relay list from the internet.
pub fn new(
rpc_handle: MullvadRestHandle,
on_update: impl Fn(&RelayList) + Send + 'static,
resource_dir: &Path,
cache_dir: &Path,
api_availability: ApiAvailabilityHandle,
) -> Self {
let cache_path = cache_dir.join(RELAYS_FILENAME);
let resource_path = resource_dir.join(RELAYS_FILENAME);
let unsynchronized_parsed_relays = Self::read_relays_from_disk(&cache_path, &resource_path)
.unwrap_or_else(|error| {
error!(
"{}",
error.display_chain_with_msg("Unable to load cached relays")
);
ParsedRelays::empty()
});
info!(
"Initialized with {} cached relays from {}",
unsynchronized_parsed_relays.relays().len(),
DateTime::<Local>::from(unsynchronized_parsed_relays.last_updated())
.format(DATE_TIME_FORMAT_STR)
);
let parsed_relays = Arc::new(Mutex::new(unsynchronized_parsed_relays));
let updater = RelayListUpdater::new(
rpc_handle,
cache_path,
parsed_relays.clone(),
Box::new(on_update),
api_availability,
);
RelaySelector {
parsed_relays,
rng: rand::thread_rng(),
updater: Some(updater),
}
}
/// Download the newest relay list.
pub async fn update(&self) {
if let Some(mut updater) = self.updater.clone() {
let _ = updater.update_relay_list().await;
}
}
/// Returns all countries and cities. The cities in the object returned does not have any
/// relays in them.
pub fn get_locations(&mut self) -> RelayList {
self.parsed_relays.lock().locations().clone()
}
/// Returns a random relay and relay endpoint matching the given constraints and with
/// preferences applied.
pub fn get_tunnel_endpoint(
&mut self,
relay_constraints: &RelayConstraints,
bridge_state: BridgeState,
retry_attempt: u32,
wg_key_exists: bool,
) -> Result<(Relay, Option<Relay>, MullvadEndpoint), Error> {
let mut exit_relay_constraints = relay_constraints.clone();
let wg_entry_is_subset = if exit_relay_constraints.wireguard_constraints.use_multihop {
let use_multihop = exit_relay_constraints.wireguard_constraints.use_multihop;
let entry_location = exit_relay_constraints.wireguard_constraints.entry_location;
let is_subset = entry_location.is_subset(&exit_relay_constraints.location);
exit_relay_constraints.wireguard_constraints = WireguardConstraints {
use_multihop,
entry_location,
..WIREGUARD_EXIT_CONSTRAINTS
};
is_subset
} else {
false
};
let entry_endpoint =
if wg_entry_is_subset && relay_constraints.wireguard_constraints.use_multihop {
self.select_entry_endpoint(None, &relay_constraints, retry_attempt)
} else {
None
};
let (exit_relay, mut endpoint) = self.get_tunnel_exit_endpoint(
&exit_relay_constraints,
bridge_state,
retry_attempt,
wg_key_exists,
entry_endpoint.as_ref().and_then(|(_relay, endpoint)| {
if let MullvadEndpoint::Wireguard { peer, .. } = &endpoint {
Some(peer)
} else {
None
}
}),
)?;
let mut entry_endpoint = entry_endpoint.or_else(|| {
if !wg_entry_is_subset && relay_constraints.wireguard_constraints.use_multihop {
if let MullvadEndpoint::Wireguard { peer, .. } = &endpoint {
self.select_entry_endpoint(Some(peer), &relay_constraints, retry_attempt)
} else {
None
}
} else {
None
}
});
if let MullvadEndpoint::Wireguard { peer, .. } = &mut endpoint {
if let Some((entry_relay, mut entry_endpoint)) = entry_endpoint.take() {
self.set_entry_peers(peer, &mut entry_endpoint);
let addr_in = entry_endpoint.to_endpoint().address.ip();
info!(
"Selected entry relay {} at {}",
entry_relay.hostname, addr_in
);
return Ok((exit_relay, Some(entry_relay), entry_endpoint));
} else if relay_constraints.wireguard_constraints.use_multihop {
return Err(Error::NoRelay);
}
}
Ok((exit_relay, None, endpoint))
}
fn get_tunnel_exit_endpoint(
&mut self,
relay_constraints: &RelayConstraints,
bridge_state: BridgeState,
retry_attempt: u32,
wg_key_exists: bool,
wg_entry_peer: Option<&wireguard::PeerConfig>,
) -> Result<(Relay, MullvadEndpoint), Error> {
let preferred_constraints = self.preferred_constraints(
&relay_constraints,
bridge_state,
retry_attempt,
wg_key_exists,
);
if let Some((relay, endpoint)) =
self.get_tunnel_endpoint_internal(&preferred_constraints, wg_entry_peer)
{
debug!(
"Relay matched on highest preference for retry attempt {}",
retry_attempt
);
Ok((relay, endpoint))
} else if let Some((relay, endpoint)) =
self.get_tunnel_endpoint_internal(&relay_constraints, wg_entry_peer)
{
debug!(
"Relay matched on second preference for retry attempt {}",
retry_attempt
);
Ok((relay, endpoint))
} else {
warn!("No relays matching {}", &relay_constraints);
Err(Error::NoRelay)
}
}
fn preferred_constraints(
&self,
original_constraints: &RelayConstraints,
bridge_state: BridgeState,
retry_attempt: u32,
wg_key_exists: bool,
) -> RelayConstraints {
let (preferred_port, preferred_protocol, preferred_tunnel) =
if bridge_state != BridgeState::On {
self.preferred_tunnel_constraints(
retry_attempt,
&original_constraints.location,
&original_constraints.providers,
wg_key_exists,
)
} else {
(Constraint::Any, TransportProtocol::Tcp, TunnelType::OpenVpn)
};
let mut relay_constraints = original_constraints.clone();
relay_constraints.openvpn_constraints = Default::default();
// Highest priority preference. Where we prefer OpenVPN using UDP. But without changing
// any constraints that are explicitly specified.
match original_constraints.tunnel_protocol {
// If no tunnel protocol is selected, use preferred constraints
Constraint::Any => {
if original_constraints.openvpn_constraints.port.is_any()
|| bridge_state == BridgeState::On
{
relay_constraints.openvpn_constraints = OpenVpnConstraints {
port: Constraint::Only(TransportPort {
protocol: preferred_protocol,
port: preferred_port,
}),
};
} else {
relay_constraints.openvpn_constraints =
original_constraints.openvpn_constraints;
}
if relay_constraints.wireguard_constraints.port.is_any() {
relay_constraints.wireguard_constraints.port =
Constraint::Only(TransportPort {
protocol: preferred_protocol,
port: preferred_port,
});
}
relay_constraints.tunnel_protocol = Constraint::Only(preferred_tunnel);
}
Constraint::Only(TunnelType::OpenVpn) => {
let openvpn_constraints = &mut relay_constraints.openvpn_constraints;
*openvpn_constraints = original_constraints.openvpn_constraints;
if bridge_state == BridgeState::On && openvpn_constraints.port.is_any() {
// FIXME: This is temporary while talpid-core only supports TCP proxies
openvpn_constraints.port = Constraint::Only(TransportPort {
protocol: TransportProtocol::Tcp,
port: Constraint::Any,
});
} else if openvpn_constraints.port.is_any() {
let (preferred_port, preferred_protocol) =
Self::preferred_openvpn_constraints(retry_attempt);
openvpn_constraints.port = Constraint::Only(TransportPort {
protocol: preferred_protocol,
port: preferred_port,
});
}
}
Constraint::Only(TunnelType::Wireguard) => {
relay_constraints.wireguard_constraints =
original_constraints.wireguard_constraints.clone();
// This ensures that if after the first 2 failed attempts the daemon does not
// connect, then afterwards 2 of each 4 successive attempts will try to connect
// on port 53.
if retry_attempt % 4 > 1 && relay_constraints.wireguard_constraints.port.is_any() {
relay_constraints.wireguard_constraints.port =
Constraint::Only(TransportPort {
protocol: TransportProtocol::Udp,
port: Constraint::Only(53),
});
}
}
}
relay_constraints
}
fn select_entry_endpoint(
&mut self,
exit_peer: Option<&wireguard::PeerConfig>,
relay_constraints: &RelayConstraints,
retry_attempt: u32,
) -> Option<(Relay, MullvadEndpoint)> {
if !relay_constraints.wireguard_constraints.use_multihop {
return None;
}
let entry_location = relay_constraints
.wireguard_constraints
.entry_location
.clone();
let entry_constraints = RelayConstraints {
location: entry_location,
tunnel_protocol: Constraint::Only(TunnelType::Wireguard),
..relay_constraints.clone()
};
let entry_constraints =
self.preferred_constraints(&entry_constraints, BridgeState::Off, retry_attempt, true);
let matching_relays: Vec<Relay> = self
.parsed_relays
.lock()
.relays()
.iter()
.filter(|relay| relay.active)
.filter_map(|relay| Self::matching_relay(relay, &entry_constraints, exit_peer))
.collect();
let relay = self
.pick_random_relay(&matching_relays)
.map(|relay| relay.clone())?;
let endpoint = self.get_random_tunnel(&relay, &entry_constraints)?;
Some((relay, endpoint))
}
fn set_entry_peers(
&mut self,
new_exit_peer: &wireguard::PeerConfig,
entry_endpoint: &mut MullvadEndpoint,
) {
if let MullvadEndpoint::Wireguard {
ref mut peer,
exit_peer,
..
} = entry_endpoint
{
peer.allowed_ips = vec![IpNetwork::from(new_exit_peer.endpoint.ip())];
*exit_peer = Some(new_exit_peer.clone());
}
}
pub fn get_auto_proxy_settings(
&mut self,
bridge_constraints: &InternalBridgeConstraints,
location: &Location,
retry_attempt: u32,
) -> Option<(ProxySettings, Relay)> {
if !self.should_use_bridge(retry_attempt) {
return None;
}
// For now, only TCP tunnels are supported.
if let Constraint::Only(TransportProtocol::Udp) = bridge_constraints.transport_protocol {
return None;
}
self.get_proxy_settings(bridge_constraints, location)
}
pub fn should_use_bridge(&self, retry_attempt: u32) -> bool {
// shouldn't use a bridge for the first 3 times
retry_attempt > 3 &&
// i.e. 4th and 5th with bridge, 6th & 7th without
// The test is to see whether the current _couple of connections_ is even or not.
// | retry_attempt | 4 | 5 | 6 | 7 | 8 | 9 |
// | (retry_attempt % 4) < 2 | t | t | f | f | t | t |
(retry_attempt % 4) < 2
}
pub fn get_proxy_settings(
&mut self,
constraints: &InternalBridgeConstraints,
location: &Location,
) -> Option<(ProxySettings, Relay)> {
let mut matching_relays: Vec<Relay> = self
.parsed_relays
.lock()
.relays()
.iter()
.filter(|relay| relay.active)
.filter_map(|relay| Self::matching_bridge_relay(relay, constraints))
.collect();
if matching_relays.is_empty() {
return None;
}
matching_relays.sort_by_cached_key(|relay| {
(relay.location.as_ref().unwrap().distance_from(&location) * 1000.0) as i64
});
matching_relays.get(0).and_then(|relay| {
self.pick_random_bridge(&relay)
.map(|bridge| (bridge, relay.clone()))
})
}
/// Returns preferred constraints
#[allow(unused_variables)]
fn preferred_tunnel_constraints(
&self,
retry_attempt: u32,
location_constraint: &Constraint<LocationConstraint>,
providers_constraint: &Constraint<Providers>,
wg_key_exists: bool,
) -> (Constraint<u16>, TransportProtocol, TunnelType) {
#[cfg(target_os = "windows")]
{
let location_supports_openvpn =
self.parsed_relays.lock().relays().iter().any(|relay| {
relay.active
&& !relay.tunnels.openvpn.is_empty()
&& location_constraint.matches(relay)
&& providers_constraint.matches(relay)
});
if location_supports_openvpn {
let (preferred_port, preferred_protocol) =
Self::preferred_openvpn_constraints(retry_attempt);
return (preferred_port, preferred_protocol, TunnelType::OpenVpn);
}
}
let location_supports_wireguard = self.parsed_relays.lock().relays().iter().any(|relay| {
relay.active
&& !relay.tunnels.wireguard.is_empty()
&& location_constraint.matches(relay)
&& providers_constraint.matches(relay)
});
// If location does not support WireGuard, defer to preferred OpenVPN tunnel
// constraints
if !location_supports_wireguard || !wg_key_exists {
let (preferred_port, preferred_protocol) =
Self::preferred_openvpn_constraints(retry_attempt);
return (preferred_port, preferred_protocol, TunnelType::OpenVpn);
}
// Try out WireGuard in the first two connection attempts, first with any port,
// afterwards on port 53. Afterwards, connect through OpenVPN alternating between UDP
// on any port twice and TCP on port 443 once.
match retry_attempt {
0 => (
Constraint::Any,
TransportProtocol::Udp,
TunnelType::Wireguard,
),
1 => (
Constraint::Only(53),
TransportProtocol::Udp,
TunnelType::Wireguard,
),
_ => {
let (preferred_port, preferred_protocol) =
Self::preferred_openvpn_constraints(retry_attempt - 2);
(preferred_port, preferred_protocol, TunnelType::OpenVpn)
}
}
}
fn preferred_openvpn_constraints(retry_attempt: u32) -> (Constraint<u16>, TransportProtocol) {
// Prefer UDP by default. But if that has failed a couple of times, then try TCP port
// 443, which works for many with UDP problems. After that, just alternate
// between protocols.
match retry_attempt {
0 | 1 => (Constraint::Any, TransportProtocol::Udp),
2 | 3 => (Constraint::Only(443), TransportProtocol::Tcp),
attempt if attempt % 2 == 0 => (Constraint::Any, TransportProtocol::Udp),
_ => (Constraint::Any, TransportProtocol::Tcp),
}
}
/// Returns a random relay endpoint if any is matching the given constraints.
fn get_tunnel_endpoint_internal(
&mut self,
constraints: &RelayConstraints,
wg_entry_peer: Option<&wireguard::PeerConfig>,
) -> Option<(Relay, MullvadEndpoint)> {
let matching_relays: Vec<Relay> = self
.parsed_relays
.lock()
.relays()
.iter()
.filter(|relay| relay.active)
.filter_map(|relay| Self::matching_relay(relay, constraints, wg_entry_peer))
.collect();
self.pick_random_relay(&matching_relays)
.and_then(|selected_relay| {
let endpoint = self.get_random_tunnel(&selected_relay, &constraints);
let addr_in = endpoint
.as_ref()
.map(|endpoint| endpoint.to_endpoint().address.ip())
.unwrap_or(IpAddr::from(selected_relay.ipv4_addr_in));
info!("Selected relay {} at {}", selected_relay.hostname, addr_in);
endpoint.map(|endpoint| (selected_relay.clone(), endpoint))
})
}
/// Takes a `Relay` and a corresponding `RelayConstraints` and returns a new `Relay` if the
/// given relay matches the constraints.
fn matching_relay(
relay: &Relay,
constraints: &RelayConstraints,
skip_wg_peer: Option<&wireguard::PeerConfig>,
) -> Option<Relay> {
if !constraints.location.matches(relay) {
return None;
}
if !constraints.providers.matches(&relay) {
return None;
}
let include_wg = if let Some(wg_peer) = skip_wg_peer {
let peer_ip = wg_peer.endpoint.ip();
peer_ip != IpAddr::V4(relay.ipv4_addr_in)
&& Some(peer_ip) != relay.ipv6_addr_in.map(IpAddr::V6)
} else {
true
};
let relay = match constraints.tunnel_protocol {
Constraint::Any => {
let mut relay = relay.clone();
relay.tunnels = RelayTunnels {
wireguard: if include_wg {
Self::matching_wireguard_tunnels(
&relay.tunnels,
&constraints.wireguard_constraints,
)
} else {
vec![]
},
openvpn: Self::matching_openvpn_tunnels(
&relay.tunnels,
constraints.openvpn_constraints,
),
};
relay
}
Constraint::Only(TunnelType::Wireguard) => {
let mut relay = relay.clone();
relay.tunnels = RelayTunnels {
wireguard: if include_wg {
Self::matching_wireguard_tunnels(
&relay.tunnels,
&constraints.wireguard_constraints,
)
} else {
vec![]
},
openvpn: vec![],
};
relay
}
Constraint::Only(TunnelType::OpenVpn) => {
let mut relay = relay.clone();
relay.tunnels = RelayTunnels {
openvpn: Self::matching_openvpn_tunnels(
&relay.tunnels,
constraints.openvpn_constraints,
),
wireguard: vec![],
};
relay
}
};
let relay_matches = match constraints.tunnel_protocol {
Constraint::Any => {
!relay.tunnels.openvpn.is_empty() || !relay.tunnels.wireguard.is_empty()
}
Constraint::Only(TunnelType::OpenVpn) => !relay.tunnels.openvpn.is_empty(),
Constraint::Only(TunnelType::Wireguard) => !relay.tunnels.wireguard.is_empty(),
};
if relay_matches {
Some(relay)
} else {
None
}
}
fn matching_bridge_relay(
relay: &Relay,
constraints: &InternalBridgeConstraints,
) -> Option<Relay> {
if !constraints.location.matches(relay) {
return None;
}
if !constraints.providers.matches(relay) {
return None;
}
let mut filtered_relay = relay.clone();
filtered_relay
.bridges
.shadowsocks
.retain(|bridge| constraints.transport_protocol.matches_eq(&bridge.protocol));
if filtered_relay.bridges.shadowsocks.is_empty() {
return None;
}
Some(filtered_relay)
}
fn matching_openvpn_tunnels(
tunnels: &RelayTunnels,
constraints: OpenVpnConstraints,
) -> Vec<OpenVpnEndpointData> {
tunnels
.openvpn
.iter()
.filter(|endpoint| constraints.matches(*endpoint))
.cloned()
.collect()
}
fn matching_wireguard_tunnels(
tunnels: &RelayTunnels,
constraints: &WireguardConstraints,
) -> Vec<WireguardEndpointData> {
tunnels
.wireguard
.iter()
.filter(|endpoint| constraints.matches(*endpoint))
.cloned()
.collect()
}
/// Pick a random relay from the given slice. Will return `None` if the given slice is empty
/// or all relays in it has zero weight.
fn pick_random_relay<'a>(&mut self, relays: &'a [Relay]) -> Option<&'a Relay> {
let total_weight: u64 = relays.iter().map(|relay| relay.weight).sum();
if total_weight == 0 {
None
} else {
// Pick a random number in the range 0 - total_weight. This choses the relay.
let mut i: u64 = self.rng.gen_range(0, total_weight + 1);
Some(
relays
.iter()
.find(|relay| {
i = i.saturating_sub(relay.weight);
i == 0
})
.unwrap(),
)
}
}
/// Picks a random bridge from a relay.
fn pick_random_bridge(&mut self, relay: &Relay) -> Option<ProxySettings> {
relay
.bridges
.shadowsocks
.choose(&mut self.rng)
.map(|shadowsocks_endpoint| {
info!(
"Selected Shadowsocks bridge {} at {}:{}/{}",
relay.hostname,
relay.ipv4_addr_in,
shadowsocks_endpoint.port,
shadowsocks_endpoint.protocol
);
shadowsocks_endpoint
.clone()
.to_proxy_settings(relay.ipv4_addr_in.into())
})
}
fn get_random_tunnel(
&mut self,
relay: &Relay,
constraints: &RelayConstraints,
) -> Option<MullvadEndpoint> {
#[cfg(not(target_os = "android"))]
let mut thread_rng = self.rng.clone();
#[cfg(not(target_os = "android"))]
let mut new_openvpn_endpoint = || {
relay
.tunnels
.openvpn
.choose(&mut thread_rng)
.cloned()
.map(|endpoint| endpoint.into_mullvad_endpoint(relay.ipv4_addr_in.into()))
};
let mut new_wg_endpoint = || {
relay
.tunnels
.wireguard
.choose(&mut self.rng)
.cloned()
.and_then(|wg_tunnel| {
self.wg_data_to_endpoint(relay, wg_tunnel, &constraints.wireguard_constraints)
})
};
#[cfg(not(target_os = "android"))]
match constraints.tunnel_protocol {
Constraint::Only(TunnelType::OpenVpn) => new_openvpn_endpoint(),
Constraint::Any => vec![new_openvpn_endpoint(), new_wg_endpoint()]
.into_iter()
.filter_map(|relay| relay)
.collect::<Vec<_>>()
.choose(&mut self.rng)
.cloned(),
Constraint::Only(TunnelType::Wireguard) => new_wg_endpoint(),
}
#[cfg(target_os = "android")]
new_wg_endpoint()
}
fn wg_data_to_endpoint(
&mut self,
relay: &Relay,
data: WireguardEndpointData,
constraints: &WireguardConstraints,
) -> Option<MullvadEndpoint> {
let host = self.get_address_for_wireguard_relay(relay, constraints)?;
let port = self.get_port_for_wireguard_relay(&data, constraints)?;
let peer_config = wireguard::PeerConfig {
public_key: data.public_key,
endpoint: SocketAddr::new(host, port),
allowed_ips: all_of_the_internet(),
protocol: constraints
.port
.map(|port| port.protocol)
.unwrap_or(TransportProtocol::Udp),
};
Some(MullvadEndpoint::Wireguard {
peer: peer_config,
exit_peer: None,
ipv4_gateway: data.ipv4_gateway,
ipv6_gateway: data.ipv6_gateway,
})
}
fn get_address_for_wireguard_relay(
&mut self,
relay: &Relay,
constraints: &WireguardConstraints,
) -> Option<IpAddr> {
match constraints.ip_version {
Constraint::Any | Constraint::Only(IpVersion::V4) => Some(relay.ipv4_addr_in.into()),
Constraint::Only(IpVersion::V6) => relay.ipv6_addr_in.map(|addr| addr.into()),
}
}
fn get_port_for_wireguard_relay(
&mut self,
data: &WireguardEndpointData,
constraints: &WireguardConstraints,
) -> Option<u16> {
match constraints
.port
.as_ref()
.map(|port| port.port)
.unwrap_or(Constraint::Any)
{
Constraint::Any => {
let get_port_amount =
|range: &(u16, u16)| -> u64 { (1 + range.1 - range.0) as u64 };
let port_amount: u64 = data.port_ranges.iter().map(get_port_amount).sum();
if port_amount < 1 {
return None;
}
let mut port_index = self.rng.gen_range(0, port_amount);
for range in data.port_ranges.iter() {
let ports_in_range = get_port_amount(range);
if port_index < ports_in_range {
return Some(port_index as u16 + range.0);
}
port_index -= ports_in_range;
}
error!("Port selection algorithm is broken!");
None
}
Constraint::Only(port) => {
if data
.port_ranges
.iter()
.any(|range| (range.0 <= port && port <= range.1))
{
Some(port)
} else {
None
}
}
}
}
/// Try to read the relays from disk, preferring the newer ones.
fn read_relays_from_disk(
cache_path: &Path,
resource_path: &Path,
) -> Result<ParsedRelays, Error> {
// prefer the resource path's relay list if the cached one doesn't exist or was modified
// before the resource one was created.
let cached_relays = ParsedRelays::from_file(cache_path);
let bundled_relays = match ParsedRelays::from_file(resource_path) {
Ok(bundled_relays) => bundled_relays,
Err(e) => {
log::error!("Failed to load bundled relays - {}", e);
return cached_relays;
}
};
if cached_relays
.as_ref()
.map(|cached| cached.last_updated > bundled_relays.last_updated)
.unwrap_or(false)
{
cached_relays
} else {
Ok(bundled_relays)
}
}
}
#[derive(Clone)]
pub struct RelayListUpdaterHandle {
tx: mpsc::Sender<()>,
}
impl RelayListUpdaterHandle {
pub async fn update_relay_list(&mut self) -> Result<(), Error> {
self.tx
.send(())
.await
.map_err(|_| Error::DownloaderShutDown)
}
}
struct RelayListUpdater {
rpc_client: RelayListProxy,
cache_path: PathBuf,
parsed_relays: Arc<Mutex<ParsedRelays>>,
on_update: Box<dyn Fn(&RelayList) + Send + 'static>,
earliest_next_try: Instant,
api_availability: ApiAvailabilityHandle,
}
impl RelayListUpdater {
pub fn new(
rpc_handle: MullvadRestHandle,
cache_path: PathBuf,
parsed_relays: Arc<Mutex<ParsedRelays>>,
on_update: Box<dyn Fn(&RelayList) + Send + 'static>,
api_availability: ApiAvailabilityHandle,
) -> RelayListUpdaterHandle {
let (tx, cmd_rx) = mpsc::channel(1);
let service = rpc_handle.service();
let rpc_client = RelayListProxy::new(rpc_handle);
let updater = RelayListUpdater {
rpc_client,
cache_path,
parsed_relays,
on_update,
earliest_next_try: Instant::now() + UPDATE_INTERVAL,
api_availability,
};
service.spawn(updater.run(cmd_rx));
RelayListUpdaterHandle { tx }
}
async fn run(mut self, mut cmd_rx: mpsc::Receiver<()>) {
let mut check_interval =
tokio_stream::wrappers::IntervalStream::new(tokio::time::interval_at(
(Instant::now() + UPDATE_CHECK_INTERVAL).into(),
UPDATE_CHECK_INTERVAL,
))
.fuse();
let mut download_future = Box::pin(Fuse::terminated());
loop {
futures::select! {
_check_update = check_interval.next() => {
if download_future.is_terminated() && self.should_update() {
let tag = self.parsed_relays.lock().tag().map(|tag| tag.to_string());
download_future = Box::pin(Self::download_relay_list(self.api_availability.clone(), self.rpc_client.clone(), tag).fuse());
self.earliest_next_try = Instant::now() + UPDATE_INTERVAL;
}
},
new_relay_list = download_future => {
self.consume_new_relay_list(new_relay_list).await;
},
cmd = cmd_rx.next() => {
match cmd {
Some(()) => {
let tag = self.parsed_relays.lock().tag().map(|tag| tag.to_string());
download_future = Box::pin(Self::download_relay_list(self.api_availability.clone(), self.rpc_client.clone(), tag).fuse());
},
None => {
log::trace!("Relay list updater shutting down");
return;
}
}
}
};
}
}
async fn consume_new_relay_list(
&mut self,
result: Result<Option<RelayList>, mullvad_rpc::Error>,
) {
match result {
Ok(Some(relay_list)) => {
if let Err(err) = self.update_cache(relay_list).await {
log::error!("Failed to update relay list cache: {}", err);
}
}
Ok(None) => log::debug!("Relay list is up-to-date"),
Err(err) => {
log::error!(
"Failed to fetch new relay list: {}. Will retry in {} minutes",
err,
self.earliest_next_try
.saturating_duration_since(Instant::now())
.as_secs()
/ 60
);
}
}
}
/// Returns true if the current parsed_relays is older than UPDATE_INTERVAL
fn should_update(&mut self) -> bool {
match SystemTime::now().duration_since(self.parsed_relays.lock().last_updated()) {
Ok(duration) => duration > UPDATE_INTERVAL && self.earliest_next_try <= Instant::now(),
// If the clock is skewed we have no idea by how much or when the last update
// actually was, better download again to get in sync and get a `last_updated`
// timestamp corresponding to the new time.
Err(_) => true,
}
}
fn download_relay_list(
api_handle: ApiAvailabilityHandle,
rpc_handle: RelayListProxy,
tag: Option<String>,
) -> impl Future<Output = Result<Option<RelayList>, mullvad_rpc::Error>> + 'static {
let download_futures = move || {
let available = api_handle.wait_background();
let req = rpc_handle.relay_list(tag.clone());
async move {
available.await?;
req.await.map_err(mullvad_rpc::Error::from)
}
};
let exponential_backoff =
ExponentialBackoff::new(EXPONENTIAL_BACKOFF_INITIAL, EXPONENTIAL_BACKOFF_FACTOR)
.max_delay(UPDATE_INTERVAL * 2);
let download_future = retry_future(
download_futures,
|result| result.is_err(),
Jittered::jitter(exponential_backoff),
);
download_future
}
async fn update_cache(&mut self, new_relay_list: RelayList) -> Result<(), Error> {
if let Err(error) = Self::cache_relays(&self.cache_path, &new_relay_list).await {
error!(
"{}",
error.display_chain_with_msg("Failed to update relay cache on disk")
);
}
let new_parsed_relays = ParsedRelays::from_relay_list(new_relay_list, SystemTime::now());
info!(
"Downloaded relay inventory has {} relays",
new_parsed_relays.relays().len()
);
let mut parsed_relays = self.parsed_relays.lock();
*parsed_relays = new_parsed_relays;
(self.on_update)(parsed_relays.locations());
Ok(())
}
/// Write a `RelayList` to the cache file.
async fn cache_relays(cache_path: &Path, relays: &RelayList) -> Result<(), Error> {
debug!("Writing relays cache to {}", cache_path.display());
let mut file = File::create(cache_path)
.await
.map_err(Error::OpenRelayCache)?;
let bytes = serde_json::to_vec_pretty(relays).map_err(Error::Serialize)?;
let mut slice: &[u8] = bytes.as_slice();
let _ = tokio::io::copy(&mut slice, &mut file)
.await
.map_err(Error::WriteRelayCache)?;
Ok(())
}
}
#[cfg(test)]
mod test {
use super::*;
use mullvad_types::{
relay_constraints::RelayConstraints,
relay_list::{
Relay, RelayBridges, RelayListCity, RelayListCountry, RelayTunnels,
WireguardEndpointData,
},
};
use talpid_types::net::wireguard::PublicKey;
lazy_static::lazy_static! {
static ref RELAYS: RelayList = RelayList {
etag: None,
countries: vec![
RelayListCountry {
name: "Sweden".to_string(),
code: "se".to_string(),
cities: vec![
RelayListCity {
name: "Gothenburg".to_string(),
code: "got".to_string(),
latitude: 57.70887,
longitude: 11.97456,
relays: vec![
Relay {
hostname: "se9-wireguard".to_string(),
ipv4_addr_in: "185.213.154.68".parse().unwrap(),
ipv6_addr_in: Some("2a03:1b20:5:f011::a09f".parse().unwrap()),
include_in_country: true,
active: true,
owned: true,
provider: "31173".to_string(),
weight: 1,
tunnels: RelayTunnels {
openvpn: vec![],
wireguard: vec![
WireguardEndpointData {
port_ranges: vec![(53, 53), (4000, 33433), (33565, 51820), (52000, 60000)],
ipv4_gateway: "10.64.0.1".parse().unwrap(),
ipv6_gateway: "fc00:bbbb:bbbb:bb01::1".parse().unwrap(),
public_key: PublicKey::from_base64("BLNHNoGO88LjV/wDBa7CUUwUzPq/fO2UwcGLy56hKy4=").unwrap(),
protocol: TransportProtocol::Udp,
},
],
},
bridges: RelayBridges {
shadowsocks: vec![],
},
location: None,
},
Relay {
hostname: "se10-wireguard".to_string(),
ipv4_addr_in: "185.213.154.69".parse().unwrap(),
ipv6_addr_in: Some("2a03:1b20:5:f011::a10f".parse().unwrap()),
include_in_country: true,
active: true,
owned: true,
provider: "31173".to_string(),
weight: 1,
tunnels: RelayTunnels {
openvpn: vec![],
wireguard: vec![
WireguardEndpointData {
port_ranges: vec![(53, 53), (4000, 33433), (33565, 51820), (52000, 60000)],
ipv4_gateway: "10.64.0.1".parse().unwrap(),
ipv6_gateway: "fc00:bbbb:bbbb:bb01::1".parse().unwrap(),
public_key: PublicKey::from_base64("veGD6/aEY6sMfN3Ls7YWPmNgu3AheO7nQqsFT47YSws=").unwrap(),
protocol: TransportProtocol::Udp,
},
],
},
bridges: RelayBridges {
shadowsocks: vec![],
},
location: None,
},
Relay {
hostname: "se-got-001".to_string(),
ipv4_addr_in: "185.213.154.131".parse().unwrap(),
ipv6_addr_in: None,
include_in_country: true,
active: true,
owned: true,
provider: "31173".to_string(),
weight: 1,
tunnels: RelayTunnels {
openvpn: vec![
OpenVpnEndpointData {
port: 1194,
protocol: TransportProtocol::Udp,
},
OpenVpnEndpointData {
port: 443,
protocol: TransportProtocol::Tcp,
},
OpenVpnEndpointData {
port: 80,
protocol: TransportProtocol::Tcp,
},
],
wireguard: vec![],
},
bridges: RelayBridges {
shadowsocks: vec![],
},
location: None,
},
],
},
],
}
],
};
}
fn new_relay_selector() -> RelaySelector {
RelaySelector {
parsed_relays: Arc::new(Mutex::new(ParsedRelays::from_relay_list(
RELAYS.clone(),
SystemTime::now(),
))),
rng: rand::thread_rng(),
updater: None,
}
}
#[test]
fn test_preferred_tunnel_protocol() {
let mut relay_selector = new_relay_selector();
// Prefer WG if the location only supports it
let location = LocationConstraint::Hostname(
"se".to_string(),
"got".to_string(),
"se9-wireguard".to_string(),
);
let relay_constraints = RelayConstraints {
location: Constraint::Only(location.clone()),
tunnel_protocol: Constraint::Any,
..RelayConstraints::default()
};
let preferred =
relay_selector.preferred_constraints(&relay_constraints, BridgeState::Off, 0, true);
assert_eq!(
preferred.tunnel_protocol,
Constraint::Only(TunnelType::Wireguard)
);
for attempt in 0..10 {
assert!(relay_selector
.get_tunnel_exit_endpoint(&relay_constraints, BridgeState::Off, attempt, true, None)
.is_ok());
}
// Prefer OpenVPN if the location only supports it
let location = LocationConstraint::Hostname(
"se".to_string(),
"got".to_string(),
"se-got-001".to_string(),
);
let relay_constraints = RelayConstraints {
location: Constraint::Only(location.clone()),
tunnel_protocol: Constraint::Any,
..RelayConstraints::default()
};
let preferred =
relay_selector.preferred_constraints(&relay_constraints, BridgeState::Off, 0, true);
assert_eq!(
preferred.tunnel_protocol,
Constraint::Only(TunnelType::OpenVpn)
);
for attempt in 0..10 {
assert!(relay_selector
.get_tunnel_exit_endpoint(&relay_constraints, BridgeState::Off, attempt, true, None)
.is_ok());
}
// Prefer OpenVPN on Windows when possible
#[cfg(windows)]
{
let relay_constraints = RelayConstraints::default();
for attempt in 0..10 {
let preferred = relay_selector.preferred_constraints(
&relay_constraints,
BridgeState::Off,
attempt,
true,
);
assert_eq!(
preferred.tunnel_protocol,
Constraint::Only(TunnelType::OpenVpn)
);
match relay_selector.get_tunnel_exit_endpoint(
&relay_constraints,
BridgeState::Off,
attempt,
true,
None,
) {
Ok((_, MullvadEndpoint::OpenVpn(_))) => (),
_ => panic!("OpenVPN endpoint was not selected"),
}
}
}
}
#[test]
fn test_wg_entry_hostname_collision() {
let mut relay_selector = new_relay_selector();
let location1 = LocationConstraint::Hostname(
"se".to_string(),
"got".to_string(),
"se9-wireguard".to_string(),
);
let location2 = LocationConstraint::Hostname(
"se".to_string(),
"got".to_string(),
"se10-wireguard".to_string(),
);
let mut relay_constraints = RelayConstraints {
location: Constraint::Only(location1.clone()),
tunnel_protocol: Constraint::Only(TunnelType::Wireguard),
..RelayConstraints::default()
};
relay_constraints.wireguard_constraints.use_multihop = true;
relay_constraints.wireguard_constraints.entry_location = Constraint::Only(location1);
// The same host cannot be used for entry and exit
assert!(relay_selector
.get_tunnel_endpoint(&relay_constraints, BridgeState::Off, 0, true)
.is_err());
relay_constraints.wireguard_constraints.entry_location = Constraint::Only(location2);
// If the entry and exit differ, this should succeed
assert!(relay_selector
.get_tunnel_endpoint(&relay_constraints, BridgeState::Off, 0, true)
.is_ok());
}
#[test]
fn test_wg_entry_filter() -> Result<(), String> {
let mut relay_selector = new_relay_selector();
let specific_hostname = "se10-wireguard";
let location_general = LocationConstraint::City("se".to_string(), "got".to_string());
let location_specific = LocationConstraint::Hostname(
"se".to_string(),
"got".to_string(),
specific_hostname.to_string(),
);
let mut relay_constraints = RelayConstraints {
location: Constraint::Only(location_general.clone()),
tunnel_protocol: Constraint::Only(TunnelType::Wireguard),
..RelayConstraints::default()
};
relay_constraints.wireguard_constraints.use_multihop = true;
relay_constraints.wireguard_constraints.entry_location =
Constraint::Only(location_specific.clone());
// The exit must not equal the entry
let (exit_relay, _entry_relay, _exit_endpoint) = relay_selector
.get_tunnel_endpoint(&relay_constraints, BridgeState::Off, 0, true)
.map_err(|error| error.to_string())?;
assert_ne!(exit_relay.hostname, specific_hostname);
relay_constraints.location = Constraint::Only(location_specific);
relay_constraints.wireguard_constraints.entry_location = Constraint::Only(location_general);
// The entry must not equal the exit
let (exit_relay, _entry_relay, exit_endpoint) = relay_selector
.get_tunnel_endpoint(&relay_constraints, BridgeState::Off, 0, true)
.map_err(|error| error.to_string())?;
assert_eq!(exit_relay.hostname, specific_hostname);
match exit_endpoint {
MullvadEndpoint::OpenVpn { .. } => return Err("Expected WireGuard relay".to_string()),
MullvadEndpoint::Wireguard {
peer, exit_peer, ..
} => {
assert_eq!(exit_relay.ipv4_addr_in, exit_peer.unwrap().endpoint.ip());
assert_ne!(exit_relay.ipv4_addr_in, peer.endpoint.ip());
}
}
Ok(())
}
}
|