mirror of
https://kernel.googlesource.com/pub/scm/linux/kernel/git/torvalds/linux
synced 2025-09-27 19:31:46 +10:00
kprobe_args_char.tc, kprobe_args_string.tc has validation check for tracefs_create_dir, for eventfs it should be eventfs_create_dir. Link: https://lkml.kernel.org/r/1690568452-46553-11-git-send-email-akaher@vmware.com Signed-off-by: Ajay Kaher <akaher@vmware.com> Co-developed-by: Steven Rostedt (VMware) <rostedt@goodmis.org> Signed-off-by: Steven Rostedt (VMware) <rostedt@goodmis.org> Tested-by: Ching-lin Yu <chinglinyu@google.com> Acked-by: Masami Hiramatsu (Google) <mhiramat@kernel.org> Signed-off-by: Steven Rostedt (Google) <rostedt@goodmis.org>
53 lines
1.0 KiB
Bash
53 lines
1.0 KiB
Bash
#!/bin/sh
|
|
# SPDX-License-Identifier: GPL-2.0
|
|
# description: Kprobe event char type argument
|
|
# requires: kprobe_events
|
|
|
|
case `uname -m` in
|
|
x86_64)
|
|
ARG1=%di
|
|
;;
|
|
i[3456]86)
|
|
ARG1=%ax
|
|
;;
|
|
aarch64)
|
|
ARG1=%x0
|
|
;;
|
|
arm*)
|
|
ARG1=%r0
|
|
;;
|
|
ppc64*)
|
|
ARG1=%r3
|
|
;;
|
|
ppc*)
|
|
ARG1=%r3
|
|
;;
|
|
s390*)
|
|
ARG1=%r2
|
|
;;
|
|
mips*)
|
|
ARG1=%r4
|
|
;;
|
|
*)
|
|
echo "Please implement other architecture here"
|
|
exit_untested
|
|
esac
|
|
|
|
: "Test get argument (1)"
|
|
if grep -q eventfs_add_dir available_filter_functions; then
|
|
DIR_NAME="eventfs_add_dir"
|
|
else
|
|
DIR_NAME="tracefs_create_dir"
|
|
fi
|
|
echo "p:testprobe ${DIR_NAME} arg1=+0(${ARG1}):char" > kprobe_events
|
|
echo 1 > events/kprobes/testprobe/enable
|
|
echo "p:test $FUNCTION_FORK" >> kprobe_events
|
|
grep -qe "testprobe.* arg1='t'" trace
|
|
|
|
echo 0 > events/kprobes/testprobe/enable
|
|
: "Test get argument (2)"
|
|
echo "p:testprobe ${DIR_NAME} arg1=+0(${ARG1}):char arg2=+0(${ARG1}):char[4]" > kprobe_events
|
|
echo 1 > events/kprobes/testprobe/enable
|
|
echo "p:test $FUNCTION_FORK" >> kprobe_events
|
|
grep -qe "testprobe.* arg1='t' arg2={'t','e','s','t'}" trace
|