fche changed the topic of #systemtap to: http://sourceware.org/systemtap; email systemtap@sourceware.org if answers here not timely, conversations may be logged
hpt has joined #systemtap
_whitelogger has joined #systemtap
hpt has quit [Quit: Lost terminal]
_whitelogger has joined #systemtap
_whitelogger has joined #systemtap
_whitelogger has joined #systemtap
_whitelogger has joined #systemtap
jistone has quit [Remote host closed the connection]
pwithnall_ has joined #systemtap
jistone has joined #systemtap
pwithnall_ has quit [Quit: pwithnall_]
Humble has quit [Ping timeout: 246 seconds]
Humble has joined #systemtap
Humble has quit [Remote host closed the connection]
Zerg2000 has joined #systemtap
Zerg2000 has quit [Quit: p00f]
Zerg2000 has joined #systemtap
<Zerg2000>
Hello, I have problem with getting $path argument to chown_common while at the same time chmod_common works fine (same $path struct). SystemTap gives "unhandled DW_OP operation in DWARF expression". DWARF atom is 0xfa (DW_OP_GNU_parameter_ref). System is CentOS 7, more info at https://pastebin.com/SEbEumwm - is there any workaround for this?
naveen has joined #systemtap
gila has quit [Quit: My Mac Pro has gone to sleep. ZZZzzz…]
naveen has quit [Quit: WeeChat 1.9]
hpt has joined #systemtap
hpt has quit [Quit: Lost terminal]
naveen has joined #systemtap
wcohen has quit [Ping timeout: 240 seconds]
naveen has quit [Quit: WeeChat 1.9]
naveen has joined #systemtap
<fche>
hi Zerg2000
<fche>
stap can't yet handle the full gamut of debuginfo generated by newer compilers
<fche>
we'd appreciate a copy of your binary & stap test case in the bug reporting system to make sure we get to your case soon
<fche>
in the mean time, try .statement() probes perhaps at a nearby spot in the code?
<fche>
or in the worst case, something like register("rax") if you know the location
<Zerg2000>
thx for info, I'll create a bug report a bit later
<Zerg2000>
.statement() gives the same error, so I guess I would have to find it by hand using registers
<fche>
or put the statement probe somewhere else
<fche>
a few lines up or down, or into the callr
<Zerg2000>
I have already tried security_path_chown, but it gives me error suggesting the same function name "semantic error: no match (similar functions: security_path_chown, security_path_chmod, security_path_chroot, security_path_link, security_path_mkdir)" :D
<Zerg2000>
well, time to read more documentation
pwithnall_ has joined #systemtap
<Zerg2000>
mhm, $$vars does not show any locals when attaching to SyS_fchownat right before chown_common()