Re: [PATCH v4 3.0-rc2-tip 7/22] 7: uprobes: mmap and fork hooks.

From: Peter Zijlstra
Date: Mon Jun 27 2011 - 05:05:12 EST


On Mon, 2011-06-27 at 12:15 +0530, Srikar Dronamraju wrote:

> > > mutex_lock(&mapping->i_mmap_mutex);
> > > add_to_temp_list(vma, inode, &tmp_list);
> > > list_for_each_entry_safe(uprobe, u, &tmp_list, pending_list) {
> > > loff_t vaddr;
> > >
> > > list_del(&uprobe->pending_list);
> > > if (ret)
> > > continue;
> > >
> > > vaddr = vma->vm_start + uprobe->offset;
> > > vaddr -= vma->vm_pgoff << PAGE_SHIFT;
> > > ret = install_breakpoint(mm, uprobe, vaddr);
> >
> > Right, so this is the problem, you cannot do allocations under
> > i_mmap_mutex, however I think you can under i_mutex.
>
> I didnt know that we cannot do allocations under i_mmap_mutex.
> Why is this?

Because we try to take i_mmap_mutex during reclaim, trying to unmap
pages. So suppose we do an allocation while holding i_mmap_mutex, find
there's no free memory, try and unmap a page in order to free it, and
we're stuck.

> I cant take i_mutex, because we would have already held
> down_write(mmap_sem) here.

Right. So can we add a lock in the uprobe? All we need is per uprobe
serialization, right?
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/