|
Message-ID: <8f002798-f68b-14cd-d321-f96b653fb51d@rasmusvillemoes.dk> Date: Thu, 21 Feb 2019 15:58:27 +0100 From: Rasmus Villemoes <linux@...musvillemoes.dk> To: Kees Cook <keescook@...omium.org>, "Tobin C. Harding" <me@...in.cc> Cc: Jann Horn <jannh@...gle.com>, "Tobin C. Harding" <tobin@...nel.org>, Shuah Khan <shuah@...nel.org>, Alexander Shishkin <alexander.shishkin@...ux.intel.com>, Greg Kroah-Hartman <gregkh@...uxfoundation.org>, Andy Shevchenko <andriy.shevchenko@...ux.intel.com>, Kernel Hardening <kernel-hardening@...ts.openwall.com>, kernel list <linux-kernel@...r.kernel.org>, Andy Lutomirski <luto@...capital.net>, Daniel Micay <danielmicay@...il.com>, Arnd Bergmann <arnd@...db.de>, Stephen Rothwell <sfr@...b.auug.org.au>, Miguel Ojeda <miguel.ojeda.sandonis@...il.com>, "Gustavo A. R. Silva" <gustavo@...eddedor.com> Subject: Re: [PATCH 5/6] lib: Fix function documentation for strncpy_from_user On 21/02/2019 07.02, Kees Cook wrote: > P.S. Here's C string API Rant (I just had to get this out, please feel > free to ignore): I'll bite. First, it's "linux kernel string API", only some of string.h interfaces are in std C. Sure, none of those satisfy all use cases, but adding Yet Another One also has its costs. > strcpy returns dest ... which is already known, so it's a meaningless > return value. > > strncpy returns dest (still meaningless) Yeah, same for memcpy, memset. Those are classic C interfaces. It does allow some micro-optimizations in some cases - since one is likely to continue doing other stuff with dest, the compiler might use the fact that it has dest in the return register instead of spilling and reloading it. But I do wonder what the real rationale was. > strlcpy returns strlen(src) ... the length we WOULD have copied. Why > would we care about that? I'm operating on dest. Were there callers > that needed to both copy part of src and learn how long it was at the > same time? The rationale is exactly the same as for snprintf - to allow you to optimistically format/copy to a buffer, and know exactly how much to realloc() in case it turned out to be too small. Of course, nobody ever uses strlcpy like that, since just doing strdup() is much much simpler and less error-prone. So yes, strlcpy() is often a silly interface to use. > strscpy returns -E2BIG or non-NUL bytes copied: yay, a return about > what actually happened from the operation! Well, strictly speaking, strlcpy()'s return value also tells you exactly what happened, just not in the kernel "negative errno for error condition" style. > ... snprintf returns what it WOULD have written, much like strlcpy > above. At least snprintf has an excuse: it can be used to calculate an > allocation size (called with a NULL dest and 0 size) ... but shouldn't > "how big is this format string going to be?" be a separate function? Why? Sure, you can make a wrapper vhowmuch(const char *fmt, va_args ap), but its implementation would have to be "return vsnprintf(NULL, 0, fmt, ap);", since we really must reuse the exact same logic for computing the length as for doing the actual printf'ing (otherwise they'd get out of sync). > I wonder if we can kill all kernel uses of snprintf too (after > introducing a "how big would it be?" function and switching all other > callers over to scnprintf)... Please no. snprintf() is standardized, has sane semantics (though one sometimes _want_ scnprintf semantics - in which case one can and should use that...), and, importantly, gcc understands those semantics. So we get optimizations and diagnostics that we'd miss if we kill off explicit snprintf and replace with non-standard howmuch+scnprintf. > So scnprintf() does the right thing (count of non-NUL bytes copied out). The right thing, when that's the thing you want to know. Which it is in the "build a string in a buffer by repeated printf calls, perhaps intermixed with a little flow control logic". But not so in a "format this stuff to this fixed-size char buffer inside that struct, and let me know [i.e., 'give me a way of knowing'] if it all fit". Hello, I'm you super-fantastic-one-size-fits-all string copying API. Please carefully fill out the following form, and I'll get back to you ASAP. A1: destination A2: max bytes to write B1: source B2: max bytes to read C1: do you want me to nul-terminate the destination? C2: if C1, should that be done by truncating the result if necessary? C3: how do you want me to handle leftover space in dest, if any? C4: should the destination be left entirely untouched in case the result does not fit? C5: is it an error if I do not encounter a nul byte somewhere in [B1, B1+B2-1] ? C6: how do you want me to report on the results of my efforts and my discoveries? C7: are there any special conditions I should take into account? (overlapping buffers, allergies, ...) Put -1 under A2 to mean "assume there's room enough". Put -1 under B2 to mean "assume there's a nul byte before walking into lala-land". Answering yes to C1 and C2 and writing 0 under A2 causes your CapsLock to stay permanently on. If there's any ambiguity in your answer to C6, the machine reboots. Rasmus
Powered by blists - more mailing lists
Confused about mailing lists and their use? Read about mailing lists on Wikipedia and check out these guidelines on proper formatting of your messages.