Skip to content

Commit

Permalink
Resolves warnings from slither (#190)
Browse files Browse the repository at this point in the history
* Modifies L2Reward and L2LockingPosition to supress or resolve slither warnings

disables unchecked-transfer rule for all calls to IL2LiskToken.transferFrom in L2Reward
disables unused-return rule for all calls to IL2LiskToken.approve in L2Reward
disables unused-return rule for all calls to Math.trySub in L2Reward
disables reentrancy-no-eth for L2Reward._delePosition
disables reentrancy-no-eth for L2Reward._initiateFastUnlock
resolves warnings in L2Reward.createPosition
disables uninitialized-state for L2LockingPosition.lockingPosition state variable

* Adds additional comments to slither warning supression hints
  • Loading branch information
has5aan authored Jul 3, 2024
1 parent 3dbc801 commit 830a7fa
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
with:
solc-version: 0.8.23
sarif: results.sarif
fail-on: none
fail-on: medium
slither-args: --exclude-dependencies --exclude-low --exclude-informational --filter-paths "Ed25519.sol"
id: slither

Expand Down
2 changes: 2 additions & 0 deletions src/L2/L2LockingPosition.sol
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ contract L2LockingPosition is Initializable, Ownable2StepUpgradeable, UUPSUpgrad
uint256 private nextId;

/// @notice Mapping of locking position ID to LockingPosition entity.
// lockingPositions mapping can be modified only against user actions.
// slither-disable-next-line uninitialized-state
mapping(uint256 => IL2LockingPosition.LockingPosition) public lockingPositions;

/// @notice Address of the Staking contract.
Expand Down
31 changes: 25 additions & 6 deletions src/L2/L2Reward.sol
Original file line number Diff line number Diff line change
Expand Up @@ -172,19 +172,24 @@ contract L2Reward is Initializable, Ownable2StepUpgradeable, UUPSUpgradeable, IS
function createPosition(uint256 amount, uint256 duration) public virtual returns (uint256) {
updateGlobalState();

// create a new position
IL2LiskToken(l2TokenContract).transferFrom(msg.sender, address(this), amount);
IL2LiskToken(l2TokenContract).approve(stakingContract, amount);
uint256 id = IL2Staking(stakingContract).lockAmount(msg.sender, amount, duration);
uint256 today = todayDay();
lastClaimDate[id] = today;

// update total weight and amount
totalWeight += amount * (duration + OFFSET);
totalAmountLocked += amount;
dailyUnlockedAmounts[today + duration] += amount;
pendingUnlockAmount += amount;

// create a new position
// IL2LiskToken.transferFrom always returns true and reverts in case of error
// slither-disable-next-line unchecked-transfer
IL2LiskToken(l2TokenContract).transferFrom(msg.sender, address(this), amount);
// IL2LiskToken.approve always returns true and reverts in case of error
// slither-disable-next-line unused-return
IL2LiskToken(l2TokenContract).approve(stakingContract, amount);
uint256 id = IL2Staking(stakingContract).lockAmount(msg.sender, amount, duration);
lastClaimDate[id] = today;

emit LockingPositionCreated(id);

return id;
Expand Down Expand Up @@ -212,6 +217,8 @@ contract L2Reward is Initializable, Ownable2StepUpgradeable, UUPSUpgradeable, IS
_claimReward(lockID);
IL2Staking(stakingContract).unlock(lockID);

// lockID can be deleted only when rewards are claimed and the position is unlocked by L2Staking contract.
// slither-disable-next-line reentrancy-no-eth
delete lastClaimDate[lockID];

emit LockingPositionDeleted(lockID);
Expand All @@ -236,6 +243,7 @@ contract L2Reward is Initializable, Ownable2StepUpgradeable, UUPSUpgradeable, IS
/// @param lockID The ID of the locking position.
function _initiateFastUnlock(uint256 lockID) internal virtual {
// claim rewards and inform staking contract
// slither-disable-next-line reentrancy-no-eth
_claimReward(lockID);
IL2LockingPosition.LockingPosition memory lockingPositionBeforeInitiatingFastUnlock =
IL2LockingPosition(lockingPositionContract).getLockingPosition(lockID);
Expand Down Expand Up @@ -285,6 +293,9 @@ contract L2Reward is Initializable, Ownable2StepUpgradeable, UUPSUpgradeable, IS
if (lockingPosition.pausedLockingDuration == 0) {
// If rewards are claimed against an expired position that was already claimed after expiry period,
// rewardableDuration is zero
// If lastClaimDate for lockID is greater than expiry date, Math.trySub sets rewardableDuration to zero
// and the overflow flag can be ignored.
// slither-disable-next-line unused-return
(, rewardableDuration) = Math.trySub(lockingPosition.expDate, lastClaimDate[lockID]);

lastRewardDay = Math.min(lockingPosition.expDate, today);
Expand All @@ -293,7 +304,7 @@ contract L2Reward is Initializable, Ownable2StepUpgradeable, UUPSUpgradeable, IS
lastRewardDay = today;
}

uint256 reward;
uint256 reward = 0;

if (rewardableDuration > 0) {
weight = lockingPosition.amount * (rewardableDuration + OFFSET);
Expand Down Expand Up @@ -348,6 +359,8 @@ contract L2Reward is Initializable, Ownable2StepUpgradeable, UUPSUpgradeable, IS
lastClaimDate[lockID] = today;

if (reward != 0) {
// IL2LiskToken.transfer always returns true and reverts in case of error
// slither-disable-next-line unchecked-transfer
IL2LiskToken(l2TokenContract).transfer(msg.sender, reward);
}
}
Expand Down Expand Up @@ -375,7 +388,11 @@ contract L2Reward is Initializable, Ownable2StepUpgradeable, UUPSUpgradeable, IS
function _increaseLockingAmount(uint256 lockID, uint256 amountIncrease) internal virtual {
// claim rewards and update staking contract
_claimReward(lockID);
// IL2LiskToken.transferFrom always returns true and reverts in case of error
// slither-disable-next-line unchecked-transfer
IL2LiskToken(l2TokenContract).transferFrom(msg.sender, address(this), amountIncrease);
// IL2LiskToken.approve always returns true and reverts in case of error
// slither-disable-next-line unused-return
IL2LiskToken(l2TokenContract).approve(stakingContract, amountIncrease);
IL2Staking(stakingContract).increaseLockingAmount(lockID, amountIncrease);

Expand Down Expand Up @@ -556,6 +573,8 @@ contract L2Reward is Initializable, Ownable2StepUpgradeable, UUPSUpgradeable, IS
require(duration > 0, "L2Reward: Funding duration should be greater than zero");
require(delay > 0, "L2Reward: Funding should start from next day or later");

// IL2LiskToken.transferFrom always returns true and reverts in case of error
// slither-disable-next-line unchecked-transfer
IL2LiskToken(l2TokenContract).transferFrom(msg.sender, address(this), amount);

_addRewards(amount, duration, delay);
Expand Down

0 comments on commit 830a7fa

Please sign in to comment.