public inbox for kernel-hardening@lists.openwall.com
 help / color / mirror / Atom feed
From: Michael Ellerman <mpe@ellerman.id.au>
To: Kees Cook <keescook@chromium.org>,
	Geert Uytterhoeven <geert@linux-m68k.org>
Cc: "linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
	Hoeun Ryu <hoeun.ryu@gmail.com>,
	"kernel-hardening@lists.openwall.com"
	<kernel-hardening@lists.openwall.com>
Subject: Re: [kernel-hardening] Re: [PATCH] usercopy: Add tests for all get_user() sizes
Date: Sat, 18 Feb 2017 20:32:52 +1100	[thread overview]
Message-ID: <878tp3j12z.fsf@concordia.ellerman.id.au> (raw)
In-Reply-To: <CAGXu5j+MtxHxiPbSG3+6Tuw3EkBPixO73GYn692Nfoi1AwPWZw@mail.gmail.com>

Kees Cook <keescook@chromium.org> writes:

> On Wed, Feb 15, 2017 at 12:50 AM, Geert Uytterhoeven
> <geert@linux-m68k.org> wrote:
>> On Tue, Feb 14, 2017 at 9:40 PM, Kees Cook <keescook@chromium.org> wrote:
>>> The existing test was only exercising native unsigned long size
>>> get_user(). For completeness, we should check all sizes.
>>>
>>> Signed-off-by: Kees Cook <keescook@chromium.org>
>>> ---
>>>  lib/test_user_copy.c | 45 ++++++++++++++++++++++++++++++++++-----------
>>>  1 file changed, 34 insertions(+), 11 deletions(-)
>>>
>>> diff --git a/lib/test_user_copy.c b/lib/test_user_copy.c
>>> index ac3a60ba9331..49569125b7c5 100644
>>> --- a/lib/test_user_copy.c
>>> +++ b/lib/test_user_copy.c
>>> @@ -40,8 +40,11 @@ static int __init test_user_copy_init(void)
>>>         char __user *usermem;
>>>         char *bad_usermem;
>>>         unsigned long user_addr;
>>> -       unsigned long value = 0x5A;
>>>         char *zerokmem;
>>> +       u8 val_u8;
>>> +       u16 val_u16;
>>> +       u32 val_u32;
>>> +       u64 val_u64;
>>>
>>>         kmem = kmalloc(PAGE_SIZE * 2, GFP_KERNEL);
>>>         if (!kmem)
>>> @@ -72,10 +75,20 @@ static int __init test_user_copy_init(void)
>>>                     "legitimate copy_from_user failed");
>>>         ret |= test(copy_to_user(usermem, kmem, PAGE_SIZE),
>>>                     "legitimate copy_to_user failed");
>>> -       ret |= test(get_user(value, (unsigned long __user *)usermem),
>>> -                   "legitimate get_user failed");
>>> -       ret |= test(put_user(value, (unsigned long __user *)usermem),
>>> -                   "legitimate put_user failed");
>>> +
>>> +#define test_legit(size)                                                 \
>>> +       do {                                                              \
>>> +               ret |= test(get_user(val_##size, (size __user *)usermem), \
>>> +                   "legitimate get_user (" #size ") failed");            \
>>> +               ret |= test(put_user(val_##size, (size __user *)usermem), \
>>> +                   "legitimate put_user (" #size ") failed");            \
>>> +       } while (0)
>>> +
>>> +       test_legit(u8);
>>> +       test_legit(u16);
>>> +       test_legit(u32);
>>> +       test_legit(u64);
>>> +#undef test_legit
>>
>> ERROR: "__get_user_bad" [lib/test_user_copy.ko] undefined!
>>
>> http://kisskb.ellerman.id.au/kisskb/buildresult/12936728/
>>
>> So 64-bit get_user() support is mandatory now?
>
> That's not my intention. :) In my sampling of architectures, I missed
> a couple 32-bit archs that don't support 64-bit getuser(). I'm not
> sure how to correctly write these tests, though, since it seems rather
> ad-hoc. e.g. m68k has 64-bit getuser() commented out due to an old gcc
> bug...
>
> Should I just universally skip 64-bit getuser on 32-bit archs?

I think you should just make it opt-in for 32-bit arches.

cheers

  reply	other threads:[~2017-02-18  9:32 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-02-14 20:40 [kernel-hardening] [PATCH] usercopy: Add tests for all get_user() sizes Kees Cook
2017-02-15  8:50 ` [kernel-hardening] " Geert Uytterhoeven
2017-02-15 17:06   ` Kees Cook
2017-02-18  9:32     ` Michael Ellerman [this message]
2017-02-21 19:09       ` Kees Cook

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=878tp3j12z.fsf@concordia.ellerman.id.au \
    --to=mpe@ellerman.id.au \
    --cc=geert@linux-m68k.org \
    --cc=hoeun.ryu@gmail.com \
    --cc=keescook@chromium.org \
    --cc=kernel-hardening@lists.openwall.com \
    --cc=linux-kernel@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox