Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755196Ab1DUROd (ORCPT ); Thu, 21 Apr 2011 13:14:33 -0400 Received: from e4.ny.us.ibm.com ([32.97.182.144]:49408 "EHLO e4.ny.us.ibm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755142Ab1DUROc (ORCPT ); Thu, 21 Apr 2011 13:14:32 -0400 Date: Thu, 21 Apr 2011 22:29:45 +0530 From: Srikar Dronamraju To: Eric Paris Cc: Eric Paris , Peter Zijlstra , Ingo Molnar , Steven Rostedt , Linux-mm , Linus Torvalds , Jonathan Corbet , Masami Hiramatsu , Thomas Gleixner , Ananth N Mavinakayanahalli , Oleg Nesterov , Andrew Morton , SystemTap , Jim Keniston , Roland McGrath , Andi Kleen , LKML , sds@tycho.nsa.gov Subject: Re: [PATCH v3 2.6.39-rc1-tip 12/26] 12: uprobes: slot allocation for uprobes Message-ID: <20110421165945.GA29472@linux.vnet.ibm.com> Reply-To: Srikar Dronamraju References: <20110401143223.15455.19844.sendpatchset@localhost6.localdomain6> <20110401143457.15455.64839.sendpatchset@localhost6.localdomain6> <1303145171.32491.886.camel@twins> <20110419062654.GB10698@linux.vnet.ibm.com> <20110421141125.GG10698@linux.vnet.ibm.com> <1303397133.1708.41.camel@unknown001a4b0c2895> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline In-Reply-To: <1303397133.1708.41.camel@unknown001a4b0c2895> User-Agent: Mutt/1.5.20 (2009-06-14) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2478 Lines: 58 * Eric Paris [2011-04-21 10:45:33]: > > > 1) chcon -t unconfined_execmem_t /path/to/your/binary > > > 2) setsebool -P allow_execmem 1 > > > > > > The first will cause the binary to execute in a domain with > > > permissions to execute anonymous memory, the second will allow all > > > unconfined domains to execute anonymous memory. > > > > We arent restricted to a particular binary/binaries. We want an > > infrastructure that can trace all user-space applications. So the > > first option doesnt seem to help us. > > > > If I understand the second option. we would want this command to be > > run on any selinux enabled machines that wants uprobes to be working. > > The check which I'm guessing you ran into problems is done using the > permissions of the 'current' task. I don't know how your code works at > all, but I would have guessed that the task allocating and adding this > magic page was either perf or systemtap or something like that. Not the > 'victim' task where the page would actually show up. Is that true? If > so, method1 (or 2) works. If not, and 'current' is actually the victim, > method2 would work some of the time, but not always. The vma addition is done in the 'victim' context and not in the debugger context. Victim hits the breakpoint and requests a xol_vma for itself. > > If current can be the victim (or some completely random task) we can > probably switch the credentials of the current task as we do the > allocation to the initial creds (or something like that) so the > permission will be granted. Okay, I will use the switching the credentials logic. > > Unrelated note: I'd prefer to see that page be READ+EXEC only once it > has been mapped into the victim task. Obviously the portion of the code > that creates this page and sets up the instructions to run is going to > need write. Maybe this isn't feasible. Maybe this magic pages gets > written a lot even after it's been mapped in. But I'd rather, if > possible, know that my victim tasks didn't have a WRITE+EXEC page > available...... > We dont need write permissions on this vma, READ+EXEC is good enuf. As Roland said, userspace never writes to this vma. -- Thanks and Regards Srikar -- 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/