blktrace_api.h 3.9 KB
Newer Older
1
/* SPDX-License-Identifier: GPL-2.0 */
2 3 4 5 6
#ifndef BLKTRACE_H
#define BLKTRACE_H

#include <linux/blkdev.h>
#include <linux/relay.h>
7
#include <linux/compat.h>
8
#include <uapi/linux/blktrace_api.h>
9
#include <linux/list.h>
10 11

#if defined(CONFIG_BLK_DEV_IO_TRACE)
12 13 14

#include <linux/sysfs.h>

15 16 17
struct blk_trace {
	int trace_state;
	struct rchan *rchan;
18 19
	unsigned long __percpu *sequence;
	unsigned char __percpu *msg_data;
20 21 22 23 24 25 26
	u16 act_mask;
	u64 start_lba;
	u64 end_lba;
	u32 pid;
	u32 dev;
	struct dentry *dir;
	struct dentry *dropped_file;
27
	struct dentry *msg_file;
28
	struct list_head running_list;
29 30 31
	atomic_t dropped;
};

32 33
struct blkcg;

34
extern int blk_trace_ioctl(struct block_device *, unsigned, char __user *);
35
extern void blk_trace_shutdown(struct request_queue *);
36 37
extern __printf(3, 4)
void __trace_note_message(struct blk_trace *, struct blkcg *blkcg, const char *fmt, ...);
38

39 40 41 42 43 44 45 46 47 48 49 50 51
/**
 * blk_add_trace_msg - Add a (simple) message to the blktrace stream
 * @q:		queue the io is for
 * @fmt:	format to print message in
 * args...	Variable argument list for format
 *
 * Description:
 *     Records a (simple) message onto the blktrace stream.
 *
 *     NOTE: BLK_TN_MAX_MSG characters are output at most.
 *     NOTE: Can not use 'static inline' due to presence of var args...
 *
 **/
52
#define blk_add_cgroup_trace_msg(q, cg, fmt, ...)			\
53
	do {								\
54 55 56 57
		struct blk_trace *bt;					\
									\
		rcu_read_lock();					\
		bt = rcu_dereference((q)->blk_trace);			\
58
		if (unlikely(bt))					\
59
			__trace_note_message(bt, cg, fmt, ##__VA_ARGS__);\
60
		rcu_read_unlock();					\
61
	} while (0)
62 63
#define blk_add_trace_msg(q, fmt, ...)					\
	blk_add_cgroup_trace_msg(q, NULL, fmt, ##__VA_ARGS__)
64
#define BLK_TN_MAX_MSG		128
65

66 67
static inline bool blk_trace_note_message_enabled(struct request_queue *q)
{
68 69 70 71 72 73 74 75
	struct blk_trace *bt;
	bool ret;

	rcu_read_lock();
	bt = rcu_dereference(q->blk_trace);
	ret = bt && (bt->act_mask & BLK_TC_NOTIFY);
	rcu_read_unlock();
	return ret;
76 77
}

78 79
extern void blk_add_driver_data(struct request_queue *q, struct request *rq,
				void *data, size_t len);
80
extern int blk_trace_setup(struct request_queue *q, char *name, dev_t dev,
81
			   struct block_device *bdev,
82
			   char __user *arg);
83 84
extern int blk_trace_startstop(struct request_queue *q, int start);
extern int blk_trace_remove(struct request_queue *q);
85
extern void blk_trace_remove_sysfs(struct device *dev);
86
extern int blk_trace_init_sysfs(struct device *dev);
87

88 89
extern struct attribute_group blk_trace_attr_group;

90
#else /* !CONFIG_BLK_DEV_IO_TRACE */
91 92 93 94 95 96 97
# define blk_trace_ioctl(bdev, cmd, arg)		(-ENOTTY)
# define blk_trace_shutdown(q)				do { } while (0)
# define blk_add_driver_data(q, rq, data, len)		do {} while (0)
# define blk_trace_setup(q, name, dev, bdev, arg)	(-ENOTTY)
# define blk_trace_startstop(q, start)			(-ENOTTY)
# define blk_trace_remove(q)				(-ENOTTY)
# define blk_add_trace_msg(q, fmt, ...)			do { } while (0)
98
# define blk_add_cgroup_trace_msg(q, cg, fmt, ...)	do { } while (0)
99
# define blk_trace_remove_sysfs(dev)			do { } while (0)
100
# define blk_trace_note_message_enabled(q)		(false)
101 102 103 104 105
static inline int blk_trace_init_sysfs(struct device *dev)
{
	return 0;
}

106
#endif /* CONFIG_BLK_DEV_IO_TRACE */
107

108 109 110
#ifdef CONFIG_COMPAT

struct compat_blk_user_trace_setup {
111
	char name[BLKTRACE_BDEV_SIZE];
112 113 114 115 116 117 118 119 120 121 122
	u16 act_mask;
	u32 buf_size;
	u32 buf_nr;
	compat_u64 start_lba;
	compat_u64 end_lba;
	u32 pid;
};
#define BLKTRACESETUP32 _IOWR(0x12, 115, struct compat_blk_user_trace_setup)

#endif

C
Christoph Hellwig 已提交
123
extern void blk_fill_rwbs(char *rwbs, unsigned int op, int bytes);
124

C
Christoph Hellwig 已提交
125
static inline sector_t blk_rq_trace_sector(struct request *rq)
126
{
127 128 129 130 131 132 133
	/*
	 * Tracing should ignore starting sector for passthrough requests and
	 * requests where starting sector didn't get set.
	 */
	if (blk_rq_is_passthrough(rq) || blk_rq_pos(rq) == (sector_t)-1)
		return 0;
	return blk_rq_pos(rq);
134 135
}

C
Christoph Hellwig 已提交
136 137
static inline unsigned int blk_rq_trace_nr_sectors(struct request *rq)
{
138
	return blk_rq_is_passthrough(rq) ? 0 : blk_rq_sectors(rq);
C
Christoph Hellwig 已提交
139
}
140

141
#endif