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
open Alpha_context
open Dal_errors
let assert_dal_feature_enabled ctxt =
let open Constants in
let Parametric.{dal = {feature_enable; _}; _} = parametric ctxt in
error_unless Compare.Bool.(feature_enable = true) Dal_feature_disabled
let only_if_dal_feature_enabled ctxt ~default f =
let open Constants in
let Parametric.{dal = {feature_enable; _}; _} = parametric ctxt in
if feature_enable then f ctxt else default ctxt
let slot_of_int_e n =
let open Result_syntax in
match Dal.Slot_index.of_int n with
| None -> tzfail Dal_errors.Dal_slot_index_above_hard_limit
| Some slot_index -> return slot_index
let validate_attestation ctxt op =
assert_dal_feature_enabled ctxt >>? fun () ->
let open Result_syntax in
let Dal.Attestation.{attestor = _; attestation; level = given} = op in
let* max_index =
slot_of_int_e @@ ((Constants.parametric ctxt).dal.number_of_slots - 1)
in
let maximum_size = Dal.Attestation.expected_size_in_bits ~max_index in
let size = Dal.Attestation.occupied_size_in_bits attestation in
let* () =
error_unless
Compare.Int.(size <= maximum_size)
(Dal_attestation_size_limit_exceeded {maximum_size; got = size})
in
let current = Level.(current ctxt).level in
let delta_levels = Raw_level.diff current given in
let* () =
error_when
Compare.Int32.(delta_levels > 0l)
(Dal_operation_for_old_level {current; given})
in
error_when
Compare.Int32.(delta_levels < 0l)
(Dal_operation_for_future_level {current; given})
let apply_attestation ctxt op =
assert_dal_feature_enabled ctxt >>? fun () ->
let Dal.Attestation.{attestor; attestation; level = _} = op in
match Dal.Attestation.shards_of_attestor ctxt ~attestor with
| None ->
let level = Level.current ctxt in
error (Dal_data_availibility_attestor_not_in_committee {attestor; level})
| Some shards ->
Ok (Dal.Attestation.record_available_shards ctxt attestation shards)
let ctxt operation =
assert_dal_feature_enabled ctxt >>? fun () ->
let open Result_syntax in
let open Constants in
let Dal.Slot.Header.{id = {index; published_level}; _} =
operation.Dal.Slot.Header.header
in
let Parametric.{dal = {number_of_slots; cryptobox_parameters; _}; _} =
parametric ctxt
in
let* number_of_slots = slot_of_int_e (number_of_slots - 1) in
let* () =
error_unless
Compare.Int.(
Dal.Slot_index.compare index number_of_slots <= 0
&& Dal.Slot_index.compare index Dal.Slot_index.zero >= 0)
(Dal_publish_slot_header_invalid_index
{given = index; maximum = number_of_slots})
in
let current_level = (Level.current ctxt).level in
let* () =
error_when
Raw_level.(current_level < published_level)
(Dal_publish_slot_header_future_level
{provided = published_level; expected = current_level})
in
let* () =
error_when
Raw_level.(current_level > published_level)
(Dal_publish_slot_header_past_level
{provided = published_level; expected = current_level})
in
let* proof_ok =
Dal.Slot.Header.verify_commitment cryptobox_parameters operation
in
error_unless
proof_ok
(Dal_publish_slot_header_invalid_proof {slot_header = operation})
let ctxt operation =
assert_dal_feature_enabled ctxt >>? fun () ->
Dal.Slot.register_slot_header ctxt operation.Dal.Slot.Header.header
>>? fun (ctxt, updated) ->
if updated then ok ctxt
else
error (Dal_publish_slot_header_duplicate {slot_header = operation.header})
let finalisation ctxt =
only_if_dal_feature_enabled
ctxt
~default:(fun ctxt -> return (ctxt, None))
(fun ctxt ->
Dal.Slot.finalize_current_slot_headers ctxt >>= fun ctxt ->
Dal.Slot.finalize_pending_slot_headers ctxt
>|=? fun (ctxt, attestation) -> (ctxt, Some attestation))
let initialisation ctxt ~level =
let open Lwt_result_syntax in
only_if_dal_feature_enabled
ctxt
~default:(fun ctxt -> return ctxt)
(fun ctxt ->
let pkh_from_tenderbake_slot slot =
Stake_distribution.slot_owner ctxt level slot
>|=? fun (ctxt, consensus_pk1) -> (ctxt, consensus_pk1.delegate)
in
let* committee =
Alpha_context.Dal.Attestation.compute_committee
ctxt
pkh_from_tenderbake_slot
in
return (Alpha_context.Dal.Attestation.init_committee ctxt committee))