Source file p2p_peer_state.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
open P2p_peer
type ('conn, 'conn_meta) t =
| Accepted of {current_point : P2p_connection.Id.t; cancel : Lwt_canceler.t}
| Running of {
data : 'conn;
conn_metadata : 'conn_meta;
current_point : P2p_connection.Id.t;
}
| Disconnected
type ('conn, 'conn_meta) state = ('conn, 'conn_meta) t
let pp ppf = function
| Accepted {current_point; _} ->
Format.fprintf ppf "accepted %a" P2p_connection.Id.pp current_point
| Running {current_point; _} ->
Format.fprintf ppf "running %a" P2p_connection.Id.pp current_point
| Disconnected -> Format.fprintf ppf "disconnected"
module Info = struct
type ('conn, 'peer_meta, 'conn_meta) t = {
peer_id : Id.t;
created : Time.System.t;
mutable state : ('conn, 'conn_meta) state;
mutable peer_metadata : 'peer_meta;
mutable trusted : bool;
mutable last_failed_connection :
(P2p_connection.Id.t * Time.System.t) option;
mutable last_rejected_connection :
(P2p_connection.Id.t * Time.System.t) option;
mutable last_established_connection :
(P2p_connection.Id.t * Time.System.t) option;
mutable last_disconnection : (P2p_connection.Id.t * Time.System.t) option;
events : Pool_event.t Ringo.Ring.t;
watchers : Pool_event.t Lwt_watcher.input;
}
type ('conn, 'peer_meta, 'conn_meta) peer_info =
('conn, 'peer_meta, 'conn_meta) t
let compare gi1 gi2 = Id.compare gi1.peer_id gi2.peer_id
let log_size = 100
let create ~created ?(trusted = false) ~peer_metadata peer_id =
{
peer_id;
created;
state = Disconnected;
peer_metadata;
trusted;
last_failed_connection = None;
last_rejected_connection = None;
last_established_connection = None;
last_disconnection = None;
events = Ringo.Ring.create log_size;
watchers = Lwt_watcher.create_input ();
}
let encoding peer_metadata_encoding =
let open Data_encoding in
conv
(fun {
peer_id;
trusted;
peer_metadata;
events;
created;
last_failed_connection;
last_rejected_connection;
last_established_connection;
last_disconnection;
_;
} ->
( peer_id,
created,
trusted,
peer_metadata,
Ringo.Ring.elements events,
last_failed_connection,
last_rejected_connection,
last_established_connection,
last_disconnection ))
(fun ( peer_id,
created,
trusted,
peer_metadata,
event_list,
last_failed_connection,
last_rejected_connection,
last_established_connection,
last_disconnection ) ->
let events = Ringo.Ring.create log_size in
Ringo.Ring.add_list events event_list ;
{
state = Disconnected;
trusted;
peer_id;
peer_metadata;
created;
last_failed_connection;
last_rejected_connection;
last_established_connection;
last_disconnection;
events;
watchers = Lwt_watcher.create_input ();
})
(obj9
(req "peer_id" Id.encoding)
(req "created" Time.System.encoding)
(dft "trusted" bool false)
(req "peer_metadata" peer_metadata_encoding)
(dft "events" (list Pool_event.encoding) [])
(opt
"last_failed_connection"
(tup2 P2p_connection.Id.encoding Time.System.encoding))
(opt
"last_rejected_connection"
(tup2 P2p_connection.Id.encoding Time.System.encoding))
(opt
"last_established_connection"
(tup2 P2p_connection.Id.encoding Time.System.encoding))
(opt
"last_disconnection"
(tup2 P2p_connection.Id.encoding Time.System.encoding)))
let peer_id {peer_id; _} = peer_id
let created {created; _} = created
let peer_metadata {peer_metadata; _} = peer_metadata
let set_peer_metadata gi peer_metadata = gi.peer_metadata <- peer_metadata
let trusted {trusted; _} = trusted
let set_trusted gi = gi.trusted <- true
let unset_trusted gi = gi.trusted <- false
let last_established_connection s = s.last_established_connection
let last_disconnection s = s.last_disconnection
let last_failed_connection s = s.last_failed_connection
let last_rejected_connection s = s.last_rejected_connection
let last_seen s =
Time.System.recent
s.last_established_connection
(Time.System.recent s.last_rejected_connection s.last_disconnection)
let last_miss s =
Time.System.recent
s.last_failed_connection
(Time.System.recent s.last_rejected_connection s.last_disconnection)
let log {events; watchers; _} ~timestamp point kind =
let event = {Pool_event.kind; timestamp; point} in
Ringo.Ring.add events event ;
Lwt_watcher.notify watchers event
let log_incoming_rejection ~timestamp peer_info point =
log peer_info ~timestamp point Rejecting_request
module File = struct
let load path peer_metadata_encoding =
let open Lwt_result_syntax in
let enc = Data_encoding.list (encoding peer_metadata_encoding) in
if path <> "/dev/null" && Sys.file_exists path then
let* json = Lwt_utils_unix.Json.read_file path in
return (Data_encoding.Json.destruct enc json)
else return_nil
let save path peer_metadata_encoding peers =
let open Lwt_result_syntax in
let open Data_encoding in
let tempfile = path ^ ".tmp" in
let* () =
Lwt_utils_unix.Json.write_file tempfile
@@ Json.construct (list (encoding peer_metadata_encoding)) peers
in
protect (fun () -> Lwt_result.ok @@ Lwt_unix.rename tempfile path)
end
let watch {watchers; _} = Lwt_watcher.create_stream watchers
let events {events; _} = Ringo.Ring.elements events
end
let get {Info.state; _} = state
let is_disconnected {Info.state; _} =
match state with Disconnected -> true | Accepted _ | Running _ -> false
let is_accepted {Info.state; _} =
match state with Accepted _ -> true | Disconnected | Running _ -> false
let is_running {Info.state; _} =
match state with Running _ -> true | Disconnected | Accepted _ -> false
let set_accepted ~timestamp peer_info current_point cancel =
assert (
match peer_info.Info.state with
| Accepted _ | Running _ -> false
| Disconnected -> true) ;
peer_info.state <- Accepted {current_point; cancel} ;
Info.log peer_info ~timestamp current_point Accepting_request
let set_running ~timestamp peer_info point data conn_metadata =
assert (
match peer_info.Info.state with
| Disconnected -> true
| Running _ -> false
| Accepted {current_point; _} -> P2p_connection.Id.equal point current_point) ;
peer_info.state <- Running {data; conn_metadata; current_point = point} ;
peer_info.last_established_connection <- Some (point, timestamp) ;
Info.log peer_info ~timestamp point Connection_established
let set_disconnected ~timestamp ?(requested = false) peer_info =
let current_point, (event : Pool_event.kind) =
match peer_info.Info.state with
| Accepted {current_point; _} ->
peer_info.last_rejected_connection <- Some (current_point, timestamp) ;
(current_point, Request_rejected)
| Running {current_point; _} ->
peer_info.last_disconnection <- Some (current_point, timestamp) ;
( current_point,
if requested then Disconnection else External_disconnection )
| Disconnected -> assert false
in
peer_info.state <- Disconnected ;
Info.log peer_info ~timestamp current_point event