Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932233AbWCUKI7 (ORCPT ); Tue, 21 Mar 2006 05:08:59 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S932383AbWCUKI7 (ORCPT ); Tue, 21 Mar 2006 05:08:59 -0500 Received: from smtp.osdl.org ([65.172.181.4]:1714 "EHLO smtp.osdl.org") by vger.kernel.org with ESMTP id S932233AbWCUKI6 (ORCPT ); Tue, 21 Mar 2006 05:08:58 -0500 Date: Tue, 21 Mar 2006 02:05:21 -0800 From: Andrew Morton To: prasanna@in.ibm.com Cc: ak@suse.de, davem@davemloft.net, suparna@in.ibm.com, richardj_moore@uk.ibm.com, linux-kernel@vger.kernel.org Subject: Re: [3/3 PATCH] Kprobes: User space probes support- single stepping out-of-line Message-Id: <20060321020521.36e98f6d.akpm@osdl.org> In-Reply-To: <20060321020257.GB3320@in.ibm.com> References: <20060320060745.GC31091@in.ibm.com> <20060320060931.GD31091@in.ibm.com> <20060320061014.GE31091@in.ibm.com> <20060320061123.GF31091@in.ibm.com> <20060320030922.4ea9445b.akpm@osdl.org> <20060320134854.GG8662@in.ibm.com> <20060320124049.62861819.akpm@osdl.org> <20060321020257.GB3320@in.ibm.com> X-Mailer: Sylpheed version 1.0.4 (GTK+ 1.2.10; i386-redhat-linux-gnu) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 3382 Lines: 76 Prasanna S Panchamukhi wrote: > > > > > > > > + addr = (kprobe_opcode_t *)kmap_atomic(page, KM_USER1); > > > > > + addr = (kprobe_opcode_t *)((unsigned long)addr + > > > > > + (unsigned long)(uprobe->offset & ~PAGE_MASK)); > > > > > + *addr = opcode; > > > > > + /*TODO: flush vma ? */ > > > > > > > > flush_dcache_page() would be needed. > > > > > > > > But then, what happens if the page is shared by other processes? Do they > > > > all start taking debug traps? > > > > > > Yes, you are right. I think single stepping inline was a bad idea, disarming > > > the probe looks to be a better option > > > > > > > You skipped my second question? > > There is a small window in which other processor will not be able to see > the breakpoint if we are single step inline. But since single stepping inline > is a bad idea, we will disarm the probe forever (replace with original instrcution) if we cannot single step out-of-line. > Any suggestions? This doesn't appear to be working. Let's go back in time and pretend that these patches were never written, OK? We're standing around the water cooler saying "hey, wouldn't it be cool if someone did X". You guys are way too far into this and you keep on leaving everyone else behind. When I try to drag you up, you resist ;) So let me rephrase, and thrash around in the dark a little more. >From my reading of the code (and thus far that's my _only_ source of this information) it appears that a design decision has been made (for reasons which have yet to be disclosed) that the way to implement this (yet to be described) requirement is to set user breakpoints upon particular instructions within executables. System-wide, for all processes and threads. There are other things that could have been done. For example, you might have chosen to set breakpoints upon a particular virtual address within a heavyweight process. That's a process-oriented viewpoint, rather than a file-oriented one, if you like. This raises interesting questions, like - How come that decision was made? Why _is_ this an executable-oriented rather than process-oriented thing? Richard has covered that somewhat. - What happens if the executable is writeably mapped? - What happens if someone writes to the executable? (I think both of these were disallowed in the implementation-which-is-not-to-be-named). - What happens if different processes map the executable at different addresses? - Various other things which you've thought of and I haven't and which it would be REALLY interesting to hear about. But this is just one example. I don't think I'm being too picky here - my reaction on seeing all this stuff was, basically, "wtf is all this code for?". References to dprobes won't help, sorry - I've never looked at dprobes and I don't know anyone apart from you guys who has. What I'm asking you for is a description of what problem we're trying to solve and how this code solves that problem. It is hard, it is inefficient and, worse, it is error-prone for us to try to work all that out from a particular implementation. - 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/