Source file baking.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
open Alpha_context
open Misc
type error += Invalid_fitness_gap of int64 * int64
type error +=
| Timestamp_too_early of {
minimal_time : Timestamp.t;
provided_time : Timestamp.t;
priority : int;
endorsing_power_opt : int option;
}
type error += Unexpected_endorsement
type error += Invalid_endorsement_slot of int
type error += Unexpected_endorsement_slot of int
type error +=
| Invalid_block_signature of Block_hash.t * Signature.Public_key_hash.t
type error += Invalid_signature
type error += Invalid_stamp
let () =
register_error_kind
`Permanent
~id:"baking.timestamp_too_early"
~title:"Block forged too early"
~description:"The block timestamp is before the minimal valid one."
~pp:(fun ppf (minimal_time, provided_time, priority, endorsing_power) ->
let message_regarding_endorsements =
match endorsing_power with
| None ->
""
| Some power ->
Format.asprintf " and endorsing power %d" power
in
Format.fprintf
ppf
"Block forged too early: %a is before the minimal time %a for \
priority %d%s)"
Time.pp_hum
provided_time
Time.pp_hum
minimal_time
priority
message_regarding_endorsements)
Data_encoding.(
obj4
(req "minimal_time" Time.encoding)
(req "provided_time" Time.encoding)
(req "priority" int31)
(opt "endorsing_power" int31))
(function
| Timestamp_too_early
{minimal_time; provided_time; priority; endorsing_power_opt} ->
Some (minimal_time, provided_time, priority, endorsing_power_opt)
| _ ->
None)
(fun (minimal_time, provided_time, priority, endorsing_power_opt) ->
Timestamp_too_early
{minimal_time; provided_time; priority; endorsing_power_opt}) ;
register_error_kind
`Permanent
~id:"baking.invalid_fitness_gap"
~title:"Invalid fitness gap"
~description:"The gap of fitness is out of bounds"
~pp:(fun ppf (m, g) ->
Format.fprintf ppf "The gap of fitness %Ld is not between 0 and %Ld" g m)
Data_encoding.(obj2 (req "maximum" int64) (req "provided" int64))
(function Invalid_fitness_gap (m, g) -> Some (m, g) | _ -> None)
(fun (m, g) -> Invalid_fitness_gap (m, g)) ;
register_error_kind
`Permanent
~id:"baking.invalid_block_signature"
~title:"Invalid block signature"
~description:"A block was not signed with the expected private key."
~pp:(fun ppf (block, pkh) ->
Format.fprintf
ppf
"Invalid signature for block %a. Expected: %a."
Block_hash.pp_short
block
Signature.Public_key_hash.pp_short
pkh)
Data_encoding.(
obj2
(req "block" Block_hash.encoding)
(req "expected" Signature.Public_key_hash.encoding))
(function
| Invalid_block_signature (block, pkh) -> Some (block, pkh) | _ -> None)
(fun (block, pkh) -> Invalid_block_signature (block, pkh)) ;
register_error_kind
`Permanent
~id:"baking.invalid_signature"
~title:"Invalid block signature"
~description:"The block's signature is invalid"
~pp:(fun ppf () -> Format.fprintf ppf "Invalid block signature")
Data_encoding.empty
(function Invalid_signature -> Some () | _ -> None)
(fun () -> Invalid_signature) ;
register_error_kind
`Permanent
~id:"baking.insufficient_proof_of_work"
~title:"Insufficient block proof-of-work stamp"
~description:"The block's proof-of-work stamp is insufficient"
~pp:(fun ppf () -> Format.fprintf ppf "Insufficient proof-of-work stamp")
Data_encoding.empty
(function Invalid_stamp -> Some () | _ -> None)
(fun () -> Invalid_stamp) ;
register_error_kind
`Permanent
~id:"baking.unexpected_endorsement"
~title:"Endorsement from unexpected delegate"
~description:
"The operation is signed by a delegate without endorsement rights."
~pp:(fun ppf () ->
Format.fprintf
ppf
"The endorsement is signed by a delegate without endorsement rights.")
Data_encoding.unit
(function Unexpected_endorsement -> Some () | _ -> None)
(fun () -> Unexpected_endorsement) ;
register_error_kind
`Permanent
~id:"baking.invalid_endorsement_slot"
~title:"Endorsement slot out of range"
~description:"The endorsement slot provided is negative or too high."
~pp:(fun ppf v ->
Format.fprintf
ppf
"Endorsement slot %d provided is negative or too high."
v)
Data_encoding.(obj1 (req "slot" uint16))
(function Invalid_endorsement_slot v -> Some v | _ -> None)
(fun v -> Invalid_endorsement_slot v) ;
register_error_kind
`Permanent
~id:"baking.unexpected_endorsement_slot"
~title:"Endorsement slot not the smallest possible"
~description:"The endorsement slot provided is not the smallest possible."
~pp:(fun ppf v ->
Format.fprintf
ppf
"Endorsement slot %d provided is not the smallest possible."
v)
Data_encoding.(obj1 (req "slot" uint16))
(function Unexpected_endorsement_slot v -> Some v | _ -> None)
(fun v -> Unexpected_endorsement_slot v)
let minimal_time_fastpath_case minimal_block_delay pred_timestamp =
Timestamp.(pred_timestamp +? minimal_block_delay)
let minimal_time_slowpath_case time_between_blocks priority pred_timestamp =
let rec cumsum_time_between_blocks acc durations p =
if Compare.Int32.( <= ) p 0l then ok acc
else
match durations with
| [] ->
cumsum_time_between_blocks acc [Period.one_minute] p
| [last] ->
Period.mult p last >>? fun period -> Timestamp.(acc +? period)
| first :: durations ->
Timestamp.(acc +? first)
>>? fun acc ->
let p = Int32.pred p in
cumsum_time_between_blocks acc durations p
in
cumsum_time_between_blocks
pred_timestamp
time_between_blocks
(Int32.succ priority)
let minimal_time constants ~priority pred_timestamp =
let priority = Int32.of_int priority in
if Compare.Int32.(priority = 0l) then
minimal_time_fastpath_case
constants.Constants.minimal_block_delay
pred_timestamp
else
minimal_time_slowpath_case
constants.time_between_blocks
priority
pred_timestamp
let earlier_predecessor_timestamp ctxt level =
let current = Level.current ctxt in
let current_timestamp = Timestamp.current ctxt in
let gap = Level.diff level current in
let step = Constants.minimal_block_delay ctxt in
if Compare.Int32.(gap < 1l) then
failwith "Baking.earlier_block_timestamp: past block."
else
Period.mult (Int32.pred gap) step
>>? fun delay -> Timestamp.(current_timestamp +? delay)
let check_timestamp c ~priority pred_timestamp =
minimal_time (Constants.parametric c) priority pred_timestamp
>>? fun minimal_time ->
let timestamp = Timestamp.current c in
record_trace
(Timestamp_too_early
{
minimal_time;
provided_time = timestamp;
priority;
endorsing_power_opt = None;
})
Timestamp.(timestamp -? minimal_time)
>>? fun _block_delay -> ok ()
type error += Incorrect_priority
type error += Incorrect_number_of_endorsements
let () =
register_error_kind
`Permanent
~id:"incorrect_priority"
~title:"Incorrect priority"
~description:"Block priority must be non-negative."
~pp:(fun ppf () ->
Format.fprintf ppf "The block priority must be non-negative.")
Data_encoding.unit
(function Incorrect_priority -> Some () | _ -> None)
(fun () -> Incorrect_priority)
let () =
let description =
"The number of endorsements must be non-negative and at most the \
endorsers_per_block constant."
in
register_error_kind
`Permanent
~id:"incorrect_number_of_endorsements"
~title:"Incorrect number of endorsements"
~description
~pp:(fun ppf () -> Format.fprintf ppf "%s" description)
Data_encoding.unit
(function Incorrect_number_of_endorsements -> Some () | _ -> None)
(fun () -> Incorrect_number_of_endorsements)
let rec reward_for_priority reward_per_prio prio =
match reward_per_prio with
| [] ->
Tez.zero
| [last] ->
last
| first :: rest ->
if Compare.Int.(prio <= 0) then first
else reward_for_priority rest (pred prio)
let baking_reward ctxt ~block_priority ~included_endorsements =
error_unless Compare.Int.(block_priority >= 0) Incorrect_priority
>>? fun () ->
error_unless
Compare.Int.(
included_endorsements >= 0
&& included_endorsements <= Constants.endorsers_per_block ctxt)
Incorrect_number_of_endorsements
>>? fun () ->
let reward_per_endorsement =
reward_for_priority
(Constants.baking_reward_per_endorsement ctxt)
block_priority
in
Tez.(reward_per_endorsement *? Int64.of_int included_endorsements)
let endorsing_reward ctxt ~block_priority num_slots =
error_unless Compare.Int.(block_priority >= 0) Incorrect_priority
>>? fun () ->
let reward_per_endorsement =
reward_for_priority (Constants.endorsement_reward ctxt) block_priority
in
Tez.(reward_per_endorsement *? Int64.of_int num_slots)
let baking_priorities c level =
let rec f priority =
Roll.baking_rights_owner c level ~priority
>|=? fun delegate -> LCons (delegate, fun () -> f (succ priority))
in
f 0
let endorsement_rights ctxt level =
fold_right_s
(fun slot acc ->
Roll.endorsement_rights_owner ctxt level ~slot
>|=? fun pk ->
let pkh = Signature.Public_key.hash pk in
let right =
match Signature.Public_key_hash.Map.find_opt pkh acc with
| None ->
(pk, [slot], false)
| Some (pk, slots, used) ->
(pk, slot :: slots, used)
in
Signature.Public_key_hash.Map.add pkh right acc)
(0 --> (Constants.endorsers_per_block ctxt - 1))
Signature.Public_key_hash.Map.empty
let[@coq_axiom_with_reason "gadt"] check_endorsement_rights ctxt chain_id ~slot
(op : Kind.endorsement Operation.t) =
if
Compare.Int.(slot < 0 )
|| Compare.Int.(slot >= Constants.endorsers_per_block ctxt)
then fail (Invalid_endorsement_slot slot)
else
let current_level = Level.current ctxt in
let (Single (Endorsement {level; _})) = op.protocol_data.contents in
Roll.endorsement_rights_owner ctxt (Level.from_raw ctxt level) ~slot
>>=? fun pk ->
let pkh = Signature.Public_key.hash pk in
match Operation.check_signature pk chain_id op with
| Error _ ->
fail Unexpected_endorsement
| Ok () -> (
( if Raw_level.(succ level = current_level.level) then
return (Alpha_context.allowed_endorsements ctxt)
else endorsement_rights ctxt (Level.from_raw ctxt level) )
>>=? fun endorsements ->
match Signature.Public_key_hash.Map.find_opt pkh endorsements with
| None ->
fail Unexpected_endorsement
| Some (_pk, slots, v) ->
error_unless
Compare.Int.(slot = List.hd slots)
(Unexpected_endorsement_slot slot)
>>?= fun () -> return (pkh, slots, v) )
let select_delegate delegate delegate_list max_priority =
let rec loop acc l n =
if Compare.Int.(n >= max_priority) then return (List.rev acc)
else
let (LCons (pk, t)) = l in
let acc =
if
Signature.Public_key_hash.equal
delegate
(Signature.Public_key.hash pk)
then n :: acc
else acc
in
t () >>=? fun t -> loop acc t (succ n)
in
loop [] delegate_list 0
let first_baking_priorities ctxt ?(max_priority = 32) delegate level =
baking_priorities ctxt level
>>=? fun delegate_list -> select_delegate delegate delegate_list max_priority
let check_hash hash stamp_threshold =
let bytes = Block_hash.to_bytes hash in
let word = TzEndian.get_int64 bytes 0 in
Compare.Uint64.(word <= stamp_threshold)
let shell contents stamp_threshold =
let hash =
Block_header.hash
{shell; protocol_data = {contents; signature = Signature.zero}}
in
check_hash hash stamp_threshold
let check_proof_of_work_stamp ctxt block =
let proof_of_work_threshold = Constants.proof_of_work_threshold ctxt in
if
check_header_proof_of_work_stamp
block.Block_header.shell
block.protocol_data.contents
proof_of_work_threshold
then ok_unit
else error Invalid_stamp
let check_signature block chain_id key =
let check_signature key
{Block_header.shell; protocol_data = {contents; signature}} =
let =
Data_encoding.Binary.to_bytes_exn
Block_header.unsigned_encoding
(shell, contents)
in
Signature.check
~watermark:(Block_header chain_id)
key
signature
unsigned_header
in
if check_signature key block then return_unit
else
fail
(Invalid_block_signature
(Block_header.hash block, Signature.Public_key.hash key))
let max_fitness_gap _ctxt = 1L
let check_fitness_gap ctxt (block : Block_header.t) =
let current_fitness = Fitness.current ctxt in
Fitness.to_int64 block.shell.fitness
>>? fun announced_fitness ->
let gap = Int64.sub announced_fitness current_fitness in
if Compare.Int64.(gap <= 0L || max_fitness_gap ctxt < gap) then
error (Invalid_fitness_gap (max_fitness_gap ctxt, gap))
else ok_unit
let fastpath_endorsing_power_threshold maximal_endorsing_power =
3 * maximal_endorsing_power / 5
let minimal_valid_time constants ~priority ~endorsing_power
~predecessor_timestamp =
if
Compare.Int.(priority = 0)
&& Compare.Int.(
endorsing_power
>= fastpath_endorsing_power_threshold
constants.Constants.endorsers_per_block)
then
minimal_time_fastpath_case
constants.minimal_block_delay
predecessor_timestamp
else
minimal_time_slowpath_case
constants.time_between_blocks
(Int32.of_int priority)
predecessor_timestamp
>>? fun minimal_time ->
let delay_per_missing_endorsement =
constants.Constants.delay_per_missing_endorsement
in
let missing_endorsements =
let minimal_required_endorsements =
constants.Constants.initial_endorsers
in
Compare.Int.max 0 (minimal_required_endorsements - endorsing_power)
in
Period.mult
(Int32.of_int missing_endorsements)
delay_per_missing_endorsement
>|? fun delay -> Time.add minimal_time (Period.to_seconds delay)