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
) };
115 * Bio action bits of interest
117 static u32 bio_act
[9] __read_mostly
= { 0, BLK_TC_ACT(BLK_TC_BARRIER
), BLK_TC_ACT(BLK_TC_SYNC
), 0, BLK_TC_ACT(BLK_TC_AHEAD
), 0, 0, 0, BLK_TC_ACT(BLK_TC_META
) };
120 * More could be added as needed, taking care to increment the decrementer
121 * to get correct indexing
123 #define trace_barrier_bit(rw) \
124 (((rw) & (1 << BIO_RW_BARRIER)) >> (BIO_RW_BARRIER - 0))
125 #define trace_sync_bit(rw) \
126 (((rw) & (1 << BIO_RW_SYNC)) >> (BIO_RW_SYNC - 1))
127 #define trace_ahead_bit(rw) \
128 (((rw) & (1 << BIO_RW_AHEAD)) << (2 - BIO_RW_AHEAD))
129 #define trace_meta_bit(rw) \
130 (((rw) & (1 << BIO_RW_META)) >> (BIO_RW_META - 3))
133 * The worker for the various blk_add_trace*() types. Fills out a
134 * blk_io_trace structure and places it in a per-cpu subbuffer.
136 void __blk_add_trace(struct blk_trace
*bt
, sector_t sector
, int bytes
,
137 int rw
, u32 what
, int error
, int pdu_len
, void *pdu_data
)
139 struct task_struct
*tsk
= current
;
140 struct blk_io_trace
*t
;
142 unsigned long *sequence
;
146 if (unlikely(bt
->trace_state
!= Blktrace_running
))
149 what
|= ddir_act
[rw
& WRITE
];
150 what
|= bio_act
[trace_barrier_bit(rw
)];
151 what
|= bio_act
[trace_sync_bit(rw
)];
152 what
|= bio_act
[trace_ahead_bit(rw
)];
153 what
|= bio_act
[trace_meta_bit(rw
)];
156 if (unlikely(act_log_check(bt
, what
, sector
, pid
)))
160 * A word about the locking here - we disable interrupts to reserve
161 * some space in the relay per-cpu buffer, to prevent an irq
162 * from coming in and stepping on our toes.
164 local_irq_save(flags
);
166 if (unlikely(tsk
->btrace_seq
!= blktrace_seq
))
167 trace_note_tsk(bt
, tsk
);
169 t
= relay_reserve(bt
->rchan
, sizeof(*t
) + pdu_len
);
171 cpu
= smp_processor_id();
172 sequence
= per_cpu_ptr(bt
->sequence
, cpu
);
174 t
->magic
= BLK_IO_TRACE_MAGIC
| BLK_IO_TRACE_VERSION
;
175 t
->sequence
= ++(*sequence
);
176 t
->time
= ktime_to_ns(ktime_get());
184 t
->pdu_len
= pdu_len
;
187 memcpy((void *) t
+ sizeof(*t
), pdu_data
, pdu_len
);
190 local_irq_restore(flags
);
193 EXPORT_SYMBOL_GPL(__blk_add_trace
);
195 static struct dentry
*blk_tree_root
;
196 static DEFINE_MUTEX(blk_tree_mutex
);
197 static unsigned int root_users
;
199 static inline void blk_remove_root(void)
202 debugfs_remove(blk_tree_root
);
203 blk_tree_root
= NULL
;
207 static void blk_remove_tree(struct dentry
*dir
)
209 mutex_lock(&blk_tree_mutex
);
211 if (--root_users
== 0)
213 mutex_unlock(&blk_tree_mutex
);
216 static struct dentry
*blk_create_tree(const char *blk_name
)
218 struct dentry
*dir
= NULL
;
221 mutex_lock(&blk_tree_mutex
);
223 if (!blk_tree_root
) {
224 blk_tree_root
= debugfs_create_dir("block", NULL
);
230 dir
= debugfs_create_dir(blk_name
, blk_tree_root
);
234 /* Delete root only if we created it */
240 mutex_unlock(&blk_tree_mutex
);
244 static void blk_trace_cleanup(struct blk_trace
*bt
)
246 relay_close(bt
->rchan
);
247 debugfs_remove(bt
->dropped_file
);
248 blk_remove_tree(bt
->dir
);
249 free_percpu(bt
->sequence
);
250 free_percpu(bt
->msg_data
);
254 int blk_trace_remove(struct request_queue
*q
)
256 struct blk_trace
*bt
;
258 bt
= xchg(&q
->blk_trace
, NULL
);
262 if (bt
->trace_state
== Blktrace_setup
||
263 bt
->trace_state
== Blktrace_stopped
)
264 blk_trace_cleanup(bt
);
268 EXPORT_SYMBOL_GPL(blk_trace_remove
);
270 static int blk_dropped_open(struct inode
*inode
, struct file
*filp
)
272 filp
->private_data
= inode
->i_private
;
277 static ssize_t
blk_dropped_read(struct file
*filp
, char __user
*buffer
,
278 size_t count
, loff_t
*ppos
)
280 struct blk_trace
*bt
= filp
->private_data
;
283 snprintf(buf
, sizeof(buf
), "%u\n", atomic_read(&bt
->dropped
));
285 return simple_read_from_buffer(buffer
, count
, ppos
, buf
, strlen(buf
));
288 static const struct file_operations blk_dropped_fops
= {
289 .owner
= THIS_MODULE
,
290 .open
= blk_dropped_open
,
291 .read
= blk_dropped_read
,
295 * Keep track of how many times we encountered a full subbuffer, to aid
296 * the user space app in telling how many lost events there were.
298 static int blk_subbuf_start_callback(struct rchan_buf
*buf
, void *subbuf
,
299 void *prev_subbuf
, size_t prev_padding
)
301 struct blk_trace
*bt
;
303 if (!relay_buf_full(buf
))
306 bt
= buf
->chan
->private_data
;
307 atomic_inc(&bt
->dropped
);
311 static int blk_remove_buf_file_callback(struct dentry
*dentry
)
313 debugfs_remove(dentry
);
317 static struct dentry
*blk_create_buf_file_callback(const char *filename
,
318 struct dentry
*parent
,
320 struct rchan_buf
*buf
,
323 return debugfs_create_file(filename
, mode
, parent
, buf
,
324 &relay_file_operations
);
327 static struct rchan_callbacks blk_relay_callbacks
= {
328 .subbuf_start
= blk_subbuf_start_callback
,
329 .create_buf_file
= blk_create_buf_file_callback
,
330 .remove_buf_file
= blk_remove_buf_file_callback
,
334 * Setup everything required to start tracing
336 int do_blk_trace_setup(struct request_queue
*q
, char *name
, dev_t dev
,
337 struct blk_user_trace_setup
*buts
)
339 struct blk_trace
*old_bt
, *bt
= NULL
;
340 struct dentry
*dir
= NULL
;
343 if (!buts
->buf_size
|| !buts
->buf_nr
)
346 strcpy(buts
->name
, name
);
349 * some device names have larger paths - convert the slashes
350 * to underscores for this to work as expected
352 for (i
= 0; i
< strlen(buts
->name
); i
++)
353 if (buts
->name
[i
] == '/')
357 bt
= kzalloc(sizeof(*bt
), GFP_KERNEL
);
361 bt
->sequence
= alloc_percpu(unsigned long);
365 bt
->msg_data
= __alloc_percpu(BLK_TN_MAX_MSG
);
370 dir
= blk_create_tree(buts
->name
);
376 atomic_set(&bt
->dropped
, 0);
379 bt
->dropped_file
= debugfs_create_file("dropped", 0444, dir
, bt
, &blk_dropped_fops
);
380 if (!bt
->dropped_file
)
383 bt
->rchan
= relay_open("trace", dir
, buts
->buf_size
,
384 buts
->buf_nr
, &blk_relay_callbacks
, bt
);
388 bt
->act_mask
= buts
->act_mask
;
390 bt
->act_mask
= (u16
) -1;
392 bt
->start_lba
= buts
->start_lba
;
393 bt
->end_lba
= buts
->end_lba
;
398 bt
->trace_state
= Blktrace_setup
;
401 old_bt
= xchg(&q
->blk_trace
, bt
);
403 (void) xchg(&q
->blk_trace
, old_bt
);
410 blk_remove_tree(dir
);
412 if (bt
->dropped_file
)
413 debugfs_remove(bt
->dropped_file
);
414 free_percpu(bt
->sequence
);
415 free_percpu(bt
->msg_data
);
417 relay_close(bt
->rchan
);
423 int blk_trace_setup(struct request_queue
*q
, char *name
, dev_t dev
,
426 struct blk_user_trace_setup buts
;
429 ret
= copy_from_user(&buts
, arg
, sizeof(buts
));
433 ret
= do_blk_trace_setup(q
, name
, dev
, &buts
);
437 if (copy_to_user(arg
, &buts
, sizeof(buts
)))
442 EXPORT_SYMBOL_GPL(blk_trace_setup
);
444 int blk_trace_startstop(struct request_queue
*q
, int start
)
446 struct blk_trace
*bt
;
449 if ((bt
= q
->blk_trace
) == NULL
)
453 * For starting a trace, we can transition from a setup or stopped
454 * trace. For stopping a trace, the state must be running
458 if (bt
->trace_state
== Blktrace_setup
||
459 bt
->trace_state
== Blktrace_stopped
) {
462 bt
->trace_state
= Blktrace_running
;
468 if (bt
->trace_state
== Blktrace_running
) {
469 bt
->trace_state
= Blktrace_stopped
;
470 relay_flush(bt
->rchan
);
477 EXPORT_SYMBOL_GPL(blk_trace_startstop
);
480 * blk_trace_ioctl: - handle the ioctls associated with tracing
481 * @bdev: the block device
482 * @cmd: the ioctl cmd
483 * @arg: the argument data, if any
486 int blk_trace_ioctl(struct block_device
*bdev
, unsigned cmd
, char __user
*arg
)
488 struct request_queue
*q
;
490 char b
[BDEVNAME_SIZE
];
492 q
= bdev_get_queue(bdev
);
496 mutex_lock(&bdev
->bd_mutex
);
501 ret
= blk_trace_setup(q
, b
, bdev
->bd_dev
, arg
);
506 ret
= blk_trace_startstop(q
, start
);
508 case BLKTRACETEARDOWN
:
509 ret
= blk_trace_remove(q
);
516 mutex_unlock(&bdev
->bd_mutex
);
521 * blk_trace_shutdown: - stop and cleanup trace structures
522 * @q: the request queue associated with the device
525 void blk_trace_shutdown(struct request_queue
*q
)
528 blk_trace_startstop(q
, 0);