Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(x/auth/vesting): panic on overflowing & negative EndTimes for PeriodicVestingAccount #16733

Merged

Conversation

odeke-em
Copy link
Collaborator

Caught in an audit, this change panics when a PeriodicVestingAccount's constituent period lengths are negative, or if the total .EndTime has overflown.

/cc @elias-orijtech

@odeke-em odeke-em requested a review from a team as a code owner June 28, 2023 00:39
@github-prbot github-prbot requested a review from a team June 28, 2023 00:39
@github-prbot github-prbot requested review from alexanderbez and julienrbrt and removed request for a team June 28, 2023 00:39
@github-actions

This comment has been minimized.

@odeke-em odeke-em force-pushed the x-auth-vesting-types-catch-negative-vestingPeriods+overflows branch from 375d819 to d08d617 Compare June 28, 2023 00:40
@julienrbrt julienrbrt changed the title fix: x/auth/vesting: panic on overflowing & negative EndTimes for PeriodicVestingAccount fix(x/auth/vesting): panic on overflowing & negative EndTimes for PeriodicVestingAccount Jun 28, 2023
CHANGELOG.md Outdated
@@ -38,6 +38,10 @@ Ref: https://keepachangelog.com/en/1.0.0/

## [Unreleased]

### Bug Fixes

* (x/auth/vesting) [#16733](https://github.com/cosmos/cosmos-sdk/pull/16733) panic on overflowing and negative EndTimes when creating a PeriodicVestingAccount
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

not: there is already a bugfix section below, can you add it there?

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thank you @julienrbrt, updated!

endTime += p.Length
}
if endTime < 0 || endTime < startTime {
Copy link
Member

@julienrbrt julienrbrt Jun 28, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should this check be in the Validate function of a base vesting account and here we can call validate?

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I am skeptical of moving it there, for starters and for brevity can we keep it as is here, then later on refactor it?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sure!

@julienrbrt julienrbrt added the backport/v0.50.x PR scheduled for inclusion in the v0.50's next stable release label Jun 28, 2023
…iodicVestingAccount

Caught in an audit, this change panics when a PeriodicVestingAccount's
constituent period lengths are negative, or if the total .EndTime has
overflown.
@odeke-em odeke-em force-pushed the x-auth-vesting-types-catch-negative-vestingPeriods+overflows branch from d08d617 to 771cff2 Compare June 28, 2023 08:35
@odeke-em odeke-em requested a review from julienrbrt June 28, 2023 08:36
@julienrbrt julienrbrt added this pull request to the merge queue Jun 28, 2023
Merged via the queue into main with commit d90abbe Jun 28, 2023
48 of 49 checks passed
@julienrbrt julienrbrt deleted the x-auth-vesting-types-catch-negative-vestingPeriods+overflows branch June 28, 2023 09:19
mergify bot pushed a commit that referenced this pull request Jun 28, 2023
…iodicVestingAccount (#16733)

(cherry picked from commit d90abbe)

# Conflicts:
#	CHANGELOG.md
julienrbrt added a commit that referenced this pull request Jun 28, 2023
…iodicVestingAccount (backport #16733) (#16735)

Co-authored-by: Emmanuel T Odeke <emmanuel@orijtech.com>
Co-authored-by: Julien Robert <julien@rbrt.fr>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
backport/v0.50.x PR scheduled for inclusion in the v0.50's next stable release C:x/auth
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants