From: Eugene Shatokhin <eugene.shatokhin@rosalab.ru>
To: Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
Cc: linux-kernel@vger.kernel.org
Subject: Kprobes: pre-handler with interrupts enabled - is it possible?
Date: Mon, 23 Feb 2015 18:04:52 +0300 [thread overview]
Message-ID: <54EB4194.7040901@rosalab.ru> (raw)
Hi,
First of all, many thanks to the developers of Kprobes! I use both
Kprobes and parts of their code a lot in my projects these days.
As far as I can see, the pre-handlers of Kprobes run with interrupts and
preemption disabled on the given CPU, at least on x86 without Kprobe
optimization.
Is it possible, however, to use Kprobes to somehow execute my code
before a given instruction but with the same restrictions as the
original instruction, at least, w.r.t. the interrupts?
I mean, if the instruction is executed with interrupts enabled, my code
would also execute with interrupts enabled, etc.
If it is possible, how would you recommend to do that? Without patching
the implementation of Kprobes, I mean.
Same for preemption, but, it seems, Kprobes really need it disabled, at
least to be able to use kprobe_running() and other per-cpu data.
In RaceHound project I am now working on
(https://github.com/winnukem/racehound/tree/rh_rework), the breakpoints
are used to detect data races in the kernel code in runtime. Software
breakpoints for the code, hardware breakpoints for the data that is
about to be accessed.
However, to make it all work, the detector introduces delays before the
instructions of interest. I could do this in Kprobes' pre-handlers but
the interrupts would always be disabled on the current CPU during the
delays, which is no good.
So far, I implemented it using software breakpoints directly, without
Kprobes. The pre-handlers are executed then in the same context as the
original instructions.
Still the implementation becomes more and more like Kprobes in some
places over time. If there is a way to avoid reinventing the wheel and
just use Kprobes, I would do that.
So, any ideas?
Regards,
Eugene
--
Eugene Shatokhin, ROSA
www.rosalab.com
next reply other threads:[~2015-02-23 15:11 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-02-23 15:04 Eugene Shatokhin [this message]
2015-02-24 3:47 ` Kprobes: pre-handler with interrupts enabled - is it possible? Masami Hiramatsu
2015-02-24 6:04 ` Eugene Shatokhin
2015-02-24 10:24 ` Masami Hiramatsu
2015-03-09 11:04 ` Eugene Shatokhin
2015-03-22 17:26 ` Eugene Shatokhin
[not found] <54ED88BC.8080705@rosalab.ru>
2015-02-25 11:20 ` Eugene Shatokhin
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=54EB4194.7040901@rosalab.ru \
--to=eugene.shatokhin@rosalab.ru \
--cc=linux-kernel@vger.kernel.org \
--cc=masami.hiramatsu.pt@hitachi.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox