mirror of
https://github.com/raspberrypi/linux.git
synced 2025-12-15 22:41:38 +00:00
More recent libc implementations are now using openat/openat2 system calls so also add do_sys_openat2 to the tracing so that the test passes on these systems because do_sys_open may not be called. Thanks to Masami Hiramatsu for the help on getting this fix to work correctly. Signed-off-by: Colin Ian King <colin.king@canonical.com> Acked-by: Masami Hiramatsu <mhiramat@kernel.org> Acked-by: Steven Rostedt (VMware) <rostedt@goodmis.org> Signed-off-by: Shuah Khan <skhan@linuxfoundation.org>
35 lines
1.2 KiB
Bash
35 lines
1.2 KiB
Bash
#!/bin/sh
|
|
# SPDX-License-Identifier: GPL-2.0
|
|
# description: Kprobe event user-memory access
|
|
# requires: kprobe_events '$arg<N>':README
|
|
|
|
grep -A10 "fetcharg:" README | grep -q 'ustring' || exit_unsupported
|
|
grep -A10 "fetcharg:" README | grep -q '\[u\]<offset>' || exit_unsupported
|
|
|
|
:;: "user-memory access syntax and ustring working on user memory";:
|
|
echo 'p:myevent do_sys_open path=+0($arg2):ustring path2=+u0($arg2):string' \
|
|
> kprobe_events
|
|
echo 'p:myevent2 do_sys_openat2 path=+0($arg2):ustring path2=+u0($arg2):string' \
|
|
>> kprobe_events
|
|
|
|
grep myevent kprobe_events | \
|
|
grep -q 'path=+0($arg2):ustring path2=+u0($arg2):string'
|
|
echo 1 > events/kprobes/myevent/enable
|
|
echo 1 > events/kprobes/myevent2/enable
|
|
echo > /dev/null
|
|
echo 0 > events/kprobes/myevent/enable
|
|
echo 0 > events/kprobes/myevent2/enable
|
|
|
|
grep myevent trace | grep -q 'path="/dev/null" path2="/dev/null"'
|
|
|
|
:;: "user-memory access syntax and ustring not working with kernel memory";:
|
|
echo 'p:myevent vfs_symlink path=+0($arg3):ustring path2=+u0($arg3):string' \
|
|
> kprobe_events
|
|
echo 1 > events/kprobes/myevent/enable
|
|
ln -s foo $TMPDIR/bar
|
|
echo 0 > events/kprobes/myevent/enable
|
|
|
|
grep myevent trace | grep -q 'path=(fault) path2=(fault)'
|
|
|
|
exit 0
|