File: kprobe_args_string.tc

package info (click to toggle)
linux 6.18.9-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,742,212 kB
  • sloc: ansic: 26,783,651; asm: 272,129; sh: 148,799; python: 79,242; makefile: 57,742; perl: 36,527; xml: 19,542; cpp: 5,911; yacc: 4,939; lex: 2,950; awk: 1,607; sed: 30; ruby: 25
file content (61 lines) | stat: -rw-r--r-- 1,225 bytes parent folder | download | duplicates (18)
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
54
55
56
57
58
59
60
61
#!/bin/sh
# SPDX-License-Identifier: GPL-2.0
# description: Kprobe event string type argument
# requires: kprobe_events available_filter_functions

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
;;
loongarch*)
  ARG1=%r4
;;
riscv*)
  ARG1=%a0
;;
*)
  echo "Please implement other architecture here"
  exit_untested
esac

: "Test get argument (1)"
if grep -q eventfs_create_dir available_filter_functions; then
  DIR_NAME="eventfs_create_dir"
elif 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}):string" > kprobe_events
echo 1 > events/kprobes/testprobe/enable
echo "p:test $FUNCTION_FORK" >> kprobe_events
grep -qe "testprobe.* arg1=\"test\"" trace

echo 0 > events/kprobes/testprobe/enable
: "Test get argument (2)"
echo "p:testprobe ${DIR_NAME} arg1=+0(${ARG1}):string arg2=+0(${ARG1}):string" > kprobe_events
echo 1 > events/kprobes/testprobe/enable
echo "p:test $FUNCTION_FORK" >> kprobe_events
grep -qe "testprobe.* arg1=\"test\" arg2=\"test\"" trace