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] [thread-next>] [day] [month] [year] [list]
Date:	Mon, 27 Jun 2011 12:15:02 +0530
From:	Srikar Dronamraju <srikar@...ux.vnet.ibm.com>
To:	Peter Zijlstra <peterz@...radead.org>
Cc:	Ingo Molnar <mingo@...e.hu>, Steven Rostedt <rostedt@...dmis.org>,
	Linux-mm <linux-mm@...ck.org>,
	Arnaldo Carvalho de Melo <acme@...radead.org>,
	Linus Torvalds <torvalds@...ux-foundation.org>,
	Andi Kleen <andi@...stfloor.org>,
	Hugh Dickins <hughd@...gle.com>,
	Christoph Hellwig <hch@...radead.org>,
	Jonathan Corbet <corbet@....net>,
	Thomas Gleixner <tglx@...utronix.de>,
	Masami Hiramatsu <masami.hiramatsu.pt@...achi.com>,
	Oleg Nesterov <oleg@...hat.com>,
	LKML <linux-kernel@...r.kernel.org>,
	Jim Keniston <jkenisto@...ux.vnet.ibm.com>,
	Roland McGrath <roland@...k.frob.com>,
	Ananth N Mavinakayanahalli <ananth@...ibm.com>,
	Andrew Morton <akpm@...ux-foundation.org>
Subject: Re: [PATCH v4 3.0-rc2-tip 7/22]  7: uprobes: mmap and fork hooks.

> > 	mutex_lock(&mapping->i_mmap_mutex);
> > 	delete_uprobe(uprobe);
> > 	mutex_unlock(&mapping->i_mmap_mutex);
> > 
> > 	inode->uprobes_count--;
> > 	mutex_unlock(&inode->i_mutex);
> 
> Right, so this lonesome unlock got me puzzled for a while, I always find
> it best not to do asymmetric locking like this, keep the lock and unlock
> in the same function.
> 

Okay, will do.

> > }
> > 
> > int register_uprobe(...)
> > {
> > 	uprobe = alloc_uprobe(...);	// find or insert in tree
> > 
> > 	mutex_lock(&inode->i_mutex);	// sync with register/unregister
> > 	if (uprobe->consumers) {
> > 		add_consumer();
> > 		goto put_unlock;
> > 	}
> > 	add_consumer();
> > 	inode->uprobes_count++;
> > 	mutex_lock(&mapping->i_mmap_mutex);	//sync with mmap.
> > 	vma_prio_tree_foreach(..) {
> > 		// get mm ref, add to list blah blah
> > 	}
> > 
> > 	mutex_unlock(&mapping->i_mmap_mutex);
> > 	list_for_each_entry_safe() {
> > 		if (ret) {
> > 			// del from list etc..
> > 			//
> > 			continue;
> > 		}
> > 		down_read(mm->mmap_sem);
> > 		ret = install_breakpoint();
> > 		up_read(..);
> > 		// del from list etc..
> > 		//
> > 		if (ret && (ret == -ESRCH || ret == -EEXIST))
> > 			ret = 0;
> > 	}
> > 
> > 	if (ret)
> > 		_unregister_uprobe();
> > 
> >       put_unlock:
> > 	mutex_unlock(&inode->i_mutex);
> 
> You see, now this is a double unlock

hmm . .will correct this.

> 
> > 	put_uprobe(uprobe);
> > 	return ret;
> > }
> > 
> > void unregister_uprobe(...)
> > {
> > 	mutex_lock(&inode->i_mutex);	// sync with register/unregister
> > 	uprobe = find_uprobe();	// ref++
> > 	_unregister_uprobe();
> > 	mutex_unlock(&inode->i_mutex);
> 
> idem
> 
> > 	put_uprobe(uprobe);
> > }
> > 
> > int mmap_uprobe(struct vm_area_struct *vma)
> > {
> > 	struct list_head tmp_list;
> > 	struct uprobe *uprobe, *u;
> > 	struct mm_struct *mm;
> > 	struct inode *inode;
> > 	int ret = 0;
> > 
> > 	if (!valid_vma(vma))
> > 		return ret;	/* Bail-out */
> > 
> > 	mm = vma->vm_mm;
> > 	inode = vma->vm_file->f_mapping->host;
> > 	if (inode->uprobes_count)
> > 		return ret;
> > 	__iget(inode);
> > 
> > 	INIT_LIST_HEAD(&tmp_list);
> > 
> > 	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? 

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


> 
> > 		if (ret && (ret == -ESRCH || ret == -EEXIST))
> > 			ret = 0;
> > 	}
> > 
> > 	mutex_unlock(&mapping->i_mmap_mutex);
> > 	iput(inode);
> > 	return ret;
> > }
> > 
> > int munmap_uprobe(struct vm_area_struct *vma)
> > {
> > 	struct list_head tmp_list;
> > 	struct uprobe *uprobe, *u;
> > 	struct mm_struct *mm;
> > 	struct inode *inode;
> > 	int ret = 0;
> > 
> > 	if (!valid_vma(vma))
> > 		return ret;	/* Bail-out */
> > 
> > 	mm = vma->vm_mm;
> > 	inode = vma->vm_file->f_mapping->host;
> > 	if (inode->uprobes_count)
> > 		return ret;
> 
> Should that be !->uprobes_count?

Yes it should be !inode->uprobes_count.
(both here and in mmap_uprobe)

> 
> 

-- 
Thanks and Regards
Srikar
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ