Re: + lib-stringc-strlcpy-might-read-too-far.patch added to -mm tree

From: Alexey Dobriyan
Date: Tue Apr 15 2014 - 07:37:03 EST


On Tue, Apr 15, 2014 at 2:18 PM, Dan Carpenter <dan.carpenter@xxxxxxxxxx> wrote:
> On Tue, Apr 15, 2014 at 01:49:38PM +0300, Alexey Dobriyan wrote:
>> Return value matters. It may not matter for kernel, because kernel is
>> not heavy string user.
>> But it is better to not diverge from master code:
>> http://www.openbsd.org/cgi-bin/cvsweb/src/lib/libc/string/strlcpy.c?rev=1.11
>>
>
> Oh... Hm. Maybe we should drop this patch then.
>
>> Counter-rationale:
>> * strlcpy() accepts strings, so if you're giving raw buffer you're
>> doing it wrong.
>> * last byte of last page argument is bogus because kernel copies data
>> from userspace first.
>
> The last byte of the page argument seems possible:
>
> foo = kmalloc();
> copy_from_user(foo, arg, sizeof(foo));

Correct code would do
foo->bar[sizeof(foo->bar)-1] = '\0';
if this field is a string.

> strlcpy(dest.str, foo->bar, sizeof(dest.str));
--
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/