Impact
For some in-circuit values, it is possible to construct two valid decomposition to bits. In addition to the canonical decomposition of a
, for small values there exists a second decomposition for a+r
(where r
is the modulus the values are being reduced by). The second decomposition was possible due to overflowing the field where the values are defined.
Internally, the comparison methods frontend.API.Cmp
and frontend.API.IsLess
used binary decomposition and checked the bitwise differences. This allows a malicious prover to construct a valid proof for a statement a < b
even if a > b
.
The issue impacts all users using API.Cmp
or API.IsLess
methods. Additionally, it impacts the users using bits.ToBinary
or API.ToBinary
methods if full-width decomposition is requested (the default behaviour if no options are given).
The issues does not impact comparison methods in field emulation (package std/math/emulated
) and dedicated comparison package (std/math/cmp
).
Patches
Fix has been implemented in pull request #835 and merged in commit 59a4087 to master branch. The release v0.9.0 and onwards include the fix.
The fix added additional comparison of the decomposed bit-vector to the modulus of the in-circuit values.
Workarounds
Upgrading to version v0.9.0 should fix the issue without needing to change the calls to value comparison methods.
Alternatively, users can use the std/math/cmp
gadget, which additionally allows to bound the number of bits being compared, making the comparisons more efficient if the bound on the absolute difference of the values is known.
References
Acknowledgement
The vulnerability was reported by Marcin Kostrzewa @ Reilabs.
Impact
For some in-circuit values, it is possible to construct two valid decomposition to bits. In addition to the canonical decomposition of
a
, for small values there exists a second decomposition fora+r
(wherer
is the modulus the values are being reduced by). The second decomposition was possible due to overflowing the field where the values are defined.Internally, the comparison methods
frontend.API.Cmp
andfrontend.API.IsLess
used binary decomposition and checked the bitwise differences. This allows a malicious prover to construct a valid proof for a statementa < b
even ifa > b
.The issue impacts all users using
API.Cmp
orAPI.IsLess
methods. Additionally, it impacts the users usingbits.ToBinary
orAPI.ToBinary
methods if full-width decomposition is requested (the default behaviour if no options are given).The issues does not impact comparison methods in field emulation (package
std/math/emulated
) and dedicated comparison package (std/math/cmp
).Patches
Fix has been implemented in pull request #835 and merged in commit 59a4087 to master branch. The release v0.9.0 and onwards include the fix.
The fix added additional comparison of the decomposed bit-vector to the modulus of the in-circuit values.
Workarounds
Upgrading to version v0.9.0 should fix the issue without needing to change the calls to value comparison methods.
Alternatively, users can use the
std/math/cmp
gadget, which additionally allows to bound the number of bits being compared, making the comparisons more efficient if the bound on the absolute difference of the values is known.References
Acknowledgement
The vulnerability was reported by Marcin Kostrzewa @ Reilabs.