File: uprobe_syntax_errors.tc

package info (click to toggle)
linux 6.12.63-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,675,632 kB
  • sloc: ansic: 25,912,022; asm: 269,631; sh: 136,601; python: 65,458; makefile: 55,710; perl: 37,753; xml: 19,284; cpp: 5,895; yacc: 4,927; lex: 2,939; awk: 1,594; sed: 28; ruby: 25
file content (31 lines) | stat: -rw-r--r-- 972 bytes parent folder | download | duplicates (16)
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
#!/bin/sh
# SPDX-License-Identifier: GPL-2.0
# description: Uprobe event parser error log check
# requires: uprobe_events error_log

check_error() { # command-with-error-pos-by-^
    ftrace_errlog_check 'trace_uprobe' "$1" 'uprobe_events'
}

check_error 'p ^/non_exist_file:100'	# FILE_NOT_FOUND
check_error 'p ^/sys:100'		# NO_REGULAR_FILE
check_error 'p /bin/sh:^10a'		# BAD_UPROBE_OFFS
check_error 'p /bin/sh:10(^1a)'		# BAD_REFCNT
check_error 'p /bin/sh:10(10^'		# REFCNT_OPEN_BRACE
check_error 'p /bin/sh:10(10)^a'	# BAD_REFCNT_SUFFIX

check_error 'p /bin/sh:10 ^@+ab'	# BAD_FILE_OFFS
check_error 'p /bin/sh:10 ^@symbol'	# SYM_ON_UPROBE

# %return suffix error
if grep -q "place (uprobe): .*%return.*" README; then
check_error 'p /bin/sh:10^%hoge'	# BAD_ADDR_SUFFIX
check_error 'p /bin/sh:10(10)^%return'	# BAD_REFCNT_SUFFIX
fi

# symstr is not supported by uprobe
if grep -q ".*symstr.*" README; then
check_error 'p /bin/sh:10 $stack0:^symstr'	# BAD_TYPE
fi

exit 0