Alasdair G Kergon | 4db6bfe | 2009-01-06 03:05:17 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2001-2002 Sistina Software (UK) Limited. |
| 3 | * Copyright (C) 2006-2008 Red Hat GmbH |
| 4 | * |
| 5 | * This file is released under the GPL. |
| 6 | */ |
| 7 | |
| 8 | #include "dm-exception-store.h" |
Alasdair G Kergon | 4db6bfe | 2009-01-06 03:05:17 +0000 | [diff] [blame] | 9 | |
| 10 | #include <linux/mm.h> |
| 11 | #include <linux/pagemap.h> |
| 12 | #include <linux/vmalloc.h> |
Paul Gortmaker | daaa5f7 | 2011-05-27 15:50:58 -0400 | [diff] [blame] | 13 | #include <linux/export.h> |
Alasdair G Kergon | 4db6bfe | 2009-01-06 03:05:17 +0000 | [diff] [blame] | 14 | #include <linux/slab.h> |
| 15 | #include <linux/dm-io.h> |
| 16 | |
| 17 | #define DM_MSG_PREFIX "transient snapshot" |
| 18 | |
| 19 | /*----------------------------------------------------------------- |
| 20 | * Implementation of the store for non-persistent snapshots. |
| 21 | *---------------------------------------------------------------*/ |
| 22 | struct transient_c { |
| 23 | sector_t next_free; |
| 24 | }; |
| 25 | |
Jonathan Brassow | 493df71 | 2009-04-02 19:55:31 +0100 | [diff] [blame] | 26 | static void transient_dtr(struct dm_exception_store *store) |
Alasdair G Kergon | 4db6bfe | 2009-01-06 03:05:17 +0000 | [diff] [blame] | 27 | { |
| 28 | kfree(store->context); |
| 29 | } |
| 30 | |
Jonathan Brassow | a159c1a | 2009-01-06 03:05:19 +0000 | [diff] [blame] | 31 | static int transient_read_metadata(struct dm_exception_store *store, |
| 32 | int (*callback)(void *callback_context, |
| 33 | chunk_t old, chunk_t new), |
| 34 | void *callback_context) |
Alasdair G Kergon | 4db6bfe | 2009-01-06 03:05:17 +0000 | [diff] [blame] | 35 | { |
| 36 | return 0; |
| 37 | } |
| 38 | |
Jonathan Brassow | a159c1a | 2009-01-06 03:05:19 +0000 | [diff] [blame] | 39 | static int transient_prepare_exception(struct dm_exception_store *store, |
Jon Brassow | 1d4989c | 2009-12-10 23:52:10 +0000 | [diff] [blame] | 40 | struct dm_exception *e) |
Alasdair G Kergon | 4db6bfe | 2009-01-06 03:05:17 +0000 | [diff] [blame] | 41 | { |
Jonathan Brassow | b2a1146 | 2009-04-02 19:55:30 +0100 | [diff] [blame] | 42 | struct transient_c *tc = store->context; |
Mike Snitzer | fc56f6f | 2009-12-10 23:52:12 +0000 | [diff] [blame] | 43 | sector_t size = get_dev_size(dm_snap_cow(store->snap)->bdev); |
Alasdair G Kergon | 4db6bfe | 2009-01-06 03:05:17 +0000 | [diff] [blame] | 44 | |
Jonathan Brassow | d021684 | 2009-04-02 19:55:32 +0100 | [diff] [blame] | 45 | if (size < (tc->next_free + store->chunk_size)) |
Alasdair G Kergon | 4db6bfe | 2009-01-06 03:05:17 +0000 | [diff] [blame] | 46 | return -1; |
| 47 | |
Jonathan Brassow | 71fab00 | 2009-04-02 19:55:33 +0100 | [diff] [blame] | 48 | e->new_chunk = sector_to_chunk(store, tc->next_free); |
Jonathan Brassow | d021684 | 2009-04-02 19:55:32 +0100 | [diff] [blame] | 49 | tc->next_free += store->chunk_size; |
Alasdair G Kergon | 4db6bfe | 2009-01-06 03:05:17 +0000 | [diff] [blame] | 50 | |
| 51 | return 0; |
| 52 | } |
| 53 | |
Jonathan Brassow | a159c1a | 2009-01-06 03:05:19 +0000 | [diff] [blame] | 54 | static void transient_commit_exception(struct dm_exception_store *store, |
Jon Brassow | 1d4989c | 2009-12-10 23:52:10 +0000 | [diff] [blame] | 55 | struct dm_exception *e, |
Jonathan Brassow | a159c1a | 2009-01-06 03:05:19 +0000 | [diff] [blame] | 56 | void (*callback) (void *, int success), |
| 57 | void *callback_context) |
Alasdair G Kergon | 4db6bfe | 2009-01-06 03:05:17 +0000 | [diff] [blame] | 58 | { |
| 59 | /* Just succeed */ |
| 60 | callback(callback_context, 1); |
| 61 | } |
| 62 | |
Mike Snitzer | 985903b | 2009-12-10 23:52:11 +0000 | [diff] [blame] | 63 | static void transient_usage(struct dm_exception_store *store, |
| 64 | sector_t *total_sectors, |
| 65 | sector_t *sectors_allocated, |
| 66 | sector_t *metadata_sectors) |
Alasdair G Kergon | 4db6bfe | 2009-01-06 03:05:17 +0000 | [diff] [blame] | 67 | { |
Mike Snitzer | 985903b | 2009-12-10 23:52:11 +0000 | [diff] [blame] | 68 | *sectors_allocated = ((struct transient_c *) store->context)->next_free; |
Mike Snitzer | fc56f6f | 2009-12-10 23:52:12 +0000 | [diff] [blame] | 69 | *total_sectors = get_dev_size(dm_snap_cow(store->snap)->bdev); |
Mike Snitzer | 985903b | 2009-12-10 23:52:11 +0000 | [diff] [blame] | 70 | *metadata_sectors = 0; |
Alasdair G Kergon | 4db6bfe | 2009-01-06 03:05:17 +0000 | [diff] [blame] | 71 | } |
| 72 | |
Jonathan Brassow | 493df71 | 2009-04-02 19:55:31 +0100 | [diff] [blame] | 73 | static int transient_ctr(struct dm_exception_store *store, |
| 74 | unsigned argc, char **argv) |
Alasdair G Kergon | 4db6bfe | 2009-01-06 03:05:17 +0000 | [diff] [blame] | 75 | { |
| 76 | struct transient_c *tc; |
| 77 | |
Alasdair G Kergon | 4db6bfe | 2009-01-06 03:05:17 +0000 | [diff] [blame] | 78 | tc = kmalloc(sizeof(struct transient_c), GFP_KERNEL); |
| 79 | if (!tc) |
| 80 | return -ENOMEM; |
| 81 | |
| 82 | tc->next_free = 0; |
| 83 | store->context = tc; |
| 84 | |
| 85 | return 0; |
| 86 | } |
| 87 | |
Jonathan Brassow | 1e302a9 | 2009-04-02 19:55:35 +0100 | [diff] [blame] | 88 | static unsigned transient_status(struct dm_exception_store *store, |
| 89 | status_type_t status, char *result, |
| 90 | unsigned maxlen) |
Jonathan Brassow | 493df71 | 2009-04-02 19:55:31 +0100 | [diff] [blame] | 91 | { |
Jonathan Brassow | 1e302a9 | 2009-04-02 19:55:35 +0100 | [diff] [blame] | 92 | unsigned sz = 0; |
| 93 | |
| 94 | switch (status) { |
| 95 | case STATUSTYPE_INFO: |
| 96 | break; |
| 97 | case STATUSTYPE_TABLE: |
Mike Snitzer | fc56f6f | 2009-12-10 23:52:12 +0000 | [diff] [blame] | 98 | DMEMIT(" N %llu", (unsigned long long)store->chunk_size); |
Jonathan Brassow | 1e302a9 | 2009-04-02 19:55:35 +0100 | [diff] [blame] | 99 | } |
Jonathan Brassow | 493df71 | 2009-04-02 19:55:31 +0100 | [diff] [blame] | 100 | |
| 101 | return sz; |
| 102 | } |
| 103 | |
| 104 | static struct dm_exception_store_type _transient_type = { |
| 105 | .name = "transient", |
| 106 | .module = THIS_MODULE, |
| 107 | .ctr = transient_ctr, |
| 108 | .dtr = transient_dtr, |
| 109 | .read_metadata = transient_read_metadata, |
| 110 | .prepare_exception = transient_prepare_exception, |
| 111 | .commit_exception = transient_commit_exception, |
Mike Snitzer | 985903b | 2009-12-10 23:52:11 +0000 | [diff] [blame] | 112 | .usage = transient_usage, |
Jonathan Brassow | 493df71 | 2009-04-02 19:55:31 +0100 | [diff] [blame] | 113 | .status = transient_status, |
| 114 | }; |
| 115 | |
| 116 | static struct dm_exception_store_type _transient_compat_type = { |
| 117 | .name = "N", |
| 118 | .module = THIS_MODULE, |
| 119 | .ctr = transient_ctr, |
| 120 | .dtr = transient_dtr, |
| 121 | .read_metadata = transient_read_metadata, |
| 122 | .prepare_exception = transient_prepare_exception, |
| 123 | .commit_exception = transient_commit_exception, |
Mike Snitzer | 985903b | 2009-12-10 23:52:11 +0000 | [diff] [blame] | 124 | .usage = transient_usage, |
Jonathan Brassow | 493df71 | 2009-04-02 19:55:31 +0100 | [diff] [blame] | 125 | .status = transient_status, |
| 126 | }; |
| 127 | |
Alasdair G Kergon | 4db6bfe | 2009-01-06 03:05:17 +0000 | [diff] [blame] | 128 | int dm_transient_snapshot_init(void) |
| 129 | { |
Jonathan Brassow | 493df71 | 2009-04-02 19:55:31 +0100 | [diff] [blame] | 130 | int r; |
| 131 | |
| 132 | r = dm_exception_store_type_register(&_transient_type); |
| 133 | if (r) { |
| 134 | DMWARN("Unable to register transient exception store type"); |
| 135 | return r; |
| 136 | } |
| 137 | |
| 138 | r = dm_exception_store_type_register(&_transient_compat_type); |
| 139 | if (r) { |
| 140 | DMWARN("Unable to register old-style transient " |
| 141 | "exception store type"); |
| 142 | dm_exception_store_type_unregister(&_transient_type); |
| 143 | return r; |
| 144 | } |
| 145 | |
| 146 | return r; |
Alasdair G Kergon | 4db6bfe | 2009-01-06 03:05:17 +0000 | [diff] [blame] | 147 | } |
| 148 | |
| 149 | void dm_transient_snapshot_exit(void) |
| 150 | { |
Jonathan Brassow | 493df71 | 2009-04-02 19:55:31 +0100 | [diff] [blame] | 151 | dm_exception_store_type_unregister(&_transient_type); |
| 152 | dm_exception_store_type_unregister(&_transient_compat_type); |
Alasdair G Kergon | 4db6bfe | 2009-01-06 03:05:17 +0000 | [diff] [blame] | 153 | } |