Linux-libre 5.3.12-gnu
[librecmc/linux-libre.git] / tools / perf / tests / shell / record+script_probe_vfs_getname.sh
1 #!/bin/sh
2 # Use vfs_getname probe to get syscall args filenames
3
4 # Uses the 'perf test shell' library to add probe:vfs_getname to the system
5 # then use it with 'perf record' using 'touch' to write to a temp file, then
6 # checks that that was captured by the vfs_getname probe in the generated
7 # perf.data file, with the temp file name as the pathname argument.
8
9 # SPDX-License-Identifier: GPL-2.0
10 # Arnaldo Carvalho de Melo <acme@kernel.org>, 2017
11
12 . $(dirname $0)/lib/probe.sh
13
14 skip_if_no_perf_probe || exit 2
15
16 . $(dirname $0)/lib/probe_vfs_getname.sh
17
18 perfdata=$(mktemp /tmp/__perf_test.perf.data.XXXXX)
19 file=$(mktemp /tmp/temporary_file.XXXXX)
20
21 record_open_file() {
22         echo "Recording open file:"
23         perf record -o ${perfdata} -e probe:vfs_getname touch $file
24 }
25
26 perf_script_filenames() {
27         echo "Looking at perf.data file for vfs_getname records for the file we touched:"
28         perf script -i ${perfdata} | \
29         egrep " +touch +[0-9]+ +\[[0-9]+\] +[0-9]+\.[0-9]+: +probe:vfs_getname: +\([[:xdigit:]]+\) +pathname=\"${file}\""
30 }
31
32 add_probe_vfs_getname || skip_if_no_debuginfo
33 err=$?
34 if [ $err -ne 0 ] ; then
35         exit $err
36 fi
37
38 record_open_file && perf_script_filenames
39 err=$?
40 rm -f ${perfdata}
41 rm -f ${file}
42 cleanup_probe_vfs_getname
43 exit $err