Concordium / concordium-rust-smart-contracts

Libraries and tools for writing and testing smart contracts on Concordium
https://docs.rs/concordium-std/latest/concordium_std/
Mozilla Public License 2.0
57 stars 35 forks source link

Fix bug in `StateMap::get_mut` #343

Closed Bargsteen closed 1 year ago

Bargsteen commented 1 year ago

Purpose

This PR fixes an issue in StateMap::get_mut which allowed users to get inconsistent views of the data. There is an example below.

When using StateMap::get_mut a value is loaded from the persistent storage into memory. The in-memory value can then be mutated and it will be written to the persistent storage once the value is dropped (via the Drop implementation on StateRefMut).

If you are able to look up multiple mutable values from the state at once, you can get inconsistent views of the data. Here is an example:

image

token_count has the in-memory value x + 2 and token_count has the value x as it is freshly loaded from persistence.

For this reason, we use lifetimes to ensure that you cannot have multiple mutable references to the state at the same time. Or, at least that was what we meant to do! We accidentally gave an immutable reference of self which exactly allows the example above to run instead of being caught by the borrow-checker.

Changes

Checklist