Should I bother detecting OOM (out of memory) errors in my C code? - Stack Overflow most recent 30 from stackoverflow.com2009-12-06T23:48:03Zhttp://stackoverflow.com/feeds/question/763159http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/763159/should-i-bother-detecting-oom-out-of-memory-errors-in-my-c-code12Should I bother detecting OOM (out of memory) errors in my C code?cdleary2009-04-18T08:48:11Z2009-04-18T20:01:57Z
<p>I've devoted a large number of lines of C code to cleanup-labels/conditionals for failed memory allocation (indicated by the <code>alloc</code> family returning <code>NULL</code>). I was taught that this was a good practice so that, on memory failure, an appropriate error status could be flagged and <strong>the caller could potentially perform "graceful memory cleanup" and retry.</strong> I now have some doubts about this philosophy that I'm hoping to clear up.</p>
<p>I guess it's <em>possible</em> that a caller could deallocate excessive buffer space or strip relational objects of their data, but <strong>I find the the caller rarely has the capability</strong> (or is at the appropriate level of abstraction) to do so. Also, <strong>early-returning from the called function without side effects is often non-trivial.</strong></p>
<p>I also just discovered the Linux OOM killer, which seems to make these efforts totally pointless on my primary development platform.</p>
<blockquote>
<p>By default, Linux follows an
optimistic memory allocation strategy.
This means that when malloc() returns
non-NULL there is no guarantee that
the memory really is available.
This is a really bad bug. In case it
turns out that the system is out of
memory, one or more processes will
be killed by the infamous OOM
killer.</p>
</blockquote>
<p>I figure there are probably other platforms out there that follow the same principle. <strong>Is there something pragmatic that makes checking for OOM conditions worthwhile?</strong></p>
http://stackoverflow.com/questions/763159/should-i-bother-detecting-oom-out-of-memory-errors-in-my-c-code/763170#7631701Answer by PiedPiper for Should I bother detecting OOM (out of memory) errors in my C code?PiedPiper2009-04-18T08:55:57Z2009-04-18T08:55:57Z<p>You have to weigh up which is better or worse for you: putting all the work into checking for OOM or having your program fail at unexpected times</p>
http://stackoverflow.com/questions/763159/should-i-bother-detecting-oom-out-of-memory-errors-in-my-c-code/763171#7631716Answer by stesch for Should I bother detecting OOM (out of memory) errors in my C code?stesch2009-04-18T08:56:05Z2009-04-18T09:05:11Z<p>Regardless of the platform (except maybe embedded systems) it's a good idea to check for <code>NULL</code> and then just exit without doing any (or much) cleanup by hand.</p>
<p>Out of memory isn't a simple error. It is a catastrophe on todays systems.</p>
<p>The book <em>The Practice of Programming</em> (Brian W. Kernighan and Rob Pike, 1999) defines functions like <code>emalloc()</code> which just exits with an error message if there's no memory left.</p>
http://stackoverflow.com/questions/763159/should-i-bother-detecting-oom-out-of-memory-errors-in-my-c-code/763173#7631730Answer by 1800 INFORMATION for Should I bother detecting OOM (out of memory) errors in my C code?1800 INFORMATION2009-04-18T08:57:18Z2009-04-18T08:57:18Z<p>Yes I believe it is, if you follow the practice consistently. This may be impractical for a large program written in C because of the degree of manual labour this may require, but in a more modern language most of this work is done for you because an out of memory condition results in a thrown exception.</p>
<p>The benefits of doing this consistently are that the program will not enter an undefined state due to the out of memory condition resulting in a buffer overrun (this obviously leaves the possibility of an undefined state due to an early exit to the function, although this is a different class of bug). Having done so, your program can consistently handle the error condition, or if the failure was a critical one, decide to quit in a graceful manner.</p>
http://stackoverflow.com/questions/763159/should-i-bother-detecting-oom-out-of-memory-errors-in-my-c-code/763175#7631753Answer by Greg Hewgill for Should I bother detecting OOM (out of memory) errors in my C code?Greg Hewgill2009-04-18T08:59:49Z2009-04-18T08:59:49Z<p>With today's computers and the amount of RAM typically installed, checking everywhere for memory allocation errors is probably too detailed. As you've seen, it is often difficult or impossible to make a rational decision about what to deallocate. As your process is allocating more and more memory, the OS will correspondingly be reducing the amount of memory available for disk buffers. When that falls below some threshold, then the OS will start paging memory to disk. (This is a simplification, as there are many factors in memory management.)</p>
<p>Once the OS starts paging memory, the whole system gets progressively slower and slower, and it will probably be quite a while before your application ever actually sees a NULL from malloc (if at all).</p>
<p>With the sheer amount of memory available on today's systems, an "out of memory" error more likely means that a bug in your code tried to allocate an arbitrary amount of memory. In that case no amount of freeing and retrying on the part of your process is going to fix the problem.</p>
http://stackoverflow.com/questions/763159/should-i-bother-detecting-oom-out-of-memory-errors-in-my-c-code/763189#7631892Answer by Neil Butterworth for Should I bother detecting OOM (out of memory) errors in my C code?Neil Butterworth2009-04-18T09:17:43Z2009-04-18T09:58:41Z<p>I suggest an experiment - write a small program which keeps allocating memory without freeing it and then prints a small (fixed) message when allocation fails. What effects do you notice on your system when you run this program? Does the message ever get printed?</p>
<p>If the system behaves normally and remains responsive up to the point when the error is displayed, then I would say yes, it is worth checking for. OTOH, if the system, becomes slow, unresponsive and eventaually unusable before the message is displayed (if it ever is) then I I would say no, it is not worth checking for.</p>
<p><strong>Important: Before running this test, save all important work. Do not run it on a production server.</strong></p>
<p>Regardfing the Linux OOM behaviur - this is actually desirable and is the way that most OSs work. It's important to realise that when you malloc() some memory you are NOT getting it directly from the OS, you are getting it from the C runtime library. This will typically have asked the OS for a big chunk of memory up front (or at the first request) which it then manages via the malloc/free interface. As many programs never use dynamiic memory at all, it would be undesirable for the OS to hand "real" memory to the C runtime - instead it hands som euncomitted vM which will actually be comitted as you make your malloc calls.</p>
http://stackoverflow.com/questions/763159/should-i-bother-detecting-oom-out-of-memory-errors-in-my-c-code/763191#76319110Answer by liw.fi for Should I bother detecting OOM (out of memory) errors in my C code?liw.fi2009-04-18T09:18:03Z2009-04-18T15:52:23Z<p>Out of memory conditions can happen even on modern computers with lots of memory, if the user or system administrator restricts (see ulimit) the memory space for a process, or the operating system supports memory allocation limits per user. In pathological cases, fragmentation makes this fairly likely, even.</p>
<p>However, since use of dynamically allocated memory is prevalent in modern programs, for good reasons, it becomes very hairy to handle out-of-memory errors. Checking and handling errors of this kind would have to be done everywhere, at high cost of complexity.</p>
<p>I find that it is better to design the program so that it can crash at any time. For example, make sure data the user has created gets saved on disk all the time, even if the user does not explicitly save it. (See vi -r, for example.) This way, you can create a function to allocate memory that terminates the program if there is an error. Since your application is designed to handle crashes at any time, it's OK to crash. The user will be surprised, but won't lose (much) work.</p>
<p>The never-failing allocation function might be something like this (untested, uncompiled code, for demonstration purposes only):</p>
<pre><code>/* Callback function so application can do some emergency saving if it wants to. */
static void (*safe_malloc_callback)(int error_number, size_t requested);
void safe_malloc_set_callback(void (*callback)(int, size_t))
{
safe_malloc_callback = callback;
}
void *safe_malloc(size_t n)
{
void *p;
if (n == 0)
n = 1; /* malloc(0) is not well defined. */
p = malloc(n);
if (p == NULL) {
if (safe_malloc_callback)
safe_malloc_callback(errno, n);
exit(EXIT_FAILURE);
}
return p;
}
</code></pre>
<p>Valerie Aurora's article <a href="http://lwn.net/Articles/191059/" rel="nofollow">Crash-only software</a> might be illuminating.</p>
http://stackoverflow.com/questions/763159/should-i-bother-detecting-oom-out-of-memory-errors-in-my-c-code/763208#7632080Answer by dragonfly for Should I bother detecting OOM (out of memory) errors in my C code?dragonfly2009-04-18T09:32:53Z2009-04-18T09:32:53Z<p>Checking for OOM conditions and taking appropriate actions may be hard, if you misdesign software. Whether you actually need to check against such situations depends on the reliability of software you want to get. </p>
<p>E.g. VirtualBox hypervisor will detect out-of-memory errors and gracefully pause virtual machine, allowing user to close some applications to free memory. I observed such behavior under Windows. Actually almost all calls in VirtualBox have success indicator as return value and you can just return <code>VERR_NO_MEMORY</code> to denote that memory allocation failed. This introduces some additional checks, but in this case it is worth it.</p>
http://stackoverflow.com/questions/763159/should-i-bother-detecting-oom-out-of-memory-errors-in-my-c-code/763230#7632304Answer by Charlie Martin for Should I bother detecting OOM (out of memory) errors in my C code?Charlie Martin2009-04-18T10:05:01Z2009-04-18T15:07:01Z<p>Look at the other side of the question: if you malloc memory, it fails, and you <em>don't</em> detect it at the malloc, when <em>will</em> you detect it? </p>
<p>Obviously, when you attempt to dereference the pointer.</p>
<p>How will you detect it? By getting a <code>Bus error</code> or something similar, somewhere after the malloc that you'll have to track down with a core dump and the debugger.</p>
<p>On the other hand, you can write</p>
<pre><code> #define OOM 42 /* just some number */
/* ... */
if((ptr=malloc(size))==NULL){
/* a well-behaved fprintf should NOT malloc, so it can be used
* in this sort of context
*/
fprintf(stderr,"OOM at %s: %s\n", __FILE__, __LINE__);
exit(OOM);
}
</code></pre>
<p>and get "OOM at parser.c:447".</p>
<p>You pick.</p>
<h3>Update</h3>
<p>Good question about graceful return. The difficulty with assuring a graceful return is that in general you really can't set up a paradigm or pattern of how you do that, especially in C, which is after all a fancy assembly language. In a garbage-collected environment, you could force a GC; in a language with exceptions, you can throw an exception and unwind things. In C you have to do it yourself and so you have to decide how much effort you want to put into it. </p>
<p>In <em>most</em> programs, abnormally terminating is about the best you can do. In this scheme you (hopefully) get a useful message on stderr -- of course it could also be to a logger or something like that -- and a known value as the return code.</p>
<p>HIgh reliability programs with short recovery times push you into something like <a href="http://www.cs.ncl.ac.uk/publications/books/papers/101.pdf" rel="nofollow">recovery blocks</a>, where you write code that attempts to get a system back into a survivable state. These are great, but complicated; the paper I linked to talks about them in detail.</p>
<p>In the middle, you can come up with a more complicated memory management scheme, say managing your own pool of dynamic memory -- after all, if someone else can write malloc, so can you. </p>
<p>But there's just no general pattern (of which I'm aware anyway) for cleaning up <em>enough</em> to be able to return reliably and let the surrounding program continue.</p>
http://stackoverflow.com/questions/763159/should-i-bother-detecting-oom-out-of-memory-errors-in-my-c-code/763236#7632365Answer by Artelius for Should I bother detecting OOM (out of memory) errors in my C code?Artelius2009-04-18T10:09:58Z2009-04-18T10:09:58Z<p>It depends on what you're writing. Is it a general-purpose library? If so, you want to deal with a lack of memory as gracefully as possible, particularly if it's reasonable to expect that it will be used on el-cheapo systems or embedded devices.</p>
<p>Consider this: a programmer is using your library. There is a bug (uninitialised variable perhaps) in his program that passes a silly argument to your code, which consequently tries to allocate a single 3.6GB block of memory. Obviously <code>malloc()</code> returns NULL. Would he rather an unexplained segfault generated somewhere in the library code, or a return value to indicate the error?</p>
<p>To avoid having error checks all over your code, one approach is to allocate a reasonable amont of memory at the start, and sub-allocate it as required.</p>
<p>In regards to the Linux OOM killer, I heard that this behaviour is now disabled by default on major distros. Even if it's enabled, don't get the wrong idea: <code>malloc()</code> <em>can</em> return NULL, and it certainly will if your program's total memory use would surpass 4GiB (on a 32-bit system). In other words, even if <code>malloc()</code> doesn't actually secure you some RAM/swap space, it <em>will</em> reserves part of your address space.</p>
http://stackoverflow.com/questions/763159/should-i-bother-detecting-oom-out-of-memory-errors-in-my-c-code/763321#7633211Answer by hept for Should I bother detecting OOM (out of memory) errors in my C code?hept2009-04-18T11:46:58Z2009-04-18T11:46:58Z<p>Processes are usually run with a resource limit (see ulimit (3)) on the stack size, but not on the heap size. malloc (3) will manage the memory increase of its heap area page-by-page from the operating system, and the operating system will arrange for this page to somehow get allocated physically and correspond to your heap for your process. If there is no more RAM in your computer then most operating systems has something like a swap partition on disc. When your system starts to need to use swap then things gradually get slow. If one process leads to this, it may easily be identified with some utility like ps (1).</p>
<p>Unless your code is to run with a resource limit or on a system with a poor size of memory and no swap, i think one may program with the assumption that malloc (3) succeeds. If you're not certain, just make a dummy wrapper that may someday do the check and simply exit. An error-status return value does not make sense, as your program requires the memory it already has allocated. If your malloc (3) fails and you don't check for NULL, your process will die anyway when it starts accessing the (NULL) pointer it got.</p>
<p>Problems with malloc (3) does in most cases not arise from out-of-memory, but from a logical error in your program that leads to misbehaved calls to malloc and free. This usual problem will not get detected by checking malloc success.</p>
http://stackoverflow.com/questions/763159/should-i-bother-detecting-oom-out-of-memory-errors-in-my-c-code/764080#7640801Answer by Maciej Piechotka for Should I bother detecting OOM (out of memory) errors in my C code?Maciej Piechotka2009-04-18T20:01:57Z2009-04-18T20:01:57Z<p>Well. All depends on situation.</p>
<p>First of all. If you have detected an memory is unsufficient for your need - what will you do? The most common usage is:</p>
<pre><code>if (ptr == NULL) {
fprintf(log /* stderr or anything */, "Cannot allocate memory");
exit(2);
}
</code></pre>
<p>Well. Even if it does not use malloc it may allocate the buffers. Additionaly too bad if it is a GUI application - your user is unlikely to spot it. If your user is 'smart enought' to run application from console to check errors he will probably see that something ate his whole memory. Ok. So may be display a dialog? But displaying dialog may ate resources - and it usually will.</p>
<p>Secondly - why do you need the information about OOM? It happens in two cases:</p>
<ol>
<li>Other software is buggy. You cannot do anything with it</li>
<li>Your program is buggy. In such case it is eighter GUI program in which you are unlikely to notify user in any way (not mentioning that 99% of users does not read the messages and will say that software crashed without further details). If it is not the user is likely to spot it anyway (opserving system monitors or using more specialized software).</li>
<li>To free some caches etc. You should check in the system however be warned that it will likely not work. You can handle only own sbrk/mmap/etc. calls and in Linux you will get OOM anyway</li>
</ol>