dm-delay.c 8.1 KB
Newer Older
H
Heinz Mauelshagen 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
/*
 * Copyright (C) 2005-2007 Red Hat GmbH
 *
 * A target that delays reads and/or writes and can send
 * them to different devices.
 *
 * This file is released under the GPL.
 */

#include <linux/module.h>
#include <linux/init.h>
#include <linux/blkdev.h>
#include <linux/bio.h>
#include <linux/slab.h>

16 17
#include <linux/device-mapper.h>

H
Heinz Mauelshagen 已提交
18 19 20 21
#define DM_MSG_PREFIX "delay"

struct delay_c {
	struct timer_list delay_timer;
A
Alasdair G Kergon 已提交
22
	struct mutex timer_lock;
23
	struct workqueue_struct *kdelayd_wq;
H
Heinz Mauelshagen 已提交
24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
	struct work_struct flush_expired_bios;
	struct list_head delayed_bios;
	atomic_t may_delay;

	struct dm_dev *dev_read;
	sector_t start_read;
	unsigned read_delay;
	unsigned reads;

	struct dm_dev *dev_write;
	sector_t start_write;
	unsigned write_delay;
	unsigned writes;
};

A
Alasdair G Kergon 已提交
39
struct dm_delay_info {
H
Heinz Mauelshagen 已提交
40 41 42 43 44 45 46 47 48 49 50
	struct delay_c *context;
	struct list_head list;
	unsigned long expires;
};

static DEFINE_MUTEX(delayed_bios_lock);

static void handle_delayed_timer(unsigned long data)
{
	struct delay_c *dc = (struct delay_c *)data;

51
	queue_work(dc->kdelayd_wq, &dc->flush_expired_bios);
H
Heinz Mauelshagen 已提交
52 53 54 55
}

static void queue_timeout(struct delay_c *dc, unsigned long expires)
{
A
Alasdair G Kergon 已提交
56
	mutex_lock(&dc->timer_lock);
H
Heinz Mauelshagen 已提交
57 58 59 60

	if (!timer_pending(&dc->delay_timer) || expires < dc->delay_timer.expires)
		mod_timer(&dc->delay_timer, expires);

A
Alasdair G Kergon 已提交
61
	mutex_unlock(&dc->timer_lock);
H
Heinz Mauelshagen 已提交
62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77
}

static void flush_bios(struct bio *bio)
{
	struct bio *n;

	while (bio) {
		n = bio->bi_next;
		bio->bi_next = NULL;
		generic_make_request(bio);
		bio = n;
	}
}

static struct bio *flush_delayed_bios(struct delay_c *dc, int flush_all)
{
A
Alasdair G Kergon 已提交
78
	struct dm_delay_info *delayed, *next;
H
Heinz Mauelshagen 已提交
79 80
	unsigned long next_expires = 0;
	int start_timer = 0;
A
Alasdair G Kergon 已提交
81
	struct bio_list flush_bios = { };
H
Heinz Mauelshagen 已提交
82 83 84 85

	mutex_lock(&delayed_bios_lock);
	list_for_each_entry_safe(delayed, next, &dc->delayed_bios, list) {
		if (flush_all || time_after_eq(jiffies, delayed->expires)) {
86 87
			struct bio *bio = dm_bio_from_per_bio_data(delayed,
						sizeof(struct dm_delay_info));
H
Heinz Mauelshagen 已提交
88
			list_del(&delayed->list);
89 90
			bio_list_add(&flush_bios, bio);
			if ((bio_data_dir(bio) == WRITE))
H
Heinz Mauelshagen 已提交
91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130
				delayed->context->writes--;
			else
				delayed->context->reads--;
			continue;
		}

		if (!start_timer) {
			start_timer = 1;
			next_expires = delayed->expires;
		} else
			next_expires = min(next_expires, delayed->expires);
	}

	mutex_unlock(&delayed_bios_lock);

	if (start_timer)
		queue_timeout(dc, next_expires);

	return bio_list_get(&flush_bios);
}

static void flush_expired_bios(struct work_struct *work)
{
	struct delay_c *dc;

	dc = container_of(work, struct delay_c, flush_expired_bios);
	flush_bios(flush_delayed_bios(dc, 0));
}

/*
 * Mapping parameters:
 *    <device> <offset> <delay> [<write_device> <write_offset> <write_delay>]
 *
 * With separate write parameters, the first set is only used for reads.
 * Delays are specified in milliseconds.
 */
static int delay_ctr(struct dm_target *ti, unsigned int argc, char **argv)
{
	struct delay_c *dc;
	unsigned long long tmpll;
131
	char dummy;
132
	int ret;
H
Heinz Mauelshagen 已提交
133 134 135 136 137 138 139 140 141 142 143 144 145 146

	if (argc != 3 && argc != 6) {
		ti->error = "requires exactly 3 or 6 arguments";
		return -EINVAL;
	}

	dc = kmalloc(sizeof(*dc), GFP_KERNEL);
	if (!dc) {
		ti->error = "Cannot allocate context";
		return -ENOMEM;
	}

	dc->reads = dc->writes = 0;

147
	ret = -EINVAL;
148
	if (sscanf(argv[1], "%llu%c", &tmpll, &dummy) != 1) {
H
Heinz Mauelshagen 已提交
149 150 151 152 153
		ti->error = "Invalid device sector";
		goto bad;
	}
	dc->start_read = tmpll;

154
	if (sscanf(argv[2], "%u%c", &dc->read_delay, &dummy) != 1) {
H
Heinz Mauelshagen 已提交
155 156 157 158
		ti->error = "Invalid delay";
		goto bad;
	}

159 160 161
	ret = dm_get_device(ti, argv[0], dm_table_get_mode(ti->table),
			    &dc->dev_read);
	if (ret) {
H
Heinz Mauelshagen 已提交
162 163 164 165
		ti->error = "Device lookup failed";
		goto bad;
	}

166
	ret = -EINVAL;
D
Dmitry Monakhov 已提交
167 168
	dc->dev_write = NULL;
	if (argc == 3)
H
Heinz Mauelshagen 已提交
169 170
		goto out;

171
	if (sscanf(argv[4], "%llu%c", &tmpll, &dummy) != 1) {
H
Heinz Mauelshagen 已提交
172
		ti->error = "Invalid write device sector";
D
Dmitry Monakhov 已提交
173
		goto bad_dev_read;
H
Heinz Mauelshagen 已提交
174 175 176
	}
	dc->start_write = tmpll;

177
	if (sscanf(argv[5], "%u%c", &dc->write_delay, &dummy) != 1) {
H
Heinz Mauelshagen 已提交
178
		ti->error = "Invalid write delay";
D
Dmitry Monakhov 已提交
179
		goto bad_dev_read;
H
Heinz Mauelshagen 已提交
180 181
	}

182 183 184
	ret = dm_get_device(ti, argv[3], dm_table_get_mode(ti->table),
			    &dc->dev_write);
	if (ret) {
H
Heinz Mauelshagen 已提交
185
		ti->error = "Write device lookup failed";
D
Dmitry Monakhov 已提交
186
		goto bad_dev_read;
H
Heinz Mauelshagen 已提交
187 188 189
	}

out:
190
	ret = -EINVAL;
191 192 193 194 195 196
	dc->kdelayd_wq = alloc_workqueue("kdelayd", WQ_MEM_RECLAIM, 0);
	if (!dc->kdelayd_wq) {
		DMERR("Couldn't start kdelayd");
		goto bad_queue;
	}

A
Alasdair G Kergon 已提交
197
	setup_timer(&dc->delay_timer, handle_delayed_timer, (unsigned long)dc);
H
Heinz Mauelshagen 已提交
198 199 200

	INIT_WORK(&dc->flush_expired_bios, flush_expired_bios);
	INIT_LIST_HEAD(&dc->delayed_bios);
A
Alasdair G Kergon 已提交
201
	mutex_init(&dc->timer_lock);
H
Heinz Mauelshagen 已提交
202 203
	atomic_set(&dc->may_delay, 1);

204 205
	ti->num_flush_bios = 1;
	ti->num_discard_bios = 1;
206
	ti->per_bio_data_size = sizeof(struct dm_delay_info);
H
Heinz Mauelshagen 已提交
207 208 209
	ti->private = dc;
	return 0;

210
bad_queue:
D
Dmitry Monakhov 已提交
211 212 213 214
	if (dc->dev_write)
		dm_put_device(ti, dc->dev_write);
bad_dev_read:
	dm_put_device(ti, dc->dev_read);
H
Heinz Mauelshagen 已提交
215 216
bad:
	kfree(dc);
217
	return ret;
H
Heinz Mauelshagen 已提交
218 219 220 221 222 223
}

static void delay_dtr(struct dm_target *ti)
{
	struct delay_c *dc = ti->private;

224
	destroy_workqueue(dc->kdelayd_wq);
H
Heinz Mauelshagen 已提交
225 226 227 228 229 230 231 232 233 234 235

	dm_put_device(ti, dc->dev_read);

	if (dc->dev_write)
		dm_put_device(ti, dc->dev_write);

	kfree(dc);
}

static int delay_bio(struct delay_c *dc, int delay, struct bio *bio)
{
A
Alasdair G Kergon 已提交
236
	struct dm_delay_info *delayed;
H
Heinz Mauelshagen 已提交
237 238 239
	unsigned long expires = 0;

	if (!delay || !atomic_read(&dc->may_delay))
240
		return DM_MAPIO_REMAPPED;
H
Heinz Mauelshagen 已提交
241

242
	delayed = dm_per_bio_data(bio, sizeof(struct dm_delay_info));
H
Heinz Mauelshagen 已提交
243 244

	delayed->context = dc;
245
	delayed->expires = expires = jiffies + msecs_to_jiffies(delay);
H
Heinz Mauelshagen 已提交
246 247 248 249 250 251 252 253 254 255 256 257 258 259

	mutex_lock(&delayed_bios_lock);

	if (bio_data_dir(bio) == WRITE)
		dc->writes++;
	else
		dc->reads++;

	list_add_tail(&delayed->list, &dc->delayed_bios);

	mutex_unlock(&delayed_bios_lock);

	queue_timeout(dc, expires);

260
	return DM_MAPIO_SUBMITTED;
H
Heinz Mauelshagen 已提交
261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278
}

static void delay_presuspend(struct dm_target *ti)
{
	struct delay_c *dc = ti->private;

	atomic_set(&dc->may_delay, 0);
	del_timer_sync(&dc->delay_timer);
	flush_bios(flush_delayed_bios(dc, 1));
}

static void delay_resume(struct dm_target *ti)
{
	struct delay_c *dc = ti->private;

	atomic_set(&dc->may_delay, 1);
}

M
Mikulas Patocka 已提交
279
static int delay_map(struct dm_target *ti, struct bio *bio)
H
Heinz Mauelshagen 已提交
280 281 282 283 284
{
	struct delay_c *dc = ti->private;

	if ((bio_data_dir(bio) == WRITE) && (dc->dev_write)) {
		bio->bi_bdev = dc->dev_write->bdev;
M
Mikulas Patocka 已提交
285
		if (bio_sectors(bio))
286 287
			bio->bi_iter.bi_sector = dc->start_write +
				dm_target_offset(ti, bio->bi_iter.bi_sector);
H
Heinz Mauelshagen 已提交
288 289 290 291 292

		return delay_bio(dc, dc->write_delay, bio);
	}

	bio->bi_bdev = dc->dev_read->bdev;
293 294
	bio->bi_iter.bi_sector = dc->start_read +
		dm_target_offset(ti, bio->bi_iter.bi_sector);
H
Heinz Mauelshagen 已提交
295 296 297 298

	return delay_bio(dc, dc->read_delay, bio);
}

299 300
static void delay_status(struct dm_target *ti, status_type_t type,
			 unsigned status_flags, char *result, unsigned maxlen)
H
Heinz Mauelshagen 已提交
301 302 303 304 305 306 307 308 309 310 311 312 313 314
{
	struct delay_c *dc = ti->private;
	int sz = 0;

	switch (type) {
	case STATUSTYPE_INFO:
		DMEMIT("%u %u", dc->reads, dc->writes);
		break;

	case STATUSTYPE_TABLE:
		DMEMIT("%s %llu %u", dc->dev_read->name,
		       (unsigned long long) dc->start_read,
		       dc->read_delay);
		if (dc->dev_write)
M
Milan Broz 已提交
315
			DMEMIT(" %s %llu %u", dc->dev_write->name,
H
Heinz Mauelshagen 已提交
316 317 318 319 320 321
			       (unsigned long long) dc->start_write,
			       dc->write_delay);
		break;
	}
}

322 323 324 325 326 327
static int delay_iterate_devices(struct dm_target *ti,
				 iterate_devices_callout_fn fn, void *data)
{
	struct delay_c *dc = ti->private;
	int ret = 0;

328
	ret = fn(ti, dc->dev_read, dc->start_read, ti->len, data);
329 330 331 332
	if (ret)
		goto out;

	if (dc->dev_write)
333
		ret = fn(ti, dc->dev_write, dc->start_write, ti->len, data);
334 335 336 337 338

out:
	return ret;
}

H
Heinz Mauelshagen 已提交
339 340
static struct target_type delay_target = {
	.name	     = "delay",
341
	.version     = {1, 2, 1},
H
Heinz Mauelshagen 已提交
342 343 344 345 346 347 348
	.module      = THIS_MODULE,
	.ctr	     = delay_ctr,
	.dtr	     = delay_dtr,
	.map	     = delay_map,
	.presuspend  = delay_presuspend,
	.resume	     = delay_resume,
	.status	     = delay_status,
349
	.iterate_devices = delay_iterate_devices,
H
Heinz Mauelshagen 已提交
350 351 352 353
};

static int __init dm_delay_init(void)
{
354
	int r;
H
Heinz Mauelshagen 已提交
355 356 357 358 359 360 361 362 363 364 365 366 367 368 369

	r = dm_register_target(&delay_target);
	if (r < 0) {
		DMERR("register failed %d", r);
		goto bad_register;
	}

	return 0;

bad_register:
	return r;
}

static void __exit dm_delay_exit(void)
{
370
	dm_unregister_target(&delay_target);
H
Heinz Mauelshagen 已提交
371 372 373 374 375 376 377 378 379
}

/* Module hooks */
module_init(dm_delay_init);
module_exit(dm_delay_exit);

MODULE_DESCRIPTION(DM_NAME " delay target");
MODULE_AUTHOR("Heinz Mauelshagen <mauelshagen@redhat.com>");
MODULE_LICENSE("GPL");