ADR 022: Fault Resolutions
Changelog
- 17th July 2024: Initial draft
Status
Proposed
Context
Partial Set Security (PSS) allows a subset of a provider chain's validator set to secure a consumer chain. While this shared security scheme has many advantages, it comes with a risk known as the subset problem. This problem arises when a malicious majority of validators from the provider chain collude and misbehave on a consumer chain. This threat is particularly relevant for Opt-in chains, since they might be secured by a relatively small subset of the provider's validator set.
In cases of collusion, various types of misbehaviour can be performed by the validators, such as:
- Incorrect executions to break protocol rules in order to steal funds.
- Liveness attacks to halt the chain or censor transactions.
- Oracle attacks to falsify information used by the chain logic.
Currently, these types of attacks aren't handled in PSS, leaving the malicious validators unpunished.
A potential solution for the handling of incorrect executions is to use fraud proofs. This technology allows proving incorrect state transitions of a chain without a full node. However, this is a complex technology and there is no framework that works for Cosmos chains to this day.
To address this risk in PSS, a governance-gated slashing solution can be used to handle all types of misbehavior resulting from validator collusion. As fraud proof technology matures, part of the solution could potentially be automated.
This ADR proposes a fault resolution mechanism, which is a type of governance proposal that can be used to vote on the slashing of validators that misbehave on Opt-in consumer chains (see fault resolutions in "Preventing Intersubjective faults in ICS").
In what follows, we describe the implementation of a fault resolution mechanism for any intersubjective fault. Note that in the first iteration, it is only incorrect executions that are defined as a fault and are therefore dealt with by the mechanism (see Incorrect Executions in "Preventing Intersubjective faults in ICS").
Decision
The proposed solution introduces a new consumer-fault-resolution
governance proposal type to the provider
module, which allows validators to be penalised for committing faults on an Opt-in consumer chain.
If such a proposal passes, the proposal handler tombstones all the validators listed in the proposal and slashes them by a per-consumer chain predefined amount or the default value used for double-sign infractions.
The proposal has the following fields:
- Consumer Chain: The consumer chain ID that the fault was related to.
- Validators: The list of all the validators to be slashed.
- Evidence: A free text form.
- Fault Type: The fault definition type.
- Description: This field is automatically generated by aggregating the fault definition corresponding to the Fault Type and the Evidence fields.
Each fault type is mapped to a fault definition that precisely describes an intersubjective fault, such as an incorrect execution, and explains why it qualifies as a slashable fault. Refer to the fault definitions section in "Preventing Intersubjective faults in ICS" for more details. Note that the text of each fault definition is stored as a string constant in the provider code.
In addition, to prevent spamming, users must pay a default fee of 100ATOM
to submit a fault resolution to the provider.
This amount is stored in a new consumer-fault-resolution-fee
parameter of the provider
module.
Validations
The submission of a fault resolution succeeds only if all of the following conditions are met:
- the consumer chain is an Opt-in chain
- all listed validators were opted-in to the consumer chain in the past unbonding-period
- the
100ATOM
fee is provided
States
Additional states are added to the provider
modules:
- The timestamps that record when validators opts in or opts out of a Opt-in consumer chain. Note that these timestamps can be pruned after an unbonding period elapses following a validator's opts-out.
ConsumerValidatorSubscriptionTimestampPrefix | len(consumerID) | consumerID | valAddr | ProtocolBuffer(ConsumerValSubscriptionTimestamp)
message {
// timestamp recording the last time a validator opted in to the consumer chain
google.protobuf.Timestamp join_time = 1;
// timestamp recording the last time a validator opted out of the consumer chain
google.protobuf.Timestamp leave_time = 2;
}
- Pre-defined slashing factor per-consumer chain for each defined fault (optional).
ConsumerFaultSlashFactorPrefix | len(consumerID) | consumerID | faultType -> SlashFactor
Additional considerations
Fault resolution proposals should be expedited
to minimize the time given to the listed validators
to unbond to avoid punishment (see Expedited Proposals) .
Consequences
Positive
- Provide the ability to slash and tombstone validators for committing incorrect executions on Opt-in consumer chains.
Negative
- Assuming that malicious validators unbond immediately after misbehaving, a fault resolution has to be submitted within a maximum of two weeks in order to slash the validators.
Neutral
- Fault definitions need to have a clear framework in order to avoid debates about whether an attack has actually taken place.