2 * Copyright (C) 2006 Jens Axboe <axboe@kernel.dk>
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.
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.
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
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>
24 #include <linux/debugfs.h>
25 #include <linux/time.h>
26 #include <asm/uaccess.h>
28 static unsigned int blktrace_seq __read_mostly
= 1;
31 * Send out a notify message.
33 static void trace_note(struct blk_trace
*bt
, pid_t pid
, int action
,
34 const void *data
, size_t len
)
36 struct blk_io_trace
*t
;
38 t
= relay_reserve(bt
->rchan
, sizeof(*t
) + len
);
40 const int cpu
= smp_processor_id();
42 t
->magic
= BLK_IO_TRACE_MAGIC
| BLK_IO_TRACE_VERSION
;
43 t
->time
= ktime_to_ns(ktime_get());
49 memcpy((void *) t
+ sizeof(*t
), data
, len
);
54 * Send out a notify for this process, if we haven't done so since a trace
57 static void trace_note_tsk(struct blk_trace
*bt
, struct task_struct
*tsk
)
59 tsk
->btrace_seq
= blktrace_seq
;
60 trace_note(bt
, tsk
->pid
, BLK_TN_PROCESS
, tsk
->comm
, sizeof(tsk
->comm
));
63 static void trace_note_time(struct blk_trace
*bt
)
70 words
[0] = now
.tv_sec
;
71 words
[1] = now
.tv_nsec
;
73 local_irq_save(flags
);
74 trace_note(bt
, 0, BLK_TN_TIMESTAMP
, words
, sizeof(words
));
75 local_irq_restore(flags
);
78 void __trace_note_message(struct blk_trace
*bt
, const char *fmt
, ...)
85 local_irq_save(flags
);
86 buf
= per_cpu_ptr(bt
->msg_data
, smp_processor_id());
88 n
= vscnprintf(buf
, BLK_TN_MAX_MSG
, fmt
, args
);
91 trace_note(bt
, 0, BLK_TN_MESSAGE
, buf
, n
);
92 local_irq_restore(flags
);
94 EXPORT_SYMBOL_GPL(__trace_note_message
);
96 static int act_log_check(struct blk_trace
*bt
, u32 what
, sector_t sector
,
99 if (((bt
->act_mask
<< BLK_TC_SHIFT
) & what
) == 0)
101 if (sector
< bt
->start_lba
|| sector
> bt
->end_lba
)
103 if (bt
->pid
&& pid
!= bt
->pid
)
110 * Data direction bit lookup
112 static u32 ddir_act
[2] __read_mostly
= { BLK_TC_ACT(BLK_TC_READ
), BLK_TC_ACT(BLK_TC_WRITE
) };
114 /* The ilog2() calls fall out because they're constant */
115 #define MASK_TC_BIT(rw, __name) ( (rw & (1 << BIO_RW_ ## __name)) << \
116 (ilog2(BLK_TC_ ## __name) + BLK_TC_SHIFT - BIO_RW_ ## __name) )
119 * The worker for the various blk_add_trace*() types. Fills out a
120 * blk_io_trace structure and places it in a per-cpu subbuffer.
122 void __blk_add_trace(struct blk_trace
*bt
, sector_t sector
, int bytes
,
123 int rw
, u32 what
, int error
, int pdu_len
, void *pdu_data
)
125 struct task_struct
*tsk
= current
;
126 struct blk_io_trace
*t
;
128 unsigned long *sequence
;
132 if (unlikely(bt
->trace_state
!= Blktrace_running
))
135 what
|= ddir_act
[rw
& WRITE
];
136 what
|= MASK_TC_BIT(rw
, BARRIER
);
137 what
|= MASK_TC_BIT(rw
, SYNC
);
138 what
|= MASK_TC_BIT(rw
, AHEAD
);
139 what
|= MASK_TC_BIT(rw
, META
);
140 what
|= MASK_TC_BIT(rw
, DISCARD
);
143 if (unlikely(act_log_check(bt
, what
, sector
, pid
)))
147 * A word about the locking here - we disable interrupts to reserve
148 * some space in the relay per-cpu buffer, to prevent an irq
149 * from coming in and stepping on our toes.
151 local_irq_save(flags
);
153 if (unlikely(tsk
->btrace_seq
!= blktrace_seq
))
154 trace_note_tsk(bt
, tsk
);
156 t
= relay_reserve(bt
->rchan
, sizeof(*t
) + pdu_len
);
158 cpu
= smp_processor_id();
159 sequence
= per_cpu_ptr(bt
->sequence
, cpu
);
161 t
->magic
= BLK_IO_TRACE_MAGIC
| BLK_IO_TRACE_VERSION
;
162 t
->sequence
= ++(*sequence
);
163 t
->time
= ktime_to_ns(ktime_get());
171 t
->pdu_len
= pdu_len
;
174 memcpy((void *) t
+ sizeof(*t
), pdu_data
, pdu_len
);
177 local_irq_restore(flags
);
180 EXPORT_SYMBOL_GPL(__blk_add_trace
);
182 static struct dentry
*blk_tree_root
;
183 static DEFINE_MUTEX(blk_tree_mutex
);
184 static unsigned int root_users
;
186 static inline void blk_remove_root(void)
189 debugfs_remove(blk_tree_root
);
190 blk_tree_root
= NULL
;
194 static void blk_remove_tree(struct dentry
*dir
)
196 mutex_lock(&blk_tree_mutex
);
198 if (--root_users
== 0)
200 mutex_unlock(&blk_tree_mutex
);
203 static struct dentry
*blk_create_tree(const char *blk_name
)
205 struct dentry
*dir
= NULL
;
208 mutex_lock(&blk_tree_mutex
);
210 if (!blk_tree_root
) {
211 blk_tree_root
= debugfs_create_dir("block", NULL
);
217 dir
= debugfs_create_dir(blk_name
, blk_tree_root
);
221 /* Delete root only if we created it */
227 mutex_unlock(&blk_tree_mutex
);
231 static void blk_trace_cleanup(struct blk_trace
*bt
)
233 relay_close(bt
->rchan
);
234 debugfs_remove(bt
->msg_file
);
235 debugfs_remove(bt
->dropped_file
);
236 blk_remove_tree(bt
->dir
);
237 free_percpu(bt
->sequence
);
238 free_percpu(bt
->msg_data
);
242 int blk_trace_remove(struct request_queue
*q
)
244 struct blk_trace
*bt
;
246 bt
= xchg(&q
->blk_trace
, NULL
);
250 if (bt
->trace_state
== Blktrace_setup
||
251 bt
->trace_state
== Blktrace_stopped
)
252 blk_trace_cleanup(bt
);
256 EXPORT_SYMBOL_GPL(blk_trace_remove
);
258 static int blk_dropped_open(struct inode
*inode
, struct file
*filp
)
260 filp
->private_data
= inode
->i_private
;
265 static ssize_t
blk_dropped_read(struct file
*filp
, char __user
*buffer
,
266 size_t count
, loff_t
*ppos
)
268 struct blk_trace
*bt
= filp
->private_data
;
271 snprintf(buf
, sizeof(buf
), "%u\n", atomic_read(&bt
->dropped
));
273 return simple_read_from_buffer(buffer
, count
, ppos
, buf
, strlen(buf
));
276 static const struct file_operations blk_dropped_fops
= {
277 .owner
= THIS_MODULE
,
278 .open
= blk_dropped_open
,
279 .read
= blk_dropped_read
,
282 static int blk_msg_open(struct inode
*inode
, struct file
*filp
)
284 filp
->private_data
= inode
->i_private
;
289 static ssize_t
blk_msg_write(struct file
*filp
, const char __user
*buffer
,
290 size_t count
, loff_t
*ppos
)
293 struct blk_trace
*bt
;
295 if (count
> BLK_TN_MAX_MSG
)
298 msg
= kmalloc(count
, GFP_KERNEL
);
302 if (copy_from_user(msg
, buffer
, count
)) {
307 bt
= filp
->private_data
;
308 __trace_note_message(bt
, "%s", msg
);
314 static const struct file_operations blk_msg_fops
= {
315 .owner
= THIS_MODULE
,
316 .open
= blk_msg_open
,
317 .write
= blk_msg_write
,
321 * Keep track of how many times we encountered a full subbuffer, to aid
322 * the user space app in telling how many lost events there were.
324 static int blk_subbuf_start_callback(struct rchan_buf
*buf
, void *subbuf
,
325 void *prev_subbuf
, size_t prev_padding
)
327 struct blk_trace
*bt
;
329 if (!relay_buf_full(buf
))
332 bt
= buf
->chan
->private_data
;
333 atomic_inc(&bt
->dropped
);
337 static int blk_remove_buf_file_callback(struct dentry
*dentry
)
339 debugfs_remove(dentry
);
343 static struct dentry
*blk_create_buf_file_callback(const char *filename
,
344 struct dentry
*parent
,
346 struct rchan_buf
*buf
,
349 return debugfs_create_file(filename
, mode
, parent
, buf
,
350 &relay_file_operations
);
353 static struct rchan_callbacks blk_relay_callbacks
= {
354 .subbuf_start
= blk_subbuf_start_callback
,
355 .create_buf_file
= blk_create_buf_file_callback
,
356 .remove_buf_file
= blk_remove_buf_file_callback
,
360 * Setup everything required to start tracing
362 int do_blk_trace_setup(struct request_queue
*q
, char *name
, dev_t dev
,
363 struct blk_user_trace_setup
*buts
)
365 struct blk_trace
*old_bt
, *bt
= NULL
;
366 struct dentry
*dir
= NULL
;
369 if (!buts
->buf_size
|| !buts
->buf_nr
)
372 strncpy(buts
->name
, name
, BLKTRACE_BDEV_SIZE
);
373 buts
->name
[BLKTRACE_BDEV_SIZE
- 1] = '\0';
376 * some device names have larger paths - convert the slashes
377 * to underscores for this to work as expected
379 for (i
= 0; i
< strlen(buts
->name
); i
++)
380 if (buts
->name
[i
] == '/')
384 bt
= kzalloc(sizeof(*bt
), GFP_KERNEL
);
388 bt
->sequence
= alloc_percpu(unsigned long);
392 bt
->msg_data
= __alloc_percpu(BLK_TN_MAX_MSG
);
397 dir
= blk_create_tree(buts
->name
);
403 atomic_set(&bt
->dropped
, 0);
406 bt
->dropped_file
= debugfs_create_file("dropped", 0444, dir
, bt
, &blk_dropped_fops
);
407 if (!bt
->dropped_file
)
410 bt
->msg_file
= debugfs_create_file("msg", 0222, dir
, bt
, &blk_msg_fops
);
414 bt
->rchan
= relay_open("trace", dir
, buts
->buf_size
,
415 buts
->buf_nr
, &blk_relay_callbacks
, bt
);
419 bt
->act_mask
= buts
->act_mask
;
421 bt
->act_mask
= (u16
) -1;
423 bt
->start_lba
= buts
->start_lba
;
424 bt
->end_lba
= buts
->end_lba
;
429 bt
->trace_state
= Blktrace_setup
;
432 old_bt
= xchg(&q
->blk_trace
, bt
);
434 (void) xchg(&q
->blk_trace
, old_bt
);
441 blk_remove_tree(dir
);
444 debugfs_remove(bt
->msg_file
);
445 if (bt
->dropped_file
)
446 debugfs_remove(bt
->dropped_file
);
447 free_percpu(bt
->sequence
);
448 free_percpu(bt
->msg_data
);
450 relay_close(bt
->rchan
);
456 int blk_trace_setup(struct request_queue
*q
, char *name
, dev_t dev
,
459 struct blk_user_trace_setup buts
;
462 ret
= copy_from_user(&buts
, arg
, sizeof(buts
));
466 ret
= do_blk_trace_setup(q
, name
, dev
, &buts
);
470 if (copy_to_user(arg
, &buts
, sizeof(buts
)))
475 EXPORT_SYMBOL_GPL(blk_trace_setup
);
477 int blk_trace_startstop(struct request_queue
*q
, int start
)
479 struct blk_trace
*bt
;
482 if ((bt
= q
->blk_trace
) == NULL
)
486 * For starting a trace, we can transition from a setup or stopped
487 * trace. For stopping a trace, the state must be running
491 if (bt
->trace_state
== Blktrace_setup
||
492 bt
->trace_state
== Blktrace_stopped
) {
495 bt
->trace_state
= Blktrace_running
;
501 if (bt
->trace_state
== Blktrace_running
) {
502 bt
->trace_state
= Blktrace_stopped
;
503 relay_flush(bt
->rchan
);
510 EXPORT_SYMBOL_GPL(blk_trace_startstop
);
513 * blk_trace_ioctl: - handle the ioctls associated with tracing
514 * @bdev: the block device
515 * @cmd: the ioctl cmd
516 * @arg: the argument data, if any
519 int blk_trace_ioctl(struct block_device
*bdev
, unsigned cmd
, char __user
*arg
)
521 struct request_queue
*q
;
523 char b
[BDEVNAME_SIZE
];
525 q
= bdev_get_queue(bdev
);
529 mutex_lock(&bdev
->bd_mutex
);
534 ret
= blk_trace_setup(q
, b
, bdev
->bd_dev
, arg
);
539 ret
= blk_trace_startstop(q
, start
);
541 case BLKTRACETEARDOWN
:
542 ret
= blk_trace_remove(q
);
549 mutex_unlock(&bdev
->bd_mutex
);
554 * blk_trace_shutdown: - stop and cleanup trace structures
555 * @q: the request queue associated with the device
558 void blk_trace_shutdown(struct request_queue
*q
)
561 blk_trace_startstop(q
, 0);