How could this C fragment be written more safely? - Stack Overflow most recent 30 from stackoverflow.com2009-12-01T22:42:18Zhttp://stackoverflow.com/feeds/question/911660http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/911660/how-could-this-c-fragment-be-written-more-safely3How could this C fragment be written more safely?Adam Taylor2009-05-26T16:49:51Z2009-05-28T22:18:07Z
<p>Hi,</p>
<p>I have the following C code fragment and have to identify the error and suggest a way of writing it more safely:</p>
<pre><code>char somestring[] = "Send money!\n";
char *copy;
copy = (char *) malloc(strlen(somestring));
strcpy(copy, somestring);
printf(copy);
</code></pre>
<p>So the error is that strlen ignores the trailing '\0' of a string and therefore it is not going to be allocated enough memory for the copy but I'm not sure what they're getting at about writing it more safely?</p>
<p>I could just use malloc(strlen(somestring)+1)) I assume but I'm thinking there must be a better way than that?</p>
<p>EDIT: OK, I've accepted an answer, I suspect that the strdup solution would not be expected from us as it's not part of ANSI C. It seems to be quite a subjective question so I'm not sure if what I've accepted is actually the best. Thanks anyway for all the answers.</p>
<p>Thanks,</p>
<p>Adam</p>
http://stackoverflow.com/questions/911660/how-could-this-c-fragment-be-written-more-safely/911675#9116755Answer by dfa for How could this C fragment be written more safely?dfa2009-05-26T16:52:50Z2009-05-26T16:59:47Z<pre><code>char somestring[] = "Send money!\n";
char *copy = strdup(something);
if (copy == NULL) {
// error
}
</code></pre>
<p>or just put this logic in a separate function <strong>xstrdup</strong>:</p>
<pre><code>char * xstrdup(const char *src)
{
char *copy = strdup(src);
if (copy == NULL) {
abort();
}
return copy;
}
</code></pre>
http://stackoverflow.com/questions/911660/how-could-this-c-fragment-be-written-more-safely/911676#911676-2Answer by Marc W for How could this C fragment be written more safely?Marc W2009-05-26T16:52:58Z2009-05-26T16:52:58Z<p>The safer way would be to use <code>strncpy</code> instead of <code>strcpy</code>. That function takes a third argument: the length of the string to copy. This solution doesn't stretch beyond ANSI C, so this will work under all environments (whereas other methods may only work under POSIX-compliant systems).</p>
<pre><code>char somestring[] = "Send money!\n";
char *copy;
copy = (char *) malloc(strlen(somestring));
strncpy(copy, somestring, strlen(somestring));
printf(copy);
</code></pre>
http://stackoverflow.com/questions/911660/how-could-this-c-fragment-be-written-more-safely/911714#9117143Answer by John Pirie for How could this C fragment be written more safely?John Pirie2009-05-26T16:59:50Z2009-05-26T16:59:50Z<ol>
<li>strlen + 1, for the \0 terminator</li>
<li>malloc may fail; always check malloc return value</li>
</ol>
http://stackoverflow.com/questions/911660/how-could-this-c-fragment-be-written-more-safely/911725#9117253Answer by dwc for How could this C fragment be written more safely?dwc2009-05-26T17:01:37Z2009-05-27T15:47:06Z<pre><code>char somestring[] = "Send money!\n";
char *copy;
size_t copysize;
copysize = strlen(somestring)+1;
copy = (char *) malloc(copysize);
if (copy == NULL)
bail("Oh noes!\n");
strncpy(copy, somestring, copysize);
printf("%s", copy);
</code></pre>
<p>Noted differences above:</p>
<ul>
<li>Result of <code>malloc()</code> must be checked!</li>
<li>Compute and <strong>store</strong> the memory size!</li>
<li>Use <code>strncpy()</code> because <code>strcpy()</code> is naughty. In this contrived example it won't hurt, but don't get into the habit of using it.</li>
</ul>
<p><strong>EDIT:</strong></p>
<p>To those thinking I should be using <code>strdup()</code>... that only works if you take the very narrowest view of the question. That's not only silly, it's overlooking an even better answer:</p>
<pre><code>char somestring[] = "Send money!\n";
char *copy = somestring;
printf(copy);
</code></pre>
<p>If you're going to be obtuse, at least be good at it.</p>
http://stackoverflow.com/questions/911660/how-could-this-c-fragment-be-written-more-safely/911789#9117890Answer by T.E.D. for How could this C fragment be written more safely?T.E.D.2009-05-26T17:18:25Z2009-05-26T17:18:25Z<p>The best way to write it more safely, if one were to be truly interested in such a thing, would be to write it in Ada.</p>
<pre><code>somestring : constant string := "Send money!";
declare
copy : constant string := somestring;
begin
put_line (somestring);
end;
</code></pre>
<p>Same result, so what are the differences?</p>
<ul>
<li>The whole thing is done on the stack
(no pointers). Deallocation is
automatic and safe. </li>
<li>Everything is automaticly range-checked so
there's no chance of buffer-overflow
exploits </li>
<li>Both strings are constants,
so there's no chance of screwing up
and modifying them.</li>
<li>It will probably be way <em>faster</em> than the C, not only because of the lack of dynamic allocation, but because there isn't that extra scan through the string required by strlen().</li>
</ul>
<p>Note that in Ada "string" is not some special dynamic construct. It's the built-in array of characters. However, Ada arrays can be sized at declaration by the array you assign into them.</p>
http://stackoverflow.com/questions/911660/how-could-this-c-fragment-be-written-more-safely/911868#9118684Answer by D.Shawley for How could this C fragment be written more safely?D.Shawley2009-05-26T17:43:20Z2009-05-26T17:43:20Z<p>Ick... use <code>strdup()</code> like everyone else said and write it yourself if you have to. Since you have time to think about this now... check out the <a href="http://www.mitre.org/news/digest/defense%5Fintelligence/02%5F09/errors.html" rel="nofollow">25 Most Dangerous Programming Errors at Mitre</a>, then consider why the phrase <code>printf(copy)</code> should <strong>never</strong> appear in code. That is right up there with <code>malloc(strlen(str))</code> in terms of utter badness not to mention the headache of tracking down why it causes lots of grief when copy is something like <code>"%s%n"</code>...</p>
http://stackoverflow.com/questions/911660/how-could-this-c-fragment-be-written-more-safely/911894#9118945Answer by Sucuri for How could this C fragment be written more safely?Sucuri2009-05-26T17:49:42Z2009-05-26T17:49:42Z<p>I can't comment on the responses above, but in addition to checking the
return code and using strncpy, you should never do:</p>
<p>printf(string)</p>
<p>But use:</p>
<p>printf("%s", string);</p>
<p>ref: <a href="http://en.wikipedia.org/wiki/Format_string_attack" rel="nofollow">http://en.wikipedia.org/wiki/Format_string_attack</a></p>
http://stackoverflow.com/questions/911660/how-could-this-c-fragment-be-written-more-safely/913610#9136101Answer by jbcreix for How could this C fragment be written more safely?jbcreix2009-05-27T01:56:46Z2009-05-27T01:56:46Z<p>I would comment to previous solutions but I do not have enough rep.
Using <strong>strncpy</strong> here is as wrong as using <strong>strcpy</strong>(As there is absolutely no risk of overflow). There is a function called <strong>memcpy</strong> in <em>< string.h ></em> and it is meant exactly for this. It is not only significantly faster, but also the correct function to use to copy strings of known length in standard C.</p>
<p>From the accepted answer:</p>
<pre><code>char somestring[] = "Send money!\n";
char *copy;
size_t copysize;
copysize = strlen(somestring)+1;
copy = (char *) malloc(copysize);
if (copy == NULL)
bail("Oh noes!\n");
memcpy(copy, somestring, copysize); /* You don't use str* functions for this! */
printf("%s", copy);
</code></pre>
http://stackoverflow.com/questions/911660/how-could-this-c-fragment-be-written-more-safely/916958#9169581Answer by Adrian McCarthy for How could this C fragment be written more safely?Adrian McCarthy2009-05-27T17:08:39Z2009-05-28T22:18:07Z<p>Ways to make the code safer (and more correct).</p>
<ol>
<li>Don't make an unnecessary copy. From the example, there's no apparent requirement that you actually need to copy <code>somestring</code>. You can output it directly.</li>
<li>If you have to make a copy of a string, write a function to do it (or use strdup if you have it). Then you only have to get it right in one place.</li>
<li>Whenever possible, initialize the pointer to the copy immediately when you declare it.</li>
<li>Remember to allocate space for the null terminator.</li>
<li>Remember to check the return value from <code>malloc</code>.</li>
<li>Remember to free the <code>malloc</code>'ed memory.</li>
<li>Don't call <code>printf</code> with an untrusted format string. Use <code>printf("%s", copy)</code> or <code>puts(copy)</code>.</li>
<li>Use an object-oriented language with a string class or any language with built-in string support to avoid most of these problems.</li>
</ol>
http://stackoverflow.com/questions/911660/how-could-this-c-fragment-be-written-more-safely/919124#9191241Answer by themangoman for How could this C fragment be written more safely?themangoman2009-05-28T04:02:22Z2009-05-28T04:02:22Z<p>to add more to Adrian McCarthy's ways to make safer code, </p>
<p>Use a static code analyzer, they are very good at finding this kind of errors</p>