[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <CACT4Y+Ynm+LPupT0OM=E8AdF0bQDKc-arPy3M=V1D5V0tCmZ=g@mail.gmail.com>
Date: Sat, 29 Dec 2018 07:38:08 +0100
From: Dmitry Vyukov <dvyukov@...gle.com>
To: "Kirill A. Shutemov" <kirill@...temov.name>
Cc: Andrew Morton <akpm@...ux-foundation.org>,
syzbot <syzbot+b437b5a429d680cf2217@...kaller.appspotmail.com>,
"Darrick J. Wong" <darrick.wong@...cle.com>,
Johannes Weiner <hannes@...xchg.org>,
Hugh Dickins <hughd@...gle.com>, Jan Kara <jack@...e.cz>,
josef@...icpanda.com, Souptick Joarder <jrdr.linux@...il.com>,
LKML <linux-kernel@...r.kernel.org>,
Linux-MM <linux-mm@...ck.org>,
Stephen Rothwell <sfr@...b.auug.org.au>,
syzkaller-bugs <syzkaller-bugs@...glegroups.com>,
Matthew Wilcox <willy@...radead.org>
Subject: Re: KASAN: use-after-free Read in filemap_fault
On Sat, Dec 29, 2018 at 12:51 AM Kirill A. Shutemov
<kirill@...temov.name> wrote:
>
> On Fri, Dec 28, 2018 at 01:09:38PM -0800, Andrew Morton wrote:
> > On Fri, 28 Dec 2018 12:51:04 -0800 syzbot <syzbot+b437b5a429d680cf2217@...kaller.appspotmail.com> wrote:
> >
> > > Hello,
> > >
> > > syzbot found the following crash on:
> >
> > uh-oh. Josef, could you please take a look?
> >
> > : page = find_get_page(mapping, offset);
> > : if (likely(page) && !(vmf->flags & FAULT_FLAG_TRIED)) {
> > : /*
> > : * We found the page, so try async readahead before
> > : * waiting for the lock.
> > : */
> > : fpin = do_async_mmap_readahead(vmf, page);
> > : } else if (!page) {
> > : /* No page in the page cache at all */
> > : fpin = do_sync_mmap_readahead(vmf);
> > : count_vm_event(PGMAJFAULT);
> > : count_memcg_event_mm(vmf->vma->vm_mm, PGMAJFAULT);
> >
> > vmf->vma has been freed at this point.
> >
> > : ret = VM_FAULT_MAJOR;
> > : retry_find:
> > : page = pagecache_get_page(mapping, offset,
> > : FGP_CREAT|FGP_FOR_MMAP,
> > : vmf->gfp_mask);
> > : if (!page) {
> > : if (fpin)
> > : goto out_retry;
> > : return vmf_error(-ENOMEM);
> > : }
> > : }
> >
>
> Here's a fixup for "filemap: drop the mmap_sem for all blocking operations".
If you are going to squash this, please add:
Tested-by: syzbot+b437b5a429d680cf2217@...kaller.appspotmail.com
> do_sync_mmap_readahead() drops mmap_sem now, so by the time of
> dereferencing vmf->vma for count_memcg_event_mm() the VMA can be gone.
>
> diff --git a/mm/filemap.c b/mm/filemap.c
> index 00a9315f45d4..65c85c47bdb1 100644
> --- a/mm/filemap.c
> +++ b/mm/filemap.c
> @@ -2554,10 +2554,10 @@ vm_fault_t filemap_fault(struct vm_fault *vmf)
> fpin = do_async_mmap_readahead(vmf, page);
> } else if (!page) {
> /* No page in the page cache at all */
> - fpin = do_sync_mmap_readahead(vmf);
> count_vm_event(PGMAJFAULT);
> count_memcg_event_mm(vmf->vma->vm_mm, PGMAJFAULT);
> ret = VM_FAULT_MAJOR;
> + fpin = do_sync_mmap_readahead(vmf);
> retry_find:
> page = pagecache_get_page(mapping, offset,
> FGP_CREAT|FGP_FOR_MMAP,
> --
> Kirill A. Shutemov
>
> --
> You received this message because you are subscribed to the Google Groups "syzkaller-bugs" group.
> To unsubscribe from this group and stop receiving emails from it, send an email to syzkaller-bugs+unsubscribe@...glegroups.com.
> To view this discussion on the web visit https://groups.google.com/d/msgid/syzkaller-bugs/20181228235106.okk3oastsnpxusxs%40kshutemo-mobl1.
> For more options, visit https://groups.google.com/d/optout.
Powered by blists - more mailing lists