Tagged Questions
The integer-overflow tag has no wiki summary.
93
votes
20answers
30k views
Best way to detect integer overflow in C/C++
I was writing a program in C++ to find all solutions of a^b = c (a to the power of b), where a, b and c together use all the digits 0-9 exactly once. The program looped over values of a and b, and ran ...
56
votes
5answers
2k views
Is this a JVM bug or “expected behavior”?
I noticed some unexpected behavior (unexpected relative to my personal expectations), and I'm wondering if something if there is a bug in the JVM or if perhaps this is a fringe case where I don't ...
39
votes
5answers
693 views
-1 * int.MinValue == int.MinValue?? Is this a bug?
In C# I see that
-1 * int.MinValue == int.MinValue
Is this a bug? It really screwed me up when I was trying to implement a search tree. I ended up using (int.MinValue + 1) so that I could ...
23
votes
9answers
1k views
Detecting signed overflow in C/C++
At first glance, this question may seem like a duplicate of http://stackoverflow.com/questions/199333/best-way-to-detect-integer-overflow-in-c-c, however it is actually significantly different.
I've ...
20
votes
13answers
1k views
Why would you want an integer overflow to occur?
In this question the topic is how to make VS check for an arithmetic overflow in C# and throw an Exception: C# Overflow not working?
One of the comments stated something weird and got upvoted much, I ...
16
votes
8answers
1k views
Why don't languages raise errors on integer overflow by default?
In several modern programming languages (including C++, Java, and C#), the language allows integer overflow to occur at runtime without raising any kind of error condition.
For example, consider this ...
14
votes
3answers
371 views
Integer Overflow - Why not [closed]
Possible Duplicate:
Addition of two chars produces int
Given the following C++ code:
unsigned char a = 200;
unsigned char b = 100;
unsigned char c = (a + b) / 2;
The output is 150 as ...
11
votes
3answers
638 views
Addition of two chars produces int
I've made a simple program and compiled it with GCC 4.4/4.5 as follows:
int main ()
{
char u = 10;
char x = 'x';
char i = u + x;
return 0;
}
g++ -c -Wconversion a.cpp
And I've got the ...
10
votes
3answers
225 views
Why doesn't compound assignment in Java catch overflow problems?
To my shock, it turns out that the following code will compile without even warnings:
public void test()
{
int value = 2000000000;
long increment = 1000000000;
value += increment;
}
...
10
votes
4answers
1k views
How do I detect overflow while multiplying two 2's complement integers?
I want to multiply two numbers, and detect if there was an overflow. What is the simplest way to do that?
10
votes
6answers
1k views
Should I use unsigned integers for count members?
I just spent an hour tracking an integer overflow in my code, so I decided to share that -most people on here will know that of course, but perhaps I can save someone some time. So, here's the ...
9
votes
5answers
304 views
detecting multiplication of uint64_t integers overflow with C
Is there any efficient and portable way to check when multiplication operations with int64_t or uint64_t operands overflow in C?
For instance, for addition of uint64_t I can do:
if (UINT64_MAX - a ...
9
votes
5answers
429 views
How is integer overflow exploitable?
Does anyone have a detailed explanation on how integers can be exploited? I have been reading a lot about the concept, and I understand what an it is, and I understand buffer overflows, but I dont ...
9
votes
9answers
943 views
What is an integer overflow error?
What is an integer overflow error?
Why do i care about such an error?
What are some methods of avoiding or preventing it?
9
votes
5answers
291 views
Best way to handle and report memory allocation errors due to integer overflow in Objective-C?
To begin with, let me say that I understand how and why the problem I'm describing can happen. I was a Computer Science major, and I understand overflow/underflow and signed/unsigned arithmetic. (For ...
7
votes
11answers
557 views
How to deal with a wrapping counter in embedded C
I need to deal with a counter that gives me ticks for my application. The counter is 32bits so what i need to know is how to deal with it when it wraps. for example:
I have a function that returns a ...
7
votes
4answers
2k views
Checking for underflow/overflow in C++?
Is there a general way to check for an overflow or an underflow of a given data type (uint32, int etc.)?
I am doing something like this:
uint32 a,b,c;
... //initialize a,b,c
if(b < c) {
a -= ...
7
votes
2answers
451 views
Why do my .net Int64's behaves as if they were Int32's?
I'm witnessing a strange behavior in a .net program :
Console.WriteLine(Int64.MaxValue.ToString());
// displays 9223372036854775807, which is 2^63-1, as expected
Int64 a = 256*256*256*127; // ok
...
6
votes
4answers
109 views
Permutation with Repetition: Avoiding Overflow
Background:
Given n balls such that:
'a' balls are of colour GREEN
'b' balls are of colour BLUE
'c' balls are of colour RED
...
(of course a + b + c + ... = n)
The number of permutations in which ...
6
votes
3answers
178 views
How do I fix wrong numbers produced by integer overflow?
I had a bug that caused an integer overflow, resulting in wrong (negative) timestamps being written to the database. The code is fixed already, but I want to fix the wrong data, too.
I thought, I ...
6
votes
2answers
495 views
1000000000 * 3 = -1294967296?
Hey Stack-O, I'm super confuzored!
Today is November 3rd
DateTime DateTime = new DateTime(2010,11,3);
long shazbot = 1000000000 * DateTime.Day;
shazbot comes out to -1294967296
Huh???
6
votes
3answers
367 views
arithmetic exception in C#
Why in C# is Example A valid, compilable and will just wrap while examples B will not compile?
A
int val = 0;
val = val + Int32.MaxValue +2;
or
int val = Int32.MaxValue;
val++;
B
int val = 0;
...
6
votes
5answers
1k views
32bit int * 32bit int = 64 bit int?
In other words does this work as expected?
int32 i = INT_MAX-1;
int64 j = i * i;
or do I need to cast the i to 64 bit first?
6
votes
8answers
2k views
How to handle arbitrarily large integers
I'm working on a programming language, and today I got the point where I could compile the factorial function(recursive), however due to the maximum size of an integer the largest I can get is ...
5
votes
1answer
145 views
Stopping integer overflow in ASP.NET
We use Acunetix at work to do security scans on our applications. Recently we came across the following Integer Vulnerabilities error below:
From what I can tell, it looks like the report is ...
5
votes
4answers
269 views
Bug in quicksort example (K&R C book)?
This quicksort is supposed to sort "v[left]...v[right] into increasing order"; copied (without comments) from The C Programming Language by K&R (Second Edition):
void qsort(int v[], int left, int ...
5
votes
6answers
1k views
How do I get real integer overflows in MATLAB/Octave?
I'm working on a verification-tool for some VHDL-Code in MATLAB/Octave. Therefore I need data types which generate "real" overflows:
intmax('int32') + 1
ans = -2147483648
Later on, it would be ...
5
votes
10answers
2k views
Java multiply operation behavior
I wrote a method to convert a given number from days to milliseconds:
private long expireTimeInMilliseconds;
...
public void setExpireTimeInDays(int expireTimeInDays)
{
expireTimeInMilliseconds = ...
5
votes
6answers
2k views
Can I prevent a integer overflow in C# using an unsigned right shift?
I want alwaysPositive to be assigned a positive number with all possible values for lareValue1 and largeValue2 (these are at least 1).
The following statement causes a buffer overflow:
int ...
4
votes
3answers
136 views
How disastrous is integer overflow in C++?
I was just wondering how disastrous integer overflow really is. Take the following example program:
#include <iostream>
int main()
{
int a = 46341;
int b = a * a;
std::cout ...
4
votes
7answers
114 views
Feedback in analyzing a code example
I have a piece of code from an assignment I am uncertain about. I feel confident that I know the answer, but I just want to double-check with the community incase there's something I forgot. The title ...
4
votes
2answers
581 views
GCC Inline Assembly Multiplication
I'm trying to learn GCC inline assembly on Linux (x86), and my first experiment was to try and implement integer overflow detection for multiplication. It seems easy enough, but it is having side ...
4
votes
2answers
422 views
How to do a double-chunk add with no undefined behaviour?
EDIT Public health warning - this question includes a false assumption about undefined behaviour. See accepted answer.
After a reading recent blog post, I've been thinking a lot about the ...
4
votes
3answers
1k views
Question about C behaviour for unsigned integer underflow
I have read in many places that integer overflow is well-defined in C unlike the signed counterpart.
Is underflow the same?
For example:
unsigned int x = -1; // Does x == UINT_MAX?
Thanks.
I ...
4
votes
2answers
748 views
Saturated addition of two signed Java 'long' values
How can one add two long values in Java so that if the result overflows then it is clamped to the range Long.MIN_VALUE..Long.MAX_VALUE?
For adding ints one can perform the arithmetic in long ...
4
votes
3answers
1k views
What happens when auto_increment on integer column reaches the max_value in databases?
I am implementing a database application and I will use both JavaDB and MySQL as database. I have an ID column in my tables that has integer as type and I use the databases auto_increment-function for ...
4
votes
4answers
855 views
Delphi: How to avoid EIntOverflow underflow when subtracting?
Microsoft already says, in the documentation for GetTickCount, that you could never compare tick counts to check if an interval has passed. e.g.:
Incorrect (pseudo-code):
DWORD endTime = ...
4
votes
4answers
169 views
C++ long overflowing prematurely
I'm having a bizarre problem with C++ where the long data type is overflowing long before it should. What I'm doing (with success so far) is to have integers behave like floats, so that the range ...
4
votes
4answers
765 views
C integer overflow behaviour when assigning to larger-width integers
If I execute the following code in C:
#include <stdint.h>
uint16_t a = 4000;
uint16_t b = 8000;
int32_t c = a - b;
printf("%d", c);
It correctly prints '-4000' as the result. However, I'm ...
4
votes
5answers
2k views
Is the size of an array constrained by the upper limit of int (2147483647)?
I'm doing some Project Euler exercises and I've run into a scenario where I have want arrays which are larger than 2,147,483,647 (the upper limit of int in C#).
Sure these are large arrays, but for ...
4
votes
6answers
920 views
overflows in size_t additions
I like to have my code warning free for VS.NET and GCC, and I like to have my code 64-bit ready.
Today I wrote a little module that deals with in memory buffers and provides access to the data via a ...
3
votes
4answers
148 views
How does one safely static_cast between unsigned int and int?
I have an 8-character string representing a hexadecimal number and I need to convert it to an int. This conversion has to preserve the bit pattern for strings "80000000" and higher, i.e., those ...
3
votes
4answers
204 views
No useful and reliable way to detect integer overflow in C/C++? [closed]
Possible Duplicate:
Best way to detect integer overflow in C/C++
No, this is not a duplicate. The issue is the same but the question is different.
The gcc compiler can optimize away an ...
3
votes
1answer
130 views
How to catch the Integer overflow error in Spring MVC?
I am using Spring MVC 3.0.5. Spring happily ignores an Integer overflow for a field that is mapped to an Integer. How can I report a proper error on that ?
3
votes
2answers
251 views
What's an efficient way to avoid integer overflow converting an unsigned int to int in C++?
Is the following an efficient and problem free way to convert an unsigned int to an int in C++:
#include <limits.h>
void safeConvert(unsigned int passed)
{
int variable = ...
3
votes
4answers
3k views
Warning : overflow in implicit constant conversion
In the following program, the line 5 does give overflow warning as expected, but surprisingly the line 4 doesn't give any warning in GCC: http://www.ideone.com/U0BXn
int main()
{
int i = 256;
...
3
votes
5answers
321 views
how to calculate (a times b) divided by c only using 32-bit integer types even if a times b would not fit such a type
Consider the following as a reference implementation:
/* calculates (a * b) / c */
uint32_t muldiv(uint32_t a, uint32_t b, uint32_t c)
{
uint64_t x = a;
x = x * b;
x = x / c;
return ...
3
votes
4answers
276 views
java arithmetic
why this code returns wrong value?
int i=Integer.MAX_VALUE+1;
long l=Integer.MAX_VALUE+1;
System.out.println(l);
System.out.println(i);
3
votes
4answers
158 views
Why does integer overflow cause errors with C++ iostreams?
Ok, so I have some problems with C++ iostreams that feels very odd, but it is probably defined behaviour, considering this happens with both MSVC++ and G++.
Say I have this program:
#include ...
3
votes
1answer
557 views
Delphi: How do i use $OVERFLOWCHECKS OFF to disable overflow checks?
i have bit of code that causes an underflow:
var
t1, t2, delta: DWORD:
begin
t1 := 0xffffff00;
t2 := 0x00000037;
delta := (t2 - t1);
The subtraction itself does generate an overflow ...