lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date:   Thu, 7 Jul 2022 14:58:07 +0300
From:   "Kirill A. Shutemov" <kirill.shutemov@...ux.intel.com>
To:     Alexander Potapenko <glider@...gle.com>
Cc:     Dave Hansen <dave.hansen@...ux.intel.com>,
        Andy Lutomirski <luto@...nel.org>,
        Peter Zijlstra <peterz@...radead.org>,
        the arch/x86 maintainers <x86@...nel.org>,
        Kostya Serebryany <kcc@...gle.com>,
        Andrey Ryabinin <ryabinin.a.a@...il.com>,
        Andrey Konovalov <andreyknvl@...il.com>,
        Dmitry Vyukov <dvyukov@...gle.com>,
        "H . J . Lu" <hjl.tools@...il.com>,
        Andi Kleen <ak@...ux.intel.com>,
        Rick Edgecombe <rick.p.edgecombe@...el.com>,
        Linux Memory Management List <linux-mm@...ck.org>,
        LKML <linux-kernel@...r.kernel.org>
Subject: Re: [PATCHv4 3/8] mm: Pass down mm_struct to untagged_addr()

On Thu, Jul 07, 2022 at 10:56:53AM +0200, Alexander Potapenko wrote:
> On Thu, Jul 7, 2022 at 1:14 AM Kirill A. Shutemov
> <kirill.shutemov@...ux.intel.com> wrote:
> >
> > On Tue, Jul 05, 2022 at 05:42:21PM +0200, Alexander Potapenko wrote:
> > > Kirill,
> > >
> > >
> > > > diff --git a/lib/strnlen_user.c b/lib/strnlen_user.c
> > > > index feeb935a2299..abc096a68f05 100644
> > > > --- a/lib/strnlen_user.c
> > > > +++ b/lib/strnlen_user.c
> > > > @@ -97,7 +97,7 @@ long strnlen_user(const char __user *str, long count)
> > > >                 return 0;
> > > >
> > > >         max_addr = TASK_SIZE_MAX;
> > > > -       src_addr = (unsigned long)untagged_addr(str);
> > > > +       src_addr = (unsigned long)untagged_addr(current->mm, str);
> > >
> > > In a downstream kernel with LAM disabled I'm seeing current->mm being
> > > NULL at this point, because strnlen_user() is being called by
> > > kdevtmpfs.
> > > IIUC current->mm is only guaranteed to be non-NULL in the userspace
> > > process context, whereas untagged_addr() may get called in random
> > > places.
> > >
> > > Am I missing something?
> >
> > Hm. Could you show a traceback?
> >
> > As strnlen_user() intended to be used on an user string I expected it to
> > be called from a process context. I guess I'm wrong, but I don't yet
> > understand why.
> 
> Oh, I see now. The old implementation of devtmpfsd()
> (https://elixir.bootlin.com/linux/v5.4/source/drivers/base/devtmpfs.c#L397)
> uses ksys_mount(), which assumes that the strings must be copied from
> the userspace, whereas they are actually constants in kernel .rodata
> 
> Wonder if the validity of mm->current for userspace accesses is
> actually enforced anyhow in newer kernels.

I think it is.

See 967747bbc084 and how it changes strnlen_user(). With max_addr equal to
TASK_SIZE_MAX, strnlen_user() will always fail on a kernel string.

-- 
 Kirill A. Shutemov

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ