overflows in size_t additions - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T17:25:28Zhttp://stackoverflow.com/feeds/question/206405http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/206405/overflows-in-sizet-additions4overflows in size_t additionsNils Pipenbrinck2008-10-15T20:48:15Z2008-10-15T21:36:21Z
<p>I like to have my code warning free for VS.NET and GCC, and I like to have my code 64 bit ready.</p>
<p>Today I wrote a little module that deals with in memory buffers and provides access to the data via a file-style interface (e.g. you can read bytes, write bytes, seek around ect.).</p>
<p>As the data-type for current read position and size I used size_t since that seemes to be the most natural choice. I get around the warnings and it ought to work in 64 bit as well. </p>
<p>Just in case: My structure looks like this:</p>
<pre><code>typedef struct
{
unsigned char * m_Data;
size_t m_CurrentReadPosition;
size_t m_DataSize;
} MyMemoryFile;
</code></pre>
<p>The sign-ness (is this the correct word btw?) of size_t seems not to be defined in practice. A Google code-search proved that.</p>
<p>Now I'm in a dilemma: I want to check additions with size_t for overflows because I have to deal with user supplied data and third party libraries will use my code. However, for the overflow check I have to know the sign-ness. It makes a huge difference in the implementation. </p>
<p>So - how the heck should I write such a code in a platform and compiler independent way? </p>
<p>Can I check the sign-ness of size_t at run or compile-time? That would solve my problem. Or maybe size_t wasn't the best idea at the first place?</p>
<p>Any ideas?</p>
<p><strong>EDIT</strong>: I'm looking for a solution for the C-language!</p>
http://stackoverflow.com/questions/206405/overflows-in-sizet-additions/206422#2064223Answer by Nicholas Mancuso for overflows in size_t additionsNicholas Mancuso2008-10-15T20:51:15Z2008-10-15T21:01:40Z<p>size_t should be unsigned.</p>
<p>its typically defined as unsigned long.</p>
<p>I've never seen it be defined otherwise. ssize_t is its signed counterpart.</p>
<p>EDIT:
GCC defines it as signed in some circumstances. compiling in ASNI C mode or std-99 should force it to be unsigned.</p>
http://stackoverflow.com/questions/206405/overflows-in-sizet-additions/206442#2064420Answer by 1800 INFORMATION for overflows in size_t additions1800 INFORMATION2008-10-15T20:54:48Z2008-10-15T20:54:48Z<p>Use <a href="http://www.codeplex.com/SafeInt" rel="nofollow">safeint</a>. It is a class designed by Michael Howard and released as open source from Microsoft. It is designed to make working with integers where overflow is identified as a risk. All overflows are converted to exceptions and handled. The class is designed to make correct usage easy.</p>
<p>For example :</p>
<pre><code>char CouldBlowUp(char a, char b, char c)
{
SafeInt<char> sa(a), sb(b), sc(c);
try
{
return (sa * sb + sc).Value();
}
catch(SafeIntException err)
{
ComplainLoudly(err.m_code);
}
return 0;
}
</code></pre>
<p>Also safeint is used a lot internally at Microsoft in products like Office.</p>
<p>Ref:
<a href="http://msdn.microsoft.com/en-us/library/ms972705.aspx" rel="nofollow">link text</a></p>
http://stackoverflow.com/questions/206405/overflows-in-sizet-additions/206460#2064600Answer by Francisco Soto for overflows in size_t additionsFrancisco Soto2008-10-15T20:58:11Z2008-10-15T20:58:11Z<p>I am not sure if I don't understand exactly the question, but maybe you can do something like:</p>
<p>temp = value_to_be_added_to;</p>
<p>value_to_be_added_to += value_to_add;</p>
<p>if (temp > value_to_be_added_to)
{
overflow...
}</p>
<p>Since it will wrap back to lower values you can check easily if it overflowed.</p>
http://stackoverflow.com/questions/206405/overflows-in-sizet-additions/206489#2064892Answer by 1800 INFORMATION for overflows in size_t additions1800 INFORMATION2008-10-15T21:07:39Z2008-10-15T21:07:39Z<p>For C language, use <a href="http://blogs.msdn.com/michael_howard/archive/2006/02/02/523392.aspx" rel="nofollow">IntSafe</a>. Also released by Microsoft (not to be confused with the C++ library SafeInt). IntSafe is a set of C language function calls that can perform math and do conversions safely.</p>
http://stackoverflow.com/questions/206405/overflows-in-sizet-additions/206494#2064943Answer by David Thornley for overflows in size_t additionsDavid Thornley2008-10-15T21:09:12Z2008-10-15T21:09:12Z<p>size_t is an unsigned integral type, according to the C++ C standards. Any implementation that has size_t signed is seriously nonconforming, and probably has other portability problems as well. It is guaranteed to wrap around when overflowing, meaning that you can write tests like "if (a + b < a)" to find overflow.</p>
<p>size_t is an excellent type for anything involving memory. You're doing it right.</p>
http://stackoverflow.com/questions/206405/overflows-in-sizet-additions/206584#2065846Answer by Michael Burr for overflows in size_t additionsMichael Burr2008-10-15T21:31:52Z2008-10-15T21:31:52Z<p>Regarding the whether <code>size</code>_t is signed or unsigned and GCC (from an old GCC manual - I'm not sure if it's still there):</p>
<blockquote>
<p>There is a potential problem with the
<code>size_t</code> type and versions of GCC prior
to release 2.4. ANSI C requires that
<code>size_t</code> always be an unsigned type. For
compatibility with existing systems'
header files, GCC defines <code>size_t</code> in
<code>stddef.h</code> to be whatever type the
system's <code>sys/types.h</code> defines it to
be. Most Unix systems that define
<code>size_t</code> in <code>sys/types.h</code>, define it to
be a signed type. Some code in the
library depends on <code>size_t</code> being an
unsigned type, and will not work
correctly if it is signed.</p>
<p>The GNU C library code which expects
<code>size_t</code> to be unsigned is correct. The
definition of <code>size_t</code> as a signed type
is incorrect. We plan that in version
2.4, GCC will always define <code>size_t</code> as an unsigned type, and the
'fixincludes' script will massage the
system's <code>sys/types.h</code> so as not to
conflict with this.</p>
<p>In the meantime, we work around this
problem by telling GCC explicitly to
use an unsigned type for <code>size_t</code> when
compiling the GNU C library.
'configure' will automatically detect
what type GCC uses for <code>size_t</code> arrange
to override it if necessary.</p>
</blockquote>
<p>If you want a signed version of <code>size_t</code> use <code>ptrdiff_t</code> or on some systems there is a typedef for <code>ssize_t</code>.</p>
http://stackoverflow.com/questions/206405/overflows-in-sizet-additions/206596#2065960Answer by Michael Burr for overflows in size_t additionsMichael Burr2008-10-15T21:36:21Z2008-10-15T21:36:21Z<p>There seems to be a lot of interest in integer overflow recently:</p>
<p><a href="http://stackoverflow.com/questions/199333/best-way-to-detect-integer-overflow-in-cc">http://stackoverflow.com/questions/199333/best-way-to-detect-integer-overflow-in-cc</a></p>
<p>Has there been some recent exploit I haven't heard about?</p>