vote up 2 vote down star
1

I saw use of this pattern to concatenate onto a string in some code I was working on:

sprintf(buffer, "%s <input type='file' name='%s' />\r\n", buffer, id);
sprintf(buffer, "%s</td>", buffer);

and I'm fairly certain it's not safe C. You'll notice that buffer is both the output and the first input.

Apart from the obvious possibility of a buffer overflow, I believe there is no guarantee that buffer doesn't get changed between the start and the end of the function (i.e., there is no guarantee as to what the state of buffer will be during the execution of the function). The signature of sprintf additionally specifies that the target string is restricted.

I also recall a report of a speculative writing in memcpy, and I see no reason why some C library might do the same thing in a sprintf. In this case, of course, it would be writing to its source. So is this behaviour safe?

FYI, I proposed:

char *bufEnd = buffer + strlen(buffer);
/* sprintf returns the number of f'd and print'd into the s */
bufEnd += sprintf(bufEnd, " <input type='file' name='%s' />\r\n", id);

to replace this.

flag

57% accept rate
Even if it's safe (won't crash, etc.) I can imagine it generating a result other than the expected one. – Andrew Medico Aug 16 at 3:08

4 Answers

vote up 6 vote down check

From the glibc sprintf() documentation:

The behavior of this function is undefined if copying takes place between objects that overlap—for example, if s is also given as an argument to be printed under control of the ‘%s’ conversion.

It may be safe in a particular implementation; but you could not count on it being portable.

I'm not sure that your proposal would be safe in all cases either. You could still be overlapping buffers. It's late and my wife is buggin me but I think that you could still have the case where you want to use the original string again in the concatenated string and are overwriting the null character and so the sprintf implementation might not know where the re-used string ends.

You might just want to stick with a snprint() to a temp buffer, then strncat() it onto the original buffer.

link|flag
Okay, just wanted a sanity check. [POSIX says the same thing](opengroup.org/onlinepubs/9699919799/…): > If copying takes place between objects that overlap as a result of a call to sprintf() or snprintf(), the results are undefined. – Paul Fisher Aug 16 at 3:00
Actually, I'm not overlapping buffers in my second one—it's a strictly different buffer. I don't use the original. – Paul Fisher Aug 16 at 3:14
Unless you're seeing something I don't, which is entirely possible. – Paul Fisher Aug 16 at 3:15
ok yeah I see that; I guess the only risky case is if you want to re-use the original string at some point in the concatenated string. – Karl Voigtland Aug 16 at 3:16
vote up 1 vote down

If you want to concatenate formatted text to the end of a buffer using printf(), I'd recommend you use an integer to keep track of the end position.

int i = strlen(buffer);
i += sprintf(&buffer[i], " <input type='file' name='%s' />\r\n", id);
i += sprintf(&buffer[i], "</td>");

or:

int i = strlen(buffer);
i += sprintf(&buffer[i], " <input type='file' name='%s' />\r\n", id);
strcat(&buffer[i], "</td>");

And before people go berserk downvoting this ("This isn't safe! You can overrun the buffer!"), I'm just addressing a reasonable way to build a formatted string in C/C++.

link|flag
I think your suggestion is functionally the same as my proposed replacement, but using slightly different notation. I can see why some might prefer to see it written this way, though. – Paul Fisher Aug 16 at 3:47
vote up 0 vote down

In this specific case, it is going to work because the string in buffer will be the first thing that is going to enter in buffer (again, useless), so you should use strcat() instead to get the [almost] same effect.

But, if you are trying to combine strcat() with the formating possibilities of sprintf(), you may try this:

sprintf(&buffer[strlen(buffer)], " <input type='file' name='%s' />\r\n", id);
link|flag
vote up -1 vote down

sprintf() is not safe. Try snprintf() instead.

link|flag
I understand about the possibility of buffer overflows. That wasn't the question I asked—I wanted to know whether the overwriting behaviour was safe. – Paul Fisher Aug 16 at 3:02
Actually, according to Microsoft, snprintf is unsafe too, you need to use their much safer snprintf_s </sarcasm> – dreamlax Aug 16 at 3:08
Then the question is not about safety. – Havenard Aug 16 at 3:09
it's not about buffer-overflow-safety, but it is about whether a certain behaviour has the possibility of corrupting data, which seems like safety to me. But now we're nitpicking. – Paul Fisher Aug 16 at 3:24

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.