lkml.org 
[lkml]   [2017]   [Aug]   [28]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
From
SubjectRe: [PATCH v2 4/5] cramfs: add mmap support
On Mon, Aug 28, 2017 at 09:29:58AM -0400, Nicolas Pitre wrote:
> > > + /* Make sure the vma didn't change between the locks */
> > > + vma = find_vma(mm, vmf->address);
> > > + if (vma->vm_ops != &cramfs_vmasplit_ops) {
> > > + /*
> > > + * Someone else raced with us and could have handled the fault.
> > > + * Let it go back to user space and fault again if necessary.
> > > + */
> > > + downgrade_write(&mm->mmap_sem);
> > > + return VM_FAULT_NOPAGE;
> > > + }
> > > +
> > > + /* Split the vma between the directly mapped area and the rest */
> > > + ret = split_vma(mm, vma, split_addr, 0);
> >
> > Egads... Everything else aside, who said that your split_... will have
> > anything to do with the vma you get from find_vma()?
>
> When vma->vm_ops == &cramfs_vmasplit_ops it is guaranteed that the vma
> is not fully populated and that the unpopulated area starts at
> split_addr. That split_addr was stored in vma->vm_private_data at the
> same time as vma->vm_ops. Given that mm->mmap_sem is held all along
> across find_vma(), split_vma() and the second find_vma() I hope that I
> can trust that things will be related.

Huh? You do realize that another thread might've been blocked on that ->mmap_sem
in mremap(), get it, have ours block on attempt to get ->mmap_sem exclusive,
exterminate the original vma and put there a vma that has also come from cramfs,
but other than that had not a damn thing in common with the original. Different
memory area, etc.

Matching ->vm_ops is nowhere near enough.

While we are at it, what happens if you mmap 120Kb, then munmap() the middle
40Kb. Leaving two 40Kb VMAs with 40Kb gap between them, that is. Will your
->vm_private_data be correct for both?

\
 
 \ /
  Last update: 2017-08-28 16:23    [W:0.081 / U:0.420 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site