blob: e3cf5686d0aa0221d91610861255f4d3444e31e6 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Copyright (C) 2001, 2002 Sistina Software (UK) Limited.
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07003 * Copyright (C) 2004 - 2006 Red Hat, Inc. All rights reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
5 * This file is released under the GPL.
6 */
7
8#include "dm.h"
9
10#include <linux/module.h>
11#include <linux/vmalloc.h>
12#include <linux/miscdevice.h>
13#include <linux/init.h>
14#include <linux/wait.h>
15#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/dm-ioctl.h>
Darrick J. Wong3ac51e72006-03-27 01:17:54 -080017#include <linux/hdreg.h>
Milan Broz76c072b2008-02-08 02:09:56 +000018#include <linux/compat.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019
20#include <asm/uaccess.h>
21
Alasdair G Kergon72d94862006-06-26 00:27:35 -070022#define DM_MSG_PREFIX "ioctl"
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#define DM_DRIVER_EMAIL "dm-devel@redhat.com"
24
25/*-----------------------------------------------------------------
26 * The ioctl interface needs to be able to look up devices by
27 * name or uuid.
28 *---------------------------------------------------------------*/
29struct hash_cell {
30 struct list_head name_list;
31 struct list_head uuid_list;
32
33 char *name;
34 char *uuid;
35 struct mapped_device *md;
36 struct dm_table *new_map;
37};
38
39struct vers_iter {
40 size_t param_size;
41 struct dm_target_versions *vers, *old_vers;
42 char *end;
43 uint32_t flags;
44};
45
46
47#define NUM_BUCKETS 64
48#define MASK_BUCKETS (NUM_BUCKETS - 1)
49static struct list_head _name_buckets[NUM_BUCKETS];
50static struct list_head _uuid_buckets[NUM_BUCKETS];
51
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -070052static void dm_hash_remove_all(int keep_open_devices);
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
54/*
55 * Guards access to both hash tables.
56 */
57static DECLARE_RWSEM(_hash_lock);
58
Mikulas Patocka60769052009-12-10 23:51:52 +000059/*
60 * Protects use of mdptr to obtain hash cell name and uuid from mapped device.
61 */
62static DEFINE_MUTEX(dm_hash_cells_mutex);
63
Linus Torvalds1da177e2005-04-16 15:20:36 -070064static void init_buckets(struct list_head *buckets)
65{
66 unsigned int i;
67
68 for (i = 0; i < NUM_BUCKETS; i++)
69 INIT_LIST_HEAD(buckets + i);
70}
71
72static int dm_hash_init(void)
73{
74 init_buckets(_name_buckets);
75 init_buckets(_uuid_buckets);
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 return 0;
77}
78
79static void dm_hash_exit(void)
80{
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -070081 dm_hash_remove_all(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070082}
83
84/*-----------------------------------------------------------------
85 * Hash function:
86 * We're not really concerned with the str hash function being
87 * fast since it's only used by the ioctl interface.
88 *---------------------------------------------------------------*/
89static unsigned int hash_str(const char *str)
90{
91 const unsigned int hash_mult = 2654435387U;
92 unsigned int h = 0;
93
94 while (*str)
95 h = (h + (unsigned int) *str++) * hash_mult;
96
97 return h & MASK_BUCKETS;
98}
99
100/*-----------------------------------------------------------------
101 * Code for looking up a device by name
102 *---------------------------------------------------------------*/
103static struct hash_cell *__get_name_cell(const char *str)
104{
105 struct hash_cell *hc;
106 unsigned int h = hash_str(str);
107
108 list_for_each_entry (hc, _name_buckets + h, name_list)
Jeff Mahoney7ec75f22006-06-26 00:27:24 -0700109 if (!strcmp(hc->name, str)) {
110 dm_get(hc->md);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 return hc;
Jeff Mahoney7ec75f22006-06-26 00:27:24 -0700112 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
114 return NULL;
115}
116
117static struct hash_cell *__get_uuid_cell(const char *str)
118{
119 struct hash_cell *hc;
120 unsigned int h = hash_str(str);
121
122 list_for_each_entry (hc, _uuid_buckets + h, uuid_list)
Jeff Mahoney7ec75f22006-06-26 00:27:24 -0700123 if (!strcmp(hc->uuid, str)) {
124 dm_get(hc->md);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 return hc;
Jeff Mahoney7ec75f22006-06-26 00:27:24 -0700126 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127
128 return NULL;
129}
130
131/*-----------------------------------------------------------------
132 * Inserting, removing and renaming a device.
133 *---------------------------------------------------------------*/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134static struct hash_cell *alloc_cell(const char *name, const char *uuid,
135 struct mapped_device *md)
136{
137 struct hash_cell *hc;
138
139 hc = kmalloc(sizeof(*hc), GFP_KERNEL);
140 if (!hc)
141 return NULL;
142
Paulo Marques543537b2005-06-23 00:09:02 -0700143 hc->name = kstrdup(name, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 if (!hc->name) {
145 kfree(hc);
146 return NULL;
147 }
148
149 if (!uuid)
150 hc->uuid = NULL;
151
152 else {
Paulo Marques543537b2005-06-23 00:09:02 -0700153 hc->uuid = kstrdup(uuid, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 if (!hc->uuid) {
155 kfree(hc->name);
156 kfree(hc);
157 return NULL;
158 }
159 }
160
161 INIT_LIST_HEAD(&hc->name_list);
162 INIT_LIST_HEAD(&hc->uuid_list);
163 hc->md = md;
164 hc->new_map = NULL;
165 return hc;
166}
167
168static void free_cell(struct hash_cell *hc)
169{
170 if (hc) {
171 kfree(hc->name);
172 kfree(hc->uuid);
173 kfree(hc);
174 }
175}
176
177/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 * The kdev_t and uuid of a device can never change once it is
179 * initially inserted.
180 */
181static int dm_hash_insert(const char *name, const char *uuid, struct mapped_device *md)
182{
Jeff Mahoney7ec75f22006-06-26 00:27:24 -0700183 struct hash_cell *cell, *hc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184
185 /*
186 * Allocate the new cells.
187 */
188 cell = alloc_cell(name, uuid, md);
189 if (!cell)
190 return -ENOMEM;
191
192 /*
193 * Insert the cell into both hash tables.
194 */
195 down_write(&_hash_lock);
Jeff Mahoney7ec75f22006-06-26 00:27:24 -0700196 hc = __get_name_cell(name);
197 if (hc) {
198 dm_put(hc->md);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 goto bad;
Jeff Mahoney7ec75f22006-06-26 00:27:24 -0700200 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201
202 list_add(&cell->name_list, _name_buckets + hash_str(name));
203
204 if (uuid) {
Jeff Mahoney7ec75f22006-06-26 00:27:24 -0700205 hc = __get_uuid_cell(uuid);
206 if (hc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 list_del(&cell->name_list);
Jeff Mahoney7ec75f22006-06-26 00:27:24 -0700208 dm_put(hc->md);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 goto bad;
210 }
211 list_add(&cell->uuid_list, _uuid_buckets + hash_str(uuid));
212 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 dm_get(md);
Mikulas Patocka60769052009-12-10 23:51:52 +0000214 mutex_lock(&dm_hash_cells_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 dm_set_mdptr(md, cell);
Mikulas Patocka60769052009-12-10 23:51:52 +0000216 mutex_unlock(&dm_hash_cells_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 up_write(&_hash_lock);
218
219 return 0;
220
221 bad:
222 up_write(&_hash_lock);
223 free_cell(cell);
224 return -EBUSY;
225}
226
227static void __hash_remove(struct hash_cell *hc)
228{
goggin, edward269fd2a2005-09-27 21:45:44 -0700229 struct dm_table *table;
230
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 /* remove from the dev hash */
232 list_del(&hc->uuid_list);
233 list_del(&hc->name_list);
Mikulas Patocka60769052009-12-10 23:51:52 +0000234 mutex_lock(&dm_hash_cells_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 dm_set_mdptr(hc->md, NULL);
Mikulas Patocka60769052009-12-10 23:51:52 +0000236 mutex_unlock(&dm_hash_cells_mutex);
goggin, edward269fd2a2005-09-27 21:45:44 -0700237
Alasdair G Kergon7c666412009-12-10 23:52:19 +0000238 table = dm_get_live_table(hc->md);
goggin, edward269fd2a2005-09-27 21:45:44 -0700239 if (table) {
240 dm_table_event(table);
241 dm_table_put(table);
242 }
243
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 if (hc->new_map)
Mikulas Patockad5816872009-01-06 03:05:10 +0000245 dm_table_destroy(hc->new_map);
Mike Anderson1134e5a2006-03-27 01:17:54 -0800246 dm_put(hc->md);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 free_cell(hc);
248}
249
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700250static void dm_hash_remove_all(int keep_open_devices)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251{
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700252 int i, dev_skipped, dev_removed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 struct hash_cell *hc;
254 struct list_head *tmp, *n;
255
256 down_write(&_hash_lock);
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700257
258retry:
259 dev_skipped = dev_removed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 for (i = 0; i < NUM_BUCKETS; i++) {
261 list_for_each_safe (tmp, n, _name_buckets + i) {
262 hc = list_entry(tmp, struct hash_cell, name_list);
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700263
264 if (keep_open_devices &&
265 dm_lock_for_deletion(hc->md)) {
266 dev_skipped++;
267 continue;
268 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 __hash_remove(hc);
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700270 dev_removed = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 }
272 }
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700273
274 /*
275 * Some mapped devices may be using other mapped devices, so if any
276 * still exist, repeat until we make no further progress.
277 */
278 if (dev_skipped) {
279 if (dev_removed)
280 goto retry;
281
282 DMWARN("remove_all left %d open device(s)", dev_skipped);
283 }
284
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 up_write(&_hash_lock);
286}
287
Milan Broz60935eb2009-06-22 10:12:30 +0100288static int dm_hash_rename(uint32_t cookie, const char *old, const char *new)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289{
290 char *new_name, *old_name;
291 struct hash_cell *hc;
goggin, edward81f17772006-01-06 00:20:01 -0800292 struct dm_table *table;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293
294 /*
295 * duplicate new.
296 */
Paulo Marques543537b2005-06-23 00:09:02 -0700297 new_name = kstrdup(new, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 if (!new_name)
299 return -ENOMEM;
300
301 down_write(&_hash_lock);
302
303 /*
304 * Is new free ?
305 */
306 hc = __get_name_cell(new);
307 if (hc) {
308 DMWARN("asked to rename to an already existing name %s -> %s",
309 old, new);
Jeff Mahoney7ec75f22006-06-26 00:27:24 -0700310 dm_put(hc->md);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 up_write(&_hash_lock);
312 kfree(new_name);
313 return -EBUSY;
314 }
315
316 /*
317 * Is there such a device as 'old' ?
318 */
319 hc = __get_name_cell(old);
320 if (!hc) {
321 DMWARN("asked to rename a non existent device %s -> %s",
322 old, new);
323 up_write(&_hash_lock);
324 kfree(new_name);
325 return -ENXIO;
326 }
327
328 /*
329 * rename and move the name cell.
330 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 list_del(&hc->name_list);
332 old_name = hc->name;
Mikulas Patocka60769052009-12-10 23:51:52 +0000333 mutex_lock(&dm_hash_cells_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 hc->name = new_name;
Mikulas Patocka60769052009-12-10 23:51:52 +0000335 mutex_unlock(&dm_hash_cells_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 list_add(&hc->name_list, _name_buckets + hash_str(new_name));
337
goggin, edward81f17772006-01-06 00:20:01 -0800338 /*
339 * Wake up any dm event waiters.
340 */
Alasdair G Kergon7c666412009-12-10 23:52:19 +0000341 table = dm_get_live_table(hc->md);
goggin, edward81f17772006-01-06 00:20:01 -0800342 if (table) {
343 dm_table_event(table);
344 dm_table_put(table);
345 }
346
Milan Broz60935eb2009-06-22 10:12:30 +0100347 dm_kobject_uevent(hc->md, KOBJ_CHANGE, cookie);
Alasdair G Kergon69267a32007-12-13 14:15:57 +0000348
Jeff Mahoney7ec75f22006-06-26 00:27:24 -0700349 dm_put(hc->md);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 up_write(&_hash_lock);
351 kfree(old_name);
352 return 0;
353}
354
355/*-----------------------------------------------------------------
356 * Implementation of the ioctl commands
357 *---------------------------------------------------------------*/
358/*
359 * All the ioctl commands get dispatched to functions with this
360 * prototype.
361 */
362typedef int (*ioctl_fn)(struct dm_ioctl *param, size_t param_size);
363
364static int remove_all(struct dm_ioctl *param, size_t param_size)
365{
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700366 dm_hash_remove_all(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 param->data_size = 0;
368 return 0;
369}
370
371/*
372 * Round up the ptr to an 8-byte boundary.
373 */
374#define ALIGN_MASK 7
375static inline void *align_ptr(void *ptr)
376{
377 return (void *) (((size_t) (ptr + ALIGN_MASK)) & ~ALIGN_MASK);
378}
379
380/*
381 * Retrieves the data payload buffer from an already allocated
382 * struct dm_ioctl.
383 */
384static void *get_result_buffer(struct dm_ioctl *param, size_t param_size,
385 size_t *len)
386{
387 param->data_start = align_ptr(param + 1) - (void *) param;
388
389 if (param->data_start < param_size)
390 *len = param_size - param->data_start;
391 else
392 *len = 0;
393
394 return ((void *) param) + param->data_start;
395}
396
397static int list_devices(struct dm_ioctl *param, size_t param_size)
398{
399 unsigned int i;
400 struct hash_cell *hc;
401 size_t len, needed = 0;
402 struct gendisk *disk;
403 struct dm_name_list *nl, *old_nl = NULL;
404
405 down_write(&_hash_lock);
406
407 /*
408 * Loop through all the devices working out how much
409 * space we need.
410 */
411 for (i = 0; i < NUM_BUCKETS; i++) {
412 list_for_each_entry (hc, _name_buckets + i, name_list) {
413 needed += sizeof(struct dm_name_list);
414 needed += strlen(hc->name) + 1;
415 needed += ALIGN_MASK;
416 }
417 }
418
419 /*
420 * Grab our output buffer.
421 */
422 nl = get_result_buffer(param, param_size, &len);
423 if (len < needed) {
424 param->flags |= DM_BUFFER_FULL_FLAG;
425 goto out;
426 }
427 param->data_size = param->data_start + needed;
428
429 nl->dev = 0; /* Flags no data */
430
431 /*
432 * Now loop through filling out the names.
433 */
434 for (i = 0; i < NUM_BUCKETS; i++) {
435 list_for_each_entry (hc, _name_buckets + i, name_list) {
436 if (old_nl)
437 old_nl->next = (uint32_t) ((void *) nl -
438 (void *) old_nl);
439 disk = dm_disk(hc->md);
Tejun Heof331c022008-09-03 09:01:48 +0200440 nl->dev = huge_encode_dev(disk_devt(disk));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 nl->next = 0;
442 strcpy(nl->name, hc->name);
443
444 old_nl = nl;
445 nl = align_ptr(((void *) ++nl) + strlen(hc->name) + 1);
446 }
447 }
448
449 out:
450 up_write(&_hash_lock);
451 return 0;
452}
453
454static void list_version_get_needed(struct target_type *tt, void *needed_param)
455{
456 size_t *needed = needed_param;
457
Alasdair G Kergonc4cc6632005-11-21 21:32:33 -0800458 *needed += sizeof(struct dm_target_versions);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 *needed += strlen(tt->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 *needed += ALIGN_MASK;
461}
462
463static void list_version_get_info(struct target_type *tt, void *param)
464{
465 struct vers_iter *info = param;
466
467 /* Check space - it might have changed since the first iteration */
468 if ((char *)info->vers + sizeof(tt->version) + strlen(tt->name) + 1 >
469 info->end) {
470
471 info->flags = DM_BUFFER_FULL_FLAG;
472 return;
473 }
474
475 if (info->old_vers)
476 info->old_vers->next = (uint32_t) ((void *)info->vers -
477 (void *)info->old_vers);
478 info->vers->version[0] = tt->version[0];
479 info->vers->version[1] = tt->version[1];
480 info->vers->version[2] = tt->version[2];
481 info->vers->next = 0;
482 strcpy(info->vers->name, tt->name);
483
484 info->old_vers = info->vers;
485 info->vers = align_ptr(((void *) ++info->vers) + strlen(tt->name) + 1);
486}
487
488static int list_versions(struct dm_ioctl *param, size_t param_size)
489{
490 size_t len, needed = 0;
491 struct dm_target_versions *vers;
492 struct vers_iter iter_info;
493
494 /*
495 * Loop through all the devices working out how much
496 * space we need.
497 */
498 dm_target_iterate(list_version_get_needed, &needed);
499
500 /*
501 * Grab our output buffer.
502 */
503 vers = get_result_buffer(param, param_size, &len);
504 if (len < needed) {
505 param->flags |= DM_BUFFER_FULL_FLAG;
506 goto out;
507 }
508 param->data_size = param->data_start + needed;
509
510 iter_info.param_size = param_size;
511 iter_info.old_vers = NULL;
512 iter_info.vers = vers;
513 iter_info.flags = 0;
514 iter_info.end = (char *)vers+len;
515
516 /*
517 * Now loop through filling out the names & versions.
518 */
519 dm_target_iterate(list_version_get_info, &iter_info);
520 param->flags |= iter_info.flags;
521
522 out:
523 return 0;
524}
525
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526static int check_name(const char *name)
527{
528 if (strchr(name, '/')) {
529 DMWARN("invalid device name");
530 return -EINVAL;
531 }
532
533 return 0;
534}
535
536/*
Mike Snitzer1d0f3ce2009-12-10 23:52:22 +0000537 * On successful return, the caller must not attempt to acquire
538 * _hash_lock without first calling dm_table_put, because dm_table_destroy
539 * waits for this dm_table_put and could be called under this lock.
540 */
541static struct dm_table *dm_get_inactive_table(struct mapped_device *md)
542{
543 struct hash_cell *hc;
544 struct dm_table *table = NULL;
545
546 down_read(&_hash_lock);
547 hc = dm_get_mdptr(md);
548 if (!hc || hc->md != md) {
549 DMWARN("device has been removed from the dev hash table.");
550 goto out;
551 }
552
553 table = hc->new_map;
554 if (table)
555 dm_table_get(table);
556
557out:
558 up_read(&_hash_lock);
559
560 return table;
561}
562
563static struct dm_table *dm_get_live_or_inactive_table(struct mapped_device *md,
564 struct dm_ioctl *param)
565{
566 return (param->flags & DM_QUERY_INACTIVE_TABLE_FLAG) ?
567 dm_get_inactive_table(md) : dm_get_live_table(md);
568}
569
570/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 * Fills in a dm_ioctl structure, ready for sending back to
572 * userland.
573 */
574static int __dev_status(struct mapped_device *md, struct dm_ioctl *param)
575{
576 struct gendisk *disk = dm_disk(md);
577 struct dm_table *table;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578
579 param->flags &= ~(DM_SUSPEND_FLAG | DM_READONLY_FLAG |
580 DM_ACTIVE_PRESENT_FLAG);
581
Kiyoshi Ueda4f186f82009-12-10 23:52:26 +0000582 if (dm_suspended_md(md))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 param->flags |= DM_SUSPEND_FLAG;
584
Tejun Heof331c022008-09-03 09:01:48 +0200585 param->dev = huge_encode_dev(disk_devt(disk));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700587 /*
588 * Yes, this will be out of date by the time it gets back
589 * to userland, but it is still very useful for
590 * debugging.
591 */
592 param->open_count = dm_open_count(md);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 param->event_nr = dm_get_event_nr(md);
Mike Snitzer1d0f3ce2009-12-10 23:52:22 +0000595 param->target_count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596
Alasdair G Kergon7c666412009-12-10 23:52:19 +0000597 table = dm_get_live_table(md);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 if (table) {
Mike Snitzer1d0f3ce2009-12-10 23:52:22 +0000599 if (!(param->flags & DM_QUERY_INACTIVE_TABLE_FLAG)) {
600 if (get_disk_ro(disk))
601 param->flags |= DM_READONLY_FLAG;
602 param->target_count = dm_table_get_num_targets(table);
603 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 dm_table_put(table);
Mike Snitzer1d0f3ce2009-12-10 23:52:22 +0000605
606 param->flags |= DM_ACTIVE_PRESENT_FLAG;
607 }
608
609 if (param->flags & DM_QUERY_INACTIVE_TABLE_FLAG) {
610 table = dm_get_inactive_table(md);
611 if (table) {
612 if (!(dm_table_get_mode(table) & FMODE_WRITE))
613 param->flags |= DM_READONLY_FLAG;
614 param->target_count = dm_table_get_num_targets(table);
615 dm_table_put(table);
616 }
617 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618
619 return 0;
620}
621
622static int dev_create(struct dm_ioctl *param, size_t param_size)
623{
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -0700624 int r, m = DM_ANY_MINOR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 struct mapped_device *md;
626
627 r = check_name(param->name);
628 if (r)
629 return r;
630
631 if (param->flags & DM_PERSISTENT_DEV_FLAG)
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -0700632 m = MINOR(huge_decode_dev(param->dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -0700634 r = dm_create(m, &md);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 if (r)
636 return r;
637
638 r = dm_hash_insert(param->name, *param->uuid ? param->uuid : NULL, md);
639 if (r) {
640 dm_put(md);
641 return r;
642 }
643
644 param->flags &= ~DM_INACTIVE_PRESENT_FLAG;
645
646 r = __dev_status(md, param);
647 dm_put(md);
648
649 return r;
650}
651
652/*
653 * Always use UUID for lookups if it's present, otherwise use name or dev.
654 */
Arjan van de Ven858119e2006-01-14 13:20:43 -0800655static struct hash_cell *__find_device_hash_cell(struct dm_ioctl *param)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656{
Alasdair G Kergon9ade92a2006-03-27 01:17:53 -0800657 struct mapped_device *md;
658 void *mdptr = NULL;
659
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 if (*param->uuid)
661 return __get_uuid_cell(param->uuid);
Alasdair G Kergon9ade92a2006-03-27 01:17:53 -0800662
663 if (*param->name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 return __get_name_cell(param->name);
Alasdair G Kergon9ade92a2006-03-27 01:17:53 -0800665
666 md = dm_get_md(huge_decode_dev(param->dev));
Alasdair G Kergonbfc5ecd2006-11-08 17:44:42 -0800667 if (!md)
668 goto out;
Alasdair G Kergon9ade92a2006-03-27 01:17:53 -0800669
Alasdair G Kergonbfc5ecd2006-11-08 17:44:42 -0800670 mdptr = dm_get_mdptr(md);
671 if (!mdptr)
672 dm_put(md);
673
674out:
Alasdair G Kergon9ade92a2006-03-27 01:17:53 -0800675 return mdptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676}
677
Arjan van de Ven858119e2006-01-14 13:20:43 -0800678static struct mapped_device *find_device(struct dm_ioctl *param)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679{
680 struct hash_cell *hc;
681 struct mapped_device *md = NULL;
682
683 down_read(&_hash_lock);
684 hc = __find_device_hash_cell(param);
685 if (hc) {
686 md = hc->md;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687
688 /*
689 * Sneakily write in both the name and the uuid
690 * while we have the cell.
691 */
Roel Kluina518b862009-12-10 23:52:07 +0000692 strlcpy(param->name, hc->name, sizeof(param->name));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 if (hc->uuid)
Roel Kluina518b862009-12-10 23:52:07 +0000694 strlcpy(param->uuid, hc->uuid, sizeof(param->uuid));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 else
696 param->uuid[0] = '\0';
697
698 if (hc->new_map)
699 param->flags |= DM_INACTIVE_PRESENT_FLAG;
700 else
701 param->flags &= ~DM_INACTIVE_PRESENT_FLAG;
702 }
703 up_read(&_hash_lock);
704
705 return md;
706}
707
708static int dev_remove(struct dm_ioctl *param, size_t param_size)
709{
710 struct hash_cell *hc;
Jeff Mahoney7ec75f22006-06-26 00:27:24 -0700711 struct mapped_device *md;
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700712 int r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713
714 down_write(&_hash_lock);
715 hc = __find_device_hash_cell(param);
716
717 if (!hc) {
718 DMWARN("device doesn't appear to be in the dev hash table.");
719 up_write(&_hash_lock);
720 return -ENXIO;
721 }
722
Jeff Mahoney7ec75f22006-06-26 00:27:24 -0700723 md = hc->md;
724
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700725 /*
726 * Ensure the device is not open and nothing further can open it.
727 */
728 r = dm_lock_for_deletion(md);
729 if (r) {
730 DMWARN("unable to remove open device %s", hc->name);
731 up_write(&_hash_lock);
732 dm_put(md);
733 return r;
734 }
735
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 __hash_remove(hc);
737 up_write(&_hash_lock);
Milan Broz60935eb2009-06-22 10:12:30 +0100738
739 dm_kobject_uevent(md, KOBJ_REMOVE, param->event_nr);
740
Jeff Mahoney7ec75f22006-06-26 00:27:24 -0700741 dm_put(md);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 param->data_size = 0;
743 return 0;
744}
745
746/*
747 * Check a string doesn't overrun the chunk of
748 * memory we copied from userland.
749 */
750static int invalid_str(char *str, void *end)
751{
752 while ((void *) str < end)
753 if (!*str++)
754 return 0;
755
756 return -EINVAL;
757}
758
759static int dev_rename(struct dm_ioctl *param, size_t param_size)
760{
761 int r;
762 char *new_name = (char *) param + param->data_start;
763
Alasdair G Kergon27238b22008-02-08 02:09:53 +0000764 if (new_name < param->data ||
Milan Brozbc0fd672009-03-16 16:56:01 +0000765 invalid_str(new_name, (void *) param + param_size) ||
766 strlen(new_name) > DM_NAME_LEN - 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 DMWARN("Invalid new logical volume name supplied.");
768 return -EINVAL;
769 }
770
771 r = check_name(new_name);
772 if (r)
773 return r;
774
775 param->data_size = 0;
Milan Broz60935eb2009-06-22 10:12:30 +0100776 return dm_hash_rename(param->event_nr, param->name, new_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777}
778
Darrick J. Wong3ac51e72006-03-27 01:17:54 -0800779static int dev_set_geometry(struct dm_ioctl *param, size_t param_size)
780{
781 int r = -EINVAL, x;
782 struct mapped_device *md;
783 struct hd_geometry geometry;
784 unsigned long indata[4];
785 char *geostr = (char *) param + param->data_start;
786
787 md = find_device(param);
788 if (!md)
789 return -ENXIO;
790
Alasdair G Kergon27238b22008-02-08 02:09:53 +0000791 if (geostr < param->data ||
Darrick J. Wong3ac51e72006-03-27 01:17:54 -0800792 invalid_str(geostr, (void *) param + param_size)) {
793 DMWARN("Invalid geometry supplied.");
794 goto out;
795 }
796
797 x = sscanf(geostr, "%lu %lu %lu %lu", indata,
798 indata + 1, indata + 2, indata + 3);
799
800 if (x != 4) {
801 DMWARN("Unable to interpret geometry settings.");
802 goto out;
803 }
804
805 if (indata[0] > 65535 || indata[1] > 255 ||
806 indata[2] > 255 || indata[3] > ULONG_MAX) {
807 DMWARN("Geometry exceeds range limits.");
808 goto out;
809 }
810
811 geometry.cylinders = indata[0];
812 geometry.heads = indata[1];
813 geometry.sectors = indata[2];
814 geometry.start = indata[3];
815
816 r = dm_set_geometry(md, &geometry);
817 if (!r)
818 r = __dev_status(md, param);
819
820 param->data_size = 0;
821
822out:
823 dm_put(md);
824 return r;
825}
826
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827static int do_suspend(struct dm_ioctl *param)
828{
829 int r = 0;
Kiyoshi Uedaa3d77d32006-12-08 02:41:04 -0800830 unsigned suspend_flags = DM_SUSPEND_LOCKFS_FLAG;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 struct mapped_device *md;
832
833 md = find_device(param);
834 if (!md)
835 return -ENXIO;
836
Alasdair G Kergon6da487d2006-01-06 00:20:07 -0800837 if (param->flags & DM_SKIP_LOCKFS_FLAG)
Kiyoshi Uedaa3d77d32006-12-08 02:41:04 -0800838 suspend_flags &= ~DM_SUSPEND_LOCKFS_FLAG;
Kiyoshi Ueda81fdb092006-12-08 02:41:07 -0800839 if (param->flags & DM_NOFLUSH_FLAG)
840 suspend_flags |= DM_SUSPEND_NOFLUSH_FLAG;
Alasdair G Kergon6da487d2006-01-06 00:20:07 -0800841
Kiyoshi Ueda4f186f82009-12-10 23:52:26 +0000842 if (!dm_suspended_md(md))
Kiyoshi Uedaa3d77d32006-12-08 02:41:04 -0800843 r = dm_suspend(md, suspend_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844
845 if (!r)
846 r = __dev_status(md, param);
847
848 dm_put(md);
849 return r;
850}
851
852static int do_resume(struct dm_ioctl *param)
853{
854 int r = 0;
Kiyoshi Uedaa3d77d32006-12-08 02:41:04 -0800855 unsigned suspend_flags = DM_SUSPEND_LOCKFS_FLAG;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 struct hash_cell *hc;
857 struct mapped_device *md;
Alasdair G Kergon042d2a92009-12-10 23:52:24 +0000858 struct dm_table *new_map, *old_map = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859
860 down_write(&_hash_lock);
861
862 hc = __find_device_hash_cell(param);
863 if (!hc) {
864 DMWARN("device doesn't appear to be in the dev hash table.");
865 up_write(&_hash_lock);
866 return -ENXIO;
867 }
868
869 md = hc->md;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870
871 new_map = hc->new_map;
872 hc->new_map = NULL;
873 param->flags &= ~DM_INACTIVE_PRESENT_FLAG;
874
875 up_write(&_hash_lock);
876
877 /* Do we need to load a new map ? */
878 if (new_map) {
879 /* Suspend if it isn't already suspended */
Alasdair G Kergon6da487d2006-01-06 00:20:07 -0800880 if (param->flags & DM_SKIP_LOCKFS_FLAG)
Kiyoshi Uedaa3d77d32006-12-08 02:41:04 -0800881 suspend_flags &= ~DM_SUSPEND_LOCKFS_FLAG;
Kiyoshi Ueda81fdb092006-12-08 02:41:07 -0800882 if (param->flags & DM_NOFLUSH_FLAG)
883 suspend_flags |= DM_SUSPEND_NOFLUSH_FLAG;
Kiyoshi Ueda4f186f82009-12-10 23:52:26 +0000884 if (!dm_suspended_md(md))
Kiyoshi Uedaa3d77d32006-12-08 02:41:04 -0800885 dm_suspend(md, suspend_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886
Alasdair G Kergon042d2a92009-12-10 23:52:24 +0000887 old_map = dm_swap_table(md, new_map);
888 if (IS_ERR(old_map)) {
Mikulas Patockad5816872009-01-06 03:05:10 +0000889 dm_table_destroy(new_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 dm_put(md);
Alasdair G Kergon042d2a92009-12-10 23:52:24 +0000891 return PTR_ERR(old_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892 }
893
894 if (dm_table_get_mode(new_map) & FMODE_WRITE)
895 set_disk_ro(dm_disk(md), 0);
896 else
897 set_disk_ro(dm_disk(md), 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 }
899
Mike Snitzer0f3649a92010-03-06 02:32:24 +0000900 if (dm_suspended_md(md)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 r = dm_resume(md);
Mike Snitzer0f3649a92010-03-06 02:32:24 +0000902 if (!r)
903 dm_kobject_uevent(md, KOBJ_CHANGE, param->event_nr);
904 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905
Alasdair G Kergon042d2a92009-12-10 23:52:24 +0000906 if (old_map)
907 dm_table_destroy(old_map);
Milan Broz60935eb2009-06-22 10:12:30 +0100908
Mike Snitzer0f3649a92010-03-06 02:32:24 +0000909 if (!r)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 r = __dev_status(md, param);
911
912 dm_put(md);
913 return r;
914}
915
916/*
917 * Set or unset the suspension state of a device.
918 * If the device already is in the requested state we just return its status.
919 */
920static int dev_suspend(struct dm_ioctl *param, size_t param_size)
921{
922 if (param->flags & DM_SUSPEND_FLAG)
923 return do_suspend(param);
924
925 return do_resume(param);
926}
927
928/*
929 * Copies device info back to user space, used by
930 * the create and info ioctls.
931 */
932static int dev_status(struct dm_ioctl *param, size_t param_size)
933{
934 int r;
935 struct mapped_device *md;
936
937 md = find_device(param);
938 if (!md)
939 return -ENXIO;
940
941 r = __dev_status(md, param);
942 dm_put(md);
943 return r;
944}
945
946/*
947 * Build up the status struct for each target
948 */
949static void retrieve_status(struct dm_table *table,
950 struct dm_ioctl *param, size_t param_size)
951{
952 unsigned int i, num_targets;
953 struct dm_target_spec *spec;
954 char *outbuf, *outptr;
955 status_type_t type;
956 size_t remaining, len, used = 0;
957
958 outptr = outbuf = get_result_buffer(param, param_size, &len);
959
960 if (param->flags & DM_STATUS_TABLE_FLAG)
961 type = STATUSTYPE_TABLE;
962 else
963 type = STATUSTYPE_INFO;
964
965 /* Get all the target info */
966 num_targets = dm_table_get_num_targets(table);
967 for (i = 0; i < num_targets; i++) {
968 struct dm_target *ti = dm_table_get_target(table, i);
969
970 remaining = len - (outptr - outbuf);
971 if (remaining <= sizeof(struct dm_target_spec)) {
972 param->flags |= DM_BUFFER_FULL_FLAG;
973 break;
974 }
975
976 spec = (struct dm_target_spec *) outptr;
977
978 spec->status = 0;
979 spec->sector_start = ti->begin;
980 spec->length = ti->len;
981 strncpy(spec->target_type, ti->type->name,
982 sizeof(spec->target_type));
983
984 outptr += sizeof(struct dm_target_spec);
985 remaining = len - (outptr - outbuf);
986 if (remaining <= 0) {
987 param->flags |= DM_BUFFER_FULL_FLAG;
988 break;
989 }
990
991 /* Get the status/table string from the target driver */
992 if (ti->type->status) {
993 if (ti->type->status(ti, type, outptr, remaining)) {
994 param->flags |= DM_BUFFER_FULL_FLAG;
995 break;
996 }
997 } else
998 outptr[0] = '\0';
999
1000 outptr += strlen(outptr) + 1;
1001 used = param->data_start + (outptr - outbuf);
1002
1003 outptr = align_ptr(outptr);
1004 spec->next = outptr - outbuf;
1005 }
1006
1007 if (used)
1008 param->data_size = used;
1009
1010 param->target_count = num_targets;
1011}
1012
1013/*
1014 * Wait for a device to report an event
1015 */
1016static int dev_wait(struct dm_ioctl *param, size_t param_size)
1017{
1018 int r;
1019 struct mapped_device *md;
1020 struct dm_table *table;
1021
1022 md = find_device(param);
1023 if (!md)
1024 return -ENXIO;
1025
1026 /*
1027 * Wait for a notification event
1028 */
1029 if (dm_wait_event(md, param->event_nr)) {
1030 r = -ERESTARTSYS;
1031 goto out;
1032 }
1033
1034 /*
1035 * The userland program is going to want to know what
1036 * changed to trigger the event, so we may as well tell
1037 * him and save an ioctl.
1038 */
1039 r = __dev_status(md, param);
1040 if (r)
1041 goto out;
1042
Mike Snitzer1d0f3ce2009-12-10 23:52:22 +00001043 table = dm_get_live_or_inactive_table(md, param);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 if (table) {
1045 retrieve_status(table, param, param_size);
1046 dm_table_put(table);
1047 }
1048
1049 out:
1050 dm_put(md);
1051 return r;
1052}
1053
Al Viroaeb5d722008-09-02 15:28:45 -04001054static inline fmode_t get_mode(struct dm_ioctl *param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055{
Al Viroaeb5d722008-09-02 15:28:45 -04001056 fmode_t mode = FMODE_READ | FMODE_WRITE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057
1058 if (param->flags & DM_READONLY_FLAG)
1059 mode = FMODE_READ;
1060
1061 return mode;
1062}
1063
1064static int next_target(struct dm_target_spec *last, uint32_t next, void *end,
1065 struct dm_target_spec **spec, char **target_params)
1066{
1067 *spec = (struct dm_target_spec *) ((unsigned char *) last + next);
1068 *target_params = (char *) (*spec + 1);
1069
1070 if (*spec < (last + 1))
1071 return -EINVAL;
1072
1073 return invalid_str(*target_params, end);
1074}
1075
1076static int populate_table(struct dm_table *table,
1077 struct dm_ioctl *param, size_t param_size)
1078{
1079 int r;
1080 unsigned int i = 0;
1081 struct dm_target_spec *spec = (struct dm_target_spec *) param;
1082 uint32_t next = param->data_start;
1083 void *end = (void *) param + param_size;
1084 char *target_params;
1085
1086 if (!param->target_count) {
1087 DMWARN("populate_table: no targets specified");
1088 return -EINVAL;
1089 }
1090
1091 for (i = 0; i < param->target_count; i++) {
1092
1093 r = next_target(spec, next, end, &spec, &target_params);
1094 if (r) {
1095 DMWARN("unable to find target");
1096 return r;
1097 }
1098
1099 r = dm_table_add_target(table, spec->target_type,
1100 (sector_t) spec->sector_start,
1101 (sector_t) spec->length,
1102 target_params);
1103 if (r) {
1104 DMWARN("error adding target to table");
1105 return r;
1106 }
1107
1108 next = spec->next;
1109 }
1110
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01001111 r = dm_table_set_type(table);
1112 if (r) {
1113 DMWARN("unable to set table type");
1114 return r;
1115 }
1116
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117 return dm_table_complete(table);
1118}
1119
Martin K. Petersen9c470082009-04-09 00:27:12 +01001120static int table_prealloc_integrity(struct dm_table *t,
1121 struct mapped_device *md)
1122{
1123 struct list_head *devices = dm_table_get_devices(t);
1124 struct dm_dev_internal *dd;
1125
1126 list_for_each_entry(dd, devices, list)
1127 if (bdev_get_integrity(dd->dm_dev.bdev))
1128 return blk_integrity_register(dm_disk(md), NULL);
1129
1130 return 0;
1131}
1132
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133static int table_load(struct dm_ioctl *param, size_t param_size)
1134{
1135 int r;
1136 struct hash_cell *hc;
1137 struct dm_table *t;
Mike Anderson1134e5a2006-03-27 01:17:54 -08001138 struct mapped_device *md;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139
Mike Anderson1134e5a2006-03-27 01:17:54 -08001140 md = find_device(param);
1141 if (!md)
1142 return -ENXIO;
1143
1144 r = dm_table_create(&t, get_mode(param), param->target_count, md);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 if (r)
Mike Anderson1134e5a2006-03-27 01:17:54 -08001146 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147
1148 r = populate_table(t, param, param_size);
1149 if (r) {
Mikulas Patockaf80a5572009-03-16 17:44:26 +00001150 dm_table_destroy(t);
Mike Anderson1134e5a2006-03-27 01:17:54 -08001151 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 }
1153
Martin K. Petersen9c470082009-04-09 00:27:12 +01001154 r = table_prealloc_integrity(t, md);
1155 if (r) {
1156 DMERR("%s: could not register integrity profile.",
1157 dm_device_name(md));
1158 dm_table_destroy(t);
1159 goto out;
1160 }
1161
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01001162 r = dm_table_alloc_md_mempools(t);
1163 if (r) {
1164 DMWARN("unable to allocate mempools for this table");
1165 dm_table_destroy(t);
1166 goto out;
1167 }
1168
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169 down_write(&_hash_lock);
Mike Anderson1134e5a2006-03-27 01:17:54 -08001170 hc = dm_get_mdptr(md);
1171 if (!hc || hc->md != md) {
1172 DMWARN("device has been removed from the dev hash table.");
Mikulas Patockaf80a5572009-03-16 17:44:26 +00001173 dm_table_destroy(t);
Mike Anderson1134e5a2006-03-27 01:17:54 -08001174 up_write(&_hash_lock);
1175 r = -ENXIO;
1176 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 }
1178
1179 if (hc->new_map)
Mikulas Patockad5816872009-01-06 03:05:10 +00001180 dm_table_destroy(hc->new_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 hc->new_map = t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 up_write(&_hash_lock);
Mike Anderson1134e5a2006-03-27 01:17:54 -08001183
1184 param->flags |= DM_INACTIVE_PRESENT_FLAG;
1185 r = __dev_status(md, param);
1186
1187out:
1188 dm_put(md);
1189
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 return r;
1191}
1192
1193static int table_clear(struct dm_ioctl *param, size_t param_size)
1194{
1195 int r;
1196 struct hash_cell *hc;
Jeff Mahoney7ec75f22006-06-26 00:27:24 -07001197 struct mapped_device *md;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198
1199 down_write(&_hash_lock);
1200
1201 hc = __find_device_hash_cell(param);
1202 if (!hc) {
1203 DMWARN("device doesn't appear to be in the dev hash table.");
1204 up_write(&_hash_lock);
1205 return -ENXIO;
1206 }
1207
1208 if (hc->new_map) {
Mikulas Patockad5816872009-01-06 03:05:10 +00001209 dm_table_destroy(hc->new_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210 hc->new_map = NULL;
1211 }
1212
1213 param->flags &= ~DM_INACTIVE_PRESENT_FLAG;
1214
1215 r = __dev_status(hc->md, param);
Jeff Mahoney7ec75f22006-06-26 00:27:24 -07001216 md = hc->md;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217 up_write(&_hash_lock);
Jeff Mahoney7ec75f22006-06-26 00:27:24 -07001218 dm_put(md);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 return r;
1220}
1221
1222/*
1223 * Retrieves a list of devices used by a particular dm device.
1224 */
1225static void retrieve_deps(struct dm_table *table,
1226 struct dm_ioctl *param, size_t param_size)
1227{
1228 unsigned int count = 0;
1229 struct list_head *tmp;
1230 size_t len, needed;
Mikulas Patocka82b15192008-10-10 13:37:09 +01001231 struct dm_dev_internal *dd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 struct dm_target_deps *deps;
1233
1234 deps = get_result_buffer(param, param_size, &len);
1235
1236 /*
1237 * Count the devices.
1238 */
1239 list_for_each (tmp, dm_table_get_devices(table))
1240 count++;
1241
1242 /*
1243 * Check we have enough space.
1244 */
1245 needed = sizeof(*deps) + (sizeof(*deps->dev) * count);
1246 if (len < needed) {
1247 param->flags |= DM_BUFFER_FULL_FLAG;
1248 return;
1249 }
1250
1251 /*
1252 * Fill in the devices.
1253 */
1254 deps->count = count;
1255 count = 0;
1256 list_for_each_entry (dd, dm_table_get_devices(table), list)
Mikulas Patocka82b15192008-10-10 13:37:09 +01001257 deps->dev[count++] = huge_encode_dev(dd->dm_dev.bdev->bd_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258
1259 param->data_size = param->data_start + needed;
1260}
1261
1262static int table_deps(struct dm_ioctl *param, size_t param_size)
1263{
1264 int r = 0;
1265 struct mapped_device *md;
1266 struct dm_table *table;
1267
1268 md = find_device(param);
1269 if (!md)
1270 return -ENXIO;
1271
1272 r = __dev_status(md, param);
1273 if (r)
1274 goto out;
1275
Mike Snitzer1d0f3ce2009-12-10 23:52:22 +00001276 table = dm_get_live_or_inactive_table(md, param);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277 if (table) {
1278 retrieve_deps(table, param, param_size);
1279 dm_table_put(table);
1280 }
1281
1282 out:
1283 dm_put(md);
1284 return r;
1285}
1286
1287/*
1288 * Return the status of a device as a text string for each
1289 * target.
1290 */
1291static int table_status(struct dm_ioctl *param, size_t param_size)
1292{
1293 int r;
1294 struct mapped_device *md;
1295 struct dm_table *table;
1296
1297 md = find_device(param);
1298 if (!md)
1299 return -ENXIO;
1300
1301 r = __dev_status(md, param);
1302 if (r)
1303 goto out;
1304
Mike Snitzer1d0f3ce2009-12-10 23:52:22 +00001305 table = dm_get_live_or_inactive_table(md, param);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306 if (table) {
1307 retrieve_status(table, param, param_size);
1308 dm_table_put(table);
1309 }
1310
Mike Snitzer1d0f3ce2009-12-10 23:52:22 +00001311out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312 dm_put(md);
1313 return r;
1314}
1315
1316/*
1317 * Pass a message to the target that's at the supplied device offset.
1318 */
1319static int target_message(struct dm_ioctl *param, size_t param_size)
1320{
1321 int r, argc;
1322 char **argv;
1323 struct mapped_device *md;
1324 struct dm_table *table;
1325 struct dm_target *ti;
1326 struct dm_target_msg *tmsg = (void *) param + param->data_start;
1327
1328 md = find_device(param);
1329 if (!md)
1330 return -ENXIO;
1331
1332 r = __dev_status(md, param);
1333 if (r)
1334 goto out;
1335
Milan Broz027d50f2007-10-19 22:38:36 +01001336 if (tmsg < (struct dm_target_msg *) param->data ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337 invalid_str(tmsg->message, (void *) param + param_size)) {
1338 DMWARN("Invalid target message parameters.");
1339 r = -EINVAL;
1340 goto out;
1341 }
1342
1343 r = dm_split_args(&argc, &argv, tmsg->message);
1344 if (r) {
1345 DMWARN("Failed to split target message parameters");
1346 goto out;
1347 }
1348
Alasdair G Kergon7c666412009-12-10 23:52:19 +00001349 table = dm_get_live_table(md);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 if (!table)
1351 goto out_argv;
1352
Mike Andersonc50abeb2009-12-10 23:52:20 +00001353 if (dm_deleting_md(md)) {
1354 r = -ENXIO;
1355 goto out_table;
1356 }
1357
Jun'ichi Nomura512875b2007-12-13 14:15:25 +00001358 ti = dm_table_find_target(table, tmsg->sector);
1359 if (!dm_target_is_valid(ti)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360 DMWARN("Target message sector outside device.");
1361 r = -EINVAL;
Jun'ichi Nomura512875b2007-12-13 14:15:25 +00001362 } else if (ti->type->message)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 r = ti->type->message(ti, argc, argv);
1364 else {
1365 DMWARN("Target type does not support messages");
1366 r = -EINVAL;
1367 }
1368
Mike Andersonc50abeb2009-12-10 23:52:20 +00001369 out_table:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 dm_table_put(table);
1371 out_argv:
1372 kfree(argv);
1373 out:
1374 param->data_size = 0;
1375 dm_put(md);
1376 return r;
1377}
1378
1379/*-----------------------------------------------------------------
1380 * Implementation of open/close/ioctl on the special char
1381 * device.
1382 *---------------------------------------------------------------*/
1383static ioctl_fn lookup_ioctl(unsigned int cmd)
1384{
1385 static struct {
1386 int cmd;
1387 ioctl_fn fn;
1388 } _ioctls[] = {
1389 {DM_VERSION_CMD, NULL}, /* version is dealt with elsewhere */
1390 {DM_REMOVE_ALL_CMD, remove_all},
1391 {DM_LIST_DEVICES_CMD, list_devices},
1392
1393 {DM_DEV_CREATE_CMD, dev_create},
1394 {DM_DEV_REMOVE_CMD, dev_remove},
1395 {DM_DEV_RENAME_CMD, dev_rename},
1396 {DM_DEV_SUSPEND_CMD, dev_suspend},
1397 {DM_DEV_STATUS_CMD, dev_status},
1398 {DM_DEV_WAIT_CMD, dev_wait},
1399
1400 {DM_TABLE_LOAD_CMD, table_load},
1401 {DM_TABLE_CLEAR_CMD, table_clear},
1402 {DM_TABLE_DEPS_CMD, table_deps},
1403 {DM_TABLE_STATUS_CMD, table_status},
1404
1405 {DM_LIST_VERSIONS_CMD, list_versions},
1406
Darrick J. Wong3ac51e72006-03-27 01:17:54 -08001407 {DM_TARGET_MSG_CMD, target_message},
1408 {DM_DEV_SET_GEOMETRY_CMD, dev_set_geometry}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409 };
1410
1411 return (cmd >= ARRAY_SIZE(_ioctls)) ? NULL : _ioctls[cmd].fn;
1412}
1413
1414/*
1415 * As well as checking the version compatibility this always
1416 * copies the kernel interface version out.
1417 */
1418static int check_version(unsigned int cmd, struct dm_ioctl __user *user)
1419{
1420 uint32_t version[3];
1421 int r = 0;
1422
1423 if (copy_from_user(version, user->version, sizeof(version)))
1424 return -EFAULT;
1425
1426 if ((DM_VERSION_MAJOR != version[0]) ||
1427 (DM_VERSION_MINOR < version[1])) {
1428 DMWARN("ioctl interface mismatch: "
1429 "kernel(%u.%u.%u), user(%u.%u.%u), cmd(%d)",
1430 DM_VERSION_MAJOR, DM_VERSION_MINOR,
1431 DM_VERSION_PATCHLEVEL,
1432 version[0], version[1], version[2], cmd);
1433 r = -EINVAL;
1434 }
1435
1436 /*
1437 * Fill in the kernel version.
1438 */
1439 version[0] = DM_VERSION_MAJOR;
1440 version[1] = DM_VERSION_MINOR;
1441 version[2] = DM_VERSION_PATCHLEVEL;
1442 if (copy_to_user(user->version, version, sizeof(version)))
1443 return -EFAULT;
1444
1445 return r;
1446}
1447
1448static void free_params(struct dm_ioctl *param)
1449{
1450 vfree(param);
1451}
1452
1453static int copy_params(struct dm_ioctl __user *user, struct dm_ioctl **param)
1454{
1455 struct dm_ioctl tmp, *dmi;
1456
Milan Broz76c072b2008-02-08 02:09:56 +00001457 if (copy_from_user(&tmp, user, sizeof(tmp) - sizeof(tmp.data)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458 return -EFAULT;
1459
Milan Broz76c072b2008-02-08 02:09:56 +00001460 if (tmp.data_size < (sizeof(tmp) - sizeof(tmp.data)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461 return -EINVAL;
1462
Jesper Juhlbb56acf2007-10-19 22:38:54 +01001463 dmi = vmalloc(tmp.data_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464 if (!dmi)
1465 return -ENOMEM;
1466
1467 if (copy_from_user(dmi, user, tmp.data_size)) {
1468 vfree(dmi);
1469 return -EFAULT;
1470 }
1471
1472 *param = dmi;
1473 return 0;
1474}
1475
1476static int validate_params(uint cmd, struct dm_ioctl *param)
1477{
1478 /* Always clear this flag */
1479 param->flags &= ~DM_BUFFER_FULL_FLAG;
1480
1481 /* Ignores parameters */
1482 if (cmd == DM_REMOVE_ALL_CMD ||
1483 cmd == DM_LIST_DEVICES_CMD ||
1484 cmd == DM_LIST_VERSIONS_CMD)
1485 return 0;
1486
1487 if ((cmd == DM_DEV_CREATE_CMD)) {
1488 if (!*param->name) {
1489 DMWARN("name not supplied when creating device");
1490 return -EINVAL;
1491 }
1492 } else if ((*param->uuid && *param->name)) {
1493 DMWARN("only supply one of name or uuid, cmd(%u)", cmd);
1494 return -EINVAL;
1495 }
1496
1497 /* Ensure strings are terminated */
1498 param->name[DM_NAME_LEN - 1] = '\0';
1499 param->uuid[DM_UUID_LEN - 1] = '\0';
1500
1501 return 0;
1502}
1503
Alasdair G Kergon27238b22008-02-08 02:09:53 +00001504static int ctl_ioctl(uint command, struct dm_ioctl __user *user)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505{
1506 int r = 0;
1507 unsigned int cmd;
Andrew Mortona26ffd42008-02-08 02:10:16 +00001508 struct dm_ioctl *uninitialized_var(param);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509 ioctl_fn fn = NULL;
1510 size_t param_size;
1511
1512 /* only root can play with this */
1513 if (!capable(CAP_SYS_ADMIN))
1514 return -EACCES;
1515
1516 if (_IOC_TYPE(command) != DM_IOCTL)
1517 return -ENOTTY;
1518
1519 cmd = _IOC_NR(command);
1520
1521 /*
1522 * Check the interface version passed in. This also
1523 * writes out the kernel's interface version.
1524 */
1525 r = check_version(cmd, user);
1526 if (r)
1527 return r;
1528
1529 /*
1530 * Nothing more to do for the version command.
1531 */
1532 if (cmd == DM_VERSION_CMD)
1533 return 0;
1534
1535 fn = lookup_ioctl(cmd);
1536 if (!fn) {
1537 DMWARN("dm_ctl_ioctl: unknown command 0x%x", command);
1538 return -ENOTTY;
1539 }
1540
1541 /*
1542 * Trying to avoid low memory issues when a device is
1543 * suspended.
1544 */
1545 current->flags |= PF_MEMALLOC;
1546
1547 /*
1548 * Copy the parameters into kernel space.
1549 */
1550 r = copy_params(user, &param);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551
Alasdair G Kergondab6a422006-02-01 03:04:52 -08001552 current->flags &= ~PF_MEMALLOC;
1553
1554 if (r)
1555 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556
1557 r = validate_params(cmd, param);
1558 if (r)
1559 goto out;
1560
1561 param_size = param->data_size;
1562 param->data_size = sizeof(*param);
1563 r = fn(param, param_size);
1564
1565 /*
1566 * Copy the results back to userland.
1567 */
1568 if (!r && copy_to_user(user, param, param->data_size))
1569 r = -EFAULT;
1570
1571 out:
1572 free_params(param);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573 return r;
1574}
1575
Alasdair G Kergon27238b22008-02-08 02:09:53 +00001576static long dm_ctl_ioctl(struct file *file, uint command, ulong u)
1577{
1578 return (long)ctl_ioctl(command, (struct dm_ioctl __user *)u);
1579}
1580
Milan Broz76c072b2008-02-08 02:09:56 +00001581#ifdef CONFIG_COMPAT
1582static long dm_compat_ctl_ioctl(struct file *file, uint command, ulong u)
1583{
1584 return (long)dm_ctl_ioctl(file, command, (ulong) compat_ptr(u));
1585}
1586#else
1587#define dm_compat_ctl_ioctl NULL
1588#endif
1589
Arjan van de Venfa027c22007-02-12 00:55:33 -08001590static const struct file_operations _ctl_fops = {
Alasdair G Kergon27238b22008-02-08 02:09:53 +00001591 .unlocked_ioctl = dm_ctl_ioctl,
Milan Broz76c072b2008-02-08 02:09:56 +00001592 .compat_ioctl = dm_compat_ctl_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593 .owner = THIS_MODULE,
1594};
1595
1596static struct miscdevice _dm_misc = {
1597 .minor = MISC_DYNAMIC_MINOR,
1598 .name = DM_NAME,
Kay Sieverse454cea2009-09-18 23:01:12 +02001599 .nodename = "mapper/control",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600 .fops = &_ctl_fops
1601};
1602
1603/*
1604 * Create misc character device and link to DM_DIR/control.
1605 */
1606int __init dm_interface_init(void)
1607{
1608 int r;
1609
1610 r = dm_hash_init();
1611 if (r)
1612 return r;
1613
1614 r = misc_register(&_dm_misc);
1615 if (r) {
1616 DMERR("misc_register failed for control device");
1617 dm_hash_exit();
1618 return r;
1619 }
1620
1621 DMINFO("%d.%d.%d%s initialised: %s", DM_VERSION_MAJOR,
1622 DM_VERSION_MINOR, DM_VERSION_PATCHLEVEL, DM_VERSION_EXTRA,
1623 DM_DRIVER_EMAIL);
1624 return 0;
1625}
1626
1627void dm_interface_exit(void)
1628{
1629 if (misc_deregister(&_dm_misc) < 0)
1630 DMERR("misc_deregister failed for control device");
1631
1632 dm_hash_exit();
1633}
Mike Anderson96a1f7d2007-10-19 22:47:59 +01001634
1635/**
1636 * dm_copy_name_and_uuid - Copy mapped device name & uuid into supplied buffers
1637 * @md: Pointer to mapped_device
1638 * @name: Buffer (size DM_NAME_LEN) for name
1639 * @uuid: Buffer (size DM_UUID_LEN) for uuid or empty string if uuid not defined
1640 */
1641int dm_copy_name_and_uuid(struct mapped_device *md, char *name, char *uuid)
1642{
1643 int r = 0;
1644 struct hash_cell *hc;
1645
1646 if (!md)
1647 return -ENXIO;
1648
Mikulas Patocka60769052009-12-10 23:51:52 +00001649 mutex_lock(&dm_hash_cells_mutex);
Mike Anderson96a1f7d2007-10-19 22:47:59 +01001650 hc = dm_get_mdptr(md);
1651 if (!hc || hc->md != md) {
1652 r = -ENXIO;
1653 goto out;
1654 }
1655
Milan Broz23d39f62009-01-06 03:05:04 +00001656 if (name)
1657 strcpy(name, hc->name);
1658 if (uuid)
1659 strcpy(uuid, hc->uuid ? : "");
Mike Anderson96a1f7d2007-10-19 22:47:59 +01001660
1661out:
Mikulas Patocka60769052009-12-10 23:51:52 +00001662 mutex_unlock(&dm_hash_cells_mutex);
Mike Anderson96a1f7d2007-10-19 22:47:59 +01001663
1664 return r;
1665}