Best way to safely printf to a string? - Stack Overflow most recent 30 from stackoverflow.com 2010-03-18T07:58:13Z http://stackoverflow.com/feeds/question/436367 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/436367/best-way-to-safely-printf-to-a-string 3 Best way to safely printf to a string? stuartreynolds http://stackoverflow.com/users/48956 2009-01-12T18:06:13Z 2009-01-12T21:06:03Z <p>Does anyone know a good safe way to redirect the output of a printf-style function to a string? The obvious ways result in buffer overflows.</p> <p>Something like:</p> <pre><code>string s; output.beginRedirect( s ); // redirect output to s ... output.print( "%s%d", foo, bar ); output.endRedirect(); </code></pre> <p>I think the problem is the same as asking, "how many characters will print produce?" Ideas?</p> http://stackoverflow.com/questions/436367/best-way-to-safely-printf-to-a-string/436373#436373 1 Answer by Stefan for Best way to safely printf to a string? Stefan http://stackoverflow.com/users/48003 2009-01-12T18:09:33Z 2009-01-12T18:09:33Z <p>Microsoft introduce the '<a href="http://msdn.microsoft.com/en-us/library/239ffwa0(VS.80).aspx" rel="nofollow">safe</a>' crt functions for this.</p> <p>You could use <a href="http://msdn.microsoft.com/en-us/library/239ffwa0(VS.80).aspx" rel="nofollow">printf_s</a>()</p> http://stackoverflow.com/questions/436367/best-way-to-safely-printf-to-a-string/436376#436376 11 Answer by abyx for Best way to safely printf to a string? abyx http://stackoverflow.com/users/573 2009-01-12T18:09:54Z 2009-01-12T18:09:54Z <p>The snprintf() function prints to a string, but only as much as the length given to it. Might be what you're looking for...</p> http://stackoverflow.com/questions/436367/best-way-to-safely-printf-to-a-string/436389#436389 15 Answer by Adam Peck for Best way to safely printf to a string? Adam Peck http://stackoverflow.com/users/26658 2009-01-12T18:11:15Z 2009-01-12T21:06:03Z <p>You can use:</p> <p><a href="http://www.cplusplus.com/reference/clibrary/cstdio/sprintf.html" rel="nofollow">snprintf</a> if you are working with a char*</p> <p><a href="http://www.cplusplus.com/reference/iostream/stringstream/" rel="nofollow">stringstream</a> if you want to use strings (not same as printf but will allow you to easily manipulate the string using the normal stream functions).</p> <p><a href="http://www.boost.org/doc/libs/1_37_0/libs/format/doc/format.html" rel="nofollow">boost::format</a> if you want a function similar to printf that will work with streams. (as per jalf in comments)</p> http://stackoverflow.com/questions/436367/best-way-to-safely-printf-to-a-string/436393#436393 1 Answer by Rolf Rander for Best way to safely printf to a string? Rolf Rander http://stackoverflow.com/users/47402 2009-01-12T18:11:48Z 2009-01-12T18:11:48Z <p>With C99 you have the snprintf-function which takes the size of the buffer as a parameter. The GNU C-library has asprintf which allocates a buffer for you. For c++ though, you might be better of using iostream.</p> <p><a href="http://en.wikipedia.org/wiki/Printf#Buffer_safety_and_sprintf" rel="nofollow">Wikipedia</a> has more info.</p> http://stackoverflow.com/questions/436367/best-way-to-safely-printf-to-a-string/436397#436397 2 Answer by dmckee for Best way to safely printf to a string? dmckee http://stackoverflow.com/users/2509 2009-01-12T18:12:42Z 2009-01-12T18:12:42Z <p>Old school:</p> <pre><code>snprintf() </code></pre> <p>allows you to put a limit on the number written, and return the actual written size, and</p> <pre><code>asprintf() </code></pre> <p>allocate (with <code>malloc()</code>) a sufficient buffer which then becomes your problem to <code>free()</code>. `asprintf is a GNU libc function now reimplemented in the BSD libc.</p> http://stackoverflow.com/questions/436367/best-way-to-safely-printf-to-a-string/436398#436398 6 Answer by Kristopher Johnson for Best way to safely printf to a string? Kristopher Johnson http://stackoverflow.com/users/1175 2009-01-12T18:12:48Z 2009-01-12T18:18:41Z <p>Since you've tagged this as C++ (rather than just C), I'll point out that the typical way to do this sort of thing in C++ is to use <a href="http://www.cplusplus.com/reference/iostream/stringstream/" rel="nofollow">stringstream</a>, not the printf family. No need to worry about buffer overflows with stringstreams.</p> <p>The <a href="http://www.boost.org/doc/libs/1_37_0/libs/format/index.html" rel="nofollow">Boost Format</a> library is also available if you like printf-style format strings but want something safer.</p> http://stackoverflow.com/questions/436367/best-way-to-safely-printf-to-a-string/436431#436431 2 Answer by gnud for Best way to safely printf to a string? gnud http://stackoverflow.com/users/27204 2009-01-12T18:20:52Z 2009-01-12T18:20:52Z <p>snprintf() returns the number of bytes needed to write the whole string. So, as a tiny example:</p> <pre><code>#include &lt;strings.h&gt; #include &lt;stdio.h&gt; #include &lt;stdlib.h&gt; int main(int argc, char** argv) { char* buf = 0; size_t bufsize = 0; size_t sz; const char* format="%s and %s."; const char* str_1 ="string 1"; const char* str_2 ="string 2"; sz = snprintf(buf, bufsize, format, str_1, str_2); printf("The buffer needs to be %d bytes.\n", sz); buf=malloc(sz+1); if(!buf) { printf("Can't allocate buffer!\n"); return 1; } bufsize = sz+1; buf[bufsize-1] = '\0'; sz = snprintf(buf, bufsize, format, str_1, str_2); printf("Filled buffer with %d bytes.\n", sz); printf("The buffer contains:\n'%s'\n", buf); return 0; } </code></pre> <p>output:</p> <pre><code>The buffer needs to be 22 bytes. Filled buffer with 22 bytes. The buffer contains: 'string 1 and string 2.' </code></pre> http://stackoverflow.com/questions/436367/best-way-to-safely-printf-to-a-string/436549#436549 2 Answer by Larry Gritz for Best way to safely printf to a string? Larry Gritz http://stackoverflow.com/users/3832 2009-01-12T18:55:00Z 2009-01-12T18:55:00Z <p><a href="http://stackoverflow.com/questions/69738/c-how-to-get-fprintf-results-as-a-stdstring-w-o-sprintf#69911">This StackOverflow question</a> has a similar discussion. Also in that question I present my favorite solution, a "format" function that takes identical arguments to printf and returns a std::string. </p> http://stackoverflow.com/questions/436367/best-way-to-safely-printf-to-a-string/436625#436625 0 Answer by Johann Gerell for Best way to safely printf to a string? Johann Gerell http://stackoverflow.com/users/6345 2009-01-12T19:17:41Z 2009-01-12T19:17:41Z <p>On Windows:</p> <pre><code>StringCchPrintf StringCbPrintf </code></pre> <p>from <code>strsafe.h/lib</code>.</p> http://stackoverflow.com/questions/436367/best-way-to-safely-printf-to-a-string/436978#436978 1 Answer by Arkadiy for Best way to safely printf to a string? Arkadiy http://stackoverflow.com/users/3458 2009-01-12T20:53:49Z 2009-01-12T20:53:49Z <p>I find the printf formatting to be very helpful and easier to use than streams. On the other hand, I do like std::string a lot too. The solution is to use sprintf, but that cannot handle arbitrary buffer size.</p> <p>I've found that I need to handle common case (say, buffer limited to 256 chars) w/o overhead, and yet handle the large buffer safely. To do that, I have a buffer of 256 chars alocated in my class as a member, and I use snprinf, passing that buffer and its size. If snprintf succeeds, I can immediately retunr the formatted string. If it fails, I allocate the buffer and call snprinf again. The buffer is deallocated in the class' destructor.</p>