[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <1409827235.3008.46.camel@linaro1.home>
Date: Thu, 04 Sep 2014 11:40:35 +0100
From: "Jon Medhurst (Tixy)" <tixy@...aro.org>
To: Will Deacon <will.deacon@....com>
Cc: Masami Hiramatsu <masami.hiramatsu.pt@...achi.com>,
Wang Nan <wangnan0@...wei.com>,
Russell King <linux@....linux.org.uk>,
"David A. Long" <dave.long@...aro.org>,
Taras Kondratiuk <taras.kondratiuk@...aro.org>,
Ben Dooks <ben.dooks@...ethink.co.uk>,
Ananth N Mavinakayanahalli <ananth@...ibm.com>,
Anil S Keshavamurthy <anil.s.keshavamurthy@...el.com>,
"David S. Miller" <davem@...emloft.net>,
Pei Feiyue <peifeiyue@...wei.com>,
"linux-arm-kernel@...ts.infradead.org"
<linux-arm-kernel@...ts.infradead.org>,
"linux-kernel@...r.kernel.org" <linux-kernel@...r.kernel.org>
Subject: Re: [PATCH v5 3/3] kprobes: arm: enable OPTPROBES for ARM 32
On Wed, 2014-09-03 at 11:30 +0100, Will Deacon wrote:
> On Wed, Sep 03, 2014 at 11:18:04AM +0100, Masami Hiramatsu wrote:
> > (2014/09/02 22:49), Jon Medhurst (Tixy) wrote:
> > > 1. On SMP systems it's very slow because of kprobe's use of stop_machine
> > > for applying and removing probes, this forces the system to idle and
> > > wait for the next scheduler tick for each probe change.
> >
> > Hmm, agreed. It seems that arm32 limitation of self-modifying code on SMP.
> > I'm not sure how we can handle it, but I guess;
> > - for some processors which have better coherent cache for SMP, we can
> > atomically replace the breakpoint code with original code.
>
> Except that it's not an architected breakpoint instruction, as I mentioned
> before. It's also not really a property of the cache.
>
> > - Even if we get an "undefined instruction" exception, its handler can
> > ask kprobes if the address is under modifying or not. And if it is,
> > we can just return from the exception to retry the execution.
>
> It's not as simple as that -- you could potentially see an interleaving of
> the two instructions. The architecture is even broader than that:
>
> Concurrent modification and execution of instructions can lead to the
> resulting instruction performing any behavior that can be achieved by
> executing any sequence of instructions that can be executed from the
> same Exception level,
>
> There are additional guarantees for some instructions (like the architected
> BKPT instruction).
I should point out that the current implementation of kprobes doesn't
use stop_machine because it's trying to meet the above architecture
restrictions, and that arming kprobes (changing probed instruction to an
undefined instruction) isn't usually done under stop_machine, so other
CPUs could be executing the original instruction as it's being modified.
So, should we be making patch_text unconditionally use stop machine and
remove all direct use of __patch_text? (E.g. by jump labels.)
--
Tixy
--
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