blob: fad84654b045a12ab238eb11d5cb7d39bba006ad [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/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 * Allocate room for a suitable hash table.
338 */
339static int init_hash_tables(struct dm_snapshot *s)
340{
341 sector_t hash_size, cow_dev_size, origin_dev_size, max_buckets;
342
343 /*
344 * Calculate based on the size of the original volume or
345 * the COW volume...
346 */
347 cow_dev_size = get_dev_size(s->cow->bdev);
348 origin_dev_size = get_dev_size(s->origin->bdev);
349 max_buckets = calc_max_buckets();
350
351 hash_size = min(origin_dev_size, cow_dev_size) >> s->chunk_shift;
352 hash_size = min(hash_size, max_buckets);
353
Robert P. J. Day8defd832008-02-08 02:10:06 +0000354 hash_size = rounddown_pow_of_two(hash_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 if (init_exception_table(&s->complete, hash_size))
356 return -ENOMEM;
357
358 /*
359 * Allocate hash table for in-flight exceptions
360 * Make this smaller than the real hash table
361 */
362 hash_size >>= 3;
363 if (hash_size < 64)
364 hash_size = 64;
365
366 if (init_exception_table(&s->pending, hash_size)) {
367 exit_exception_table(&s->complete, exception_cache);
368 return -ENOMEM;
369 }
370
371 return 0;
372}
373
374/*
375 * Round a number up to the nearest 'size' boundary. size must
376 * be a power of 2.
377 */
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100378static ulong round_up(ulong n, ulong size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379{
380 size--;
381 return (n + size) & ~size;
382}
383
Mark McLoughlin4c7e3bf2006-10-03 01:15:25 -0700384static int set_chunk_size(struct dm_snapshot *s, const char *chunk_size_arg,
385 char **error)
386{
387 unsigned long chunk_size;
388 char *value;
389
390 chunk_size = simple_strtoul(chunk_size_arg, &value, 10);
391 if (*chunk_size_arg == '\0' || *value != '\0') {
392 *error = "Invalid chunk size";
393 return -EINVAL;
394 }
395
396 if (!chunk_size) {
397 s->chunk_size = s->chunk_mask = s->chunk_shift = 0;
398 return 0;
399 }
400
401 /*
402 * Chunk size must be multiple of page size. Silently
403 * round up if it's not.
404 */
405 chunk_size = round_up(chunk_size, PAGE_SIZE >> 9);
406
407 /* Check chunk_size is a power of 2 */
vignesh babu6f3c3f02007-10-19 22:38:44 +0100408 if (!is_power_of_2(chunk_size)) {
Mark McLoughlin4c7e3bf2006-10-03 01:15:25 -0700409 *error = "Chunk size is not a power of 2";
410 return -EINVAL;
411 }
412
413 /* Validate the chunk size against the device block size */
414 if (chunk_size % (bdev_hardsect_size(s->cow->bdev) >> 9)) {
415 *error = "Chunk size is not a multiple of device blocksize";
416 return -EINVAL;
417 }
418
419 s->chunk_size = chunk_size;
420 s->chunk_mask = chunk_size - 1;
421 s->chunk_shift = ffs(chunk_size) - 1;
422
423 return 0;
424}
425
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426/*
427 * Construct a snapshot mapping: <origin_dev> <COW-dev> <p/n> <chunk-size>
428 */
429static int snapshot_ctr(struct dm_target *ti, unsigned int argc, char **argv)
430{
431 struct dm_snapshot *s;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 int r = -EINVAL;
433 char persistent;
434 char *origin_path;
435 char *cow_path;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436
Mark McLoughlin4c7e3bf2006-10-03 01:15:25 -0700437 if (argc != 4) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700438 ti->error = "requires exactly 4 arguments";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 r = -EINVAL;
440 goto bad1;
441 }
442
443 origin_path = argv[0];
444 cow_path = argv[1];
445 persistent = toupper(*argv[2]);
446
447 if (persistent != 'P' && persistent != 'N') {
448 ti->error = "Persistent flag is not P or N";
449 r = -EINVAL;
450 goto bad1;
451 }
452
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 s = kmalloc(sizeof(*s), GFP_KERNEL);
454 if (s == NULL) {
455 ti->error = "Cannot allocate snapshot context private "
456 "structure";
457 r = -ENOMEM;
458 goto bad1;
459 }
460
461 r = dm_get_device(ti, origin_path, 0, ti->len, FMODE_READ, &s->origin);
462 if (r) {
463 ti->error = "Cannot get origin device";
464 goto bad2;
465 }
466
467 r = dm_get_device(ti, cow_path, 0, 0,
468 FMODE_READ | FMODE_WRITE, &s->cow);
469 if (r) {
470 dm_put_device(ti, s->origin);
471 ti->error = "Cannot get COW device";
472 goto bad2;
473 }
474
Mark McLoughlin4c7e3bf2006-10-03 01:15:25 -0700475 r = set_chunk_size(s, argv[3], &ti->error);
476 if (r)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 goto bad3;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 s->type = persistent;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480
481 s->valid = 1;
Alasdair G Kergonaa14ede2006-02-01 03:04:50 -0800482 s->active = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 s->last_percent = 0;
484 init_rwsem(&s->lock);
Alasdair G Kergonca3a9312006-10-03 01:15:30 -0700485 spin_lock_init(&s->pe_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 s->table = ti->table;
487
488 /* Allocate hash table for COW data */
489 if (init_hash_tables(s)) {
490 ti->error = "Unable to allocate hash table space";
491 r = -ENOMEM;
492 goto bad3;
493 }
494
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 s->store.snap = s;
496
497 if (persistent == 'P')
Mark McLoughlin4c7e3bf2006-10-03 01:15:25 -0700498 r = dm_create_persistent(&s->store);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 else
Mark McLoughlin4c7e3bf2006-10-03 01:15:25 -0700500 r = dm_create_transient(&s->store);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501
502 if (r) {
503 ti->error = "Couldn't create exception store";
504 r = -EINVAL;
505 goto bad4;
506 }
507
508 r = kcopyd_client_create(SNAPSHOT_PAGES, &s->kcopyd_client);
509 if (r) {
510 ti->error = "Could not create kcopyd client";
511 goto bad5;
512 }
513
Alasdair G Kergonaa14ede2006-02-01 03:04:50 -0800514 /* Metadata must only be loaded into one table at once */
Mark McLoughlinf9cea4f2006-10-03 01:15:25 -0700515 r = s->store.read_metadata(&s->store);
Milan Broz07641472007-07-12 17:28:13 +0100516 if (r < 0) {
Mark McLoughlinf9cea4f2006-10-03 01:15:25 -0700517 ti->error = "Failed to read snapshot metadata";
518 goto bad6;
Milan Broz07641472007-07-12 17:28:13 +0100519 } else if (r > 0) {
520 s->valid = 0;
521 DMWARN("Snapshot is marked invalid.");
Mark McLoughlinf9cea4f2006-10-03 01:15:25 -0700522 }
Alasdair G Kergonaa14ede2006-02-01 03:04:50 -0800523
Alasdair G Kergonca3a9312006-10-03 01:15:30 -0700524 bio_list_init(&s->queued_bios);
David Howellsc4028952006-11-22 14:57:56 +0000525 INIT_WORK(&s->queued_bios_work, flush_queued_bios);
Alasdair G Kergonca3a9312006-10-03 01:15:30 -0700526
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 /* Add snapshot to the list of snapshots for this origin */
Alasdair G Kergonaa14ede2006-02-01 03:04:50 -0800528 /* Exceptions aren't triggered till snapshot_resume() is called */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 if (register_snapshot(s)) {
530 r = -EINVAL;
531 ti->error = "Cannot register snapshot origin";
532 goto bad6;
533 }
534
535 ti->private = s;
Alasdair G Kergonc51c2752006-06-26 00:27:18 -0700536 ti->split_io = s->chunk_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537
538 return 0;
539
540 bad6:
541 kcopyd_client_destroy(s->kcopyd_client);
542
543 bad5:
544 s->store.destroy(&s->store);
545
546 bad4:
547 exit_exception_table(&s->pending, pending_cache);
548 exit_exception_table(&s->complete, exception_cache);
549
550 bad3:
551 dm_put_device(ti, s->cow);
552 dm_put_device(ti, s->origin);
553
554 bad2:
555 kfree(s);
556
557 bad1:
558 return r;
559}
560
Milan Broz31c93a02006-12-08 02:41:11 -0800561static void __free_exceptions(struct dm_snapshot *s)
562{
563 kcopyd_client_destroy(s->kcopyd_client);
564 s->kcopyd_client = NULL;
565
566 exit_exception_table(&s->pending, pending_cache);
567 exit_exception_table(&s->complete, exception_cache);
568
569 s->store.destroy(&s->store);
570}
571
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572static void snapshot_dtr(struct dm_target *ti)
573{
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100574 struct dm_snapshot *s = ti->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575
Alasdair G Kergonca3a9312006-10-03 01:15:30 -0700576 flush_workqueue(ksnapd);
577
Alasdair G Kergon138728dc2006-03-27 01:17:50 -0800578 /* Prevent further origin writes from using this snapshot. */
579 /* After this returns there can be no new kcopyd jobs. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 unregister_snapshot(s);
581
Milan Broz31c93a02006-12-08 02:41:11 -0800582 __free_exceptions(s);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583
584 dm_put_device(ti, s->origin);
585 dm_put_device(ti, s->cow);
Alasdair G Kergon138728dc2006-03-27 01:17:50 -0800586
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 kfree(s);
588}
589
590/*
591 * Flush a list of buffers.
592 */
593static void flush_bios(struct bio *bio)
594{
595 struct bio *n;
596
597 while (bio) {
598 n = bio->bi_next;
599 bio->bi_next = NULL;
600 generic_make_request(bio);
601 bio = n;
602 }
603}
604
David Howellsc4028952006-11-22 14:57:56 +0000605static void flush_queued_bios(struct work_struct *work)
Alasdair G Kergonca3a9312006-10-03 01:15:30 -0700606{
David Howellsc4028952006-11-22 14:57:56 +0000607 struct dm_snapshot *s =
608 container_of(work, struct dm_snapshot, queued_bios_work);
Alasdair G Kergonca3a9312006-10-03 01:15:30 -0700609 struct bio *queued_bios;
610 unsigned long flags;
611
612 spin_lock_irqsave(&s->pe_lock, flags);
613 queued_bios = bio_list_get(&s->queued_bios);
614 spin_unlock_irqrestore(&s->pe_lock, flags);
615
616 flush_bios(queued_bios);
617}
618
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619/*
620 * Error a list of buffers.
621 */
622static void error_bios(struct bio *bio)
623{
624 struct bio *n;
625
626 while (bio) {
627 n = bio->bi_next;
628 bio->bi_next = NULL;
NeilBrown6712ecf2007-09-27 12:47:43 +0200629 bio_io_error(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 bio = n;
631 }
632}
633
Alasdair G Kergon695368a2006-10-03 01:15:31 -0700634static void __invalidate_snapshot(struct dm_snapshot *s, int err)
Alasdair G Kergon76df1c62006-03-27 01:17:45 -0800635{
636 if (!s->valid)
637 return;
638
639 if (err == -EIO)
640 DMERR("Invalidating snapshot: Error reading/writing.");
641 else if (err == -ENOMEM)
642 DMERR("Invalidating snapshot: Unable to allocate exception.");
643
Alasdair G Kergon76df1c62006-03-27 01:17:45 -0800644 if (s->store.drop_snapshot)
645 s->store.drop_snapshot(&s->store);
646
647 s->valid = 0;
648
649 dm_table_event(s->table);
650}
651
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100652static void get_pending_exception(struct dm_snap_pending_exception *pe)
Alasdair G Kergon4b832e82006-10-03 01:15:30 -0700653{
654 atomic_inc(&pe->ref_count);
655}
656
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100657static struct bio *put_pending_exception(struct dm_snap_pending_exception *pe)
Alasdair G Kergon4b832e82006-10-03 01:15:30 -0700658{
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100659 struct dm_snap_pending_exception *primary_pe;
Alasdair G Kergon4b832e82006-10-03 01:15:30 -0700660 struct bio *origin_bios = NULL;
661
662 primary_pe = pe->primary_pe;
663
664 /*
665 * If this pe is involved in a write to the origin and
666 * it is the last sibling to complete then release
667 * the bios for the original write to the origin.
668 */
669 if (primary_pe &&
670 atomic_dec_and_test(&primary_pe->ref_count))
671 origin_bios = bio_list_get(&primary_pe->origin_bios);
672
673 /*
674 * Free the pe if it's not linked to an origin write or if
675 * it's not itself a primary pe.
676 */
677 if (!primary_pe || primary_pe != pe)
678 free_pending_exception(pe);
679
680 /*
681 * Free the primary pe if nothing references it.
682 */
683 if (primary_pe && !atomic_read(&primary_pe->ref_count))
684 free_pending_exception(primary_pe);
685
686 return origin_bios;
687}
688
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100689static void pending_complete(struct dm_snap_pending_exception *pe, int success)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690{
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100691 struct dm_snap_exception *e;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 struct dm_snapshot *s = pe->snap;
Alasdair G Kergon9d493fa2006-10-03 01:15:29 -0700693 struct bio *origin_bios = NULL;
694 struct bio *snapshot_bios = NULL;
695 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696
Alasdair G Kergon76df1c62006-03-27 01:17:45 -0800697 if (!success) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 /* Read/write error - snapshot is unusable */
699 down_write(&s->lock);
Alasdair G Kergon695368a2006-10-03 01:15:31 -0700700 __invalidate_snapshot(s, -EIO);
Alasdair G Kergon9d493fa2006-10-03 01:15:29 -0700701 error = 1;
Alasdair G Kergon76df1c62006-03-27 01:17:45 -0800702 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 }
704
Alasdair G Kergon76df1c62006-03-27 01:17:45 -0800705 e = alloc_exception();
706 if (!e) {
707 down_write(&s->lock);
Alasdair G Kergon695368a2006-10-03 01:15:31 -0700708 __invalidate_snapshot(s, -ENOMEM);
Alasdair G Kergon9d493fa2006-10-03 01:15:29 -0700709 error = 1;
Alasdair G Kergon76df1c62006-03-27 01:17:45 -0800710 goto out;
711 }
712 *e = pe->e;
713
Alasdair G Kergon9d493fa2006-10-03 01:15:29 -0700714 down_write(&s->lock);
715 if (!s->valid) {
716 free_exception(e);
717 error = 1;
718 goto out;
719 }
720
Alasdair G Kergon76df1c62006-03-27 01:17:45 -0800721 /*
722 * Add a proper exception, and remove the
723 * in-flight exception from the list.
724 */
Alasdair G Kergon76df1c62006-03-27 01:17:45 -0800725 insert_exception(&s->complete, e);
Alasdair G Kergon76df1c62006-03-27 01:17:45 -0800726
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 out:
Alasdair G Kergon695368a2006-10-03 01:15:31 -0700728 remove_exception(&pe->e);
Alasdair G Kergon9d493fa2006-10-03 01:15:29 -0700729 snapshot_bios = bio_list_get(&pe->snapshot_bios);
Alasdair G Kergon4b832e82006-10-03 01:15:30 -0700730 origin_bios = put_pending_exception(pe);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731
Alasdair G Kergon9d493fa2006-10-03 01:15:29 -0700732 up_write(&s->lock);
733
734 /* Submit any pending write bios */
735 if (error)
736 error_bios(snapshot_bios);
737 else
738 flush_bios(snapshot_bios);
739
740 flush_bios(origin_bios);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741}
742
743static void commit_callback(void *context, int success)
744{
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100745 struct dm_snap_pending_exception *pe = context;
746
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 pending_complete(pe, success);
748}
749
750/*
751 * Called when the copy I/O has finished. kcopyd actually runs
752 * this code so don't block.
753 */
754static void copy_callback(int read_err, unsigned int write_err, void *context)
755{
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100756 struct dm_snap_pending_exception *pe = context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 struct dm_snapshot *s = pe->snap;
758
759 if (read_err || write_err)
760 pending_complete(pe, 0);
761
762 else
763 /* Update the metadata if we are persistent */
764 s->store.commit_exception(&s->store, &pe->e, commit_callback,
765 pe);
766}
767
768/*
769 * Dispatches the copy operation to kcopyd.
770 */
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100771static void start_copy(struct dm_snap_pending_exception *pe)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772{
773 struct dm_snapshot *s = pe->snap;
774 struct io_region src, dest;
775 struct block_device *bdev = s->origin->bdev;
776 sector_t dev_size;
777
778 dev_size = get_dev_size(bdev);
779
780 src.bdev = bdev;
781 src.sector = chunk_to_sector(s, pe->e.old_chunk);
782 src.count = min(s->chunk_size, dev_size - src.sector);
783
784 dest.bdev = s->cow->bdev;
785 dest.sector = chunk_to_sector(s, pe->e.new_chunk);
786 dest.count = src.count;
787
788 /* Hand over to kcopyd */
789 kcopyd_copy(s->kcopyd_client,
790 &src, 1, &dest, 0, copy_callback, pe);
791}
792
793/*
794 * Looks to see if this snapshot already has a pending exception
795 * for this chunk, otherwise it allocates a new one and inserts
796 * it into the pending table.
797 *
798 * NOTE: a write lock must be held on snap->lock before calling
799 * this.
800 */
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100801static struct dm_snap_pending_exception *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802__find_pending_exception(struct dm_snapshot *s, struct bio *bio)
803{
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100804 struct dm_snap_exception *e;
805 struct dm_snap_pending_exception *pe;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 chunk_t chunk = sector_to_chunk(s, bio->bi_sector);
807
808 /*
809 * Is there a pending exception for this already ?
810 */
811 e = lookup_exception(&s->pending, chunk);
812 if (e) {
813 /* cast the exception to a pending exception */
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100814 pe = container_of(e, struct dm_snap_pending_exception, e);
Alasdair G Kergon76df1c62006-03-27 01:17:45 -0800815 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 }
817
Alasdair G Kergon76df1c62006-03-27 01:17:45 -0800818 /*
819 * Create a new pending exception, we don't want
820 * to hold the lock while we do this.
821 */
822 up_write(&s->lock);
823 pe = alloc_pending_exception();
824 down_write(&s->lock);
825
826 if (!s->valid) {
827 free_pending_exception(pe);
828 return NULL;
829 }
830
831 e = lookup_exception(&s->pending, chunk);
832 if (e) {
833 free_pending_exception(pe);
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100834 pe = container_of(e, struct dm_snap_pending_exception, e);
Alasdair G Kergon76df1c62006-03-27 01:17:45 -0800835 goto out;
836 }
837
838 pe->e.old_chunk = chunk;
839 bio_list_init(&pe->origin_bios);
840 bio_list_init(&pe->snapshot_bios);
841 pe->primary_pe = NULL;
Alasdair G Kergon4b832e82006-10-03 01:15:30 -0700842 atomic_set(&pe->ref_count, 0);
Alasdair G Kergon76df1c62006-03-27 01:17:45 -0800843 pe->snap = s;
844 pe->started = 0;
845
846 if (s->store.prepare_exception(&s->store, &pe->e)) {
847 free_pending_exception(pe);
848 return NULL;
849 }
850
Alasdair G Kergon4b832e82006-10-03 01:15:30 -0700851 get_pending_exception(pe);
Alasdair G Kergon76df1c62006-03-27 01:17:45 -0800852 insert_exception(&s->pending, &pe->e);
853
854 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 return pe;
856}
857
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100858static void remap_exception(struct dm_snapshot *s, struct dm_snap_exception *e,
859 struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860{
861 bio->bi_bdev = s->cow->bdev;
862 bio->bi_sector = chunk_to_sector(s, e->new_chunk) +
863 (bio->bi_sector & s->chunk_mask);
864}
865
866static int snapshot_map(struct dm_target *ti, struct bio *bio,
867 union map_info *map_context)
868{
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100869 struct dm_snap_exception *e;
870 struct dm_snapshot *s = ti->private;
Kiyoshi Uedad2a7ad22006-12-08 02:41:06 -0800871 int r = DM_MAPIO_REMAPPED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 chunk_t chunk;
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100873 struct dm_snap_pending_exception *pe = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874
875 chunk = sector_to_chunk(s, bio->bi_sector);
876
877 /* Full snapshots are not usable */
Alasdair G Kergon76df1c62006-03-27 01:17:45 -0800878 /* To get here the table must be live so s->active is always set. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 if (!s->valid)
Alasdair G Kergonf6a80ea2005-07-12 15:53:01 -0700880 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881
Alasdair G Kergonba40a2a2006-10-03 01:15:28 -0700882 /* FIXME: should only take write lock if we need
883 * to copy an exception */
884 down_write(&s->lock);
885
886 if (!s->valid) {
887 r = -EIO;
888 goto out_unlock;
889 }
890
891 /* If the block is already remapped - use that, else remap it */
892 e = lookup_exception(&s->complete, chunk);
893 if (e) {
894 remap_exception(s, e, bio);
895 goto out_unlock;
896 }
897
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 /*
899 * Write to snapshot - higher level takes care of RW/RO
900 * flags so we should only get this if we are
901 * writeable.
902 */
903 if (bio_rw(bio) == WRITE) {
Alasdair G Kergon76df1c62006-03-27 01:17:45 -0800904 pe = __find_pending_exception(s, bio);
905 if (!pe) {
Alasdair G Kergon695368a2006-10-03 01:15:31 -0700906 __invalidate_snapshot(s, -ENOMEM);
Alasdair G Kergon76df1c62006-03-27 01:17:45 -0800907 r = -EIO;
908 goto out_unlock;
909 }
910
911 remap_exception(s, &pe->e, bio);
912 bio_list_add(&pe->snapshot_bios, bio);
913
Kiyoshi Uedad2a7ad22006-12-08 02:41:06 -0800914 r = DM_MAPIO_SUBMITTED;
Alasdair G Kergonba40a2a2006-10-03 01:15:28 -0700915
Alasdair G Kergon76df1c62006-03-27 01:17:45 -0800916 if (!pe->started) {
917 /* this is protected by snap->lock */
918 pe->started = 1;
Alasdair G Kergonba40a2a2006-10-03 01:15:28 -0700919 up_write(&s->lock);
Alasdair G Kergon76df1c62006-03-27 01:17:45 -0800920 start_copy(pe);
Alasdair G Kergonba40a2a2006-10-03 01:15:28 -0700921 goto out;
922 }
923 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 /*
925 * FIXME: this read path scares me because we
926 * always use the origin when we have a pending
927 * exception. However I can't think of a
928 * situation where this is wrong - ejt.
929 */
Alasdair G Kergonba40a2a2006-10-03 01:15:28 -0700930 bio->bi_bdev = s->origin->bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931
Alasdair G Kergonba40a2a2006-10-03 01:15:28 -0700932 out_unlock:
933 up_write(&s->lock);
934 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 return r;
936}
937
938static void snapshot_resume(struct dm_target *ti)
939{
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100940 struct dm_snapshot *s = ti->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941
Alasdair G Kergonaa14ede2006-02-01 03:04:50 -0800942 down_write(&s->lock);
943 s->active = 1;
944 up_write(&s->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945}
946
947static int snapshot_status(struct dm_target *ti, status_type_t type,
948 char *result, unsigned int maxlen)
949{
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100950 struct dm_snapshot *snap = ti->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951
952 switch (type) {
953 case STATUSTYPE_INFO:
954 if (!snap->valid)
955 snprintf(result, maxlen, "Invalid");
956 else {
957 if (snap->store.fraction_full) {
958 sector_t numerator, denominator;
959 snap->store.fraction_full(&snap->store,
960 &numerator,
961 &denominator);
Andrew Morton4ee218c2006-03-27 01:17:48 -0800962 snprintf(result, maxlen, "%llu/%llu",
963 (unsigned long long)numerator,
964 (unsigned long long)denominator);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 }
966 else
967 snprintf(result, maxlen, "Unknown");
968 }
969 break;
970
971 case STATUSTYPE_TABLE:
972 /*
973 * kdevname returns a static pointer so we need
974 * to make private copies if the output is to
975 * make sense.
976 */
Andrew Morton4ee218c2006-03-27 01:17:48 -0800977 snprintf(result, maxlen, "%s %s %c %llu",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 snap->origin->name, snap->cow->name,
Andrew Morton4ee218c2006-03-27 01:17:48 -0800979 snap->type,
980 (unsigned long long)snap->chunk_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 break;
982 }
983
984 return 0;
985}
986
987/*-----------------------------------------------------------------
988 * Origin methods
989 *---------------------------------------------------------------*/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990static int __origin_write(struct list_head *snapshots, struct bio *bio)
991{
Kiyoshi Uedad2a7ad22006-12-08 02:41:06 -0800992 int r = DM_MAPIO_REMAPPED, first = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 struct dm_snapshot *snap;
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100994 struct dm_snap_exception *e;
995 struct dm_snap_pending_exception *pe, *next_pe, *primary_pe = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 chunk_t chunk;
Alasdair G Kergoneccf0812006-03-27 01:17:42 -0800997 LIST_HEAD(pe_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998
999 /* Do all the snapshots on this origin */
1000 list_for_each_entry (snap, snapshots, list) {
1001
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001002 down_write(&snap->lock);
1003
Alasdair G Kergonaa14ede2006-02-01 03:04:50 -08001004 /* Only deal with valid and active snapshots */
1005 if (!snap->valid || !snap->active)
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001006 goto next_snapshot;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007
Alasdair G Kergond5e404c2005-07-12 15:53:05 -07001008 /* Nothing to do if writing beyond end of snapshot */
1009 if (bio->bi_sector >= dm_table_get_size(snap->table))
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001010 goto next_snapshot;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011
1012 /*
1013 * Remember, different snapshots can have
1014 * different chunk sizes.
1015 */
1016 chunk = sector_to_chunk(snap, bio->bi_sector);
1017
1018 /*
1019 * Check exception table to see if block
1020 * is already remapped in this snapshot
1021 * and trigger an exception if not.
Alasdair G Kergonb4b610f2006-03-27 01:17:44 -08001022 *
Alasdair G Kergon4b832e82006-10-03 01:15:30 -07001023 * ref_count is initialised to 1 so pending_complete()
Alasdair G Kergonb4b610f2006-03-27 01:17:44 -08001024 * won't destroy the primary_pe while we're inside this loop.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 */
1026 e = lookup_exception(&snap->complete, chunk);
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001027 if (e)
1028 goto next_snapshot;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001030 pe = __find_pending_exception(snap, bio);
1031 if (!pe) {
Alasdair G Kergon695368a2006-10-03 01:15:31 -07001032 __invalidate_snapshot(snap, -ENOMEM);
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001033 goto next_snapshot;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 }
1035
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001036 if (!primary_pe) {
1037 /*
1038 * Either every pe here has same
1039 * primary_pe or none has one yet.
1040 */
1041 if (pe->primary_pe)
1042 primary_pe = pe->primary_pe;
1043 else {
1044 primary_pe = pe;
1045 first = 1;
1046 }
1047
1048 bio_list_add(&primary_pe->origin_bios, bio);
1049
Kiyoshi Uedad2a7ad22006-12-08 02:41:06 -08001050 r = DM_MAPIO_SUBMITTED;
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001051 }
1052
1053 if (!pe->primary_pe) {
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001054 pe->primary_pe = primary_pe;
Alasdair G Kergon4b832e82006-10-03 01:15:30 -07001055 get_pending_exception(primary_pe);
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001056 }
1057
1058 if (!pe->started) {
1059 pe->started = 1;
1060 list_add_tail(&pe->list, &pe_queue);
1061 }
1062
1063 next_snapshot:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 up_write(&snap->lock);
1065 }
1066
Alasdair G Kergonb4b610f2006-03-27 01:17:44 -08001067 if (!primary_pe)
Alasdair G Kergon4b832e82006-10-03 01:15:30 -07001068 return r;
Alasdair G Kergonb4b610f2006-03-27 01:17:44 -08001069
1070 /*
1071 * If this is the first time we're processing this chunk and
Alasdair G Kergon4b832e82006-10-03 01:15:30 -07001072 * ref_count is now 1 it means all the pending exceptions
Alasdair G Kergonb4b610f2006-03-27 01:17:44 -08001073 * got completed while we were in the loop above, so it falls to
1074 * us here to remove the primary_pe and submit any origin_bios.
1075 */
1076
Alasdair G Kergon4b832e82006-10-03 01:15:30 -07001077 if (first && atomic_dec_and_test(&primary_pe->ref_count)) {
Alasdair G Kergonb4b610f2006-03-27 01:17:44 -08001078 flush_bios(bio_list_get(&primary_pe->origin_bios));
1079 free_pending_exception(primary_pe);
1080 /* If we got here, pe_queue is necessarily empty. */
Alasdair G Kergon4b832e82006-10-03 01:15:30 -07001081 return r;
Alasdair G Kergonb4b610f2006-03-27 01:17:44 -08001082 }
1083
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 /*
1085 * Now that we have a complete pe list we can start the copying.
1086 */
Alasdair G Kergoneccf0812006-03-27 01:17:42 -08001087 list_for_each_entry_safe(pe, next_pe, &pe_queue, list)
1088 start_copy(pe);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089
1090 return r;
1091}
1092
1093/*
1094 * Called on a write from the origin driver.
1095 */
1096static int do_origin(struct dm_dev *origin, struct bio *bio)
1097{
1098 struct origin *o;
Kiyoshi Uedad2a7ad22006-12-08 02:41:06 -08001099 int r = DM_MAPIO_REMAPPED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100
1101 down_read(&_origins_lock);
1102 o = __lookup_origin(origin->bdev);
1103 if (o)
1104 r = __origin_write(&o->snapshots, bio);
1105 up_read(&_origins_lock);
1106
1107 return r;
1108}
1109
1110/*
1111 * Origin: maps a linear range of a device, with hooks for snapshotting.
1112 */
1113
1114/*
1115 * Construct an origin mapping: <dev_path>
1116 * The context for an origin is merely a 'struct dm_dev *'
1117 * pointing to the real device.
1118 */
1119static int origin_ctr(struct dm_target *ti, unsigned int argc, char **argv)
1120{
1121 int r;
1122 struct dm_dev *dev;
1123
1124 if (argc != 1) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -07001125 ti->error = "origin: incorrect number of arguments";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 return -EINVAL;
1127 }
1128
1129 r = dm_get_device(ti, argv[0], 0, ti->len,
1130 dm_table_get_mode(ti->table), &dev);
1131 if (r) {
1132 ti->error = "Cannot get target device";
1133 return r;
1134 }
1135
1136 ti->private = dev;
1137 return 0;
1138}
1139
1140static void origin_dtr(struct dm_target *ti)
1141{
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001142 struct dm_dev *dev = ti->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143 dm_put_device(ti, dev);
1144}
1145
1146static int origin_map(struct dm_target *ti, struct bio *bio,
1147 union map_info *map_context)
1148{
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001149 struct dm_dev *dev = ti->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150 bio->bi_bdev = dev->bdev;
1151
1152 /* Only tell snapshots if this is a write */
Kiyoshi Uedad2a7ad22006-12-08 02:41:06 -08001153 return (bio_rw(bio) == WRITE) ? do_origin(dev, bio) : DM_MAPIO_REMAPPED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154}
1155
1156#define min_not_zero(l, r) (l == 0) ? r : ((r == 0) ? l : min(l, r))
1157
1158/*
1159 * Set the target "split_io" field to the minimum of all the snapshots'
1160 * chunk sizes.
1161 */
1162static void origin_resume(struct dm_target *ti)
1163{
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001164 struct dm_dev *dev = ti->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165 struct dm_snapshot *snap;
1166 struct origin *o;
1167 chunk_t chunk_size = 0;
1168
1169 down_read(&_origins_lock);
1170 o = __lookup_origin(dev->bdev);
1171 if (o)
1172 list_for_each_entry (snap, &o->snapshots, list)
1173 chunk_size = min_not_zero(chunk_size, snap->chunk_size);
1174 up_read(&_origins_lock);
1175
1176 ti->split_io = chunk_size;
1177}
1178
1179static int origin_status(struct dm_target *ti, status_type_t type, char *result,
1180 unsigned int maxlen)
1181{
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001182 struct dm_dev *dev = ti->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183
1184 switch (type) {
1185 case STATUSTYPE_INFO:
1186 result[0] = '\0';
1187 break;
1188
1189 case STATUSTYPE_TABLE:
1190 snprintf(result, maxlen, "%s", dev->name);
1191 break;
1192 }
1193
1194 return 0;
1195}
1196
1197static struct target_type origin_target = {
1198 .name = "snapshot-origin",
Mark McLoughlin4c7e3bf2006-10-03 01:15:25 -07001199 .version = {1, 5, 0},
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 .module = THIS_MODULE,
1201 .ctr = origin_ctr,
1202 .dtr = origin_dtr,
1203 .map = origin_map,
1204 .resume = origin_resume,
1205 .status = origin_status,
1206};
1207
1208static struct target_type snapshot_target = {
1209 .name = "snapshot",
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 = snapshot_ctr,
1213 .dtr = snapshot_dtr,
1214 .map = snapshot_map,
1215 .resume = snapshot_resume,
1216 .status = snapshot_status,
1217};
1218
1219static int __init dm_snapshot_init(void)
1220{
1221 int r;
1222
1223 r = dm_register_target(&snapshot_target);
1224 if (r) {
1225 DMERR("snapshot target register failed %d", r);
1226 return r;
1227 }
1228
1229 r = dm_register_target(&origin_target);
1230 if (r < 0) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -07001231 DMERR("Origin target register failed %d", r);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 goto bad1;
1233 }
1234
1235 r = init_origin_hash();
1236 if (r) {
1237 DMERR("init_origin_hash failed.");
1238 goto bad2;
1239 }
1240
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001241 exception_cache = KMEM_CACHE(dm_snap_exception, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242 if (!exception_cache) {
1243 DMERR("Couldn't create exception cache.");
1244 r = -ENOMEM;
1245 goto bad3;
1246 }
1247
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001248 pending_cache = KMEM_CACHE(dm_snap_pending_exception, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 if (!pending_cache) {
1250 DMERR("Couldn't create pending cache.");
1251 r = -ENOMEM;
1252 goto bad4;
1253 }
1254
Matthew Dobson93d23412006-03-26 01:37:50 -08001255 pending_pool = mempool_create_slab_pool(128, pending_cache);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 if (!pending_pool) {
1257 DMERR("Couldn't create pending pool.");
1258 r = -ENOMEM;
1259 goto bad5;
1260 }
1261
Alasdair G Kergonca3a9312006-10-03 01:15:30 -07001262 ksnapd = create_singlethread_workqueue("ksnapd");
1263 if (!ksnapd) {
1264 DMERR("Failed to create ksnapd workqueue.");
1265 r = -ENOMEM;
1266 goto bad6;
1267 }
1268
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269 return 0;
1270
Alasdair G Kergonca3a9312006-10-03 01:15:30 -07001271 bad6:
1272 mempool_destroy(pending_pool);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 bad5:
1274 kmem_cache_destroy(pending_cache);
1275 bad4:
1276 kmem_cache_destroy(exception_cache);
1277 bad3:
1278 exit_origin_hash();
1279 bad2:
1280 dm_unregister_target(&origin_target);
1281 bad1:
1282 dm_unregister_target(&snapshot_target);
1283 return r;
1284}
1285
1286static void __exit dm_snapshot_exit(void)
1287{
1288 int r;
1289
Alasdair G Kergonca3a9312006-10-03 01:15:30 -07001290 destroy_workqueue(ksnapd);
1291
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 r = dm_unregister_target(&snapshot_target);
1293 if (r)
1294 DMERR("snapshot unregister failed %d", r);
1295
1296 r = dm_unregister_target(&origin_target);
1297 if (r)
1298 DMERR("origin unregister failed %d", r);
1299
1300 exit_origin_hash();
1301 mempool_destroy(pending_pool);
1302 kmem_cache_destroy(pending_cache);
1303 kmem_cache_destroy(exception_cache);
1304}
1305
1306/* Module hooks */
1307module_init(dm_snapshot_init);
1308module_exit(dm_snapshot_exit);
1309
1310MODULE_DESCRIPTION(DM_NAME " snapshot target");
1311MODULE_AUTHOR("Joe Thornber");
1312MODULE_LICENSE("GPL");