Address EIP-4626 infaltion attacks with virtual shares and assets
Introduction
As some of you may know, EIP-4626 is vulnerable to the so-called inflation attacks. This attack results from the possibility to manipulate the exchange rate and front run a victim’s deposit when the vault has low liquidity volume.
This is made possible by the absence of slipage protection in the deposit function. There exist several approaches to mitigate this risk. This includes using a EIP-4626 router, or using dedicated functions like the ones proposed in EIP-5143. However, this still leaves interaction between EOAs and standard EIP-4626 vaults somehow vulnerable.
At OpenZeppelin, we hope to provide an implementation that remains as simple and unopinionated as possible, while also providing the best security possible. As such, we have been working on a solution that would address this issue with minimal impact on the vault.
We are currently in the process of adding what we call a “decimal offset” together with “virtual assets and shares”. This post documents this addition to the vault. We are hoping to gather feedback by the EIP-4626 community because releasing that.
Reminder: the inflation attack
Glossary:
- Asset or underlying asset: an ERC-20 token that is used by the vault as collateral
- Shares: the ERC-20 token that is used to represent ownership over the vault.
When a vault is not empty, the balance between shares and assets define the vault exchange rate. This rate is usually applied to further operations such as deposits, withdraw, etc. This rate is produced using the totalAssets
(which is often the balance of te vault in underlying assets) and the vaults totalSupply
(which is the ammount of shares that exist).
If any of these values is 0, than the rate is not properly defined, and some operations are problematic. That is why, when a vault is empty, the exchange rate is often defined using a fallback. This fallback corresponds to the “default” exchange rate, which is often dictated by the decimals of both contracts.
We used to do that in our 4.7 release
Code
function _convertToShares(uint256 assets, Math.Rounding rounding) internal view virtual returns (uint256 shares) {
uint256 supply = totalSupply();
return
(assets == 0 || supply == 0)
? assets.mulDiv(10**decimals(), 10**_asset.decimals(), rounding)
: assets.mulDiv(supply, totalAssets(), rounding);
}
function _convertToAssets(uint256 shares, Math.Rounding rounding) internal view virtual returns (uint256 assets) {
uint256 supply = totalSupply();
return
(supply == 0)
? shares.mulDiv(10**_asset.decimals(), 10**decimals(), rounding)
: shares.mulDiv(totalAssets(), supply, rounding);
}
The idea of the inflation attack is to tamper with that exchange rate just before a user deposits token to the vaults.
Lets say Alice wants to deposit 1 token (with decimal 18, so 1e18 units) to the vault calling deposit. This is how the attack would unfold.
- The vault is empty.
- The exchange rate is the default 1 share per asset
- Bob sees Alice’s transaction in the mempool and decide to sandwitch it.
- Bob deposits 1 wei to the vault, gets 1 wei of shares in exchange.
- The exchange rate is now 1 share per asset
- Bob transfers 1 token to the vault (1e18 units) using an ERC-20 transfers. No shares are minted in exchange.
- The rate is now 1 share for 1e18+1 asset
- Alice deposit is executed. Her 1e18 units of token are not even worth one unit of shares. So the contract takes the assets, but mint no shares. Alice basically donated her tokens.
- The rate is now 1 share for 2e18+1 asset
- Bob redeem its 1 wei of shares, getting the entire vault assets in exchange. This includes all the token he deposited and transfered plus Alice’s tokens.
The main issue here was that Alice was not able to limit the slippage and make the transaction revert when the shares she got were diluted away. The math here are an extrem example, showing how Alice can lose everything, but other number could leave Alice with an arbitrary small (but not null) amount. So just reverting is the number of shares minted by a deposit is 0 is not solving the attack scenario.
Proposed mitigation
I believe this issue would be mitigated if the vault represented the shares with more precision that the assets. If shares were not represented with the same 18 decimals as the asset, but with 36, then Alice’s assets would have been represented properly. In order to dilute Alice’s assets, the attacker would have needed to inflate the exchange rate by ad additional factor of 1e18. The attacker donation would have required 1e18 tokens (1e36 wei).
A way to achieve that is to take an additional parameter when constructing the vault, the decimal offset. This parameter is used such that the decimals
exposed by the EIP-4626 vault’s are potentially larger than the underlying asset’s.
In addition, this offset is used to add virtual shares and assets to the vault. When computing the exchange rate, the ratio is no longer between totalAssets()
and totalSupply()
. It is the ratio between totalAssets() + 1
and totalSupply()+10**offset
. Therefore, even when the vault is empty, the rate is properly definned, and no special treatment is need.
If we replay the previous attack scenario with an offset of 9
:
- The vault is empty.
- The exchange rate is the default 1e9 share units for each token unit (consequence of the virtual assets and shares)
- Bob sees Alice’s transaction in the mempool and decide to sandwitch it.
- Bob deposits 1 wei to the vault, gets 1e9 wei of shares in exchange.
- The exchange rate is still 1e9 share units for each token unit
- Bob transfers 1 token to the vault (1e18 units) using an ERC-20 transfers. No shares are minted in exchange.
- The rate is now 2e9 share units (1e9 for Bob + 1e9 virtual) for 1e18+2 token units (1 from bob, 1 virtual and 1e18 from the donation), ie about 5e8 token units per share unit
- This action inflated the rate by a factor 5e17, but thanks to the offset, we have some precision left to represent Alice’s upcomming deposit
- The rate is now 2e9 share units (1e9 for Bob + 1e9 virtual) for 1e18+2 token units (1 from bob, 1 virtual and 1e18 from the donation), ie about 5e8 token units per share unit
- Alice deposit is executed. Her 1e18 units of token are worth 2e9-1 unites of shares.
- The rate is now 4e9-1 share units for 2e18+2 token units. ie about 5e8 token units per share unit
- If Alice redeems, she would get almost what she put in, losing only some wei of asset to the rounding.
- If Bob redeems, we would only get half of what he donated to the vault, the other half being capture by the vault as he owned only 50% of the shares when the donation happens.
Bob could have made a bigger deposit before the donation, so that he was able to recover a larger fraction of that donation… but that would have increassed the number of shares, requiering an even bigger donation to try to inflate the exchange rate.
Analysis
By creating a large number of virtual shares (10**offset) we increase by offset
orders of magnitude the size of the donation necessary to inflate the exchange rate. In addition, the virtual assets/shares captures some of the donation, forcing the attacker to do an bigger deposit, and a bigger donation. If the attacker doesn’t want to lost more than .1% to the vault, it must buy in at least 1000 times what the vault’s virtual asset represent, adding to the totalSupply()
and increassing the size of its donation by the same factor. Doing so, he decreases the faction lost to the vault, but not the absolute value. The virtual assets and shares effectivelly set a high price that the attacker has to pay to achieve inflation.
Drawback
While the offset can be set to 0
to have similar decimals between the vault and the underlying asset, and minimize the amount of virtual assets and shares the vaults account for, the presence of 1 unit of virtual asset and 1 unit of virtual share does slightly modify the behavior of the contract.
Any developper that doesn’t like this approach can revert back to the previous one by overiding _convertToShares
and _convertToAssets
back to the 4.8 or 4.7 implementation.
Where we need you
The approach discussed above has been implemented in this PR. We welcome feedback and reviews. If you are a user of EIP-4626 we value your insight. Does this approach make sens to you? Would using it affect you positivelly or negativelly?