summaryrefslogtreecommitdiff
path: root/tools/perf/scripts/python/syscall-counts-by-pid.py
blob: c64d1c55d745b7437e4e26f77446b87567c67ed1 (plain)
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
62
63
64
65
66
67
68
69
# system call counts, by pid
# (c) 2010, Tom Zanussi <tzanussi@gmail.com>
# Licensed under the terms of the GNU GPL License version 2
#
# Displays system-wide system call totals, broken down by syscall.
# If a [comm] arg is specified, only syscalls called by [comm] are displayed.

import os, sys

sys.path.append(os.environ['PERF_EXEC_PATH'] + \
	'/scripts/python/Perf-Trace-Util/lib/Perf/Trace')

from perf_trace_context import *
from Core import *
from Util import syscall_name

usage = "perf script -s syscall-counts-by-pid.py [comm]\n";

for_comm = None
for_pid = None

if len(sys.argv) > 2:
	sys.exit(usage)

if len(sys.argv) > 1:
	try:
		for_pid = int(sys.argv[1])
	except:
		for_comm = sys.argv[1]

syscalls = autodict()

def trace_begin():
	print "Press control+C to stop and show the summary"

def trace_end():
	print_syscall_totals()

def raw_syscalls__sys_enter(event_name, context, common_cpu,
	common_secs, common_nsecs, common_pid, common_comm,
	id, args):

	if (for_comm and common_comm != for_comm) or \
	   (for_pid  and common_pid  != for_pid ):
		return
	try:
		syscalls[common_comm][common_pid][id] += 1
	except TypeError:
		syscalls[common_comm][common_pid][id] = 1

def print_syscall_totals():
    if for_comm is not None:
	    print "\nsyscall events for %s:\n\n" % (for_comm),
    else:
	    print "\nsyscall events by comm/pid:\n\n",

    print "%-40s  %10s\n" % ("comm [pid]/syscalls", "count"),
    print "%-40s  %10s\n" % ("----------------------------------------", \
                                 "----------"),

    comm_keys = syscalls.keys()
    for comm in comm_keys:
	    pid_keys = syscalls[comm].keys()
	    for pid in pid_keys:
		    print "\n%s [%d]\n" % (comm, pid),
		    id_keys = syscalls[comm][pid].keys()
		    for id, val in sorted(syscalls[comm][pid].iteritems(), \
				  key = lambda(k, v): (v, k),  reverse = True):
			    print "  %-38s  %10d\n" % (syscall_name(id), val),
3-12 14:49:30 -0700'>2024-03-12Merge tag 'hardening-v6.9-rc1' of git://git.kernel.org/pub/scm/linux/kernel/g...Linus Torvalds 2024-03-11Merge tag 'linux_kselftest-next-6.9-rc1' of git://git.kernel.org/pub/scm/linu...Linus Torvalds 2024-02-22kasan: docs: update descriptions about test file and moduleTiezhu Yang 2024-02-21kasan: Add documentation for CONFIG_KASAN_EXTRA_INFOJuntong Deng 2024-02-12docs: dev-tools: checkpatch.rst: Fix grammarThorsten Blum 2024-02-06ubsan: Remove CONFIG_UBSAN_SANITIZE_ALLKees Cook 2024-02-01Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/netJakub Kicinski 2024-01-31selftests: Introduce Makefile variable to list shared bash scriptsBenjamin Poirier 2024-01-22kselftests: lib.mk: Add TEST_GEN_MODS_DIR variableMarcos Paulo de Souza 2024-01-22Documentation: KUnit: Update the instructions on how to test static functionsArthur Grillo 2024-01-18Merge tag 'kbuild-v6.8' of git://git.kernel.org/pub/scm/linux/kernel/git/masa...Linus Torvalds 2024-01-17Merge tag 'uml-for-linus-6.8-rc1' of git://git.kernel.org/pub/scm/linux/kerne...Linus Torvalds 2024-01-11Merge tag 'docs-6.8' of git://git.lwn.net/linuxLinus Torvalds 2024-01-11Merge tag 'net-next-6.8' of git://git.kernel.org/pub/scm/linux/kernel/git/net...Linus Torvalds 2024-01-05Documentation: kunit: Add clang UML coverage exampleMichał Winiarski 2024-01-03kunit: add parameter generation macro using description from arrayBenjamin Berg 2023-12-29docs: dev-tools: Add UAPI checker documentationJohn Moon 2023-12-18kunit: Add APIs for managing devicesdavidgow@google.com 2023-12-18Documentation: Add debugfs docs with run after bootRae Moar 2023-12-18kunit: add is_init test attributeRae Moar 2023-12-18kunit: Add a macro to wrap a deferred action functionDavid Gow 2023-11-17Merge branch 'vegard' into docs-mwJonathan Corbet 2023-11-17Documentation: dev-tools: properly format ToC headingssVegard Nossum 2023-11-02Merge tag 'mm-stable-2023-11-01-14-33' of git://git.kernel.org/pub/scm/linux/...Linus Torvalds 2023-11-01Documentation: ubsan: drop "the" from article titleAndrey Konovalov 2023-10-18Documentation: *san: drop "the" from article titlesAndrey Konovalov 2023-10-09Documentation: kselftests: Remove references to bpf testsMarcos Paulo de Souza