Source file p2p_services.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
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
let wait_query =
let open Tezos_rpc.Query in
query (fun wait ->
object
method wait = wait
end)
|+ flag "wait" (fun t -> t#wait)
|> seal
let monitor_query =
let open Tezos_rpc.Query in
query (fun monitor ->
object
method monitor = monitor
end)
|+ flag "monitor" (fun t -> t#monitor)
|> seal
let timeout_query =
let open Tezos_rpc.Query in
query (fun timeout ->
object
method timeout = timeout
end)
|+ field
"timeout"
Time.System.Span.rpc_arg
(Time.System.Span.of_seconds_exn 10.)
(fun t -> t#timeout)
|> seal
module S = struct
let self =
Tezos_rpc.Service.get_service
~description:"Return the node's peer id"
~query:Tezos_rpc.Query.empty
~output:P2p_peer.Id.encoding
Tezos_rpc.Path.(root / "network" / "self")
let version =
Tezos_rpc.Service.get_service
~description:"DEPRECATED: use `version` instead."
~query:Tezos_rpc.Query.empty
~output:Network_version.encoding
Tezos_rpc.Path.(root / "network" / "version")
let versions =
Tezos_rpc.Service.get_service
~description:"DEPRECATED: use `version` instead."
~query:Tezos_rpc.Query.empty
~output:(Data_encoding.list Network_version.encoding)
Tezos_rpc.Path.(root / "network" / "versions")
let stat =
Tezos_rpc.Service.get_service
~description:"Global network bandwidth statistics in B/s."
~query:Tezos_rpc.Query.empty
~output:P2p_stat.encoding
Tezos_rpc.Path.(root / "network" / "stat")
let events =
Tezos_rpc.Service.get_service
~description:"Stream of all network events"
~query:Tezos_rpc.Query.empty
~output:P2p_connection.P2p_event.encoding
Tezos_rpc.Path.(root / "network" / "log")
let connect =
Tezos_rpc.Service.put_service
~description:"Connect to a peer"
~query:timeout_query
~input:Data_encoding.empty
~output:Data_encoding.empty
Tezos_rpc.Path.(root / "network" / "points" /: P2p_point.Id.rpc_arg)
end
open Tezos_rpc.Context
let self ctxt = make_call S.self ctxt () () ()
let stat ctxt = make_call S.stat ctxt () () ()
let version ctxt = make_call S.version ctxt () () ()
let versions ctxt = make_call S.versions ctxt () () ()
let events ctxt = make_streamed_call S.events ctxt () () ()
let connect ctxt ~timeout point_id =
make_call1
S.connect
ctxt
point_id
(object
method timeout = timeout
end)
()
module Connections = struct
type connection_info = Connection_metadata.t P2p_connection.Info.t
let connection_info_encoding =
P2p_connection.Info.encoding Connection_metadata.encoding
module S = struct
let list =
Tezos_rpc.Service.get_service
~description:"List the running P2P connection."
~query:Tezos_rpc.Query.empty
~output:(Data_encoding.list connection_info_encoding)
Tezos_rpc.Path.(root / "network" / "connections")
let info =
Tezos_rpc.Service.get_service
~query:Tezos_rpc.Query.empty
~output:connection_info_encoding
~description:
"Details about the current P2P connection to the given peer."
Tezos_rpc.Path.(root / "network" / "connections" /: P2p_peer.Id.rpc_arg)
let kick =
Tezos_rpc.Service.delete_service
~query:wait_query
~output:Data_encoding.empty
~description:
"Forced close of the current P2P connection to the given peer."
Tezos_rpc.Path.(root / "network" / "connections" /: P2p_peer.Id.rpc_arg)
end
let list ctxt = make_call S.list ctxt () () ()
let info ctxt peer_id = make_call1 S.info ctxt peer_id () ()
let kick ctxt ?(wait = false) peer_id =
make_call1
S.kick
ctxt
peer_id
(object
method wait = wait
end)
()
end
module Points = struct
module S = struct
let info =
Tezos_rpc.Service.get_service
~query:Tezos_rpc.Query.empty
~output:P2p_point.Info.encoding
~description:"Details about a given `IP:addr`."
Tezos_rpc.Path.(root / "network" / "points" /: P2p_point.Id.rpc_arg)
let patch_input_encoding =
let open Data_encoding in
obj2
(opt
"acl"
(string_enum [("ban", `Ban); ("trust", `Trust); ("open", `Open)]))
(opt "peer_id" P2p_peer.Id.encoding)
let patch =
Tezos_rpc.Service.patch_service
~query:Tezos_rpc.Query.empty
~input:patch_input_encoding
~output:P2p_point.Info.encoding
~description:
"Change the connectivity state of a given `IP:addr`. With `{acl : \
ban}`: blacklist the given address and remove it from the whitelist \
if present. With `{acl: open}`: removes an address from the \
blacklist and whitelist. With `{acl: trust}`: trust a given address \
permanently and remove it from the blacklist if present. With \
`{peer_id: <id>}` set the peerId of the point. Connections from \
this address can still be closed on authentication if the peer is \
greylisted. "
Tezos_rpc.Path.(root / "network" / "points" /: P2p_point.Id.rpc_arg)
let events =
Tezos_rpc.Service.get_service
~query:monitor_query
~output:(Data_encoding.list P2p_point.Pool_event.encoding)
~description:"Monitor network events related to an `IP:addr`."
Tezos_rpc.Path.(
root / "network" / "points" /: P2p_point.Id.rpc_arg / "log")
let list =
let filter_query =
let open Tezos_rpc.Query in
query (fun filters ->
object
method filters = filters
end)
|+ multi_field "filter" P2p_point.Filter.rpc_arg (fun t -> t#filters)
|> seal
in
Tezos_rpc.Service.get_service
~query:filter_query
~output:
Data_encoding.(
list (tup2 P2p_point.Id.encoding P2p_point.Info.encoding))
~description:
"List the pool of known `IP:port` used for establishing P2P \
connections."
Tezos_rpc.Path.(root / "network" / "points")
let ban =
Tezos_rpc.Service.get_service
~query:Tezos_rpc.Query.empty
~output:Data_encoding.empty
~description:
"DEPRECATED: Blacklist the given address and remove it from the \
whitelist if present. Use PATCH `/network/point/<point_id>` \
instead."
Tezos_rpc.Path.(
root / "network" / "points" /: P2p_point.Id.rpc_arg / "ban")
let unban =
Tezos_rpc.Service.get_service
~query:Tezos_rpc.Query.empty
~output:Data_encoding.empty
~description:
"DEPRECATED: Remove an address from the blacklist. Use PATCH \
`/network/point/<point_id>` instead."
Tezos_rpc.Path.(
root / "network" / "points" /: P2p_point.Id.rpc_arg / "unban")
let trust =
Tezos_rpc.Service.get_service
~query:Tezos_rpc.Query.empty
~output:Data_encoding.empty
~description:
"DEPRECATED: Trust a given address permanently and remove it from \
the blacklist if present. Connections from this address can still \
be closed on authentication if the peer is greylisted. Use \
PATCH`/network/point/<point_id>` instead."
Tezos_rpc.Path.(
root / "network" / "points" /: P2p_point.Id.rpc_arg / "trust")
let untrust =
Tezos_rpc.Service.get_service
~query:Tezos_rpc.Query.empty
~output:Data_encoding.empty
~description:
"DEPRECATED: Remove an address from the whitelist. Use PATCH \
`/network/point/<point_id>` instead."
Tezos_rpc.Path.(
root / "network" / "points" /: P2p_point.Id.rpc_arg / "untrust")
let banned =
Tezos_rpc.Service.get_service
~query:Tezos_rpc.Query.empty
~output:Data_encoding.bool
~description:
"Check if a given address is blacklisted or greylisted. Port \
component is unused."
Tezos_rpc.Path.(
root / "network" / "points" /: P2p_point.Id.rpc_arg / "banned")
end
open Tezos_rpc.Context
let info ctxt peer_id = make_call1 S.info ctxt peer_id () ()
let events ctxt point =
make_streamed_call
S.events
ctxt
((), point)
(object
method monitor = true
end)
()
let list ?(filter = []) ctxt =
make_call
S.list
ctxt
()
(object
method filters = filter
end)
()
let patch ctxt peer_id input = make_call1 S.patch ctxt peer_id () input
let banned ctxt peer_id = make_call1 S.banned ctxt peer_id () ()
end
module Peers = struct
module S = struct
let info =
Tezos_rpc.Service.get_service
~query:Tezos_rpc.Query.empty
~output:
(P2p_peer.Info.encoding
Peer_metadata.encoding
Connection_metadata.encoding)
~description:"Details about a given peer."
Tezos_rpc.Path.(root / "network" / "peers" /: P2p_peer.Id.rpc_arg)
let events =
Tezos_rpc.Service.get_service
~query:monitor_query
~output:(Data_encoding.list P2p_peer.Pool_event.encoding)
~description:"Monitor network events related to a given peer."
Tezos_rpc.Path.(
root / "network" / "peers" /: P2p_peer.Id.rpc_arg / "log")
let list =
let filter =
let open Tezos_rpc.Query in
query (fun filters ->
object
method filters = filters
end)
|+ multi_field "filter" P2p_peer.Filter.rpc_arg (fun t -> t#filters)
|> seal
in
Tezos_rpc.Service.get_service
~query:filter
~output:
Data_encoding.(
list
(tup2
P2p_peer.Id.encoding
(P2p_peer.Info.encoding
Peer_metadata.encoding
Connection_metadata.encoding)))
~description:"List the peers the node ever met."
Tezos_rpc.Path.(root / "network" / "peers")
let patch_input_encoding =
let open Data_encoding in
obj1
(opt
"acl"
(string_enum [("ban", `Ban); ("trust", `Trust); ("open", `Open)]))
let patch =
Tezos_rpc.Service.patch_service
~query:Tezos_rpc.Query.empty
~output:
(P2p_peer.Info.encoding
Peer_metadata.encoding
Connection_metadata.encoding)
~input:patch_input_encoding
~description:
"Change the permissions of a given peer. With `{acl: ban}`: \
blacklist the given peer and remove it from the whitelist if \
present. With `{acl: open}`: removes the peer from the blacklist \
and whitelist. With `{acl: trust}`: trust the given peer \
permanently and remove it from the blacklist if present. The peer \
cannot be blocked (but its host IP still can)."
Tezos_rpc.Path.(root / "network" / "peers" /: P2p_peer.Id.rpc_arg)
let ban =
Tezos_rpc.Service.get_service
~query:Tezos_rpc.Query.empty
~output:Data_encoding.empty
~description:
"DEPRECATED: Blacklist the given peer and remove it from the \
whitelist if present. Use PATCH `network/peers/<peer_id>` instead."
Tezos_rpc.Path.(
root / "network" / "peers" /: P2p_peer.Id.rpc_arg / "ban")
let unban =
Tezos_rpc.Service.get_service
~query:Tezos_rpc.Query.empty
~output:Data_encoding.empty
~description:
"DEPRECATED: Remove the given peer from the blacklist. Use PATCH \
`network/peers/<peer_id>` instead."
Tezos_rpc.Path.(
root / "network" / "peers" /: P2p_peer.Id.rpc_arg / "unban")
let trust =
Tezos_rpc.Service.get_service
~query:Tezos_rpc.Query.empty
~output:Data_encoding.empty
~description:
"DEPRECATED: Whitelist a given peer permanently and remove it from \
the blacklist if present. The peer cannot be blocked (but its host \
IP still can). Use PATCH `network/peers/<peer_id>` instead."
Tezos_rpc.Path.(
root / "network" / "peers" /: P2p_peer.Id.rpc_arg / "trust")
let untrust =
Tezos_rpc.Service.get_service
~query:Tezos_rpc.Query.empty
~output:Data_encoding.empty
~description:
"DEPRECATED: Remove a given peer from the whitelist. Use PATCH \
`network/peers/<peer_id>` instead."
Tezos_rpc.Path.(
root / "network" / "peers" /: P2p_peer.Id.rpc_arg / "untrust")
let banned =
Tezos_rpc.Service.get_service
~query:Tezos_rpc.Query.empty
~output:Data_encoding.bool
~description:"Check if a given peer is blacklisted or greylisted."
Tezos_rpc.Path.(
root / "network" / "peers" /: P2p_peer.Id.rpc_arg / "banned")
end
let info ctxt peer_id = make_call1 S.info ctxt peer_id () ()
let events ctxt peer =
make_streamed_call
S.events
ctxt
((), peer)
(object
method monitor = true
end)
()
let list ?(filter = []) ctxt =
make_call
S.list
ctxt
()
(object
method filters = filter
end)
()
let patch ctxt point_id input = make_call1 S.patch ctxt point_id () input
let banned ctxt peer_id = make_call1 S.banned ctxt peer_id () ()
end
module ACL = struct
type ip_list = {ips : Ipaddr.V6.t list; not_reliable_since : Ptime.t option}
module S = struct
let clear =
Tezos_rpc.Service.get_service
~query:Tezos_rpc.Query.empty
~output:Data_encoding.empty
~description:
"DEPRECATED: Clear all greylists tables. This will unban all \
addresses and peers automatically greylisted by the system. Use \
DELETE `/network/greylist` instead"
Tezos_rpc.Path.(root / "network" / "greylist" / "clear")
let clear_delete =
Tezos_rpc.Service.delete_service
~query:Tezos_rpc.Query.empty
~output:Data_encoding.empty
~description:
"Clear all greylists tables. This will unban all addresses and peers \
automatically greylisted by the system."
Tezos_rpc.Path.(root / "network" / "greylist")
let get_greylisted_peers =
Tezos_rpc.Service.get_service
~query:Tezos_rpc.Query.empty
~output:Data_encoding.(list P2p_peer.Id.encoding)
~description:"List of the last greylisted peers."
Tezos_rpc.Path.(root / "network" / "greylist" / "peers")
let get_greylisted_ips =
Tezos_rpc.Service.get_service
~query:Tezos_rpc.Query.empty
~output:
Data_encoding.(
conv
(fun {ips; not_reliable_since} -> (ips, not_reliable_since))
(fun (ips, not_reliable_since) -> {ips; not_reliable_since})
(obj2
(req "ips" (list P2p_addr.encoding))
(req
"not_reliable_since"
(Data_encoding.option Time.System.encoding))))
~description:
"Returns an object that contains a list of IP and the field \
\"not_reliable_since\".\n\
\ If the field \"not_reliable_since\" is None then the \
list contains the currently greylisted IP addresses.\n\
\ If the field \"not_reliable_since\" Contains a date, \
this means that the greylist has been overflowed and it is no more \
possible to obtain the exact list of greylisted IPs. Since the \
greylist of IP addresses has been design to work whatever his size, \
there is no security issue related to this overflow.\n\
\ Reinitialize the ACL structure by calling \"delete \
/network/greylist\" to get back this list reliable."
Tezos_rpc.Path.(root / "network" / "greylist" / "ips")
end
let clear ctxt = make_call S.clear_delete ctxt () ()
let get_greylisted_peers ctxt = make_call S.get_greylisted_peers ctxt () () ()
let get_greylisted_ips ctxt = make_call S.get_greylisted_ips ctxt () () ()
end