From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753387Ab1AYT4p (ORCPT ); Tue, 25 Jan 2011 14:56:45 -0500 Received: from casper.infradead.org ([85.118.1.10]:52236 "EHLO casper.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753330Ab1AYT4m convert rfc822-to-8bit (ORCPT ); Tue, 25 Jan 2011 14:56:42 -0500 Subject: Re: [RFC] [PATCH 2.6.37-rc5-tip 10/20] 10: uprobes: task specific information. From: Peter Zijlstra To: Josh Stone Cc: Srikar Dronamraju , Ingo Molnar , Steven Rostedt , Arnaldo Carvalho de Melo , Linus Torvalds , Masami Hiramatsu , Christoph Hellwig , Andi Kleen , Oleg Nesterov , LKML , SystemTap , Linux-mm , Jim Keniston , Frederic Weisbecker , Ananth N Mavinakayanahalli , Andrew Morton , "Paul E. McKenney" In-Reply-To: <4D3F1897.60300@redhat.com> References: <20101216095714.23751.52601.sendpatchset@localhost6.localdomain6> <20101216095912.23751.63180.sendpatchset@localhost6.localdomain6> <1295963775.28776.1056.camel@laptop> <4D3F1897.60300@redhat.com> Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 8BIT Date: Tue, 25 Jan 2011 20:56:35 +0100 Message-ID: <1295985395.28776.1094.camel@laptop> Mime-Version: 1.0 X-Mailer: Evolution 2.30.3 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, 2011-01-25 at 10:38 -0800, Josh Stone wrote: > On 01/25/2011 05:56 AM, Peter Zijlstra wrote: > > Ah, I think I found it while reading patch 13, you need the pre/post_xol > > callbacks, can't you simply synthesize their effect into the replacement > > sequence? > > > > push %rax > > mov $vaddr, %rax > > $INSN > > pop %rax > > jmp $next_insn > > > > like replacements would obviate the need for the pre/post callbacks and > > allow you to run straight through. > > For this particular example, you'd better be sure that $INSN doesn't > need %rsp intact. Well, either that of fix up the %rsp offset, but yes I had not considered this. > Control flow in general also makes this challenging. If $INSN is a > call, then any inline fixups won't get a chance until after return. If > $INSN is a jump, then its target must be modified so that both taken and > not-taken paths land in respective fixup locations. I'm sure there are > more cases that I'm not thinking of. Right. > > It would also remove the whole single-step need since they're proper > > boosted probes. > > Kprobes has boosting, but it doesn't apply to all opcodes. I would > guess that the same could be done for uprobes, where certain opcodes get > a fixup sequence like you suggest, but the pre/post_xol mechanism is > still needed in general. Bummer..