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
|
# Mullvad VPN app architecture
This document describes the code architecture and how everything fits together.
For security and anonymity properties, please see [security](security.md).
Some components have specific documentation that go into greater detail:
- [winfw](../windows/winfw/README.md)
## Mullvad vs talpid
Explain the differences between these layers and why the distinction exists.
My thought was that after this section every aspect of the app is explained
under either the Mullvad or the Talpid header. So it's clear which part they
belong to. I yet don't know if this makes sense though.
## Mullvad part of daemon
### Frontend <-> system service communication
### Talking to api.mullvad.net
### Selecting relay and bridge servers
See [this document](relay-selector.md).
### Problem reports
## Talpid part of daemon
### Tunnel state machine
The tunnel state machine is the part of Talpid that coordinates the events for establishing a VPN
connection. It acts upon requests for establishing a secure VPN connection or for disconnecting an
already established connection and returning the system to its initial state. This involves also
using other parts of Talpid to configure the system so that the security policies are applied and
so that the connection works correctly without any further manual configuration necessary.
The tunnel state machine starts in an initial `Disconnected` state. In this state, no changes are
made to the operating system and no security policies are applied. When a request is sent to the
state machine to establish a connection, the state machine will progress first into a `Connecting`
state that will configure the operating system and setup a tunnel with a connection to a VPN server.
Once the configuration is complete and the connection is verified to be working, the state machine
then proceeds to a `Connected` state.
A request can be made to close the VPN connection. Such request will lead the state machine into
a `Disconnecting` state, which will close the connection to the VPN server and restore the operating
system to its original configuration. After the process is complete, the state machine returns to
the `Disconnected` state.
If an error occurs in the `Connecting` or `Connected` states, the state machine may proceed to an
`Error` state. It might reach this state either immediately (when an error occurs in the
`Connecting` state) or after passing through another state to tear down the tunnel (when an error
occurs in the `Connected` state). Either way, in this state the operating system is configured to
block all connections to avoid leaking any data. The objective is to ensure no data leaks from the
tunnel while the user has requested a secure connection, as defined in the [security document].
A high-level overview of the tunnel state machine can be seen in the diagram below:
+--------------+ Request to connect +------------+
Start ------->| Disconnected +------------------------>| Connecting |
+--------------+ +----+--+--+-+
^ ^ | ^ |
| Will attempt to reconnect | | | |
| .----------------------------------' | | |
| | | | |
| | .-----------------' | |
| | | Unrecoverable | |
| | | error | |
| | Request to V | |
System is restored | | disconnect +-------+ | | Connection is configured
to its initial | | .-----------+ Error +----------------' | and working
configuration | | | +-------+ Request to |
| | | ^ connect |
| | | | |
| | | .------------' |
| | | | Unrecoverable |
| | | | error while |
| | | | in connected |
| | V | state V
+--+---+------+-+ +-----------+
| Disconnecting |<------------------------+ Connected |
+---------------+ Request to disconnect +-----------+
or unrecoverable
error
[security document]: security.md
#### State machine inputs
There are two types of inputs that the tunnel state machine react to. The first one is commands sent
to the state machine, and the second is external events that the state machine listens to.
##### Tunnel commands
Besides the two main commands `Connect` and `Disconnect`, there are a few other commands that can be
sent to the tunnel state machine. The following list includes all the commands the tunnel state
machine can receive.
- *Connect*: establish a secure VPN connection
- *Disconnect*: tear down the active VPN connection and return the operating system to its initial
configuration
- *Allow LAN*: enable or disable local network sharing, changing the security policies for some of
the states
- *Block when disconnected*: configures whether the state machine should apply the security policy
for blocking all connections when it's in the `Disconnected` state, effectively requesting the
system to never allow connections outside the tunnel
##### External events
Depending on the state of the machine, it will also listen for specific external events and act
on them possibly by changing states. All of these events can be considered as tunnel events, but
they happen on different scenarios and because of different causes.
- *Tunnel is Up*: the tunnel monitor notifies that the tunnel is working correctly
- *Tunnel is Down*: the tunnel monitor notifies that the tunnel has disconnected
- *Tunnel monitor stopped*: communication to the tunnel monitor was lost
- *Is offline*: notify the tunnel state machine if the operating system is connected or not to the
network, so that it can safely wait for connectivity to be restored without endlessly retrying to
establish the VPN connection
#### State machine outputs
Every time the state machine changes state, it will output a `TunnelStateTransition`. This is an
`enum` type representing which state the tunnel state machine has entered and any associated
metadata that might be useful.
- *Disconnected*
- *Connecting*: includes the information of the endpoint it is trying to connect to
- *Connected*: includes the information of the endpoint it is connected to
- *Disconnecting*: includes the state it will transition to once successfully disconnected, which
is represented as the action it will take after disconnected, listed below:
- *Nothing*: proceed to the `Disconnected` state
- *Block*: proceed to the `Error` state
- *Reconnect*: proceed to the `Connecting` state
- *Error*: includes the cause of the error and the information if the operating system was
successfully configured to block all connections
### System DNS management
### Firewall integration
### Detecting device offline
### OpenVPN plugin and communication back to system service
### Split tunneling
See the [split tunneling documentation](split-tunneling.md).
## Frontends
### Desktop Electron app
### Android
### iOS
### CLI
|