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] [day] [month] [year] [list]
Date:   Thu, 28 Jan 2021 19:39:12 +0800
From:   "wanghai (M)" <wanghai38@...wei.com>
To:     Linus Torvalds <torvalds@...ux-foundation.org>,
        syzbot <syzbot+d0bd96b4696c1ef67991@...kaller.appspotmail.com>,
        Pekka Enberg <penberg@...nel.org>,
        David Rientjes <rientjes@...gle.com>,
        Joonsoo Kim <iamjoonsoo.kim@....com>,
        Andrew Morton <akpm@...ux-foundation.org>
CC:     Dominique Martinet <asmadeus@...ewreck.org>,
        David Miller <davem@...emloft.net>, <ericvh@...il.com>,
        Jakub Kicinski <kuba@...nel.org>,
        Linux Kernel Mailing List <linux-kernel@...r.kernel.org>,
        <lucho@...kov.net>, Netdev <netdev@...r.kernel.org>,
        syzkaller-bugs <syzkaller-bugs@...glegroups.com>,
        <v9fs-developer@...ts.sourceforge.net>,
        Linux-MM <linux-mm@...ck.org>
Subject: Re: KASAN: invalid-free in p9_client_create (2)


在 2021/1/28 3:31, Linus Torvalds 写道:
> [ Participants list changed - syzbot thought this was networking and
> p9, but it really looks entirely like a slub internal bug. I left the
> innocent people on the list just to let them know they are innocent ]
>
> On Wed, Jan 27, 2021 at 6:27 AM syzbot
> <syzbot+d0bd96b4696c1ef67991@...kaller.appspotmail.com> wrote:
>> The issue was bisected to:
>>
>> commit dde3c6b72a16c2db826f54b2d49bdea26c3534a2
>> Author: Wang Hai <wanghai38@...wei.com>
>> Date:   Wed Jun 3 22:56:21 2020 +0000
>>
>>      mm/slub: fix a memory leak in sysfs_slab_add()
>>
>> BUG: KASAN: double-free or invalid-free in slab_free mm/slub.c:3142 [inline]
>> BUG: KASAN: double-free or invalid-free in kmem_cache_free+0x82/0x350 mm/slub.c:3158
> The p9 part of this bug report seems to be a red herring.
>
> The problem looks like it's simply the kmem_cache failure case, ie:
>
>   - mm/slab_common.c: create_cache(): if the __kmem_cache_create()
> fails, it does:
>
>          out_free_cache:
>                  kmem_cache_free(kmem_cache, s);
>
>   - but __kmem_cache_create() - at least for slub() - will have done
>
>          sysfs_slab_add(s) .. fails ..
>              -> kobject_del(&s->kobj); .. which frees s ...
>
> so the networking and p9 are fine, and the only reason p9 shows up in
> the trace is that apparently it causes that failure in
> kobject_init_and_add() for whatever reason, and that then exposes the
> problem.
>
> So the added kobject_put() really looks buggy in this situation, and
> the memory leak that that commit dde3c6b72a16 ("mm/slub: fix a memory
> leak in sysfs_slab_add()") fixes is now a double free.
>
> And no, I don't think you can just remove the kmem_cache_free() in
> create_cache(), because _other_ error cases of __kmem_cache_create()
> do not free this.
>
> Wang Hai - comments? I'm inclined to revert that commit for now unless
> somebody can come up with a proper fix..
>
>                Linus
> .
Hi, Linus.
I'm sorry for introducing this bug, and I agree to revert it.
I've just sent the revert patch.
https://lore.kernel.org/patchwork/patch/1372475/

Thanks,
Wang Hai

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ