Source file p2p_limits.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
type t = {
connection_timeout : Time.System.Span.t;
authentication_timeout : Time.System.Span.t;
greylist_timeout : Time.System.Span.t;
maintenance_idle_time : Time.System.Span.t option;
min_connections : int;
expected_connections : int;
max_connections : int;
backlog : int;
max_incoming_connections : int;
max_download_speed : int option;
max_upload_speed : int option;
read_buffer_size : int;
read_queue_size : int option;
write_queue_size : int option;
incoming_app_message_queue_size : int option;
incoming_message_queue_size : int option;
outgoing_message_queue_size : int option;
max_known_peer_ids : (int * int) option;
max_known_points : (int * int) option;
peer_greylist_size : int;
ip_greylist_size_in_kilobytes : int;
ip_greylist_cleanup_delay : Time.System.Span.t;
swap_linger : Time.System.Span.t option;
binary_chunks_size : int option;
}
let default =
let greylist_timeout = Time.System.Span.of_seconds_exn 86400. in
{
connection_timeout = Time.System.Span.of_seconds_exn 10.;
authentication_timeout = Time.System.Span.of_seconds_exn 5.;
greylist_timeout;
maintenance_idle_time =
Some (Time.System.Span.of_seconds_exn 120.) ;
min_connections = 10;
expected_connections = 50;
max_connections = 100;
backlog = 20;
max_incoming_connections = 20;
max_download_speed = None;
max_upload_speed = None;
read_buffer_size = 1 lsl 14;
read_queue_size = None;
write_queue_size = None;
incoming_app_message_queue_size = None;
incoming_message_queue_size = None;
outgoing_message_queue_size = None;
max_known_points = Some (400, 300);
max_known_peer_ids = Some (400, 300);
peer_greylist_size = 1023 ;
ip_greylist_size_in_kilobytes =
2 * 1024 ;
ip_greylist_cleanup_delay = greylist_timeout;
swap_linger = Some (Time.System.Span.of_seconds_exn 30.);
binary_chunks_size = None;
}
let encoding : t Data_encoding.t =
let open Data_encoding in
conv
(fun {
connection_timeout;
authentication_timeout;
greylist_timeout;
maintenance_idle_time;
min_connections;
expected_connections;
max_connections;
backlog;
max_incoming_connections;
max_download_speed;
max_upload_speed;
read_buffer_size;
read_queue_size;
write_queue_size;
incoming_app_message_queue_size;
incoming_message_queue_size;
outgoing_message_queue_size;
max_known_points;
max_known_peer_ids;
peer_greylist_size;
ip_greylist_size_in_kilobytes;
ip_greylist_cleanup_delay;
swap_linger;
binary_chunks_size;
} ->
( ( ( connection_timeout,
authentication_timeout,
min_connections,
expected_connections,
max_connections,
backlog,
max_incoming_connections,
max_download_speed,
max_upload_speed,
swap_linger ),
( binary_chunks_size,
read_buffer_size,
read_queue_size,
write_queue_size,
incoming_app_message_queue_size,
incoming_message_queue_size,
outgoing_message_queue_size,
max_known_points ) ),
( max_known_peer_ids,
peer_greylist_size,
ip_greylist_size_in_kilobytes,
ip_greylist_cleanup_delay,
greylist_timeout,
maintenance_idle_time ) ))
(fun ( ( ( connection_timeout,
authentication_timeout,
min_connections,
expected_connections,
max_connections,
backlog,
max_incoming_connections,
max_download_speed,
max_upload_speed,
swap_linger ),
( binary_chunks_size,
read_buffer_size,
read_queue_size,
write_queue_size,
incoming_app_message_queue_size,
incoming_message_queue_size,
outgoing_message_queue_size,
max_known_points ) ),
( max_known_peer_ids,
peer_greylist_size,
ip_greylist_size_in_kilobytes,
ip_greylist_cleanup_delay,
greylist_timeout,
maintenance_idle_time ) ) ->
{
connection_timeout;
authentication_timeout;
greylist_timeout;
maintenance_idle_time;
min_connections;
expected_connections;
max_connections;
backlog;
max_incoming_connections;
max_download_speed;
max_upload_speed;
read_buffer_size;
read_queue_size;
write_queue_size;
incoming_app_message_queue_size;
incoming_message_queue_size;
outgoing_message_queue_size;
max_known_points;
max_known_peer_ids;
peer_greylist_size;
ip_greylist_size_in_kilobytes;
ip_greylist_cleanup_delay;
swap_linger;
binary_chunks_size;
})
(merge_objs
(merge_objs
(obj10
(dft
"connection-timeout"
~description:
"Delay acceptable when initiating a connection to a new \
peer, in seconds."
Time.System.Span.encoding
default.authentication_timeout)
(dft
"authentication-timeout"
~description:
"Delay granted to a peer to perform authentication, in \
seconds."
Time.System.Span.encoding
default.authentication_timeout)
(dft
"min-connections"
~description:
"Strict minimum number of connections (triggers an urgent \
maintenance)."
uint16
default.min_connections)
(dft
"expected-connections"
~description:
"Targeted number of connections to reach when bootstrapping \
/ maintaining."
uint16
default.expected_connections)
(dft
"max-connections"
~description:
"Maximum number of connections (exceeding peers are \
disconnected)."
uint16
default.max_connections)
(dft
"backlog"
~description:
"Number above which pending incoming connections are \
immediately rejected."
uint8
default.backlog)
(dft
"max-incoming-connections"
~description:
"Number above which pending incoming connections are \
immediately rejected."
uint8
default.max_incoming_connections)
(opt
"max-download-speed"
~description:"Max download speeds in KiB/s."
int31)
(opt
"max-upload-speed"
~description:"Max upload speeds in KiB/s."
int31)
(dft
"swap-linger"
(option Time.System.Span.encoding)
default.swap_linger))
(obj8
(opt "binary-chunks-size" uint8)
(dft
"read-buffer-size"
~description:"Size of the buffer passed to read(2)."
int31
default.read_buffer_size)
(opt "read-queue-size" int31)
(opt "write-queue-size" int31)
(opt "incoming-app-message-queue-size" int31)
(opt "incoming-message-queue-size" int31)
(opt "outgoing-message-queue-size" int31)
(opt
"max_known_points"
~description:
"The max and target size for the known address table."
(tup2 uint16 uint16))))
(obj6
(opt
"max_known_peer_ids"
~description:"The max and target size for the known peers table."
(tup2 uint16 uint16))
(dft
"peer_greylist_size"
~description:"The number of peer_ids kept in the peer_id greylist."
uint16
default.peer_greylist_size)
(dft
"ip_greylist_size_in_kilobytes"
~description:"The size of the IP address greylist (in kilobytes)."
uint16
default.ip_greylist_size_in_kilobytes)
(dft
"ip_greylist_cleanup_delay"
~description:"The time an IP address is kept in the greylist."
Time.System.Span.encoding
default.ip_greylist_cleanup_delay)
(dft
"greylist-timeout"
~description:"GC delay for the greylists tables, in seconds."
Time.System.Span.encoding
default.greylist_timeout)
(dft
"maintenance-idle-time"
~description:
"How long to wait at most, in seconds, before running a \
maintenance loop. If null -- decoding to None -- is provided \
then the maintenance is disabled."
(option Time.System.Span.encoding)
default.maintenance_idle_time)))