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
use_prelude!();
use std::{
any::Any,
collections::{HashMap, HashSet},
path::PathBuf,
sync::Arc,
};
use ffi_sdk::BoxedDitto;
use crate::error::{DittoError, ErrorKind};
pub(crate) mod peers_observer;
pub(crate) mod presence_manager_v2;
#[derive(Clone, Debug, Default, PartialEq, Eq)]
pub struct TransportConfig {
pub peer_to_peer: PeerToPeer,
pub connect: Connect,
pub listen: Listen,
pub global: Global,
}
impl TransportConfig {
pub fn new() -> Self {
Self {
peer_to_peer: PeerToPeer {
bluetooth_le: BluetoothConfig::new(),
lan: LanConfig::new(),
},
connect: Connect {
tcp_servers: HashSet::new(),
websocket_urls: HashSet::new(),
},
listen: Listen {
tcp: TcpListenConfig::new(),
http: HttpListenConfig::new(),
},
global: Global { sync_group: 0 },
}
}
pub fn enable_all_peer_to_peer(&mut self) {
self.peer_to_peer.bluetooth_le.enabled = true;
self.peer_to_peer.lan.enabled = true;
}
}
#[derive(Clone, Debug, Default, PartialEq, Eq)]
pub struct PeerToPeer {
pub bluetooth_le: BluetoothConfig,
pub lan: LanConfig,
}
#[derive(Clone, Debug, Default, PartialEq, Eq)]
pub struct Connect {
pub tcp_servers: HashSet<String>,
pub websocket_urls: HashSet<String>,
}
#[derive(Clone, Debug, Default, PartialEq, Eq)]
pub struct Listen {
pub tcp: TcpListenConfig,
pub http: HttpListenConfig,
}
#[derive(Clone, Debug, Default, PartialEq, Eq)]
pub struct Global {
pub sync_group: u32,
}
#[derive(Clone, Debug, Default, PartialEq, Eq)]
pub struct HttpListenConfig {
pub enabled: bool,
pub interface_ip: String,
pub port: u16,
pub static_content_path: Option<PathBuf>,
pub websocket_sync: bool,
pub tls_key_path: Option<PathBuf>,
pub tls_certificate_path: Option<PathBuf>,
}
impl HttpListenConfig {
pub fn new() -> Self {
Self {
enabled: false,
interface_ip: "[::]".to_string(),
port: 80,
static_content_path: None,
websocket_sync: true,
tls_key_path: None,
tls_certificate_path: None,
}
}
}
#[derive(Clone, Debug, Default, PartialEq, Eq)]
pub struct TcpListenConfig {
pub enabled: bool,
pub interface_ip: String,
pub port: u16,
}
impl TcpListenConfig {
pub fn new() -> Self {
Self {
enabled: false,
interface_ip: "[::]".to_string(),
port: 4040,
}
}
}
#[derive(Clone, Debug, Default, PartialEq, Eq)]
pub struct BluetoothConfig {
pub enabled: bool,
}
impl BluetoothConfig {
pub fn new() -> Self {
Self { enabled: false }
}
}
#[derive(Clone, Debug, Default, PartialEq, Eq)]
pub struct LanConfig {
pub enabled: bool,
pub multicast_enabled: bool,
}
impl LanConfig {
pub fn new() -> Self {
Self {
enabled: false,
multicast_enabled: true,
}
}
}
pub struct Transports {
ditto: Arc<BoxedDitto>,
config: TransportConfig,
sync_active: bool,
web_identity_valid: bool,
x509_identity_valid: bool,
tcp_clients: HashMap<String, Box<dyn Any + Send + Sync>>,
ws_clients: HashMap<String, Box<dyn Any + Send + Sync>>,
ble_client_transport: Option<Box<dyn Any + Send + Sync>>,
ble_server_transport: Option<Box<dyn Any + Send + Sync>>,
}
impl Transports {
pub(crate) fn from_config(config: TransportConfig, ditto: Arc<BoxedDitto>) -> Transports {
let t = Transports {
ditto,
config,
sync_active: false,
web_identity_valid: false,
x509_identity_valid: false,
tcp_clients: HashMap::with_capacity(0),
ws_clients: HashMap::with_capacity(0),
ble_client_transport: None,
ble_server_transport: None,
};
t.apply_transport_global_config(&t.config.global, &TransportConfig::new().global);
t
}
pub(crate) fn try_start_sync(&mut self) -> Result<(), DittoError> {
if !self.sync_active {
self.sync_active = true;
let all_disabled = TransportConfig::new();
self.apply_transport_config(&self.config.clone(), &all_disabled);
}
Ok(())
}
pub(crate) fn stop_sync(&mut self) {
if self.sync_active {
self.sync_active = false;
let all_disabled = TransportConfig::new();
self.apply_transport_config(&all_disabled, &self.config.clone());
}
}
pub(crate) fn set_transport_config(&mut self, config: TransportConfig) {
if self.sync_active {
self.apply_transport_config(&config, &self.config.clone());
}
self.apply_transport_global_config(&config.global, &self.config.global);
self.config = config;
}
pub(crate) fn current_config(&self) -> &TransportConfig {
&self.config
}
fn apply_transport_config(&mut self, config: &TransportConfig, old_config: &TransportConfig) {
if config.listen.tcp != old_config.listen.tcp
|| config.peer_to_peer.lan != old_config.peer_to_peer.lan
{
let lan_stops_server = !old_config.listen.tcp.enabled;
self.stop_lan(lan_stops_server);
if config.peer_to_peer.lan.enabled {
let lan_starts_server = !config.listen.tcp.enabled;
self.start_lan(lan_starts_server);
}
}
if config.listen.tcp != old_config.listen.tcp {
self.stop_tcp_listen();
if config.listen.tcp.enabled {
self.start_tcp_listen(&config.listen.tcp);
}
}
if config.listen.http != old_config.listen.http {
self.stop_http_listen();
if config.listen.http.enabled {
let _ = self.start_http_listen(&config.listen.http);
}
}
let tcp_connects_to_stop = old_config
.connect
.tcp_servers
.difference(&config.connect.tcp_servers);
for addr in tcp_connects_to_stop {
self.stop_tcp_connect(addr);
}
let tcp_connects_to_start = config
.connect
.tcp_servers
.difference(&old_config.connect.tcp_servers);
for addr in tcp_connects_to_start {
self.start_tcp_connect(addr.clone());
}
let ws_connects_to_stop = old_config
.connect
.websocket_urls
.difference(&config.connect.websocket_urls);
for url in ws_connects_to_stop {
self.stop_ws_connect(url);
}
let ws_connects_to_start = config
.connect
.websocket_urls
.difference(&old_config.connect.websocket_urls);
for url in ws_connects_to_start {
self.start_ws_connect(url.clone());
}
if config.peer_to_peer.bluetooth_le != old_config.peer_to_peer.bluetooth_le {
self.stop_bluetooth();
if config.peer_to_peer.bluetooth_le.enabled {
self.start_bluetooth();
}
}
}
fn apply_transport_global_config(&self, config: &Global, old_config: &Global) {
if config.sync_group != old_config.sync_group {
unsafe { ffi_sdk::ditto_set_sync_group(&self.ditto, config.sync_group) };
}
}
fn start_tcp_listen(&mut self, config: &crate::transport::TcpListenConfig) {
let bind_ip = format!("{}:{}", config.interface_ip, config.port);
let c_addr = char_p::new(bind_ip);
let _result =
unsafe { ffi_sdk::ditto_start_tcp_server(&self.ditto, Some(c_addr.as_ref())) };
}
fn stop_tcp_listen(&mut self) {
unsafe { ffi_sdk::ditto_stop_tcp_server(&self.ditto) };
}
fn start_http_listen(
&mut self,
config: &crate::transport::HttpListenConfig,
) -> Result<(), DittoError> {
let enable_ws = if config.websocket_sync {
ffi_sdk::WebSocketMode::Enabled
} else {
ffi_sdk::WebSocketMode::Disabled
};
let bind_ip = format!("{}:{}", config.interface_ip, config.port);
let c_addr = char_p::new(bind_ip);
let c_static_path = config
.static_content_path
.as_ref()
.map(|x| char_p::new(x.to_string_lossy().to_string()));
let c_tls_cert_path = config
.tls_certificate_path
.as_ref()
.map(|x| char_p::new(x.to_string_lossy().to_string()));
let c_tls_key_path = config
.tls_key_path
.as_ref()
.map(|x| char_p::new(x.to_string_lossy().to_string()));
let status = unsafe {
ffi_sdk::ditto_start_http_server(
&self.ditto,
Some(c_addr.as_ref()),
c_static_path.as_ref().map(|x| x.as_ref()),
enable_ws,
c_tls_cert_path.as_ref().map(|x| x.as_ref()),
c_tls_key_path.as_ref().map(|x| x.as_ref()),
)
};
if status != 0 {
Err(DittoError::from_ffi(ErrorKind::InvalidInput))
} else {
Ok(())
}
}
fn stop_http_listen(&mut self) {
unsafe { ffi_sdk::ditto_stop_http_server(&self.ditto) };
}
fn start_tcp_connect(&mut self, address: String) {
let addr = char_p::new(address.clone());
let tcp_client_handle =
unsafe { ffi_sdk::ditto_add_static_tcp_client(&self.ditto, addr.as_ref()) };
::log::info!("Static TCP client transport {:?} started", &address);
self.tcp_clients
.insert(address, Box::new(tcp_client_handle));
}
fn stop_tcp_connect(&mut self, address: &str) {
let _ = self.tcp_clients.remove(address);
}
fn start_ws_connect(&mut self, url: String) {
let c_url = char_p::new(url.clone());
let ws_client_handle =
unsafe { ffi_sdk::ditto_add_websocket_client(&self.ditto, c_url.as_ref()) };
::log::info!("Websocket client transport {:?} started", &url);
self.ws_clients.insert(url, Box::new(ws_client_handle));
}
fn stop_ws_connect(&mut self, url: &str) {
let _ = self.ws_clients.remove(url);
}
fn start_bluetooth(&mut self) {
#[cfg(all(target_os = "linux", not(target_env = "musl")))]
{
let ble_client_handle =
unsafe { ffi_sdk::ditto_add_internal_ble_client_transport(&self.ditto) };
::log::info!("BLE client transport started");
self.ble_client_transport = Some(Box::new(ble_client_handle));
let ble_server_handle =
unsafe { ffi_sdk::ditto_add_internal_ble_server_transport(&self.ditto) };
::log::info!("BLE server transport started");
self.ble_server_transport = Some(Box::new(ble_server_handle));
}
::log::info!("handling BLE transport")
}
fn stop_bluetooth(&mut self) {
let _to_drop = self.ble_client_transport.take();
let _to_drop = self.ble_server_transport.take();
}
fn start_lan(&mut self, lan_controls_server: bool) {
unsafe {
if lan_controls_server {
ffi_sdk::ditto_start_tcp_server(&self.ditto, None);
}
ffi_sdk::ditto_add_multicast_transport(&self.ditto);
}
}
fn stop_lan(&mut self, lan_controls_server: bool) {
unsafe {
if lan_controls_server {
ffi_sdk::ditto_stop_tcp_server(&self.ditto);
}
ffi_sdk::ditto_remove_multicast_transport(&self.ditto);
}
}
pub(crate) fn validity_updated(&mut self, web_valid: bool, x509_valid: bool) {
self.apply_validity_changed(
web_valid,
self.web_identity_valid,
x509_valid,
self.x509_identity_valid,
);
self.web_identity_valid = web_valid;
self.x509_identity_valid = x509_valid;
}
fn apply_validity_changed(&mut self, web: bool, old_web: bool, x509: bool, old_x509: bool) {
if web && !old_web {
let urls = self.config.connect.websocket_urls.clone();
for url in urls {
self.start_ws_connect(url);
}
}
if old_web && !web {
log::debug!("Web Auth has become invalid, shutting down WS Transport");
let urls = self.config.connect.websocket_urls.clone();
for url in urls {
self.stop_ws_connect(&url);
}
}
if x509 && !old_x509 {
if self.config.peer_to_peer.bluetooth_le.enabled {
self.start_bluetooth()
}
if self.config.listen.tcp.enabled {
self.start_tcp_listen(&self.config.listen.tcp.clone())
}
let addrs = self.config.connect.tcp_servers.clone();
for addr in addrs {
self.start_tcp_connect(addr)
}
}
if old_x509 && !x509 {
log::debug!("BLE Transport shutting down due to invalid x509 certificate");
self.stop_bluetooth();
log::debug!("TCP Transport shutting down due to invalid x509 certificate");
self.stop_tcp_listen();
let addrs = self.config.connect.tcp_servers.clone();
for addr in addrs {
self.stop_tcp_connect(&addr);
}
}
}
}