Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(forge): apply startPrank with delegate only for top calls #10069

Merged
merged 5 commits into from
Mar 31, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions crates/cheatcodes/src/inspector.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1013,8 +1013,8 @@ where {
// Apply our prank
if let Some(prank) = &self.get_prank(curr_depth) {
// Apply delegate call, `call.caller`` will not equal `prank.prank_caller`
if let CallScheme::DelegateCall | CallScheme::ExtDelegateCall = call.scheme {
if prank.delegate_call {
if prank.delegate_call && curr_depth == prank.depth {
if let CallScheme::DelegateCall | CallScheme::ExtDelegateCall = call.scheme {
call.target_address = prank.new_caller;
call.caller = prank.new_caller;
let acc = ecx.journaled_state.account(prank.new_caller);
Expand Down
41 changes: 41 additions & 0 deletions testdata/default/cheats/Prank.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -550,3 +550,44 @@ contract PrankTest is DSTest {
);
}
}

contract Issue9990 is DSTest {
Vm constant vm = Vm(address(bytes20(uint160(uint256(keccak256("hevm cheat code"))))));

function testDelegatePrank() external {
A a = new A();
vm.etch(address(0x11111), hex"11");
vm.startPrank(address(0x11111), true);
(bool success,) = address(a).delegatecall(abi.encodeWithSelector(A.foo.selector));
require(success, "MyTest: error calling foo on A");
vm.stopPrank();
}
}

// Contracts for DELEGATECALL test case: testDelegatePrank
contract A {
function foo() external {
require(address(0x11111) == msg.sender, "wrong msg.sender in A");
require(address(0x11111) == address(this), "wrong address(this) in A");
B b = new B();
(bool success,) = address(b).call(abi.encodeWithSelector(B.bar.selector));
require(success, "A: error calling B.bar");
}
}

contract B {
function bar() external {
require(address(0x11111) == msg.sender, "wrong msg.sender in B");
require(0x769A6A5f81bD725e4302751162A7cb30482A222d == address(this), "wrong address(this) in B");
C c = new C();
(bool success,) = address(c).delegatecall(abi.encodeWithSelector(C.bar.selector));
require(success, "B: error calling C.bar");
}
}

contract C {
function bar() external view {
require(address(0x11111) == msg.sender, "wrong msg.sender in C");
require(0x769A6A5f81bD725e4302751162A7cb30482A222d == address(this), "wrong address(this) in C");
}
}