Fix overflow check for multiplication:

- Add special test to detect the case of -1 * INTMAX_MIN
- Protect against elimination of the test division by the optimizer

Garrett Cooper noticed that the overflow checks were incomplete, and Bruce
Evans suggested the use of the "volatile" qualifier to counter the effect
of the undefined behaviour, when the prior multiplication caused overflow,
and he also suggested improvements to the comments.

Reviewed by:	bde
MFC after:	1 week
This commit is contained in:
Stefan Eßer 2015-01-27 18:04:41 +00:00
parent b489a49fc0
commit 8da97f0057
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=277798

View File

@ -444,14 +444,26 @@ op_minus(struct val *a, struct val *b)
return (r);
}
/*
* We depend on undefined behaviour giving a result (in r).
* To test this result, pass it as volatile. This prevents
* optimizing away of the test based on the undefined behaviour.
*/
void
assert_times(intmax_t a, intmax_t b, intmax_t r)
assert_times(intmax_t a, intmax_t b, volatile intmax_t r)
{
/*
* if first operand is 0, no overflow is possible,
* else result of division test must match second operand
* If the first operand is 0, no overflow is possible,
* else the result of the division test must match the
* second operand.
*
* Be careful to avoid overflow in the overflow test, as
* in assert_div(). Overflow in division would kill us
* with a SIGFPE before getting the test wrong. In old
* buggy versions, optimization used to give a null test
* instead of a SIGFPE.
*/
if (a != 0 && r / a != b)
if ((a == -1 && b == INTMAX_MIN) || (a != 0 && r / a != b))
errx(ERR_EXIT, "overflow");
}