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
	struct delay_c *context;
	struct list_head list;
	unsigned long expires;
};

static DEFINE_MUTEX(delayed_bios_lock);

47
static void handle_delayed_timer(struct timer_list *t)
H
Heinz Mauelshagen 已提交
48
{
49
	struct delay_c *dc = from_timer(dc, t, delay_timer);
H
Heinz Mauelshagen 已提交
50

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
				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.
125
 * Offsets are specified in sectors.
H
Heinz Mauelshagen 已提交
126 127 128 129 130 131
 * 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;
132
	char dummy;
133
	int ret;
H
Heinz Mauelshagen 已提交
134 135

	if (argc != 3 && argc != 6) {
136
		ti->error = "Requires exactly 3 or 6 arguments";
H
Heinz Mauelshagen 已提交
137 138 139 140 141 142 143 144 145 146 147
		return -EINVAL;
	}

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

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

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

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

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

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

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

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

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

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

198
	timer_setup(&dc->delay_timer, handle_delayed_timer, 0);
H
Heinz Mauelshagen 已提交
199 200 201

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

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

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

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

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

	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 已提交
237
	struct dm_delay_info *delayed;
H
Heinz Mauelshagen 已提交
238 239 240
	unsigned long expires = 0;

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

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

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

	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);

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

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 已提交
280
static int delay_map(struct dm_target *ti, struct bio *bio)
H
Heinz Mauelshagen 已提交
281 282 283 284
{
	struct delay_c *dc = ti->private;

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

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

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

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

300 301
static void delay_status(struct dm_target *ti, status_type_t type,
			 unsigned status_flags, char *result, unsigned maxlen)
H
Heinz Mauelshagen 已提交
302 303 304 305 306 307 308 309 310 311 312 313 314 315
{
	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 已提交
316
			DMEMIT(" %s %llu %u", dc->dev_write->name,
H
Heinz Mauelshagen 已提交
317 318 319 320 321 322
			       (unsigned long long) dc->start_write,
			       dc->write_delay);
		break;
	}
}

323 324 325 326 327 328
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;

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

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

out:
	return ret;
}

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

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

	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)
{
372
	dm_unregister_target(&delay_target);
H
Heinz Mauelshagen 已提交
373 374 375 376 377 378 379 380 381
}

/* 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");