public inbox for systemtap@sourceware.org
 help / color / mirror / Atom feed
* [Bug runtime/13467] New: user array indexing pointer_array.exp testcase fails on s390x needs @user($ptr)
@ 2011-12-02 19:36 mjw at redhat dot com
  0 siblings, 0 replies; only message in thread
From: mjw at redhat dot com @ 2011-12-02 19:36 UTC (permalink / raw)
  To: systemtap

http://sourceware.org/bugzilla/show_bug.cgi?id=13467

             Bug #: 13467
           Summary: user array indexing pointer_array.exp testcase fails
                    on s390x needs @user($ptr)
           Product: systemtap
           Version: unspecified
            Status: NEW
          Severity: normal
          Priority: P2
         Component: runtime
        AssignedTo: systemtap@sourceware.org
        ReportedBy: mjw@redhat.com
    Classification: Unclassified


pointer_array.stp basically does:

probe syscall.execve { println(user_string($argv[0])) }

The $argv[0] is evaluated in kernel context, but is really a user pointer.
So you will get a ERROR: kernel read fault at 0x00000000859fa100 (addr) near
identifier '$argv'.

The following would "fix" it:

probe syscall.execve { println(user_string(user_long($argv))) }

But the test really is about array indexing. The next tests try to extract the
individual chars with $argv[0][1], etc.

We could rewrite the testcase to use a user array in a user probe context.
But maybe we need some kind of @user($ptr) construct, which would then give you
an object that can be evaluated through []/-> as if in a user probe context?

-- 
Configure bugmail: http://sourceware.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2011-12-02 16:15 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-12-02 19:36 [Bug runtime/13467] New: user array indexing pointer_array.exp testcase fails on s390x needs @user($ptr) mjw at redhat dot com

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).