[PATCH v1 25/49] perf python: Port failed-syscalls from Perl to perf module
From: Ian Rogers
Date: Sun Sep 20 2026 - 01:28:21 EST
Replace the legacy Perl script failed-syscalls.pl with a standalone
Python script in tools/perf/python/failed-syscalls.py using the perf
Python module.
Improvements compared to the legacy Perl script:
- Remove the dependency on libperl and Perf::Trace::Util.
- Support both syscalls:sys_exit_* and raw_syscalls:sys_exit events (the
legacy script only handled raw_syscalls::sys_exit).
- Use session.is_64_bit to distinguish 32-bit vs 64-bit unsigned error
return ranges (0xfffff000..0xffffffff vs >= 0xfffffffffffff000) so
valid 64-bit syscalls returning ~4GB values are not misclassified as
32-bit negative errors.
- Add argparse CLI support (-i/--input and optional comm filter) and
full type annotations.
Add a shell test
(test_failed_syscalls_python.sh) to verify the standalone script.
Assisted-by: Antigravity:gemini-3.1-pro
Signed-off-by: Ian Rogers <irogers@xxxxxxxxxx>
---
tools/perf/python/failed-syscalls.py | 88 +++++++++++++++++++
.../shell/test_failed_syscalls_python.sh | 81 +++++++++++++++++
2 files changed, 169 insertions(+)
create mode 100755 tools/perf/python/failed-syscalls.py
create mode 100755 tools/perf/tests/shell/test_failed_syscalls_python.sh
diff --git a/tools/perf/python/failed-syscalls.py b/tools/perf/python/failed-syscalls.py
new file mode 100755
index 000000000000..99c3432b2e31
--- /dev/null
+++ b/tools/perf/python/failed-syscalls.py
@@ -0,0 +1,88 @@
+#!/usr/bin/env python3
+# SPDX-License-Identifier: GPL-2.0
+"""Failed system call counts."""
+from __future__ import annotations
+
+import argparse
+from collections import defaultdict
+import sys
+from typing import Optional
+import perf
+
+class FailedSyscalls:
+ """Tracks and displays failed system call totals."""
+ def __init__(self, comm: Optional[str] = None) -> None:
+ self.failed_syscalls: dict[str, int] = defaultdict(int)
+ self.for_comm = comm
+ self.session: Optional[perf.session] = None
+
+ def process_event(self, sample: perf.sample_event) -> None:
+ """Process sys_exit events."""
+ event_name = str(sample.evsel)
+ if not event_name.startswith("evsel(syscalls:sys_exit") and \
+ not event_name.startswith("evsel(raw_syscalls:sys_exit"):
+ return
+
+ try:
+ ret = sample.ret
+ except AttributeError:
+ print("ERROR: tracepoint fields missed", file=sys.stderr)
+ sys.exit(1)
+
+ if ret > 0:
+ if ret >= 0xfffffffffffff000: # 64-bit negative errors
+ ret -= 0x10000000000000000
+ elif 0xfffff000 <= ret <= 0xffffffff: # 32-bit negative errors
+ assert self.session is not None
+ if not self.session.is_64_bit:
+ ret -= 0x100000000
+
+ if ret >= 0:
+ return
+
+ tid = sample.sample_tid
+ assert self.session is not None
+ try:
+ thread = self.session.find_thread(tid)
+ comm = (thread.comm() if thread else None) or "unknown"
+ except (TypeError, AttributeError):
+ # find_thread returns None when the thread isn't known.
+ comm = "unknown"
+
+ if self.for_comm and comm != self.for_comm:
+ return
+
+ self.failed_syscalls[comm] += 1
+
+ def print_totals(self) -> None:
+ """Print summary table."""
+ print("\nfailed syscalls by comm:\n")
+ print(f"{'comm':<20s} {'# errors':>10s}")
+ print(f"{'-'*20} {'-'*10}")
+
+ for comm, val in sorted(self.failed_syscalls.items(),
+ key=lambda kv: (kv[1], kv[0]), reverse=True):
+ print(f"{comm:<20s} {val:10d}")
+
+ def run(self, input_file: str) -> None:
+ """Run the session."""
+ self.session = perf.session(perf.data(input_file), sample=self.process_event)
+ self.session.process_events()
+ self.print_totals()
+
+def main() -> None:
+ """Main function."""
+ parser = argparse.ArgumentParser(description="Trace failed syscalls")
+ parser.add_argument("comm", nargs="?", help="Filter by command name")
+ parser.add_argument("-i", "--input", default="perf.data", help="Input file")
+ args = parser.parse_args()
+
+ analyzer = FailedSyscalls(args.comm)
+ try:
+ analyzer.run(args.input)
+ except IOError as e:
+ print(e, file=sys.stderr)
+ sys.exit(1)
+
+if __name__ == "__main__":
+ main()
diff --git a/tools/perf/tests/shell/test_failed_syscalls_python.sh b/tools/perf/tests/shell/test_failed_syscalls_python.sh
new file mode 100755
index 000000000000..7ab1f50b4260
--- /dev/null
+++ b/tools/perf/tests/shell/test_failed_syscalls_python.sh
@@ -0,0 +1,81 @@
+#!/bin/bash
+# SPDX-License-Identifier: GPL-2.0
+# failed-syscalls python test
+
+set -e
+
+shelldir=$(dirname "$0")
+# shellcheck source=lib/setup_python.sh
+. "${shelldir}"/lib/setup_python.sh
+
+if ! "$PYTHON" -c 'import perf' > /dev/null 2>&1; then
+ echo "Skipping test, perf python module not found"
+ exit 2
+fi
+
+script_dir="$(dirname "$0")/../../python"
+script_path="${script_dir}/failed-syscalls.py"
+
+if ! perf check feature -q libtraceevent > /dev/null 2>&1; then
+ echo "Skipping test, libtraceevent is disabled"
+ exit 2
+fi
+
+
+if [ ! -f "$script_path" ]; then
+ echo "Skipping test, failed-syscalls.py not found at $script_path"
+ exit 2
+fi
+
+err=0
+temp_data=""
+temp_out=""
+
+cleanup() {
+ rm -f "${temp_data}" "${temp_out}"
+}
+trap 'cleanup' EXIT TERM INT
+
+temp_data=$(mktemp /tmp/perf.data.XXXXXX)
+temp_out=$(mktemp /tmp/perf.out.XXXXXX)
+
+echo "Testing failed-syscalls.py..."
+
+# Check if sys_exit event can be recorded
+if ! perf record -e raw_syscalls:sys_exit -o /dev/null -- true >/dev/null 2>&1; then
+ if ! perf record -e syscalls:sys_exit -o /dev/null -- true >/dev/null 2>&1; then
+ echo "Skipping test, no permission or support for sys_exit event"
+ exit 2
+ else
+ EVENT="syscalls:sys_exit"
+ fi
+else
+ EVENT="raw_syscalls:sys_exit"
+fi
+
+# Run perf record with a command that fails a syscall (ls non-existent file).
+# ls exits with non-zero, so perf record returns non-zero exit code of the workload.
+perf record -e "${EVENT}" -o "${temp_data}" \
+ -- ls /nonexistent_file_for_test >/dev/null 2>&1 || true
+
+if [ ! -s "${temp_data}" ]; then
+ echo "Skipping test, perf record failed to create data"
+ exit 2
+fi
+
+# Check that the script executes
+if ! "$PYTHON" "$script_path" -i "${temp_data}" > "${temp_out}"; then
+ echo "failed-syscalls.py test failed"
+ err=1
+else
+ if ! grep -q "failed syscalls by comm" "${temp_out}" || \
+ ! grep -q "ls" "${temp_out}"; then
+ echo "Failed to find the metrics table header or expected error"
+ err=1
+ else
+ echo "failed-syscalls test passed."
+ fi
+fi
+rm -f "${temp_out}"
+
+exit $err
--
2.55.0.1082.g2b9226bbc0-goog