blob: da70c57051925b3d03ca7956266c8786621efdb8 [file] [log] [blame]
Brendan Greggc937a9e2016-02-12 02:23:39 -08001#!/usr/bin/python
2# @lint-avoid-python-3-compatibility-imports
3#
4# xfsslower Trace slow XFS operations.
5# For Linux, uses BCC, eBPF.
6#
7# USAGE: xfsslower [-h] [-j] [-p PID] [min_ms]
8#
9# This script traces common XFS file operations: reads, writes, opens, and
10# syncs. It measures the time spent in these operations, and prints details
11# for each that exceeded a threshold.
12#
13# WARNING: This adds low-overhead instrumentation to these XFS operations,
14# including reads and writes from the file system cache. Such reads and writes
15# can be very frequent (depending on the workload; eg, 1M/sec), at which
16# point the overhead of this tool (even if it prints no "slower" events) can
17# begin to become significant.
18#
19# By default, a minimum millisecond threshold of 10 is used.
20#
21# Copyright 2016 Netflix, Inc.
22# Licensed under the Apache License, Version 2.0 (the "License")
23#
24# 11-Feb-2016 Brendan Gregg Created this.
Dina Goldshteinc8b9ae32016-10-18 03:01:05 +030025# 16-Oct-2016 Dina Goldshtein -p to filter by process ID.
Brendan Greggc937a9e2016-02-12 02:23:39 -080026
27from __future__ import print_function
28from bcc import BPF
29import argparse
30from time import strftime
31import ctypes as ct
32
33# arguments
34examples = """examples:
35 ./xfsslower # trace operations slower than 10 ms (default)
36 ./xfsslower 1 # trace operations slower than 1 ms
37 ./xfsslower -j 1 # ... 1 ms, parsable output (csv)
38 ./xfsslower 0 # trace all operations (warning: verbose)
39 ./xfsslower -p 185 # trace PID 185 only
40"""
41parser = argparse.ArgumentParser(
42 description="Trace common XFS file operations slower than a threshold",
43 formatter_class=argparse.RawDescriptionHelpFormatter,
44 epilog=examples)
45parser.add_argument("-j", "--csv", action="store_true",
46 help="just print fields: comma-separated values")
47parser.add_argument("-p", "--pid",
48 help="trace this PID only")
49parser.add_argument("min_ms", nargs="?", default='10',
50 help="minimum I/O duration to trace, in ms (default 10)")
Nathan Scottcf0792f2018-02-02 16:56:50 +110051parser.add_argument("--ebpf", action="store_true",
52 help=argparse.SUPPRESS)
Brendan Greggc937a9e2016-02-12 02:23:39 -080053args = parser.parse_args()
54min_ms = int(args.min_ms)
55pid = args.pid
56csv = args.csv
57debug = 0
58
59# define BPF program
60bpf_text = """
61#include <uapi/linux/ptrace.h>
62#include <linux/fs.h>
63#include <linux/sched.h>
64#include <linux/dcache.h>
65
66// XXX: switch these to char's when supported
67#define TRACE_READ 0
68#define TRACE_WRITE 1
69#define TRACE_OPEN 2
70#define TRACE_FSYNC 3
71
72struct val_t {
73 u64 ts;
74 u64 offset;
75 struct file *fp;
76};
77
78struct data_t {
79 // XXX: switch some to u32's when supported
80 u64 ts_us;
81 u64 type;
82 u64 size;
83 u64 offset;
84 u64 delta_us;
85 u64 pid;
86 char task[TASK_COMM_LEN];
87 char file[DNAME_INLINE_LEN];
88};
89
Dina Goldshteinc8b9ae32016-10-18 03:01:05 +030090BPF_HASH(entryinfo, u64, struct val_t);
Brendan Greggc937a9e2016-02-12 02:23:39 -080091BPF_PERF_OUTPUT(events);
92
93//
94// Store timestamp and size on entry
95//
96
97// xfs_file_read_iter(), xfs_file_write_iter():
98int trace_rw_entry(struct pt_regs *ctx, struct kiocb *iocb)
99{
Dina Goldshteinc8b9ae32016-10-18 03:01:05 +0300100 u64 id = bpf_get_current_pid_tgid();
101 u32 pid = id >> 32; // PID is higher part
102
Brendan Greggc937a9e2016-02-12 02:23:39 -0800103 if (FILTER_PID)
104 return 0;
105
Dina Goldshteinc8b9ae32016-10-18 03:01:05 +0300106 // store filep and timestamp by id
Brendan Greggc937a9e2016-02-12 02:23:39 -0800107 struct val_t val = {};
108 val.ts = bpf_ktime_get_ns();
109 val.fp = iocb->ki_filp;
110 val.offset = iocb->ki_pos;
111 if (val.fp)
Dina Goldshteinc8b9ae32016-10-18 03:01:05 +0300112 entryinfo.update(&id, &val);
Brendan Greggc937a9e2016-02-12 02:23:39 -0800113
114 return 0;
115}
116
117// xfs_file_open():
118int trace_open_entry(struct pt_regs *ctx, struct inode *inode,
119 struct file *file)
120{
Dina Goldshteinc8b9ae32016-10-18 03:01:05 +0300121 u64 id = bpf_get_current_pid_tgid();
122 u32 pid = id >> 32; // PID is higher part
123
Brendan Greggc937a9e2016-02-12 02:23:39 -0800124 if (FILTER_PID)
125 return 0;
126
Dina Goldshteinc8b9ae32016-10-18 03:01:05 +0300127 // store filep and timestamp by id
Brendan Greggc937a9e2016-02-12 02:23:39 -0800128 struct val_t val = {};
129 val.ts = bpf_ktime_get_ns();
130 val.fp = file;
131 val.offset = 0;
132 if (val.fp)
Dina Goldshteinc8b9ae32016-10-18 03:01:05 +0300133 entryinfo.update(&id, &val);
Brendan Greggc937a9e2016-02-12 02:23:39 -0800134
135 return 0;
136}
137
138// xfs_file_fsync():
139int trace_fsync_entry(struct pt_regs *ctx, struct file *file)
140{
Dina Goldshteinc8b9ae32016-10-18 03:01:05 +0300141 u64 id = bpf_get_current_pid_tgid();
142 u32 pid = id >> 32; // PID is higher part
143
Brendan Greggc937a9e2016-02-12 02:23:39 -0800144 if (FILTER_PID)
145 return 0;
146
Dina Goldshteinc8b9ae32016-10-18 03:01:05 +0300147 // store filep and timestamp by id
Brendan Greggc937a9e2016-02-12 02:23:39 -0800148 struct val_t val = {};
149 val.ts = bpf_ktime_get_ns();
150 val.fp = file;
151 val.offset = 0;
152 if (val.fp)
Dina Goldshteinc8b9ae32016-10-18 03:01:05 +0300153 entryinfo.update(&id, &val);
Brendan Greggc937a9e2016-02-12 02:23:39 -0800154
155 return 0;
156}
157
158//
159// Output
160//
161
162static int trace_return(struct pt_regs *ctx, int type)
163{
164 struct val_t *valp;
Dina Goldshteinc8b9ae32016-10-18 03:01:05 +0300165 u64 id = bpf_get_current_pid_tgid();
166 u32 pid = id >> 32; // PID is higher part
Brendan Greggc937a9e2016-02-12 02:23:39 -0800167
Dina Goldshteinc8b9ae32016-10-18 03:01:05 +0300168 valp = entryinfo.lookup(&id);
Brendan Greggc937a9e2016-02-12 02:23:39 -0800169 if (valp == 0) {
170 // missed tracing issue or filtered
171 return 0;
172 }
173
174 // calculate delta
175 u64 ts = bpf_ktime_get_ns();
176 u64 delta_us = (ts - valp->ts) / 1000;
Dina Goldshteinc8b9ae32016-10-18 03:01:05 +0300177 entryinfo.delete(&id);
Brendan Greggc937a9e2016-02-12 02:23:39 -0800178 if (FILTER_US)
179 return 0;
180
Brendan Greggc937a9e2016-02-12 02:23:39 -0800181 // populate output struct
Naveen N. Rao4afa96a2016-05-03 14:54:21 +0530182 u32 size = PT_REGS_RC(ctx);
Brendan Greggc937a9e2016-02-12 02:23:39 -0800183 struct data_t data = {.type = type, .size = size, .delta_us = delta_us,
184 .pid = pid};
185 data.ts_us = ts / 1000;
186 data.offset = valp->offset;
Brendan Greggc937a9e2016-02-12 02:23:39 -0800187 bpf_get_current_comm(&data.task, sizeof(data.task));
188
Brendan Greggbe294db2016-10-20 21:46:09 -0700189 // workaround (rewriter should handle file to d_name in one step):
Paul Chaignon3ba742e2018-05-17 22:50:41 +0200190 struct qstr qs = valp->fp->f_path.dentry->d_name;
Brendan Greggbe294db2016-10-20 21:46:09 -0700191 if (qs.len == 0)
192 return 0;
193 bpf_probe_read(&data.file, sizeof(data.file), (void *)qs.name);
194
195 // output
Brendan Greggc937a9e2016-02-12 02:23:39 -0800196 events.perf_submit(ctx, &data, sizeof(data));
197
198 return 0;
199}
200
201int trace_read_return(struct pt_regs *ctx)
202{
203 return trace_return(ctx, TRACE_READ);
204}
205
206int trace_write_return(struct pt_regs *ctx)
207{
208 return trace_return(ctx, TRACE_WRITE);
209}
210
211int trace_open_return(struct pt_regs *ctx)
212{
213 return trace_return(ctx, TRACE_OPEN);
214}
215
216int trace_fsync_return(struct pt_regs *ctx)
217{
218 return trace_return(ctx, TRACE_FSYNC);
219}
220
221"""
222if min_ms == 0:
223 bpf_text = bpf_text.replace('FILTER_US', '0')
224else:
225 bpf_text = bpf_text.replace('FILTER_US',
226 'delta_us <= %s' % str(min_ms * 1000))
227if args.pid:
228 bpf_text = bpf_text.replace('FILTER_PID', 'pid != %s' % pid)
229else:
230 bpf_text = bpf_text.replace('FILTER_PID', '0')
Nathan Scottcf0792f2018-02-02 16:56:50 +1100231if debug or args.ebpf:
Brendan Greggc937a9e2016-02-12 02:23:39 -0800232 print(bpf_text)
Nathan Scottcf0792f2018-02-02 16:56:50 +1100233 if args.ebpf:
234 exit()
Brendan Greggc937a9e2016-02-12 02:23:39 -0800235
236# kernel->user event data: struct data_t
237DNAME_INLINE_LEN = 32 # linux/dcache.h
238TASK_COMM_LEN = 16 # linux/sched.h
239class Data(ct.Structure):
240 _fields_ = [
241 ("ts_us", ct.c_ulonglong),
242 ("type", ct.c_ulonglong),
243 ("size", ct.c_ulonglong),
244 ("offset", ct.c_ulonglong),
245 ("delta_us", ct.c_ulonglong),
246 ("pid", ct.c_ulonglong),
247 ("task", ct.c_char * TASK_COMM_LEN),
248 ("file", ct.c_char * DNAME_INLINE_LEN)
249 ]
250
251# process event
252def print_event(cpu, data, size):
253 event = ct.cast(data, ct.POINTER(Data)).contents
254
255 type = 'R'
256 if event.type == 1:
257 type = 'W'
258 elif event.type == 2:
259 type = 'O'
260 elif event.type == 3:
261 type = 'S'
262
263 if (csv):
264 print("%d,%s,%d,%s,%d,%d,%d,%s" % (
265 event.ts_us, event.task, event.pid, type, event.size,
266 event.offset, event.delta_us, event.file))
267 return
268 print("%-8s %-14.14s %-6s %1s %-7s %-8d %7.2f %s" % (strftime("%H:%M:%S"),
269 event.task, event.pid, type, event.size, event.offset / 1024,
270 float(event.delta_us) / 1000, event.file))
271
272# initialize BPF
273b = BPF(text=bpf_text)
274
275# common file functions
276b.attach_kprobe(event="xfs_file_read_iter", fn_name="trace_rw_entry")
277b.attach_kprobe(event="xfs_file_write_iter", fn_name="trace_rw_entry")
278b.attach_kprobe(event="xfs_file_open", fn_name="trace_open_entry")
279b.attach_kprobe(event="xfs_file_fsync", fn_name="trace_fsync_entry")
280b.attach_kretprobe(event="xfs_file_read_iter", fn_name="trace_read_return")
281b.attach_kretprobe(event="xfs_file_write_iter", fn_name="trace_write_return")
282b.attach_kretprobe(event="xfs_file_open", fn_name="trace_open_return")
283b.attach_kretprobe(event="xfs_file_fsync", fn_name="trace_fsync_return")
284
285# header
286if (csv):
287 print("ENDTIME_us,TASK,PID,TYPE,BYTES,OFFSET_b,LATENCY_us,FILE")
288else:
289 if min_ms == 0:
290 print("Tracing XFS operations")
291 else:
292 print("Tracing XFS operations slower than %d ms" % min_ms)
293 print("%-8s %-14s %-6s %1s %-7s %-8s %7s %s" % ("TIME", "COMM", "PID", "T",
294 "BYTES", "OFF_KB", "LAT(ms)", "FILENAME"))
295
296# read events
Mark Drayton5f5687e2017-02-20 18:13:03 +0000297b["events"].open_perf_buffer(print_event, page_cnt=64)
Brendan Greggc937a9e2016-02-12 02:23:39 -0800298while 1:
Teng Qindbf00292018-02-28 21:47:50 -0800299 b.perf_buffer_poll()