package tezos-protocol-017-PtNairob
Tezos protocol 017-PtNairob package
Install
Dune Dependency
Authors
Maintainers
Sources
tezos-octez-v20.1.tag.bz2
sha256=ddfb5076eeb0b32ac21c1eed44e8fc86a6743ef18ab23fff02d36e365bb73d61
sha512=d22a827df5146e0aa274df48bc2150b098177ff7e5eab52c6109e867eb0a1f0ec63e6bfbb0e3645a6c2112de3877c91a17df32ccbff301891ce4ba630c997a65
doc/src/tezos_raw_protocol_017_PtNairob/dal_apply.ml.html
Source file dal_apply.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
(*****************************************************************************) (* *) (* Open Source License *) (* Copyright (c) 2022 Nomadic Labs <contact@nomadic-labs.com> *) (* *) (* Permission is hereby granted, free of charge, to any person obtaining a *) (* copy of this software and associated documentation files (the "Software"),*) (* to deal in the Software without restriction, including without limitation *) (* the rights to use, copy, modify, merge, publish, distribute, sublicense, *) (* and/or sell copies of the Software, and to permit persons to whom the *) (* Software is furnished to do so, subject to the following conditions: *) (* *) (* The above copyright notice and this permission notice shall be included *) (* in all copies or substantial portions of the Software. *) (* *) (* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR*) (* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, *) (* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL *) (* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER*) (* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING *) (* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER *) (* DEALINGS IN THE SOFTWARE. *) (* *) (*****************************************************************************) (* Every function of this file should check the feature flag. *) 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_opt n with | None -> tzfail @@ Dal_errors.Dal_slot_index_above_hard_limit {given = n} | Some slot_index -> return slot_index let validate_attestation ctxt op = assert_dal_feature_enabled ctxt >>? fun () -> let open Result_syntax in (* TODO/DAL: https://gitlab.com/tezos/tezos/-/issues/4462 Reconsider the ordering of checks. *) (* FIXME/DAL: https://gitlab.com/tezos/tezos/-/issues/4163 check the signature of the attestor as well *) let Dal.Attestation.{attestor; attestation; level = given} = op in let* max_index = Dal.number_of_slots ctxt - 1 |> slot_of_int_e 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 let* () = error_when Compare.Int32.(delta_levels < 0l) (Dal_operation_for_future_level {current; given}) in error_when (Option.is_none @@ Dal.Attestation.shards_of_attestor ctxt ~attestor) (Dal_data_availibility_attestor_not_in_committee {attestor; level = Level.current ctxt}) 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 -> (* This should not happen: operation validation should have failed. *) let level = Level.current ctxt in error (Dal_data_availibility_attestor_not_in_committee {attestor; level}) | Some shards -> Ok (Dal.Attestation.record_attested_shards ctxt attestation shards) (* This function should fail if we don't want the operation to be propagated over the L1 gossip network. Because this is a manger operation, there are already checks to ensure the source of operation has enough fees. Among the various checks, there are checks that cannot fail unless the source of the operation is malicious (or if there is a bug). In that case, it is better to ensure fees will be taken. However, for the check of level, this is not true. In particular, in term of UX, we can imagine a source of an operation to emit its operation a bit ahead of time. Hence, we do not want to propagate an operation that has a wrong level. This way, if the operation is emitted in advance, it will stay in the prevalidator/mempool of the node on which the operation will be injected. It will be injected once the validation succeeds, i.e. the operation can be included into the next block. *) let validate_publish_slot_header ctxt operation = assert_dal_feature_enabled ctxt >>? fun () -> let current_level = (Level.current ctxt).level in Dal.Operations.Publish_slot_header.check_level ~current_level operation let apply_publish_slot_header ctxt operation = assert_dal_feature_enabled ctxt >>? fun () -> let open Result_syntax in let number_of_slots = Dal.number_of_slots ctxt in let* cryptobox = Dal.make ctxt in let current_level = (Level.current ctxt).level in let* slot_header = Dal.Operations.Publish_slot_header.slot_header ~cryptobox ~number_of_slots ~current_level operation in let* ctxt = Dal.Slot.register_slot_header ctxt slot_header in return (ctxt, slot_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 -> (* The fact that slots confirmation is done at finalization is very important for the assumptions made by the Dal refutation game. In fact: - {!Dal.Slot.finalize_current_slot_headers} updates the Dal skip list at block finalization, by inserting newly confirmed slots; - {!Sc_rollup.Game.initial}, called when applying a manager operation that starts a refutation game, makes a snapshot of the Dal skip list to use it as a reference if the refutation proof involves a Dal input. If confirmed Dal slots are inserted into the skip list during operations application, adapting how refutation games are made might be needed to e.g., - use the same snapshotted skip list as a reference by L1 and rollup-node; - disallow proofs involving pages of slots that have been confirmed at the level where the game started. *) Dal.Slot.finalize_pending_slot_headers ctxt >|=? fun (ctxt, attestation) -> (ctxt, Some attestation)) let compute_committee ctxt level = assert_dal_feature_enabled ctxt >>?= fun () -> let blocks_per_epoch = (Constants.parametric ctxt).dal.blocks_per_epoch in let first_level_in_epoch = match Level.sub ctxt level (Int32.to_int @@ Int32.rem level.Level.cycle_position blocks_per_epoch) with | Some v -> v | None -> (* unreachable, because level.level >= level.cycle_position >= (level.cycle_position mod blocks_per_epoch) *) assert false in let pkh_from_tenderbake_slot slot = Stake_distribution.slot_owner ctxt first_level_in_epoch slot >|=? fun (ctxt, consensus_pk1) -> (ctxt, consensus_pk1.delegate) in (* This committee is cached because it is the one we will use for the validation of the DAL attestations. *) Alpha_context.Dal.Attestation.compute_committee ctxt pkh_from_tenderbake_slot let initialisation ctxt ~level = let open Lwt_result_syntax in only_if_dal_feature_enabled ctxt ~default:(fun ctxt -> return ctxt) (fun ctxt -> let+ committee = compute_committee ctxt level in Alpha_context.Dal.Attestation.init_committee ctxt committee)
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>