-
Notifications
You must be signed in to change notification settings - Fork 323
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: cairo precompile revert for child contexts
- Loading branch information
Showing
3 changed files
with
92 additions
and
5 deletions.
There are no files selected for viewing
36 changes: 36 additions & 0 deletions
36
solidity_contracts/src/CairoPrecompiles/SubContextPrecompile.sol
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
// SPDX-License-Identifier: MIT | ||
pragma solidity >=0.7.0 <0.9.0; | ||
|
||
import {CairoCounterCaller} from "./CairoCounterCaller.sol"; | ||
|
||
contract SubContextPrecompile { | ||
RevertingSubContext immutable revertingSubContext; | ||
|
||
constructor(address _cairo_counter_caller) { | ||
revertingSubContext = new RevertingSubContext(_cairo_counter_caller); | ||
} | ||
|
||
function exploitLowLevelCall() public { | ||
(bool success,) = address(revertingSubContext).call(abi.encodeWithSignature("reverting()")); | ||
} | ||
|
||
function exploitChildContext() public { | ||
revertingSubContext.reverting(); | ||
} | ||
} | ||
|
||
contract RevertingSubContext { | ||
CairoCounterCaller immutable cairo_counter_caller; | ||
uint256 dummyCounter; | ||
|
||
constructor(address _cairo_counter_caller) { | ||
cairo_counter_caller = CairoCounterCaller(_cairo_counter_caller); | ||
} | ||
|
||
function reverting() public { | ||
dummyCounter = 1; | ||
cairo_counter_caller.incrementCairoCounter(); | ||
// force a revert after a call to a cairo precompile in a subcontext | ||
require(false); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters