public inbox for systemtap@sourceware.org
 help / color / mirror / Atom feed
From: Ananth N Mavinakayanahalli <ananth@in.ibm.com>
To: Christian Kaiser <kaiser@dolphinics.com>
Cc: systemtap@sourceware.org
Subject: Re: trace function argument
Date: Tue, 16 Jun 2009 09:15:00 -0000	[thread overview]
Message-ID: <20090616091522.GA4614@in.ibm.com> (raw)
In-Reply-To: <4A376113.30109@dolphinics.com>

On Tue, Jun 16, 2009 at 11:08:35AM +0200, Christian Kaiser wrote:
> Hi all,
>
> is it possible to get the value of a function argument of a probed 
> function?
>
> With dtrace for example, you can do something like:
> dtrace -n '::some_function:entry/arg0 != 0/{ printf("arg0 is not zero!"); 
> }'
>
> I have searched the "Beginners Guide", mailinglist, wiki, web, etc. but 
> could not find anything useful.

With SystemTap with debuginfo, you can refer to arguments by name.

probe kernel.function("do_fork")
{
	if ($clone_flags == 0)
		printf("clone_flags is zero!\n")
}

Further, to just list arguments, you can use $$parms:

stap -ve 'probe kernel.function("vfs_read") { printf("%s\n", $$parms) }'

With debuginfoless kernels, you can do pretty much what you cite with
DTrace above.

Ananth

  reply	other threads:[~2009-06-16  9:15 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-06-16  9:08 Christian Kaiser
2009-06-16  9:15 ` Ananth N Mavinakayanahalli [this message]
2009-06-16  9:47   ` Christian Kaiser
2009-06-16 10:01     ` Ananth N Mavinakayanahalli
2009-06-16 10:31       ` Christian Kaiser
2009-06-16 10:47         ` Ananth N Mavinakayanahalli
2009-06-16 10:04     ` Mark Wielaard

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=20090616091522.GA4614@in.ibm.com \
    --to=ananth@in.ibm.com \
    --cc=kaiser@dolphinics.com \
    --cc=systemtap@sourceware.org \
    /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;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).