You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Submit votes to the block producer via aggregation through clusters
Currently, there is no verification being done on nodes running containers. To account for byzantine behavior in public networks, verifying the state of containers to make sure they are running is crucial. Otherwise, malicious nodes may simply extract keys from containers and submit signed proofs without actually running the container.
The suggested protocol is as follows:
Nodes running containers must periodically extract the state using CRIU, and submit the hash of the state to be saved in the block.
Each k slots, a new subset of validators $V$ self-elects into the a new roles "quorum member". These nodes form a quorum $Q$.
Each slot, the quorum uses the same RNG to select one or more nodes ${k_0, ... k_n } € K$ for verification such that $K \subset V$, $n \lt |Q|$ and $k \notin Q$
For each $k_n$, Quorum members trace-back the chain to find the last state verification proof $k_p = hash( proof(k_n, block))$
Quorum members query $k_n$ using the obtained proof $k_p$ to receive the actual CRIU state, which is verified again with $k_p$,
Quorum members attempt to restore the container given the state.
Quorum members submit their votes based on the success of restoration, the aggregated vote is included in the next block.
Validators verify the votes.
To produce periodic proofs, nodes must continuously submit valid state proofs. The only reasonable way to produce valid CRIU states is for nodes to actually run the container, and store the submitted proofs locally pending verification.
There are a few parameters that need to be defined pending some simulations and testing such as:
Determine the best quorum size, and frequency of election (likely not per slot).
How many nodes should be verified per each Quorum.
What is the retention rate enforced on nodes to store the CRIU state considering storage. This must reflect the Quorum proof selection algorithm.
The text was updated successfully, but these errors were encountered:
Progress:
Currently, there is no verification being done on nodes running containers. To account for byzantine behavior in public networks, verifying the state of containers to make sure they are running is crucial. Otherwise, malicious nodes may simply extract keys from containers and submit signed proofs without actually running the container.
The suggested protocol is as follows:
To produce periodic proofs, nodes must continuously submit valid state proofs. The only reasonable way to produce valid CRIU states is for nodes to actually run the container, and store the submitted proofs locally pending verification.
There are a few parameters that need to be defined pending some simulations and testing such as:
The text was updated successfully, but these errors were encountered: