Re: [PATCH] perf: Incorrect use of snprintf results in SEGV

From: Peter Seebach
Date: Tue Mar 06 2012 - 20:30:15 EST


On Tue, 6 Mar 2012 22:09:04 -0300
Arnaldo Carvalho de Melo <acme@xxxxxxxxxx> wrote:

> Or what kind of such pipe the people who designed snprintf were using
> :-(

I wasn't there for the original 4.4BSD implementation, but I was on the
ISO committee when we adopted it, and I regret to say, while the food
was lovely, the hosting organization didn't offer us any drugs at all.
But I can explain the rationale of the choice.

If snprintf returns the size it needed, and you know the size you gave
it, you have a choice of what to do, and you have all the information
you need to make an informed choice.

If it returns the amount it wrote, or possibly an error indicator (such
as -1) when out of space, you *don't* have the information you need to
make an informed choice, and one possible choice ("reallocate with the
right amount") is not available to you. We had also seen other functions
which made that implementation choice, and consistently, people
disliked them more.

To frame it another way: Imagine an alternative function, called
slenprintf(), which is just like snprintf except that it returns the
number of bytes written instead of the number it would have liked to
write in the event that the buffer isn't big enough. And also
vslenprintf(), analogous to vsnprintf().

Now consider what happens if you have one and want the semantics of the
other:

size_t
myslenprintf(char *buffer, size_t len, char *fmt, ...) {
size_t ret;
va_list ap;
va_start(ap, fmt)
ret = vsnprintf(buffer, len, fmt, ap);
/* easy to check for this possibility */
if (ret >= size)
return size - 1;
return ret;
}

size_t
mysnprintf(char *buffer, size_t len, char *fmt, ...) {
size_t ret;
va_list ap;
va_start(ap, fmt)
ret = vslenprintf(buffer, len, fmt, ap);
/* now what? */
...
}

-s
--
Listen, get this. Nobody with a good compiler needs to be justified.
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/