Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752719Ab1DBB3w (ORCPT ); Fri, 1 Apr 2011 21:29:52 -0400 Received: from mout.perfora.net ([74.208.4.195]:56560 "EHLO mout.perfora.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751173Ab1DBB3v (ORCPT ); Fri, 1 Apr 2011 21:29:51 -0400 Date: Fri, 1 Apr 2011 21:29:09 -0400 From: Stephen Wilson To: Srikar Dronamraju Cc: Peter Zijlstra , Ingo Molnar , Steven Rostedt , Linux-mm , Arnaldo Carvalho de Melo , Linus Torvalds , Jonathan Corbet , Christoph Hellwig , Masami Hiramatsu , Thomas Gleixner , Ananth N Mavinakayanahalli , Oleg Nesterov , Andrew Morton , SystemTap , Jim Keniston , Roland McGrath , Andi Kleen , LKML Subject: Re: [PATCH v3 2.6.39-rc1-tip 6/26] 6: Uprobes: register/unregister probes. Message-ID: <20110402012909.GA2779@fibrous.localdomain> References: <20110401143223.15455.19844.sendpatchset@localhost6.localdomain6> <20110401143338.15455.98645.sendpatchset@localhost6.localdomain6> <20110402002633.GA13277@fibrous.localdomain> <20110402005353.GA17416@linux.vnet.ibm.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20110402005353.GA17416@linux.vnet.ibm.com> User-Agent: Mutt/1.5.19 (2009-01-05) X-Provags-ID: V02:K0:/PRKobKLKkxciyBwIl3mlyqXxD9jr1vUW+Q6uzNx0Bd Y7ZIHanbj3u/rKWaB57Dp8BHiLC8ugPWHnV86waKZ0teBfs95t IPM0eswl1MDIIWdCT6tg6mUaXxEqv2W+dAUAYF7BzzhaQIKp+U 0eGEDYpbnuGJ50wJ53llSL3CoRY8q9EmmLoeijHEZGL60Y5kTD q3FreBKLrpTgnySI0tOtinb9obFWukhXI76C5WvGtc= Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1096 Lines: 38 On Sat, Apr 02, 2011 at 06:23:53AM +0530, Srikar Dronamraju wrote: > > > + > > > + mm = vma->vm_mm; > > > + if (!valid_vma(vma)) { > > > + mmput(mm); > > > + continue; > > > + } > > > + > > > + vaddr = vma->vm_start + offset; > > > + vaddr -= vma->vm_pgoff << PAGE_SHIFT; > > > > What happens here when someone passes an offset that is out of bounds > > for the vma? Looks like we could oops when the kernel tries to set a > > breakpoint. Perhaps check wrt ->vm_end? > > > > If the offset is wrong, install_uprobe will fail, since > grab_cache_page() should not be able to find that page for us. > And hence we return gracefully. Hummm. But grab_cache_page() just wraps find_or_create_page(), so I don't think it will do what you want. > I will surely test this case and I am happy to add a check for > vm_end. Thanks! -- steve -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/