summaryrefslogtreecommitdiffstats
path: root/tapsets.cxx
diff options
context:
space:
mode:
authorStan Cox <scox@redhat.com>2009-12-09 10:57:36 -0500
committerStan Cox <scox@redhat.com>2009-12-09 10:57:36 -0500
commit3a31e709a19d469c217cc1b65f9f1d6b2ee51ffb (patch)
treee09bc86d0eb2cff329a90d80c23e6c7567ba51ff /tapsets.cxx
parentf4ba7c13533b7e99edd0e66a0f6ccd6c0f55ec38 (diff)
downloadsystemtap-steved-3a31e709a19d469c217cc1b65f9f1d6b2ee51ffb.tar.gz
systemtap-steved-3a31e709a19d469c217cc1b65f9f1d6b2ee51ffb.tar.xz
systemtap-steved-3a31e709a19d469c217cc1b65f9f1d6b2ee51ffb.zip
Handle .probes section big endian 32 bit case.
sdt.h (STAP_PROBE_ADDR): Add 32 bit big endian case. (STAP_PROBE_DATA_): Use .balign tapsets.cxx (sdt_query::get_next_probe): Stop if there is no probe name.
Diffstat (limited to 'tapsets.cxx')
-rw-r--r--tapsets.cxx10
1 files changed, 9 insertions, 1 deletions
diff --git a/tapsets.cxx b/tapsets.cxx
index bad72091..555a6587 100644
--- a/tapsets.cxx
+++ b/tapsets.cxx
@@ -3829,7 +3829,13 @@ sdt_query::init_probe_scn()
bool
sdt_query::get_next_probe()
{
- // Extract probe info from the .probes section
+ // Extract probe info from the .probes section, e.g.
+ // 74657374 5f70726f 62655f32 00000000 test_probe_2....
+ // 50524233 00000000 980c2000 00000000 PRB3...... .....
+ // 01000000 00000000 00000000 00000000 ................
+ // test_probe_2 is probe_name, probe_type is 50524233,
+ // *probe_name (pbe->name) is 980c2000, probe_arg (pbe->arg) is 1
+ // probe_scn_offset is position currently being scanned in .probes
while (probe_scn_offset < pdata->d_size)
{
@@ -3855,6 +3861,8 @@ sdt_query::get_next_probe()
probe_scn_offset += sizeof(__uint32_t);
probe_scn_offset += probe_scn_offset % sizeof(__uint64_t);
pbe = (struct probe_entry*) ((char*)pdata->d_buf + probe_scn_offset);
+ if (pbe->name == 0)
+ return false;
probe_name = (char*)((char*)pdata->d_buf + pbe->name - (char*)probe_scn_addr);
probe_arg = pbe->arg;
if (sess.verbose > 4)