Platform: Code4rena
Start Date: 03/03/2023
Pot Size: $90,500 USDC
Total HM: 4
Participants: 42
Period: 7 days
Judge: 0xean
Total Solo HM: 2
Id: 219
League: ETH
Rank: 3/42
Findings: 2
Award: $8,058.24
🌟 Selected for report: 1
🚀 Solo Findings: 0
7985.8137 USDC - $7,985.81
https://github.com/aragon/osx/blob/develop/packages/contracts/src/core/dao/DAO.sol#L186 https://github.com/aragon/osx/blob/develop/packages/contracts/src/plugins/governance/majority-voting/MajorityVotingBase.sol#L286 https://github.com/aragon/osx/blob/develop/packages/contracts/src/plugins/governance/majority-voting/MajorityVotingBase.sol#L459
The execute
function from the DAO.sol
contract allow to execution of any call to any address if the caller has appropriate permission. Some calls are expected to be always successfully executed, and some may revert and execute
will continue the execution.
The following code may call and handle call status.
address to = _actions[i].to; (bool success, bytes memory response) = to.call{value: _actions[i].value}( _actions[i].data ); if (!success) { // If the call failed and wasn't allowed in allowFailureMap, revert. if (!hasBit(_allowFailureMap, uint8(i))) { revert ActionFailed(i); } // If the call failed, but was allowed in allowFailureMap, store that // this specific action has actually failed. failureMap = flipBit(failureMap, uint8(i)); }
Also, the function is expected to be used in a different scenario, where the caller may be a user, voter, etc. (See MajorityVotingBase
). So the caller is not a trusted entity and that means any manipulation of the DAO call should be avoided.
The problem is that caller may choose the gas with which the code is executed. If the child call execution spends enough gas then the user may choose that amount of gas, that child call frame fails, but the left gas is enough to successfully finish DAO:execute
function.
Please note, even though the execute
pass all gas to the child call, actually only 63/64 gas is passed and 1/64 of gas is left on the parent call (EIP-150).
The DAO starts majority voting, and users who have DAO tokens may vote for the proposal. The proposal is to call one target
protocol, which may fail in case of an inner reason. So the DAO set that the call may fail. The approximate gas that is needed to finish the call to the target
contract is 700k
. A malicious voter call execute
function with 711.1k
of gas. Since 63/64 * 711.1 < 700, the requested call will fail. And the remaining gas is still sufficient to end the execute
function logic.
The user may forcefully fail the inner call from the execute
function. Also, anyone who will use the usual eth_estimateGas
for the gas estimation for the execute
function will accidentally calculate the amount of gas that will fail the call.
Since majority voting is hard to process with many users involved, creating another proposal may create a lot of pain.
Add the require that gas after the call is bigger than gas before / 64.
uint256 gasBefore; // Do call... require(gasleft() > gasBefore/64);
#0 - c4-judge
2023-03-12T14:38:16Z
0xean marked the issue as primary issue
#1 - c4-sponsor
2023-03-14T14:34:41Z
novaknole20 marked the issue as sponsor confirmed
#2 - c4-judge
2023-03-18T22:53:55Z
0xean marked the issue as satisfactory
#3 - c4-judge
2023-03-18T22:54:01Z
0xean marked the issue as selected for report