-
Notifications
You must be signed in to change notification settings - Fork 389
/
Copy pathmanagement_interface.rs
1159 lines (1036 loc) · 43.3 KB
/
management_interface.rs
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
use crate::{account_history, device, DaemonCommand, DaemonCommandSender, EventListener};
use futures::{
channel::{mpsc, oneshot},
StreamExt,
};
use mullvad_api::{rest::Error as RestError, StatusCode};
use mullvad_management_interface::{
types::{self, daemon_event, management_service_server::ManagementService},
Code, Request, Response, Status,
};
#[cfg(not(target_os = "android"))]
use mullvad_types::settings::DnsOptions;
use mullvad_types::{
account::AccountToken,
relay_constraints::{
BridgeSettings, BridgeState, ObfuscationSettings, RelayOverride, RelaySettings,
},
relay_list::RelayList,
settings::Settings,
states::{TargetState, TunnelState},
version,
wireguard::{RotationInterval, RotationIntervalError},
};
#[cfg(windows)]
use std::path::PathBuf;
use std::{
str::FromStr,
sync::{Arc, Mutex},
time::Duration,
};
use talpid_types::ErrorExt;
use tokio_stream::wrappers::UnboundedReceiverStream;
#[derive(err_derive::Error, Debug)]
#[error(no_from)]
pub enum Error {
// Unable to start the management interface server
#[error(display = "Unable to start management interface server")]
SetupError(#[error(source)] mullvad_management_interface::Error),
}
struct ManagementServiceImpl {
daemon_tx: DaemonCommandSender,
subscriptions: Arc<Mutex<Vec<EventsListenerSender>>>,
}
pub type ServiceResult<T> = std::result::Result<Response<T>, Status>;
type EventsListenerReceiver = UnboundedReceiverStream<Result<types::DaemonEvent, Status>>;
type EventsListenerSender = tokio::sync::mpsc::UnboundedSender<Result<types::DaemonEvent, Status>>;
const INVALID_VOUCHER_MESSAGE: &str = "This voucher code is invalid";
const USED_VOUCHER_MESSAGE: &str = "This voucher code has already been used";
#[mullvad_management_interface::async_trait]
impl ManagementService for ManagementServiceImpl {
type GetSplitTunnelProcessesStream = UnboundedReceiverStream<Result<i32, Status>>;
type EventsListenStream = EventsListenerReceiver;
// Control and get the tunnel state
//
async fn connect_tunnel(&self, _: Request<()>) -> ServiceResult<bool> {
log::debug!("connect_tunnel");
let (tx, rx) = oneshot::channel();
self.send_command_to_daemon(DaemonCommand::SetTargetState(tx, TargetState::Secured))?;
let connect_issued = self.wait_for_result(rx).await?;
Ok(Response::new(connect_issued))
}
async fn disconnect_tunnel(&self, _: Request<()>) -> ServiceResult<bool> {
log::debug!("disconnect_tunnel");
let (tx, rx) = oneshot::channel();
self.send_command_to_daemon(DaemonCommand::SetTargetState(tx, TargetState::Unsecured))?;
let disconnect_issued = self.wait_for_result(rx).await?;
Ok(Response::new(disconnect_issued))
}
async fn reconnect_tunnel(&self, _: Request<()>) -> ServiceResult<bool> {
log::debug!("reconnect_tunnel");
let (tx, rx) = oneshot::channel();
self.send_command_to_daemon(DaemonCommand::Reconnect(tx))?;
let reconnect_issued = self.wait_for_result(rx).await?;
Ok(Response::new(reconnect_issued))
}
async fn get_tunnel_state(&self, _: Request<()>) -> ServiceResult<types::TunnelState> {
log::debug!("get_tunnel_state");
let (tx, rx) = oneshot::channel();
self.send_command_to_daemon(DaemonCommand::GetState(tx))?;
let state = self.wait_for_result(rx).await?;
Ok(Response::new(types::TunnelState::from(state)))
}
// Control the daemon and receive events
//
async fn events_listen(&self, _: Request<()>) -> ServiceResult<Self::EventsListenStream> {
let (tx, rx) = tokio::sync::mpsc::unbounded_channel();
let mut subscriptions = self.subscriptions.lock().unwrap();
subscriptions.push(tx);
Ok(Response::new(UnboundedReceiverStream::new(rx)))
}
async fn prepare_restart(&self, _: Request<()>) -> ServiceResult<()> {
log::debug!("prepare_restart");
self.send_command_to_daemon(DaemonCommand::PrepareRestart)?;
Ok(Response::new(()))
}
async fn factory_reset(&self, _: Request<()>) -> ServiceResult<()> {
#[cfg(not(target_os = "android"))]
{
log::debug!("factory_reset");
let (tx, rx) = oneshot::channel();
self.send_command_to_daemon(DaemonCommand::FactoryReset(tx))?;
self.wait_for_result(rx)
.await?
.map(Response::new)
.map_err(map_daemon_error)
}
#[cfg(target_os = "android")]
{
Ok(Response::new(()))
}
}
async fn get_current_version(&self, _: Request<()>) -> ServiceResult<String> {
log::debug!("get_current_version");
let (tx, rx) = oneshot::channel();
self.send_command_to_daemon(DaemonCommand::GetCurrentVersion(tx))?;
let version = self.wait_for_result(rx).await?;
Ok(Response::new(version))
}
async fn get_version_info(&self, _: Request<()>) -> ServiceResult<types::AppVersionInfo> {
log::debug!("get_version_info");
let (tx, rx) = oneshot::channel();
self.send_command_to_daemon(DaemonCommand::GetVersionInfo(tx))?;
self.wait_for_result(rx)
.await?
.ok_or_else(|| Status::not_found("no version cache"))
.map(types::AppVersionInfo::from)
.map(Response::new)
}
async fn is_performing_post_upgrade(&self, _: Request<()>) -> ServiceResult<bool> {
log::debug!("is_performing_post_upgrade");
let (tx, rx) = oneshot::channel();
self.send_command_to_daemon(DaemonCommand::IsPerformingPostUpgrade(tx))?;
Ok(Response::new(self.wait_for_result(rx).await?))
}
// Relays and tunnel constraints
//
async fn update_relay_locations(&self, _: Request<()>) -> ServiceResult<()> {
log::debug!("update_relay_locations");
self.send_command_to_daemon(DaemonCommand::UpdateRelayLocations)?;
Ok(Response::new(()))
}
async fn set_relay_settings(
&self,
request: Request<types::RelaySettings>,
) -> ServiceResult<()> {
log::debug!("set_relay_settings");
let (tx, rx) = oneshot::channel();
let constraints_update =
RelaySettings::try_from(request.into_inner()).map_err(map_protobuf_type_err)?;
let message = DaemonCommand::SetRelaySettings(tx, constraints_update);
self.send_command_to_daemon(message)?;
self.wait_for_result(rx).await??;
Ok(Response::new(()))
}
async fn get_relay_locations(&self, _: Request<()>) -> ServiceResult<types::RelayList> {
log::debug!("get_relay_locations");
let (tx, rx) = oneshot::channel();
self.send_command_to_daemon(DaemonCommand::GetRelayLocations(tx))?;
self.wait_for_result(rx)
.await
.map(|relays| Response::new(types::RelayList::from(relays)))
}
async fn set_bridge_settings(
&self,
request: Request<types::BridgeSettings>,
) -> ServiceResult<()> {
let settings =
BridgeSettings::try_from(request.into_inner()).map_err(map_protobuf_type_err)?;
log::debug!("set_bridge_settings({:?})", settings);
let (tx, rx) = oneshot::channel();
self.send_command_to_daemon(DaemonCommand::SetBridgeSettings(tx, settings))?;
self.wait_for_result(rx).await?.map_err(map_daemon_error)?;
Ok(Response::new(()))
}
async fn set_obfuscation_settings(
&self,
request: Request<types::ObfuscationSettings>,
) -> ServiceResult<()> {
let settings =
ObfuscationSettings::try_from(request.into_inner()).map_err(map_protobuf_type_err)?;
log::debug!("set_obfuscation_settings({:?})", settings);
let (tx, rx) = oneshot::channel();
self.send_command_to_daemon(DaemonCommand::SetObfuscationSettings(tx, settings))?;
self.wait_for_result(rx).await??;
Ok(Response::new(()))
}
async fn set_bridge_state(&self, request: Request<types::BridgeState>) -> ServiceResult<()> {
let bridge_state =
BridgeState::try_from(request.into_inner()).map_err(map_protobuf_type_err)?;
log::debug!("set_bridge_state({:?})", bridge_state);
let (tx, rx) = oneshot::channel();
self.send_command_to_daemon(DaemonCommand::SetBridgeState(tx, bridge_state))?;
self.wait_for_result(rx).await??;
Ok(Response::new(()))
}
// Settings
//
async fn get_settings(&self, _: Request<()>) -> ServiceResult<types::Settings> {
log::debug!("get_settings");
let (tx, rx) = oneshot::channel();
self.send_command_to_daemon(DaemonCommand::GetSettings(tx))?;
self.wait_for_result(rx)
.await
.map(|settings| Response::new(types::Settings::from(&settings)))
}
async fn set_allow_lan(&self, request: Request<bool>) -> ServiceResult<()> {
let allow_lan = request.into_inner();
log::debug!("set_allow_lan({})", allow_lan);
let (tx, rx) = oneshot::channel();
self.send_command_to_daemon(DaemonCommand::SetAllowLan(tx, allow_lan))?;
self.wait_for_result(rx).await??;
Ok(Response::new(()))
}
async fn set_show_beta_releases(&self, request: Request<bool>) -> ServiceResult<()> {
let enabled = request.into_inner();
log::debug!("set_show_beta_releases({})", enabled);
let (tx, rx) = oneshot::channel();
self.send_command_to_daemon(DaemonCommand::SetShowBetaReleases(tx, enabled))?;
self.wait_for_result(rx).await??;
Ok(Response::new(()))
}
async fn set_block_when_disconnected(&self, request: Request<bool>) -> ServiceResult<()> {
let block_when_disconnected = request.into_inner();
log::debug!("set_block_when_disconnected({})", block_when_disconnected);
let (tx, rx) = oneshot::channel();
self.send_command_to_daemon(DaemonCommand::SetBlockWhenDisconnected(
tx,
block_when_disconnected,
))?;
self.wait_for_result(rx).await??;
Ok(Response::new(()))
}
async fn set_auto_connect(&self, request: Request<bool>) -> ServiceResult<()> {
let auto_connect = request.into_inner();
log::debug!("set_auto_connect({})", auto_connect);
let (tx, rx) = oneshot::channel();
self.send_command_to_daemon(DaemonCommand::SetAutoConnect(tx, auto_connect))?;
self.wait_for_result(rx).await??;
Ok(Response::new(()))
}
async fn set_openvpn_mssfix(&self, request: Request<u32>) -> ServiceResult<()> {
let mssfix = request.into_inner();
let mssfix = if mssfix != 0 {
Some(mssfix as u16)
} else {
None
};
log::debug!("set_openvpn_mssfix({:?})", mssfix);
let (tx, rx) = oneshot::channel();
self.send_command_to_daemon(DaemonCommand::SetOpenVpnMssfix(tx, mssfix))?;
self.wait_for_result(rx).await??;
Ok(Response::new(()))
}
async fn set_wireguard_mtu(&self, request: Request<u32>) -> ServiceResult<()> {
let mtu = request.into_inner();
let mtu = if mtu != 0 { Some(mtu as u16) } else { None };
log::debug!("set_wireguard_mtu({:?})", mtu);
let (tx, rx) = oneshot::channel();
self.send_command_to_daemon(DaemonCommand::SetWireguardMtu(tx, mtu))?;
self.wait_for_result(rx).await??;
Ok(Response::new(()))
}
async fn set_enable_ipv6(&self, request: Request<bool>) -> ServiceResult<()> {
let enable_ipv6 = request.into_inner();
log::debug!("set_enable_ipv6({})", enable_ipv6);
let (tx, rx) = oneshot::channel();
self.send_command_to_daemon(DaemonCommand::SetEnableIpv6(tx, enable_ipv6))?;
self.wait_for_result(rx).await??;
Ok(Response::new(()))
}
async fn set_quantum_resistant_tunnel(
&self,
request: Request<types::QuantumResistantState>,
) -> ServiceResult<()> {
let state = mullvad_types::wireguard::QuantumResistantState::try_from(request.into_inner())
.map_err(map_protobuf_type_err)?;
log::debug!("set_quantum_resistant_tunnel({state:?})");
let (tx, rx) = oneshot::channel();
self.send_command_to_daemon(DaemonCommand::SetQuantumResistantTunnel(tx, state))?;
self.wait_for_result(rx).await??;
Ok(Response::new(()))
}
#[cfg(not(target_os = "android"))]
async fn set_dns_options(&self, request: Request<types::DnsOptions>) -> ServiceResult<()> {
let options = DnsOptions::try_from(request.into_inner()).map_err(map_protobuf_type_err)?;
log::debug!("set_dns_options({:?})", options);
let (tx, rx) = oneshot::channel();
self.send_command_to_daemon(DaemonCommand::SetDnsOptions(tx, options))?;
self.wait_for_result(rx).await??;
Ok(Response::new(()))
}
#[cfg(target_os = "android")]
async fn set_dns_options(&self, _: Request<types::DnsOptions>) -> ServiceResult<()> {
Ok(Response::new(()))
}
async fn set_relay_override(
&self,
request: Request<types::RelayOverride>,
) -> ServiceResult<()> {
let relay_override =
RelayOverride::try_from(request.into_inner()).map_err(map_protobuf_type_err)?;
log::debug!("set_relay_override");
let (tx, rx) = oneshot::channel();
self.send_command_to_daemon(DaemonCommand::SetRelayOverride(tx, relay_override))?;
self.wait_for_result(rx).await??;
Ok(Response::new(()))
}
async fn clear_all_relay_overrides(&self, _: Request<()>) -> ServiceResult<()> {
log::debug!("clear_all_relay_overrides");
let (tx, rx) = oneshot::channel();
self.send_command_to_daemon(DaemonCommand::ClearAllRelayOverrides(tx))?;
self.wait_for_result(rx).await??;
Ok(Response::new(()))
}
// Account management
//
async fn create_new_account(&self, _: Request<()>) -> ServiceResult<String> {
log::debug!("create_new_account");
let (tx, rx) = oneshot::channel();
self.send_command_to_daemon(DaemonCommand::CreateNewAccount(tx))?;
self.wait_for_result(rx)
.await?
.map(Response::new)
.map_err(map_daemon_error)
}
async fn login_account(&self, request: Request<AccountToken>) -> ServiceResult<()> {
log::debug!("login_account");
let account_token = request.into_inner();
let (tx, rx) = oneshot::channel();
self.send_command_to_daemon(DaemonCommand::LoginAccount(tx, account_token))?;
self.wait_for_result(rx)
.await?
.map(Response::new)
.map_err(map_daemon_error)
}
async fn logout_account(&self, _: Request<()>) -> ServiceResult<()> {
log::debug!("logout_account");
let (tx, rx) = oneshot::channel();
self.send_command_to_daemon(DaemonCommand::LogoutAccount(tx))?;
self.wait_for_result(rx)
.await?
.map(Response::new)
.map_err(map_daemon_error)
}
async fn get_account_data(
&self,
request: Request<AccountToken>,
) -> ServiceResult<types::AccountData> {
log::debug!("get_account_data");
let account_token = request.into_inner();
let (tx, rx) = oneshot::channel();
self.send_command_to_daemon(DaemonCommand::GetAccountData(tx, account_token))?;
let result = self.wait_for_result(rx).await?;
result
.map(|account_data| Response::new(types::AccountData::from(account_data)))
.map_err(|error: RestError| {
log::error!(
"Unable to get account data from API: {}",
error.display_chain()
);
map_rest_error(&error)
})
}
async fn get_account_history(&self, _: Request<()>) -> ServiceResult<types::AccountHistory> {
log::debug!("get_account_history");
let (tx, rx) = oneshot::channel();
self.send_command_to_daemon(DaemonCommand::GetAccountHistory(tx))?;
self.wait_for_result(rx)
.await
.map(|history| Response::new(types::AccountHistory { token: history }))
}
async fn clear_account_history(&self, _: Request<()>) -> ServiceResult<()> {
log::debug!("clear_account_history");
let (tx, rx) = oneshot::channel();
self.send_command_to_daemon(DaemonCommand::ClearAccountHistory(tx))?;
self.wait_for_result(rx)
.await?
.map(Response::new)
.map_err(map_daemon_error)
}
async fn get_www_auth_token(&self, _: Request<()>) -> ServiceResult<String> {
log::debug!("get_www_auth_token");
let (tx, rx) = oneshot::channel();
self.send_command_to_daemon(DaemonCommand::GetWwwAuthToken(tx))?;
let result = self.wait_for_result(rx).await?;
result.map(Response::new).map_err(|error| {
log::error!(
"Unable to get account data from API: {}",
error.display_chain()
);
map_daemon_error(error)
})
}
async fn submit_voucher(
&self,
request: Request<String>,
) -> ServiceResult<types::VoucherSubmission> {
log::debug!("submit_voucher");
let voucher = request.into_inner();
let (tx, rx) = oneshot::channel();
self.send_command_to_daemon(DaemonCommand::SubmitVoucher(tx, voucher))?;
let result = self.wait_for_result(rx).await?;
result
.map(|submission| Response::new(types::VoucherSubmission::from(submission)))
.map_err(map_daemon_error)
}
// Device management
async fn get_device(&self, _: Request<()>) -> ServiceResult<types::DeviceState> {
log::debug!("get_device");
let (tx, rx) = oneshot::channel();
self.send_command_to_daemon(DaemonCommand::GetDevice(tx))?;
let device = self.wait_for_result(rx).await?.map_err(map_daemon_error)?;
Ok(Response::new(types::DeviceState::from(device)))
}
async fn update_device(&self, _: Request<()>) -> ServiceResult<()> {
log::debug!("update_device");
let (tx, rx) = oneshot::channel();
self.send_command_to_daemon(DaemonCommand::UpdateDevice(tx))?;
self.wait_for_result(rx)
.await?
.map_err(map_daemon_error)
.map(Response::new)
}
async fn list_devices(
&self,
request: Request<AccountToken>,
) -> ServiceResult<types::DeviceList> {
log::debug!("list_devices");
let (tx, rx) = oneshot::channel();
let token = request.into_inner();
self.send_command_to_daemon(DaemonCommand::ListDevices(tx, token))?;
let device = self.wait_for_result(rx).await?.map_err(map_daemon_error)?;
Ok(Response::new(types::DeviceList::from(device)))
}
async fn remove_device(&self, request: Request<types::DeviceRemoval>) -> ServiceResult<()> {
log::debug!("remove_device");
let (tx, rx) = oneshot::channel();
let removal = request.into_inner();
self.send_command_to_daemon(DaemonCommand::RemoveDevice(
tx,
removal.account_token,
removal.device_id,
))?;
self.wait_for_result(rx).await?.map_err(map_daemon_error)?;
Ok(Response::new(()))
}
// WireGuard key management
//
async fn set_wireguard_rotation_interval(
&self,
request: Request<types::Duration>,
) -> ServiceResult<()> {
let interval: RotationInterval = Duration::try_from(request.into_inner())
.map_err(|_| Status::invalid_argument("unexpected negative rotation interval"))?
.try_into()
.map_err(|error: RotationIntervalError| {
Status::invalid_argument(error.display_chain())
})?;
log::debug!("set_wireguard_rotation_interval({:?})", interval);
let (tx, rx) = oneshot::channel();
self.send_command_to_daemon(DaemonCommand::SetWireguardRotationInterval(
tx,
Some(interval),
))?;
self.wait_for_result(rx).await??;
Ok(Response::new(()))
}
async fn reset_wireguard_rotation_interval(&self, _: Request<()>) -> ServiceResult<()> {
log::debug!("reset_wireguard_rotation_interval");
let (tx, rx) = oneshot::channel();
self.send_command_to_daemon(DaemonCommand::SetWireguardRotationInterval(tx, None))?;
self.wait_for_result(rx).await??;
Ok(Response::new(()))
}
async fn rotate_wireguard_key(&self, _: Request<()>) -> ServiceResult<()> {
log::debug!("rotate_wireguard_key");
let (tx, rx) = oneshot::channel();
self.send_command_to_daemon(DaemonCommand::RotateWireguardKey(tx))?;
self.wait_for_result(rx)
.await?
.map(Response::new)
.map_err(map_daemon_error)
}
async fn get_wireguard_key(&self, _: Request<()>) -> ServiceResult<types::PublicKey> {
log::debug!("get_wireguard_key");
let (tx, rx) = oneshot::channel();
self.send_command_to_daemon(DaemonCommand::GetWireguardKey(tx))?;
let key = self.wait_for_result(rx).await?.map_err(map_daemon_error)?;
match key {
Some(key) => Ok(Response::new(types::PublicKey::from(key))),
None => Err(Status::not_found("no WireGuard key was found")),
}
}
// Custom lists
//
async fn create_custom_list(&self, request: Request<String>) -> ServiceResult<String> {
log::debug!("create_custom_list");
let (tx, rx) = oneshot::channel();
self.send_command_to_daemon(DaemonCommand::CreateCustomList(tx, request.into_inner()))?;
self.wait_for_result(rx)
.await?
.map(|response| Response::new(response.to_string()))
.map_err(map_daemon_error)
}
async fn delete_custom_list(&self, request: Request<String>) -> ServiceResult<()> {
log::debug!("delete_custom_list");
let (tx, rx) = oneshot::channel();
self.send_command_to_daemon(DaemonCommand::DeleteCustomList(
tx,
mullvad_types::custom_list::Id::from_str(&request.into_inner())
.map_err(|_| Status::invalid_argument("invalid ID"))?,
))?;
self.wait_for_result(rx)
.await?
.map(Response::new)
.map_err(map_daemon_error)
}
async fn update_custom_list(&self, request: Request<types::CustomList>) -> ServiceResult<()> {
log::debug!("update_custom_list");
let custom_list = mullvad_types::custom_list::CustomList::try_from(request.into_inner())?;
let (tx, rx) = oneshot::channel();
self.send_command_to_daemon(DaemonCommand::UpdateCustomList(tx, custom_list))?;
self.wait_for_result(rx)
.await?
.map(Response::new)
.map_err(map_daemon_error)
}
// Access Methods
async fn add_api_access_method(
&self,
request: Request<types::NewAccessMethodSetting>,
) -> ServiceResult<types::Uuid> {
log::debug!("add_api_access_method");
let request = request.into_inner();
let (tx, rx) = oneshot::channel();
self.send_command_to_daemon(DaemonCommand::AddApiAccessMethod(
tx,
request.name,
request.enabled,
request
.access_method
.ok_or(Status::invalid_argument("Could not find access method"))
.map(mullvad_types::access_method::AccessMethod::try_from)??,
))?;
self.wait_for_result(rx)
.await?
.map(types::Uuid::from)
.map(Response::new)
.map_err(map_daemon_error)
}
async fn remove_api_access_method(&self, request: Request<types::Uuid>) -> ServiceResult<()> {
log::debug!("remove_api_access_method");
let api_access_method = mullvad_types::access_method::Id::try_from(request.into_inner())?;
let (tx, rx) = oneshot::channel();
self.send_command_to_daemon(DaemonCommand::RemoveApiAccessMethod(tx, api_access_method))?;
self.wait_for_result(rx)
.await?
.map(Response::new)
.map_err(map_daemon_error)
}
async fn set_api_access_method(&self, request: Request<types::Uuid>) -> ServiceResult<()> {
log::debug!("set_api_access_method");
let api_access_method = mullvad_types::access_method::Id::try_from(request.into_inner())?;
let (tx, rx) = oneshot::channel();
self.send_command_to_daemon(DaemonCommand::SetApiAccessMethod(tx, api_access_method))?;
self.wait_for_result(rx)
.await?
.map(Response::new)
.map_err(map_daemon_error)
}
async fn update_api_access_method(
&self,
request: Request<types::AccessMethodSetting>,
) -> ServiceResult<()> {
log::debug!("update_api_access_method");
let access_method_update =
mullvad_types::access_method::AccessMethodSetting::try_from(request.into_inner())?;
let (tx, rx) = oneshot::channel();
self.send_command_to_daemon(DaemonCommand::UpdateApiAccessMethod(
tx,
access_method_update,
))?;
self.wait_for_result(rx)
.await?
.map(Response::new)
.map_err(map_daemon_error)
}
/// Return the [`types::AccessMethodSetting`] which the daemon is using to
/// connect to the Mullvad API.
async fn get_current_api_access_method(
&self,
_: Request<()>,
) -> ServiceResult<types::AccessMethodSetting> {
log::debug!("get_current_api_access_method");
let (tx, rx) = oneshot::channel();
self.send_command_to_daemon(DaemonCommand::GetCurrentAccessMethod(tx))?;
self.wait_for_result(rx)
.await?
.map(types::AccessMethodSetting::from)
.map(Response::new)
.map_err(map_daemon_error)
}
async fn test_custom_api_access_method(
&self,
config: Request<types::CustomProxy>,
) -> ServiceResult<bool> {
log::debug!("test_custom_api_access_method");
let (tx, rx) = oneshot::channel();
let proxy = talpid_types::net::proxy::CustomProxy::try_from(config.into_inner())?;
self.send_command_to_daemon(DaemonCommand::TestCustomApiAccessMethod(tx, proxy))?;
self.wait_for_result(rx)
.await?
.map(Response::new)
.map_err(map_daemon_error)
}
async fn test_api_access_method_by_id(
&self,
request: Request<types::Uuid>,
) -> ServiceResult<bool> {
log::debug!("test_api_access_method_by_id");
let (tx, rx) = oneshot::channel();
let api_access_method = mullvad_types::access_method::Id::try_from(request.into_inner())?;
self.send_command_to_daemon(DaemonCommand::TestApiAccessMethodById(
tx,
api_access_method,
))?;
self.wait_for_result(rx)
.await?
.map(Response::new)
.map_err(map_daemon_error)
}
// Split tunneling
//
async fn get_split_tunnel_processes(
&self,
_: Request<()>,
) -> ServiceResult<Self::GetSplitTunnelProcessesStream> {
#[cfg(target_os = "linux")]
{
log::debug!("get_split_tunnel_processes");
let (tx, rx) = oneshot::channel();
self.send_command_to_daemon(DaemonCommand::GetSplitTunnelProcesses(tx))?;
let pids = self
.wait_for_result(rx)
.await?
.map_err(|error| Status::failed_precondition(error.to_string()))?;
let (tx, rx) = tokio::sync::mpsc::unbounded_channel();
tokio::spawn(async move {
for pid in pids {
let _ = tx.send(Ok(pid));
}
});
Ok(Response::new(UnboundedReceiverStream::new(rx)))
}
#[cfg(not(target_os = "linux"))]
{
let (_, rx) = tokio::sync::mpsc::unbounded_channel();
Ok(Response::new(UnboundedReceiverStream::new(rx)))
}
}
#[cfg(target_os = "linux")]
async fn add_split_tunnel_process(&self, request: Request<i32>) -> ServiceResult<()> {
let pid = request.into_inner();
log::debug!("add_split_tunnel_process");
let (tx, rx) = oneshot::channel();
self.send_command_to_daemon(DaemonCommand::AddSplitTunnelProcess(tx, pid))?;
self.wait_for_result(rx)
.await?
.map_err(|error| Status::failed_precondition(error.to_string()))?;
Ok(Response::new(()))
}
#[cfg(not(target_os = "linux"))]
async fn add_split_tunnel_process(&self, _: Request<i32>) -> ServiceResult<()> {
Ok(Response::new(()))
}
#[cfg(target_os = "linux")]
async fn remove_split_tunnel_process(&self, request: Request<i32>) -> ServiceResult<()> {
let pid = request.into_inner();
log::debug!("remove_split_tunnel_process");
let (tx, rx) = oneshot::channel();
self.send_command_to_daemon(DaemonCommand::RemoveSplitTunnelProcess(tx, pid))?;
self.wait_for_result(rx)
.await?
.map_err(|error| Status::failed_precondition(error.to_string()))?;
Ok(Response::new(()))
}
#[cfg(not(target_os = "linux"))]
async fn remove_split_tunnel_process(&self, _: Request<i32>) -> ServiceResult<()> {
Ok(Response::new(()))
}
async fn clear_split_tunnel_processes(&self, _: Request<()>) -> ServiceResult<()> {
#[cfg(target_os = "linux")]
{
log::debug!("clear_split_tunnel_processes");
let (tx, rx) = oneshot::channel();
self.send_command_to_daemon(DaemonCommand::ClearSplitTunnelProcesses(tx))?;
self.wait_for_result(rx)
.await?
.map_err(|error| Status::failed_precondition(error.to_string()))?;
Ok(Response::new(()))
}
#[cfg(not(target_os = "linux"))]
{
Ok(Response::new(()))
}
}
#[cfg(windows)]
async fn add_split_tunnel_app(&self, request: Request<String>) -> ServiceResult<()> {
log::debug!("add_split_tunnel_app");
let path = PathBuf::from(request.into_inner());
let (tx, rx) = oneshot::channel();
self.send_command_to_daemon(DaemonCommand::AddSplitTunnelApp(tx, path))?;
self.wait_for_result(rx)
.await?
.map_err(map_daemon_error)
.map(Response::new)
}
#[cfg(not(windows))]
async fn add_split_tunnel_app(&self, _: Request<String>) -> ServiceResult<()> {
Ok(Response::new(()))
}
#[cfg(windows)]
async fn remove_split_tunnel_app(&self, request: Request<String>) -> ServiceResult<()> {
log::debug!("remove_split_tunnel_app");
let path = PathBuf::from(request.into_inner());
let (tx, rx) = oneshot::channel();
self.send_command_to_daemon(DaemonCommand::RemoveSplitTunnelApp(tx, path))?;
self.wait_for_result(rx)
.await?
.map_err(map_daemon_error)
.map(Response::new)
}
#[cfg(not(windows))]
async fn remove_split_tunnel_app(&self, _: Request<String>) -> ServiceResult<()> {
Ok(Response::new(()))
}
#[cfg(windows)]
async fn clear_split_tunnel_apps(&self, _: Request<()>) -> ServiceResult<()> {
log::debug!("clear_split_tunnel_apps");
let (tx, rx) = oneshot::channel();
self.send_command_to_daemon(DaemonCommand::ClearSplitTunnelApps(tx))?;
self.wait_for_result(rx)
.await?
.map_err(map_daemon_error)
.map(Response::new)
}
#[cfg(not(windows))]
async fn clear_split_tunnel_apps(&self, _: Request<()>) -> ServiceResult<()> {
Ok(Response::new(()))
}
#[cfg(windows)]
async fn set_split_tunnel_state(&self, request: Request<bool>) -> ServiceResult<()> {
log::debug!("set_split_tunnel_state");
let enabled = request.into_inner();
let (tx, rx) = oneshot::channel();
self.send_command_to_daemon(DaemonCommand::SetSplitTunnelState(tx, enabled))?;
self.wait_for_result(rx)
.await?
.map_err(map_daemon_error)
.map(Response::new)
}
#[cfg(not(windows))]
async fn set_split_tunnel_state(&self, _: Request<bool>) -> ServiceResult<()> {
Ok(Response::new(()))
}
#[cfg(windows)]
async fn get_excluded_processes(
&self,
_: Request<()>,
) -> ServiceResult<types::ExcludedProcessList> {
log::debug!("get_excluded_processes");
let (tx, rx) = oneshot::channel();
self.send_command_to_daemon(DaemonCommand::GetSplitTunnelProcesses(tx))?;
self.wait_for_result(rx)
.await?
.map_err(map_split_tunnel_error)
.map(|processes| {
Response::new(types::ExcludedProcessList {
processes: processes
.into_iter()
.map(types::ExcludedProcess::from)
.collect(),
})
})
}
#[cfg(not(windows))]
async fn get_excluded_processes(
&self,
_: Request<()>,
) -> ServiceResult<types::ExcludedProcessList> {
Ok(Response::new(types::ExcludedProcessList {
processes: vec![],
}))
}
#[cfg(windows)]
async fn check_volumes(&self, _: Request<()>) -> ServiceResult<()> {
log::debug!("check_volumes");
let (tx, rx) = oneshot::channel();
self.send_command_to_daemon(DaemonCommand::CheckVolumes(tx))?;
self.wait_for_result(rx)
.await?
.map_err(map_daemon_error)
.map(Response::new)
}
#[cfg(not(windows))]
async fn check_volumes(&self, _: Request<()>) -> ServiceResult<()> {
Ok(Response::new(()))
}
async fn apply_json_settings(&self, blob: Request<String>) -> ServiceResult<()> {
log::debug!("apply_json_settings");
let (tx, rx) = oneshot::channel();
self.send_command_to_daemon(DaemonCommand::ApplyJsonSettings(tx, blob.into_inner()))?;
self.wait_for_result(rx).await??;
Ok(Response::new(()))
}
async fn export_json_settings(&self, _: Request<()>) -> ServiceResult<String> {
log::debug!("export_json_settings");
let (tx, rx) = oneshot::channel();
self.send_command_to_daemon(DaemonCommand::ExportJsonSettings(tx))?;
let blob = self.wait_for_result(rx).await??;
Ok(Response::new(blob))
}
}
impl ManagementServiceImpl {
/// Sends a command to the daemon and maps the error to an RPC error.
fn send_command_to_daemon(&self, command: DaemonCommand) -> Result<(), Status> {
self.daemon_tx
.send(command)
.map_err(|_| Status::internal("the daemon channel receiver has been dropped"))
}
async fn wait_for_result<T>(&self, rx: oneshot::Receiver<T>) -> Result<T, Status> {
rx.await.map_err(|_| Status::internal("sender was dropped"))
}
}
pub struct ManagementInterfaceServer(());
impl ManagementInterfaceServer {
pub fn start(
tunnel_tx: DaemonCommandSender,
) -> Result<(String, ManagementInterfaceEventBroadcaster), Error> {
let subscriptions = Arc::<Mutex<Vec<EventsListenerSender>>>::default();
let socket_path = mullvad_paths::get_rpc_socket_path()
.to_string_lossy()
.to_string();
let (server_abort_tx, server_abort_rx) = mpsc::channel(0);
let server = ManagementServiceImpl {
daemon_tx: tunnel_tx,
subscriptions: subscriptions.clone(),
};
let join_handle = mullvad_management_interface::spawn_rpc_server(server, async move {
server_abort_rx.into_future().await;
})
.map_err(Error::SetupError)?;
tokio::spawn(async move {
if let Err(error) = join_handle.await {
log::error!("Management server panic: {}", error);
}
log::info!("Management interface shut down");
});
Ok((
socket_path,
ManagementInterfaceEventBroadcaster {
subscriptions,
_close_handle: server_abort_tx,
},
))
}
}
/// A handle that allows broadcasting messages to all subscribers of the management interface.
#[derive(Clone)]
pub struct ManagementInterfaceEventBroadcaster {
subscriptions: Arc<Mutex<Vec<EventsListenerSender>>>,
_close_handle: mpsc::Sender<()>,
}
impl EventListener for ManagementInterfaceEventBroadcaster {
/// Sends a new state update to all `new_state` subscribers of the management interface.
fn notify_new_state(&self, new_state: TunnelState) {
self.notify(types::DaemonEvent {
event: Some(daemon_event::Event::TunnelState(types::TunnelState::from(
new_state,
))),
})
}
/// Sends settings to all `settings` subscribers of the management interface.
fn notify_settings(&self, settings: Settings) {
log::debug!("Broadcasting new settings");
self.notify(types::DaemonEvent {
event: Some(daemon_event::Event::Settings(types::Settings::from(
&settings,
))),
})
}