aboutsummaryrefslogtreecommitdiffstats
path: root/tools/testing
diff options
context:
space:
mode:
authorMasami Hiramatsu <mhiramat@kernel.org>2018-08-30 10:17:38 -0400
committerShuah Khan (Samsung OSG) <shuah@kernel.org>2018-10-24 16:49:35 -0400
commitaf2a0750f374935c07b8beab78d6032b1ca2218d (patch)
tree0106a715c64efea24c371a04afe7c4762648f5b1 /tools/testing
parentcec3adf5f57160d829a033bcb578c3dd0a90c693 (diff)
selftests/ftrace: Improve kprobe on module testcase to load/unload module
Improve kprobe events on module testcase to check module load/unload with disabled/enabled events. This also change the target module to trace_printk.ko, so it depends on CONFIG_SAMPLE_TRACE_PRINTK=m. Signed-off-by: Masami Hiramatsu <mhiramat@kernel.org> Signed-off-by: Shuah Khan (Samsung OSG) <shuah@kernel.org>
Diffstat (limited to 'tools/testing')
-rw-r--r--tools/testing/selftests/ftrace/config4
-rw-r--r--tools/testing/selftests/ftrace/test.d/kprobe/kprobe_module.tc35
2 files changed, 36 insertions, 3 deletions
diff --git a/tools/testing/selftests/ftrace/config b/tools/testing/selftests/ftrace/config
index 07db5ab09cc7..32cf61b6bb54 100644
--- a/tools/testing/selftests/ftrace/config
+++ b/tools/testing/selftests/ftrace/config
@@ -7,3 +7,7 @@ CONFIG_HIST_TRIGGERS=y
7CONFIG_PREEMPT_TRACER=y 7CONFIG_PREEMPT_TRACER=y
8CONFIG_IRQSOFF_TRACER=y 8CONFIG_IRQSOFF_TRACER=y
9CONFIG_PREEMPTIRQ_DELAY_TEST=m 9CONFIG_PREEMPTIRQ_DELAY_TEST=m
10CONFIG_MODULES=y
11CONFIG_MODULE_UNLOAD=y
12CONFIG_SAMPLES=y
13CONFIG_SAMPLE_TRACE_PRINTK=m
diff --git a/tools/testing/selftests/ftrace/test.d/kprobe/kprobe_module.tc b/tools/testing/selftests/ftrace/test.d/kprobe/kprobe_module.tc
index ec6c5fffef1e..d861bd776c5e 100644
--- a/tools/testing/selftests/ftrace/test.d/kprobe/kprobe_module.tc
+++ b/tools/testing/selftests/ftrace/test.d/kprobe/kprobe_module.tc
@@ -4,11 +4,18 @@
4 4
5[ -f kprobe_events ] || exit_unsupported # this is configurable 5[ -f kprobe_events ] || exit_unsupported # this is configurable
6 6
7rmmod trace-printk ||:
8if ! modprobe trace-printk ; then
9 echo "No trace-printk sample module - please make CONFIG_SAMPLE_TRACE_PRINTK=
10m"
11 exit_unresolved;
12fi
13
14MOD=trace_printk
15FUNC=trace_printk_irq_work
16
7:;: "Add an event on a module function without specifying event name" ;: 17:;: "Add an event on a module function without specifying event name" ;:
8 18
9MOD=`lsmod | head -n 2 | tail -n 1 | cut -f1 -d" "`
10FUNC=`grep -m 1 ".* t .*\\[$MOD\\]" /proc/kallsyms | xargs | cut -f3 -d" "`
11[ "x" != "x$MOD" -a "y" != "y$FUNC" ] || exit_unresolved
12echo "p $MOD:$FUNC" > kprobe_events 19echo "p $MOD:$FUNC" > kprobe_events
13PROBE_NAME=`echo $MOD:$FUNC | tr ".:" "_"` 20PROBE_NAME=`echo $MOD:$FUNC | tr ".:" "_"`
14test -d events/kprobes/p_${PROBE_NAME}_0 || exit_failure 21test -d events/kprobes/p_${PROBE_NAME}_0 || exit_failure
@@ -22,3 +29,25 @@ test -d events/kprobes/event1 || exit_failure
22 29
23echo "p:kprobes1/event1 $MOD:$FUNC" > kprobe_events 30echo "p:kprobes1/event1 $MOD:$FUNC" > kprobe_events
24test -d events/kprobes1/event1 || exit_failure 31test -d events/kprobes1/event1 || exit_failure
32
33:;: "Remove target module, but event still be there" ;:
34if ! rmmod trace-printk ; then
35 echo "Failed to unload module - please enable CONFIG_MODULE_UNLOAD"
36 exit_unresolved;
37fi
38test -d events/kprobes1/event1
39
40:;: "Check posibility to defining events on unloaded module";:
41echo "p:event2 $MOD:$FUNC" >> kprobe_events
42
43:;: "Target is gone, but we can prepare for next time";:
44echo 1 > events/kprobes1/event1/enable
45
46:;: "Load module again, which means the event1 should be recorded";:
47modprobe trace-printk
48grep "event1:" trace
49
50:;: "Remove the module again and check the event is not locked"
51rmmod trace-printk
52echo 0 > events/kprobes1/event1/enable
53echo "-:kprobes1/event1" >> kprobe_events