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
|
use libc::c_char;
use mullvad_api::{
DevicesProxy,
rest::{self, MullvadRestHandle},
};
use super::{
SwiftApiContext,
cancellation::{RequestCancelHandle, SwiftCancelHandle},
completion::{CompletionCookie, SwiftCompletionHandler},
do_request, do_request_with_empty_body, get_string,
response::SwiftMullvadApiResponse,
retry_strategy::{RetryStrategy, SwiftRetryStrategy},
};
use std::ptr;
use talpid_types::net::wireguard;
use talpid_types::net::wireguard::PublicKey;
/// Get device info via the Mullvad API client.
///
/// # Safety
///
/// `api_context` must be pointing to a valid instance of `SwiftApiContext`. A `SwiftApiContext` is created
/// by calling `mullvad_ios_init_new`.
///
/// This function takes ownership of `completion_cookie`, which must be pointing to a valid instance of Swift
/// object `MullvadApiCompletion`. The pointer will be freed by calling `mullvad_ios_completion_finish`
/// when completion finishes (in completion.finish).
///
/// the `account_number` must be a pointer to a null terminated string.
/// the `identifier` must be a pointer to a null terminated string.
///
/// `retry_strategy` must have been created by a call to either of the following functions
/// `mullvad_api_retry_strategy_never`, `mullvad_api_retry_strategy_constant` or `mullvad_api_retry_strategy_exponential`
///
/// This function is not safe to call multiple times with the same `CompletionCookie`.
#[unsafe(no_mangle)]
pub unsafe extern "C" fn mullvad_ios_get_device(
api_context: SwiftApiContext,
completion_cookie: *mut libc::c_void,
retry_strategy: SwiftRetryStrategy,
account_number: *const c_char,
identifier: *const c_char,
) -> SwiftCancelHandle {
let completion_handler =
SwiftCompletionHandler::new(unsafe { CompletionCookie::new(completion_cookie) });
let Ok(tokio_handle) = crate::mullvad_ios_runtime() else {
completion_handler.finish(SwiftMullvadApiResponse::no_tokio_runtime());
return SwiftCancelHandle::empty();
};
let api_context = api_context.rust_context();
// Safety: The caller must guarantee that `retry_strategy` is not null and has not been freed
let retry_strategy = unsafe { retry_strategy.into_rust() };
let account_number = unsafe { get_string(account_number) };
let identifier = unsafe { get_string(identifier) };
let completion = completion_handler.clone();
let task = tokio_handle.spawn(async move {
match mullvad_ios_get_device_inner(
api_context.rest_handle(),
retry_strategy,
account_number,
identifier,
)
.await
{
Ok(response) => completion.finish(response),
Err(err) => {
log::error!("{err:?}");
completion.finish(SwiftMullvadApiResponse::rest_error(err));
}
}
});
RequestCancelHandle::new(task, completion_handler).into_swift()
}
/// Get devices info via the Mullvad API client.
///
/// # Safety
///
/// `api_context` must be pointing to a valid instance of `SwiftApiContext`. A `SwiftApiContext` is created
/// by calling `mullvad_api_init_new`.
///
/// This function takes ownership of `completion_cookie`, which must be pointing to a valid instance of Swift
/// object `MullvadApiCompletion`. The pointer will be freed by calling `mullvad_api_completion_finish`
/// when completion finishes (in completion.finish).
///
/// the `account_number` must be a pointer to a null terminated string.
///
/// `retry_strategy` must have been created by a call to either of the following functions
/// `mullvad_api_retry_strategy_never`, `mullvad_api_retry_strategy_constant` or `mullvad_api_retry_strategy_exponential`
///
/// This function is not safe to call multiple times with the same `CompletionCookie`.
#[unsafe(no_mangle)]
pub unsafe extern "C" fn mullvad_ios_get_devices(
api_context: SwiftApiContext,
completion_cookie: *mut libc::c_void,
retry_strategy: SwiftRetryStrategy,
account_number: *const c_char,
) -> SwiftCancelHandle {
let completion_handler =
SwiftCompletionHandler::new(unsafe { CompletionCookie::new(completion_cookie) });
let Ok(tokio_handle) = crate::mullvad_ios_runtime() else {
completion_handler.finish(SwiftMullvadApiResponse::no_tokio_runtime());
return SwiftCancelHandle::empty();
};
let api_context = api_context.rust_context();
// Safety: The caller must guarantee that `retry_strategy` is not null and has not been freed
let retry_strategy = unsafe { retry_strategy.into_rust() };
let account_number = unsafe { get_string(account_number) };
let completion = completion_handler.clone();
let task = tokio_handle.spawn(async move {
match mullvad_ios_get_devices_inner(
api_context.rest_handle(),
retry_strategy,
account_number,
)
.await
{
Ok(response) => completion.finish(response),
Err(err) => {
log::error!("{err:?}");
completion.finish(SwiftMullvadApiResponse::rest_error(err));
}
}
});
RequestCancelHandle::new(task, completion_handler).into_swift()
}
/// create device via the Mullvad API client.
///
/// # Safety
///
/// `api_context` must be pointing to a valid instance of `SwiftApiContext`. A `SwiftApiContext` is created
/// by calling `mullvad_api_init_new`.
///
/// This function takes ownership of `completion_cookie`, which must be pointing to a valid instance of Swift
/// object `MullvadApiCompletion`. The pointer will be freed by calling `mullvad_api_completion_finish`
/// when completion finishes (in completion.finish).
///
/// `retry_strategy` must have been created by a call to either of the following functions
/// `mullvad_api_retry_strategy_never`, `mullvad_api_retry_strategy_constant` or `mullvad_api_retry_strategy_exponential`
///
/// the `account_number` must be a pointer to a null terminated string.
/// the `identifier` must be a pointer to a null terminated string.
/// the `public_key` pointer must be a valid pointer to 32 unsigned bytes.
/// This function is not safe to call multiple times with the same `CompletionCookie`.
#[unsafe(no_mangle)]
pub unsafe extern "C" fn mullvad_ios_create_device(
api_context: SwiftApiContext,
completion_cookie: *mut libc::c_void,
retry_strategy: SwiftRetryStrategy,
account_number: *const c_char,
public_key: *const u8,
) -> SwiftCancelHandle {
let completion_handler =
SwiftCompletionHandler::new(unsafe { CompletionCookie::new(completion_cookie) });
let Ok(tokio_handle) = crate::mullvad_ios_runtime() else {
completion_handler.finish(SwiftMullvadApiResponse::no_tokio_runtime());
return SwiftCancelHandle::empty();
};
let api_context = api_context.rust_context();
// Safety: The caller must guarantee that `retry_strategy` is not null and has not been freed
let retry_strategy = unsafe { retry_strategy.into_rust() };
let account_number = unsafe { get_string(account_number) };
// Safety: `public_key` pointer must be a valid pointer to 32 unsigned bytes.
let pub_key: [u8; 32] = unsafe { ptr::read(public_key as *const [u8; 32]) };
let completion = completion_handler.clone();
let task = tokio_handle.spawn(async move {
match mullvad_ios_create_device_inner(
api_context.rest_handle(),
retry_strategy,
account_number,
PublicKey::from(pub_key),
)
.await
{
Ok(response) => completion.finish(response),
Err(err) => {
log::error!("{err:?}");
completion.finish(SwiftMullvadApiResponse::rest_error(err));
}
}
});
RequestCancelHandle::new(task, completion_handler).into_swift()
}
/// delete device via the Mullvad API client.
///
/// # Safety
///
/// `api_context` must be pointing to a valid instance of `SwiftApiContext`. A `SwiftApiContext` is created
/// by calling `mullvad_api_init_new`.
///
/// This function takes ownership of `completion_cookie`, which must be pointing to a valid instance of Swift
/// object `MullvadApiCompletion`. The pointer will be freed by calling `mullvad_api_completion_finish`
/// when completion finishes (in completion.finish).
///
/// `retry_strategy` must have been created by a call to either of the following functions
/// `mullvad_api_retry_strategy_never`, `mullvad_api_retry_strategy_constant` or `mullvad_api_retry_strategy_exponential`
///
/// the `account_number` must be a pointer to a null terminated string.
/// the `identifier` must be a pointer to a null terminated string.
/// This function is not safe to call multiple times with the same `CompletionCookie`.
#[unsafe(no_mangle)]
pub unsafe extern "C" fn mullvad_ios_delete_device(
api_context: SwiftApiContext,
completion_cookie: *mut libc::c_void,
retry_strategy: SwiftRetryStrategy,
account_number: *const c_char,
identifier: *const c_char,
) -> SwiftCancelHandle {
let completion_handler =
SwiftCompletionHandler::new(unsafe { CompletionCookie::new(completion_cookie) });
let Ok(tokio_handle) = crate::mullvad_ios_runtime() else {
completion_handler.finish(SwiftMullvadApiResponse::no_tokio_runtime());
return SwiftCancelHandle::empty();
};
let api_context = api_context.rust_context();
// Safety: The caller must guarantee that `retry_strategy` is not null and has not been freed
let retry_strategy = unsafe { retry_strategy.into_rust() };
let account_number = unsafe { get_string(account_number) };
let identifier = unsafe { get_string(identifier) };
let completion = completion_handler.clone();
let task = tokio_handle.spawn(async move {
match mullvad_ios_delete_device_inner(
api_context.rest_handle(),
retry_strategy,
account_number,
identifier,
)
.await
{
Ok(response) => completion.finish(response),
Err(err) => {
log::error!("{err:?}");
completion.finish(SwiftMullvadApiResponse::rest_error(err));
}
}
});
RequestCancelHandle::new(task, completion_handler).into_swift()
}
/// rotate device key via the Mullvad API client.
///
/// # Safety
///
/// `api_context` must be pointing to a valid instance of `SwiftApiContext`. A `SwiftApiContext` is created
/// by calling `mullvad_api_init_new`.
///
/// This function takes ownership of `completion_cookie`, which must be pointing to a valid instance of Swift
/// object `MullvadApiCompletion`. The pointer will be freed by calling `mullvad_api_completion_finish`
/// when completion finishes (in completion.finish).
///
/// `retry_strategy` must have been created by a call to either of the following functions
/// `mullvad_api_retry_strategy_never`, `mullvad_api_retry_strategy_constant` or `mullvad_api_retry_strategy_exponential`
///
/// the `account_number` must be a pointer to a null terminated string.
/// the `identifier` must be a pointer to a null terminated string.
/// the `public_key` pointer must be a valid pointer to 32 unsigned bytes.
/// This function is not safe to call multiple times with the same `CompletionCookie`.
#[unsafe(no_mangle)]
pub unsafe extern "C" fn mullvad_ios_rotate_device_key(
api_context: SwiftApiContext,
completion_cookie: *mut libc::c_void,
retry_strategy: SwiftRetryStrategy,
account_number: *const c_char,
identifier: *const c_char,
public_key: *const u8,
) -> SwiftCancelHandle {
let completion_handler =
SwiftCompletionHandler::new(unsafe { CompletionCookie::new(completion_cookie) });
let Ok(tokio_handle) = crate::mullvad_ios_runtime() else {
completion_handler.finish(SwiftMullvadApiResponse::no_tokio_runtime());
return SwiftCancelHandle::empty();
};
let api_context = api_context.rust_context();
// Safety: The caller must guarantee that `retry_strategy` is not null and has not been freed
let retry_strategy = unsafe { retry_strategy.into_rust() };
let account_number = unsafe { get_string(account_number) };
let identifier = unsafe { get_string(identifier) };
// Safety: `public_key` pointer must be a valid pointer to 32 unsigned bytes.
let pub_key: [u8; 32] = unsafe { ptr::read(public_key as *const [u8; 32]) };
let completion = completion_handler.clone();
let task = tokio_handle.spawn(async move {
match mullvad_ios_rotate_device_key_inner(
api_context.rest_handle(),
retry_strategy,
account_number,
identifier,
PublicKey::from(pub_key),
)
.await
{
Ok(response) => completion.finish(response),
Err(err) => {
log::error!("{err:?}");
completion.finish(SwiftMullvadApiResponse::rest_error(err));
}
}
});
RequestCancelHandle::new(task, completion_handler).into_swift()
}
async fn mullvad_ios_get_device_inner(
rest_client: MullvadRestHandle,
retry_strategy: RetryStrategy,
account_number: String,
identifier: String,
) -> Result<SwiftMullvadApiResponse, rest::Error> {
let api = DevicesProxy::new(rest_client);
let future_factory = || api.get_response(account_number.clone(), identifier.clone());
do_request(retry_strategy, future_factory).await
}
async fn mullvad_ios_get_devices_inner(
rest_client: MullvadRestHandle,
retry_strategy: RetryStrategy,
account_number: String,
) -> Result<SwiftMullvadApiResponse, rest::Error> {
let api = DevicesProxy::new(rest_client);
let future_factory = || api.list_response(account_number.clone());
do_request(retry_strategy, future_factory).await
}
async fn mullvad_ios_delete_device_inner(
rest_client: MullvadRestHandle,
retry_strategy: RetryStrategy,
account_number: String,
identifier: String,
) -> Result<SwiftMullvadApiResponse, rest::Error> {
let api = DevicesProxy::new(rest_client);
let future_factory = || api.remove(account_number.clone(), identifier.clone());
do_request_with_empty_body(retry_strategy, future_factory).await
}
async fn mullvad_ios_rotate_device_key_inner(
rest_client: MullvadRestHandle,
retry_strategy: RetryStrategy,
account_number: String,
identifier: String,
pub_key: wireguard::PublicKey,
) -> Result<SwiftMullvadApiResponse, rest::Error> {
let api = DevicesProxy::new(rest_client);
let future_factory =
|| api.replace_wg_key_response(account_number.clone(), identifier.clone(), pub_key.clone());
do_request(retry_strategy, future_factory).await
}
async fn mullvad_ios_create_device_inner(
rest_client: MullvadRestHandle,
retry_strategy: RetryStrategy,
account_number: String,
pub_key: wireguard::PublicKey,
) -> Result<SwiftMullvadApiResponse, rest::Error> {
let api = DevicesProxy::new(rest_client);
let future_factory = || api.create_response(account_number.clone(), pub_key.clone());
do_request(retry_strategy, future_factory).await
}
|