-
-
Notifications
You must be signed in to change notification settings - Fork 968
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 potential undefined behaviour when using OverflowSafeInt #9451
Conversation
I am really certain I do not understand this code, so I just brute-forced it what I could think of: https://godbolt.org/z/KE3qc1cqq If you think I missed cases, feel free to add them and post the new link ;) Seems all cases I could come up with work fine. Edit: just to smoketest the compiler built-in variants: https://godbolt.org/z/5T8bPeYKe . Also shows no issues for the cases I came up with. |
Maybe guard against the built-in variant being used when min/max are not the min/max of the type? For example, the following works with the original code, but fails with the built-in variant.
|
Is it worth supporting that though? We can get rid of the extra 2 tparams with std::numeric_limits these days |
Knowing that std::numeric_limits exists was kind of the reason I was trying this as I (naively) assumed that it might have worked. After all, why have those parameters. Though removing the parameters seems another viable solution to the problem. |
I think using OpenTTD/src/script/api/script_company.cpp Lines 143 to 145 in d1cf566
Can we address those 2 instances while at it? Seems it should just be |
INT64_MIN negated is above INT64_MAX, and would overflow. Instead, when negating INT64_MIN make it INT64_MAX. This does mean that -(-(INT64_MIN)) != INT64_MIN.
af1e8c3
to
e6dc779
Compare
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.
For future-us: the mistake made here is that -T_MAX != T_MIN
, but the code did assume it. In essence, that is what broke underflow protection, and what this PR addresses.
Notably, a company with an extremely negative amount of money would suddenly become very rich
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.
Nice.
Fixes #8284
Closes #8285
Motivation / Problem
OverflowSafeInt can actually underflow.
Description
Changes
completely copied frominspired by JGR's work:JGRennison/OpenTTD-patches@6821c0e
JGRennison/OpenTTD-patches@bb8d2c3
JGRennison/OpenTTD-patches@609f37c
JGRennison/OpenTTD-patches@db0e25f
But mildly neatened and modernised.
Limitations
Checklist for review
Some things are not automated, and forgotten often. This list is a reminder for the reviewers.