Re: [PATCH] Revert "kmemleak: allow to coexist with fault injection"

From: Qian Cai
Date: Tue Jul 16 2019 - 15:21:22 EST


On Tue, 2019-07-16 at 12:01 -0700, Yang Shi wrote:
>
> On 7/16/19 11:23 AM, Qian Cai wrote:
> > On Wed, 2019-07-17 at 01:50 +0800, Yang Shi wrote:
> > > When running ltp's oom test with kmemleak enabled, the below warning was
> > > triggerred since kernel detects __GFP_NOFAIL & ~__GFP_DIRECT_RECLAIM is
> > > passed in:
> > >
> > > WARNING: CPU: 105 PID: 2138 at mm/page_alloc.c:4608
> > > __alloc_pages_nodemask+0x1c31/0x1d50
> > > Modules linked in: loop dax_pmem dax_pmem_core ip_tables x_tables xfs
> > > virtio_net net_failover virtio_blk failover ata_generic virtio_pci
> > > virtio_ring
> > > virtio libata
> > > CPU: 105 PID: 2138 Comm: oom01 Not tainted 5.2.0-next-20190710+ #7
> > > Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS rel-1.10.2-0-
> > > g5f4c7b1-prebuilt.qemu-project.org 04/01/2014
> > > RIP: 0010:__alloc_pages_nodemask+0x1c31/0x1d50
> > > ...
> > > ÂÂkmemleak_alloc+0x4e/0xb0
> > > ÂÂkmem_cache_alloc+0x2a7/0x3e0
> > > ÂÂ? __kmalloc+0x1d6/0x470
> > > ÂÂ? ___might_sleep+0x9c/0x170
> > > ÂÂ? mempool_alloc+0x2b0/0x2b0
> > > ÂÂmempool_alloc_slab+0x2d/0x40
> > > ÂÂmempool_alloc+0x118/0x2b0
> > > ÂÂ? __kasan_check_read+0x11/0x20
> > > ÂÂ? mempool_resize+0x390/0x390
> > > ÂÂ? lock_downgrade+0x3c0/0x3c0
> > > ÂÂbio_alloc_bioset+0x19d/0x350
> > > ÂÂ? __swap_duplicate+0x161/0x240
> > > ÂÂ? bvec_alloc+0x1b0/0x1b0
> > > ÂÂ? do_raw_spin_unlock+0xa8/0x140
> > > ÂÂ? _raw_spin_unlock+0x27/0x40
> > > ÂÂget_swap_bio+0x80/0x230
> > > ÂÂ? __x64_sys_madvise+0x50/0x50
> > > ÂÂ? end_swap_bio_read+0x310/0x310
> > > ÂÂ? __kasan_check_read+0x11/0x20
> > > ÂÂ? check_chain_key+0x24e/0x300
> > > ÂÂ? bdev_write_page+0x55/0x130
> > > ÂÂ__swap_writepage+0x5ff/0xb20
> > >
> > > The mempool_alloc_slab() clears __GFP_DIRECT_RECLAIM, however kmemleak has
> > > __GFP_NOFAIL set all the time due to commit
> > > d9570ee3bd1d4f20ce63485f5ef05663866fe6c0 ("kmemleak: allow to coexist
> > > with fault injection").ÂÂBut, it doesn't make any sense to have
> > > __GFP_NOFAIL and ~__GFP_DIRECT_RECLAIM specified at the same time.
> > >
> > > According to the discussion on the mailing list, the commit should be
> > > reverted for short term solution.ÂÂCatalin Marinas would follow up with a
> > > better
> > > solution for longer term.
> > >
> > > The failure rate of kmemleak metadata allocation may increase in some
> > > circumstances, but this should be expected side effect.
> >
> > As mentioned in anther thread, the situation for kmemleak under memory
> > pressure
> > has already been unhealthy. I don't feel comfortable to make it even worse
> > by
> > reverting this commit alone. This could potentially make kmemleak kill
> > itself
> > easier and miss some more real memory leak later.
> >
> > To make it really a short-term solution before the reverting, I think
> > someone
> > needs to follow up with the mempool solution with tunable pool size
> > mentioned
> > in,
> >
> > https://lore.kernel.org/linux-mm/20190328145917.GC10283@xxxxxxxxxxxxxxxxxxxx
> > /
> >
> > I personally not very confident that Catalin will find some time soon to
> > implement embedding kmemleak metadata into the slab. Even he or someone does
> > eventually, it probably need quite some time to test and edge out many of
> > corner
> > cases that kmemleak could have by its natural.
>
> Thanks for sharing some background. I didn't notice this topic had beenÂ
> discussed. I'm not sure if this revert would make things worse since I'mÂ
> supposed real memory leak would be detected sooner before oom kicks in,Â
> and kmemleak is already broken with __GFP_NOFAIL.

Well, people could inject some memory pressure at the middle of a test run. OOM
does not necessarily mean kmemleak would always be disabled, as it sometimes
could survive if the memory is recovering fast enough.

Thanks to this commit, there are allocation with __GFP_DIRECT_RECLAIM that
succeeded would keep trying with __GFP_NOFAIL for kmemleak tracking object
allocations. Otherwise, one kmemleak object allocation failure would kill the
whole kmemleak.

>
> It seems everyone agree __GFP_NPFAIL should be removed? Anyway, I wouldÂ
> like leave the decision to Catalin.
>
> >
> > > Suggested-by: Catalin Marinas <catalin.marinas@xxxxxxx>
> > > Cc: Michal Hocko <mhocko@xxxxxxxx>
> > > Cc: Dmitry Vyukov <dvyukov@xxxxxxxxxx>
> > > Cc: David Rientjes <rientjes@xxxxxxxxxx>
> > > Cc: Matthew Wilcox <willy@xxxxxxxxxxxxx>
> > > Cc: Qian Cai <cai@xxxxxx>
> > > Signed-off-by: Yang Shi <yang.shi@xxxxxxxxxxxxxxxxx>
> > > ---
> > > ÂÂmm/kmemleak.c | 2 +-
> > > ÂÂ1 file changed, 1 insertion(+), 1 deletion(-)
> > >
> > > diff --git a/mm/kmemleak.c b/mm/kmemleak.c
> > > index 9dd581d..884a5e3 100644
> > > --- a/mm/kmemleak.c
> > > +++ b/mm/kmemleak.c
> > > @@ -114,7 +114,7 @@
> > > ÂÂ/* GFP bitmask for kmemleak internal allocations */
> > > ÂÂ#define gfp_kmemleak_mask(gfp) (((gfp) & (GFP_KERNEL |
> > > GFP_ATOMIC)) |
> > > \
> > > ÂÂ Â__GFP_NORETRY | __GFP_NOMEMALLOC | \
> > > - Â__GFP_NOWARN | __GFP_NOFAIL)
> > > + Â__GFP_NOWARN)
> > > ÂÂ
> > > ÂÂ/* scanning area inside a memory block */
> > > ÂÂstruct kmemleak_scan_area {
>
>