-
Notifications
You must be signed in to change notification settings - Fork 13
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
Backport #271: integer overflow checks #283
Conversation
Currently it is possible to ask the bit machine to do arbitrarily large allocations, and to panic the program by overflowing when computing the size of its allocations. This is not the place to do budget checks, but we can at least do some sanity checks. Here we insist that programs not have any types that exceed 2 gigabits (256 megabytes), which will at least prevent explosions. We can revisit it when somebody shows up with a usecase for massive programs.
…tation This commit will fail when put before either of the previous two commits.
We expect Clippy failures on this old branch because we aren't pinning our compiler version in CI. |
cc @uncomputable I think this will be a quick review and should let us get #280 in. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ACK 34aa968
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
On 34aa968 successfully ran local tests
Had to disable diff-checking the copy of libsimplicity vendored in the depend/ directory, since I can't build the old libsimplicity with a modern nixpkgs. |
Backports several integer overflow checks to the currently-released version of 0.3. These can be used to crash rust-simplicity which is making it hard to write regression fuzztests.
Also changes the version to 0.3.1 so we can release immediately.
Should be easy enough to review with
git range-diff pr/271/head...pr/283/head
.