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