blob: cee16fadd9ee70379449ce995ac4043d1ff86e5f [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * dm-snapshot.c
3 *
4 * Copyright (C) 2001-2002 Sistina Software (UK) Limited.
5 *
6 * This file is released under the GPL.
7 */
8
9#include <linux/blkdev.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010#include <linux/ctype.h>
11#include <linux/device-mapper.h>
12#include <linux/fs.h>
13#include <linux/init.h>
14#include <linux/kdev_t.h>
15#include <linux/list.h>
16#include <linux/mempool.h>
17#include <linux/module.h>
18#include <linux/slab.h>
19#include <linux/vmalloc.h>
vignesh babu6f3c3f02007-10-19 22:38:44 +010020#include <linux/log2.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
22#include "dm-snap.h"
23#include "dm-bio-list.h"
24#include "kcopyd.h"
25
Alasdair G Kergon72d94862006-06-26 00:27:35 -070026#define DM_MSG_PREFIX "snapshots"
27
Linus Torvalds1da177e2005-04-16 15:20:36 -070028/*
29 * The percentage increment we will wake up users at
30 */
31#define WAKE_UP_PERCENT 5
32
33/*
34 * kcopyd priority of snapshot operations
35 */
36#define SNAPSHOT_COPY_PRIORITY 2
37
38/*
39 * Each snapshot reserves this many pages for io
40 */
41#define SNAPSHOT_PAGES 256
42
Adrian Bunkc642f9e2006-12-08 02:41:13 -080043static struct workqueue_struct *ksnapd;
David Howellsc4028952006-11-22 14:57:56 +000044static void flush_queued_bios(struct work_struct *work);
Alasdair G Kergonca3a9312006-10-03 01:15:30 -070045
Alasdair G Kergon028867a2007-07-12 17:26:32 +010046struct dm_snap_pending_exception {
47 struct dm_snap_exception e;
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
49 /*
50 * Origin buffers waiting for this to complete are held
51 * in a bio list
52 */
53 struct bio_list origin_bios;
54 struct bio_list snapshot_bios;
55
56 /*
Alasdair G Kergoneccf0812006-03-27 01:17:42 -080057 * Short-term queue of pending exceptions prior to submission.
58 */
59 struct list_head list;
60
61 /*
Alasdair G Kergonb4b610f2006-03-27 01:17:44 -080062 * The primary pending_exception is the one that holds
Alasdair G Kergon4b832e82006-10-03 01:15:30 -070063 * the ref_count and the list of origin_bios for a
Alasdair G Kergonb4b610f2006-03-27 01:17:44 -080064 * group of pending_exceptions. It is always last to get freed.
65 * These fields get set up when writing to the origin.
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 */
Alasdair G Kergon028867a2007-07-12 17:26:32 +010067 struct dm_snap_pending_exception *primary_pe;
Alasdair G Kergonb4b610f2006-03-27 01:17:44 -080068
69 /*
70 * Number of pending_exceptions processing this chunk.
71 * When this drops to zero we must complete the origin bios.
72 * If incrementing or decrementing this, hold pe->snap->lock for
73 * the sibling concerned and not pe->primary_pe->snap->lock unless
74 * they are the same.
75 */
Alasdair G Kergon4b832e82006-10-03 01:15:30 -070076 atomic_t ref_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
78 /* Pointer back to snapshot context */
79 struct dm_snapshot *snap;
80
81 /*
82 * 1 indicates the exception has already been sent to
83 * kcopyd.
84 */
85 int started;
86};
87
88/*
89 * Hash table mapping origin volumes to lists of snapshots and
90 * a lock to protect it
91 */
Christoph Lametere18b8902006-12-06 20:33:20 -080092static struct kmem_cache *exception_cache;
93static struct kmem_cache *pending_cache;
Linus Torvalds1da177e2005-04-16 15:20:36 -070094static mempool_t *pending_pool;
95
96/*
97 * One of these per registered origin, held in the snapshot_origins hash
98 */
99struct origin {
100 /* The origin device */
101 struct block_device *bdev;
102
103 struct list_head hash_list;
104
105 /* List of snapshots for this origin */
106 struct list_head snapshots;
107};
108
109/*
110 * Size of the hash table for origin volumes. If we make this
111 * the size of the minors list then it should be nearly perfect
112 */
113#define ORIGIN_HASH_SIZE 256
114#define ORIGIN_MASK 0xFF
115static struct list_head *_origins;
116static struct rw_semaphore _origins_lock;
117
118static int init_origin_hash(void)
119{
120 int i;
121
122 _origins = kmalloc(ORIGIN_HASH_SIZE * sizeof(struct list_head),
123 GFP_KERNEL);
124 if (!_origins) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700125 DMERR("unable to allocate memory");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 return -ENOMEM;
127 }
128
129 for (i = 0; i < ORIGIN_HASH_SIZE; i++)
130 INIT_LIST_HEAD(_origins + i);
131 init_rwsem(&_origins_lock);
132
133 return 0;
134}
135
136static void exit_origin_hash(void)
137{
138 kfree(_origins);
139}
140
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100141static unsigned origin_hash(struct block_device *bdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142{
143 return bdev->bd_dev & ORIGIN_MASK;
144}
145
146static struct origin *__lookup_origin(struct block_device *origin)
147{
148 struct list_head *ol;
149 struct origin *o;
150
151 ol = &_origins[origin_hash(origin)];
152 list_for_each_entry (o, ol, hash_list)
153 if (bdev_equal(o->bdev, origin))
154 return o;
155
156 return NULL;
157}
158
159static void __insert_origin(struct origin *o)
160{
161 struct list_head *sl = &_origins[origin_hash(o->bdev)];
162 list_add_tail(&o->hash_list, sl);
163}
164
165/*
166 * Make a note of the snapshot and its origin so we can look it
167 * up when the origin has a write on it.
168 */
169static int register_snapshot(struct dm_snapshot *snap)
170{
171 struct origin *o;
172 struct block_device *bdev = snap->origin->bdev;
173
174 down_write(&_origins_lock);
175 o = __lookup_origin(bdev);
176
177 if (!o) {
178 /* New origin */
179 o = kmalloc(sizeof(*o), GFP_KERNEL);
180 if (!o) {
181 up_write(&_origins_lock);
182 return -ENOMEM;
183 }
184
185 /* Initialise the struct */
186 INIT_LIST_HEAD(&o->snapshots);
187 o->bdev = bdev;
188
189 __insert_origin(o);
190 }
191
192 list_add_tail(&snap->list, &o->snapshots);
193
194 up_write(&_origins_lock);
195 return 0;
196}
197
198static void unregister_snapshot(struct dm_snapshot *s)
199{
200 struct origin *o;
201
202 down_write(&_origins_lock);
203 o = __lookup_origin(s->origin->bdev);
204
205 list_del(&s->list);
206 if (list_empty(&o->snapshots)) {
207 list_del(&o->hash_list);
208 kfree(o);
209 }
210
211 up_write(&_origins_lock);
212}
213
214/*
215 * Implementation of the exception hash tables.
216 */
217static int init_exception_table(struct exception_table *et, uint32_t size)
218{
219 unsigned int i;
220
221 et->hash_mask = size - 1;
222 et->table = dm_vcalloc(size, sizeof(struct list_head));
223 if (!et->table)
224 return -ENOMEM;
225
226 for (i = 0; i < size; i++)
227 INIT_LIST_HEAD(et->table + i);
228
229 return 0;
230}
231
Christoph Lametere18b8902006-12-06 20:33:20 -0800232static void exit_exception_table(struct exception_table *et, struct kmem_cache *mem)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233{
234 struct list_head *slot;
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100235 struct dm_snap_exception *ex, *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 int i, size;
237
238 size = et->hash_mask + 1;
239 for (i = 0; i < size; i++) {
240 slot = et->table + i;
241
242 list_for_each_entry_safe (ex, next, slot, hash_list)
243 kmem_cache_free(mem, ex);
244 }
245
246 vfree(et->table);
247}
248
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100249static uint32_t exception_hash(struct exception_table *et, chunk_t chunk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250{
251 return chunk & et->hash_mask;
252}
253
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100254static void insert_exception(struct exception_table *eh,
255 struct dm_snap_exception *e)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256{
257 struct list_head *l = &eh->table[exception_hash(eh, e->old_chunk)];
258 list_add(&e->hash_list, l);
259}
260
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100261static void remove_exception(struct dm_snap_exception *e)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262{
263 list_del(&e->hash_list);
264}
265
266/*
267 * Return the exception data for a sector, or NULL if not
268 * remapped.
269 */
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100270static struct dm_snap_exception *lookup_exception(struct exception_table *et,
271 chunk_t chunk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272{
273 struct list_head *slot;
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100274 struct dm_snap_exception *e;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275
276 slot = &et->table[exception_hash(et, chunk)];
277 list_for_each_entry (e, slot, hash_list)
278 if (e->old_chunk == chunk)
279 return e;
280
281 return NULL;
282}
283
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100284static struct dm_snap_exception *alloc_exception(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285{
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100286 struct dm_snap_exception *e;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287
288 e = kmem_cache_alloc(exception_cache, GFP_NOIO);
289 if (!e)
290 e = kmem_cache_alloc(exception_cache, GFP_ATOMIC);
291
292 return e;
293}
294
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100295static void free_exception(struct dm_snap_exception *e)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296{
297 kmem_cache_free(exception_cache, e);
298}
299
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100300static struct dm_snap_pending_exception *alloc_pending_exception(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301{
302 return mempool_alloc(pending_pool, GFP_NOIO);
303}
304
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100305static void free_pending_exception(struct dm_snap_pending_exception *pe)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306{
307 mempool_free(pe, pending_pool);
308}
309
310int dm_add_exception(struct dm_snapshot *s, chunk_t old, chunk_t new)
311{
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100312 struct dm_snap_exception *e;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313
314 e = alloc_exception();
315 if (!e)
316 return -ENOMEM;
317
318 e->old_chunk = old;
319 e->new_chunk = new;
320 insert_exception(&s->complete, e);
321 return 0;
322}
323
324/*
325 * Hard coded magic.
326 */
327static int calc_max_buckets(void)
328{
329 /* use a fixed size of 2MB */
330 unsigned long mem = 2 * 1024 * 1024;
331 mem /= sizeof(struct list_head);
332
333 return mem;
334}
335
336/*
337 * Rounds a number down to a power of 2.
338 */
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100339static uint32_t round_down(uint32_t n)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340{
341 while (n & (n - 1))
342 n &= (n - 1);
343 return n;
344}
345
346/*
347 * Allocate room for a suitable hash table.
348 */
349static int init_hash_tables(struct dm_snapshot *s)
350{
351 sector_t hash_size, cow_dev_size, origin_dev_size, max_buckets;
352
353 /*
354 * Calculate based on the size of the original volume or
355 * the COW volume...
356 */
357 cow_dev_size = get_dev_size(s->cow->bdev);
358 origin_dev_size = get_dev_size(s->origin->bdev);
359 max_buckets = calc_max_buckets();
360
361 hash_size = min(origin_dev_size, cow_dev_size) >> s->chunk_shift;
362 hash_size = min(hash_size, max_buckets);
363
364 /* Round it down to a power of 2 */
365 hash_size = round_down(hash_size);
366 if (init_exception_table(&s->complete, hash_size))
367 return -ENOMEM;
368
369 /*
370 * Allocate hash table for in-flight exceptions
371 * Make this smaller than the real hash table
372 */
373 hash_size >>= 3;
374 if (hash_size < 64)
375 hash_size = 64;
376
377 if (init_exception_table(&s->pending, hash_size)) {
378 exit_exception_table(&s->complete, exception_cache);
379 return -ENOMEM;
380 }
381
382 return 0;
383}
384
385/*
386 * Round a number up to the nearest 'size' boundary. size must
387 * be a power of 2.
388 */
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100389static ulong round_up(ulong n, ulong size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390{
391 size--;
392 return (n + size) & ~size;
393}
394
Mark McLoughlin4c7e3bf2006-10-03 01:15:25 -0700395static int set_chunk_size(struct dm_snapshot *s, const char *chunk_size_arg,
396 char **error)
397{
398 unsigned long chunk_size;
399 char *value;
400
401 chunk_size = simple_strtoul(chunk_size_arg, &value, 10);
402 if (*chunk_size_arg == '\0' || *value != '\0') {
403 *error = "Invalid chunk size";
404 return -EINVAL;
405 }
406
407 if (!chunk_size) {
408 s->chunk_size = s->chunk_mask = s->chunk_shift = 0;
409 return 0;
410 }
411
412 /*
413 * Chunk size must be multiple of page size. Silently
414 * round up if it's not.
415 */
416 chunk_size = round_up(chunk_size, PAGE_SIZE >> 9);
417
418 /* Check chunk_size is a power of 2 */
vignesh babu6f3c3f02007-10-19 22:38:44 +0100419 if (!is_power_of_2(chunk_size)) {
Mark McLoughlin4c7e3bf2006-10-03 01:15:25 -0700420 *error = "Chunk size is not a power of 2";
421 return -EINVAL;
422 }
423
424 /* Validate the chunk size against the device block size */
425 if (chunk_size % (bdev_hardsect_size(s->cow->bdev) >> 9)) {
426 *error = "Chunk size is not a multiple of device blocksize";
427 return -EINVAL;
428 }
429
430 s->chunk_size = chunk_size;
431 s->chunk_mask = chunk_size - 1;
432 s->chunk_shift = ffs(chunk_size) - 1;
433
434 return 0;
435}
436
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437/*
438 * Construct a snapshot mapping: <origin_dev> <COW-dev> <p/n> <chunk-size>
439 */
440static int snapshot_ctr(struct dm_target *ti, unsigned int argc, char **argv)
441{
442 struct dm_snapshot *s;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 int r = -EINVAL;
444 char persistent;
445 char *origin_path;
446 char *cow_path;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447
Mark McLoughlin4c7e3bf2006-10-03 01:15:25 -0700448 if (argc != 4) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700449 ti->error = "requires exactly 4 arguments";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 r = -EINVAL;
451 goto bad1;
452 }
453
454 origin_path = argv[0];
455 cow_path = argv[1];
456 persistent = toupper(*argv[2]);
457
458 if (persistent != 'P' && persistent != 'N') {
459 ti->error = "Persistent flag is not P or N";
460 r = -EINVAL;
461 goto bad1;
462 }
463
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 s = kmalloc(sizeof(*s), GFP_KERNEL);
465 if (s == NULL) {
466 ti->error = "Cannot allocate snapshot context private "
467 "structure";
468 r = -ENOMEM;
469 goto bad1;
470 }
471
472 r = dm_get_device(ti, origin_path, 0, ti->len, FMODE_READ, &s->origin);
473 if (r) {
474 ti->error = "Cannot get origin device";
475 goto bad2;
476 }
477
478 r = dm_get_device(ti, cow_path, 0, 0,
479 FMODE_READ | FMODE_WRITE, &s->cow);
480 if (r) {
481 dm_put_device(ti, s->origin);
482 ti->error = "Cannot get COW device";
483 goto bad2;
484 }
485
Mark McLoughlin4c7e3bf2006-10-03 01:15:25 -0700486 r = set_chunk_size(s, argv[3], &ti->error);
487 if (r)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 goto bad3;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 s->type = persistent;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491
492 s->valid = 1;
Alasdair G Kergonaa14ede2006-02-01 03:04:50 -0800493 s->active = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 s->last_percent = 0;
495 init_rwsem(&s->lock);
Alasdair G Kergonca3a9312006-10-03 01:15:30 -0700496 spin_lock_init(&s->pe_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 s->table = ti->table;
498
499 /* Allocate hash table for COW data */
500 if (init_hash_tables(s)) {
501 ti->error = "Unable to allocate hash table space";
502 r = -ENOMEM;
503 goto bad3;
504 }
505
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 s->store.snap = s;
507
508 if (persistent == 'P')
Mark McLoughlin4c7e3bf2006-10-03 01:15:25 -0700509 r = dm_create_persistent(&s->store);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 else
Mark McLoughlin4c7e3bf2006-10-03 01:15:25 -0700511 r = dm_create_transient(&s->store);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512
513 if (r) {
514 ti->error = "Couldn't create exception store";
515 r = -EINVAL;
516 goto bad4;
517 }
518
519 r = kcopyd_client_create(SNAPSHOT_PAGES, &s->kcopyd_client);
520 if (r) {
521 ti->error = "Could not create kcopyd client";
522 goto bad5;
523 }
524
Alasdair G Kergonaa14ede2006-02-01 03:04:50 -0800525 /* Metadata must only be loaded into one table at once */
Mark McLoughlinf9cea4f2006-10-03 01:15:25 -0700526 r = s->store.read_metadata(&s->store);
Milan Broz07641472007-07-12 17:28:13 +0100527 if (r < 0) {
Mark McLoughlinf9cea4f2006-10-03 01:15:25 -0700528 ti->error = "Failed to read snapshot metadata";
529 goto bad6;
Milan Broz07641472007-07-12 17:28:13 +0100530 } else if (r > 0) {
531 s->valid = 0;
532 DMWARN("Snapshot is marked invalid.");
Mark McLoughlinf9cea4f2006-10-03 01:15:25 -0700533 }
Alasdair G Kergonaa14ede2006-02-01 03:04:50 -0800534
Alasdair G Kergonca3a9312006-10-03 01:15:30 -0700535 bio_list_init(&s->queued_bios);
David Howellsc4028952006-11-22 14:57:56 +0000536 INIT_WORK(&s->queued_bios_work, flush_queued_bios);
Alasdair G Kergonca3a9312006-10-03 01:15:30 -0700537
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 /* Add snapshot to the list of snapshots for this origin */
Alasdair G Kergonaa14ede2006-02-01 03:04:50 -0800539 /* Exceptions aren't triggered till snapshot_resume() is called */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 if (register_snapshot(s)) {
541 r = -EINVAL;
542 ti->error = "Cannot register snapshot origin";
543 goto bad6;
544 }
545
546 ti->private = s;
Alasdair G Kergonc51c2752006-06-26 00:27:18 -0700547 ti->split_io = s->chunk_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548
549 return 0;
550
551 bad6:
552 kcopyd_client_destroy(s->kcopyd_client);
553
554 bad5:
555 s->store.destroy(&s->store);
556
557 bad4:
558 exit_exception_table(&s->pending, pending_cache);
559 exit_exception_table(&s->complete, exception_cache);
560
561 bad3:
562 dm_put_device(ti, s->cow);
563 dm_put_device(ti, s->origin);
564
565 bad2:
566 kfree(s);
567
568 bad1:
569 return r;
570}
571
Milan Broz31c93a02006-12-08 02:41:11 -0800572static void __free_exceptions(struct dm_snapshot *s)
573{
574 kcopyd_client_destroy(s->kcopyd_client);
575 s->kcopyd_client = NULL;
576
577 exit_exception_table(&s->pending, pending_cache);
578 exit_exception_table(&s->complete, exception_cache);
579
580 s->store.destroy(&s->store);
581}
582
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583static void snapshot_dtr(struct dm_target *ti)
584{
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100585 struct dm_snapshot *s = ti->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586
Alasdair G Kergonca3a9312006-10-03 01:15:30 -0700587 flush_workqueue(ksnapd);
588
Alasdair G Kergon138728dc2006-03-27 01:17:50 -0800589 /* Prevent further origin writes from using this snapshot. */
590 /* After this returns there can be no new kcopyd jobs. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 unregister_snapshot(s);
592
Milan Broz31c93a02006-12-08 02:41:11 -0800593 __free_exceptions(s);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594
595 dm_put_device(ti, s->origin);
596 dm_put_device(ti, s->cow);
Alasdair G Kergon138728dc2006-03-27 01:17:50 -0800597
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 kfree(s);
599}
600
601/*
602 * Flush a list of buffers.
603 */
604static void flush_bios(struct bio *bio)
605{
606 struct bio *n;
607
608 while (bio) {
609 n = bio->bi_next;
610 bio->bi_next = NULL;
611 generic_make_request(bio);
612 bio = n;
613 }
614}
615
David Howellsc4028952006-11-22 14:57:56 +0000616static void flush_queued_bios(struct work_struct *work)
Alasdair G Kergonca3a9312006-10-03 01:15:30 -0700617{
David Howellsc4028952006-11-22 14:57:56 +0000618 struct dm_snapshot *s =
619 container_of(work, struct dm_snapshot, queued_bios_work);
Alasdair G Kergonca3a9312006-10-03 01:15:30 -0700620 struct bio *queued_bios;
621 unsigned long flags;
622
623 spin_lock_irqsave(&s->pe_lock, flags);
624 queued_bios = bio_list_get(&s->queued_bios);
625 spin_unlock_irqrestore(&s->pe_lock, flags);
626
627 flush_bios(queued_bios);
628}
629
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630/*
631 * Error a list of buffers.
632 */
633static void error_bios(struct bio *bio)
634{
635 struct bio *n;
636
637 while (bio) {
638 n = bio->bi_next;
639 bio->bi_next = NULL;
NeilBrown6712ecf2007-09-27 12:47:43 +0200640 bio_io_error(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 bio = n;
642 }
643}
644
Alasdair G Kergon695368a2006-10-03 01:15:31 -0700645static void __invalidate_snapshot(struct dm_snapshot *s, int err)
Alasdair G Kergon76df1c62006-03-27 01:17:45 -0800646{
647 if (!s->valid)
648 return;
649
650 if (err == -EIO)
651 DMERR("Invalidating snapshot: Error reading/writing.");
652 else if (err == -ENOMEM)
653 DMERR("Invalidating snapshot: Unable to allocate exception.");
654
Alasdair G Kergon76df1c62006-03-27 01:17:45 -0800655 if (s->store.drop_snapshot)
656 s->store.drop_snapshot(&s->store);
657
658 s->valid = 0;
659
660 dm_table_event(s->table);
661}
662
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100663static void get_pending_exception(struct dm_snap_pending_exception *pe)
Alasdair G Kergon4b832e82006-10-03 01:15:30 -0700664{
665 atomic_inc(&pe->ref_count);
666}
667
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100668static struct bio *put_pending_exception(struct dm_snap_pending_exception *pe)
Alasdair G Kergon4b832e82006-10-03 01:15:30 -0700669{
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100670 struct dm_snap_pending_exception *primary_pe;
Alasdair G Kergon4b832e82006-10-03 01:15:30 -0700671 struct bio *origin_bios = NULL;
672
673 primary_pe = pe->primary_pe;
674
675 /*
676 * If this pe is involved in a write to the origin and
677 * it is the last sibling to complete then release
678 * the bios for the original write to the origin.
679 */
680 if (primary_pe &&
681 atomic_dec_and_test(&primary_pe->ref_count))
682 origin_bios = bio_list_get(&primary_pe->origin_bios);
683
684 /*
685 * Free the pe if it's not linked to an origin write or if
686 * it's not itself a primary pe.
687 */
688 if (!primary_pe || primary_pe != pe)
689 free_pending_exception(pe);
690
691 /*
692 * Free the primary pe if nothing references it.
693 */
694 if (primary_pe && !atomic_read(&primary_pe->ref_count))
695 free_pending_exception(primary_pe);
696
697 return origin_bios;
698}
699
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100700static void pending_complete(struct dm_snap_pending_exception *pe, int success)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701{
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100702 struct dm_snap_exception *e;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 struct dm_snapshot *s = pe->snap;
Alasdair G Kergon9d493fa2006-10-03 01:15:29 -0700704 struct bio *origin_bios = NULL;
705 struct bio *snapshot_bios = NULL;
706 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707
Alasdair G Kergon76df1c62006-03-27 01:17:45 -0800708 if (!success) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 /* Read/write error - snapshot is unusable */
710 down_write(&s->lock);
Alasdair G Kergon695368a2006-10-03 01:15:31 -0700711 __invalidate_snapshot(s, -EIO);
Alasdair G Kergon9d493fa2006-10-03 01:15:29 -0700712 error = 1;
Alasdair G Kergon76df1c62006-03-27 01:17:45 -0800713 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 }
715
Alasdair G Kergon76df1c62006-03-27 01:17:45 -0800716 e = alloc_exception();
717 if (!e) {
718 down_write(&s->lock);
Alasdair G Kergon695368a2006-10-03 01:15:31 -0700719 __invalidate_snapshot(s, -ENOMEM);
Alasdair G Kergon9d493fa2006-10-03 01:15:29 -0700720 error = 1;
Alasdair G Kergon76df1c62006-03-27 01:17:45 -0800721 goto out;
722 }
723 *e = pe->e;
724
Alasdair G Kergon9d493fa2006-10-03 01:15:29 -0700725 down_write(&s->lock);
726 if (!s->valid) {
727 free_exception(e);
728 error = 1;
729 goto out;
730 }
731
Alasdair G Kergon76df1c62006-03-27 01:17:45 -0800732 /*
733 * Add a proper exception, and remove the
734 * in-flight exception from the list.
735 */
Alasdair G Kergon76df1c62006-03-27 01:17:45 -0800736 insert_exception(&s->complete, e);
Alasdair G Kergon76df1c62006-03-27 01:17:45 -0800737
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 out:
Alasdair G Kergon695368a2006-10-03 01:15:31 -0700739 remove_exception(&pe->e);
Alasdair G Kergon9d493fa2006-10-03 01:15:29 -0700740 snapshot_bios = bio_list_get(&pe->snapshot_bios);
Alasdair G Kergon4b832e82006-10-03 01:15:30 -0700741 origin_bios = put_pending_exception(pe);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742
Alasdair G Kergon9d493fa2006-10-03 01:15:29 -0700743 up_write(&s->lock);
744
745 /* Submit any pending write bios */
746 if (error)
747 error_bios(snapshot_bios);
748 else
749 flush_bios(snapshot_bios);
750
751 flush_bios(origin_bios);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752}
753
754static void commit_callback(void *context, int success)
755{
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100756 struct dm_snap_pending_exception *pe = context;
757
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 pending_complete(pe, success);
759}
760
761/*
762 * Called when the copy I/O has finished. kcopyd actually runs
763 * this code so don't block.
764 */
765static void copy_callback(int read_err, unsigned int write_err, void *context)
766{
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100767 struct dm_snap_pending_exception *pe = context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 struct dm_snapshot *s = pe->snap;
769
770 if (read_err || write_err)
771 pending_complete(pe, 0);
772
773 else
774 /* Update the metadata if we are persistent */
775 s->store.commit_exception(&s->store, &pe->e, commit_callback,
776 pe);
777}
778
779/*
780 * Dispatches the copy operation to kcopyd.
781 */
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100782static void start_copy(struct dm_snap_pending_exception *pe)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783{
784 struct dm_snapshot *s = pe->snap;
785 struct io_region src, dest;
786 struct block_device *bdev = s->origin->bdev;
787 sector_t dev_size;
788
789 dev_size = get_dev_size(bdev);
790
791 src.bdev = bdev;
792 src.sector = chunk_to_sector(s, pe->e.old_chunk);
793 src.count = min(s->chunk_size, dev_size - src.sector);
794
795 dest.bdev = s->cow->bdev;
796 dest.sector = chunk_to_sector(s, pe->e.new_chunk);
797 dest.count = src.count;
798
799 /* Hand over to kcopyd */
800 kcopyd_copy(s->kcopyd_client,
801 &src, 1, &dest, 0, copy_callback, pe);
802}
803
804/*
805 * Looks to see if this snapshot already has a pending exception
806 * for this chunk, otherwise it allocates a new one and inserts
807 * it into the pending table.
808 *
809 * NOTE: a write lock must be held on snap->lock before calling
810 * this.
811 */
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100812static struct dm_snap_pending_exception *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813__find_pending_exception(struct dm_snapshot *s, struct bio *bio)
814{
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100815 struct dm_snap_exception *e;
816 struct dm_snap_pending_exception *pe;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 chunk_t chunk = sector_to_chunk(s, bio->bi_sector);
818
819 /*
820 * Is there a pending exception for this already ?
821 */
822 e = lookup_exception(&s->pending, chunk);
823 if (e) {
824 /* cast the exception to a pending exception */
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100825 pe = container_of(e, struct dm_snap_pending_exception, e);
Alasdair G Kergon76df1c62006-03-27 01:17:45 -0800826 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 }
828
Alasdair G Kergon76df1c62006-03-27 01:17:45 -0800829 /*
830 * Create a new pending exception, we don't want
831 * to hold the lock while we do this.
832 */
833 up_write(&s->lock);
834 pe = alloc_pending_exception();
835 down_write(&s->lock);
836
837 if (!s->valid) {
838 free_pending_exception(pe);
839 return NULL;
840 }
841
842 e = lookup_exception(&s->pending, chunk);
843 if (e) {
844 free_pending_exception(pe);
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100845 pe = container_of(e, struct dm_snap_pending_exception, e);
Alasdair G Kergon76df1c62006-03-27 01:17:45 -0800846 goto out;
847 }
848
849 pe->e.old_chunk = chunk;
850 bio_list_init(&pe->origin_bios);
851 bio_list_init(&pe->snapshot_bios);
852 pe->primary_pe = NULL;
Alasdair G Kergon4b832e82006-10-03 01:15:30 -0700853 atomic_set(&pe->ref_count, 0);
Alasdair G Kergon76df1c62006-03-27 01:17:45 -0800854 pe->snap = s;
855 pe->started = 0;
856
857 if (s->store.prepare_exception(&s->store, &pe->e)) {
858 free_pending_exception(pe);
859 return NULL;
860 }
861
Alasdair G Kergon4b832e82006-10-03 01:15:30 -0700862 get_pending_exception(pe);
Alasdair G Kergon76df1c62006-03-27 01:17:45 -0800863 insert_exception(&s->pending, &pe->e);
864
865 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 return pe;
867}
868
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100869static void remap_exception(struct dm_snapshot *s, struct dm_snap_exception *e,
870 struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871{
872 bio->bi_bdev = s->cow->bdev;
873 bio->bi_sector = chunk_to_sector(s, e->new_chunk) +
874 (bio->bi_sector & s->chunk_mask);
875}
876
877static int snapshot_map(struct dm_target *ti, struct bio *bio,
878 union map_info *map_context)
879{
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100880 struct dm_snap_exception *e;
881 struct dm_snapshot *s = ti->private;
Kiyoshi Uedad2a7ad22006-12-08 02:41:06 -0800882 int r = DM_MAPIO_REMAPPED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 chunk_t chunk;
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100884 struct dm_snap_pending_exception *pe = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885
886 chunk = sector_to_chunk(s, bio->bi_sector);
887
888 /* Full snapshots are not usable */
Alasdair G Kergon76df1c62006-03-27 01:17:45 -0800889 /* To get here the table must be live so s->active is always set. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 if (!s->valid)
Alasdair G Kergonf6a80ea2005-07-12 15:53:01 -0700891 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892
Alasdair G Kergonba40a2a2006-10-03 01:15:28 -0700893 /* FIXME: should only take write lock if we need
894 * to copy an exception */
895 down_write(&s->lock);
896
897 if (!s->valid) {
898 r = -EIO;
899 goto out_unlock;
900 }
901
902 /* If the block is already remapped - use that, else remap it */
903 e = lookup_exception(&s->complete, chunk);
904 if (e) {
905 remap_exception(s, e, bio);
906 goto out_unlock;
907 }
908
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 /*
910 * Write to snapshot - higher level takes care of RW/RO
911 * flags so we should only get this if we are
912 * writeable.
913 */
914 if (bio_rw(bio) == WRITE) {
Alasdair G Kergon76df1c62006-03-27 01:17:45 -0800915 pe = __find_pending_exception(s, bio);
916 if (!pe) {
Alasdair G Kergon695368a2006-10-03 01:15:31 -0700917 __invalidate_snapshot(s, -ENOMEM);
Alasdair G Kergon76df1c62006-03-27 01:17:45 -0800918 r = -EIO;
919 goto out_unlock;
920 }
921
922 remap_exception(s, &pe->e, bio);
923 bio_list_add(&pe->snapshot_bios, bio);
924
Kiyoshi Uedad2a7ad22006-12-08 02:41:06 -0800925 r = DM_MAPIO_SUBMITTED;
Alasdair G Kergonba40a2a2006-10-03 01:15:28 -0700926
Alasdair G Kergon76df1c62006-03-27 01:17:45 -0800927 if (!pe->started) {
928 /* this is protected by snap->lock */
929 pe->started = 1;
Alasdair G Kergonba40a2a2006-10-03 01:15:28 -0700930 up_write(&s->lock);
Alasdair G Kergon76df1c62006-03-27 01:17:45 -0800931 start_copy(pe);
Alasdair G Kergonba40a2a2006-10-03 01:15:28 -0700932 goto out;
933 }
934 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 /*
936 * FIXME: this read path scares me because we
937 * always use the origin when we have a pending
938 * exception. However I can't think of a
939 * situation where this is wrong - ejt.
940 */
Alasdair G Kergonba40a2a2006-10-03 01:15:28 -0700941 bio->bi_bdev = s->origin->bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942
Alasdair G Kergonba40a2a2006-10-03 01:15:28 -0700943 out_unlock:
944 up_write(&s->lock);
945 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 return r;
947}
948
949static void snapshot_resume(struct dm_target *ti)
950{
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100951 struct dm_snapshot *s = ti->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952
Alasdair G Kergonaa14ede2006-02-01 03:04:50 -0800953 down_write(&s->lock);
954 s->active = 1;
955 up_write(&s->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956}
957
958static int snapshot_status(struct dm_target *ti, status_type_t type,
959 char *result, unsigned int maxlen)
960{
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100961 struct dm_snapshot *snap = ti->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962
963 switch (type) {
964 case STATUSTYPE_INFO:
965 if (!snap->valid)
966 snprintf(result, maxlen, "Invalid");
967 else {
968 if (snap->store.fraction_full) {
969 sector_t numerator, denominator;
970 snap->store.fraction_full(&snap->store,
971 &numerator,
972 &denominator);
Andrew Morton4ee218c2006-03-27 01:17:48 -0800973 snprintf(result, maxlen, "%llu/%llu",
974 (unsigned long long)numerator,
975 (unsigned long long)denominator);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 }
977 else
978 snprintf(result, maxlen, "Unknown");
979 }
980 break;
981
982 case STATUSTYPE_TABLE:
983 /*
984 * kdevname returns a static pointer so we need
985 * to make private copies if the output is to
986 * make sense.
987 */
Andrew Morton4ee218c2006-03-27 01:17:48 -0800988 snprintf(result, maxlen, "%s %s %c %llu",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 snap->origin->name, snap->cow->name,
Andrew Morton4ee218c2006-03-27 01:17:48 -0800990 snap->type,
991 (unsigned long long)snap->chunk_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 break;
993 }
994
995 return 0;
996}
997
998/*-----------------------------------------------------------------
999 * Origin methods
1000 *---------------------------------------------------------------*/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001static int __origin_write(struct list_head *snapshots, struct bio *bio)
1002{
Kiyoshi Uedad2a7ad22006-12-08 02:41:06 -08001003 int r = DM_MAPIO_REMAPPED, first = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 struct dm_snapshot *snap;
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001005 struct dm_snap_exception *e;
1006 struct dm_snap_pending_exception *pe, *next_pe, *primary_pe = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 chunk_t chunk;
Alasdair G Kergoneccf0812006-03-27 01:17:42 -08001008 LIST_HEAD(pe_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009
1010 /* Do all the snapshots on this origin */
1011 list_for_each_entry (snap, snapshots, list) {
1012
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001013 down_write(&snap->lock);
1014
Alasdair G Kergonaa14ede2006-02-01 03:04:50 -08001015 /* Only deal with valid and active snapshots */
1016 if (!snap->valid || !snap->active)
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001017 goto next_snapshot;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018
Alasdair G Kergond5e404c2005-07-12 15:53:05 -07001019 /* Nothing to do if writing beyond end of snapshot */
1020 if (bio->bi_sector >= dm_table_get_size(snap->table))
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001021 goto next_snapshot;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022
1023 /*
1024 * Remember, different snapshots can have
1025 * different chunk sizes.
1026 */
1027 chunk = sector_to_chunk(snap, bio->bi_sector);
1028
1029 /*
1030 * Check exception table to see if block
1031 * is already remapped in this snapshot
1032 * and trigger an exception if not.
Alasdair G Kergonb4b610f2006-03-27 01:17:44 -08001033 *
Alasdair G Kergon4b832e82006-10-03 01:15:30 -07001034 * ref_count is initialised to 1 so pending_complete()
Alasdair G Kergonb4b610f2006-03-27 01:17:44 -08001035 * won't destroy the primary_pe while we're inside this loop.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 */
1037 e = lookup_exception(&snap->complete, chunk);
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001038 if (e)
1039 goto next_snapshot;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001041 pe = __find_pending_exception(snap, bio);
1042 if (!pe) {
Alasdair G Kergon695368a2006-10-03 01:15:31 -07001043 __invalidate_snapshot(snap, -ENOMEM);
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001044 goto next_snapshot;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 }
1046
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001047 if (!primary_pe) {
1048 /*
1049 * Either every pe here has same
1050 * primary_pe or none has one yet.
1051 */
1052 if (pe->primary_pe)
1053 primary_pe = pe->primary_pe;
1054 else {
1055 primary_pe = pe;
1056 first = 1;
1057 }
1058
1059 bio_list_add(&primary_pe->origin_bios, bio);
1060
Kiyoshi Uedad2a7ad22006-12-08 02:41:06 -08001061 r = DM_MAPIO_SUBMITTED;
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001062 }
1063
1064 if (!pe->primary_pe) {
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001065 pe->primary_pe = primary_pe;
Alasdair G Kergon4b832e82006-10-03 01:15:30 -07001066 get_pending_exception(primary_pe);
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001067 }
1068
1069 if (!pe->started) {
1070 pe->started = 1;
1071 list_add_tail(&pe->list, &pe_queue);
1072 }
1073
1074 next_snapshot:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075 up_write(&snap->lock);
1076 }
1077
Alasdair G Kergonb4b610f2006-03-27 01:17:44 -08001078 if (!primary_pe)
Alasdair G Kergon4b832e82006-10-03 01:15:30 -07001079 return r;
Alasdair G Kergonb4b610f2006-03-27 01:17:44 -08001080
1081 /*
1082 * If this is the first time we're processing this chunk and
Alasdair G Kergon4b832e82006-10-03 01:15:30 -07001083 * ref_count is now 1 it means all the pending exceptions
Alasdair G Kergonb4b610f2006-03-27 01:17:44 -08001084 * got completed while we were in the loop above, so it falls to
1085 * us here to remove the primary_pe and submit any origin_bios.
1086 */
1087
Alasdair G Kergon4b832e82006-10-03 01:15:30 -07001088 if (first && atomic_dec_and_test(&primary_pe->ref_count)) {
Alasdair G Kergonb4b610f2006-03-27 01:17:44 -08001089 flush_bios(bio_list_get(&primary_pe->origin_bios));
1090 free_pending_exception(primary_pe);
1091 /* If we got here, pe_queue is necessarily empty. */
Alasdair G Kergon4b832e82006-10-03 01:15:30 -07001092 return r;
Alasdair G Kergonb4b610f2006-03-27 01:17:44 -08001093 }
1094
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 /*
1096 * Now that we have a complete pe list we can start the copying.
1097 */
Alasdair G Kergoneccf0812006-03-27 01:17:42 -08001098 list_for_each_entry_safe(pe, next_pe, &pe_queue, list)
1099 start_copy(pe);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100
1101 return r;
1102}
1103
1104/*
1105 * Called on a write from the origin driver.
1106 */
1107static int do_origin(struct dm_dev *origin, struct bio *bio)
1108{
1109 struct origin *o;
Kiyoshi Uedad2a7ad22006-12-08 02:41:06 -08001110 int r = DM_MAPIO_REMAPPED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111
1112 down_read(&_origins_lock);
1113 o = __lookup_origin(origin->bdev);
1114 if (o)
1115 r = __origin_write(&o->snapshots, bio);
1116 up_read(&_origins_lock);
1117
1118 return r;
1119}
1120
1121/*
1122 * Origin: maps a linear range of a device, with hooks for snapshotting.
1123 */
1124
1125/*
1126 * Construct an origin mapping: <dev_path>
1127 * The context for an origin is merely a 'struct dm_dev *'
1128 * pointing to the real device.
1129 */
1130static int origin_ctr(struct dm_target *ti, unsigned int argc, char **argv)
1131{
1132 int r;
1133 struct dm_dev *dev;
1134
1135 if (argc != 1) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -07001136 ti->error = "origin: incorrect number of arguments";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 return -EINVAL;
1138 }
1139
1140 r = dm_get_device(ti, argv[0], 0, ti->len,
1141 dm_table_get_mode(ti->table), &dev);
1142 if (r) {
1143 ti->error = "Cannot get target device";
1144 return r;
1145 }
1146
1147 ti->private = dev;
1148 return 0;
1149}
1150
1151static void origin_dtr(struct dm_target *ti)
1152{
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001153 struct dm_dev *dev = ti->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 dm_put_device(ti, dev);
1155}
1156
1157static int origin_map(struct dm_target *ti, struct bio *bio,
1158 union map_info *map_context)
1159{
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001160 struct dm_dev *dev = ti->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 bio->bi_bdev = dev->bdev;
1162
1163 /* Only tell snapshots if this is a write */
Kiyoshi Uedad2a7ad22006-12-08 02:41:06 -08001164 return (bio_rw(bio) == WRITE) ? do_origin(dev, bio) : DM_MAPIO_REMAPPED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165}
1166
1167#define min_not_zero(l, r) (l == 0) ? r : ((r == 0) ? l : min(l, r))
1168
1169/*
1170 * Set the target "split_io" field to the minimum of all the snapshots'
1171 * chunk sizes.
1172 */
1173static void origin_resume(struct dm_target *ti)
1174{
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001175 struct dm_dev *dev = ti->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176 struct dm_snapshot *snap;
1177 struct origin *o;
1178 chunk_t chunk_size = 0;
1179
1180 down_read(&_origins_lock);
1181 o = __lookup_origin(dev->bdev);
1182 if (o)
1183 list_for_each_entry (snap, &o->snapshots, list)
1184 chunk_size = min_not_zero(chunk_size, snap->chunk_size);
1185 up_read(&_origins_lock);
1186
1187 ti->split_io = chunk_size;
1188}
1189
1190static int origin_status(struct dm_target *ti, status_type_t type, char *result,
1191 unsigned int maxlen)
1192{
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001193 struct dm_dev *dev = ti->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194
1195 switch (type) {
1196 case STATUSTYPE_INFO:
1197 result[0] = '\0';
1198 break;
1199
1200 case STATUSTYPE_TABLE:
1201 snprintf(result, maxlen, "%s", dev->name);
1202 break;
1203 }
1204
1205 return 0;
1206}
1207
1208static struct target_type origin_target = {
1209 .name = "snapshot-origin",
Mark McLoughlin4c7e3bf2006-10-03 01:15:25 -07001210 .version = {1, 5, 0},
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211 .module = THIS_MODULE,
1212 .ctr = origin_ctr,
1213 .dtr = origin_dtr,
1214 .map = origin_map,
1215 .resume = origin_resume,
1216 .status = origin_status,
1217};
1218
1219static struct target_type snapshot_target = {
1220 .name = "snapshot",
Mark McLoughlin4c7e3bf2006-10-03 01:15:25 -07001221 .version = {1, 5, 0},
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 .module = THIS_MODULE,
1223 .ctr = snapshot_ctr,
1224 .dtr = snapshot_dtr,
1225 .map = snapshot_map,
1226 .resume = snapshot_resume,
1227 .status = snapshot_status,
1228};
1229
1230static int __init dm_snapshot_init(void)
1231{
1232 int r;
1233
1234 r = dm_register_target(&snapshot_target);
1235 if (r) {
1236 DMERR("snapshot target register failed %d", r);
1237 return r;
1238 }
1239
1240 r = dm_register_target(&origin_target);
1241 if (r < 0) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -07001242 DMERR("Origin target register failed %d", r);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243 goto bad1;
1244 }
1245
1246 r = init_origin_hash();
1247 if (r) {
1248 DMERR("init_origin_hash failed.");
1249 goto bad2;
1250 }
1251
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001252 exception_cache = KMEM_CACHE(dm_snap_exception, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253 if (!exception_cache) {
1254 DMERR("Couldn't create exception cache.");
1255 r = -ENOMEM;
1256 goto bad3;
1257 }
1258
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001259 pending_cache = KMEM_CACHE(dm_snap_pending_exception, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 if (!pending_cache) {
1261 DMERR("Couldn't create pending cache.");
1262 r = -ENOMEM;
1263 goto bad4;
1264 }
1265
Matthew Dobson93d23412006-03-26 01:37:50 -08001266 pending_pool = mempool_create_slab_pool(128, pending_cache);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267 if (!pending_pool) {
1268 DMERR("Couldn't create pending pool.");
1269 r = -ENOMEM;
1270 goto bad5;
1271 }
1272
Alasdair G Kergonca3a9312006-10-03 01:15:30 -07001273 ksnapd = create_singlethread_workqueue("ksnapd");
1274 if (!ksnapd) {
1275 DMERR("Failed to create ksnapd workqueue.");
1276 r = -ENOMEM;
1277 goto bad6;
1278 }
1279
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280 return 0;
1281
Alasdair G Kergonca3a9312006-10-03 01:15:30 -07001282 bad6:
1283 mempool_destroy(pending_pool);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284 bad5:
1285 kmem_cache_destroy(pending_cache);
1286 bad4:
1287 kmem_cache_destroy(exception_cache);
1288 bad3:
1289 exit_origin_hash();
1290 bad2:
1291 dm_unregister_target(&origin_target);
1292 bad1:
1293 dm_unregister_target(&snapshot_target);
1294 return r;
1295}
1296
1297static void __exit dm_snapshot_exit(void)
1298{
1299 int r;
1300
Alasdair G Kergonca3a9312006-10-03 01:15:30 -07001301 destroy_workqueue(ksnapd);
1302
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303 r = dm_unregister_target(&snapshot_target);
1304 if (r)
1305 DMERR("snapshot unregister failed %d", r);
1306
1307 r = dm_unregister_target(&origin_target);
1308 if (r)
1309 DMERR("origin unregister failed %d", r);
1310
1311 exit_origin_hash();
1312 mempool_destroy(pending_pool);
1313 kmem_cache_destroy(pending_cache);
1314 kmem_cache_destroy(exception_cache);
1315}
1316
1317/* Module hooks */
1318module_init(dm_snapshot_init);
1319module_exit(dm_snapshot_exit);
1320
1321MODULE_DESCRIPTION(DM_NAME " snapshot target");
1322MODULE_AUTHOR("Joe Thornber");
1323MODULE_LICENSE("GPL");