From: francis.giraldeau@gmail.com (Francis Giraldeau)
Subject: [lttng-dev] [RFC] User space stack trace on system calls
Date: Fri, 30 Aug 2013 23:38:30 -0400 [thread overview]
Message-ID: <52216536.40709@gmail.com> (raw)
Hi,
To locate where are made system calls in an application, I developed two
prototypes that dumps stack traces.
The first one is using event context [1]. When an tracepoint is reached,
then the stack trace of the currently running userspace thread is done
and saved. This event context can be attached to any event, thus this
technique is general. The drawback is that the context is defined per
channel, thus the user will usually wants a separate channel for
selected events. The other drawback is related to the way lttng handles
system call events. By enabling system calls, we get automatically both
entries and exits events in a single channel, and thus the same user
space stack trace is dumped twice. It also requires changes to lttng-tools.
To avoid this issue, I also tried to create one event called
sys_entry_callsite that is called only on sys_entry [2]. Thus, the stack
trace is recorded only once. It's also possible to enable it with all
other events in one channel. It's less flexible, but easier to use. It
also requires to define a tracepoint in a module, so on latest ubuntu,
it requires the modules to be signed. The code that dumps the stack
trace is called only when the actual tracepoint is enabled. We actually
found a way to insert code inside the probe with code blocks that
returns a value. Thanks to Simon Marquis for this C trick!
Both can have their use cases, so maybe both could be used? Anyway, I
post both of them for discussion.
[1]
https://github.com/giraldeau/lttng-modules/blob/addons/lttng-context-callstack.c
[2]
https://github.com/giraldeau/lttng-modules/blob/addons/addons/lttng-syscall-entry.c
Thanks!
Francis Giraldeau
next reply other threads:[~2013-08-31 3:38 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-08-31 3:38 Francis Giraldeau [this message]
2013-08-31 3:59 ` Francis Giraldeau
2013-08-31 5:16 ` Francis Giraldeau
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=52216536.40709@gmail.com \
--to=francis.giraldeau@gmail.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