Summary
A member of the Ceto Swap team reported that the IC incorrectly refunded an excessive amount of cycles to a single canister upon the completion of a call. The canister sent an install_code
message that trapped during execution and created a reject response that was above the maximum allowed size. The unexpectedly large response size triggered an underflow in the function that refunds cycles upon the completion of a call, resulting in the canister that originally sent the install_code
message being credited with a huge amount of cycles. The discovered bugs have existed since Genesis.
A new replica version was proposed in proposal 52627:
- The bugs that were discovered are fixed.
- The cycles balance of the affected canister was fixed by subtracting the incorrectly added cycles.
Thank you to the Ceto Swap developer (who wished not to be identified) for alerting DFINITY and working alongside DFINITY to resolve this issue. While a Vulnerability Rewards Program is still in the process of being formalized, DFINITY will award an appropriate reward for the finding. In the meantime, please flag potential vulnerabilities through the Vulnerability Disclosure Program or write to securitybugs@dfinity.org.
Impact
The canister that hit the above scenario ended up with a huge amount of cycles in their balance. Further, the canister’s controller noticed that the canister was trapping when attempting to execute messages on it because it was using an older version of the System Api that only supported 64-bit cycles balances, which led to some downtime for this individual canister. After the subnet was updated to the newly elected replica version, the incorrectly added cycles were removed and the canister was functional again. There was no impact for other canisters.
Timeline (UTC)
All times are in UTC on 2022-04-01 (unless explicitly stated otherwise):
- 06:31: A very large error response is returned for canister install message on subnet mpubz, causing an underflow in refunded cycles when processed.
- 07:13: An engineer shares a message from a ceto-swap developer who has a canister with a very large Cycles balance.
- 07:24: The team starts investigating.
- 09:00: A bug is found in
CyclesAccountManager::response_cycles_refund
that performs unchecked subtraction of the actual payload size from the maximum payload size. The theory is that the actual payload size exceeds the maximum payload size and causes the underflow. The team is searching for cases where the payload size exceeds the limit to confirm the theory. - 09:37: Quiet period starts: Mirroring to the public github repository is disabled according to the IC’s security patch policy until the issue has been fixed.
- 09:39: A fix is prepared for the underflow bug discovered above.
- 11:26: A fix is prepared for the cycles balance of the affected canister to subtract the incorrectly added cycles.
- 12:00: Issues with reproducibility of builds delay the process of rolling out the fixes.
- 12:08: A bug in the system api (
ic0.trap
) that allows responses bigger than the maximum to be produced is identified and a fix is prepared. This is confirmed to be the case that the canister hit. - 12:30: The reproducibility issues are fixed by merging another patch to the release branch.
- 13:41: A reproducible build including all fixes succeeds.
- 14:52: NNS proposal to elect the replica version with fixes
- 15:00: NNS proposal to update mpubz
- 15:25-19:15: Series of proposals to update remaining subnets except NNS
- 2022-04-04 07:15: NNS proposal to update NNS
- 2022-04-04 17:40: Quiet period ends and the source code for the elected replica version with fixes is now publicly available on github.
What went wrong?
- The huge increase in cycles was not immediately detected.
- An underflow bug in calculating the cycles refund when processing the response resulted in a canister getting a huge amount of cycles as a refund.
- A bug in
ic0.trap
allowed a canister to produce response payloads larger than the maximum limit. - Reproducibility issues with the build system caused delays of the fix rollout.
What went right?
- The team quickly audited the code for the vulnerabilities and discovered the cases that can lead to potential underflows in a canister’s cycles balance.
Action items
- Add the regression tests that the team used when reproducing the issue.
- Audit remaining parts of the code that deal with cycles and add more defensive checks.
- Be more defensive in checking various invariants that should hold (e.g. response size is not bigger than max allowed) across the system.
- Audit the replica codebase for integer underflow/overflow errors.
Technical details
Whenever a canister sends a message to another canister it has to pay in cycles for both the request and the eventual response that it will receive. Given that the size of the response is not known in advance, the system reserves an amount of cycles that would be needed for the maximum possible response size (currently 2MB) and refunds any excess amount after the response has been processed by adding back to the canister’s balance the amount of cycles that correspond to the difference between the maximum response size and the actual response size. For example, a canister that sends a request and gets a 500KB response will first pay for a 2MB response and then get a refund for the cost of 2MB - 500KB = 1.5MB.
The incident was caused by a combination of bugs that existed since Genesis. A canister attempted to upgrade another canister by sending an install_code
message to the management canister. The message trapped and created a reject response that was a lot bigger than the maximum limit because ic0.trap
incorrectly allowed a canister to include an arbitrarily large error message. That, in turn, triggered an underflow when calculating the difference between maximum response size and actual response size. The result was to calculate a huge cycles refund which was credited to the affected canister’s balance.
The fixes in the replica version elected in proposal 52627 enforced that ic0.trap
cannot produce a response bigger than the maximum limit, fixed the bug when calculating the difference between maximum response size and actual response size by performing a checked subtraction and adjusted the affected canister’s balance by subtracting the amount of cycles that were incorrectly added in the first place.