Impact
Possible consensus split given maliciously-crafted AttesterSlashing
or ProposerSlashing
being included on-chain.
Since we represent uint64
values as native javascript number
s, there is an issue when those variables with large (greater than 2^53) uint64
values are included on chain. In those cases, Lodestar may view valid AttesterSlashing
or ProposerSlashing
as invalid, due to rounding errors in large number
values. This causes a consensus split, where Lodestar nodes are forked away from the main network.
Similarly Lodestar may consider invalid ProposerSlashing
as valid, thus including in proposed blocks that will be considered invalid by the network.
Patches
#3977
Workarounds
Use BigInt
to represent Slot
and Epoch
values in AttesterSlashing
and ProposerSlashing
objects. BigInt
is too slow to be used in all Slot
and Epoch
cases, so we will carefully use BigInt
just where necessary for consensus.
Impact
Possible consensus split given maliciously-crafted
AttesterSlashing
orProposerSlashing
being included on-chain.Since we represent
uint64
values as native javascriptnumber
s, there is an issue when those variables with large (greater than 2^53)uint64
values are included on chain. In those cases, Lodestar may view validAttesterSlashing
orProposerSlashing
as invalid, due to rounding errors in largenumber
values. This causes a consensus split, where Lodestar nodes are forked away from the main network.Similarly Lodestar may consider invalid
ProposerSlashing
as valid, thus including in proposed blocks that will be considered invalid by the network.Patches
#3977
Workarounds
Use
BigInt
to representSlot
andEpoch
values inAttesterSlashing
andProposerSlashing
objects.BigInt
is too slow to be used in allSlot
andEpoch
cases, so we will carefully useBigInt
just where necessary for consensus.