]>
Commit | Line | Data |
---|---|---|
2056a782 | 1 | /* |
0fe23479 | 2 | * Copyright (C) 2006 Jens Axboe <[email protected]> |
2056a782 JA |
3 | * |
4 | * This program is free software; you can redistribute it and/or modify | |
5 | * it under the terms of the GNU General Public License version 2 as | |
6 | * published by the Free Software Foundation. | |
7 | * | |
8 | * This program is distributed in the hope that it will be useful, | |
9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
11 | * GNU General Public License for more details. | |
12 | * | |
13 | * You should have received a copy of the GNU General Public License | |
14 | * along with this program; if not, write to the Free Software | |
15 | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA | |
16 | * | |
17 | */ | |
2056a782 JA |
18 | #include <linux/kernel.h> |
19 | #include <linux/blkdev.h> | |
20 | #include <linux/blktrace_api.h> | |
21 | #include <linux/percpu.h> | |
22 | #include <linux/init.h> | |
23 | #include <linux/mutex.h> | |
5a0e3ad6 | 24 | #include <linux/slab.h> |
2056a782 | 25 | #include <linux/debugfs.h> |
6e5fdeed | 26 | #include <linux/export.h> |
be1c6341 | 27 | #include <linux/time.h> |
939b3669 | 28 | #include <linux/uaccess.h> |
55782138 LZ |
29 | |
30 | #include <trace/events/block.h> | |
31 | ||
2db270a8 | 32 | #include "trace_output.h" |
2056a782 | 33 | |
55782138 LZ |
34 | #ifdef CONFIG_BLK_DEV_IO_TRACE |
35 | ||
2056a782 JA |
36 | static unsigned int blktrace_seq __read_mostly = 1; |
37 | ||
c71a8961 | 38 | static struct trace_array *blk_tr; |
5006ea73 | 39 | static bool blk_tracer_enabled __read_mostly; |
c71a8961 ACM |
40 | |
41 | /* Select an alternative, minimalistic output than the original one */ | |
ef18012b | 42 | #define TRACE_BLK_OPT_CLASSIC 0x1 |
c71a8961 ACM |
43 | |
44 | static struct tracer_opt blk_tracer_opts[] = { | |
45 | /* Default disable the minimalistic output */ | |
157f9c00 | 46 | { TRACER_OPT(blk_classic, TRACE_BLK_OPT_CLASSIC) }, |
c71a8961 ACM |
47 | { } |
48 | }; | |
49 | ||
50 | static struct tracer_flags blk_tracer_flags = { | |
51 | .val = 0, | |
52 | .opts = blk_tracer_opts, | |
53 | }; | |
54 | ||
5f3ea37c | 55 | /* Global reference count of probes */ |
5f3ea37c ACM |
56 | static atomic_t blk_probes_ref = ATOMIC_INIT(0); |
57 | ||
3c289ba7 | 58 | static void blk_register_tracepoints(void); |
5f3ea37c ACM |
59 | static void blk_unregister_tracepoints(void); |
60 | ||
be1c6341 OK |
61 | /* |
62 | * Send out a notify message. | |
63 | */ | |
a863055b JA |
64 | static void trace_note(struct blk_trace *bt, pid_t pid, int action, |
65 | const void *data, size_t len) | |
be1c6341 OK |
66 | { |
67 | struct blk_io_trace *t; | |
18cea459 | 68 | struct ring_buffer_event *event = NULL; |
e77405ad | 69 | struct ring_buffer *buffer = NULL; |
18cea459 LZ |
70 | int pc = 0; |
71 | int cpu = smp_processor_id(); | |
72 | bool blk_tracer = blk_tracer_enabled; | |
73 | ||
74 | if (blk_tracer) { | |
e77405ad | 75 | buffer = blk_tr->buffer; |
18cea459 | 76 | pc = preempt_count(); |
e77405ad | 77 | event = trace_buffer_lock_reserve(buffer, TRACE_BLK, |
18cea459 LZ |
78 | sizeof(*t) + len, |
79 | 0, pc); | |
80 | if (!event) | |
81 | return; | |
82 | t = ring_buffer_event_data(event); | |
83 | goto record_it; | |
84 | } | |
be1c6341 | 85 | |
c71a8961 ACM |
86 | if (!bt->rchan) |
87 | return; | |
88 | ||
be1c6341 | 89 | t = relay_reserve(bt->rchan, sizeof(*t) + len); |
d3d9d2a5 | 90 | if (t) { |
d3d9d2a5 | 91 | t->magic = BLK_IO_TRACE_MAGIC | BLK_IO_TRACE_VERSION; |
2997c8c4 | 92 | t->time = ktime_to_ns(ktime_get()); |
18cea459 | 93 | record_it: |
d3d9d2a5 JA |
94 | t->device = bt->dev; |
95 | t->action = action; | |
96 | t->pid = pid; | |
97 | t->cpu = cpu; | |
98 | t->pdu_len = len; | |
99 | memcpy((void *) t + sizeof(*t), data, len); | |
18cea459 LZ |
100 | |
101 | if (blk_tracer) | |
e77405ad | 102 | trace_buffer_unlock_commit(buffer, event, 0, pc); |
d3d9d2a5 | 103 | } |
be1c6341 OK |
104 | } |
105 | ||
2056a782 JA |
106 | /* |
107 | * Send out a notify for this process, if we haven't done so since a trace | |
108 | * started | |
109 | */ | |
110 | static void trace_note_tsk(struct blk_trace *bt, struct task_struct *tsk) | |
111 | { | |
a863055b JA |
112 | tsk->btrace_seq = blktrace_seq; |
113 | trace_note(bt, tsk->pid, BLK_TN_PROCESS, tsk->comm, sizeof(tsk->comm)); | |
be1c6341 | 114 | } |
2056a782 | 115 | |
be1c6341 OK |
116 | static void trace_note_time(struct blk_trace *bt) |
117 | { | |
118 | struct timespec now; | |
119 | unsigned long flags; | |
120 | u32 words[2]; | |
121 | ||
122 | getnstimeofday(&now); | |
123 | words[0] = now.tv_sec; | |
124 | words[1] = now.tv_nsec; | |
125 | ||
126 | local_irq_save(flags); | |
127 | trace_note(bt, 0, BLK_TN_TIMESTAMP, words, sizeof(words)); | |
128 | local_irq_restore(flags); | |
2056a782 JA |
129 | } |
130 | ||
9d5f09a4 AB |
131 | void __trace_note_message(struct blk_trace *bt, const char *fmt, ...) |
132 | { | |
133 | int n; | |
134 | va_list args; | |
14a73f54 | 135 | unsigned long flags; |
64565911 | 136 | char *buf; |
9d5f09a4 | 137 | |
18cea459 LZ |
138 | if (unlikely(bt->trace_state != Blktrace_running && |
139 | !blk_tracer_enabled)) | |
c71a8961 ACM |
140 | return; |
141 | ||
490da40d TM |
142 | /* |
143 | * If the BLK_TC_NOTIFY action mask isn't set, don't send any note | |
144 | * message to the trace. | |
145 | */ | |
146 | if (!(bt->act_mask & BLK_TC_NOTIFY)) | |
147 | return; | |
148 | ||
14a73f54 | 149 | local_irq_save(flags); |
d8a0349c | 150 | buf = this_cpu_ptr(bt->msg_data); |
9d5f09a4 | 151 | va_start(args, fmt); |
64565911 | 152 | n = vscnprintf(buf, BLK_TN_MAX_MSG, fmt, args); |
9d5f09a4 AB |
153 | va_end(args); |
154 | ||
64565911 | 155 | trace_note(bt, 0, BLK_TN_MESSAGE, buf, n); |
14a73f54 | 156 | local_irq_restore(flags); |
9d5f09a4 AB |
157 | } |
158 | EXPORT_SYMBOL_GPL(__trace_note_message); | |
159 | ||
2056a782 JA |
160 | static int act_log_check(struct blk_trace *bt, u32 what, sector_t sector, |
161 | pid_t pid) | |
162 | { | |
163 | if (((bt->act_mask << BLK_TC_SHIFT) & what) == 0) | |
164 | return 1; | |
d0deef5b | 165 | if (sector && (sector < bt->start_lba || sector > bt->end_lba)) |
2056a782 JA |
166 | return 1; |
167 | if (bt->pid && pid != bt->pid) | |
168 | return 1; | |
169 | ||
170 | return 0; | |
171 | } | |
172 | ||
173 | /* | |
174 | * Data direction bit lookup | |
175 | */ | |
e4955c99 LZ |
176 | static const u32 ddir_act[2] = { BLK_TC_ACT(BLK_TC_READ), |
177 | BLK_TC_ACT(BLK_TC_WRITE) }; | |
2056a782 | 178 | |
7b6d91da CH |
179 | #define BLK_TC_RAHEAD BLK_TC_AHEAD |
180 | ||
35ba8f70 | 181 | /* The ilog2() calls fall out because they're constant */ |
7b6d91da CH |
182 | #define MASK_TC_BIT(rw, __name) ((rw & REQ_ ## __name) << \ |
183 | (ilog2(BLK_TC_ ## __name) + BLK_TC_SHIFT - __REQ_ ## __name)) | |
2056a782 JA |
184 | |
185 | /* | |
186 | * The worker for the various blk_add_trace*() types. Fills out a | |
187 | * blk_io_trace structure and places it in a per-cpu subbuffer. | |
188 | */ | |
5f3ea37c | 189 | static void __blk_add_trace(struct blk_trace *bt, sector_t sector, int bytes, |
2056a782 JA |
190 | int rw, u32 what, int error, int pdu_len, void *pdu_data) |
191 | { | |
192 | struct task_struct *tsk = current; | |
c71a8961 | 193 | struct ring_buffer_event *event = NULL; |
e77405ad | 194 | struct ring_buffer *buffer = NULL; |
2056a782 | 195 | struct blk_io_trace *t; |
0a987751 | 196 | unsigned long flags = 0; |
2056a782 JA |
197 | unsigned long *sequence; |
198 | pid_t pid; | |
c71a8961 | 199 | int cpu, pc = 0; |
18cea459 | 200 | bool blk_tracer = blk_tracer_enabled; |
2056a782 | 201 | |
18cea459 | 202 | if (unlikely(bt->trace_state != Blktrace_running && !blk_tracer)) |
2056a782 JA |
203 | return; |
204 | ||
205 | what |= ddir_act[rw & WRITE]; | |
7b6d91da CH |
206 | what |= MASK_TC_BIT(rw, SYNC); |
207 | what |= MASK_TC_BIT(rw, RAHEAD); | |
35ba8f70 DW |
208 | what |= MASK_TC_BIT(rw, META); |
209 | what |= MASK_TC_BIT(rw, DISCARD); | |
c09c47ca NK |
210 | what |= MASK_TC_BIT(rw, FLUSH); |
211 | what |= MASK_TC_BIT(rw, FUA); | |
2056a782 JA |
212 | |
213 | pid = tsk->pid; | |
d0deef5b | 214 | if (act_log_check(bt, what, sector, pid)) |
2056a782 | 215 | return; |
c71a8961 ACM |
216 | cpu = raw_smp_processor_id(); |
217 | ||
18cea459 | 218 | if (blk_tracer) { |
c71a8961 ACM |
219 | tracing_record_cmdline(current); |
220 | ||
e77405ad | 221 | buffer = blk_tr->buffer; |
51a763dd | 222 | pc = preempt_count(); |
e77405ad | 223 | event = trace_buffer_lock_reserve(buffer, TRACE_BLK, |
51a763dd ACM |
224 | sizeof(*t) + pdu_len, |
225 | 0, pc); | |
c71a8961 ACM |
226 | if (!event) |
227 | return; | |
51a763dd | 228 | t = ring_buffer_event_data(event); |
c71a8961 ACM |
229 | goto record_it; |
230 | } | |
2056a782 JA |
231 | |
232 | /* | |
233 | * A word about the locking here - we disable interrupts to reserve | |
234 | * some space in the relay per-cpu buffer, to prevent an irq | |
14a73f54 | 235 | * from coming in and stepping on our toes. |
2056a782 JA |
236 | */ |
237 | local_irq_save(flags); | |
238 | ||
239 | if (unlikely(tsk->btrace_seq != blktrace_seq)) | |
240 | trace_note_tsk(bt, tsk); | |
241 | ||
242 | t = relay_reserve(bt->rchan, sizeof(*t) + pdu_len); | |
243 | if (t) { | |
2056a782 JA |
244 | sequence = per_cpu_ptr(bt->sequence, cpu); |
245 | ||
246 | t->magic = BLK_IO_TRACE_MAGIC | BLK_IO_TRACE_VERSION; | |
247 | t->sequence = ++(*sequence); | |
2997c8c4 | 248 | t->time = ktime_to_ns(ktime_get()); |
c71a8961 | 249 | record_it: |
08a06b83 | 250 | /* |
939b3669 ACM |
251 | * These two are not needed in ftrace as they are in the |
252 | * generic trace_entry, filled by tracing_generic_entry_update, | |
253 | * but for the trace_event->bin() synthesizer benefit we do it | |
254 | * here too. | |
255 | */ | |
256 | t->cpu = cpu; | |
257 | t->pid = pid; | |
08a06b83 | 258 | |
2056a782 JA |
259 | t->sector = sector; |
260 | t->bytes = bytes; | |
261 | t->action = what; | |
2056a782 | 262 | t->device = bt->dev; |
2056a782 JA |
263 | t->error = error; |
264 | t->pdu_len = pdu_len; | |
265 | ||
266 | if (pdu_len) | |
267 | memcpy((void *) t + sizeof(*t), pdu_data, pdu_len); | |
c71a8961 | 268 | |
18cea459 | 269 | if (blk_tracer) { |
e77405ad | 270 | trace_buffer_unlock_commit(buffer, event, 0, pc); |
c71a8961 ACM |
271 | return; |
272 | } | |
2056a782 JA |
273 | } |
274 | ||
275 | local_irq_restore(flags); | |
276 | } | |
277 | ||
2056a782 | 278 | static struct dentry *blk_tree_root; |
11a57153 | 279 | static DEFINE_MUTEX(blk_tree_mutex); |
2056a782 | 280 | |
ad5dd549 | 281 | static void blk_trace_free(struct blk_trace *bt) |
2056a782 | 282 | { |
02c62304 | 283 | debugfs_remove(bt->msg_file); |
2056a782 | 284 | debugfs_remove(bt->dropped_file); |
f48fc4d3 | 285 | relay_close(bt->rchan); |
39cbb602 | 286 | debugfs_remove(bt->dir); |
2056a782 | 287 | free_percpu(bt->sequence); |
64565911 | 288 | free_percpu(bt->msg_data); |
2056a782 | 289 | kfree(bt); |
ad5dd549 LZ |
290 | } |
291 | ||
292 | static void blk_trace_cleanup(struct blk_trace *bt) | |
293 | { | |
294 | blk_trace_free(bt); | |
5f3ea37c ACM |
295 | if (atomic_dec_and_test(&blk_probes_ref)) |
296 | blk_unregister_tracepoints(); | |
2056a782 JA |
297 | } |
298 | ||
6da127ad | 299 | int blk_trace_remove(struct request_queue *q) |
2056a782 JA |
300 | { |
301 | struct blk_trace *bt; | |
302 | ||
303 | bt = xchg(&q->blk_trace, NULL); | |
304 | if (!bt) | |
305 | return -EINVAL; | |
306 | ||
55547204 | 307 | if (bt->trace_state != Blktrace_running) |
2056a782 JA |
308 | blk_trace_cleanup(bt); |
309 | ||
310 | return 0; | |
311 | } | |
6da127ad | 312 | EXPORT_SYMBOL_GPL(blk_trace_remove); |
2056a782 | 313 | |
2056a782 JA |
314 | static ssize_t blk_dropped_read(struct file *filp, char __user *buffer, |
315 | size_t count, loff_t *ppos) | |
316 | { | |
317 | struct blk_trace *bt = filp->private_data; | |
318 | char buf[16]; | |
319 | ||
320 | snprintf(buf, sizeof(buf), "%u\n", atomic_read(&bt->dropped)); | |
321 | ||
322 | return simple_read_from_buffer(buffer, count, ppos, buf, strlen(buf)); | |
323 | } | |
324 | ||
2b8693c0 | 325 | static const struct file_operations blk_dropped_fops = { |
2056a782 | 326 | .owner = THIS_MODULE, |
234e3405 | 327 | .open = simple_open, |
2056a782 | 328 | .read = blk_dropped_read, |
6038f373 | 329 | .llseek = default_llseek, |
2056a782 JA |
330 | }; |
331 | ||
02c62304 AB |
332 | static ssize_t blk_msg_write(struct file *filp, const char __user *buffer, |
333 | size_t count, loff_t *ppos) | |
334 | { | |
335 | char *msg; | |
336 | struct blk_trace *bt; | |
337 | ||
7635b03a | 338 | if (count >= BLK_TN_MAX_MSG) |
02c62304 AB |
339 | return -EINVAL; |
340 | ||
a4b3ada8 | 341 | msg = kmalloc(count + 1, GFP_KERNEL); |
02c62304 AB |
342 | if (msg == NULL) |
343 | return -ENOMEM; | |
344 | ||
345 | if (copy_from_user(msg, buffer, count)) { | |
346 | kfree(msg); | |
347 | return -EFAULT; | |
348 | } | |
349 | ||
a4b3ada8 | 350 | msg[count] = '\0'; |
02c62304 AB |
351 | bt = filp->private_data; |
352 | __trace_note_message(bt, "%s", msg); | |
353 | kfree(msg); | |
354 | ||
355 | return count; | |
356 | } | |
357 | ||
358 | static const struct file_operations blk_msg_fops = { | |
359 | .owner = THIS_MODULE, | |
234e3405 | 360 | .open = simple_open, |
02c62304 | 361 | .write = blk_msg_write, |
6038f373 | 362 | .llseek = noop_llseek, |
02c62304 AB |
363 | }; |
364 | ||
2056a782 JA |
365 | /* |
366 | * Keep track of how many times we encountered a full subbuffer, to aid | |
367 | * the user space app in telling how many lost events there were. | |
368 | */ | |
369 | static int blk_subbuf_start_callback(struct rchan_buf *buf, void *subbuf, | |
370 | void *prev_subbuf, size_t prev_padding) | |
371 | { | |
372 | struct blk_trace *bt; | |
373 | ||
374 | if (!relay_buf_full(buf)) | |
375 | return 1; | |
376 | ||
377 | bt = buf->chan->private_data; | |
378 | atomic_inc(&bt->dropped); | |
379 | return 0; | |
380 | } | |
381 | ||
382 | static int blk_remove_buf_file_callback(struct dentry *dentry) | |
383 | { | |
384 | debugfs_remove(dentry); | |
f48fc4d3 | 385 | |
2056a782 JA |
386 | return 0; |
387 | } | |
388 | ||
389 | static struct dentry *blk_create_buf_file_callback(const char *filename, | |
390 | struct dentry *parent, | |
f4ae40a6 | 391 | umode_t mode, |
2056a782 JA |
392 | struct rchan_buf *buf, |
393 | int *is_global) | |
394 | { | |
395 | return debugfs_create_file(filename, mode, parent, buf, | |
396 | &relay_file_operations); | |
397 | } | |
398 | ||
399 | static struct rchan_callbacks blk_relay_callbacks = { | |
400 | .subbuf_start = blk_subbuf_start_callback, | |
401 | .create_buf_file = blk_create_buf_file_callback, | |
402 | .remove_buf_file = blk_remove_buf_file_callback, | |
403 | }; | |
404 | ||
9908c309 LZ |
405 | static void blk_trace_setup_lba(struct blk_trace *bt, |
406 | struct block_device *bdev) | |
407 | { | |
408 | struct hd_struct *part = NULL; | |
409 | ||
410 | if (bdev) | |
411 | part = bdev->bd_part; | |
412 | ||
413 | if (part) { | |
414 | bt->start_lba = part->start_sect; | |
415 | bt->end_lba = part->start_sect + part->nr_sects; | |
416 | } else { | |
417 | bt->start_lba = 0; | |
418 | bt->end_lba = -1ULL; | |
419 | } | |
420 | } | |
421 | ||
2056a782 JA |
422 | /* |
423 | * Setup everything required to start tracing | |
424 | */ | |
6da127ad | 425 | int do_blk_trace_setup(struct request_queue *q, char *name, dev_t dev, |
d0deef5b SD |
426 | struct block_device *bdev, |
427 | struct blk_user_trace_setup *buts) | |
2056a782 | 428 | { |
2056a782 JA |
429 | struct blk_trace *old_bt, *bt = NULL; |
430 | struct dentry *dir = NULL; | |
2056a782 JA |
431 | int ret, i; |
432 | ||
171044d4 | 433 | if (!buts->buf_size || !buts->buf_nr) |
2056a782 JA |
434 | return -EINVAL; |
435 | ||
0497b345 JA |
436 | strncpy(buts->name, name, BLKTRACE_BDEV_SIZE); |
437 | buts->name[BLKTRACE_BDEV_SIZE - 1] = '\0'; | |
2056a782 JA |
438 | |
439 | /* | |
440 | * some device names have larger paths - convert the slashes | |
441 | * to underscores for this to work as expected | |
442 | */ | |
171044d4 AB |
443 | for (i = 0; i < strlen(buts->name); i++) |
444 | if (buts->name[i] == '/') | |
445 | buts->name[i] = '_'; | |
2056a782 | 446 | |
2056a782 JA |
447 | bt = kzalloc(sizeof(*bt), GFP_KERNEL); |
448 | if (!bt) | |
ad5dd549 | 449 | return -ENOMEM; |
2056a782 | 450 | |
ad5dd549 | 451 | ret = -ENOMEM; |
2056a782 JA |
452 | bt->sequence = alloc_percpu(unsigned long); |
453 | if (!bt->sequence) | |
454 | goto err; | |
455 | ||
313e458f | 456 | bt->msg_data = __alloc_percpu(BLK_TN_MAX_MSG, __alignof__(char)); |
64565911 JA |
457 | if (!bt->msg_data) |
458 | goto err; | |
459 | ||
2056a782 | 460 | ret = -ENOENT; |
f48fc4d3 | 461 | |
b5230b56 | 462 | mutex_lock(&blk_tree_mutex); |
f48fc4d3 JA |
463 | if (!blk_tree_root) { |
464 | blk_tree_root = debugfs_create_dir("block", NULL); | |
b5230b56 LZ |
465 | if (!blk_tree_root) { |
466 | mutex_unlock(&blk_tree_mutex); | |
1a17662e | 467 | goto err; |
b5230b56 | 468 | } |
f48fc4d3 | 469 | } |
b5230b56 | 470 | mutex_unlock(&blk_tree_mutex); |
f48fc4d3 JA |
471 | |
472 | dir = debugfs_create_dir(buts->name, blk_tree_root); | |
473 | ||
2056a782 JA |
474 | if (!dir) |
475 | goto err; | |
476 | ||
477 | bt->dir = dir; | |
6da127ad | 478 | bt->dev = dev; |
2056a782 JA |
479 | atomic_set(&bt->dropped, 0); |
480 | ||
481 | ret = -EIO; | |
939b3669 ACM |
482 | bt->dropped_file = debugfs_create_file("dropped", 0444, dir, bt, |
483 | &blk_dropped_fops); | |
2056a782 JA |
484 | if (!bt->dropped_file) |
485 | goto err; | |
486 | ||
02c62304 AB |
487 | bt->msg_file = debugfs_create_file("msg", 0222, dir, bt, &blk_msg_fops); |
488 | if (!bt->msg_file) | |
489 | goto err; | |
490 | ||
171044d4 AB |
491 | bt->rchan = relay_open("trace", dir, buts->buf_size, |
492 | buts->buf_nr, &blk_relay_callbacks, bt); | |
2056a782 JA |
493 | if (!bt->rchan) |
494 | goto err; | |
2056a782 | 495 | |
171044d4 | 496 | bt->act_mask = buts->act_mask; |
2056a782 JA |
497 | if (!bt->act_mask) |
498 | bt->act_mask = (u16) -1; | |
499 | ||
9908c309 | 500 | blk_trace_setup_lba(bt, bdev); |
2056a782 | 501 | |
d0deef5b SD |
502 | /* overwrite with user settings */ |
503 | if (buts->start_lba) | |
504 | bt->start_lba = buts->start_lba; | |
505 | if (buts->end_lba) | |
506 | bt->end_lba = buts->end_lba; | |
507 | ||
171044d4 | 508 | bt->pid = buts->pid; |
2056a782 JA |
509 | bt->trace_state = Blktrace_setup; |
510 | ||
511 | ret = -EBUSY; | |
512 | old_bt = xchg(&q->blk_trace, bt); | |
513 | if (old_bt) { | |
514 | (void) xchg(&q->blk_trace, old_bt); | |
515 | goto err; | |
516 | } | |
517 | ||
17ba97e3 | 518 | if (atomic_inc_return(&blk_probes_ref) == 1) |
cbe28296 LZ |
519 | blk_register_tracepoints(); |
520 | ||
2056a782 JA |
521 | return 0; |
522 | err: | |
ad5dd549 | 523 | blk_trace_free(bt); |
2056a782 JA |
524 | return ret; |
525 | } | |
171044d4 | 526 | |
6da127ad | 527 | int blk_trace_setup(struct request_queue *q, char *name, dev_t dev, |
d0deef5b | 528 | struct block_device *bdev, |
6da127ad | 529 | char __user *arg) |
171044d4 AB |
530 | { |
531 | struct blk_user_trace_setup buts; | |
532 | int ret; | |
533 | ||
534 | ret = copy_from_user(&buts, arg, sizeof(buts)); | |
535 | if (ret) | |
536 | return -EFAULT; | |
537 | ||
d0deef5b | 538 | ret = do_blk_trace_setup(q, name, dev, bdev, &buts); |
171044d4 AB |
539 | if (ret) |
540 | return ret; | |
541 | ||
9a8c28c8 DM |
542 | if (copy_to_user(arg, &buts, sizeof(buts))) { |
543 | blk_trace_remove(q); | |
171044d4 | 544 | return -EFAULT; |
9a8c28c8 | 545 | } |
171044d4 AB |
546 | return 0; |
547 | } | |
6da127ad | 548 | EXPORT_SYMBOL_GPL(blk_trace_setup); |
2056a782 | 549 | |
62c2a7d9 AB |
550 | #if defined(CONFIG_COMPAT) && defined(CONFIG_X86_64) |
551 | static int compat_blk_trace_setup(struct request_queue *q, char *name, | |
552 | dev_t dev, struct block_device *bdev, | |
553 | char __user *arg) | |
554 | { | |
555 | struct blk_user_trace_setup buts; | |
556 | struct compat_blk_user_trace_setup cbuts; | |
557 | int ret; | |
558 | ||
559 | if (copy_from_user(&cbuts, arg, sizeof(cbuts))) | |
560 | return -EFAULT; | |
561 | ||
562 | buts = (struct blk_user_trace_setup) { | |
563 | .act_mask = cbuts.act_mask, | |
564 | .buf_size = cbuts.buf_size, | |
565 | .buf_nr = cbuts.buf_nr, | |
566 | .start_lba = cbuts.start_lba, | |
567 | .end_lba = cbuts.end_lba, | |
568 | .pid = cbuts.pid, | |
569 | }; | |
570 | memcpy(&buts.name, &cbuts.name, 32); | |
571 | ||
572 | ret = do_blk_trace_setup(q, name, dev, bdev, &buts); | |
573 | if (ret) | |
574 | return ret; | |
575 | ||
576 | if (copy_to_user(arg, &buts.name, 32)) { | |
577 | blk_trace_remove(q); | |
578 | return -EFAULT; | |
579 | } | |
580 | ||
581 | return 0; | |
582 | } | |
583 | #endif | |
584 | ||
6da127ad | 585 | int blk_trace_startstop(struct request_queue *q, int start) |
2056a782 | 586 | { |
2056a782 | 587 | int ret; |
939b3669 | 588 | struct blk_trace *bt = q->blk_trace; |
2056a782 | 589 | |
939b3669 | 590 | if (bt == NULL) |
2056a782 JA |
591 | return -EINVAL; |
592 | ||
593 | /* | |
594 | * For starting a trace, we can transition from a setup or stopped | |
595 | * trace. For stopping a trace, the state must be running | |
596 | */ | |
597 | ret = -EINVAL; | |
598 | if (start) { | |
599 | if (bt->trace_state == Blktrace_setup || | |
600 | bt->trace_state == Blktrace_stopped) { | |
601 | blktrace_seq++; | |
602 | smp_mb(); | |
603 | bt->trace_state = Blktrace_running; | |
be1c6341 OK |
604 | |
605 | trace_note_time(bt); | |
2056a782 JA |
606 | ret = 0; |
607 | } | |
608 | } else { | |
609 | if (bt->trace_state == Blktrace_running) { | |
610 | bt->trace_state = Blktrace_stopped; | |
611 | relay_flush(bt->rchan); | |
612 | ret = 0; | |
613 | } | |
614 | } | |
615 | ||
616 | return ret; | |
617 | } | |
6da127ad | 618 | EXPORT_SYMBOL_GPL(blk_trace_startstop); |
2056a782 JA |
619 | |
620 | /** | |
621 | * blk_trace_ioctl: - handle the ioctls associated with tracing | |
622 | * @bdev: the block device | |
ef18012b | 623 | * @cmd: the ioctl cmd |
2056a782 JA |
624 | * @arg: the argument data, if any |
625 | * | |
626 | **/ | |
627 | int blk_trace_ioctl(struct block_device *bdev, unsigned cmd, char __user *arg) | |
628 | { | |
165125e1 | 629 | struct request_queue *q; |
2056a782 | 630 | int ret, start = 0; |
6da127ad | 631 | char b[BDEVNAME_SIZE]; |
2056a782 JA |
632 | |
633 | q = bdev_get_queue(bdev); | |
634 | if (!q) | |
635 | return -ENXIO; | |
636 | ||
637 | mutex_lock(&bdev->bd_mutex); | |
638 | ||
639 | switch (cmd) { | |
640 | case BLKTRACESETUP: | |
f36f21ec | 641 | bdevname(bdev, b); |
d0deef5b | 642 | ret = blk_trace_setup(q, b, bdev->bd_dev, bdev, arg); |
2056a782 | 643 | break; |
62c2a7d9 AB |
644 | #if defined(CONFIG_COMPAT) && defined(CONFIG_X86_64) |
645 | case BLKTRACESETUP32: | |
646 | bdevname(bdev, b); | |
647 | ret = compat_blk_trace_setup(q, b, bdev->bd_dev, bdev, arg); | |
648 | break; | |
649 | #endif | |
2056a782 JA |
650 | case BLKTRACESTART: |
651 | start = 1; | |
652 | case BLKTRACESTOP: | |
653 | ret = blk_trace_startstop(q, start); | |
654 | break; | |
655 | case BLKTRACETEARDOWN: | |
656 | ret = blk_trace_remove(q); | |
657 | break; | |
658 | default: | |
659 | ret = -ENOTTY; | |
660 | break; | |
661 | } | |
662 | ||
663 | mutex_unlock(&bdev->bd_mutex); | |
664 | return ret; | |
665 | } | |
666 | ||
667 | /** | |
668 | * blk_trace_shutdown: - stop and cleanup trace structures | |
669 | * @q: the request queue associated with the device | |
670 | * | |
671 | **/ | |
165125e1 | 672 | void blk_trace_shutdown(struct request_queue *q) |
2056a782 | 673 | { |
6c5c9341 AD |
674 | if (q->blk_trace) { |
675 | blk_trace_startstop(q, 0); | |
676 | blk_trace_remove(q); | |
677 | } | |
2056a782 | 678 | } |
5f3ea37c ACM |
679 | |
680 | /* | |
681 | * blktrace probes | |
682 | */ | |
683 | ||
684 | /** | |
685 | * blk_add_trace_rq - Add a trace for a request oriented action | |
686 | * @q: queue the io is for | |
687 | * @rq: the source request | |
688 | * @what: the action | |
689 | * | |
690 | * Description: | |
691 | * Records an action against a request. Will log the bio offset + size. | |
692 | * | |
693 | **/ | |
694 | static void blk_add_trace_rq(struct request_queue *q, struct request *rq, | |
805f6b5e | 695 | u32 what) |
5f3ea37c ACM |
696 | { |
697 | struct blk_trace *bt = q->blk_trace; | |
5f3ea37c ACM |
698 | |
699 | if (likely(!bt)) | |
700 | return; | |
701 | ||
33659ebb | 702 | if (rq->cmd_type == REQ_TYPE_BLOCK_PC) { |
5f3ea37c | 703 | what |= BLK_TC_ACT(BLK_TC_PC); |
805f6b5e | 704 | __blk_add_trace(bt, 0, blk_rq_bytes(rq), rq->cmd_flags, |
2e46e8b2 | 705 | what, rq->errors, rq->cmd_len, rq->cmd); |
5f3ea37c ACM |
706 | } else { |
707 | what |= BLK_TC_ACT(BLK_TC_FS); | |
805f6b5e TM |
708 | __blk_add_trace(bt, blk_rq_pos(rq), blk_rq_bytes(rq), |
709 | rq->cmd_flags, what, rq->errors, 0, NULL); | |
5f3ea37c ACM |
710 | } |
711 | } | |
712 | ||
38516ab5 SR |
713 | static void blk_add_trace_rq_abort(void *ignore, |
714 | struct request_queue *q, struct request *rq) | |
5f3ea37c ACM |
715 | { |
716 | blk_add_trace_rq(q, rq, BLK_TA_ABORT); | |
717 | } | |
718 | ||
38516ab5 SR |
719 | static void blk_add_trace_rq_insert(void *ignore, |
720 | struct request_queue *q, struct request *rq) | |
5f3ea37c ACM |
721 | { |
722 | blk_add_trace_rq(q, rq, BLK_TA_INSERT); | |
723 | } | |
724 | ||
38516ab5 SR |
725 | static void blk_add_trace_rq_issue(void *ignore, |
726 | struct request_queue *q, struct request *rq) | |
5f3ea37c ACM |
727 | { |
728 | blk_add_trace_rq(q, rq, BLK_TA_ISSUE); | |
729 | } | |
730 | ||
38516ab5 SR |
731 | static void blk_add_trace_rq_requeue(void *ignore, |
732 | struct request_queue *q, | |
939b3669 | 733 | struct request *rq) |
5f3ea37c ACM |
734 | { |
735 | blk_add_trace_rq(q, rq, BLK_TA_REQUEUE); | |
736 | } | |
737 | ||
38516ab5 SR |
738 | static void blk_add_trace_rq_complete(void *ignore, |
739 | struct request_queue *q, | |
939b3669 | 740 | struct request *rq) |
5f3ea37c | 741 | { |
3a366e61 TH |
742 | struct blk_trace *bt = q->blk_trace; |
743 | ||
744 | /* if control ever passes through here, it's a request based driver */ | |
745 | if (unlikely(bt && !bt->rq_based)) | |
746 | bt->rq_based = true; | |
747 | ||
5f3ea37c ACM |
748 | blk_add_trace_rq(q, rq, BLK_TA_COMPLETE); |
749 | } | |
750 | ||
751 | /** | |
752 | * blk_add_trace_bio - Add a trace for a bio oriented action | |
753 | * @q: queue the io is for | |
754 | * @bio: the source bio | |
755 | * @what: the action | |
797a455d | 756 | * @error: error, if any |
5f3ea37c ACM |
757 | * |
758 | * Description: | |
759 | * Records an action against a bio. Will log the bio offset + size. | |
760 | * | |
761 | **/ | |
762 | static void blk_add_trace_bio(struct request_queue *q, struct bio *bio, | |
797a455d | 763 | u32 what, int error) |
5f3ea37c ACM |
764 | { |
765 | struct blk_trace *bt = q->blk_trace; | |
766 | ||
767 | if (likely(!bt)) | |
768 | return; | |
769 | ||
797a455d JA |
770 | if (!error && !bio_flagged(bio, BIO_UPTODATE)) |
771 | error = EIO; | |
772 | ||
5f3ea37c | 773 | __blk_add_trace(bt, bio->bi_sector, bio->bi_size, bio->bi_rw, what, |
797a455d | 774 | error, 0, NULL); |
5f3ea37c ACM |
775 | } |
776 | ||
38516ab5 SR |
777 | static void blk_add_trace_bio_bounce(void *ignore, |
778 | struct request_queue *q, struct bio *bio) | |
5f3ea37c | 779 | { |
797a455d | 780 | blk_add_trace_bio(q, bio, BLK_TA_BOUNCE, 0); |
5f3ea37c ACM |
781 | } |
782 | ||
3a366e61 | 783 | static void blk_add_trace_bio_complete(void *ignore, struct bio *bio, int error) |
5f3ea37c | 784 | { |
3a366e61 TH |
785 | struct request_queue *q; |
786 | struct blk_trace *bt; | |
787 | ||
788 | if (!bio->bi_bdev) | |
789 | return; | |
790 | ||
791 | q = bdev_get_queue(bio->bi_bdev); | |
792 | bt = q->blk_trace; | |
793 | ||
794 | /* | |
795 | * Request based drivers will generate both rq and bio completions. | |
796 | * Ignore bio ones. | |
797 | */ | |
798 | if (likely(!bt) || bt->rq_based) | |
799 | return; | |
800 | ||
797a455d | 801 | blk_add_trace_bio(q, bio, BLK_TA_COMPLETE, error); |
5f3ea37c ACM |
802 | } |
803 | ||
38516ab5 SR |
804 | static void blk_add_trace_bio_backmerge(void *ignore, |
805 | struct request_queue *q, | |
8c1cf6bb | 806 | struct request *rq, |
939b3669 | 807 | struct bio *bio) |
5f3ea37c | 808 | { |
797a455d | 809 | blk_add_trace_bio(q, bio, BLK_TA_BACKMERGE, 0); |
5f3ea37c ACM |
810 | } |
811 | ||
38516ab5 SR |
812 | static void blk_add_trace_bio_frontmerge(void *ignore, |
813 | struct request_queue *q, | |
8c1cf6bb | 814 | struct request *rq, |
939b3669 | 815 | struct bio *bio) |
5f3ea37c | 816 | { |
797a455d | 817 | blk_add_trace_bio(q, bio, BLK_TA_FRONTMERGE, 0); |
5f3ea37c ACM |
818 | } |
819 | ||
38516ab5 SR |
820 | static void blk_add_trace_bio_queue(void *ignore, |
821 | struct request_queue *q, struct bio *bio) | |
5f3ea37c | 822 | { |
797a455d | 823 | blk_add_trace_bio(q, bio, BLK_TA_QUEUE, 0); |
5f3ea37c ACM |
824 | } |
825 | ||
38516ab5 SR |
826 | static void blk_add_trace_getrq(void *ignore, |
827 | struct request_queue *q, | |
939b3669 | 828 | struct bio *bio, int rw) |
5f3ea37c ACM |
829 | { |
830 | if (bio) | |
797a455d | 831 | blk_add_trace_bio(q, bio, BLK_TA_GETRQ, 0); |
5f3ea37c ACM |
832 | else { |
833 | struct blk_trace *bt = q->blk_trace; | |
834 | ||
835 | if (bt) | |
836 | __blk_add_trace(bt, 0, 0, rw, BLK_TA_GETRQ, 0, 0, NULL); | |
837 | } | |
838 | } | |
839 | ||
840 | ||
38516ab5 SR |
841 | static void blk_add_trace_sleeprq(void *ignore, |
842 | struct request_queue *q, | |
939b3669 | 843 | struct bio *bio, int rw) |
5f3ea37c ACM |
844 | { |
845 | if (bio) | |
797a455d | 846 | blk_add_trace_bio(q, bio, BLK_TA_SLEEPRQ, 0); |
5f3ea37c ACM |
847 | else { |
848 | struct blk_trace *bt = q->blk_trace; | |
849 | ||
850 | if (bt) | |
939b3669 ACM |
851 | __blk_add_trace(bt, 0, 0, rw, BLK_TA_SLEEPRQ, |
852 | 0, 0, NULL); | |
5f3ea37c ACM |
853 | } |
854 | } | |
855 | ||
38516ab5 | 856 | static void blk_add_trace_plug(void *ignore, struct request_queue *q) |
5f3ea37c ACM |
857 | { |
858 | struct blk_trace *bt = q->blk_trace; | |
859 | ||
860 | if (bt) | |
861 | __blk_add_trace(bt, 0, 0, 0, BLK_TA_PLUG, 0, 0, NULL); | |
862 | } | |
863 | ||
49cac01e JA |
864 | static void blk_add_trace_unplug(void *ignore, struct request_queue *q, |
865 | unsigned int depth, bool explicit) | |
5f3ea37c ACM |
866 | { |
867 | struct blk_trace *bt = q->blk_trace; | |
868 | ||
869 | if (bt) { | |
94b5eb28 | 870 | __be64 rpdu = cpu_to_be64(depth); |
49cac01e | 871 | u32 what; |
5f3ea37c | 872 | |
49cac01e JA |
873 | if (explicit) |
874 | what = BLK_TA_UNPLUG_IO; | |
875 | else | |
876 | what = BLK_TA_UNPLUG_TIMER; | |
877 | ||
878 | __blk_add_trace(bt, 0, 0, 0, what, 0, sizeof(rpdu), &rpdu); | |
5f3ea37c ACM |
879 | } |
880 | } | |
881 | ||
38516ab5 SR |
882 | static void blk_add_trace_split(void *ignore, |
883 | struct request_queue *q, struct bio *bio, | |
5f3ea37c ACM |
884 | unsigned int pdu) |
885 | { | |
886 | struct blk_trace *bt = q->blk_trace; | |
887 | ||
888 | if (bt) { | |
889 | __be64 rpdu = cpu_to_be64(pdu); | |
890 | ||
891 | __blk_add_trace(bt, bio->bi_sector, bio->bi_size, bio->bi_rw, | |
892 | BLK_TA_SPLIT, !bio_flagged(bio, BIO_UPTODATE), | |
893 | sizeof(rpdu), &rpdu); | |
894 | } | |
895 | } | |
896 | ||
897 | /** | |
d07335e5 | 898 | * blk_add_trace_bio_remap - Add a trace for a bio-remap operation |
546cf44a | 899 | * @ignore: trace callback data parameter (not used) |
5f3ea37c ACM |
900 | * @q: queue the io is for |
901 | * @bio: the source bio | |
902 | * @dev: target device | |
a42aaa3b | 903 | * @from: source sector |
5f3ea37c ACM |
904 | * |
905 | * Description: | |
906 | * Device mapper or raid target sometimes need to split a bio because | |
907 | * it spans a stripe (or similar). Add a trace for that action. | |
908 | * | |
909 | **/ | |
d07335e5 MS |
910 | static void blk_add_trace_bio_remap(void *ignore, |
911 | struct request_queue *q, struct bio *bio, | |
912 | dev_t dev, sector_t from) | |
5f3ea37c ACM |
913 | { |
914 | struct blk_trace *bt = q->blk_trace; | |
915 | struct blk_io_trace_remap r; | |
916 | ||
917 | if (likely(!bt)) | |
918 | return; | |
919 | ||
a42aaa3b AB |
920 | r.device_from = cpu_to_be32(dev); |
921 | r.device_to = cpu_to_be32(bio->bi_bdev->bd_dev); | |
922 | r.sector_from = cpu_to_be64(from); | |
5f3ea37c | 923 | |
22a7c31a AB |
924 | __blk_add_trace(bt, bio->bi_sector, bio->bi_size, bio->bi_rw, |
925 | BLK_TA_REMAP, !bio_flagged(bio, BIO_UPTODATE), | |
926 | sizeof(r), &r); | |
5f3ea37c ACM |
927 | } |
928 | ||
b0da3f0d JN |
929 | /** |
930 | * blk_add_trace_rq_remap - Add a trace for a request-remap operation | |
546cf44a | 931 | * @ignore: trace callback data parameter (not used) |
b0da3f0d JN |
932 | * @q: queue the io is for |
933 | * @rq: the source request | |
934 | * @dev: target device | |
935 | * @from: source sector | |
936 | * | |
937 | * Description: | |
938 | * Device mapper remaps request to other devices. | |
939 | * Add a trace for that action. | |
940 | * | |
941 | **/ | |
38516ab5 SR |
942 | static void blk_add_trace_rq_remap(void *ignore, |
943 | struct request_queue *q, | |
b0da3f0d JN |
944 | struct request *rq, dev_t dev, |
945 | sector_t from) | |
946 | { | |
947 | struct blk_trace *bt = q->blk_trace; | |
948 | struct blk_io_trace_remap r; | |
949 | ||
950 | if (likely(!bt)) | |
951 | return; | |
952 | ||
953 | r.device_from = cpu_to_be32(dev); | |
954 | r.device_to = cpu_to_be32(disk_devt(rq->rq_disk)); | |
955 | r.sector_from = cpu_to_be64(from); | |
956 | ||
957 | __blk_add_trace(bt, blk_rq_pos(rq), blk_rq_bytes(rq), | |
958 | rq_data_dir(rq), BLK_TA_REMAP, !!rq->errors, | |
959 | sizeof(r), &r); | |
960 | } | |
961 | ||
5f3ea37c ACM |
962 | /** |
963 | * blk_add_driver_data - Add binary message with driver-specific data | |
964 | * @q: queue the io is for | |
965 | * @rq: io request | |
966 | * @data: driver-specific data | |
967 | * @len: length of driver-specific data | |
968 | * | |
969 | * Description: | |
970 | * Some drivers might want to write driver-specific data per request. | |
971 | * | |
972 | **/ | |
973 | void blk_add_driver_data(struct request_queue *q, | |
974 | struct request *rq, | |
975 | void *data, size_t len) | |
976 | { | |
977 | struct blk_trace *bt = q->blk_trace; | |
978 | ||
979 | if (likely(!bt)) | |
980 | return; | |
981 | ||
33659ebb | 982 | if (rq->cmd_type == REQ_TYPE_BLOCK_PC) |
2e46e8b2 TH |
983 | __blk_add_trace(bt, 0, blk_rq_bytes(rq), 0, |
984 | BLK_TA_DRV_DATA, rq->errors, len, data); | |
5f3ea37c | 985 | else |
2e46e8b2 TH |
986 | __blk_add_trace(bt, blk_rq_pos(rq), blk_rq_bytes(rq), 0, |
987 | BLK_TA_DRV_DATA, rq->errors, len, data); | |
5f3ea37c ACM |
988 | } |
989 | EXPORT_SYMBOL_GPL(blk_add_driver_data); | |
990 | ||
3c289ba7 | 991 | static void blk_register_tracepoints(void) |
5f3ea37c ACM |
992 | { |
993 | int ret; | |
994 | ||
38516ab5 | 995 | ret = register_trace_block_rq_abort(blk_add_trace_rq_abort, NULL); |
5f3ea37c | 996 | WARN_ON(ret); |
38516ab5 | 997 | ret = register_trace_block_rq_insert(blk_add_trace_rq_insert, NULL); |
5f3ea37c | 998 | WARN_ON(ret); |
38516ab5 | 999 | ret = register_trace_block_rq_issue(blk_add_trace_rq_issue, NULL); |
5f3ea37c | 1000 | WARN_ON(ret); |
38516ab5 | 1001 | ret = register_trace_block_rq_requeue(blk_add_trace_rq_requeue, NULL); |
5f3ea37c | 1002 | WARN_ON(ret); |
38516ab5 | 1003 | ret = register_trace_block_rq_complete(blk_add_trace_rq_complete, NULL); |
5f3ea37c | 1004 | WARN_ON(ret); |
38516ab5 | 1005 | ret = register_trace_block_bio_bounce(blk_add_trace_bio_bounce, NULL); |
5f3ea37c | 1006 | WARN_ON(ret); |
38516ab5 | 1007 | ret = register_trace_block_bio_complete(blk_add_trace_bio_complete, NULL); |
5f3ea37c | 1008 | WARN_ON(ret); |
38516ab5 | 1009 | ret = register_trace_block_bio_backmerge(blk_add_trace_bio_backmerge, NULL); |
5f3ea37c | 1010 | WARN_ON(ret); |
38516ab5 | 1011 | ret = register_trace_block_bio_frontmerge(blk_add_trace_bio_frontmerge, NULL); |
5f3ea37c | 1012 | WARN_ON(ret); |
38516ab5 | 1013 | ret = register_trace_block_bio_queue(blk_add_trace_bio_queue, NULL); |
5f3ea37c | 1014 | WARN_ON(ret); |
38516ab5 | 1015 | ret = register_trace_block_getrq(blk_add_trace_getrq, NULL); |
5f3ea37c | 1016 | WARN_ON(ret); |
38516ab5 | 1017 | ret = register_trace_block_sleeprq(blk_add_trace_sleeprq, NULL); |
5f3ea37c | 1018 | WARN_ON(ret); |
38516ab5 | 1019 | ret = register_trace_block_plug(blk_add_trace_plug, NULL); |
5f3ea37c | 1020 | WARN_ON(ret); |
49cac01e | 1021 | ret = register_trace_block_unplug(blk_add_trace_unplug, NULL); |
5f3ea37c | 1022 | WARN_ON(ret); |
38516ab5 | 1023 | ret = register_trace_block_split(blk_add_trace_split, NULL); |
5f3ea37c | 1024 | WARN_ON(ret); |
d07335e5 | 1025 | ret = register_trace_block_bio_remap(blk_add_trace_bio_remap, NULL); |
5f3ea37c | 1026 | WARN_ON(ret); |
38516ab5 | 1027 | ret = register_trace_block_rq_remap(blk_add_trace_rq_remap, NULL); |
b0da3f0d | 1028 | WARN_ON(ret); |
5f3ea37c ACM |
1029 | } |
1030 | ||
1031 | static void blk_unregister_tracepoints(void) | |
1032 | { | |
38516ab5 | 1033 | unregister_trace_block_rq_remap(blk_add_trace_rq_remap, NULL); |
d07335e5 | 1034 | unregister_trace_block_bio_remap(blk_add_trace_bio_remap, NULL); |
38516ab5 | 1035 | unregister_trace_block_split(blk_add_trace_split, NULL); |
49cac01e | 1036 | unregister_trace_block_unplug(blk_add_trace_unplug, NULL); |
38516ab5 SR |
1037 | unregister_trace_block_plug(blk_add_trace_plug, NULL); |
1038 | unregister_trace_block_sleeprq(blk_add_trace_sleeprq, NULL); | |
1039 | unregister_trace_block_getrq(blk_add_trace_getrq, NULL); | |
1040 | unregister_trace_block_bio_queue(blk_add_trace_bio_queue, NULL); | |
1041 | unregister_trace_block_bio_frontmerge(blk_add_trace_bio_frontmerge, NULL); | |
1042 | unregister_trace_block_bio_backmerge(blk_add_trace_bio_backmerge, NULL); | |
1043 | unregister_trace_block_bio_complete(blk_add_trace_bio_complete, NULL); | |
1044 | unregister_trace_block_bio_bounce(blk_add_trace_bio_bounce, NULL); | |
1045 | unregister_trace_block_rq_complete(blk_add_trace_rq_complete, NULL); | |
1046 | unregister_trace_block_rq_requeue(blk_add_trace_rq_requeue, NULL); | |
1047 | unregister_trace_block_rq_issue(blk_add_trace_rq_issue, NULL); | |
1048 | unregister_trace_block_rq_insert(blk_add_trace_rq_insert, NULL); | |
1049 | unregister_trace_block_rq_abort(blk_add_trace_rq_abort, NULL); | |
5f3ea37c ACM |
1050 | |
1051 | tracepoint_synchronize_unregister(); | |
1052 | } | |
c71a8961 ACM |
1053 | |
1054 | /* | |
1055 | * struct blk_io_tracer formatting routines | |
1056 | */ | |
1057 | ||
1058 | static void fill_rwbs(char *rwbs, const struct blk_io_trace *t) | |
1059 | { | |
157f9c00 | 1060 | int i = 0; |
65796348 | 1061 | int tc = t->action >> BLK_TC_SHIFT; |
157f9c00 | 1062 | |
18cea459 LZ |
1063 | if (t->action == BLK_TN_MESSAGE) { |
1064 | rwbs[i++] = 'N'; | |
1065 | goto out; | |
1066 | } | |
1067 | ||
c09c47ca NK |
1068 | if (tc & BLK_TC_FLUSH) |
1069 | rwbs[i++] = 'F'; | |
1070 | ||
65796348 | 1071 | if (tc & BLK_TC_DISCARD) |
157f9c00 | 1072 | rwbs[i++] = 'D'; |
65796348 | 1073 | else if (tc & BLK_TC_WRITE) |
157f9c00 ACM |
1074 | rwbs[i++] = 'W'; |
1075 | else if (t->bytes) | |
1076 | rwbs[i++] = 'R'; | |
1077 | else | |
1078 | rwbs[i++] = 'N'; | |
1079 | ||
c09c47ca NK |
1080 | if (tc & BLK_TC_FUA) |
1081 | rwbs[i++] = 'F'; | |
65796348 | 1082 | if (tc & BLK_TC_AHEAD) |
157f9c00 | 1083 | rwbs[i++] = 'A'; |
65796348 | 1084 | if (tc & BLK_TC_SYNC) |
157f9c00 | 1085 | rwbs[i++] = 'S'; |
65796348 | 1086 | if (tc & BLK_TC_META) |
157f9c00 | 1087 | rwbs[i++] = 'M'; |
18cea459 | 1088 | out: |
157f9c00 | 1089 | rwbs[i] = '\0'; |
c71a8961 ACM |
1090 | } |
1091 | ||
1092 | static inline | |
1093 | const struct blk_io_trace *te_blk_io_trace(const struct trace_entry *ent) | |
1094 | { | |
1095 | return (const struct blk_io_trace *)ent; | |
1096 | } | |
1097 | ||
1098 | static inline const void *pdu_start(const struct trace_entry *ent) | |
1099 | { | |
1100 | return te_blk_io_trace(ent) + 1; | |
1101 | } | |
1102 | ||
66de7792 LZ |
1103 | static inline u32 t_action(const struct trace_entry *ent) |
1104 | { | |
1105 | return te_blk_io_trace(ent)->action; | |
1106 | } | |
1107 | ||
1108 | static inline u32 t_bytes(const struct trace_entry *ent) | |
1109 | { | |
1110 | return te_blk_io_trace(ent)->bytes; | |
1111 | } | |
1112 | ||
c71a8961 ACM |
1113 | static inline u32 t_sec(const struct trace_entry *ent) |
1114 | { | |
1115 | return te_blk_io_trace(ent)->bytes >> 9; | |
1116 | } | |
1117 | ||
1118 | static inline unsigned long long t_sector(const struct trace_entry *ent) | |
1119 | { | |
1120 | return te_blk_io_trace(ent)->sector; | |
1121 | } | |
1122 | ||
1123 | static inline __u16 t_error(const struct trace_entry *ent) | |
1124 | { | |
e0dc81be | 1125 | return te_blk_io_trace(ent)->error; |
c71a8961 ACM |
1126 | } |
1127 | ||
1128 | static __u64 get_pdu_int(const struct trace_entry *ent) | |
1129 | { | |
1130 | const __u64 *val = pdu_start(ent); | |
1131 | return be64_to_cpu(*val); | |
1132 | } | |
1133 | ||
1134 | static void get_pdu_remap(const struct trace_entry *ent, | |
1135 | struct blk_io_trace_remap *r) | |
1136 | { | |
1137 | const struct blk_io_trace_remap *__r = pdu_start(ent); | |
a42aaa3b | 1138 | __u64 sector_from = __r->sector_from; |
c71a8961 | 1139 | |
c71a8961 | 1140 | r->device_from = be32_to_cpu(__r->device_from); |
a42aaa3b AB |
1141 | r->device_to = be32_to_cpu(__r->device_to); |
1142 | r->sector_from = be64_to_cpu(sector_from); | |
c71a8961 ACM |
1143 | } |
1144 | ||
b6a4b0c3 LZ |
1145 | typedef int (blk_log_action_t) (struct trace_iterator *iter, const char *act); |
1146 | ||
1147 | static int blk_log_action_classic(struct trace_iterator *iter, const char *act) | |
c71a8961 | 1148 | { |
c09c47ca | 1149 | char rwbs[RWBS_LEN]; |
35ac51bf LZ |
1150 | unsigned long long ts = iter->ts; |
1151 | unsigned long nsec_rem = do_div(ts, NSEC_PER_SEC); | |
c71a8961 | 1152 | unsigned secs = (unsigned long)ts; |
b6a4b0c3 | 1153 | const struct blk_io_trace *t = te_blk_io_trace(iter->ent); |
c71a8961 ACM |
1154 | |
1155 | fill_rwbs(rwbs, t); | |
1156 | ||
1157 | return trace_seq_printf(&iter->seq, | |
35ac51bf | 1158 | "%3d,%-3d %2d %5d.%09lu %5u %2s %3s ", |
c71a8961 | 1159 | MAJOR(t->device), MINOR(t->device), iter->cpu, |
b6a4b0c3 | 1160 | secs, nsec_rem, iter->ent->pid, act, rwbs); |
c71a8961 ACM |
1161 | } |
1162 | ||
b6a4b0c3 | 1163 | static int blk_log_action(struct trace_iterator *iter, const char *act) |
c71a8961 | 1164 | { |
c09c47ca | 1165 | char rwbs[RWBS_LEN]; |
b6a4b0c3 LZ |
1166 | const struct blk_io_trace *t = te_blk_io_trace(iter->ent); |
1167 | ||
c71a8961 | 1168 | fill_rwbs(rwbs, t); |
b6a4b0c3 | 1169 | return trace_seq_printf(&iter->seq, "%3d,%-3d %2s %3s ", |
c71a8961 ACM |
1170 | MAJOR(t->device), MINOR(t->device), act, rwbs); |
1171 | } | |
1172 | ||
66de7792 LZ |
1173 | static int blk_log_dump_pdu(struct trace_seq *s, const struct trace_entry *ent) |
1174 | { | |
04986257 | 1175 | const unsigned char *pdu_buf; |
66de7792 LZ |
1176 | int pdu_len; |
1177 | int i, end, ret; | |
1178 | ||
1179 | pdu_buf = pdu_start(ent); | |
1180 | pdu_len = te_blk_io_trace(ent)->pdu_len; | |
1181 | ||
1182 | if (!pdu_len) | |
1183 | return 1; | |
1184 | ||
1185 | /* find the last zero that needs to be printed */ | |
1186 | for (end = pdu_len - 1; end >= 0; end--) | |
1187 | if (pdu_buf[end]) | |
1188 | break; | |
1189 | end++; | |
1190 | ||
1191 | if (!trace_seq_putc(s, '(')) | |
1192 | return 0; | |
1193 | ||
1194 | for (i = 0; i < pdu_len; i++) { | |
1195 | ||
1196 | ret = trace_seq_printf(s, "%s%02x", | |
1197 | i == 0 ? "" : " ", pdu_buf[i]); | |
1198 | if (!ret) | |
1199 | return ret; | |
1200 | ||
1201 | /* | |
1202 | * stop when the rest is just zeroes and indicate so | |
1203 | * with a ".." appended | |
1204 | */ | |
1205 | if (i == end && end != pdu_len - 1) | |
1206 | return trace_seq_puts(s, " ..) "); | |
1207 | } | |
1208 | ||
1209 | return trace_seq_puts(s, ") "); | |
1210 | } | |
1211 | ||
c71a8961 ACM |
1212 | static int blk_log_generic(struct trace_seq *s, const struct trace_entry *ent) |
1213 | { | |
4ca53085 SR |
1214 | char cmd[TASK_COMM_LEN]; |
1215 | ||
1216 | trace_find_cmdline(ent->pid, cmd); | |
c71a8961 | 1217 | |
66de7792 LZ |
1218 | if (t_action(ent) & BLK_TC_ACT(BLK_TC_PC)) { |
1219 | int ret; | |
1220 | ||
1221 | ret = trace_seq_printf(s, "%u ", t_bytes(ent)); | |
1222 | if (!ret) | |
1223 | return 0; | |
1224 | ret = blk_log_dump_pdu(s, ent); | |
1225 | if (!ret) | |
1226 | return 0; | |
1227 | return trace_seq_printf(s, "[%s]\n", cmd); | |
1228 | } else { | |
1229 | if (t_sec(ent)) | |
1230 | return trace_seq_printf(s, "%llu + %u [%s]\n", | |
1231 | t_sector(ent), t_sec(ent), cmd); | |
1232 | return trace_seq_printf(s, "[%s]\n", cmd); | |
1233 | } | |
c71a8961 ACM |
1234 | } |
1235 | ||
157f9c00 ACM |
1236 | static int blk_log_with_error(struct trace_seq *s, |
1237 | const struct trace_entry *ent) | |
c71a8961 | 1238 | { |
66de7792 LZ |
1239 | if (t_action(ent) & BLK_TC_ACT(BLK_TC_PC)) { |
1240 | int ret; | |
1241 | ||
1242 | ret = blk_log_dump_pdu(s, ent); | |
1243 | if (ret) | |
1244 | return trace_seq_printf(s, "[%d]\n", t_error(ent)); | |
1245 | return 0; | |
1246 | } else { | |
1247 | if (t_sec(ent)) | |
1248 | return trace_seq_printf(s, "%llu + %u [%d]\n", | |
1249 | t_sector(ent), | |
1250 | t_sec(ent), t_error(ent)); | |
1251 | return trace_seq_printf(s, "%llu [%d]\n", | |
1252 | t_sector(ent), t_error(ent)); | |
1253 | } | |
c71a8961 ACM |
1254 | } |
1255 | ||
1256 | static int blk_log_remap(struct trace_seq *s, const struct trace_entry *ent) | |
1257 | { | |
a42aaa3b | 1258 | struct blk_io_trace_remap r = { .device_from = 0, }; |
c71a8961 ACM |
1259 | |
1260 | get_pdu_remap(ent, &r); | |
1261 | return trace_seq_printf(s, "%llu + %u <- (%d,%d) %llu\n", | |
a42aaa3b AB |
1262 | t_sector(ent), t_sec(ent), |
1263 | MAJOR(r.device_from), MINOR(r.device_from), | |
1264 | (unsigned long long)r.sector_from); | |
c71a8961 ACM |
1265 | } |
1266 | ||
1267 | static int blk_log_plug(struct trace_seq *s, const struct trace_entry *ent) | |
1268 | { | |
4ca53085 SR |
1269 | char cmd[TASK_COMM_LEN]; |
1270 | ||
1271 | trace_find_cmdline(ent->pid, cmd); | |
1272 | ||
1273 | return trace_seq_printf(s, "[%s]\n", cmd); | |
c71a8961 ACM |
1274 | } |
1275 | ||
1276 | static int blk_log_unplug(struct trace_seq *s, const struct trace_entry *ent) | |
1277 | { | |
4ca53085 SR |
1278 | char cmd[TASK_COMM_LEN]; |
1279 | ||
1280 | trace_find_cmdline(ent->pid, cmd); | |
1281 | ||
1282 | return trace_seq_printf(s, "[%s] %llu\n", cmd, get_pdu_int(ent)); | |
c71a8961 ACM |
1283 | } |
1284 | ||
1285 | static int blk_log_split(struct trace_seq *s, const struct trace_entry *ent) | |
1286 | { | |
4ca53085 SR |
1287 | char cmd[TASK_COMM_LEN]; |
1288 | ||
1289 | trace_find_cmdline(ent->pid, cmd); | |
1290 | ||
c71a8961 | 1291 | return trace_seq_printf(s, "%llu / %llu [%s]\n", t_sector(ent), |
4ca53085 | 1292 | get_pdu_int(ent), cmd); |
c71a8961 ACM |
1293 | } |
1294 | ||
18cea459 LZ |
1295 | static int blk_log_msg(struct trace_seq *s, const struct trace_entry *ent) |
1296 | { | |
1297 | int ret; | |
1298 | const struct blk_io_trace *t = te_blk_io_trace(ent); | |
1299 | ||
1300 | ret = trace_seq_putmem(s, t + 1, t->pdu_len); | |
1301 | if (ret) | |
1302 | return trace_seq_putc(s, '\n'); | |
1303 | return ret; | |
1304 | } | |
1305 | ||
c71a8961 ACM |
1306 | /* |
1307 | * struct tracer operations | |
1308 | */ | |
1309 | ||
1310 | static void blk_tracer_print_header(struct seq_file *m) | |
1311 | { | |
1312 | if (!(blk_tracer_flags.val & TRACE_BLK_OPT_CLASSIC)) | |
1313 | return; | |
1314 | seq_puts(m, "# DEV CPU TIMESTAMP PID ACT FLG\n" | |
1315 | "# | | | | | |\n"); | |
1316 | } | |
1317 | ||
1318 | static void blk_tracer_start(struct trace_array *tr) | |
1319 | { | |
ad5dd549 | 1320 | blk_tracer_enabled = true; |
c71a8961 ACM |
1321 | } |
1322 | ||
1323 | static int blk_tracer_init(struct trace_array *tr) | |
1324 | { | |
1325 | blk_tr = tr; | |
1326 | blk_tracer_start(tr); | |
c71a8961 ACM |
1327 | return 0; |
1328 | } | |
1329 | ||
1330 | static void blk_tracer_stop(struct trace_array *tr) | |
1331 | { | |
ad5dd549 | 1332 | blk_tracer_enabled = false; |
c71a8961 ACM |
1333 | } |
1334 | ||
1335 | static void blk_tracer_reset(struct trace_array *tr) | |
1336 | { | |
c71a8961 ACM |
1337 | blk_tracer_stop(tr); |
1338 | } | |
1339 | ||
e4955c99 | 1340 | static const struct { |
c71a8961 | 1341 | const char *act[2]; |
ef18012b | 1342 | int (*print)(struct trace_seq *s, const struct trace_entry *ent); |
e4955c99 | 1343 | } what2act[] = { |
ef18012b | 1344 | [__BLK_TA_QUEUE] = {{ "Q", "queue" }, blk_log_generic }, |
c71a8961 ACM |
1345 | [__BLK_TA_BACKMERGE] = {{ "M", "backmerge" }, blk_log_generic }, |
1346 | [__BLK_TA_FRONTMERGE] = {{ "F", "frontmerge" }, blk_log_generic }, | |
1347 | [__BLK_TA_GETRQ] = {{ "G", "getrq" }, blk_log_generic }, | |
1348 | [__BLK_TA_SLEEPRQ] = {{ "S", "sleeprq" }, blk_log_generic }, | |
1349 | [__BLK_TA_REQUEUE] = {{ "R", "requeue" }, blk_log_with_error }, | |
1350 | [__BLK_TA_ISSUE] = {{ "D", "issue" }, blk_log_generic }, | |
1351 | [__BLK_TA_COMPLETE] = {{ "C", "complete" }, blk_log_with_error }, | |
1352 | [__BLK_TA_PLUG] = {{ "P", "plug" }, blk_log_plug }, | |
1353 | [__BLK_TA_UNPLUG_IO] = {{ "U", "unplug_io" }, blk_log_unplug }, | |
49cac01e | 1354 | [__BLK_TA_UNPLUG_TIMER] = {{ "UT", "unplug_timer" }, blk_log_unplug }, |
c71a8961 ACM |
1355 | [__BLK_TA_INSERT] = {{ "I", "insert" }, blk_log_generic }, |
1356 | [__BLK_TA_SPLIT] = {{ "X", "split" }, blk_log_split }, | |
1357 | [__BLK_TA_BOUNCE] = {{ "B", "bounce" }, blk_log_generic }, | |
1358 | [__BLK_TA_REMAP] = {{ "A", "remap" }, blk_log_remap }, | |
1359 | }; | |
1360 | ||
b6a4b0c3 LZ |
1361 | static enum print_line_t print_one_line(struct trace_iterator *iter, |
1362 | bool classic) | |
c71a8961 | 1363 | { |
2c9b238e | 1364 | struct trace_seq *s = &iter->seq; |
b6a4b0c3 LZ |
1365 | const struct blk_io_trace *t; |
1366 | u16 what; | |
c71a8961 | 1367 | int ret; |
b6a4b0c3 LZ |
1368 | bool long_act; |
1369 | blk_log_action_t *log_action; | |
c71a8961 | 1370 | |
b6a4b0c3 LZ |
1371 | t = te_blk_io_trace(iter->ent); |
1372 | what = t->action & ((1 << BLK_TC_SHIFT) - 1); | |
1373 | long_act = !!(trace_flags & TRACE_ITER_VERBOSE); | |
1374 | log_action = classic ? &blk_log_action_classic : &blk_log_action; | |
08a06b83 | 1375 | |
18cea459 LZ |
1376 | if (t->action == BLK_TN_MESSAGE) { |
1377 | ret = log_action(iter, long_act ? "message" : "m"); | |
1378 | if (ret) | |
1379 | ret = blk_log_msg(s, iter->ent); | |
1380 | goto out; | |
1381 | } | |
1382 | ||
eb08f8eb | 1383 | if (unlikely(what == 0 || what >= ARRAY_SIZE(what2act))) |
b78825d6 | 1384 | ret = trace_seq_printf(s, "Unknown action %x\n", what); |
c71a8961 | 1385 | else { |
b6a4b0c3 | 1386 | ret = log_action(iter, what2act[what].act[long_act]); |
c71a8961 | 1387 | if (ret) |
2c9b238e | 1388 | ret = what2act[what].print(s, iter->ent); |
c71a8961 | 1389 | } |
18cea459 | 1390 | out: |
c71a8961 ACM |
1391 | return ret ? TRACE_TYPE_HANDLED : TRACE_TYPE_PARTIAL_LINE; |
1392 | } | |
1393 | ||
b6a4b0c3 | 1394 | static enum print_line_t blk_trace_event_print(struct trace_iterator *iter, |
a9a57763 | 1395 | int flags, struct trace_event *event) |
b6a4b0c3 | 1396 | { |
b6a4b0c3 LZ |
1397 | return print_one_line(iter, false); |
1398 | } | |
1399 | ||
08a06b83 ACM |
1400 | static int blk_trace_synthesize_old_trace(struct trace_iterator *iter) |
1401 | { | |
1402 | struct trace_seq *s = &iter->seq; | |
1403 | struct blk_io_trace *t = (struct blk_io_trace *)iter->ent; | |
1404 | const int offset = offsetof(struct blk_io_trace, sector); | |
1405 | struct blk_io_trace old = { | |
1406 | .magic = BLK_IO_TRACE_MAGIC | BLK_IO_TRACE_VERSION, | |
6c051ce0 | 1407 | .time = iter->ts, |
08a06b83 ACM |
1408 | }; |
1409 | ||
1410 | if (!trace_seq_putmem(s, &old, offset)) | |
1411 | return 0; | |
1412 | return trace_seq_putmem(s, &t->sector, | |
1413 | sizeof(old) - offset + t->pdu_len); | |
1414 | } | |
1415 | ||
ae7462b4 | 1416 | static enum print_line_t |
a9a57763 SR |
1417 | blk_trace_event_print_binary(struct trace_iterator *iter, int flags, |
1418 | struct trace_event *event) | |
08a06b83 ACM |
1419 | { |
1420 | return blk_trace_synthesize_old_trace(iter) ? | |
1421 | TRACE_TYPE_HANDLED : TRACE_TYPE_PARTIAL_LINE; | |
1422 | } | |
1423 | ||
c71a8961 ACM |
1424 | static enum print_line_t blk_tracer_print_line(struct trace_iterator *iter) |
1425 | { | |
c71a8961 ACM |
1426 | if (!(blk_tracer_flags.val & TRACE_BLK_OPT_CLASSIC)) |
1427 | return TRACE_TYPE_UNHANDLED; | |
1428 | ||
b6a4b0c3 | 1429 | return print_one_line(iter, true); |
c71a8961 ACM |
1430 | } |
1431 | ||
f3948f88 LZ |
1432 | static int blk_tracer_set_flag(u32 old_flags, u32 bit, int set) |
1433 | { | |
1434 | /* don't output context-info for blk_classic output */ | |
1435 | if (bit == TRACE_BLK_OPT_CLASSIC) { | |
1436 | if (set) | |
1437 | trace_flags &= ~TRACE_ITER_CONTEXT_INFO; | |
1438 | else | |
1439 | trace_flags |= TRACE_ITER_CONTEXT_INFO; | |
1440 | } | |
1441 | return 0; | |
1442 | } | |
1443 | ||
c71a8961 ACM |
1444 | static struct tracer blk_tracer __read_mostly = { |
1445 | .name = "blk", | |
1446 | .init = blk_tracer_init, | |
1447 | .reset = blk_tracer_reset, | |
1448 | .start = blk_tracer_start, | |
1449 | .stop = blk_tracer_stop, | |
1450 | .print_header = blk_tracer_print_header, | |
1451 | .print_line = blk_tracer_print_line, | |
1452 | .flags = &blk_tracer_flags, | |
f3948f88 | 1453 | .set_flag = blk_tracer_set_flag, |
c71a8961 ACM |
1454 | }; |
1455 | ||
a9a57763 | 1456 | static struct trace_event_functions trace_blk_event_funcs = { |
c71a8961 | 1457 | .trace = blk_trace_event_print, |
08a06b83 | 1458 | .binary = blk_trace_event_print_binary, |
c71a8961 ACM |
1459 | }; |
1460 | ||
a9a57763 SR |
1461 | static struct trace_event trace_blk_event = { |
1462 | .type = TRACE_BLK, | |
1463 | .funcs = &trace_blk_event_funcs, | |
1464 | }; | |
1465 | ||
c71a8961 ACM |
1466 | static int __init init_blk_tracer(void) |
1467 | { | |
1468 | if (!register_ftrace_event(&trace_blk_event)) { | |
1469 | pr_warning("Warning: could not register block events\n"); | |
1470 | return 1; | |
1471 | } | |
1472 | ||
1473 | if (register_tracer(&blk_tracer) != 0) { | |
1474 | pr_warning("Warning: could not register the block tracer\n"); | |
1475 | unregister_ftrace_event(&trace_blk_event); | |
1476 | return 1; | |
1477 | } | |
1478 | ||
1479 | return 0; | |
1480 | } | |
1481 | ||
1482 | device_initcall(init_blk_tracer); | |
1483 | ||
1484 | static int blk_trace_remove_queue(struct request_queue *q) | |
1485 | { | |
1486 | struct blk_trace *bt; | |
1487 | ||
1488 | bt = xchg(&q->blk_trace, NULL); | |
1489 | if (bt == NULL) | |
1490 | return -EINVAL; | |
1491 | ||
17ba97e3 LZ |
1492 | if (atomic_dec_and_test(&blk_probes_ref)) |
1493 | blk_unregister_tracepoints(); | |
1494 | ||
ad5dd549 | 1495 | blk_trace_free(bt); |
c71a8961 ACM |
1496 | return 0; |
1497 | } | |
1498 | ||
1499 | /* | |
1500 | * Setup everything required to start tracing | |
1501 | */ | |
9908c309 LZ |
1502 | static int blk_trace_setup_queue(struct request_queue *q, |
1503 | struct block_device *bdev) | |
c71a8961 ACM |
1504 | { |
1505 | struct blk_trace *old_bt, *bt = NULL; | |
18cea459 | 1506 | int ret = -ENOMEM; |
c71a8961 | 1507 | |
c71a8961 ACM |
1508 | bt = kzalloc(sizeof(*bt), GFP_KERNEL); |
1509 | if (!bt) | |
15152e44 | 1510 | return -ENOMEM; |
c71a8961 | 1511 | |
18cea459 LZ |
1512 | bt->msg_data = __alloc_percpu(BLK_TN_MAX_MSG, __alignof__(char)); |
1513 | if (!bt->msg_data) | |
1514 | goto free_bt; | |
1515 | ||
9908c309 | 1516 | bt->dev = bdev->bd_dev; |
c71a8961 | 1517 | bt->act_mask = (u16)-1; |
9908c309 LZ |
1518 | |
1519 | blk_trace_setup_lba(bt, bdev); | |
c71a8961 ACM |
1520 | |
1521 | old_bt = xchg(&q->blk_trace, bt); | |
1522 | if (old_bt != NULL) { | |
1523 | (void)xchg(&q->blk_trace, old_bt); | |
18cea459 LZ |
1524 | ret = -EBUSY; |
1525 | goto free_bt; | |
c71a8961 | 1526 | } |
15152e44 | 1527 | |
17ba97e3 LZ |
1528 | if (atomic_inc_return(&blk_probes_ref) == 1) |
1529 | blk_register_tracepoints(); | |
c71a8961 | 1530 | return 0; |
18cea459 LZ |
1531 | |
1532 | free_bt: | |
1533 | blk_trace_free(bt); | |
1534 | return ret; | |
c71a8961 ACM |
1535 | } |
1536 | ||
1537 | /* | |
1538 | * sysfs interface to enable and configure tracing | |
1539 | */ | |
1540 | ||
c71a8961 ACM |
1541 | static ssize_t sysfs_blk_trace_attr_show(struct device *dev, |
1542 | struct device_attribute *attr, | |
1543 | char *buf); | |
1544 | static ssize_t sysfs_blk_trace_attr_store(struct device *dev, | |
1545 | struct device_attribute *attr, | |
1546 | const char *buf, size_t count); | |
1547 | #define BLK_TRACE_DEVICE_ATTR(_name) \ | |
1548 | DEVICE_ATTR(_name, S_IRUGO | S_IWUSR, \ | |
1549 | sysfs_blk_trace_attr_show, \ | |
1550 | sysfs_blk_trace_attr_store) | |
1551 | ||
cd649b8b | 1552 | static BLK_TRACE_DEVICE_ATTR(enable); |
c71a8961 ACM |
1553 | static BLK_TRACE_DEVICE_ATTR(act_mask); |
1554 | static BLK_TRACE_DEVICE_ATTR(pid); | |
1555 | static BLK_TRACE_DEVICE_ATTR(start_lba); | |
1556 | static BLK_TRACE_DEVICE_ATTR(end_lba); | |
1557 | ||
1558 | static struct attribute *blk_trace_attrs[] = { | |
1559 | &dev_attr_enable.attr, | |
1560 | &dev_attr_act_mask.attr, | |
1561 | &dev_attr_pid.attr, | |
1562 | &dev_attr_start_lba.attr, | |
1563 | &dev_attr_end_lba.attr, | |
1564 | NULL | |
1565 | }; | |
1566 | ||
1567 | struct attribute_group blk_trace_attr_group = { | |
1568 | .name = "trace", | |
1569 | .attrs = blk_trace_attrs, | |
1570 | }; | |
1571 | ||
09341997 LZ |
1572 | static const struct { |
1573 | int mask; | |
1574 | const char *str; | |
1575 | } mask_maps[] = { | |
1576 | { BLK_TC_READ, "read" }, | |
1577 | { BLK_TC_WRITE, "write" }, | |
c09c47ca | 1578 | { BLK_TC_FLUSH, "flush" }, |
09341997 LZ |
1579 | { BLK_TC_SYNC, "sync" }, |
1580 | { BLK_TC_QUEUE, "queue" }, | |
1581 | { BLK_TC_REQUEUE, "requeue" }, | |
1582 | { BLK_TC_ISSUE, "issue" }, | |
1583 | { BLK_TC_COMPLETE, "complete" }, | |
1584 | { BLK_TC_FS, "fs" }, | |
1585 | { BLK_TC_PC, "pc" }, | |
1586 | { BLK_TC_AHEAD, "ahead" }, | |
1587 | { BLK_TC_META, "meta" }, | |
1588 | { BLK_TC_DISCARD, "discard" }, | |
1589 | { BLK_TC_DRV_DATA, "drv_data" }, | |
c09c47ca | 1590 | { BLK_TC_FUA, "fua" }, |
09341997 LZ |
1591 | }; |
1592 | ||
1593 | static int blk_trace_str2mask(const char *str) | |
c71a8961 | 1594 | { |
09341997 | 1595 | int i; |
c71a8961 | 1596 | int mask = 0; |
9eb85125 | 1597 | char *buf, *s, *token; |
c71a8961 | 1598 | |
9eb85125 LZ |
1599 | buf = kstrdup(str, GFP_KERNEL); |
1600 | if (buf == NULL) | |
c71a8961 | 1601 | return -ENOMEM; |
9eb85125 | 1602 | s = strstrip(buf); |
c71a8961 ACM |
1603 | |
1604 | while (1) { | |
09341997 LZ |
1605 | token = strsep(&s, ","); |
1606 | if (token == NULL) | |
c71a8961 ACM |
1607 | break; |
1608 | ||
09341997 LZ |
1609 | if (*token == '\0') |
1610 | continue; | |
1611 | ||
1612 | for (i = 0; i < ARRAY_SIZE(mask_maps); i++) { | |
1613 | if (strcasecmp(token, mask_maps[i].str) == 0) { | |
1614 | mask |= mask_maps[i].mask; | |
1615 | break; | |
1616 | } | |
1617 | } | |
1618 | if (i == ARRAY_SIZE(mask_maps)) { | |
1619 | mask = -EINVAL; | |
1620 | break; | |
1621 | } | |
c71a8961 | 1622 | } |
9eb85125 | 1623 | kfree(buf); |
c71a8961 ACM |
1624 | |
1625 | return mask; | |
1626 | } | |
1627 | ||
09341997 LZ |
1628 | static ssize_t blk_trace_mask2str(char *buf, int mask) |
1629 | { | |
1630 | int i; | |
1631 | char *p = buf; | |
1632 | ||
1633 | for (i = 0; i < ARRAY_SIZE(mask_maps); i++) { | |
1634 | if (mask & mask_maps[i].mask) { | |
1635 | p += sprintf(p, "%s%s", | |
1636 | (p == buf) ? "" : ",", mask_maps[i].str); | |
1637 | } | |
1638 | } | |
1639 | *p++ = '\n'; | |
1640 | ||
1641 | return p - buf; | |
1642 | } | |
1643 | ||
b125130b LZ |
1644 | static struct request_queue *blk_trace_get_queue(struct block_device *bdev) |
1645 | { | |
1646 | if (bdev->bd_disk == NULL) | |
1647 | return NULL; | |
1648 | ||
1649 | return bdev_get_queue(bdev); | |
1650 | } | |
1651 | ||
c71a8961 ACM |
1652 | static ssize_t sysfs_blk_trace_attr_show(struct device *dev, |
1653 | struct device_attribute *attr, | |
1654 | char *buf) | |
1655 | { | |
1656 | struct hd_struct *p = dev_to_part(dev); | |
1657 | struct request_queue *q; | |
1658 | struct block_device *bdev; | |
1659 | ssize_t ret = -ENXIO; | |
1660 | ||
c71a8961 ACM |
1661 | bdev = bdget(part_devt(p)); |
1662 | if (bdev == NULL) | |
01b284f9 | 1663 | goto out; |
c71a8961 | 1664 | |
b125130b | 1665 | q = blk_trace_get_queue(bdev); |
c71a8961 ACM |
1666 | if (q == NULL) |
1667 | goto out_bdput; | |
b125130b | 1668 | |
c71a8961 | 1669 | mutex_lock(&bdev->bd_mutex); |
cd649b8b LZ |
1670 | |
1671 | if (attr == &dev_attr_enable) { | |
1672 | ret = sprintf(buf, "%u\n", !!q->blk_trace); | |
1673 | goto out_unlock_bdev; | |
1674 | } | |
1675 | ||
c71a8961 ACM |
1676 | if (q->blk_trace == NULL) |
1677 | ret = sprintf(buf, "disabled\n"); | |
1678 | else if (attr == &dev_attr_act_mask) | |
09341997 | 1679 | ret = blk_trace_mask2str(buf, q->blk_trace->act_mask); |
c71a8961 ACM |
1680 | else if (attr == &dev_attr_pid) |
1681 | ret = sprintf(buf, "%u\n", q->blk_trace->pid); | |
1682 | else if (attr == &dev_attr_start_lba) | |
1683 | ret = sprintf(buf, "%llu\n", q->blk_trace->start_lba); | |
1684 | else if (attr == &dev_attr_end_lba) | |
1685 | ret = sprintf(buf, "%llu\n", q->blk_trace->end_lba); | |
cd649b8b LZ |
1686 | |
1687 | out_unlock_bdev: | |
c71a8961 ACM |
1688 | mutex_unlock(&bdev->bd_mutex); |
1689 | out_bdput: | |
1690 | bdput(bdev); | |
01b284f9 | 1691 | out: |
c71a8961 ACM |
1692 | return ret; |
1693 | } | |
1694 | ||
1695 | static ssize_t sysfs_blk_trace_attr_store(struct device *dev, | |
1696 | struct device_attribute *attr, | |
1697 | const char *buf, size_t count) | |
1698 | { | |
1699 | struct block_device *bdev; | |
1700 | struct request_queue *q; | |
1701 | struct hd_struct *p; | |
1702 | u64 value; | |
09341997 | 1703 | ssize_t ret = -EINVAL; |
c71a8961 ACM |
1704 | |
1705 | if (count == 0) | |
1706 | goto out; | |
1707 | ||
1708 | if (attr == &dev_attr_act_mask) { | |
1709 | if (sscanf(buf, "%llx", &value) != 1) { | |
1710 | /* Assume it is a list of trace category names */ | |
09341997 LZ |
1711 | ret = blk_trace_str2mask(buf); |
1712 | if (ret < 0) | |
c71a8961 | 1713 | goto out; |
09341997 | 1714 | value = ret; |
c71a8961 ACM |
1715 | } |
1716 | } else if (sscanf(buf, "%llu", &value) != 1) | |
1717 | goto out; | |
1718 | ||
09341997 LZ |
1719 | ret = -ENXIO; |
1720 | ||
c71a8961 ACM |
1721 | p = dev_to_part(dev); |
1722 | bdev = bdget(part_devt(p)); | |
1723 | if (bdev == NULL) | |
01b284f9 | 1724 | goto out; |
c71a8961 | 1725 | |
b125130b | 1726 | q = blk_trace_get_queue(bdev); |
c71a8961 ACM |
1727 | if (q == NULL) |
1728 | goto out_bdput; | |
1729 | ||
1730 | mutex_lock(&bdev->bd_mutex); | |
cd649b8b LZ |
1731 | |
1732 | if (attr == &dev_attr_enable) { | |
1733 | if (value) | |
9908c309 | 1734 | ret = blk_trace_setup_queue(q, bdev); |
cd649b8b LZ |
1735 | else |
1736 | ret = blk_trace_remove_queue(q); | |
1737 | goto out_unlock_bdev; | |
1738 | } | |
1739 | ||
c71a8961 ACM |
1740 | ret = 0; |
1741 | if (q->blk_trace == NULL) | |
9908c309 | 1742 | ret = blk_trace_setup_queue(q, bdev); |
c71a8961 ACM |
1743 | |
1744 | if (ret == 0) { | |
1745 | if (attr == &dev_attr_act_mask) | |
1746 | q->blk_trace->act_mask = value; | |
1747 | else if (attr == &dev_attr_pid) | |
1748 | q->blk_trace->pid = value; | |
1749 | else if (attr == &dev_attr_start_lba) | |
1750 | q->blk_trace->start_lba = value; | |
1751 | else if (attr == &dev_attr_end_lba) | |
1752 | q->blk_trace->end_lba = value; | |
c71a8961 | 1753 | } |
cd649b8b LZ |
1754 | |
1755 | out_unlock_bdev: | |
c71a8961 ACM |
1756 | mutex_unlock(&bdev->bd_mutex); |
1757 | out_bdput: | |
1758 | bdput(bdev); | |
c71a8961 | 1759 | out: |
cd649b8b | 1760 | return ret ? ret : count; |
c71a8961 | 1761 | } |
cd649b8b | 1762 | |
1d54ad6d LZ |
1763 | int blk_trace_init_sysfs(struct device *dev) |
1764 | { | |
1765 | return sysfs_create_group(&dev->kobj, &blk_trace_attr_group); | |
1766 | } | |
1767 | ||
48c0d4d4 ZK |
1768 | void blk_trace_remove_sysfs(struct device *dev) |
1769 | { | |
1770 | sysfs_remove_group(&dev->kobj, &blk_trace_attr_group); | |
1771 | } | |
1772 | ||
55782138 LZ |
1773 | #endif /* CONFIG_BLK_DEV_IO_TRACE */ |
1774 | ||
1775 | #ifdef CONFIG_EVENT_TRACING | |
1776 | ||
1777 | void blk_dump_cmd(char *buf, struct request *rq) | |
1778 | { | |
1779 | int i, end; | |
1780 | int len = rq->cmd_len; | |
1781 | unsigned char *cmd = rq->cmd; | |
1782 | ||
33659ebb | 1783 | if (rq->cmd_type != REQ_TYPE_BLOCK_PC) { |
55782138 LZ |
1784 | buf[0] = '\0'; |
1785 | return; | |
1786 | } | |
1787 | ||
1788 | for (end = len - 1; end >= 0; end--) | |
1789 | if (cmd[end]) | |
1790 | break; | |
1791 | end++; | |
1792 | ||
1793 | for (i = 0; i < len; i++) { | |
1794 | buf += sprintf(buf, "%s%02x", i == 0 ? "" : " ", cmd[i]); | |
1795 | if (i == end && end != len - 1) { | |
1796 | sprintf(buf, " .."); | |
1797 | break; | |
1798 | } | |
1799 | } | |
1800 | } | |
1801 | ||
1802 | void blk_fill_rwbs(char *rwbs, u32 rw, int bytes) | |
1803 | { | |
1804 | int i = 0; | |
1805 | ||
c09c47ca NK |
1806 | if (rw & REQ_FLUSH) |
1807 | rwbs[i++] = 'F'; | |
1808 | ||
55782138 LZ |
1809 | if (rw & WRITE) |
1810 | rwbs[i++] = 'W'; | |
7b6d91da | 1811 | else if (rw & REQ_DISCARD) |
55782138 LZ |
1812 | rwbs[i++] = 'D'; |
1813 | else if (bytes) | |
1814 | rwbs[i++] = 'R'; | |
1815 | else | |
1816 | rwbs[i++] = 'N'; | |
1817 | ||
c09c47ca NK |
1818 | if (rw & REQ_FUA) |
1819 | rwbs[i++] = 'F'; | |
7b6d91da | 1820 | if (rw & REQ_RAHEAD) |
55782138 | 1821 | rwbs[i++] = 'A'; |
7b6d91da | 1822 | if (rw & REQ_SYNC) |
55782138 | 1823 | rwbs[i++] = 'S'; |
7b6d91da | 1824 | if (rw & REQ_META) |
55782138 | 1825 | rwbs[i++] = 'M'; |
8d57a98c AH |
1826 | if (rw & REQ_SECURE) |
1827 | rwbs[i++] = 'E'; | |
55782138 LZ |
1828 | |
1829 | rwbs[i] = '\0'; | |
1830 | } | |
1831 | ||
55782138 LZ |
1832 | #endif /* CONFIG_EVENT_TRACING */ |
1833 |