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:   Tue, 30 Aug 2022 17:07:17 -0600
From:   Yu Zhao <yuzhao@...gle.com>
To:     Andrew Morton <akpm@...ux-foundation.org>
Cc:     Alexander Potapenko <glider@...gle.com>,
        Marco Elver <elver@...gle.com>,
        Alexander Viro <viro@...iv.linux.org.uk>,
        Alexei Starovoitov <ast@...nel.org>,
        Andrey Konovalov <andreyknvl@...gle.com>,
        Andy Lutomirski <luto@...nel.org>,
        Arnd Bergmann <arnd@...db.de>, Borislav Petkov <bp@...en8.de>,
        Christoph Hellwig <hch@....de>,
        Christoph Lameter <cl@...ux.com>,
        David Rientjes <rientjes@...gle.com>,
        Dmitry Vyukov <dvyukov@...gle.com>,
        Eric Dumazet <edumazet@...gle.com>,
        Greg Kroah-Hartman <gregkh@...uxfoundation.org>,
        Herbert Xu <herbert@...dor.apana.org.au>,
        Ilya Leoshkevich <iii@...ux.ibm.com>,
        Ingo Molnar <mingo@...hat.com>, Jens Axboe <axboe@...nel.dk>,
        Joonsoo Kim <iamjoonsoo.kim@....com>,
        Kees Cook <keescook@...omium.org>,
        Mark Rutland <mark.rutland@....com>,
        Matthew Wilcox <willy@...radead.org>,
        "Michael S. Tsirkin" <mst@...hat.com>,
        Pekka Enberg <penberg@...nel.org>,
        Peter Zijlstra <peterz@...radead.org>,
        Petr Mladek <pmladek@...e.com>,
        Steven Rostedt <rostedt@...dmis.org>,
        Thomas Gleixner <tglx@...utronix.de>,
        Vasily Gorbik <gor@...ux.ibm.com>,
        Vegard Nossum <vegard.nossum@...cle.com>,
        Vlastimil Babka <vbabka@...e.cz>,
        kasan-dev <kasan-dev@...glegroups.com>,
        Linux Memory Management List <linux-mm@...ck.org>,
        Linux-Arch <linux-arch@...r.kernel.org>,
        LKML <linux-kernel@...r.kernel.org>
Subject: Re: [PATCH v5 04/44] x86: asm: instrument usercopy in get_user() and put_user()

On Tue, Aug 30, 2022 at 5:00 PM Andrew Morton <akpm@...ux-foundation.org> wrote:
>
> On Tue, 30 Aug 2022 16:25:24 -0600 Yu Zhao <yuzhao@...gle.com> wrote:
>
> > On Tue, Aug 30, 2022 at 4:05 PM Andrew Morton <akpm@...ux-foundation.org> wrote:
> > >
> > > On Tue, 30 Aug 2022 16:23:44 +0200 Alexander Potapenko <glider@...gle.com> wrote:
> > >
> > > > >                  from init/do_mounts.c:2:
> > > > > ./include/linux/page-flags.h: In function ‘page_fixed_fake_head’:
> > > > > ./include/linux/page-flags.h:226:36: error: invalid use of undefined type ‘const struct page’
> > > > >   226 |             test_bit(PG_head, &page->flags)) {
> > > > >       |                                    ^~
> > > > > ./include/linux/bitops.h:50:44: note: in definition of macro ‘bitop’
> > > > >    50 |           __builtin_constant_p((uintptr_t)(addr) != (uintptr_t)NULL) && \
> > > > >       |                                            ^~~~
> > > > > ./include/linux/page-flags.h:226:13: note: in expansion of macro ‘test_bit’
> > > > >   226 |             test_bit(PG_head, &page->flags)) {
> > > > >       |             ^~~~~~~~
> > > > > ...
> > > >
> > > > Gotcha, this is a circular dependency: mm_types.h -> sched.h ->
> > > > kmsan.h -> gfp.h -> mmzone.h -> page-flags.h -> mm_types.h, where the
> > > > inclusion of sched.h into mm_types.h was only introduced in "mm:
> > > > multi-gen LRU: support page table walks" - that's why the problem was
> > > > missing in other trees.
> > >
> > > Ah, thanks for digging that out.
> > >
> > > Yu, that inclusion is regrettable.
> >
> > Sorry for the trouble -- it's also superfluous because we don't call
> > lru_gen_use_mm() when switching to the kernel.
> >
> > I've queued the following for now.
>
> Well, the rest of us want it too.
>
> > --- a/include/linux/mm_types.h
> > +++ b/include/linux/mm_types.h
> > @@ -3,7 +3,6 @@
> >  #define _LINUX_MM_TYPES_H
> >
> >  #include <linux/mm_types_task.h>
> > -#include <linux/sched.h>
> >
> >  #include <linux/auxvec.h>
> >  #include <linux/kref.h>
> > @@ -742,8 +741,7 @@ static inline void lru_gen_init_mm(struct mm_struct *mm)
> >
> >  static inline void lru_gen_use_mm(struct mm_struct *mm)
> >  {
> > -       if (!(current->flags & PF_KTHREAD))
> > -               WRITE_ONCE(mm->lru_gen.bitmap, -1);
> > +       WRITE_ONCE(mm->lru_gen.bitmap, -1);
> >  }
>
> Doesn't apply.  I did:
>
> --- a/include/linux/mm_types.h~mm-multi-gen-lru-support-page-table-walks-fix
> +++ a/include/linux/mm_types.h
> @@ -3,7 +3,6 @@
>  #define _LINUX_MM_TYPES_H
>
>  #include <linux/mm_types_task.h>
> -#include <linux/sched.h>
>
>  #include <linux/auxvec.h>
>  #include <linux/kref.h>
> @@ -742,11 +741,7 @@ static inline void lru_gen_init_mm(struc
>
>  static inline void lru_gen_use_mm(struct mm_struct *mm)
>  {
> -       /* unlikely but not a bug when racing with lru_gen_migrate_mm() */
> -       VM_WARN_ON_ONCE(list_empty(&mm->lru_gen.list));

Yes. I got a report that somebody tripped over this "unlikely"
condition (and ascertained it's not a bug). So I deleted this part as
well.

Will refresh the series around rc5. Thanks.

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ