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
|
## Dependencies
One needs Go v1.21 and the latest stable rust to build the app.
Go can be installed via
```bash
brew install go@1.21
```
Rust should be installed via [rustup](https://rustup.rs). Once rust is
installed, do not forget to install the iOS targets:
```bash
./scripts/setup-rust ios
```
(Optional) Run the following to install a git `post-checkout` hook that will automatically
run the `setup-rust` script when the Rust version specified in the `rust-toolchain.toml` file changes:
```bash
.scripts/setup-rust install-hook
```
You only need to install the ARM simulator target, which matches the current Apple Silicon architecture.
Once both rust and go are installed, ensure they are available in your path.
A protobuf compiler is also required in order to build some of the rust dependencies.
```bash
brew install protobuf
```
## Submodules
The iOS app imports Mullvad's version of `wireguard-go` as a Git submodule. Before building, this must be checked out with
```bash
git submodule update --init --recursive ios/wireguard-apple
```
## Configure Xcode project
Copy template files of Xcode build configuration:
```
for file in ./ios/Configurations/*.template ; do cp $file ${file//.template/} ; done
```
Template files provide our team ID and correct provisioning profiles and generally do not require
any changes when configuring our build server or developer machines for members of Mullvad
development team. In all other cases perform the following steps to configure the project:
1. Edit `Base.xcconfig` and fill in your Apple development team ID, which can be found on Apple
developer portal in the top right corner next to your organization name (uppercase letters and
digits).
1. Edit `App.xcconfig` and `PacketTunnel.xcconfig` and supply the names of your provisioning profiles
for development (Debug) and distribution (Release).
1. Edit `Screenshots.xcconfig` and supply the name of your provisioning profile. We only specify
development profile here as we never build UI testing targets for distribution. Skip this step if
you do not intend to generate screenshots for the app.
Ensure you have a valid build profile for a development build for both
MullvadVPN and PacketTunnel, both need the
`packet-tunnel-provider-systemextension` NetworkExtension entitlement.
# The following instructions are only relevant for release builds.
## Create private key and Certificate Signing Request (CSR)
### Create new private key and CSR
OpenSSL will ask you the password for the private key, make sure to memorize it, you'll need it
later.
```
openssl req -new -newkey rsa:2048 \
-outform pem -keyform pem \
-keyout private_key.pem \
-out cert_signing_request \
-subj "/C=SE/O=<ORGANIZATION_NAME>/emailAddress=<YOUR_EMAIL>"
```
### [Alternative] Create CSR using an existing private key
```
openssl req -new \
-outform pem -keyform pem \
-key private_key.pem \
-out cert_signing_request \
-subj "/C=SE/O=<ORGANIZATION_NAME>/emailAddress=<YOUR_EMAIL>"
```
## Upload Certificate Signing Request (CSR) to Apple
1. Go to https://developer.apple.com/account/resources/certificates/list
1. Click the plus button (+) in the heading to create a new certificate
1. Select "Apple Distribution" option from the given list, press "Continue"
1. Select the previously created `cert_signing_request` file for upload
1. Download the provided `distribution.cer` on disk
## Download Apple WWDR certificate
WWDR certificate is used to verify the development and distribution certificates issued by Apple.
```
curl https://www.apple.com/certificateauthority/AppleWWDRCAG3.cer -O
```
# Convert certificates to PEM format
```
openssl x509 -inform der -outform pem \
-in distribution.cer \
-out distribution.pem
openssl x509 -inform der -outform pem \
-in AppleWWDRCAG3.cer \
-out AppleWWDRCAG3.pem
```
## Export private key and certificates
Produce a PKCS12 container with the private key and all certificates. You will be asked to enter two
passphrases:
1. Private key passphrase
1. Export passphrase for PKCS12 file
You can store the produced `apple_code_signing.p12` file as a backup to be able to restore the keys
in the event of hardware failure. However you should always be able to re-create everything from
scratch.
```
openssl pkcs12 -export \
-inkey private_key.pem \
-in distribution.pem \
-certfile AppleWWDRCAG3.pem \
-out apple_code_signing.p12 \
-name "<FRIENDLY_KEYCHAIN_NAME>"
```
## Remove old private key and certificates from Keychain
__Skip this section if you create the private key for the very first time.__
If you happen to re-create the keys, you will have to remove the old keys and certificates from
Keychain.
You can list all certificates with corresponding keys by using the following command:
```
security find-identity
```
You'll get a list of identities that looks like that:
```
Valid identities only
1) <HASH_ID> "Apple Distribution: <COMPANY NAME> (<TEAM ID>)"
2) <HASH_ID> "Apple Development: <COMPANY NAME> (<TEAM ID>)"
```
Pick the one that you don't want anymore and copy the `<HASH_ID>` from the output, then paste into
the command below:
```
security delete-identity -Z <HASH_ID>
```
This should take care of removing both private keys and certificates. Repeat as many times as needed
if you wish to remove multiple identities.
## Import private key and certificates into Keychain
```
security import apple_code_signing.p12 -f pkcs12 \
-T /usr/bin/codesign \
-P <EXPORT_PASSPHRASE>
```
Note: `-T /usr/bin/codesign` instructs Keychain to suppress password prompt during code signing,
although you still have to unlock Keychain for that to have any effect. This instruction is
equivalent to choosing "Always allow" in the password prompt GUI on the first run of `codesign`
tool.
Note: providing the export passphrase using the `-P` flag is considered unsafe.
Leave the `-P <EXPORT_PASSPHRASE>` out to enter the passphrase via GUI.
Technically after that you can clean up all created keys and certificates since all of them are
securely stored in Keychain now.
```
rm distribution.{pem,cer} \
AppleWWDRCAG3.{pem,cer} \
cert_signing_request \
apple_code_signing.p12 \
private_key.pem
```
## Create iOS provisioning profiles
We will now create the provisioning profiles listed below using the Apple developer console.
| App ID | Provisioning Profile Name |
|-------------------------------------|---------------------------|
| net.mullvad.MullvadVPN | Mullvad VPN Release |
| net.mullvad.MullvadVPN.PacketTunnel | Packet Tunnel Release |
Follow these steps to add each of provisioning profiles:
1. Go to https://developer.apple.com/account/resources/profiles/list
1. Click the plus button (+) in the heading to create a new provisioning profile
1. Choose "App Store" under "Distribution", then hit "Continue"
1. Choose the App ID (see the table above) and hit "Continue"
1. Choose the distribution certificate that you had created after uploading the CSR
(i.e `<ORGANIZATION_NAME> (Distribution)`)
1. Type in the profile name (see the table above) and hit "Generate"
1. Download the certificate in `ios/iOS Provisioning Profiles` directory. Create the directory if it
does not exist.
Note: you can use a different directory for storing provisioning profiles, however in that case,
make sure to provide the path to the custom location via `IOS_PROVISIONING_PROFILES_DIR`
environment variable when running `build.sh` (more on that later).
# Setup AppStore credentials
For the automatic uploads to work properly, make sure to provide the Apple ID and password via
environment variables:
1. `IOS_APPLE_ID` - Your Apple ID (Email)
1. `IOS_APPLE_ID_PASSWORD` - Your Apple ID password or keychain reference (see explanation below)
`IOS_APPLE_ID_PASSWORD` accepts a keychain reference in form of `@keychain:<KEYCHAIN_ITEM_NAME>`.
Use the app specific password instead of the actual account password and save it to Keychain.
The app specific password can be created via [Apple ID website] and added to Keychain using the
following command (note that `altool` will be authorized to access the saved password):
```
xcrun altool --store-password-in-keychain-item <KEYCHAIN_ITEM_NAME> \
-u <APPLE_ID_EMAIL> \
-p "<APP_SPECIFIC_PASSWORD>"
```
[Apple ID website]: https://appleid.apple.com/account/manage
## Keychain quirks
It's possible that `codesign` will keep throwing the password prompts for Keychain, in that case try
running the following commands __after__ importing the credentials into Keychain:
```
security unlock-keychain <KEYCHAIN>
security set-key-partition-list -S apple-tool:,apple: -s <KEYCHAIN>
```
where `<KEYCHAIN>` is the name of the target Keychain where the signing credentials are stored.
This guide does not use a separate Keychain store, so use `login.keychain-db` then.
Reference: https://docs.travis-ci.com/user/common-build-problems/#mac-macos-sierra-1012-code-signing-errors
# SSL pinning
The iOS app utilizes SSL pinning via the `mullvad-api` client.
Root certificates can be updated by using the source certificates shipped along with `mullvad-api` found at `../mullvad-api/le_root_cert.pem`
|