Source file p2p_maintenance.ml
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
module Events = P2p_events.P2p_maintainance
type bounds = {
min_threshold : int;
min_target : int;
max_target : int;
max_threshold : int;
}
type config = {
maintenance_idle_time : Time.System.Span.t;
private_mode : bool;
min_connections : int;
max_connections : int;
expected_connections : int;
time_between_looking_for_peers : Ptime.span;
}
type test_config = {
trigger_swap : bool;
trigger_too_few_connections : bool;
trigger_too_many_connections : bool;
}
type ('msg, 'meta, 'meta_conn) t = {
canceler : Lwt_canceler.t;
config : config;
debug_config : test_config option;
bounds : bounds;
pool : ('msg, 'meta, 'meta_conn) P2p_pool.t;
connect_handler : ('msg, 'meta, 'meta_conn) P2p_connect_handler.t;
discovery : P2p_discovery.t option;
just_maintained : unit Lwt_condition.t;
please_maintain : unit Lwt_condition.t;
mutable maintain_worker : unit Lwt.t;
triggers : P2p_trigger.t;
log : P2p_connection.P2p_event.t -> unit;
}
let broadcast_bootstrap_msg t =
P2p_peer.Table.iter
(fun peer_id peer_info ->
match P2p_peer_state.get peer_info with
| Running {data = conn; _} ->
if not (P2p_conn.private_node conn) then (
ignore (P2p_conn.write_bootstrap conn) ;
t.log (Bootstrap_sent {source = peer_id}))
| _ -> ())
(P2p_pool.connected_peer_ids t.pool)
let send_swap_request t =
match P2p_pool.Connection.propose_swap_request t.pool with
| None -> ()
| Some (proposed_point, proposed_peer_id, recipient) ->
let recipient_peer_id = (P2p_conn.info recipient).peer_id in
t.log (Swap_request_sent {source = recipient_peer_id}) ;
ignore
(P2p_conn.write_swap_request recipient proposed_point proposed_peer_id)
let classify pool private_mode start_time seen_points point pi =
let now = Time.System.now () in
if
P2p_point.Set.mem point seen_points
|| P2p_pool.Points.banned pool point
|| (private_mode && not (P2p_point_state.Info.trusted pi))
then `Ignore
else
match P2p_point_state.get pi with
| Disconnected -> (
match P2p_point_state.Info.last_miss pi with
| Some last
when Time.System.(start_time < last)
|| P2p_point_state.Info.cannot_reconnect_yet ~now pi ->
`Seen
| last -> `Candidate last)
| _ -> `Seen
(** [establish t contactable] tries to establish as many connection as possible
with points in [contactable]. It returns the number of established
connections *)
let establish t contactable =
let open Lwt_syntax in
let try_to_connect point =
let+ r =
protect ~canceler:t.canceler (fun () ->
P2p_connect_handler.connect t.connect_handler point)
in
match r with Ok _ -> 1 | Error _ -> 0
in
let+ contacted = List.map_p try_to_connect contactable in
List.fold_left Int.add 0 contacted
let connectable t start_time expected seen_points =
let module Bounded_point_info = Bounded_heap.Make (struct
type t = Time.System.t option * P2p_point.Id.t
let compare (t1, _) (t2, _) =
match (t1, t2) with
| None, None -> 0
| None, Some _ -> 1
| Some _, None -> -1
| Some t1, Some t2 -> Time.System.compare t2 t1
end) in
let acc = Bounded_point_info.create expected in
let f point pi seen_points =
match
classify t.pool t.config.private_mode start_time seen_points point pi
with
| `Ignore -> seen_points
| `Candidate last ->
Bounded_point_info.insert (last, point) acc ;
P2p_point.Set.add point seen_points
| `Seen -> P2p_point.Set.add point seen_points
in
let seen_points = P2p_pool.Points.fold_known t.pool ~init:seen_points ~f in
(List.map snd (Bounded_point_info.get acc), seen_points)
let rec try_to_contact_loop t start_time ~seen_points min_to_contact
max_to_contact =
let open Lwt_syntax in
if min_to_contact <= 0 then Lwt.return_true
else
let candidates, seen_points =
connectable t start_time max_to_contact seen_points
in
if candidates = [] then
let* () = Lwt.pause () in
Lwt.return_false
else
let* established = establish t candidates in
try_to_contact_loop
t
start_time
~seen_points
(min_to_contact - established)
(max_to_contact - established)
(** [try_to_contact t min_to_contact max_to_contact] tries to create
between [min_to_contact] and [max_to_contact] new connections.
It goes through all know points, and ignores points which are
- greylisted,
- banned,
- for which a connection failed after the time this function is called
- Non-trusted points if option --private-mode is set.
It tries to favor points for which the last failed missed connection is old.
Note that this function works as a sequence of lwt tasks that tries
to incrementally reach the number of connections. The set of
known points maybe be concurrently updated. *)
let try_to_contact t min_to_contact max_to_contact =
let start_time = Time.System.now () in
let seen_points = P2p_point.Set.empty in
try_to_contact_loop t start_time min_to_contact max_to_contact ~seen_points
(** not enough contacts, ask the pals of our pals,
discover the local network and then wait unless we are in private
mode, in which case we just wait to prevent the maintenance to loop endlessly *)
let ask_for_more_contacts t =
if t.config.private_mode then
protect ~canceler:t.canceler (fun () ->
Lwt_result.ok
@@ Lwt_unix.sleep
(Ptime.Span.to_float_s t.config.time_between_looking_for_peers))
else (
broadcast_bootstrap_msg t ;
Option.iter P2p_discovery.wakeup t.discovery ;
protect ~canceler:t.canceler (fun () ->
Lwt_result.ok
@@ Lwt.pick
[
P2p_trigger.wait_new_peer t.triggers;
P2p_trigger.wait_new_point t.triggers;
Lwt_unix.sleep
(Ptime.Span.to_float_s t.config.time_between_looking_for_peers);
]))
(** Selects [n] random connections. Ignore connections to
nodes who are both private and trusted. *)
let random_connections ~rng pool n =
let open P2p_conn in
let f _ conn acc =
if private_node conn && trusted_node conn then acc else conn :: acc
in
let candidates =
P2p_pool.Connection.fold pool ~init:[] ~f |> List.shuffle ~rng
in
TzList.rev_take_n n candidates
(** Maintenance step.
1. trigger greylist gc
2. tries *forever* to achieve a number of connections
between `min_threshold` and `max_threshold`. *)
let rec do_maintain ~rng t =
let open Lwt_result_syntax in
t.log P2p_connection.P2p_event.Maintenance_started ;
let n_connected = P2p_pool.active_connections t.pool in
if n_connected < t.bounds.min_threshold then
match t.debug_config with
| Some {trigger_too_few_connections = false; _} -> return_unit
| _ -> too_few_connections ~rng t n_connected
else if t.bounds.max_threshold < n_connected then
match t.debug_config with
| Some {trigger_too_many_connections = false; _} -> return_unit
| _ -> too_many_connections ~rng t n_connected
else (
Lwt_condition.broadcast t.just_maintained () ;
return_unit)
and too_few_connections ~rng t n_connected =
let open Lwt_result_syntax in
t.log Too_few_connections ;
let*! () = Events.(emit too_few_connections) n_connected in
let min_to_contact = t.bounds.min_target - n_connected in
let max_to_contact = t.bounds.max_target - n_connected in
let*! success = try_to_contact t min_to_contact max_to_contact in
let* () = if success then return_unit else ask_for_more_contacts t in
do_maintain ~rng t
and too_many_connections ~rng t n_connected =
let open Lwt_syntax in
t.log Too_many_connections ;
let n = n_connected - t.bounds.max_target in
let* () = Events.(emit too_many_connections) n in
let connections = random_connections ~rng t.pool n in
let* () = List.iter_p P2p_conn.disconnect connections in
do_maintain ~rng t
let rec worker_loop ~rng ~motive t =
let open Lwt_result_syntax in
let*! r =
let n_connected = P2p_pool.active_connections t.pool in
if
n_connected < t.bounds.min_threshold
|| t.bounds.max_threshold < n_connected
then (
let*! () = Events.(emit maintenance_started) motive in
let maintenance_start = Time.System.now () in
let* () = do_maintain ~rng t in
let maintenance_duration =
Ptime.diff (Time.System.now ()) maintenance_start
in
let*! () = Events.(emit maintenance_ended) maintenance_duration in
t.log P2p_connection.P2p_event.Maintenance_ended ;
return Events.Last_maintenance)
else (
(if not t.config.private_mode then
match t.debug_config with
| Some {trigger_swap = false; _} -> ()
| _ -> send_swap_request t) ;
protect ~canceler:t.canceler (fun () ->
let timer_promise =
let idle_time = t.config.maintenance_idle_time in
let*! () = Systime_os.sleep idle_time in
return (Events.Timer idle_time)
in
let external_event_promise =
let*! () = Lwt_condition.wait t.please_maintain in
return Events.External
in
let too_few_connections_promise =
let*! () = P2p_trigger.wait_too_few_connections t.triggers in
return Events.Too_few_connections
in
let too_many_connections_promise =
let*! () = P2p_trigger.wait_too_many_connections t.triggers in
return Events.Too_many_connections
in
Lwt.pick
[
timer_promise;
external_event_promise;
too_few_connections_promise;
too_many_connections_promise;
]))
in
match r with
| Ok motive -> worker_loop ~rng ~motive t
| Error (Canceled :: _) -> Lwt.return_unit
| Error _ -> Lwt.return_unit
let bounds ~min ~expected ~max =
assert (min <= expected) ;
assert (expected <= max) ;
let step_min = (expected - min) / 3 and step_max = (max - expected) / 3 in
{
min_threshold = min + step_min;
min_target = min + (2 * step_min);
max_target = max - (2 * step_max);
max_threshold = max - step_max;
}
module Internal = struct
type nonrec test_config = test_config = {
trigger_swap : bool;
trigger_too_few_connections : bool;
trigger_too_many_connections : bool;
}
let create ?discovery config ?debug_config pool connect_handler triggers ~log
=
let bounds =
bounds
~min:config.min_connections
~expected:config.expected_connections
~max:config.max_connections
in
{
canceler = Lwt_canceler.create ();
config;
debug_config;
bounds;
discovery;
pool;
connect_handler;
just_maintained = Lwt_condition.create ();
please_maintain = Lwt_condition.create ();
maintain_worker = Lwt.return_unit;
triggers;
log;
}
let activate ?(rng = Random.State.make_self_init ()) t =
t.maintain_worker <-
Lwt_utils.worker
"maintenance"
~on_event:Internal_event.Lwt_worker_logger.on_event
~run:(fun () -> worker_loop ~rng ~motive:Events.Activation t)
~cancel:(fun () -> Error_monad.cancel_with_exceptions t.canceler) ;
Option.iter P2p_discovery.activate t.discovery
end
let create ?discovery config pool connect_handler triggers ~log =
Internal.create ?discovery config pool connect_handler triggers ~log
let activate t = Internal.activate t
let maintain t =
let wait = Lwt_condition.wait t.just_maintained in
Lwt_condition.broadcast t.please_maintain () ;
wait
let shutdown {canceler; discovery; maintain_worker; just_maintained; _} =
let open Lwt_syntax in
let* () = Error_monad.cancel_with_exceptions canceler in
let* () = Option.iter_s P2p_discovery.shutdown discovery in
let* () = maintain_worker in
Lwt_condition.broadcast just_maintained () ;
Lwt.return_unit
module Internal_for_tests = Internal