memset() causing data abort - Stack Overflow most recent 30 from stackoverflow.com 2009-12-04T09:26:24Z http://stackoverflow.com/feeds/question/22459 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/22459/memset-causing-data-abort 4 memset() causing data abort Adam Haile 2008-08-22T14:17:01Z 2009-07-24T07:33:15Z <p>I'm getting some strange, intermittent, data aborts (&lt; 5% of the time) in some of my code, when calling memset. The problem is that is usually doesn't happen unless the code is running for a couple days, so it's hard to catch it in the act.</p> <p>I'm using the following code:</p> <pre><code>char *msg = (char*)malloc(sizeof(char)*2048); char *temp = (char*)malloc(sizeof(char)*1024); memset(msg, 0, 2048); memset(temp, 0, 1024); char *tempstr = (char*)malloc(sizeof(char)*128); sprintf(temp, "%s %s/%s %s%s", EZMPPOST, EZMPTAG, EZMPVER, TYPETXT, EOL); strcat(msg, temp); //Add Data memset(tempstr, '\0', 128); wcstombs(tempstr, gdevID, wcslen(gdevID)); sprintf(temp, "%s: %s%s", "DeviceID", tempstr, EOL); strcat(msg, temp); </code></pre> <p>As you can see, I'm not trying to use memset with a size larger that what's originally allocated with malloc()</p> <p>Anyone see what might be wrong with this?</p> http://stackoverflow.com/questions/22459/memset-causing-data-abort/22464#22464 0 Answer by Doug for memset() causing data abort Doug 2008-08-22T14:18:58Z 2008-08-22T14:18:58Z <p>Have you tried using Valgrind? That is usually the fastest and easiest way to debug these sorts of errors. If you are reading or writing outside the bounds of allocated memory, it will flag it for you.</p> http://stackoverflow.com/questions/22459/memset-causing-data-abort/22473#22473 19 Answer by Joel Spolsky for memset() causing data abort Joel Spolsky 2008-08-22T14:21:43Z 2008-08-22T14:21:43Z <p><code>malloc</code> can return <code>NULL</code> if no memory is available. You're not checking for that.</p> http://stackoverflow.com/questions/22459/memset-causing-data-abort/22479#22479 0 Answer by Adam Haile for memset() causing data abort Adam Haile 2008-08-22T14:23:59Z 2008-08-22T14:23:59Z <p>@Doug</p> <blockquote> <p>Have you tried using Valgrind?</p> </blockquote> <p>Ahhh...figure this was going to be a somewhat platform agnostic issue, but as you bring up Valgrind, I have to now admit that my code is running on a Windows Mobile device (so ARMv4i Architecture).... But I will definitely keep that in mind for my desktop development.</p> http://stackoverflow.com/questions/22459/memset-causing-data-abort/22486#22486 4 Answer by FreeMemory for memset() causing data abort FreeMemory 2008-08-22T14:26:14Z 2008-08-22T14:26:14Z <p>There's a couple of things. You're using <code>sprintf</code> which is inherently unsafe; unless you're 100% positive that you're not going to exceed the size of the buffer, you should almost <em>always</em> prefer <code>snprintf</code>. The same applies to <code>strcat</code>; prefer the safer alternative <code>strncat</code>.</p> <p>Obviously this may not fix anything, but it goes a <em>long</em> way in helping spot what might otherwise be very annoying to spot bugs.</p> http://stackoverflow.com/questions/22459/memset-causing-data-abort/22488#22488 2 Answer by Adam Haile for memset() causing data abort Adam Haile 2008-08-22T14:26:28Z 2008-08-22T14:42:05Z <blockquote> <p>malloc can return NULL if no memory is available. You're not checking for that.</p> </blockquote> <p>Right you are... I didn't think about that as I was monitoring the memory and it there was enough free. Is there any way for there to be available memory on the system but for malloc to fail?</p> <blockquote> <p>Yes, if memory is fragmented. Also, when you say "monitoring memory," there may be something on the system which occasionally consumes a lot of memory and then releases it before you notice. If your call to <code>malloc</code> occurs then, there won't be any memory available. -- <strong>Joel</strong></p> </blockquote> <p>Either way...I will add that check :)</p> http://stackoverflow.com/questions/22459/memset-causing-data-abort/22495#22495 0 Answer by Adam Haile for memset() causing data abort Adam Haile 2008-08-22T14:28:36Z 2008-08-22T14:28:36Z <blockquote> <p>You're using sprintf which is inherently unsafe; unless you're 100% positive that you're not going to exceed the size of the buffer, you should almost always prefer snprintf. The same applies to strcat; prefer the safer alternative strncat.</p> </blockquote> <p>Yeah..... I mostly do .NET lately and old habits die hard. I likely pulled that code out of something else that was written before my time...</p> <p>But I'll try not to use those in the future ;)</p> http://stackoverflow.com/questions/22459/memset-causing-data-abort/22496#22496 0 Answer by TK for memset() causing data abort TK 2008-08-22T14:28:47Z 2008-08-22T14:28:47Z <p>You know it might not even be your code... Are there any other programs running that could have a memory leak?</p> http://stackoverflow.com/questions/22459/memset-causing-data-abort/22505#22505 0 Answer by Adam Haile for memset() causing data abort Adam Haile 2008-08-22T14:31:23Z 2008-08-22T14:31:23Z <p>@TK</p> <blockquote> <p>You know it might not even be your code... Are there any other programs running that could have a memory leak?</p> </blockquote> <p>Probably...and it gets more complicated than that.</p> <p>The code you see is from a plugin DLL, which is loaded by a service, that is also just a dll, which is loaded by services.exe</p> <p>And both the service and the plugin are very multi-threaded and there is more than just that plugin loaded. So it's possible...</p> http://stackoverflow.com/questions/22459/memset-causing-data-abort/22799#22799 1 Answer by Mat Noguchi for memset() causing data abort Mat Noguchi 2008-08-22T16:31:49Z 2008-08-22T16:31:49Z <p><code>wcstombs</code> doesn't get the size of the destination, so it can, in theory, buffer overflow.</p> <p>And why are you using <code>sprintf</code> with what I assume are constants? Just use:</p> <p><code>EZMPPOST" " EZMPTAG "/" EZMPVER " " TYPETXT EOL</code></p> <p>C and C++ combines string literal declarations into a single string.</p> <p>MSN</p> http://stackoverflow.com/questions/22459/memset-causing-data-abort/107412#107412 0 Answer by davenpcj for memset() causing data abort davenpcj 2008-09-20T06:40:13Z 2008-09-20T06:40:13Z <p>It could be your processor. Some CPUs can't address single bytes, and require you to work in words or chunk sizes, or have instructions that can only be used on word or chunk aligned data. </p> <p>Usually the compiler is made aware of these and works around them, but sometimes you can malloc a region as bytes, and then try to address it as a structure or wider-than-a-byte field, and the compiler won't catch it, but the processor will throw a data exception later. </p> <p>It wouldn't happen unless you're using an unusual CPU. ARM9 will do that, for example, but i686 won't. I see it's tagged windows mobile, so maybe you do have this CPU issue.</p> http://stackoverflow.com/questions/22459/memset-causing-data-abort/107431#107431 0 Answer by 1800 INFORMATION for memset() causing data abort 1800 INFORMATION 2008-09-20T06:46:06Z 2008-09-20T06:46:06Z <p>Instead of doing <code>malloc</code> followed by <code>memset</code>, you should be using <code>calloc</code> which will clear the newly allocated memory for you. Other than that, do what Joel said.</p> http://stackoverflow.com/questions/22459/memset-causing-data-abort/128706#128706 0 Answer by Airsource Ltd for memset() causing data abort Airsource Ltd 2008-09-24T17:55:39Z 2009-07-24T07:33:15Z <p>NB borrowed some comments from other answers and integrated into a whole. The code is all mine...</p> <ul> <li>Check your error codes. E.g. malloc can return NULL if no memory is available. This could be causing your data abort.</li> <li>sizeof(char) is 1 by definition</li> <li>Use snprintf not sprintf to avoid buffer overruns <ul> <li>If EZMPPOST etc are constants, then you don't need a format string, you can just combined several string literals as STRING1 " " STRING2 " " STRING3 and strcat the whole lot. </li> </ul></li> <li>You are using much more memory than you need to.</li> <li>With one minor change, you don't need to call memset in the first place. Nothing really requires zero initialisation here.</li> </ul> <p>This code does the same thing, safely, runs faster, and uses less memory.</p> <pre><code> // sizeof(char) is 1 by definition. This memory does not require zero // initialisation. If it did, I'd use calloc. const int max_msg = 2048; char *msg = (char*)malloc(max_msg); if(!msg) { // Allocaton failure return; } // Use snprintf instead of sprintf to avoid buffer overruns // we write directly to msg, instead of using a temporary buffer and then calling // strcat. This saves CPU time, saves the temporary buffer, and removes the need // to zero initialise msg. snprintf(msg, max_msg, "%s %s/%s %s%s", EZMPPOST, EZMPTAG, EZMPVER, TYPETXT, EOL); //Add Data size_t len = wcslen(gdevID); // No need to zero init this char* temp = (char*)malloc(len); if(!temp) { free(msg); return; } wcstombs(temp, gdevID, len); // No need to use a temporary buffer - just append directly to the msg, protecting // against buffer overruns. snprintf(msg + strlen(msg), max_msg - strlen(msg), "%s: %s%s", "DeviceID", temp, EOL); free(temp); </code></pre>