Skip to content

Commit d867bd8

Browse files
Merge branch 'optimize-order-of-connection-parameters-when-trying-to-des-543'
2 parents 66f2127 + 707ecf4 commit d867bd8

File tree

51 files changed

+4652
-3481
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+4652
-3481
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,9 @@ Line wrap the file at 100 chars. Th
3838
### Changed
3939
- Change default obfuscation setting to `auto`.
4040
- Migrate obfuscation settings for existing users from `off` to `auto`.
41+
- Change [default retry connection attempts][`relay selector defaults`].
42+
43+
[`relay selector defaults`]: docs/relay-selector.md#default-constraints-for-tunnel-endpoints
4144

4245
#### Android
4346
- Migrate to Compose Navigation which also improves screen transition animations.

Cargo.lock

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

Cargo.toml

+2
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,8 @@ chrono = { version = "0.4.26", default-features = false}
6868
clap = { version = "4.4.18", features = ["cargo", "derive"] }
6969
once_cell = "1.13"
7070

71+
# Test dependencies
72+
proptest = "1.4"
7173

7274
[profile.release]
7375
opt-level = 3

docs/relay-selector.md

+22-35
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,15 @@
1616
# Relay selector
1717

1818
The relay selector's main purpose is to pick a single Mullvad relay from a list of relays taking
19-
into account certain user-configurable criteria. Relays can be filtered by their _location_
19+
into account certain user-configurable criteria. Relays can be filtered by their _location_
2020
(country, city, hostname), by the protocols and ports they support (transport protocol, tunnel
21-
protocol, port), and by other constraints. The constraints are user specified and stored in the
21+
protocol, port), and by other constraints. The constraints are user specified and stored in the
2222
settings. The default value for location constraints restricts relay selection to relays from Sweden.
2323
The default protocol constraints default to _Auto_, which implies specific behavior.
2424

2525
Generally, the filtering process consists of going through each relay in our relay list and
2626
removing relay and endpoint combinations that do not match the constraints outlined above. The
27-
filtering process produces a list of relays that only contain matching endpoints. Of all the relays
27+
filtering process produces a list of relays that only contain matching endpoints. Of all the relays
2828
that match the constraints, one is selected and a random matching endpoint is selected from that
2929
relay.
3030

@@ -47,42 +47,29 @@ Endpoints may be filtered by:
4747
### Default constraints for tunnel endpoints
4848

4949
Whilst all user selected constraints are always honored, when the user hasn't selected any specific
50-
constraints, following default ones will take effect:
51-
52-
- If no tunnel protocol is specified, the first three connection attempts will use WireGuard. All
53-
remaining attempts will use OpenVPN. If no specific constraints are set:
54-
- The first two attempts will connect to a Wireguard server, first on a random port, and then port
55-
53.
56-
- The third attempt will connect to a Wireguard server on port 80 with _udp2tcp_.
57-
- Remaining attempts will connect to OpenVPN servers, first over UDP on two random ports, and then
58-
over TCP on port 443. Remaining attempts alternate between TCP and UDP on random ports.
59-
60-
- If the tunnel protocol is specified as WireGuard and obfuscation mode is set to _Auto_:
61-
- First two attempts will be used without _udp2tcp_, using a random port on first attempt, and
62-
port 53 on second attempt.
63-
- Next two attempts will use _udp2tcp_ on ports 80 and 5001 respectively.
64-
- The above steps repeat ad infinitum.
65-
66-
If obfuscation is turned on, connections will alternate between port 80 and port 5001 using
67-
_udp2tcp_ all of the time.
68-
69-
If obfuscation is turned _off_, WireGuard connections will first alternate between using
70-
a random port and port 53, e.g. first attempt using port 22151, second 53, third
71-
26107, fourth attempt using port 53, and so on.
72-
73-
If the user has specified a specific port for either _udp2tcp_ or WireGuard, it will override the
74-
port selection, but it will not change the connection type described above (WireGuard or WireGuard
75-
over _udp2tcp_).
76-
77-
- If no OpenVPN tunnel constraints are specified, then the first two attempts at selecting a tunnel
78-
will try to select UDP endpoints on any port, and the third and fourth attempts will filter for
79-
TCP endpoints on port 443. Any subsequent filtering attempts will alternate between TCP and UDP on
80-
any port.
50+
constraints the following default ones will take effect:
51+
52+
- The first three connection attempts will use Wireguard
53+
- The first attempt will connect to a Wireguard relay on a random port
54+
- The second attempt will connect to a Wireguard relay on port 443
55+
- The third attempt will connect to a Wireguard relay over IPv6 (if IPv6 is configured on the host) on a random port
56+
- The fourth-to-seventh attempt will alternate between Wireguard and OpenVPN
57+
- The fourth attempt will connect to an OpenVPN relay over TCP on port 443
58+
- The fifth attempt will connect to a Wireguard relay on a random port using [UDP2TCP obfuscation](https://github.com/mullvad/udp-over-tcp)
59+
- The sixth attempt will connect to a Wireguard relay over IPv6 on a random port using UDP2TCP obfuscation (if IPv6 is configured on the host)
60+
- The seventh attempt will connect to an OpenVPN relay over a bridge on a random port
61+
62+
If no tunnel has been established after exhausting this list of attempts, the relay selector will
63+
loop back to the first default constraint and continue its search from there.
64+
65+
Any default constraint that is incompatible with user specified constraints will simply not be
66+
considered. Conversely, all default constraints which do not conflict with user specified constraints
67+
will be used in the search for a working tunnel endpoint on repeated connection failures.
8168

8269
## Selecting tunnel endpoint between filtered relays
8370

8471
To select a single relay from the set of filtered relays, the relay selector uses a roulette wheel
85-
selection algorithm using the weights that are assigned to each relay. The higher the weight is
72+
selection algorithm using the weights that are assigned to each relay. The higher the weight is
8673
relatively to other relays, the higher the likelihood that a given relay will be picked. Once a
8774
relay is picked, then a random endpoint that matches the constraints from the relay is picked.
8875

mullvad-cli/src/cmds/bridge.rs

+3-2
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,10 @@ use anyhow::{bail, Result};
22
use clap::Subcommand;
33
use mullvad_management_interface::MullvadProxyClient;
44
use mullvad_types::{
5+
constraints::Constraint,
56
relay_constraints::{
6-
BridgeConstraintsFormatter, BridgeState, BridgeType, Constraint, LocationConstraint,
7-
Ownership, Provider, Providers,
7+
BridgeConstraintsFormatter, BridgeState, BridgeType, LocationConstraint, Ownership,
8+
Provider, Providers,
89
},
910
relay_list::RelayEndpointData,
1011
};

mullvad-cli/src/cmds/custom_list.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@ use anyhow::{anyhow, bail, Result};
33
use clap::Subcommand;
44
use mullvad_management_interface::MullvadProxyClient;
55
use mullvad_types::{
6-
relay_constraints::{Constraint, GeographicLocationConstraint},
7-
relay_list::RelayList,
6+
constraints::Constraint, relay_constraints::GeographicLocationConstraint, relay_list::RelayList,
87
};
98

109
#[derive(Subcommand, Debug)]

mullvad-cli/src/cmds/debug.rs

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
use anyhow::Result;
22
use mullvad_management_interface::MullvadProxyClient;
3-
use mullvad_types::relay_constraints::{Constraint, RelayConstraints, RelaySettings};
3+
use mullvad_types::{
4+
constraints::Constraint,
5+
relay_constraints::{RelayConstraints, RelaySettings},
6+
};
47

58
#[derive(clap::Subcommand, Debug)]
69
pub enum DebugCommands {

mullvad-cli/src/cmds/obfuscation.rs

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
use anyhow::Result;
22
use clap::Subcommand;
33
use mullvad_management_interface::MullvadProxyClient;
4-
use mullvad_types::relay_constraints::{
5-
Constraint, ObfuscationSettings, SelectedObfuscation, Udp2TcpObfuscationSettings,
4+
use mullvad_types::{
5+
constraints::Constraint,
6+
relay_constraints::{ObfuscationSettings, SelectedObfuscation, Udp2TcpObfuscationSettings},
67
};
78

89
#[derive(Subcommand, Debug)]

mullvad-cli/src/cmds/relay.rs

+5-4
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,11 @@ use clap::Subcommand;
33
use itertools::Itertools;
44
use mullvad_management_interface::MullvadProxyClient;
55
use mullvad_types::{
6+
constraints::{Constraint, Match},
67
location::{CountryCode, Location},
78
relay_constraints::{
8-
Constraint, GeographicLocationConstraint, LocationConstraint, LocationConstraintFormatter,
9-
Match, OpenVpnConstraints, Ownership, Provider, Providers, RelayConstraints, RelayOverride,
9+
GeographicLocationConstraint, LocationConstraint, LocationConstraintFormatter,
10+
OpenVpnConstraints, Ownership, Provider, Providers, RelayConstraints, RelayOverride,
1011
RelaySettings, TransportPort, WireguardConstraints,
1112
},
1213
relay_list::{RelayEndpointData, RelayListCountry},
@@ -318,7 +319,7 @@ impl Relay {
318319

319320
print_option!(
320321
"Multihop state",
321-
if constraints.wireguard_constraints.use_multihop {
322+
if constraints.wireguard_constraints.multihop() {
322323
"enabled"
323324
} else {
324325
"disabled"
@@ -679,7 +680,7 @@ impl Relay {
679680
wireguard_constraints.ip_version = ipv;
680681
}
681682
if let Some(use_multihop) = use_multihop {
682-
wireguard_constraints.use_multihop = *use_multihop;
683+
wireguard_constraints.use_multihop(*use_multihop);
683684
}
684685
match entry_location {
685686
Some(EntryArgs::Location(location_args)) => {

mullvad-cli/src/cmds/relay_constraints.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
use clap::Args;
22
use mullvad_types::{
3+
constraints::Constraint,
34
location::{CityCode, CountryCode, Hostname},
4-
relay_constraints::{Constraint, GeographicLocationConstraint, LocationConstraint},
5+
relay_constraints::{GeographicLocationConstraint, LocationConstraint},
56
};
67

78
#[derive(Args, Debug, Clone)]

mullvad-cli/src/cmds/tunnel.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ use anyhow::Result;
22
use clap::Subcommand;
33
use mullvad_management_interface::MullvadProxyClient;
44
use mullvad_types::{
5-
relay_constraints::Constraint,
5+
constraints::Constraint,
66
wireguard::{QuantumResistantState, RotationInterval, DEFAULT_ROTATION_INTERVAL},
77
};
88

mullvad-daemon/src/custom_list.rs

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
use crate::{new_selector_config, Daemon, Error, EventListener};
22
use mullvad_types::{
3+
constraints::Constraint,
34
custom_list::{CustomList, Id},
4-
relay_constraints::{
5-
BridgeState, Constraint, LocationConstraint, RelaySettings, ResolvedBridgeSettings,
6-
},
5+
relay_constraints::{BridgeState, LocationConstraint, RelaySettings, ResolvedBridgeSettings},
76
};
87
use talpid_types::net::TunnelType;
98

@@ -133,7 +132,7 @@ where
133132
{
134133
match endpoint.tunnel_type {
135134
TunnelType::Wireguard => {
136-
if relay_settings.wireguard_constraints.use_multihop {
135+
if relay_settings.wireguard_constraints.multihop() {
137136
if let Constraint::Only(LocationConstraint::CustomList { list_id }) =
138137
&relay_settings.wireguard_constraints.entry_location
139138
{

mullvad-daemon/src/lib.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ use mullvad_types::{
5656
version::{AppVersion, AppVersionInfo},
5757
wireguard::{PublicKey, QuantumResistantState, RotationInterval},
5858
};
59-
use relay_list::updater::{self, RelayListUpdater, RelayListUpdaterHandle};
59+
use relay_list::{RelayListUpdater, RelayListUpdaterHandle, RELAYS_FILENAME};
6060
use settings::SettingsPersister;
6161
#[cfg(target_os = "android")]
6262
use std::os::unix::io::RawFd;
@@ -698,8 +698,8 @@ where
698698
let initial_selector_config = new_selector_config(&settings);
699699
let relay_selector = RelaySelector::new(
700700
initial_selector_config,
701-
resource_dir.join(updater::RELAYS_FILENAME),
702-
cache_dir.join(updater::RELAYS_FILENAME),
701+
resource_dir.join(RELAYS_FILENAME),
702+
cache_dir.join(RELAYS_FILENAME),
703703
);
704704

705705
let settings_relay_selector = relay_selector.clone();
@@ -1105,7 +1105,7 @@ where
11051105
// Note that `Constraint::Any` corresponds to just IPv4
11061106
matches!(
11071107
relay_constraints.wireguard_constraints.ip_version,
1108-
mullvad_types::relay_constraints::Constraint::Only(IpVersion::V6)
1108+
mullvad_types::constraints::Constraint::Only(IpVersion::V6)
11091109
)
11101110
} else {
11111111
false

mullvad-daemon/src/migrations/v1.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
use super::Result;
2-
use mullvad_types::{relay_constraints::Constraint, settings::SettingsVersion};
2+
use mullvad_types::{constraints::Constraint, settings::SettingsVersion};
33
use serde::{Deserialize, Serialize};
44

55
// ======================================================

mullvad-daemon/src/migrations/v4.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
use super::{Error, Result};
2-
use mullvad_types::{relay_constraints::Constraint, settings::SettingsVersion};
2+
use mullvad_types::{constraints::Constraint, settings::SettingsVersion};
33
use serde::{Deserialize, Serialize};
44

55
// ======================================================

mullvad-daemon/src/migrations/v5.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
use super::{Error, Result};
2-
use mullvad_types::{relay_constraints::Constraint, settings::SettingsVersion};
2+
use mullvad_types::{constraints::Constraint, settings::SettingsVersion};
33
use serde::{Deserialize, Serialize};
44

55
// ======================================================

mullvad-daemon/src/migrations/v6.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
use super::{Error, Result};
2-
use mullvad_types::{relay_constraints::Constraint, settings::SettingsVersion};
2+
use mullvad_types::{constraints::Constraint, settings::SettingsVersion};
33
use serde::{Deserialize, Serialize};
44

55
// ======================================================

0 commit comments

Comments
 (0)