runtimeverification / runtimeverification/mir-semantics
Constrain test inputs for fuzzing
Nobody has claimed this yet.
- Dominant language
- Python
- Stars
- 52
- Forks
- 5
- PR merge metrics
- No merged PRs in 30d
Description
Cheatcodes like cheatcode_is_rent eventually end up executing a rule like the following:
rule #addRent(Aggregate(variantIdx(0), _:List ListItem(Integer(DATA_LEN, 64, false))) #as P_ACC)
=> PAccountRent(
#toPAcc(P_ACC),
PRent(
U64(?LMP_PER_BYTEYEAR),
F64(?_EXEMPT_THRESHOLD),
U8(?BURN_PCT)
)
)
ensures 0 <=Int ?LMP_PER_BYTEYEAR andBool ?LMP_PER_BYTEYEAR <Int 1 <<Int 64
andBool 0 <=Int ?BURN_PCT andBool ?BURN_PCT <Int 256
andBool DATA_LEN ==Int 17 // size_of(Rent), see pinocchio::sysvars::rent::Rent::LEN
Here, the last ensures constraint, DATA_LEN ==Int 17, is on an LHS variable that comes from an unconstrained function parameter:
pub fn test_process_initialize_mint_freeze(accounts: &[AccountInfo; 2], instruction_data: &[u8; 66]) -> ProgramResult {
cheatcode_is_rent(&accounts[1]);
...
Injecting constaints like this works for symbolic execution, but for fuzzing, the input is either in the right format in the first place, or we have to throw it away. The following solutions exist:
- Annotate the source code with extra constraints, and take them into consideration when generating the inputs.
- Modify already generated inputs
a. using dedicated cheatcodes
b. internally in existing cheatcodes where necessary
Contributor guide
No contributing guide indexed for this repository
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Research direction
Start with the cheatcode_is_rent rule #addRent example and the test_process_initialize_mint_freeze entry point described in the issue. Compare the two proposed approaches for constraining generated inputs, then establish how constraints should be selected and verified before implementation; done means fuzzing no longer discards inputs that violate required formats.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- rust
- Domain
- testing-qa
- Issue type
- Feature
- Difficulty
- 5/5
- Estimated time
- Over a week
- Activity status
- Stale
- Clarity
- Needs clarification
- Newbie friendliness
- 25/100