ligo/src/proto_alpha/lib_protocol/src/roll_storage.ml

379 lines
15 KiB
OCaml
Raw Normal View History

2016-09-08 19:13:10 +02:00
(**************************************************************************)
(* *)
2018-02-05 21:17:03 +01:00
(* Copyright (c) 2014 - 2018. *)
2016-09-08 19:13:10 +02:00
(* Dynamic Ledger Solutions, Inc. <contact@tezos.com> *)
(* *)
(* All rights reserved. No warranty, explicit or implicit, provided. *)
(* *)
(**************************************************************************)
open Misc
2016-09-08 19:13:10 +02:00
type error +=
| Consume_roll_change
2018-02-21 22:52:33 +01:00
| No_roll_for_delegate
2018-02-22 11:28:54 +01:00
| No_roll_snapshot_for_cycle of Cycle_repr.t
| Unregistered_delegate of Signature.Public_key_hash.t (* `Permanent *)
let () =
register_error_kind
`Permanent
2018-03-13 11:13:12 +01:00
~id:"contract.manager.unregistered_delegate"
~title:"Unregistered delegate"
~description:"A contract cannot be delegated to an unregistered delegate"
~pp:(fun ppf (k) ->
Format.fprintf ppf "The provided public key (with hash %a) is \
2018-03-13 11:13:12 +01:00
\ not registered as valid delegate key."
Signature.Public_key_hash.pp k)
Data_encoding.(obj1 (req "hash" Signature.Public_key_hash.encoding))
2018-03-13 11:13:12 +01:00
(function Unregistered_delegate (k) -> Some (k) | _ -> None)
(fun (k) -> Unregistered_delegate (k))
2016-09-08 19:13:10 +02:00
let get_contract_delegate c contract =
Storage.Contract.Delegate.get_option c contract
2016-09-08 19:13:10 +02:00
let delegate_pubkey ctxt delegate =
Storage.Contract.Manager.get_option ctxt
(Contract_repr.implicit_contract delegate) >>=? function
| None | Some (Manager_repr.Hash _) ->
2018-03-13 11:13:12 +01:00
fail (Unregistered_delegate delegate)
| Some (Manager_repr.Public_key pk) ->
return pk
2018-02-22 01:29:40 +01:00
2016-09-08 19:13:10 +02:00
let clear_cycle c cycle =
Storage.Roll.Snapshot_for_cycle.get c cycle >>=? fun index ->
Storage.Roll.Snapshot_for_cycle.delete c cycle >>=? fun c ->
Storage.Roll.Last_for_snapshot.delete (c, cycle) index >>=? fun c ->
Storage.Roll.Owner.delete_snapshot c (cycle, index) >>= fun c ->
return c
2016-09-08 19:13:10 +02:00
let fold ctxt ~f init =
Storage.Roll.Next.get ctxt >>=? fun last ->
let rec loop ctxt roll acc =
acc >>=? fun acc ->
if Roll_repr.(roll = last) then
return acc
else
Storage.Roll.Owner.get_option ctxt roll >>=? function
| None ->
loop ctxt (Roll_repr.succ roll) (return acc)
2018-02-21 22:52:33 +01:00
| Some delegate ->
loop ctxt (Roll_repr.succ roll) (f roll delegate acc) in
2016-09-08 19:13:10 +02:00
loop ctxt Roll_repr.first (return init)
let snapshot_rolls_for_cycle ctxt cycle =
Storage.Roll.Snapshot_for_cycle.get ctxt cycle >>=? fun index ->
Storage.Roll.Snapshot_for_cycle.set ctxt cycle (index + 1) >>=? fun ctxt ->
Storage.Roll.Owner.snapshot ctxt (cycle, index) >>=? fun ctxt ->
2018-02-22 01:29:40 +01:00
Storage.Roll.Next.get ctxt >>=? fun last ->
Storage.Roll.Last_for_snapshot.init (ctxt, cycle) index last >>=? fun ctxt ->
return ctxt
let freeze_rolls_for_cycle ctxt cycle =
Storage.Roll.Snapshot_for_cycle.get ctxt cycle >>=? fun max_index ->
Storage.Seed.For_cycle.get ctxt cycle >>=? fun seed ->
let rd = Seed_repr.initialize_new seed [MBytes.of_string "roll_snapshot"] in
let seq = Seed_repr.sequence rd 0l in
let selected_index =
Seed_repr.take_int32 seq (Int32.of_int max_index) |> fst |> Int32.to_int in
Storage.Roll.Snapshot_for_cycle.set ctxt cycle selected_index >>=? fun ctxt ->
fold_left_s
(fun ctxt index ->
if Compare.Int.(index = selected_index) then
return ctxt
else
Storage.Roll.Owner.delete_snapshot ctxt (cycle, index) >>= fun ctxt ->
Storage.Roll.Last_for_snapshot.delete (ctxt, cycle) index >>=? fun ctxt ->
return ctxt
)
ctxt
Misc.(0 --> (max_index - 1)) >>=? fun ctxt ->
return ctxt
2016-09-08 19:13:10 +02:00
(* Roll selection *)
module Random = struct
let int32_to_bytes i =
let b = MBytes.create 4 in
MBytes.set_int32 b 0 i;
b
let level_random seed use level =
let position = level.Level_repr.cycle_position in
Seed_repr.initialize_new seed
[MBytes.of_string ("level "^use^":");
int32_to_bytes position]
let owner c kind level offset =
let cycle = level.Level_repr.cycle in
Seed_storage.for_cycle c cycle >>=? fun random_seed ->
let rd = level_random random_seed kind level in
let sequence = Seed_repr.sequence rd (Int32.of_int offset) in
Storage.Roll.Snapshot_for_cycle.get c cycle >>=? fun index ->
Storage.Roll.Last_for_snapshot.get (c, cycle) index >>=? fun bound ->
2018-02-22 01:29:40 +01:00
let rec loop sequence =
let roll, sequence = Roll_repr.random sequence ~bound in
Storage.Roll.Owner.Snapshot.get_option c ((cycle, index), roll) >>=? function
2018-02-22 01:29:40 +01:00
| None ->
loop sequence
2018-02-21 22:52:33 +01:00
| Some delegate ->
return delegate in
Storage.Roll.Owner.snapshot_exists c (cycle, index) >>= fun snapshot_exists ->
2018-02-22 11:28:54 +01:00
fail_unless snapshot_exists (No_roll_snapshot_for_cycle cycle) >>=? fun () ->
2018-02-22 01:29:40 +01:00
loop sequence
2016-09-08 19:13:10 +02:00
end
2017-11-01 04:07:33 -07:00
let baking_rights_owner c level ~priority =
Random.owner c "baking" level priority
2016-09-08 19:13:10 +02:00
let endorsement_rights_owner c level ~slot =
Random.owner c "endorsement" level slot
2016-09-08 19:13:10 +02:00
2018-02-21 22:52:33 +01:00
module Delegate = struct
2016-09-08 19:13:10 +02:00
let fresh_roll c =
Storage.Roll.Next.get c >>=? fun roll ->
Storage.Roll.Next.set c (Roll_repr.succ roll) >>=? fun c ->
return (roll, c)
let get_limbo_roll c =
Storage.Roll.Limbo.get_option c >>=? function
2016-09-08 19:13:10 +02:00
| None ->
fresh_roll c >>=? fun (roll, c) ->
Storage.Roll.Limbo.init c roll >>=? fun c ->
2016-09-08 19:13:10 +02:00
return (roll, c)
| Some roll ->
return (roll, c)
2018-02-21 22:52:33 +01:00
let consume_roll_change c delegate =
let tokens_per_roll = Constants_storage.tokens_per_roll c in
2018-02-21 22:52:33 +01:00
Storage.Roll.Delegate_change.get c delegate >>=? fun change ->
trace Consume_roll_change
(Lwt.return Tez_repr.(change -? tokens_per_roll)) >>=? fun new_change ->
2018-02-21 22:52:33 +01:00
Storage.Roll.Delegate_change.set c delegate new_change
2016-09-08 19:13:10 +02:00
2018-02-21 22:52:33 +01:00
let recover_roll_change c delegate =
let tokens_per_roll = Constants_storage.tokens_per_roll c in
2018-02-21 22:52:33 +01:00
Storage.Roll.Delegate_change.get c delegate >>=? fun change ->
Lwt.return Tez_repr.(change +? tokens_per_roll) >>=? fun new_change ->
2018-02-21 22:52:33 +01:00
Storage.Roll.Delegate_change.set c delegate new_change
2016-09-08 19:13:10 +02:00
2018-02-21 22:52:33 +01:00
let pop_roll_from_delegate c delegate =
recover_roll_change c delegate >>=? fun c ->
2016-09-08 19:13:10 +02:00
(* beginning:
2018-02-21 22:52:33 +01:00
delegate : roll -> successor_roll -> ...
2016-09-08 19:13:10 +02:00
limbo : limbo_head -> ...
*)
Storage.Roll.Limbo.get_option c >>=? fun limbo_head ->
2018-02-21 22:52:33 +01:00
Storage.Roll.Delegate_roll_list.get_option c delegate >>=? function
| None -> fail No_roll_for_delegate
2016-09-08 19:13:10 +02:00
| Some roll ->
Storage.Roll.Owner.delete c roll >>=? fun c ->
Storage.Roll.Successor.get_option c roll >>=? fun successor_roll ->
2018-02-21 22:52:33 +01:00
Storage.Roll.Delegate_roll_list.set_option c delegate successor_roll >>= fun c ->
(* delegate : successor_roll -> ...
2016-09-08 19:13:10 +02:00
roll ------^
limbo : limbo_head -> ... *)
Storage.Roll.Successor.set_option c roll limbo_head >>= fun c ->
2018-02-21 22:52:33 +01:00
(* delegate : successor_roll -> ...
2016-09-08 19:13:10 +02:00
roll ------v
limbo : limbo_head -> ... *)
Storage.Roll.Limbo.init_set c roll >>= fun c ->
2018-02-21 22:52:33 +01:00
(* delegate : successor_roll -> ...
2016-09-08 19:13:10 +02:00
limbo : roll -> limbo_head -> ... *)
return (roll, c)
2016-09-08 19:13:10 +02:00
2018-02-21 22:52:33 +01:00
let create_roll_in_delegate c delegate delegate_pk =
consume_roll_change c delegate >>=? fun c ->
2016-09-08 19:13:10 +02:00
(* beginning:
2018-02-21 22:52:33 +01:00
delegate : delegate_head -> ...
2016-09-08 19:13:10 +02:00
limbo : roll -> limbo_successor -> ...
*)
2018-02-21 22:52:33 +01:00
Storage.Roll.Delegate_roll_list.get_option c delegate >>=? fun delegate_head ->
2016-09-08 19:13:10 +02:00
get_limbo_roll c >>=? fun (roll, c) ->
2018-02-21 22:52:33 +01:00
Storage.Roll.Owner.init c roll delegate_pk >>=? fun c ->
Storage.Roll.Successor.get_option c roll >>=? fun limbo_successor ->
Storage.Roll.Limbo.set_option c limbo_successor >>= fun c ->
2018-02-21 22:52:33 +01:00
(* delegate : delegate_head -> ...
2016-09-08 19:13:10 +02:00
roll ------v
limbo : limbo_successor -> ... *)
2018-02-21 22:52:33 +01:00
Storage.Roll.Successor.set_option c roll delegate_head >>= fun c ->
(* delegate : delegate_head -> ...
2016-09-08 19:13:10 +02:00
roll ------^
limbo : limbo_successor -> ... *)
2018-02-21 22:52:33 +01:00
Storage.Roll.Delegate_roll_list.init_set c delegate roll >>= fun c ->
(* delegate : roll -> delegate_head -> ...
limbo : limbo_successor -> ... *)
return c
2016-09-08 19:13:10 +02:00
2018-02-21 22:52:33 +01:00
let ensure_inited c delegate =
Storage.Roll.Delegate_change.mem c delegate >>= function
| true -> return c
| false ->
Storage.Roll.Delegate_change.init c delegate Tez_repr.zero
2016-09-08 19:13:10 +02:00
2018-02-21 22:52:33 +01:00
let add_amount c delegate amount =
ensure_inited c delegate >>=? fun c ->
let tokens_per_roll = Constants_storage.tokens_per_roll c in
2018-02-21 22:52:33 +01:00
Storage.Roll.Delegate_change.get c delegate >>=? fun change ->
2016-09-08 19:13:10 +02:00
Lwt.return Tez_repr.(amount +? change) >>=? fun change ->
2018-02-21 22:52:33 +01:00
Storage.Roll.Delegate_change.set c delegate change >>=? fun c ->
delegate_pubkey c delegate >>=? fun delegate_pk ->
2016-09-08 19:13:10 +02:00
let rec loop c change =
if Tez_repr.(change < tokens_per_roll) then
return c
else
Lwt.return Tez_repr.(change -? tokens_per_roll) >>=? fun change ->
2018-02-21 22:52:33 +01:00
create_roll_in_delegate c delegate delegate_pk >>=? fun c ->
loop c change in
Storage.Contract.Inactive_delegate.mem c
(Contract_repr.implicit_contract delegate) >>= fun inactive ->
if inactive then return c else loop c change
2016-09-08 19:13:10 +02:00
2018-02-21 22:52:33 +01:00
let remove_amount c delegate amount =
let tokens_per_roll = Constants_storage.tokens_per_roll c in
2016-09-08 19:13:10 +02:00
let rec loop c change =
if Tez_repr.(amount <= change)
then return (c, change)
2016-09-08 19:13:10 +02:00
else
2018-02-21 22:52:33 +01:00
pop_roll_from_delegate c delegate >>=? fun (_, c) ->
Lwt.return Tez_repr.(change +? tokens_per_roll) >>=? fun change ->
loop c change in
2018-02-21 22:52:33 +01:00
Storage.Roll.Delegate_change.get c delegate >>=? fun change ->
Storage.Contract.Inactive_delegate.mem c
(Contract_repr.implicit_contract delegate) >>= fun inactive ->
begin
if inactive then return (c, change) else loop c change
end >>=? fun (c, change) ->
Lwt.return Tez_repr.(change -? amount) >>=? fun change ->
2018-02-21 22:52:33 +01:00
Storage.Roll.Delegate_roll_list.mem c delegate >>= fun rolls ->
if not inactive && Tez_repr.(change = zero) && not rolls then
2018-02-21 22:52:33 +01:00
Storage.Roll.Delegate_change.delete c delegate
2017-05-09 17:35:56 +02:00
else
2018-02-21 22:52:33 +01:00
Storage.Roll.Delegate_change.set c delegate change
let set_inactive ctxt delegate =
ensure_inited ctxt delegate >>=? fun ctxt ->
let tokens_per_roll = Constants_storage.tokens_per_roll ctxt in
Storage.Roll.Delegate_change.get ctxt delegate >>=? fun change ->
Storage.Contract.Inactive_delegate.add ctxt
(Contract_repr.implicit_contract delegate) >>= fun ctxt ->
let rec loop ctxt change =
Storage.Roll.Delegate_roll_list.get_option ctxt delegate >>=? function
| None -> return (ctxt, change)
| Some _roll ->
pop_roll_from_delegate ctxt delegate >>=? fun (_, ctxt) ->
Lwt.return Tez_repr.(change +? tokens_per_roll) >>=? fun change ->
loop ctxt change in
loop ctxt change >>=? fun (ctxt, change) ->
Storage.Roll.Delegate_change.set ctxt delegate change >>=? fun ctxt ->
return ctxt
let set_active ctxt delegate =
Storage.Contract.Inactive_delegate.mem ctxt
(Contract_repr.implicit_contract delegate) >>= fun inactive ->
2018-03-15 13:18:15 +01:00
let current_cycle = (Raw_context.current_level ctxt).cycle in
let preserved_cycles = Constants_storage.preserved_cycles ctxt in
(* When the delegate is new or inactive, she will become active in
`1+preserved_cycles`, and we allow `preserved_cycles` for the
2018-03-15 13:18:15 +01:00
delegate to start baking. When the delegate is active, we only
give her at least `preserved_cycles` after the current cycle
2018-03-15 13:18:15 +01:00
before to be deactivated. *)
Storage.Contract.Delegate_desactivation.get_option ctxt
(Contract_repr.implicit_contract delegate) >>=? fun current_expiration ->
let expiration = match current_expiration with
| None ->
Cycle_repr.add current_cycle (1+2*preserved_cycles)
| Some current_expiration ->
let delay =
if inactive then (1+2*preserved_cycles) else 1+preserved_cycles in
let updated =
Cycle_repr.add current_cycle delay in
Cycle_repr.max current_expiration updated in
2018-03-15 13:18:15 +01:00
Storage.Contract.Delegate_desactivation.init_set ctxt
(Contract_repr.implicit_contract delegate)
expiration >>= fun ctxt ->
if not inactive then
return ctxt
else begin
ensure_inited ctxt delegate >>=? fun ctxt ->
let tokens_per_roll = Constants_storage.tokens_per_roll ctxt in
Storage.Roll.Delegate_change.get ctxt delegate >>=? fun change ->
Storage.Contract.Inactive_delegate.del ctxt
(Contract_repr.implicit_contract delegate) >>= fun ctxt ->
delegate_pubkey ctxt delegate >>=? fun delegate_pk ->
let rec loop ctxt change =
if Tez_repr.(change < tokens_per_roll) then
return ctxt
else
Lwt.return Tez_repr.(change -? tokens_per_roll) >>=? fun change ->
create_roll_in_delegate ctxt delegate delegate_pk >>=? fun ctxt ->
loop ctxt change in
loop ctxt change >>=? fun ctxt ->
return ctxt
end
2018-02-21 22:52:33 +01:00
end
2016-09-08 19:13:10 +02:00
2018-02-21 22:52:33 +01:00
module Contract = struct
let add_amount c contract amount =
get_contract_delegate c contract >>=? function
| None -> return c
| Some delegate ->
Delegate.add_amount c delegate amount
let remove_amount c contract amount =
get_contract_delegate c contract >>=? function
| None -> return c
| Some delegate ->
Delegate.remove_amount c delegate amount
2016-09-08 19:13:10 +02:00
end
let init ctxt =
Storage.Roll.Next.init ctxt Roll_repr.first
let init_first_cycles ctxt =
let preserved = Constants_storage.preserved_cycles ctxt in
(* Precompute rolls for cycle (0 --> preserved_cycles) *)
List.fold_left
(fun ctxt c ->
ctxt >>=? fun ctxt ->
let cycle = Cycle_repr.of_int32_exn (Int32.of_int c) in
Storage.Roll.Snapshot_for_cycle.init ctxt cycle 0 >>=? fun ctxt ->
snapshot_rolls_for_cycle ctxt cycle >>=? fun ctxt ->
freeze_rolls_for_cycle ctxt cycle)
(return ctxt) (0 --> preserved) >>=? fun ctxt ->
let cycle = Cycle_repr.of_int32_exn (Int32.of_int (preserved + 1)) in
(* Precomputed a snapshot for cycle (preserved_cycles + 1) *)
Storage.Roll.Snapshot_for_cycle.init ctxt cycle 0 >>=? fun ctxt ->
snapshot_rolls_for_cycle ctxt cycle >>=? fun ctxt ->
(* Prepare storage for storing snapshots for cycle (preserved_cycles+2) *)
let cycle = Cycle_repr.of_int32_exn (Int32.of_int (preserved + 2)) in
Storage.Roll.Snapshot_for_cycle.init ctxt cycle 0 >>=? fun ctxt ->
return ctxt
let snapshot_rolls ctxt =
let current_level = Raw_context.current_level ctxt in
let preserved = Constants_storage.preserved_cycles ctxt in
let cycle = Cycle_repr.add current_level.cycle (preserved+2) in
snapshot_rolls_for_cycle ctxt cycle
let cycle_end ctxt last_cycle =
let preserved = Constants_storage.preserved_cycles ctxt in
begin
match Cycle_repr.sub last_cycle preserved with
| None -> return ctxt
| Some cleared_cycle ->
clear_cycle ctxt cleared_cycle
end >>=? fun ctxt ->
let frozen_roll_cycle = Cycle_repr.add last_cycle (preserved+1) in
freeze_rolls_for_cycle ctxt frozen_roll_cycle >>=? fun ctxt ->
Storage.Roll.Snapshot_for_cycle.init
ctxt (Cycle_repr.succ (Cycle_repr.succ frozen_roll_cycle)) 0 >>=? fun ctxt ->
return ctxt