blob: 824cf31967c5715ad857ad636bb3076a986d6e67 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Heinz Mauelshagen6cca1e72007-05-09 02:33:02 -07002 * dm-exception-store.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
4 * Copyright (C) 2001-2002 Sistina Software (UK) Limited.
Heinz Mauelshagen6cca1e72007-05-09 02:33:02 -07005 * Copyright (C) 2006 Red Hat GmbH
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 *
7 * This file is released under the GPL.
8 */
9
10#include "dm.h"
11#include "dm-snap.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070012
13#include <linux/mm.h>
14#include <linux/pagemap.h>
15#include <linux/vmalloc.h>
16#include <linux/slab.h>
Alasdair G Kergona765e202008-04-24 22:02:01 +010017#include <linux/dm-io.h>
18#include <linux/dm-kcopyd.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019
Alasdair G Kergon72d94862006-06-26 00:27:35 -070020#define DM_MSG_PREFIX "snapshots"
Mark McLoughlin4c7e3bf2006-10-03 01:15:25 -070021#define DM_CHUNK_SIZE_DEFAULT_SECTORS 32 /* 16KB */
Alasdair G Kergon72d94862006-06-26 00:27:35 -070022
Linus Torvalds1da177e2005-04-16 15:20:36 -070023/*-----------------------------------------------------------------
24 * Persistent snapshots, by persistent we mean that the snapshot
25 * will survive a reboot.
26 *---------------------------------------------------------------*/
27
28/*
29 * We need to store a record of which parts of the origin have
30 * been copied to the snapshot device. The snapshot code
31 * requires that we copy exception chunks to chunk aligned areas
32 * of the COW store. It makes sense therefore, to store the
33 * metadata in chunk size blocks.
34 *
35 * There is no backward or forward compatibility implemented,
36 * snapshots with different disk versions than the kernel will
37 * not be usable. It is expected that "lvcreate" will blank out
38 * the start of a fresh COW device before calling the snapshot
39 * constructor.
40 *
41 * The first chunk of the COW device just contains the header.
42 * After this there is a chunk filled with exception metadata,
43 * followed by as many exception chunks as can fit in the
44 * metadata areas.
45 *
46 * All on disk structures are in little-endian format. The end
47 * of the exceptions info is indicated by an exception with a
48 * new_chunk of 0, which is invalid since it would point to the
49 * header chunk.
50 */
51
52/*
53 * Magic for persistent snapshots: "SnAp" - Feeble isn't it.
54 */
55#define SNAP_MAGIC 0x70416e53
56
57/*
58 * The on-disk version of the metadata.
59 */
60#define SNAPSHOT_DISK_VERSION 1
61
62struct disk_header {
63 uint32_t magic;
64
65 /*
66 * Is this snapshot valid. There is no way of recovering
67 * an invalid snapshot.
68 */
69 uint32_t valid;
70
71 /*
72 * Simple, incrementing version. no backward
73 * compatibility.
74 */
75 uint32_t version;
76
77 /* In sectors */
78 uint32_t chunk_size;
79};
80
81struct disk_exception {
82 uint64_t old_chunk;
83 uint64_t new_chunk;
84};
85
86struct commit_callback {
87 void (*callback)(void *, int success);
88 void *context;
89};
90
91/*
92 * The top level structure for a persistent exception store.
93 */
94struct pstore {
95 struct dm_snapshot *snap; /* up pointer to my snapshot */
96 int version;
97 int valid;
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 uint32_t exceptions_per_area;
99
100 /*
101 * Now that we have an asynchronous kcopyd there is no
102 * need for large chunk sizes, so it wont hurt to have a
103 * whole chunks worth of metadata in memory at once.
104 */
105 void *area;
106
107 /*
108 * Used to keep track of which metadata area the data in
109 * 'chunk' refers to.
110 */
111 uint32_t current_area;
112
113 /*
114 * The next free chunk for an exception.
115 */
116 uint32_t next_free;
117
118 /*
119 * The index of next free exception in the current
120 * metadata area.
121 */
122 uint32_t current_committed;
123
124 atomic_t pending_count;
125 uint32_t callback_count;
126 struct commit_callback *callbacks;
Heinz Mauelshagen6cca1e72007-05-09 02:33:02 -0700127 struct dm_io_client *io_client;
Milan Brozfcac03a2007-07-12 17:28:00 +0100128
129 struct workqueue_struct *metadata_wq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130};
131
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100132static unsigned sectors_to_pages(unsigned sectors)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133{
Mikulas Patocka92436262008-04-24 21:41:50 +0100134 return DIV_ROUND_UP(sectors, PAGE_SIZE >> 9);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135}
136
137static int alloc_area(struct pstore *ps)
138{
139 int r = -ENOMEM;
140 size_t len;
141
Alasdair G Kergonc51c2752006-06-26 00:27:18 -0700142 len = ps->snap->chunk_size << SECTOR_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
144 /*
145 * Allocate the chunk_size block of memory that will hold
146 * a single metadata area.
147 */
148 ps->area = vmalloc(len);
149 if (!ps->area)
150 return r;
151
152 return 0;
153}
154
155static void free_area(struct pstore *ps)
156{
157 vfree(ps->area);
Mark McLoughlin4c7e3bf2006-10-03 01:15:25 -0700158 ps->area = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159}
160
Milan Brozfcac03a2007-07-12 17:28:00 +0100161struct mdata_req {
Heinz Mauelshagen22a1ceb2008-04-24 21:43:17 +0100162 struct dm_io_region *where;
Milan Brozfcac03a2007-07-12 17:28:00 +0100163 struct dm_io_request *io_req;
164 struct work_struct work;
165 int result;
166};
167
168static void do_metadata(struct work_struct *work)
169{
170 struct mdata_req *req = container_of(work, struct mdata_req, work);
171
172 req->result = dm_io(req->io_req, 1, req->where, NULL);
173}
174
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175/*
176 * Read or write a chunk aligned and sized block of data from a device.
177 */
Milan Brozfcac03a2007-07-12 17:28:00 +0100178static int chunk_io(struct pstore *ps, uint32_t chunk, int rw, int metadata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179{
Heinz Mauelshagen22a1ceb2008-04-24 21:43:17 +0100180 struct dm_io_region where = {
Heinz Mauelshagen6cca1e72007-05-09 02:33:02 -0700181 .bdev = ps->snap->cow->bdev,
182 .sector = ps->snap->chunk_size * chunk,
183 .count = ps->snap->chunk_size,
184 };
185 struct dm_io_request io_req = {
186 .bi_rw = rw,
187 .mem.type = DM_IO_VMA,
188 .mem.ptr.vma = ps->area,
189 .client = ps->io_client,
190 .notify.fn = NULL,
191 };
Milan Brozfcac03a2007-07-12 17:28:00 +0100192 struct mdata_req req;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193
Milan Brozfcac03a2007-07-12 17:28:00 +0100194 if (!metadata)
195 return dm_io(&io_req, 1, &where, NULL);
196
197 req.where = &where;
198 req.io_req = &io_req;
199
200 /*
201 * Issue the synchronous I/O from a different thread
202 * to avoid generic_make_request recursion.
203 */
204 INIT_WORK(&req.work, do_metadata);
205 queue_work(ps->metadata_wq, &req.work);
206 flush_workqueue(ps->metadata_wq);
207
208 return req.result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209}
210
211/*
Mikulas Patockaa481db72008-10-10 13:37:00 +0100212 * Convert a metadata area index to a chunk index.
213 */
214static chunk_t area_location(struct pstore *ps, chunk_t area)
215{
216 return 1 + ((ps->exceptions_per_area + 1) * area);
217}
218
219/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 * Read or write a metadata area. Remembering to skip the first
221 * chunk which holds the header.
222 */
223static int area_io(struct pstore *ps, uint32_t area, int rw)
224{
225 int r;
226 uint32_t chunk;
227
Mikulas Patockaa481db72008-10-10 13:37:00 +0100228 chunk = area_location(ps, area);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229
Milan Brozfcac03a2007-07-12 17:28:00 +0100230 r = chunk_io(ps, chunk, rw, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 if (r)
232 return r;
233
234 ps->current_area = area;
235 return 0;
236}
237
238static int zero_area(struct pstore *ps, uint32_t area)
239{
Alasdair G Kergonc51c2752006-06-26 00:27:18 -0700240 memset(ps->area, 0, ps->snap->chunk_size << SECTOR_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 return area_io(ps, area, WRITE);
242}
243
244static int read_header(struct pstore *ps, int *new_snapshot)
245{
246 int r;
247 struct disk_header *dh;
Alasdair G Kergonc51c2752006-06-26 00:27:18 -0700248 chunk_t chunk_size;
Mark McLoughlin4c7e3bf2006-10-03 01:15:25 -0700249 int chunk_size_supplied = 1;
250
251 /*
252 * Use default chunk size (or hardsect_size, if larger) if none supplied
253 */
254 if (!ps->snap->chunk_size) {
255 ps->snap->chunk_size = max(DM_CHUNK_SIZE_DEFAULT_SECTORS,
256 bdev_hardsect_size(ps->snap->cow->bdev) >> 9);
257 ps->snap->chunk_mask = ps->snap->chunk_size - 1;
258 ps->snap->chunk_shift = ffs(ps->snap->chunk_size) - 1;
259 chunk_size_supplied = 0;
260 }
261
Heinz Mauelshagen6cca1e72007-05-09 02:33:02 -0700262 ps->io_client = dm_io_client_create(sectors_to_pages(ps->snap->
263 chunk_size));
264 if (IS_ERR(ps->io_client))
265 return PTR_ERR(ps->io_client);
Mark McLoughlin4c7e3bf2006-10-03 01:15:25 -0700266
267 r = alloc_area(ps);
268 if (r)
Heinz Mauelshagen6cca1e72007-05-09 02:33:02 -0700269 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270
Milan Brozfcac03a2007-07-12 17:28:00 +0100271 r = chunk_io(ps, 0, READ, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 if (r)
Heinz Mauelshagen6cca1e72007-05-09 02:33:02 -0700273 goto bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274
275 dh = (struct disk_header *) ps->area;
276
277 if (le32_to_cpu(dh->magic) == 0) {
278 *new_snapshot = 1;
Mark McLoughlin4c7e3bf2006-10-03 01:15:25 -0700279 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 }
281
Mark McLoughlin4c7e3bf2006-10-03 01:15:25 -0700282 if (le32_to_cpu(dh->magic) != SNAP_MAGIC) {
283 DMWARN("Invalid or corrupt snapshot");
284 r = -ENXIO;
Heinz Mauelshagen6cca1e72007-05-09 02:33:02 -0700285 goto bad;
Mark McLoughlin4c7e3bf2006-10-03 01:15:25 -0700286 }
287
288 *new_snapshot = 0;
289 ps->valid = le32_to_cpu(dh->valid);
290 ps->version = le32_to_cpu(dh->version);
291 chunk_size = le32_to_cpu(dh->chunk_size);
292
293 if (!chunk_size_supplied || ps->snap->chunk_size == chunk_size)
294 return 0;
295
296 DMWARN("chunk size %llu in device metadata overrides "
297 "table chunk size of %llu.",
298 (unsigned long long)chunk_size,
299 (unsigned long long)ps->snap->chunk_size);
300
301 /* We had a bogus chunk_size. Fix stuff up. */
Mark McLoughlin4c7e3bf2006-10-03 01:15:25 -0700302 free_area(ps);
303
304 ps->snap->chunk_size = chunk_size;
305 ps->snap->chunk_mask = chunk_size - 1;
306 ps->snap->chunk_shift = ffs(chunk_size) - 1;
307
Heinz Mauelshagen6cca1e72007-05-09 02:33:02 -0700308 r = dm_io_client_resize(sectors_to_pages(ps->snap->chunk_size),
309 ps->io_client);
Mark McLoughlin4c7e3bf2006-10-03 01:15:25 -0700310 if (r)
311 return r;
312
313 r = alloc_area(ps);
Heinz Mauelshagen6cca1e72007-05-09 02:33:02 -0700314 return r;
Mark McLoughlin4c7e3bf2006-10-03 01:15:25 -0700315
Heinz Mauelshagen6cca1e72007-05-09 02:33:02 -0700316bad:
Mark McLoughlin4c7e3bf2006-10-03 01:15:25 -0700317 free_area(ps);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 return r;
319}
320
321static int write_header(struct pstore *ps)
322{
323 struct disk_header *dh;
324
Alasdair G Kergonc51c2752006-06-26 00:27:18 -0700325 memset(ps->area, 0, ps->snap->chunk_size << SECTOR_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326
327 dh = (struct disk_header *) ps->area;
328 dh->magic = cpu_to_le32(SNAP_MAGIC);
329 dh->valid = cpu_to_le32(ps->valid);
330 dh->version = cpu_to_le32(ps->version);
Alasdair G Kergonc51c2752006-06-26 00:27:18 -0700331 dh->chunk_size = cpu_to_le32(ps->snap->chunk_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332
Milan Brozfcac03a2007-07-12 17:28:00 +0100333 return chunk_io(ps, 0, WRITE, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334}
335
336/*
337 * Access functions for the disk exceptions, these do the endian conversions.
338 */
339static struct disk_exception *get_exception(struct pstore *ps, uint32_t index)
340{
Mark McLoughline4ff4962006-10-03 01:15:26 -0700341 BUG_ON(index >= ps->exceptions_per_area);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342
343 return ((struct disk_exception *) ps->area) + index;
344}
345
Mark McLoughline4ff4962006-10-03 01:15:26 -0700346static void read_exception(struct pstore *ps,
347 uint32_t index, struct disk_exception *result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348{
Mark McLoughline4ff4962006-10-03 01:15:26 -0700349 struct disk_exception *e = get_exception(ps, index);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350
351 /* copy it */
352 result->old_chunk = le64_to_cpu(e->old_chunk);
353 result->new_chunk = le64_to_cpu(e->new_chunk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354}
355
Mark McLoughline4ff4962006-10-03 01:15:26 -0700356static void write_exception(struct pstore *ps,
357 uint32_t index, struct disk_exception *de)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358{
Mark McLoughline4ff4962006-10-03 01:15:26 -0700359 struct disk_exception *e = get_exception(ps, index);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360
361 /* copy it */
362 e->old_chunk = cpu_to_le64(de->old_chunk);
363 e->new_chunk = cpu_to_le64(de->new_chunk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364}
365
366/*
367 * Registers the exceptions that are present in the current area.
368 * 'full' is filled in to indicate if the area has been
369 * filled.
370 */
371static int insert_exceptions(struct pstore *ps, int *full)
372{
373 int r;
374 unsigned int i;
375 struct disk_exception de;
376
377 /* presume the area is full */
378 *full = 1;
379
380 for (i = 0; i < ps->exceptions_per_area; i++) {
Mark McLoughline4ff4962006-10-03 01:15:26 -0700381 read_exception(ps, i, &de);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382
383 /*
384 * If the new_chunk is pointing at the start of
385 * the COW device, where the first metadata area
386 * is we know that we've hit the end of the
387 * exceptions. Therefore the area is not full.
388 */
389 if (de.new_chunk == 0LL) {
390 ps->current_committed = i;
391 *full = 0;
392 break;
393 }
394
395 /*
396 * Keep track of the start of the free chunks.
397 */
398 if (ps->next_free <= de.new_chunk)
399 ps->next_free = de.new_chunk + 1;
400
401 /*
402 * Otherwise we add the exception to the snapshot.
403 */
404 r = dm_add_exception(ps->snap, de.old_chunk, de.new_chunk);
405 if (r)
406 return r;
407 }
408
409 return 0;
410}
411
412static int read_exceptions(struct pstore *ps)
413{
414 uint32_t area;
415 int r, full = 1;
416
417 /*
418 * Keeping reading chunks and inserting exceptions until
419 * we find a partially full area.
420 */
421 for (area = 0; full; area++) {
422 r = area_io(ps, area, READ);
423 if (r)
424 return r;
425
426 r = insert_exceptions(ps, &full);
427 if (r)
428 return r;
429 }
430
431 return 0;
432}
433
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100434static struct pstore *get_info(struct exception_store *store)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435{
436 return (struct pstore *) store->context;
437}
438
439static void persistent_fraction_full(struct exception_store *store,
440 sector_t *numerator, sector_t *denominator)
441{
442 *numerator = get_info(store)->next_free * store->snap->chunk_size;
443 *denominator = get_dev_size(store->snap->cow->bdev);
444}
445
446static void persistent_destroy(struct exception_store *store)
447{
448 struct pstore *ps = get_info(store);
449
Milan Brozfcac03a2007-07-12 17:28:00 +0100450 destroy_workqueue(ps->metadata_wq);
Heinz Mauelshagen6cca1e72007-05-09 02:33:02 -0700451 dm_io_client_destroy(ps->io_client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 vfree(ps->callbacks);
453 free_area(ps);
454 kfree(ps);
455}
456
457static int persistent_read_metadata(struct exception_store *store)
458{
Andrew Mortone48b9db2008-02-08 02:10:11 +0000459 int r, uninitialized_var(new_snapshot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 struct pstore *ps = get_info(store);
461
462 /*
463 * Read the snapshot header.
464 */
465 r = read_header(ps, &new_snapshot);
466 if (r)
467 return r;
468
469 /*
Alasdair G Kergonc51c2752006-06-26 00:27:18 -0700470 * Now we know correct chunk_size, complete the initialisation.
471 */
472 ps->exceptions_per_area = (ps->snap->chunk_size << SECTOR_SHIFT) /
473 sizeof(struct disk_exception);
474 ps->callbacks = dm_vcalloc(ps->exceptions_per_area,
475 sizeof(*ps->callbacks));
476 if (!ps->callbacks)
477 return -ENOMEM;
478
479 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 * Do we need to setup a new snapshot ?
481 */
482 if (new_snapshot) {
483 r = write_header(ps);
484 if (r) {
485 DMWARN("write_header failed");
486 return r;
487 }
488
489 r = zero_area(ps, 0);
490 if (r) {
491 DMWARN("zero_area(0) failed");
492 return r;
493 }
494
495 } else {
496 /*
497 * Sanity checks.
498 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 if (ps->version != SNAPSHOT_DISK_VERSION) {
500 DMWARN("unable to handle snapshot disk version %d",
501 ps->version);
502 return -EINVAL;
503 }
504
505 /*
Milan Broz07641472007-07-12 17:28:13 +0100506 * Metadata are valid, but snapshot is invalidated
507 */
508 if (!ps->valid)
509 return 1;
510
511 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 * Read the metadata.
513 */
514 r = read_exceptions(ps);
515 if (r)
516 return r;
517 }
518
519 return 0;
520}
521
522static int persistent_prepare(struct exception_store *store,
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100523 struct dm_snap_exception *e)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524{
525 struct pstore *ps = get_info(store);
526 uint32_t stride;
527 sector_t size = get_dev_size(store->snap->cow->bdev);
528
529 /* Is there enough room ? */
530 if (size < ((ps->next_free + 1) * store->snap->chunk_size))
531 return -ENOSPC;
532
533 e->new_chunk = ps->next_free;
534
535 /*
536 * Move onto the next free pending, making sure to take
537 * into account the location of the metadata chunks.
538 */
539 stride = (ps->exceptions_per_area + 1);
540 if ((++ps->next_free % stride) == 1)
541 ps->next_free++;
542
543 atomic_inc(&ps->pending_count);
544 return 0;
545}
546
547static void persistent_commit(struct exception_store *store,
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100548 struct dm_snap_exception *e,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 void (*callback) (void *, int success),
550 void *callback_context)
551{
552 int r;
553 unsigned int i;
554 struct pstore *ps = get_info(store);
555 struct disk_exception de;
556 struct commit_callback *cb;
557
558 de.old_chunk = e->old_chunk;
559 de.new_chunk = e->new_chunk;
560 write_exception(ps, ps->current_committed++, &de);
561
562 /*
563 * Add the callback to the back of the array. This code
564 * is the only place where the callback array is
565 * manipulated, and we know that it will never be called
566 * multiple times concurrently.
567 */
568 cb = ps->callbacks + ps->callback_count++;
569 cb->callback = callback;
570 cb->context = callback_context;
571
572 /*
573 * If there are no more exceptions in flight, or we have
574 * filled this metadata area we commit the exceptions to
575 * disk.
576 */
577 if (atomic_dec_and_test(&ps->pending_count) ||
578 (ps->current_committed == ps->exceptions_per_area)) {
579 r = area_io(ps, ps->current_area, WRITE);
580 if (r)
581 ps->valid = 0;
582
Mark McLoughlin927ffe72006-10-03 01:15:27 -0700583 /*
584 * Have we completely filled the current area ?
585 */
586 if (ps->current_committed == ps->exceptions_per_area) {
587 ps->current_committed = 0;
588 r = zero_area(ps, ps->current_area + 1);
589 if (r)
590 ps->valid = 0;
591 }
592
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 for (i = 0; i < ps->callback_count; i++) {
594 cb = ps->callbacks + i;
595 cb->callback(cb->context, r == 0 ? 1 : 0);
596 }
597
598 ps->callback_count = 0;
599 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600}
601
602static void persistent_drop(struct exception_store *store)
603{
604 struct pstore *ps = get_info(store);
605
606 ps->valid = 0;
607 if (write_header(ps))
608 DMWARN("write header failed");
609}
610
Mark McLoughlin4c7e3bf2006-10-03 01:15:25 -0700611int dm_create_persistent(struct exception_store *store)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 struct pstore *ps;
614
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 /* allocate the pstore */
616 ps = kmalloc(sizeof(*ps), GFP_KERNEL);
Mark McLoughlin4c7e3bf2006-10-03 01:15:25 -0700617 if (!ps)
618 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619
620 ps->snap = store->snap;
621 ps->valid = 1;
622 ps->version = SNAPSHOT_DISK_VERSION;
Mark McLoughlin4c7e3bf2006-10-03 01:15:25 -0700623 ps->area = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 ps->next_free = 2; /* skipping the header and first area */
625 ps->current_committed = 0;
626
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 ps->callback_count = 0;
628 atomic_set(&ps->pending_count, 0);
Alasdair G Kergonc51c2752006-06-26 00:27:18 -0700629 ps->callbacks = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630
Milan Brozfcac03a2007-07-12 17:28:00 +0100631 ps->metadata_wq = create_singlethread_workqueue("ksnaphd");
632 if (!ps->metadata_wq) {
Jesper Juhl851a8a72007-07-18 00:49:08 -0700633 kfree(ps);
Milan Brozfcac03a2007-07-12 17:28:00 +0100634 DMERR("couldn't start header metadata update thread");
635 return -ENOMEM;
636 }
637
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 store->destroy = persistent_destroy;
639 store->read_metadata = persistent_read_metadata;
640 store->prepare_exception = persistent_prepare;
641 store->commit_exception = persistent_commit;
642 store->drop_snapshot = persistent_drop;
643 store->fraction_full = persistent_fraction_full;
644 store->context = ps;
645
646 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647}
648
649/*-----------------------------------------------------------------
650 * Implementation of the store for non-persistent snapshots.
651 *---------------------------------------------------------------*/
652struct transient_c {
653 sector_t next_free;
654};
655
656static void transient_destroy(struct exception_store *store)
657{
658 kfree(store->context);
659}
660
661static int transient_read_metadata(struct exception_store *store)
662{
663 return 0;
664}
665
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100666static int transient_prepare(struct exception_store *store,
667 struct dm_snap_exception *e)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668{
669 struct transient_c *tc = (struct transient_c *) store->context;
670 sector_t size = get_dev_size(store->snap->cow->bdev);
671
672 if (size < (tc->next_free + store->snap->chunk_size))
673 return -1;
674
675 e->new_chunk = sector_to_chunk(store->snap, tc->next_free);
676 tc->next_free += store->snap->chunk_size;
677
678 return 0;
679}
680
681static void transient_commit(struct exception_store *store,
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100682 struct dm_snap_exception *e,
683 void (*callback) (void *, int success),
684 void *callback_context)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685{
686 /* Just succeed */
687 callback(callback_context, 1);
688}
689
690static void transient_fraction_full(struct exception_store *store,
691 sector_t *numerator, sector_t *denominator)
692{
693 *numerator = ((struct transient_c *) store->context)->next_free;
694 *denominator = get_dev_size(store->snap->cow->bdev);
695}
696
Mark McLoughlin4c7e3bf2006-10-03 01:15:25 -0700697int dm_create_transient(struct exception_store *store)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698{
699 struct transient_c *tc;
700
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 store->destroy = transient_destroy;
702 store->read_metadata = transient_read_metadata;
703 store->prepare_exception = transient_prepare;
704 store->commit_exception = transient_commit;
Mark McLoughlin4c7e3bf2006-10-03 01:15:25 -0700705 store->drop_snapshot = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 store->fraction_full = transient_fraction_full;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707
708 tc = kmalloc(sizeof(struct transient_c), GFP_KERNEL);
709 if (!tc)
710 return -ENOMEM;
711
712 tc->next_free = 0;
713 store->context = tc;
714
715 return 0;
716}