vote up 2 vote down star

In case of integer overflows what is the result of (unsigned int) * (int) ? unsigned or int?

I was auditing the following function, and suddenly I came out with that question. In the below function, it is vulnerable at line 17.

1.  // Create a character array and initialize it with init[] 
2.  // repeatedly. The size of this character array is specified by 
3.  // w*h.
4.  char *function4(unsigned int w, unsigned int h, char *init)
5.  {
6.      char *buf;
7.      int i;
8.  
9.      if (w*h > 4096)
10.         return (NULL);
11. 
12.     buf = (char *)malloc(4096+1);
13.     if (!buf)
14.        return (NULL);
15. 
16.     for (i=0; i<h; i++)
17.         memcpy(&buf[i*w], init, w);
18. 
19.     buf[4096] = '\0';
20. 
21.     return buf;
22. }

Consider both w and h are very large unsigned integers. The multiplication at line 9 have a chance to pass the validation.

Now the problem is at line 17. Multiply int i with unsigned int w: if the result is int, it is possible that the product is negative, resulting in accessing a position that is before buf. If the result is unsigned int, the product will always be positive, resulting in accessing a position that is after buf.

It's hard to write code to justify this: int is too large. Does anyone has ideas on this?


Added:

The question here is not to discuss how bad the function is, or how to improve the function to make it better.

The question is to ask:

`what is the result of (unsigned int) * (int) ? unsigned or int?`

Is there any documentation that specifies this? I am searching for it.


Added:

I guess there is no need to discuss whether (unsigned int) * (int) produces unsigned int or int. Because from C's perspective, they are bytes. Therefore, the following code holds:

unsigned int x = 10;
int y = -10;

printf("%d\n", x * y);  // print x * y in signed integer
printf("%u\n", x * y);  // print x * y in unsigned integer

Therefore, it does not matter what type the multiplication returns. It matters that whether the consumer function takes int or unsigned.

So, now the question becomes,

"Does the array indexer `somearray[value]` takes an `int` as input, 
or an `unsigned ` as input?"


flag

12 Answers

vote up 1 vote down check

To answer your question: the type of an expression multiplying an int and an unsigned int will be an unsigned int in C/C++.

To answer your implied question, one decent way to deal with possible overflow in integer arithmetic is to use the "IntSafe" set of routines from Microsoft:

http://blogs.msdn.com/michael_howard/archive/2006/02/02/523392.aspx

It's available in the SDK and contains inline implementations so you can study what they're doing if you're on another platform.

link|flag
vote up 1 vote down

For C, refer to "Usual arithmetic conversions" (C99: Section 6.3.1.8, ANSI C K&R A6.5) for details on how the operands of the mathematical operators are treated.

In your example the following rules apply:

C99:

Otherwise, if the type of the operand with signed integer type can represent all of the values of the type of the operand with unsigned integer type, then the operand with unsigned integer type is converted to the type of the operand with signed integer type.

Otherwise, both operands are converted to the unsigned integer type corresponding to the type of the operand with signed integer type.

ANSI C:

Otherwise, if either operand is unsigned int, the other is converted to unsigned int.

link|flag
vote up 1 vote down

In C/C++ the p[n] notation is really a shortcut to writting *(p+n), and this pointer arithmetics take into account the sign. So p[-1] is valid and refer to the value immediately before *p.

So the sign really matters here, the result of arithmetic operator with integer follow a set of rules defined by the standard, and this is called integer promotions. Check this https://www.securecoding.cert.org/confluence/display/seccode/INT02-C.+Understand+integer+conversion+rules

link|flag
vote up 2 vote down

The type of w*i is unsigned in your case. If I read the standard correctly, the rule is that the operands are converted to the larger type (with its signedness), or unsigned type corresponding to the signed type (which is unsigned int in your case).

However, even if it's unsigned, it doesn't prevent the wraparound (writing to memory before buf), because it might be the case (on i386 platform, it is), that p[-1] is the same as p[-1u]. Anyway, in your case, both buf[-1] and buf[big unsigned number] would be undefined behavior, so the signed/unsigned question is not that important.

Note that signed/unsigned matters in other contexts - eg. (int)(x*y/2) gives different results depending on the types of x and y, even in the absence of undefined behaviour.

I would solve your problem by checking for overflow on line 9; since 4096 is a pretty small constant and 4096*4096 doesn't overflow on most architectures (you need to check), I'd do

if (w>4096 || h>4096 || w*h > 4096)
     return (NULL);

This leaves out the case when w or h are 0, you might want to check for it if needed.

In general, you could check for overflow like this:

if(w*h > 4096 || (w*h)/w!=h || (w*h)%w!=0)
link|flag
vote up 1 vote down

2 changes make it safer:

if (w >= 4096 || h >= 4096 || w*h > 4096)  return NULL;

...

unsigned i;

Note also that it's not less a bad idea to write to or read from past the buffer end. So the question is not whether i*w may become negative, but whether 0 <= i*h +w <= 4096 holds.

So it's not the type that matters, but the result of h*i. For example, it doesn't make a difference whether this is (unsigned)0x80000000 or (int)0x80000000, the program will seg-fault anyway.

link|flag
vote up 1 vote down

Unsigned arithmetic is done as modular (or wrap-around), so the product of two large unsigned ints can easily be less than 4096. The multiplication of int and unsigned int will result in an unsigned int (see section 4.5 of the C++ standard).

Therefore, given large w and a suitable value of h, you can indeed get into trouble.

Making sure integer arithmetic doesn't overflow is difficult. One easy way is to convert to floating-point and doing a floating-point multiplication, and seeing if the result is at all reasonable. As qwerty suggested, long long would be usable, if available on your implementation. (It's a common extension in C90 and C++, does exist in C99, and will be in C++0x.)

link|flag
Can you tell me where I can find a online copy of C++ standard? – Ryan Shaw Apr 6 at 15:29
I got it from webstore.ansi.org - search for C++ standard. It costs $30. ANSI and other standardization organizations typically finance themselves by charging for copies of their standards. – David Thornley Apr 6 at 15:56
vote up 0 vote down

w*h could overflow if w and/or h are sufficiently large and the following validation could pass.

9.      if (w*h > 4096)
10.         return (NULL);

On int , unsigned int mixed operations, int is elevated to unsigned int, in which case, a negative value of 'i' would become a large positive value. In that case

&buf[i*w]

would be accessing a out of bound value.

link|flag
vote up 0 vote down

To actually answer your question, without specifying the hardware you're running on, you don't know, and in code intended to be portable, you shouldn't depend on any particular behavior.

link|flag
Unsigned arithmetic is defined in C and C++. Given the maximum unsigned int value (which is available in a header somewhere), you can predict what happens precisely. – David Thornley Apr 6 at 15:22
vote up 2 vote down

do the w*h calculation in long long, check if bigger than MAX_UINT

EDIT : alternative : if overflown (w*h)/h != w (is this always the case ?! should be, right ?)

link|flag
vote up 0 vote down

memcpy(&buf[i*w > -1 ? i*w < 4097? i*w : 0 : 0], init, w); I don't think the triple calculation of i*w does degrade the perfomance)

link|flag
vote up 2 vote down

Ensure that w * h doesn't overflow by limiting w and h.

link|flag
vote up 1 vote down

Why not just declare i as unsigned int? Then the problem goes away.

In any case, i*w is guaranteed to be <= 4096, as the code tests for this, so it's never going to overflow.

link|flag
w*h may overflow to be less than 4096, though – rampion Apr 6 at 15:16

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.