aboutsummaryrefslogtreecommitdiffstats
path: root/tools/testing/selftests/ftrace/test.d/kprobe/kprobe_module.tc
blob: d861bd776c5eafd336d5b195a63599e80731412a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#!/bin/sh
# SPDX-License-Identifier: GPL-2.0
# description: Kprobe dynamic event - probing module

[ -f kprobe_events ] || exit_unsupported # this is configurable

rmmod trace-printk ||:
if ! modprobe trace-printk ; then
  echo "No trace-printk sample module - please make CONFIG_SAMPLE_TRACE_PRINTK=
m"
  exit_unresolved;
fi

MOD=trace_printk
FUNC=trace_printk_irq_work

:;: "Add an event on a module function without specifying event name" ;:

echo "p $MOD:$FUNC" > kprobe_events
PROBE_NAME=`echo $MOD:$FUNC | tr ".:" "_"`
test -d events/kprobes/p_${PROBE_NAME}_0 || exit_failure

:;: "Add an event on a module function with new event name" ;:

echo "p:event1 $MOD:$FUNC" > kprobe_events
test -d events/kprobes/event1 || exit_failure

:;: "Add an event on a module function with new event and group name" ;:

echo "p:kprobes1/event1 $MOD:$FUNC" > kprobe_events
test -d events/kprobes1/event1 || exit_failure

:;: "Remove target module, but event still be there" ;:
if ! rmmod trace-printk ; then
  echo "Failed to unload module - please enable CONFIG_MODULE_UNLOAD"
  exit_unresolved;
fi
test -d events/kprobes1/event1

:;: "Check posibility to defining events on unloaded module";:
echo "p:event2 $MOD:$FUNC" >> kprobe_events

:;: "Target is gone, but we can prepare for next time";:
echo 1 > events/kprobes1/event1/enable

:;: "Load module again, which means the event1 should be recorded";:
modprobe trace-printk
grep "event1:" trace

:;: "Remove the module again and check the event is not locked"
rmmod trace-printk
echo 0 > events/kprobes1/event1/enable
echo "-:kprobes1/event1" >> kprobe_events