2 * Copyright (C) 2001-2002 Sistina Software (UK) Limited.
3 * Copyright (C) 2006-2008 Red Hat GmbH
5 * This file is released under the GPL.
8 #include "dm-exception-store.h"
10 #include <linux/ctype.h>
12 #include <linux/pagemap.h>
13 #include <linux/vmalloc.h>
14 #include <linux/module.h>
15 #include <linux/slab.h>
17 #define DM_MSG_PREFIX "snapshot exception stores"
19 static LIST_HEAD(_exception_store_types);
20 static DEFINE_SPINLOCK(_lock);
22 static struct dm_exception_store_type *__find_exception_store_type(const char *name)
24 struct dm_exception_store_type *type;
26 list_for_each_entry(type, &_exception_store_types, list)
27 if (!strcmp(name, type->name))
33 static struct dm_exception_store_type *_get_exception_store_type(const char *name)
35 struct dm_exception_store_type *type;
39 type = __find_exception_store_type(name);
41 if (type && !try_module_get(type->module))
53 * Attempt to retrieve the dm_exception_store_type by name. If not already
54 * available, attempt to load the appropriate module.
56 * Exstore modules are named "dm-exstore-" followed by the 'type_name'.
57 * Modules may contain multiple types.
58 * This function will first try the module "dm-exstore-<type_name>",
59 * then truncate 'type_name' on the last '-' and try again.
61 * For example, if type_name was "clustered-shared", it would search
62 * 'dm-exstore-clustered-shared' then 'dm-exstore-clustered'.
64 * 'dm-exception-store-<type_name>' is too long of a name in my
65 * opinion, which is why I've chosen to have the files
66 * containing exception store implementations be 'dm-exstore-<type_name>'.
67 * If you want your module to be autoloaded, you will follow this
70 * Returns: dm_exception_store_type* on success, NULL on failure
72 static struct dm_exception_store_type *get_type(const char *type_name)
74 char *p, *type_name_dup;
75 struct dm_exception_store_type *type;
77 type = _get_exception_store_type(type_name);
81 type_name_dup = kstrdup(type_name, GFP_KERNEL);
83 DMERR("No memory left to attempt load for \"%s\"", type_name);
87 while (request_module("dm-exstore-%s", type_name_dup) ||
88 !(type = _get_exception_store_type(type_name))) {
89 p = strrchr(type_name_dup, '-');
96 DMWARN("Module for exstore type \"%s\" not found.", type_name);
103 static void put_type(struct dm_exception_store_type *type)
106 module_put(type->module);
110 int dm_exception_store_type_register(struct dm_exception_store_type *type)
115 if (!__find_exception_store_type(type->name))
116 list_add(&type->list, &_exception_store_types);
123 EXPORT_SYMBOL(dm_exception_store_type_register);
125 int dm_exception_store_type_unregister(struct dm_exception_store_type *type)
129 if (!__find_exception_store_type(type->name)) {
134 list_del(&type->list);
140 EXPORT_SYMBOL(dm_exception_store_type_unregister);
142 static int set_chunk_size(struct dm_exception_store *store,
143 const char *chunk_size_arg, char **error)
147 if (kstrtouint(chunk_size_arg, 10, &chunk_size)) {
148 *error = "Invalid chunk size";
153 store->chunk_size = store->chunk_mask = store->chunk_shift = 0;
157 return dm_exception_store_set_chunk_size(store, chunk_size, error);
160 int dm_exception_store_set_chunk_size(struct dm_exception_store *store,
164 /* Check chunk_size is a power of 2 */
165 if (!is_power_of_2(chunk_size)) {
166 *error = "Chunk size is not a power of 2";
170 /* Validate the chunk size against the device block size */
172 (bdev_logical_block_size(dm_snap_cow(store->snap)->bdev) >> 9) ||
174 (bdev_logical_block_size(dm_snap_origin(store->snap)->bdev) >> 9)) {
175 *error = "Chunk size is not a multiple of device blocksize";
179 if (chunk_size > INT_MAX >> SECTOR_SHIFT) {
180 *error = "Chunk size is too high";
184 store->chunk_size = chunk_size;
185 store->chunk_mask = chunk_size - 1;
186 store->chunk_shift = __ffs(chunk_size);
191 int dm_exception_store_create(struct dm_target *ti, int argc, char **argv,
192 struct dm_snapshot *snap,
194 struct dm_exception_store **store)
197 struct dm_exception_store_type *type = NULL;
198 struct dm_exception_store *tmp_store;
202 ti->error = "Insufficient exception store arguments";
206 tmp_store = kzalloc(sizeof(*tmp_store), GFP_KERNEL);
208 ti->error = "Exception store allocation failed";
212 persistent = toupper(*argv[0]);
213 if (persistent == 'P')
214 type = get_type("P");
215 else if (persistent == 'N')
216 type = get_type("N");
218 ti->error = "Exception store type is not P or N";
224 ti->error = "Exception store type not recognised";
229 tmp_store->type = type;
230 tmp_store->snap = snap;
232 r = set_chunk_size(tmp_store, argv[1], &ti->error);
236 r = type->ctr(tmp_store, (strlen(argv[0]) > 1 ? &argv[0][1] : NULL));
238 ti->error = "Exception store type constructor failed";
252 EXPORT_SYMBOL(dm_exception_store_create);
254 void dm_exception_store_destroy(struct dm_exception_store *store)
256 store->type->dtr(store);
257 put_type(store->type);
260 EXPORT_SYMBOL(dm_exception_store_destroy);
262 int dm_exception_store_init(void)
266 r = dm_transient_snapshot_init();
268 DMERR("Unable to register transient exception store type.");
272 r = dm_persistent_snapshot_init();
274 DMERR("Unable to register persistent exception store type");
275 goto persistent_fail;
281 dm_transient_snapshot_exit();
286 void dm_exception_store_exit(void)
288 dm_persistent_snapshot_exit();
289 dm_transient_snapshot_exit();