-
Notifications
You must be signed in to change notification settings - Fork 3.9k
/
softirqs.py
executable file
·219 lines (186 loc) · 5.59 KB
/
softirqs.py
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
#!/usr/bin/env python
# @lint-avoid-python-3-compatibility-imports
#
# softirqs Summarize soft IRQ (interrupt) event time.
# For Linux, uses BCC, eBPF.
#
# USAGE: softirqs [-h] [-T] [-N] [-C] [-d] [-c CPU] [interval] [count]
#
# Copyright (c) 2015 Brendan Gregg.
# Licensed under the Apache License, Version 2.0 (the "License")
#
# 20-Oct-2015 Brendan Gregg Created this.
# 03-Apr-2017 Sasha Goldshtein Migrated to kernel tracepoints.
# 07-Mar-2022 Rocky Xing Added CPU filter support.
# 24-Mar-2022 Rocky Xing Added event counting support.
from __future__ import print_function
from bcc import BPF
from time import sleep, strftime
import argparse
import sys
# arguments
examples = """examples:
./softirqs # sum soft irq event time
./softirqs -C # show the number of soft irq events
./softirqs -d # show soft irq event time as histograms
./softirqs 1 10 # print 1 second summaries, 10 times
./softirqs -NT 1 # 1s summaries, nanoseconds, and timestamps
./softirqs -c 1 # sum soft irq event time on CPU 1 only
"""
parser = argparse.ArgumentParser(
description="Summarize soft irq event time as histograms.",
formatter_class=argparse.RawDescriptionHelpFormatter,
epilog=examples)
parser.add_argument("-T", "--timestamp", action="store_true",
help="include timestamp on output")
parser.add_argument("-N", "--nanoseconds", action="store_true",
help="output in nanoseconds")
parser.add_argument("-C", "--events", action="store_true",
help="show the number of soft irq events")
parser.add_argument("-d", "--dist", action="store_true",
help="show distributions as histograms")
parser.add_argument("-c", "--cpu", type=int,
help="trace this CPU only")
parser.add_argument("interval", nargs="?", default=99999999,
help="output interval, in seconds")
parser.add_argument("count", nargs="?", default=99999999,
help="number of outputs")
parser.add_argument("--ebpf", action="store_true",
help=argparse.SUPPRESS)
args = parser.parse_args()
countdown = int(args.count)
if args.events and (args.dist or args.nanoseconds):
print("The --events option can't be used with time-based options")
exit()
if args.events:
factor = 1
label = "count"
elif args.nanoseconds:
factor = 1
label = "nsecs"
else:
factor = 1000
label = "usecs"
debug = 0
# define BPF program
bpf_text = """
#include <uapi/linux/ptrace.h>
typedef struct entry_key {
u32 pid;
u32 cpu;
} entry_key_t;
typedef struct irq_key {
u32 vec;
u64 slot;
} irq_key_t;
typedef struct account_val {
u64 ts;
u32 vec;
} account_val_t;
BPF_HASH(start, entry_key_t, account_val_t);
BPF_HISTOGRAM(dist, irq_key_t);
"""
bpf_text_count = """
TRACEPOINT_PROBE(irq, softirq_entry)
{
u32 cpu = bpf_get_smp_processor_id();
FILTER_CPU
irq_key_t key = { .slot = 0 /* ignore */ };
key.vec = args->vec;
dist.atomic_increment(key);
return 0;
}
"""
bpf_text_time = """
TRACEPOINT_PROBE(irq, softirq_entry)
{
account_val_t val = {};
entry_key_t key = {};
u32 cpu = bpf_get_smp_processor_id();
FILTER_CPU
key.pid = bpf_get_current_pid_tgid();
key.cpu = cpu;
val.ts = bpf_ktime_get_ns();
val.vec = args->vec;
start.update(&key, &val);
return 0;
}
TRACEPOINT_PROBE(irq, softirq_exit)
{
u64 delta;
u32 vec;
account_val_t *valp;
irq_key_t key = {0};
entry_key_t entry_key = {};
u32 cpu = bpf_get_smp_processor_id();
FILTER_CPU
entry_key.pid = bpf_get_current_pid_tgid();
entry_key.cpu = cpu;
// fetch timestamp and calculate delta
valp = start.lookup(&entry_key);
if (valp == 0) {
return 0; // missed start
}
delta = bpf_ktime_get_ns() - valp->ts;
vec = valp->vec;
// store as sum or histogram
STORE
start.delete(&entry_key);
return 0;
}
"""
if args.events:
bpf_text += bpf_text_count
else:
bpf_text += bpf_text_time
# code substitutions
if args.dist:
bpf_text = bpf_text.replace('STORE',
'key.vec = vec; key.slot = bpf_log2l(delta / %d); ' % factor +
'dist.atomic_increment(key);')
else:
bpf_text = bpf_text.replace('STORE',
'key.vec = valp->vec; ' +
'dist.atomic_increment(key, delta);')
if args.cpu is not None:
bpf_text = bpf_text.replace('FILTER_CPU',
'if (cpu != %d) { return 0; }' % int(args.cpu))
else:
bpf_text = bpf_text.replace('FILTER_CPU', '')
if debug or args.ebpf:
print(bpf_text)
if args.ebpf:
exit()
# load BPF program
b = BPF(text=bpf_text)
def vec_to_name(vec):
# copied from softirq_to_name() in kernel/softirq.c
# may need updates if new softirq handlers are added
return ["hi", "timer", "net_tx", "net_rx", "block", "irq_poll",
"tasklet", "sched", "hrtimer", "rcu"][vec]
if args.events:
print("Tracing soft irq events... Hit Ctrl-C to end.")
else:
print("Tracing soft irq event time... Hit Ctrl-C to end.")
# output
exiting = 0 if args.interval else 1
dist = b.get_table("dist")
while (1):
try:
sleep(int(args.interval))
except KeyboardInterrupt:
exiting = 1
print()
if args.timestamp:
print("%-8s\n" % strftime("%H:%M:%S"), end="")
if args.dist:
dist.print_log2_hist(label, "softirq", section_print_fn=vec_to_name)
else:
print("%-16s %11s" % ("SOFTIRQ", "TOTAL_" + label))
for k, v in sorted(dist.items(), key=lambda dist: dist[1].value):
print("%-16s %11d" % (vec_to_name(k.vec), v.value / factor))
dist.clear()
sys.stdout.flush()
countdown -= 1
if exiting or countdown == 0:
exit()