Platform: Code4rena
Start Date: 23/02/2024
Pot Size: $36,500 USDC
Total HM: 2
Participants: 39
Period: 7 days
Judge: Dravee
Id: 338
League: ETH
Rank: 31/39
Findings: 1
Award: $53.72
🌟 Selected for report: 0
🚀 Solo Findings: 0
53.7155 USDC - $53.72
According to the provided documentation: Principal Token is ERC5095
. This is the main invariant defined in the project's description:
This is the core contract of Spectra. The Principal Token is [EIP-5095](https://eips.ethereum.org/EIPS/eip-5095)
**Principal Token is ERC5095**
During the code-review process, some deviations from the EIP-5095 had been detected. Lack of compliance may cause unexpected behavior. Other protocols that integrate with contract may incorrectly assume that it's EIP-5095 compliant - especially that documentation states that it's ERC-5095. Any deviation from this standard will broke the composability and may lead to fund loss. While protocol's implements a contract and describes it as ERC-5095, it should fully conform to ERC-5095 standard.
According to EIP-5095, function maxWithdraw()
MUST return 0 when withdrawals are entirely (or even temporarily) disabled. The current implementation does not follow this requirement. Moreover, according to EIP-5095, function maxWithdraw()
MUST NOT revert. The current implementation does not follow this requirement.
The very similar issue (functions maxWithdraw
and maxRedeem
do not return zero - when withdrawal is paused) was evaluated as Medium during the previous Code4rena contest:
The very similar issue (functions max*
do not return 0 when contract is paused) was evaluated as High during the previous Code4rena contest:
Moreover, during the previous C4 contests, lack of EIP compliance was usually evaluated as High/Medium
Taking into consideration the previous contests, I've decided to evaluate this issue as Medium.
PrincipalToken
inherits from PausableUpgradeable
and implements external pause()
/unPause()
functions - thus it can be paused.
According to the provided documentation, PrincipalToken.sol
should be compliant with ERC5095:
EIP Compliance: PrincipalToken.sol : Should comply with ERC5095 and ERC2612
According to EIP-5095, function maxWithdraw()
:
MUST factor in both global and user-specific limits, like if withdrawals are entirely disabled (even temporarily) it MUST return 0. MUST NOT revert.
However, the current implementation of maxWithdraw
does not obey above rules.
While protocol is paused, according to EIP-5095 - function maxWithdraw
MUST return 0: if withdrawals are entirely disabled (even temporarily) it MUST return 0.
.
Moreover, function MUST NOT revert.
The current implementation implements whenNotPaused
modifier. This implies, that when protocol is paused - function maxWithdraw
won't return 0 - but it will revert.
This violates two EIP-5095 rules (MUST NOT revert
and if withdrawals are entirely disabled (even temporarily) it MUST return 0
)
function maxWithdraw(address owner) public view override whenNotPaused returns (uint256) { return convertToUnderlying(_maxBurnable(owner)); }
Manual code review
When protocol is paused, maxWithdraw()
should return 0, instead of reverting.
Other
#0 - c4-pre-sort
2024-03-03T09:20:54Z
gzeon-c4 marked the issue as duplicate of #33
#1 - c4-pre-sort
2024-03-03T09:20:58Z
gzeon-c4 marked the issue as sufficient quality report
#2 - c4-judge
2024-03-11T00:27:58Z
JustDravee marked the issue as partial-50
#3 - c4-judge
2024-03-11T00:28:01Z
JustDravee marked the issue as satisfactory
#4 - c4-judge
2024-03-14T06:24:04Z
JustDravee marked the issue as partial-50
53.7155 USDC - $53.72
https://github.com/code-423n4/2024-02-spectra/blob/383202d0b84985122fe1ba53cfbbb68f18ba3986/src/tokens/PrincipalToken.sol#L483-L485 https://github.com/code-423n4/2024-02-spectra/blob/383202d0b84985122fe1ba53cfbbb68f18ba3986/src/tokens/PrincipalToken.sol#L866-L874
According to the provided documentation: Principal Token is ERC5095
. This is the main invariant defined in the project's description:
This is the core contract of Spectra. The Principal Token is [EIP-5095](https://eips.ethereum.org/EIPS/eip-5095)
**Principal Token is ERC5095**
During the code-review process, some deviations from the EIP-5095 had been detected. Lack of compliance may cause unexpected behavior. Other protocols that integrate with contract may incorrectly assume that it's EIP-5095 compliant - especially that documentation states that it's ERC-5095. Any deviation from this standard will broke the composability and may lead to fund loss. While protocol's implements a contract and describes it as ERC-5095, it should fully conform to ERC-5095 standard.
According to EIP-5095, function maxRedeem()
MUST return 0 when withdrawals are entirely (or even temporarily) disabled. The current implementation does not follow this requirement.
The very similar issue (functions maxWithdraw
and maxRedeem
do not return - when withdrawal is paused) was evaluated as Medium during the previous Code4rena contest:
The very similar issue (functions max*
do not return 0 when contract is paused) was evaluated as High during the previous Code4rena contest:
Moreover, during the previous C4 contests, lack of EIP compliance was usually evaluated as High/Medium
Taking into consideration the previous contests, I've decided to evaluate this issue as Medium.
PrincipalToken
inherits from PausableUpgradeable
and implements external pause()
/unPause()
functions - thus it can be paused.
According to EIP-5095, function maxRedeem()
:
MUST factor in both global and user-specific limits, like if redemption is entirely disabled (even temporarily) it MUST return 0.
However, please notice, that maxRedeem()
implementation ignores the fact if protocol is paused or not.
function maxRedeem(address owner) public view override returns (uint256) { return _maxBurnable(owner); }
function _maxBurnable(address _user) internal view returns (uint256 maxBurnable) { if (block.timestamp >= expiry) { maxBurnable = balanceOf(_user); } else { uint256 ptBalance = balanceOf(_user); uint256 ytBalance = IYieldToken(yt).balanceOf(_user); maxBurnable = (ptBalance > ytBalance) ? ytBalance : ptBalance; } }
Function maxRedeem()
calls _maxBurnable()
- none of these functions takes care of the scenario when the contract is paused.
Whenever the contract is paused, maxRedeem()
will return the same value as it would return on the unpaused contract - even though, the EIP-5095 requires, that if redemption is entirely disabled (even temporarily) it MUST return 0
.
This basically means, that maxRedeem()
is not compliant with EIP-5095. On the paused contract - it MUST return 0. However, the current implementation returns a non-zero value on a paused contract. The current implementation ignores the fact that the contract might be paused and it returns the same value for both paused and unpaused contract.
Manual code review
Detect that the contract is paused and return 0
when that scenario happens.
Other
#0 - c4-pre-sort
2024-03-03T09:22:34Z
gzeon-c4 marked the issue as duplicate of #33
#1 - c4-pre-sort
2024-03-03T09:22:36Z
gzeon-c4 marked the issue as sufficient quality report
#2 - c4-judge
2024-03-11T00:28:15Z
JustDravee marked the issue as satisfactory
#3 - c4-judge
2024-03-11T00:28:19Z
JustDravee marked the issue as partial-50