Best way to safely printf to a string? - Stack Overflow most recent 30 from stackoverflow.com2010-03-18T07:58:13Zhttp://stackoverflow.com/feeds/question/436367http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/436367/best-way-to-safely-printf-to-a-string3Best way to safely printf to a string?stuartreynoldshttp://stackoverflow.com/users/489562009-01-12T18:06:13Z2009-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#4363731Answer by Stefan for Best way to safely printf to a string?Stefanhttp://stackoverflow.com/users/480032009-01-12T18:09:33Z2009-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#43637611Answer by abyx for Best way to safely printf to a string?abyxhttp://stackoverflow.com/users/5732009-01-12T18:09:54Z2009-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#43638915Answer by Adam Peck for Best way to safely printf to a string?Adam Peckhttp://stackoverflow.com/users/266582009-01-12T18:11:15Z2009-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#4363931Answer by Rolf Rander for Best way to safely printf to a string?Rolf Randerhttp://stackoverflow.com/users/474022009-01-12T18:11:48Z2009-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#4363972Answer by dmckee for Best way to safely printf to a string?dmckeehttp://stackoverflow.com/users/25092009-01-12T18:12:42Z2009-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#4363986Answer by Kristopher Johnson for Best way to safely printf to a string?Kristopher Johnsonhttp://stackoverflow.com/users/11752009-01-12T18:12:48Z2009-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#4364312Answer by gnud for Best way to safely printf to a string?gnudhttp://stackoverflow.com/users/272042009-01-12T18:20:52Z2009-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 <strings.h>
#include <stdio.h>
#include <stdlib.h>
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#4365492Answer by Larry Gritz for Best way to safely printf to a string?Larry Gritzhttp://stackoverflow.com/users/38322009-01-12T18:55:00Z2009-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#4366250Answer by Johann Gerell for Best way to safely printf to a string?Johann Gerellhttp://stackoverflow.com/users/63452009-01-12T19:17:41Z2009-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#4369781Answer by Arkadiy for Best way to safely printf to a string?Arkadiyhttp://stackoverflow.com/users/34582009-01-12T20:53:49Z2009-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>