blob: 094c8f0e00972f837d3bad2333026a46093c582d [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Copyright (C) 2003 Sistina Software
Heinz Mauelshagenb7fd54a2008-04-24 21:43:06 +01003 * Copyright (C) 2004-2008 Red Hat, Inc. All rights reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
5 * This file is released under the LGPL.
6 */
7
8#include <linux/init.h>
9#include <linux/slab.h>
10#include <linux/module.h>
11#include <linux/vmalloc.h>
Alasdair G Kergona765e202008-04-24 22:02:01 +010012#include <linux/dm-io.h>
13#include <linux/dm-dirty-log.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014
Mikulas Patocka586e80e2008-10-21 17:44:59 +010015#include <linux/device-mapper.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016
Heinz Mauelshagenb7fd54a2008-04-24 21:43:06 +010017#define DM_MSG_PREFIX "dirty region log"
Alasdair G Kergon72d94862006-06-26 00:27:35 -070018
Jonathan Brassow2a23aa12008-04-24 21:43:41 +010019struct dm_dirty_log_internal {
20 struct dm_dirty_log_type *type;
21
22 struct list_head list;
Jonathan Brassow2a23aa12008-04-24 21:43:41 +010023};
24
Linus Torvalds1da177e2005-04-16 15:20:36 -070025static LIST_HEAD(_log_types);
26static DEFINE_SPINLOCK(_lock);
27
Jonathan Brassow2a23aa12008-04-24 21:43:41 +010028static struct dm_dirty_log_internal *__find_dirty_log_type(const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -070029{
Jonathan Brassow2a23aa12008-04-24 21:43:41 +010030 struct dm_dirty_log_internal *log_type;
31
32 list_for_each_entry(log_type, &_log_types, list)
33 if (!strcmp(name, log_type->type->name))
34 return log_type;
35
36 return NULL;
37}
38
39static struct dm_dirty_log_internal *_get_dirty_log_type(const char *name)
40{
41 struct dm_dirty_log_internal *log_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
43 spin_lock(&_lock);
Jonathan Brassow2a23aa12008-04-24 21:43:41 +010044
45 log_type = __find_dirty_log_type(name);
Mike Snitzer84e67c92009-04-02 19:55:29 +010046 if (log_type && !try_module_get(log_type->type->module))
47 log_type = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
49 spin_unlock(&_lock);
Jonathan Brassow2a23aa12008-04-24 21:43:41 +010050
51 return log_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -070052}
53
Jonathan Brassowfb8b2842008-02-08 02:11:19 +000054/*
55 * get_type
56 * @type_name
57 *
Jonathan Brassow2a23aa12008-04-24 21:43:41 +010058 * Attempt to retrieve the dm_dirty_log_type by name. If not already
Jonathan Brassowfb8b2842008-02-08 02:11:19 +000059 * available, attempt to load the appropriate module.
60 *
61 * Log modules are named "dm-log-" followed by the 'type_name'.
62 * Modules may contain multiple types.
63 * This function will first try the module "dm-log-<type_name>",
64 * then truncate 'type_name' on the last '-' and try again.
65 *
66 * For example, if type_name was "clustered-disk", it would search
67 * 'dm-log-clustered-disk' then 'dm-log-clustered'.
68 *
69 * Returns: dirty_log_type* on success, NULL on failure
70 */
Heinz Mauelshagen416cd172008-04-24 21:43:35 +010071static struct dm_dirty_log_type *get_type(const char *type_name)
Jonathan Brassowfb8b2842008-02-08 02:11:19 +000072{
73 char *p, *type_name_dup;
Jonathan Brassow2a23aa12008-04-24 21:43:41 +010074 struct dm_dirty_log_internal *log_type;
Jonathan Brassowfb8b2842008-02-08 02:11:19 +000075
Jonathan Brassow2a23aa12008-04-24 21:43:41 +010076 if (!type_name)
77 return NULL;
78
79 log_type = _get_dirty_log_type(type_name);
80 if (log_type)
81 return log_type->type;
Jonathan Brassowfb8b2842008-02-08 02:11:19 +000082
83 type_name_dup = kstrdup(type_name, GFP_KERNEL);
84 if (!type_name_dup) {
85 DMWARN("No memory left to attempt log module load for \"%s\"",
86 type_name);
87 return NULL;
88 }
89
90 while (request_module("dm-log-%s", type_name_dup) ||
Jonathan Brassow2a23aa12008-04-24 21:43:41 +010091 !(log_type = _get_dirty_log_type(type_name))) {
Jonathan Brassowfb8b2842008-02-08 02:11:19 +000092 p = strrchr(type_name_dup, '-');
93 if (!p)
94 break;
95 p[0] = '\0';
96 }
97
Jonathan Brassow2a23aa12008-04-24 21:43:41 +010098 if (!log_type)
Jonathan Brassowfb8b2842008-02-08 02:11:19 +000099 DMWARN("Module for logging type \"%s\" not found.", type_name);
100
101 kfree(type_name_dup);
102
Jonathan Brassow2a23aa12008-04-24 21:43:41 +0100103 return log_type ? log_type->type : NULL;
Jonathan Brassowfb8b2842008-02-08 02:11:19 +0000104}
105
Heinz Mauelshagen416cd172008-04-24 21:43:35 +0100106static void put_type(struct dm_dirty_log_type *type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107{
Jonathan Brassow2a23aa12008-04-24 21:43:41 +0100108 struct dm_dirty_log_internal *log_type;
109
110 if (!type)
111 return;
112
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 spin_lock(&_lock);
Jonathan Brassow2a23aa12008-04-24 21:43:41 +0100114 log_type = __find_dirty_log_type(type->name);
115 if (!log_type)
116 goto out;
117
Mike Snitzer84e67c92009-04-02 19:55:29 +0100118 module_put(type->module);
Jonathan Brassow2a23aa12008-04-24 21:43:41 +0100119
120out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 spin_unlock(&_lock);
122}
123
Jonathan Brassow2a23aa12008-04-24 21:43:41 +0100124static struct dm_dirty_log_internal *_alloc_dirty_log_type(struct dm_dirty_log_type *type)
125{
126 struct dm_dirty_log_internal *log_type = kzalloc(sizeof(*log_type),
127 GFP_KERNEL);
128
129 if (log_type)
130 log_type->type = type;
131
132 return log_type;
133}
134
Alasdair G Kergonb8206bc2008-04-24 21:43:38 +0100135int dm_dirty_log_type_register(struct dm_dirty_log_type *type)
136{
Jonathan Brassow2a23aa12008-04-24 21:43:41 +0100137 struct dm_dirty_log_internal *log_type = _alloc_dirty_log_type(type);
138 int r = 0;
139
140 if (!log_type)
141 return -ENOMEM;
142
Alasdair G Kergonb8206bc2008-04-24 21:43:38 +0100143 spin_lock(&_lock);
Jonathan Brassow2a23aa12008-04-24 21:43:41 +0100144 if (!__find_dirty_log_type(type->name))
145 list_add(&log_type->list, &_log_types);
146 else {
147 kfree(log_type);
148 r = -EEXIST;
149 }
Alasdair G Kergonb8206bc2008-04-24 21:43:38 +0100150 spin_unlock(&_lock);
151
Jonathan Brassow2a23aa12008-04-24 21:43:41 +0100152 return r;
Alasdair G Kergonb8206bc2008-04-24 21:43:38 +0100153}
154EXPORT_SYMBOL(dm_dirty_log_type_register);
155
156int dm_dirty_log_type_unregister(struct dm_dirty_log_type *type)
157{
Jonathan Brassow2a23aa12008-04-24 21:43:41 +0100158 struct dm_dirty_log_internal *log_type;
159
Alasdair G Kergonb8206bc2008-04-24 21:43:38 +0100160 spin_lock(&_lock);
161
Jonathan Brassow2a23aa12008-04-24 21:43:41 +0100162 log_type = __find_dirty_log_type(type->name);
163 if (!log_type) {
164 spin_unlock(&_lock);
165 return -EINVAL;
166 }
167
Jonathan Brassow2a23aa12008-04-24 21:43:41 +0100168 list_del(&log_type->list);
Alasdair G Kergonb8206bc2008-04-24 21:43:38 +0100169
170 spin_unlock(&_lock);
Jonathan Brassow2a23aa12008-04-24 21:43:41 +0100171 kfree(log_type);
Alasdair G Kergonb8206bc2008-04-24 21:43:38 +0100172
173 return 0;
174}
175EXPORT_SYMBOL(dm_dirty_log_type_unregister);
176
Heinz Mauelshagen416cd172008-04-24 21:43:35 +0100177struct dm_dirty_log *dm_dirty_log_create(const char *type_name,
178 struct dm_target *ti,
179 unsigned int argc, char **argv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180{
Heinz Mauelshagen416cd172008-04-24 21:43:35 +0100181 struct dm_dirty_log_type *type;
182 struct dm_dirty_log *log;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183
184 log = kmalloc(sizeof(*log), GFP_KERNEL);
185 if (!log)
186 return NULL;
187
188 type = get_type(type_name);
189 if (!type) {
190 kfree(log);
191 return NULL;
192 }
193
194 log->type = type;
195 if (type->ctr(log, ti, argc, argv)) {
196 kfree(log);
197 put_type(type);
198 return NULL;
199 }
200
201 return log;
202}
Heinz Mauelshagen416cd172008-04-24 21:43:35 +0100203EXPORT_SYMBOL(dm_dirty_log_create);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204
Heinz Mauelshagen416cd172008-04-24 21:43:35 +0100205void dm_dirty_log_destroy(struct dm_dirty_log *log)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206{
207 log->type->dtr(log);
208 put_type(log->type);
209 kfree(log);
210}
Heinz Mauelshagen416cd172008-04-24 21:43:35 +0100211EXPORT_SYMBOL(dm_dirty_log_destroy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212
213/*-----------------------------------------------------------------
214 * Persistent and core logs share a lot of their implementation.
215 * FIXME: need a reload method to be called from a resume
216 *---------------------------------------------------------------*/
217/*
218 * Magic for persistent mirrors: "MiRr"
219 */
220#define MIRROR_MAGIC 0x4D695272
221
222/*
223 * The on-disk version of the metadata.
224 */
Patrick Caulfielda4fc4712006-02-01 03:04:51 -0800225#define MIRROR_DISK_VERSION 2
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226#define LOG_OFFSET 2
227
228struct log_header {
229 uint32_t magic;
230
231 /*
232 * Simple, incrementing version. no backward
233 * compatibility.
234 */
235 uint32_t version;
236 sector_t nr_regions;
237};
238
239struct log_c {
240 struct dm_target *ti;
241 int touched;
242 uint32_t region_size;
243 unsigned int region_count;
244 region_t sync_count;
245
246 unsigned bitset_uint32_count;
247 uint32_t *clean_bits;
248 uint32_t *sync_bits;
249 uint32_t *recovering_bits; /* FIXME: this seems excessive */
250
251 int sync_search;
252
253 /* Resync flag */
254 enum sync {
255 DEFAULTSYNC, /* Synchronize if necessary */
256 NOSYNC, /* Devices known to be already in sync */
257 FORCESYNC, /* Force a sync to happen */
258 } sync;
259
Heinz Mauelshagen5d234d12007-05-09 02:33:03 -0700260 struct dm_io_request io_req;
261
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 /*
263 * Disk log fields
264 */
Jonathan E Brassow01d03a62007-05-09 02:32:57 -0700265 int log_dev_failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 struct dm_dev *log_dev;
267 struct log_header header;
268
Heinz Mauelshagen22a1ceb2008-04-24 21:43:17 +0100269 struct dm_io_region header_location;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 struct log_header *disk_header;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271};
272
273/*
274 * The touched member needs to be updated every time we access
275 * one of the bitsets.
276 */
Heinz Mauelshagen416cd172008-04-24 21:43:35 +0100277static inline int log_test_bit(uint32_t *bs, unsigned bit)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278{
Patrick Caulfielda4fc4712006-02-01 03:04:51 -0800279 return ext2_test_bit(bit, (unsigned long *) bs) ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280}
281
282static inline void log_set_bit(struct log_c *l,
283 uint32_t *bs, unsigned bit)
284{
Patrick Caulfielda4fc4712006-02-01 03:04:51 -0800285 ext2_set_bit(bit, (unsigned long *) bs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 l->touched = 1;
287}
288
289static inline void log_clear_bit(struct log_c *l,
290 uint32_t *bs, unsigned bit)
291{
Patrick Caulfielda4fc4712006-02-01 03:04:51 -0800292 ext2_clear_bit(bit, (unsigned long *) bs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 l->touched = 1;
294}
295
296/*----------------------------------------------------------------
297 * Header IO
298 *--------------------------------------------------------------*/
299static void header_to_disk(struct log_header *core, struct log_header *disk)
300{
301 disk->magic = cpu_to_le32(core->magic);
302 disk->version = cpu_to_le32(core->version);
303 disk->nr_regions = cpu_to_le64(core->nr_regions);
304}
305
306static void header_from_disk(struct log_header *core, struct log_header *disk)
307{
308 core->magic = le32_to_cpu(disk->magic);
309 core->version = le32_to_cpu(disk->version);
310 core->nr_regions = le64_to_cpu(disk->nr_regions);
311}
312
Heinz Mauelshagen5d234d12007-05-09 02:33:03 -0700313static int rw_header(struct log_c *lc, int rw)
314{
315 lc->io_req.bi_rw = rw;
Heinz Mauelshagen5d234d12007-05-09 02:33:03 -0700316
317 return dm_io(&lc->io_req, 1, &lc->header_location, NULL);
318}
319
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320static int read_header(struct log_c *log)
321{
322 int r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323
Heinz Mauelshagen5d234d12007-05-09 02:33:03 -0700324 r = rw_header(log, READ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 if (r)
326 return r;
327
328 header_from_disk(&log->header, log->disk_header);
329
330 /* New log required? */
331 if (log->sync != DEFAULTSYNC || log->header.magic != MIRROR_MAGIC) {
332 log->header.magic = MIRROR_MAGIC;
333 log->header.version = MIRROR_DISK_VERSION;
334 log->header.nr_regions = 0;
335 }
336
Patrick Caulfielda4fc4712006-02-01 03:04:51 -0800337#ifdef __LITTLE_ENDIAN
338 if (log->header.version == 1)
339 log->header.version = 2;
340#endif
341
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 if (log->header.version != MIRROR_DISK_VERSION) {
343 DMWARN("incompatible disk log version");
344 return -EINVAL;
345 }
346
347 return 0;
348}
349
Milan Broz2045e882009-01-06 03:05:01 +0000350static int _check_region_size(struct dm_target *ti, uint32_t region_size)
351{
352 if (region_size < 2 || region_size > ti->len)
353 return 0;
354
355 if (!is_power_of_2(region_size))
356 return 0;
357
358 return 1;
359}
360
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361/*----------------------------------------------------------------
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 * core log constructor/destructor
363 *
364 * argv contains region_size followed optionally by [no]sync
365 *--------------------------------------------------------------*/
366#define BYTE_SHIFT 3
Heinz Mauelshagen416cd172008-04-24 21:43:35 +0100367static int create_log_context(struct dm_dirty_log *log, struct dm_target *ti,
Alasdair G Kergonb7cca192006-06-26 00:27:29 -0700368 unsigned int argc, char **argv,
369 struct dm_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370{
371 enum sync sync = DEFAULTSYNC;
372
373 struct log_c *lc;
374 uint32_t region_size;
375 unsigned int region_count;
Alasdair G Kergonb7cca192006-06-26 00:27:29 -0700376 size_t bitset_size, buf_size;
Heinz Mauelshagen5d234d12007-05-09 02:33:03 -0700377 int r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378
379 if (argc < 1 || argc > 2) {
Heinz Mauelshagenb7fd54a2008-04-24 21:43:06 +0100380 DMWARN("wrong number of arguments to dirty region log");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 return -EINVAL;
382 }
383
384 if (argc > 1) {
385 if (!strcmp(argv[1], "sync"))
386 sync = FORCESYNC;
387 else if (!strcmp(argv[1], "nosync"))
388 sync = NOSYNC;
389 else {
Heinz Mauelshagenb7fd54a2008-04-24 21:43:06 +0100390 DMWARN("unrecognised sync argument to "
391 "dirty region log: %s", argv[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 return -EINVAL;
393 }
394 }
395
Milan Broz2045e882009-01-06 03:05:01 +0000396 if (sscanf(argv[0], "%u", &region_size) != 1 ||
397 !_check_region_size(ti, region_size)) {
398 DMWARN("invalid region size %s", argv[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 return -EINVAL;
400 }
401
402 region_count = dm_sector_div_up(ti->len, region_size);
403
404 lc = kmalloc(sizeof(*lc), GFP_KERNEL);
405 if (!lc) {
406 DMWARN("couldn't allocate core log");
407 return -ENOMEM;
408 }
409
410 lc->ti = ti;
411 lc->touched = 0;
412 lc->region_size = region_size;
413 lc->region_count = region_count;
414 lc->sync = sync;
415
416 /*
Alasdair G Kergon0e568222005-11-21 21:32:34 -0800417 * Work out how many "unsigned long"s we need to hold the bitset.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 */
419 bitset_size = dm_round_up(region_count,
Alasdair G Kergon29121bd2006-06-26 00:27:29 -0700420 sizeof(*lc->clean_bits) << BYTE_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 bitset_size >>= BYTE_SHIFT;
422
Alasdair G Kergon29121bd2006-06-26 00:27:29 -0700423 lc->bitset_uint32_count = bitset_size / sizeof(*lc->clean_bits);
Alasdair G Kergonb7cca192006-06-26 00:27:29 -0700424
425 /*
426 * Disk log?
427 */
428 if (!dev) {
429 lc->clean_bits = vmalloc(bitset_size);
430 if (!lc->clean_bits) {
431 DMWARN("couldn't allocate clean bitset");
432 kfree(lc);
433 return -ENOMEM;
434 }
435 lc->disk_header = NULL;
436 } else {
437 lc->log_dev = dev;
Jonathan E Brassow01d03a62007-05-09 02:32:57 -0700438 lc->log_dev_failed = 0;
Alasdair G Kergonb7cca192006-06-26 00:27:29 -0700439 lc->header_location.bdev = lc->log_dev->bdev;
440 lc->header_location.sector = 0;
441
442 /*
443 * Buffer holds both header and bitset.
444 */
445 buf_size = dm_round_up((LOG_OFFSET << SECTOR_SHIFT) +
446 bitset_size, ti->limits.hardsect_size);
Milan Brozac1f0ac2009-01-06 03:05:02 +0000447
448 if (buf_size > dev->bdev->bd_inode->i_size) {
449 DMWARN("log device %s too small: need %llu bytes",
450 dev->name, (unsigned long long)buf_size);
451 kfree(lc);
452 return -EINVAL;
453 }
454
Alasdair G Kergonb7cca192006-06-26 00:27:29 -0700455 lc->header_location.count = buf_size >> SECTOR_SHIFT;
Takahiro Yasui6f3af012009-01-06 03:04:59 +0000456
Heinz Mauelshagen5d234d12007-05-09 02:33:03 -0700457 lc->io_req.mem.type = DM_IO_VMA;
Takahiro Yasui6f3af012009-01-06 03:04:59 +0000458 lc->io_req.notify.fn = NULL;
Heinz Mauelshagen5d234d12007-05-09 02:33:03 -0700459 lc->io_req.client = dm_io_client_create(dm_div_up(buf_size,
460 PAGE_SIZE));
461 if (IS_ERR(lc->io_req.client)) {
462 r = PTR_ERR(lc->io_req.client);
463 DMWARN("couldn't allocate disk io client");
464 kfree(lc);
465 return -ENOMEM;
466 }
Alasdair G Kergonb7cca192006-06-26 00:27:29 -0700467
468 lc->disk_header = vmalloc(buf_size);
469 if (!lc->disk_header) {
470 DMWARN("couldn't allocate disk log buffer");
Takahiro Yasuic7a2bd12009-01-06 03:04:56 +0000471 dm_io_client_destroy(lc->io_req.client);
Alasdair G Kergonb7cca192006-06-26 00:27:29 -0700472 kfree(lc);
473 return -ENOMEM;
474 }
475
Takahiro Yasui6f3af012009-01-06 03:04:59 +0000476 lc->io_req.mem.ptr.vma = lc->disk_header;
Alasdair G Kergonb7cca192006-06-26 00:27:29 -0700477 lc->clean_bits = (void *)lc->disk_header +
478 (LOG_OFFSET << SECTOR_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 }
Alasdair G Kergonb7cca192006-06-26 00:27:29 -0700480
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 memset(lc->clean_bits, -1, bitset_size);
482
483 lc->sync_bits = vmalloc(bitset_size);
484 if (!lc->sync_bits) {
485 DMWARN("couldn't allocate sync bitset");
Alasdair G Kergonb7cca192006-06-26 00:27:29 -0700486 if (!dev)
487 vfree(lc->clean_bits);
Takahiro Yasuic7a2bd12009-01-06 03:04:56 +0000488 else
489 dm_io_client_destroy(lc->io_req.client);
Alasdair G Kergonb7cca192006-06-26 00:27:29 -0700490 vfree(lc->disk_header);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 kfree(lc);
492 return -ENOMEM;
493 }
494 memset(lc->sync_bits, (sync == NOSYNC) ? -1 : 0, bitset_size);
495 lc->sync_count = (sync == NOSYNC) ? region_count : 0;
496
497 lc->recovering_bits = vmalloc(bitset_size);
498 if (!lc->recovering_bits) {
499 DMWARN("couldn't allocate sync bitset");
500 vfree(lc->sync_bits);
Alasdair G Kergonb7cca192006-06-26 00:27:29 -0700501 if (!dev)
502 vfree(lc->clean_bits);
Takahiro Yasuic7a2bd12009-01-06 03:04:56 +0000503 else
504 dm_io_client_destroy(lc->io_req.client);
Alasdair G Kergonb7cca192006-06-26 00:27:29 -0700505 vfree(lc->disk_header);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 kfree(lc);
507 return -ENOMEM;
508 }
509 memset(lc->recovering_bits, 0, bitset_size);
510 lc->sync_search = 0;
511 log->context = lc;
Alasdair G Kergonb7cca192006-06-26 00:27:29 -0700512
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 return 0;
514}
515
Heinz Mauelshagen416cd172008-04-24 21:43:35 +0100516static int core_ctr(struct dm_dirty_log *log, struct dm_target *ti,
Alasdair G Kergonb7cca192006-06-26 00:27:29 -0700517 unsigned int argc, char **argv)
518{
519 return create_log_context(log, ti, argc, argv, NULL);
520}
521
522static void destroy_log_context(struct log_c *lc)
523{
524 vfree(lc->sync_bits);
525 vfree(lc->recovering_bits);
526 kfree(lc);
527}
528
Heinz Mauelshagen416cd172008-04-24 21:43:35 +0100529static void core_dtr(struct dm_dirty_log *log)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530{
531 struct log_c *lc = (struct log_c *) log->context;
Alasdair G Kergonb7cca192006-06-26 00:27:29 -0700532
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 vfree(lc->clean_bits);
Alasdair G Kergonb7cca192006-06-26 00:27:29 -0700534 destroy_log_context(lc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535}
536
537/*----------------------------------------------------------------
538 * disk log constructor/destructor
539 *
540 * argv contains log_device region_size followed optionally by [no]sync
541 *--------------------------------------------------------------*/
Heinz Mauelshagen416cd172008-04-24 21:43:35 +0100542static int disk_ctr(struct dm_dirty_log *log, struct dm_target *ti,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 unsigned int argc, char **argv)
544{
545 int r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 struct dm_dev *dev;
547
548 if (argc < 2 || argc > 3) {
Heinz Mauelshagenb7fd54a2008-04-24 21:43:06 +0100549 DMWARN("wrong number of arguments to disk dirty region log");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 return -EINVAL;
551 }
552
553 r = dm_get_device(ti, argv[0], 0, 0 /* FIXME */,
554 FMODE_READ | FMODE_WRITE, &dev);
555 if (r)
556 return r;
557
Alasdair G Kergonb7cca192006-06-26 00:27:29 -0700558 r = create_log_context(log, ti, argc - 1, argv + 1, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 if (r) {
560 dm_put_device(ti, dev);
561 return r;
562 }
563
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565}
566
Heinz Mauelshagen416cd172008-04-24 21:43:35 +0100567static void disk_dtr(struct dm_dirty_log *log)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568{
569 struct log_c *lc = (struct log_c *) log->context;
Alasdair G Kergonb7cca192006-06-26 00:27:29 -0700570
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 dm_put_device(lc->ti, lc->log_dev);
572 vfree(lc->disk_header);
Heinz Mauelshagen5d234d12007-05-09 02:33:03 -0700573 dm_io_client_destroy(lc->io_req.client);
Alasdair G Kergonb7cca192006-06-26 00:27:29 -0700574 destroy_log_context(lc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575}
576
577static int count_bits32(uint32_t *addr, unsigned size)
578{
579 int count = 0, i;
580
581 for (i = 0; i < size; i++) {
582 count += hweight32(*(addr+i));
583 }
584 return count;
585}
586
Jonathan E Brassow01d03a62007-05-09 02:32:57 -0700587static void fail_log_device(struct log_c *lc)
588{
589 if (lc->log_dev_failed)
590 return;
591
592 lc->log_dev_failed = 1;
593 dm_table_event(lc->ti->table);
594}
595
Heinz Mauelshagen416cd172008-04-24 21:43:35 +0100596static int disk_resume(struct dm_dirty_log *log)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597{
598 int r;
599 unsigned i;
600 struct log_c *lc = (struct log_c *) log->context;
601 size_t size = lc->bitset_uint32_count * sizeof(uint32_t);
602
603 /* read the disk header */
604 r = read_header(lc);
Jonathan E Brassow01d03a62007-05-09 02:32:57 -0700605 if (r) {
Heinz Mauelshagenb7fd54a2008-04-24 21:43:06 +0100606 DMWARN("%s: Failed to read header on dirty region log device",
Jonathan E Brassow01d03a62007-05-09 02:32:57 -0700607 lc->log_dev->name);
608 fail_log_device(lc);
Jonathan Brassowba8b45c2007-05-09 02:33:08 -0700609 /*
610 * If the log device cannot be read, we must assume
611 * all regions are out-of-sync. If we simply return
612 * here, the state will be uninitialized and could
613 * lead us to return 'in-sync' status for regions
614 * that are actually 'out-of-sync'.
615 */
616 lc->header.nr_regions = 0;
Jonathan E Brassow01d03a62007-05-09 02:32:57 -0700617 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618
Alasdair G Kergon8a835f12006-06-26 00:27:30 -0700619 /* set or clear any new bits -- device has grown */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 if (lc->sync == NOSYNC)
621 for (i = lc->header.nr_regions; i < lc->region_count; i++)
622 /* FIXME: amazingly inefficient */
623 log_set_bit(lc, lc->clean_bits, i);
624 else
625 for (i = lc->header.nr_regions; i < lc->region_count; i++)
626 /* FIXME: amazingly inefficient */
627 log_clear_bit(lc, lc->clean_bits, i);
628
Alasdair G Kergon8a835f12006-06-26 00:27:30 -0700629 /* clear any old bits -- device has shrunk */
630 for (i = lc->region_count; i % (sizeof(*lc->clean_bits) << BYTE_SHIFT); i++)
631 log_clear_bit(lc, lc->clean_bits, i);
632
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 /* copy clean across to sync */
634 memcpy(lc->sync_bits, lc->clean_bits, size);
635 lc->sync_count = count_bits32(lc->clean_bits, lc->bitset_uint32_count);
Jonathan E Brassow88b20a12006-12-08 02:41:12 -0800636 lc->sync_search = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 /* set the correct number of regions in the header */
639 lc->header.nr_regions = lc->region_count;
640
Takahiro Yasui6f3af012009-01-06 03:04:59 +0000641 header_to_disk(&lc->header, lc->disk_header);
642
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 /* write the new header */
Takahiro Yasui6f3af012009-01-06 03:04:59 +0000644 r = rw_header(lc, WRITE);
Jonathan E Brassow01d03a62007-05-09 02:32:57 -0700645 if (r) {
Heinz Mauelshagenb7fd54a2008-04-24 21:43:06 +0100646 DMWARN("%s: Failed to write header on dirty region log device",
Jonathan E Brassow01d03a62007-05-09 02:32:57 -0700647 lc->log_dev->name);
648 fail_log_device(lc);
649 }
650
651 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652}
653
Heinz Mauelshagen416cd172008-04-24 21:43:35 +0100654static uint32_t core_get_region_size(struct dm_dirty_log *log)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655{
656 struct log_c *lc = (struct log_c *) log->context;
657 return lc->region_size;
658}
659
Heinz Mauelshagen416cd172008-04-24 21:43:35 +0100660static int core_resume(struct dm_dirty_log *log)
Jonathan E Brassow88b20a12006-12-08 02:41:12 -0800661{
662 struct log_c *lc = (struct log_c *) log->context;
663 lc->sync_search = 0;
664 return 0;
665}
666
Heinz Mauelshagen416cd172008-04-24 21:43:35 +0100667static int core_is_clean(struct dm_dirty_log *log, region_t region)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668{
669 struct log_c *lc = (struct log_c *) log->context;
670 return log_test_bit(lc->clean_bits, region);
671}
672
Heinz Mauelshagen416cd172008-04-24 21:43:35 +0100673static int core_in_sync(struct dm_dirty_log *log, region_t region, int block)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674{
675 struct log_c *lc = (struct log_c *) log->context;
676 return log_test_bit(lc->sync_bits, region);
677}
678
Heinz Mauelshagen416cd172008-04-24 21:43:35 +0100679static int core_flush(struct dm_dirty_log *log)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680{
681 /* no op */
682 return 0;
683}
684
Heinz Mauelshagen416cd172008-04-24 21:43:35 +0100685static int disk_flush(struct dm_dirty_log *log)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686{
687 int r;
688 struct log_c *lc = (struct log_c *) log->context;
689
690 /* only write if the log has changed */
691 if (!lc->touched)
692 return 0;
693
Takahiro Yasui6f3af012009-01-06 03:04:59 +0000694 r = rw_header(lc, WRITE);
Jonathan E Brassow01d03a62007-05-09 02:32:57 -0700695 if (r)
696 fail_log_device(lc);
697 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 lc->touched = 0;
699
700 return r;
701}
702
Heinz Mauelshagen416cd172008-04-24 21:43:35 +0100703static void core_mark_region(struct dm_dirty_log *log, region_t region)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704{
705 struct log_c *lc = (struct log_c *) log->context;
706 log_clear_bit(lc, lc->clean_bits, region);
707}
708
Heinz Mauelshagen416cd172008-04-24 21:43:35 +0100709static void core_clear_region(struct dm_dirty_log *log, region_t region)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710{
711 struct log_c *lc = (struct log_c *) log->context;
712 log_set_bit(lc, lc->clean_bits, region);
713}
714
Heinz Mauelshagen416cd172008-04-24 21:43:35 +0100715static int core_get_resync_work(struct dm_dirty_log *log, region_t *region)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716{
717 struct log_c *lc = (struct log_c *) log->context;
718
719 if (lc->sync_search >= lc->region_count)
720 return 0;
721
722 do {
Stefan Bader1113a7e2006-02-02 14:28:07 -0800723 *region = ext2_find_next_zero_bit(
724 (unsigned long *) lc->sync_bits,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 lc->region_count,
726 lc->sync_search);
727 lc->sync_search = *region + 1;
728
Darrick J. Wongac81b2e2006-01-06 00:20:11 -0800729 if (*region >= lc->region_count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 return 0;
731
732 } while (log_test_bit(lc->recovering_bits, *region));
733
734 log_set_bit(lc, lc->recovering_bits, *region);
735 return 1;
736}
737
Heinz Mauelshagen416cd172008-04-24 21:43:35 +0100738static void core_set_region_sync(struct dm_dirty_log *log, region_t region,
Jonathan E Brassowf3ee6b22006-12-08 02:41:11 -0800739 int in_sync)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740{
741 struct log_c *lc = (struct log_c *) log->context;
742
743 log_clear_bit(lc, lc->recovering_bits, region);
Jonathan E Brassowf3ee6b22006-12-08 02:41:11 -0800744 if (in_sync) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 log_set_bit(lc, lc->sync_bits, region);
746 lc->sync_count++;
Jonathan E Brassowf3ee6b22006-12-08 02:41:11 -0800747 } else if (log_test_bit(lc->sync_bits, region)) {
748 lc->sync_count--;
749 log_clear_bit(lc, lc->sync_bits, region);
750 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751}
752
Heinz Mauelshagen416cd172008-04-24 21:43:35 +0100753static region_t core_get_sync_count(struct dm_dirty_log *log)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754{
755 struct log_c *lc = (struct log_c *) log->context;
756
757 return lc->sync_count;
758}
759
760#define DMEMIT_SYNC \
761 if (lc->sync != DEFAULTSYNC) \
762 DMEMIT("%ssync ", lc->sync == NOSYNC ? "no" : "")
763
Heinz Mauelshagen416cd172008-04-24 21:43:35 +0100764static int core_status(struct dm_dirty_log *log, status_type_t status,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 char *result, unsigned int maxlen)
766{
767 int sz = 0;
768 struct log_c *lc = log->context;
769
770 switch(status) {
771 case STATUSTYPE_INFO:
Jonathan E Brassow315dcc22007-05-09 02:32:58 -0700772 DMEMIT("1 %s", log->type->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 break;
774
775 case STATUSTYPE_TABLE:
776 DMEMIT("%s %u %u ", log->type->name,
777 lc->sync == DEFAULTSYNC ? 1 : 2, lc->region_size);
778 DMEMIT_SYNC;
779 }
780
781 return sz;
782}
783
Heinz Mauelshagen416cd172008-04-24 21:43:35 +0100784static int disk_status(struct dm_dirty_log *log, status_type_t status,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 char *result, unsigned int maxlen)
786{
787 int sz = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 struct log_c *lc = log->context;
789
790 switch(status) {
791 case STATUSTYPE_INFO:
Jonathan E Brassow315dcc22007-05-09 02:32:58 -0700792 DMEMIT("3 %s %s %c", log->type->name, lc->log_dev->name,
793 lc->log_dev_failed ? 'D' : 'A');
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 break;
795
796 case STATUSTYPE_TABLE:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 DMEMIT("%s %u %s %u ", log->type->name,
Jonathan E Brassow315dcc22007-05-09 02:32:58 -0700798 lc->sync == DEFAULTSYNC ? 2 : 3, lc->log_dev->name,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 lc->region_size);
800 DMEMIT_SYNC;
801 }
802
803 return sz;
804}
805
Heinz Mauelshagen416cd172008-04-24 21:43:35 +0100806static struct dm_dirty_log_type _core_type = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 .name = "core",
808 .module = THIS_MODULE,
809 .ctr = core_ctr,
810 .dtr = core_dtr,
Jonathan E Brassow88b20a12006-12-08 02:41:12 -0800811 .resume = core_resume,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 .get_region_size = core_get_region_size,
813 .is_clean = core_is_clean,
814 .in_sync = core_in_sync,
815 .flush = core_flush,
816 .mark_region = core_mark_region,
817 .clear_region = core_clear_region,
818 .get_resync_work = core_get_resync_work,
Jonathan E Brassowf3ee6b22006-12-08 02:41:11 -0800819 .set_region_sync = core_set_region_sync,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 .get_sync_count = core_get_sync_count,
821 .status = core_status,
822};
823
Heinz Mauelshagen416cd172008-04-24 21:43:35 +0100824static struct dm_dirty_log_type _disk_type = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 .name = "disk",
826 .module = THIS_MODULE,
827 .ctr = disk_ctr,
828 .dtr = disk_dtr,
Jonathan Brassow6b3df0d2007-10-19 22:47:57 +0100829 .postsuspend = disk_flush,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 .resume = disk_resume,
831 .get_region_size = core_get_region_size,
832 .is_clean = core_is_clean,
833 .in_sync = core_in_sync,
834 .flush = disk_flush,
835 .mark_region = core_mark_region,
836 .clear_region = core_clear_region,
837 .get_resync_work = core_get_resync_work,
Jonathan E Brassowf3ee6b22006-12-08 02:41:11 -0800838 .set_region_sync = core_set_region_sync,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 .get_sync_count = core_get_sync_count,
840 .status = disk_status,
841};
842
Adrian Bunkc8da2f82008-07-21 12:00:27 +0100843static int __init dm_dirty_log_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844{
845 int r;
846
Heinz Mauelshagen416cd172008-04-24 21:43:35 +0100847 r = dm_dirty_log_type_register(&_core_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 if (r)
849 DMWARN("couldn't register core log");
850
Heinz Mauelshagen416cd172008-04-24 21:43:35 +0100851 r = dm_dirty_log_type_register(&_disk_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 if (r) {
853 DMWARN("couldn't register disk type");
Heinz Mauelshagen416cd172008-04-24 21:43:35 +0100854 dm_dirty_log_type_unregister(&_core_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 }
856
857 return r;
858}
859
Adrian Bunkc8da2f82008-07-21 12:00:27 +0100860static void __exit dm_dirty_log_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861{
Heinz Mauelshagen416cd172008-04-24 21:43:35 +0100862 dm_dirty_log_type_unregister(&_disk_type);
863 dm_dirty_log_type_unregister(&_core_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864}
865
Heinz Mauelshagen769aef32008-04-24 21:43:09 +0100866module_init(dm_dirty_log_init);
867module_exit(dm_dirty_log_exit);
868
869MODULE_DESCRIPTION(DM_NAME " dirty region log");
870MODULE_AUTHOR("Joe Thornber, Heinz Mauelshagen <dm-devel@redhat.com>");
871MODULE_LICENSE("GPL");