dm ioctl: remove __dev_status from geometry and target message
[deliverable/linux.git] / drivers / md / dm-ioctl.c
CommitLineData
1da177e4
LT
1/*
2 * Copyright (C) 2001, 2002 Sistina Software (UK) Limited.
2b06cfff 3 * Copyright (C) 2004 - 2006 Red Hat, Inc. All rights reserved.
1da177e4
LT
4 *
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>
1da177e4 16#include <linux/dm-ioctl.h>
3ac51e74 17#include <linux/hdreg.h>
76c072b4 18#include <linux/compat.h>
1da177e4
LT
19
20#include <asm/uaccess.h>
21
72d94861 22#define DM_MSG_PREFIX "ioctl"
1da177e4
LT
23#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
5c6bd75d 52static void dm_hash_remove_all(int keep_open_devices);
1da177e4
LT
53
54/*
55 * Guards access to both hash tables.
56 */
57static DECLARE_RWSEM(_hash_lock);
58
6076905b
MP
59/*
60 * Protects use of mdptr to obtain hash cell name and uuid from mapped device.
61 */
62static DEFINE_MUTEX(dm_hash_cells_mutex);
63
1da177e4
LT
64static 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);
1da177e4
LT
76 return 0;
77}
78
79static void dm_hash_exit(void)
80{
5c6bd75d 81 dm_hash_remove_all(0);
1da177e4
LT
82}
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)
7ec75f25
JM
109 if (!strcmp(hc->name, str)) {
110 dm_get(hc->md);
1da177e4 111 return hc;
7ec75f25 112 }
1da177e4
LT
113
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)
7ec75f25
JM
123 if (!strcmp(hc->uuid, str)) {
124 dm_get(hc->md);
1da177e4 125 return hc;
7ec75f25 126 }
1da177e4
LT
127
128 return NULL;
129}
130
131/*-----------------------------------------------------------------
132 * Inserting, removing and renaming a device.
133 *---------------------------------------------------------------*/
1da177e4
LT
134static 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
543537bd 143 hc->name = kstrdup(name, GFP_KERNEL);
1da177e4
LT
144 if (!hc->name) {
145 kfree(hc);
146 return NULL;
147 }
148
149 if (!uuid)
150 hc->uuid = NULL;
151
152 else {
543537bd 153 hc->uuid = kstrdup(uuid, GFP_KERNEL);
1da177e4
LT
154 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
1da177e4
LT
177/*
178 * 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{
7ec75f25 183 struct hash_cell *cell, *hc;
1da177e4
LT
184
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);
7ec75f25
JM
196 hc = __get_name_cell(name);
197 if (hc) {
198 dm_put(hc->md);
1da177e4 199 goto bad;
7ec75f25 200 }
1da177e4
LT
201
202 list_add(&cell->name_list, _name_buckets + hash_str(name));
203
204 if (uuid) {
7ec75f25
JM
205 hc = __get_uuid_cell(uuid);
206 if (hc) {
1da177e4 207 list_del(&cell->name_list);
7ec75f25 208 dm_put(hc->md);
1da177e4
LT
209 goto bad;
210 }
211 list_add(&cell->uuid_list, _uuid_buckets + hash_str(uuid));
212 }
1da177e4 213 dm_get(md);
6076905b 214 mutex_lock(&dm_hash_cells_mutex);
1da177e4 215 dm_set_mdptr(md, cell);
6076905b 216 mutex_unlock(&dm_hash_cells_mutex);
1da177e4
LT
217 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{
269fd2a6 229 struct dm_table *table;
230
1da177e4
LT
231 /* remove from the dev hash */
232 list_del(&hc->uuid_list);
233 list_del(&hc->name_list);
6076905b 234 mutex_lock(&dm_hash_cells_mutex);
1da177e4 235 dm_set_mdptr(hc->md, NULL);
6076905b 236 mutex_unlock(&dm_hash_cells_mutex);
269fd2a6 237
7c666411 238 table = dm_get_live_table(hc->md);
269fd2a6 239 if (table) {
240 dm_table_event(table);
241 dm_table_put(table);
242 }
243
1da177e4 244 if (hc->new_map)
d5816876 245 dm_table_destroy(hc->new_map);
1134e5ae 246 dm_put(hc->md);
1da177e4
LT
247 free_cell(hc);
248}
249
5c6bd75d 250static void dm_hash_remove_all(int keep_open_devices)
1da177e4 251{
5c6bd75d 252 int i, dev_skipped, dev_removed;
1da177e4
LT
253 struct hash_cell *hc;
254 struct list_head *tmp, *n;
255
256 down_write(&_hash_lock);
5c6bd75d
AK
257
258retry:
259 dev_skipped = dev_removed = 0;
1da177e4
LT
260 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);
5c6bd75d
AK
263
264 if (keep_open_devices &&
265 dm_lock_for_deletion(hc->md)) {
266 dev_skipped++;
267 continue;
268 }
1da177e4 269 __hash_remove(hc);
5c6bd75d 270 dev_removed = 1;
1da177e4
LT
271 }
272 }
5c6bd75d
AK
273
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
1da177e4
LT
285 up_write(&_hash_lock);
286}
287
3abf85b5
PR
288static int dm_hash_rename(uint32_t cookie, uint32_t *flags, const char *old,
289 const char *new)
1da177e4
LT
290{
291 char *new_name, *old_name;
292 struct hash_cell *hc;
81f1777a 293 struct dm_table *table;
1da177e4
LT
294
295 /*
296 * duplicate new.
297 */
543537bd 298 new_name = kstrdup(new, GFP_KERNEL);
1da177e4
LT
299 if (!new_name)
300 return -ENOMEM;
301
302 down_write(&_hash_lock);
303
304 /*
305 * Is new free ?
306 */
307 hc = __get_name_cell(new);
308 if (hc) {
309 DMWARN("asked to rename to an already existing name %s -> %s",
310 old, new);
7ec75f25 311 dm_put(hc->md);
1da177e4
LT
312 up_write(&_hash_lock);
313 kfree(new_name);
314 return -EBUSY;
315 }
316
317 /*
318 * Is there such a device as 'old' ?
319 */
320 hc = __get_name_cell(old);
321 if (!hc) {
322 DMWARN("asked to rename a non existent device %s -> %s",
323 old, new);
324 up_write(&_hash_lock);
325 kfree(new_name);
326 return -ENXIO;
327 }
328
329 /*
330 * rename and move the name cell.
331 */
1da177e4
LT
332 list_del(&hc->name_list);
333 old_name = hc->name;
6076905b 334 mutex_lock(&dm_hash_cells_mutex);
1da177e4 335 hc->name = new_name;
6076905b 336 mutex_unlock(&dm_hash_cells_mutex);
1da177e4
LT
337 list_add(&hc->name_list, _name_buckets + hash_str(new_name));
338
81f1777a 339 /*
340 * Wake up any dm event waiters.
341 */
7c666411 342 table = dm_get_live_table(hc->md);
81f1777a 343 if (table) {
344 dm_table_event(table);
345 dm_table_put(table);
346 }
347
3abf85b5
PR
348 if (!dm_kobject_uevent(hc->md, KOBJ_CHANGE, cookie))
349 *flags |= DM_UEVENT_GENERATED_FLAG;
69267a30 350
7ec75f25 351 dm_put(hc->md);
1da177e4
LT
352 up_write(&_hash_lock);
353 kfree(old_name);
354 return 0;
355}
356
357/*-----------------------------------------------------------------
358 * Implementation of the ioctl commands
359 *---------------------------------------------------------------*/
360/*
361 * All the ioctl commands get dispatched to functions with this
362 * prototype.
363 */
364typedef int (*ioctl_fn)(struct dm_ioctl *param, size_t param_size);
365
366static int remove_all(struct dm_ioctl *param, size_t param_size)
367{
5c6bd75d 368 dm_hash_remove_all(1);
1da177e4
LT
369 param->data_size = 0;
370 return 0;
371}
372
373/*
374 * Round up the ptr to an 8-byte boundary.
375 */
376#define ALIGN_MASK 7
377static inline void *align_ptr(void *ptr)
378{
379 return (void *) (((size_t) (ptr + ALIGN_MASK)) & ~ALIGN_MASK);
380}
381
382/*
383 * Retrieves the data payload buffer from an already allocated
384 * struct dm_ioctl.
385 */
386static void *get_result_buffer(struct dm_ioctl *param, size_t param_size,
387 size_t *len)
388{
389 param->data_start = align_ptr(param + 1) - (void *) param;
390
391 if (param->data_start < param_size)
392 *len = param_size - param->data_start;
393 else
394 *len = 0;
395
396 return ((void *) param) + param->data_start;
397}
398
399static int list_devices(struct dm_ioctl *param, size_t param_size)
400{
401 unsigned int i;
402 struct hash_cell *hc;
403 size_t len, needed = 0;
404 struct gendisk *disk;
405 struct dm_name_list *nl, *old_nl = NULL;
406
407 down_write(&_hash_lock);
408
409 /*
410 * Loop through all the devices working out how much
411 * space we need.
412 */
413 for (i = 0; i < NUM_BUCKETS; i++) {
414 list_for_each_entry (hc, _name_buckets + i, name_list) {
415 needed += sizeof(struct dm_name_list);
416 needed += strlen(hc->name) + 1;
417 needed += ALIGN_MASK;
418 }
419 }
420
421 /*
422 * Grab our output buffer.
423 */
424 nl = get_result_buffer(param, param_size, &len);
425 if (len < needed) {
426 param->flags |= DM_BUFFER_FULL_FLAG;
427 goto out;
428 }
429 param->data_size = param->data_start + needed;
430
431 nl->dev = 0; /* Flags no data */
432
433 /*
434 * Now loop through filling out the names.
435 */
436 for (i = 0; i < NUM_BUCKETS; i++) {
437 list_for_each_entry (hc, _name_buckets + i, name_list) {
438 if (old_nl)
439 old_nl->next = (uint32_t) ((void *) nl -
440 (void *) old_nl);
441 disk = dm_disk(hc->md);
f331c029 442 nl->dev = huge_encode_dev(disk_devt(disk));
1da177e4
LT
443 nl->next = 0;
444 strcpy(nl->name, hc->name);
445
446 old_nl = nl;
447 nl = align_ptr(((void *) ++nl) + strlen(hc->name) + 1);
448 }
449 }
450
451 out:
452 up_write(&_hash_lock);
453 return 0;
454}
455
456static void list_version_get_needed(struct target_type *tt, void *needed_param)
457{
458 size_t *needed = needed_param;
459
c4cc6635 460 *needed += sizeof(struct dm_target_versions);
1da177e4 461 *needed += strlen(tt->name);
1da177e4
LT
462 *needed += ALIGN_MASK;
463}
464
465static void list_version_get_info(struct target_type *tt, void *param)
466{
467 struct vers_iter *info = param;
468
469 /* Check space - it might have changed since the first iteration */
470 if ((char *)info->vers + sizeof(tt->version) + strlen(tt->name) + 1 >
471 info->end) {
472
473 info->flags = DM_BUFFER_FULL_FLAG;
474 return;
475 }
476
477 if (info->old_vers)
478 info->old_vers->next = (uint32_t) ((void *)info->vers -
479 (void *)info->old_vers);
480 info->vers->version[0] = tt->version[0];
481 info->vers->version[1] = tt->version[1];
482 info->vers->version[2] = tt->version[2];
483 info->vers->next = 0;
484 strcpy(info->vers->name, tt->name);
485
486 info->old_vers = info->vers;
487 info->vers = align_ptr(((void *) ++info->vers) + strlen(tt->name) + 1);
488}
489
490static int list_versions(struct dm_ioctl *param, size_t param_size)
491{
492 size_t len, needed = 0;
493 struct dm_target_versions *vers;
494 struct vers_iter iter_info;
495
496 /*
497 * Loop through all the devices working out how much
498 * space we need.
499 */
500 dm_target_iterate(list_version_get_needed, &needed);
501
502 /*
503 * Grab our output buffer.
504 */
505 vers = get_result_buffer(param, param_size, &len);
506 if (len < needed) {
507 param->flags |= DM_BUFFER_FULL_FLAG;
508 goto out;
509 }
510 param->data_size = param->data_start + needed;
511
512 iter_info.param_size = param_size;
513 iter_info.old_vers = NULL;
514 iter_info.vers = vers;
515 iter_info.flags = 0;
516 iter_info.end = (char *)vers+len;
517
518 /*
519 * Now loop through filling out the names & versions.
520 */
521 dm_target_iterate(list_version_get_info, &iter_info);
522 param->flags |= iter_info.flags;
523
524 out:
525 return 0;
526}
527
1da177e4
LT
528static int check_name(const char *name)
529{
530 if (strchr(name, '/')) {
531 DMWARN("invalid device name");
532 return -EINVAL;
533 }
534
535 return 0;
536}
537
1d0f3ce8
MS
538/*
539 * On successful return, the caller must not attempt to acquire
540 * _hash_lock without first calling dm_table_put, because dm_table_destroy
541 * waits for this dm_table_put and could be called under this lock.
542 */
543static struct dm_table *dm_get_inactive_table(struct mapped_device *md)
544{
545 struct hash_cell *hc;
546 struct dm_table *table = NULL;
547
548 down_read(&_hash_lock);
549 hc = dm_get_mdptr(md);
550 if (!hc || hc->md != md) {
551 DMWARN("device has been removed from the dev hash table.");
552 goto out;
553 }
554
555 table = hc->new_map;
556 if (table)
557 dm_table_get(table);
558
559out:
560 up_read(&_hash_lock);
561
562 return table;
563}
564
565static struct dm_table *dm_get_live_or_inactive_table(struct mapped_device *md,
566 struct dm_ioctl *param)
567{
568 return (param->flags & DM_QUERY_INACTIVE_TABLE_FLAG) ?
569 dm_get_inactive_table(md) : dm_get_live_table(md);
570}
571
1da177e4
LT
572/*
573 * Fills in a dm_ioctl structure, ready for sending back to
574 * userland.
575 */
576static int __dev_status(struct mapped_device *md, struct dm_ioctl *param)
577{
578 struct gendisk *disk = dm_disk(md);
579 struct dm_table *table;
1da177e4
LT
580
581 param->flags &= ~(DM_SUSPEND_FLAG | DM_READONLY_FLAG |
582 DM_ACTIVE_PRESENT_FLAG);
583
4f186f8b 584 if (dm_suspended_md(md))
1da177e4
LT
585 param->flags |= DM_SUSPEND_FLAG;
586
f331c029 587 param->dev = huge_encode_dev(disk_devt(disk));
1da177e4 588
5c6bd75d
AK
589 /*
590 * Yes, this will be out of date by the time it gets back
591 * to userland, but it is still very useful for
592 * debugging.
593 */
594 param->open_count = dm_open_count(md);
1da177e4 595
1da177e4 596 param->event_nr = dm_get_event_nr(md);
1d0f3ce8 597 param->target_count = 0;
1da177e4 598
7c666411 599 table = dm_get_live_table(md);
1da177e4 600 if (table) {
1d0f3ce8
MS
601 if (!(param->flags & DM_QUERY_INACTIVE_TABLE_FLAG)) {
602 if (get_disk_ro(disk))
603 param->flags |= DM_READONLY_FLAG;
604 param->target_count = dm_table_get_num_targets(table);
605 }
1da177e4 606 dm_table_put(table);
1d0f3ce8
MS
607
608 param->flags |= DM_ACTIVE_PRESENT_FLAG;
609 }
610
611 if (param->flags & DM_QUERY_INACTIVE_TABLE_FLAG) {
612 table = dm_get_inactive_table(md);
613 if (table) {
614 if (!(dm_table_get_mode(table) & FMODE_WRITE))
615 param->flags |= DM_READONLY_FLAG;
616 param->target_count = dm_table_get_num_targets(table);
617 dm_table_put(table);
618 }
619 }
1da177e4
LT
620
621 return 0;
622}
623
624static int dev_create(struct dm_ioctl *param, size_t param_size)
625{
2b06cfff 626 int r, m = DM_ANY_MINOR;
1da177e4
LT
627 struct mapped_device *md;
628
629 r = check_name(param->name);
630 if (r)
631 return r;
632
633 if (param->flags & DM_PERSISTENT_DEV_FLAG)
2b06cfff 634 m = MINOR(huge_decode_dev(param->dev));
1da177e4 635
2b06cfff 636 r = dm_create(m, &md);
1da177e4
LT
637 if (r)
638 return r;
639
640 r = dm_hash_insert(param->name, *param->uuid ? param->uuid : NULL, md);
641 if (r) {
642 dm_put(md);
643 return r;
644 }
645
646 param->flags &= ~DM_INACTIVE_PRESENT_FLAG;
647
648 r = __dev_status(md, param);
649 dm_put(md);
650
651 return r;
652}
653
654/*
655 * Always use UUID for lookups if it's present, otherwise use name or dev.
656 */
858119e1 657static struct hash_cell *__find_device_hash_cell(struct dm_ioctl *param)
1da177e4 658{
9ade92a9
AK
659 struct mapped_device *md;
660 void *mdptr = NULL;
661
1da177e4
LT
662 if (*param->uuid)
663 return __get_uuid_cell(param->uuid);
9ade92a9
AK
664
665 if (*param->name)
1da177e4 666 return __get_name_cell(param->name);
9ade92a9
AK
667
668 md = dm_get_md(huge_decode_dev(param->dev));
bfc5ecdf
AK
669 if (!md)
670 goto out;
671
672 mdptr = dm_get_mdptr(md);
673 if (!mdptr)
674 dm_put(md);
9ade92a9 675
bfc5ecdf 676out:
9ade92a9 677 return mdptr;
1da177e4
LT
678}
679
858119e1 680static struct mapped_device *find_device(struct dm_ioctl *param)
1da177e4
LT
681{
682 struct hash_cell *hc;
683 struct mapped_device *md = NULL;
684
685 down_read(&_hash_lock);
686 hc = __find_device_hash_cell(param);
687 if (hc) {
688 md = hc->md;
1da177e4
LT
689
690 /*
691 * Sneakily write in both the name and the uuid
692 * while we have the cell.
693 */
a518b86d 694 strlcpy(param->name, hc->name, sizeof(param->name));
1da177e4 695 if (hc->uuid)
a518b86d 696 strlcpy(param->uuid, hc->uuid, sizeof(param->uuid));
1da177e4
LT
697 else
698 param->uuid[0] = '\0';
699
700 if (hc->new_map)
701 param->flags |= DM_INACTIVE_PRESENT_FLAG;
702 else
703 param->flags &= ~DM_INACTIVE_PRESENT_FLAG;
704 }
705 up_read(&_hash_lock);
706
707 return md;
708}
709
710static int dev_remove(struct dm_ioctl *param, size_t param_size)
711{
712 struct hash_cell *hc;
7ec75f25 713 struct mapped_device *md;
5c6bd75d 714 int r;
1da177e4
LT
715
716 down_write(&_hash_lock);
717 hc = __find_device_hash_cell(param);
718
719 if (!hc) {
720 DMWARN("device doesn't appear to be in the dev hash table.");
721 up_write(&_hash_lock);
722 return -ENXIO;
723 }
724
7ec75f25
JM
725 md = hc->md;
726
5c6bd75d
AK
727 /*
728 * Ensure the device is not open and nothing further can open it.
729 */
730 r = dm_lock_for_deletion(md);
731 if (r) {
732 DMWARN("unable to remove open device %s", hc->name);
733 up_write(&_hash_lock);
734 dm_put(md);
735 return r;
736 }
737
1da177e4
LT
738 __hash_remove(hc);
739 up_write(&_hash_lock);
60935eb2 740
3abf85b5
PR
741 if (!dm_kobject_uevent(md, KOBJ_REMOVE, param->event_nr))
742 param->flags |= DM_UEVENT_GENERATED_FLAG;
60935eb2 743
7ec75f25 744 dm_put(md);
1da177e4
LT
745 return 0;
746}
747
748/*
749 * Check a string doesn't overrun the chunk of
750 * memory we copied from userland.
751 */
752static int invalid_str(char *str, void *end)
753{
754 while ((void *) str < end)
755 if (!*str++)
756 return 0;
757
758 return -EINVAL;
759}
760
761static int dev_rename(struct dm_ioctl *param, size_t param_size)
762{
763 int r;
764 char *new_name = (char *) param + param->data_start;
765
27238b2b 766 if (new_name < param->data ||
bc0fd67f
MB
767 invalid_str(new_name, (void *) param + param_size) ||
768 strlen(new_name) > DM_NAME_LEN - 1) {
1da177e4
LT
769 DMWARN("Invalid new logical volume name supplied.");
770 return -EINVAL;
771 }
772
773 r = check_name(new_name);
774 if (r)
775 return r;
776
777 param->data_size = 0;
3abf85b5
PR
778
779 return dm_hash_rename(param->event_nr, &param->flags, param->name,
780 new_name);
1da177e4
LT
781}
782
3ac51e74
DW
783static int dev_set_geometry(struct dm_ioctl *param, size_t param_size)
784{
785 int r = -EINVAL, x;
786 struct mapped_device *md;
787 struct hd_geometry geometry;
788 unsigned long indata[4];
789 char *geostr = (char *) param + param->data_start;
790
791 md = find_device(param);
792 if (!md)
793 return -ENXIO;
794
27238b2b 795 if (geostr < param->data ||
3ac51e74
DW
796 invalid_str(geostr, (void *) param + param_size)) {
797 DMWARN("Invalid geometry supplied.");
798 goto out;
799 }
800
801 x = sscanf(geostr, "%lu %lu %lu %lu", indata,
802 indata + 1, indata + 2, indata + 3);
803
804 if (x != 4) {
805 DMWARN("Unable to interpret geometry settings.");
806 goto out;
807 }
808
809 if (indata[0] > 65535 || indata[1] > 255 ||
810 indata[2] > 255 || indata[3] > ULONG_MAX) {
811 DMWARN("Geometry exceeds range limits.");
812 goto out;
813 }
814
815 geometry.cylinders = indata[0];
816 geometry.heads = indata[1];
817 geometry.sectors = indata[2];
818 geometry.start = indata[3];
819
820 r = dm_set_geometry(md, &geometry);
3ac51e74
DW
821
822 param->data_size = 0;
823
824out:
825 dm_put(md);
826 return r;
827}
828
1da177e4
LT
829static int do_suspend(struct dm_ioctl *param)
830{
831 int r = 0;
a3d77d35 832 unsigned suspend_flags = DM_SUSPEND_LOCKFS_FLAG;
1da177e4
LT
833 struct mapped_device *md;
834
835 md = find_device(param);
836 if (!md)
837 return -ENXIO;
838
6da487dc 839 if (param->flags & DM_SKIP_LOCKFS_FLAG)
a3d77d35 840 suspend_flags &= ~DM_SUSPEND_LOCKFS_FLAG;
81fdb096
KU
841 if (param->flags & DM_NOFLUSH_FLAG)
842 suspend_flags |= DM_SUSPEND_NOFLUSH_FLAG;
6da487dc 843
4f186f8b 844 if (!dm_suspended_md(md))
a3d77d35 845 r = dm_suspend(md, suspend_flags);
1da177e4
LT
846
847 if (!r)
848 r = __dev_status(md, param);
849
850 dm_put(md);
851 return r;
852}
853
854static int do_resume(struct dm_ioctl *param)
855{
856 int r = 0;
a3d77d35 857 unsigned suspend_flags = DM_SUSPEND_LOCKFS_FLAG;
1da177e4
LT
858 struct hash_cell *hc;
859 struct mapped_device *md;
042d2a9b 860 struct dm_table *new_map, *old_map = NULL;
1da177e4
LT
861
862 down_write(&_hash_lock);
863
864 hc = __find_device_hash_cell(param);
865 if (!hc) {
866 DMWARN("device doesn't appear to be in the dev hash table.");
867 up_write(&_hash_lock);
868 return -ENXIO;
869 }
870
871 md = hc->md;
1da177e4
LT
872
873 new_map = hc->new_map;
874 hc->new_map = NULL;
875 param->flags &= ~DM_INACTIVE_PRESENT_FLAG;
876
877 up_write(&_hash_lock);
878
879 /* Do we need to load a new map ? */
880 if (new_map) {
881 /* Suspend if it isn't already suspended */
6da487dc 882 if (param->flags & DM_SKIP_LOCKFS_FLAG)
a3d77d35 883 suspend_flags &= ~DM_SUSPEND_LOCKFS_FLAG;
81fdb096
KU
884 if (param->flags & DM_NOFLUSH_FLAG)
885 suspend_flags |= DM_SUSPEND_NOFLUSH_FLAG;
4f186f8b 886 if (!dm_suspended_md(md))
a3d77d35 887 dm_suspend(md, suspend_flags);
1da177e4 888
042d2a9b
AK
889 old_map = dm_swap_table(md, new_map);
890 if (IS_ERR(old_map)) {
d5816876 891 dm_table_destroy(new_map);
1da177e4 892 dm_put(md);
042d2a9b 893 return PTR_ERR(old_map);
1da177e4
LT
894 }
895
896 if (dm_table_get_mode(new_map) & FMODE_WRITE)
897 set_disk_ro(dm_disk(md), 0);
898 else
899 set_disk_ro(dm_disk(md), 1);
1da177e4
LT
900 }
901
0f3649a9 902 if (dm_suspended_md(md)) {
1da177e4 903 r = dm_resume(md);
3abf85b5
PR
904 if (!r && !dm_kobject_uevent(md, KOBJ_CHANGE, param->event_nr))
905 param->flags |= DM_UEVENT_GENERATED_FLAG;
0f3649a9 906 }
1da177e4 907
042d2a9b
AK
908 if (old_map)
909 dm_table_destroy(old_map);
60935eb2 910
0f3649a9 911 if (!r)
1da177e4
LT
912 r = __dev_status(md, param);
913
914 dm_put(md);
915 return r;
916}
917
918/*
919 * Set or unset the suspension state of a device.
920 * If the device already is in the requested state we just return its status.
921 */
922static int dev_suspend(struct dm_ioctl *param, size_t param_size)
923{
924 if (param->flags & DM_SUSPEND_FLAG)
925 return do_suspend(param);
926
927 return do_resume(param);
928}
929
930/*
931 * Copies device info back to user space, used by
932 * the create and info ioctls.
933 */
934static int dev_status(struct dm_ioctl *param, size_t param_size)
935{
936 int r;
937 struct mapped_device *md;
938
939 md = find_device(param);
940 if (!md)
941 return -ENXIO;
942
943 r = __dev_status(md, param);
944 dm_put(md);
945 return r;
946}
947
948/*
949 * Build up the status struct for each target
950 */
951static void retrieve_status(struct dm_table *table,
952 struct dm_ioctl *param, size_t param_size)
953{
954 unsigned int i, num_targets;
955 struct dm_target_spec *spec;
956 char *outbuf, *outptr;
957 status_type_t type;
958 size_t remaining, len, used = 0;
959
960 outptr = outbuf = get_result_buffer(param, param_size, &len);
961
962 if (param->flags & DM_STATUS_TABLE_FLAG)
963 type = STATUSTYPE_TABLE;
964 else
965 type = STATUSTYPE_INFO;
966
967 /* Get all the target info */
968 num_targets = dm_table_get_num_targets(table);
969 for (i = 0; i < num_targets; i++) {
970 struct dm_target *ti = dm_table_get_target(table, i);
971
972 remaining = len - (outptr - outbuf);
973 if (remaining <= sizeof(struct dm_target_spec)) {
974 param->flags |= DM_BUFFER_FULL_FLAG;
975 break;
976 }
977
978 spec = (struct dm_target_spec *) outptr;
979
980 spec->status = 0;
981 spec->sector_start = ti->begin;
982 spec->length = ti->len;
983 strncpy(spec->target_type, ti->type->name,
984 sizeof(spec->target_type));
985
986 outptr += sizeof(struct dm_target_spec);
987 remaining = len - (outptr - outbuf);
988 if (remaining <= 0) {
989 param->flags |= DM_BUFFER_FULL_FLAG;
990 break;
991 }
992
993 /* Get the status/table string from the target driver */
994 if (ti->type->status) {
995 if (ti->type->status(ti, type, outptr, remaining)) {
996 param->flags |= DM_BUFFER_FULL_FLAG;
997 break;
998 }
999 } else
1000 outptr[0] = '\0';
1001
1002 outptr += strlen(outptr) + 1;
1003 used = param->data_start + (outptr - outbuf);
1004
1005 outptr = align_ptr(outptr);
1006 spec->next = outptr - outbuf;
1007 }
1008
1009 if (used)
1010 param->data_size = used;
1011
1012 param->target_count = num_targets;
1013}
1014
1015/*
1016 * Wait for a device to report an event
1017 */
1018static int dev_wait(struct dm_ioctl *param, size_t param_size)
1019{
1020 int r;
1021 struct mapped_device *md;
1022 struct dm_table *table;
1023
1024 md = find_device(param);
1025 if (!md)
1026 return -ENXIO;
1027
1028 /*
1029 * Wait for a notification event
1030 */
1031 if (dm_wait_event(md, param->event_nr)) {
1032 r = -ERESTARTSYS;
1033 goto out;
1034 }
1035
1036 /*
1037 * The userland program is going to want to know what
1038 * changed to trigger the event, so we may as well tell
1039 * him and save an ioctl.
1040 */
1041 r = __dev_status(md, param);
1042 if (r)
1043 goto out;
1044
1d0f3ce8 1045 table = dm_get_live_or_inactive_table(md, param);
1da177e4
LT
1046 if (table) {
1047 retrieve_status(table, param, param_size);
1048 dm_table_put(table);
1049 }
1050
1051 out:
1052 dm_put(md);
1053 return r;
1054}
1055
aeb5d727 1056static inline fmode_t get_mode(struct dm_ioctl *param)
1da177e4 1057{
aeb5d727 1058 fmode_t mode = FMODE_READ | FMODE_WRITE;
1da177e4
LT
1059
1060 if (param->flags & DM_READONLY_FLAG)
1061 mode = FMODE_READ;
1062
1063 return mode;
1064}
1065
1066static int next_target(struct dm_target_spec *last, uint32_t next, void *end,
1067 struct dm_target_spec **spec, char **target_params)
1068{
1069 *spec = (struct dm_target_spec *) ((unsigned char *) last + next);
1070 *target_params = (char *) (*spec + 1);
1071
1072 if (*spec < (last + 1))
1073 return -EINVAL;
1074
1075 return invalid_str(*target_params, end);
1076}
1077
1078static int populate_table(struct dm_table *table,
1079 struct dm_ioctl *param, size_t param_size)
1080{
1081 int r;
1082 unsigned int i = 0;
1083 struct dm_target_spec *spec = (struct dm_target_spec *) param;
1084 uint32_t next = param->data_start;
1085 void *end = (void *) param + param_size;
1086 char *target_params;
1087
1088 if (!param->target_count) {
1089 DMWARN("populate_table: no targets specified");
1090 return -EINVAL;
1091 }
1092
1093 for (i = 0; i < param->target_count; i++) {
1094
1095 r = next_target(spec, next, end, &spec, &target_params);
1096 if (r) {
1097 DMWARN("unable to find target");
1098 return r;
1099 }
1100
1101 r = dm_table_add_target(table, spec->target_type,
1102 (sector_t) spec->sector_start,
1103 (sector_t) spec->length,
1104 target_params);
1105 if (r) {
1106 DMWARN("error adding target to table");
1107 return r;
1108 }
1109
1110 next = spec->next;
1111 }
1112
e6ee8c0b
KU
1113 r = dm_table_set_type(table);
1114 if (r) {
1115 DMWARN("unable to set table type");
1116 return r;
1117 }
1118
1da177e4
LT
1119 return dm_table_complete(table);
1120}
1121
9c47008d
MP
1122static int table_prealloc_integrity(struct dm_table *t,
1123 struct mapped_device *md)
1124{
1125 struct list_head *devices = dm_table_get_devices(t);
1126 struct dm_dev_internal *dd;
1127
1128 list_for_each_entry(dd, devices, list)
1129 if (bdev_get_integrity(dd->dm_dev.bdev))
1130 return blk_integrity_register(dm_disk(md), NULL);
1131
1132 return 0;
1133}
1134
1da177e4
LT
1135static int table_load(struct dm_ioctl *param, size_t param_size)
1136{
1137 int r;
1138 struct hash_cell *hc;
1139 struct dm_table *t;
1134e5ae
MA
1140 struct mapped_device *md;
1141
1142 md = find_device(param);
1143 if (!md)
1144 return -ENXIO;
1da177e4 1145
1134e5ae 1146 r = dm_table_create(&t, get_mode(param), param->target_count, md);
1da177e4 1147 if (r)
1134e5ae 1148 goto out;
1da177e4
LT
1149
1150 r = populate_table(t, param, param_size);
1151 if (r) {
f80a5570 1152 dm_table_destroy(t);
1134e5ae 1153 goto out;
1da177e4
LT
1154 }
1155
9c47008d
MP
1156 r = table_prealloc_integrity(t, md);
1157 if (r) {
1158 DMERR("%s: could not register integrity profile.",
1159 dm_device_name(md));
1160 dm_table_destroy(t);
1161 goto out;
1162 }
1163
e6ee8c0b
KU
1164 r = dm_table_alloc_md_mempools(t);
1165 if (r) {
1166 DMWARN("unable to allocate mempools for this table");
1167 dm_table_destroy(t);
1168 goto out;
1169 }
1170
1da177e4 1171 down_write(&_hash_lock);
1134e5ae
MA
1172 hc = dm_get_mdptr(md);
1173 if (!hc || hc->md != md) {
1174 DMWARN("device has been removed from the dev hash table.");
f80a5570 1175 dm_table_destroy(t);
1134e5ae
MA
1176 up_write(&_hash_lock);
1177 r = -ENXIO;
1178 goto out;
1da177e4
LT
1179 }
1180
1181 if (hc->new_map)
d5816876 1182 dm_table_destroy(hc->new_map);
1da177e4 1183 hc->new_map = t;
1134e5ae
MA
1184 up_write(&_hash_lock);
1185
1da177e4 1186 param->flags |= DM_INACTIVE_PRESENT_FLAG;
1134e5ae
MA
1187 r = __dev_status(md, param);
1188
1189out:
1190 dm_put(md);
1da177e4 1191
1da177e4
LT
1192 return r;
1193}
1194
1195static int table_clear(struct dm_ioctl *param, size_t param_size)
1196{
1197 int r;
1198 struct hash_cell *hc;
7ec75f25 1199 struct mapped_device *md;
1da177e4
LT
1200
1201 down_write(&_hash_lock);
1202
1203 hc = __find_device_hash_cell(param);
1204 if (!hc) {
1205 DMWARN("device doesn't appear to be in the dev hash table.");
1206 up_write(&_hash_lock);
1207 return -ENXIO;
1208 }
1209
1210 if (hc->new_map) {
d5816876 1211 dm_table_destroy(hc->new_map);
1da177e4
LT
1212 hc->new_map = NULL;
1213 }
1214
1215 param->flags &= ~DM_INACTIVE_PRESENT_FLAG;
1216
1217 r = __dev_status(hc->md, param);
7ec75f25 1218 md = hc->md;
1da177e4 1219 up_write(&_hash_lock);
7ec75f25 1220 dm_put(md);
1da177e4
LT
1221 return r;
1222}
1223
1224/*
1225 * Retrieves a list of devices used by a particular dm device.
1226 */
1227static void retrieve_deps(struct dm_table *table,
1228 struct dm_ioctl *param, size_t param_size)
1229{
1230 unsigned int count = 0;
1231 struct list_head *tmp;
1232 size_t len, needed;
82b1519b 1233 struct dm_dev_internal *dd;
1da177e4
LT
1234 struct dm_target_deps *deps;
1235
1236 deps = get_result_buffer(param, param_size, &len);
1237
1238 /*
1239 * Count the devices.
1240 */
1241 list_for_each (tmp, dm_table_get_devices(table))
1242 count++;
1243
1244 /*
1245 * Check we have enough space.
1246 */
1247 needed = sizeof(*deps) + (sizeof(*deps->dev) * count);
1248 if (len < needed) {
1249 param->flags |= DM_BUFFER_FULL_FLAG;
1250 return;
1251 }
1252
1253 /*
1254 * Fill in the devices.
1255 */
1256 deps->count = count;
1257 count = 0;
1258 list_for_each_entry (dd, dm_table_get_devices(table), list)
82b1519b 1259 deps->dev[count++] = huge_encode_dev(dd->dm_dev.bdev->bd_dev);
1da177e4
LT
1260
1261 param->data_size = param->data_start + needed;
1262}
1263
1264static int table_deps(struct dm_ioctl *param, size_t param_size)
1265{
1266 int r = 0;
1267 struct mapped_device *md;
1268 struct dm_table *table;
1269
1270 md = find_device(param);
1271 if (!md)
1272 return -ENXIO;
1273
1274 r = __dev_status(md, param);
1275 if (r)
1276 goto out;
1277
1d0f3ce8 1278 table = dm_get_live_or_inactive_table(md, param);
1da177e4
LT
1279 if (table) {
1280 retrieve_deps(table, param, param_size);
1281 dm_table_put(table);
1282 }
1283
1284 out:
1285 dm_put(md);
1286 return r;
1287}
1288
1289/*
1290 * Return the status of a device as a text string for each
1291 * target.
1292 */
1293static int table_status(struct dm_ioctl *param, size_t param_size)
1294{
1295 int r;
1296 struct mapped_device *md;
1297 struct dm_table *table;
1298
1299 md = find_device(param);
1300 if (!md)
1301 return -ENXIO;
1302
1303 r = __dev_status(md, param);
1304 if (r)
1305 goto out;
1306
1d0f3ce8 1307 table = dm_get_live_or_inactive_table(md, param);
1da177e4
LT
1308 if (table) {
1309 retrieve_status(table, param, param_size);
1310 dm_table_put(table);
1311 }
1312
1d0f3ce8 1313out:
1da177e4
LT
1314 dm_put(md);
1315 return r;
1316}
1317
1318/*
1319 * Pass a message to the target that's at the supplied device offset.
1320 */
1321static int target_message(struct dm_ioctl *param, size_t param_size)
1322{
1323 int r, argc;
1324 char **argv;
1325 struct mapped_device *md;
1326 struct dm_table *table;
1327 struct dm_target *ti;
1328 struct dm_target_msg *tmsg = (void *) param + param->data_start;
1329
1330 md = find_device(param);
1331 if (!md)
1332 return -ENXIO;
1333
027d50f9 1334 if (tmsg < (struct dm_target_msg *) param->data ||
1da177e4
LT
1335 invalid_str(tmsg->message, (void *) param + param_size)) {
1336 DMWARN("Invalid target message parameters.");
1337 r = -EINVAL;
1338 goto out;
1339 }
1340
1341 r = dm_split_args(&argc, &argv, tmsg->message);
1342 if (r) {
1343 DMWARN("Failed to split target message parameters");
1344 goto out;
1345 }
1346
7c666411 1347 table = dm_get_live_table(md);
1da177e4
LT
1348 if (!table)
1349 goto out_argv;
1350
c50abeb3
MA
1351 if (dm_deleting_md(md)) {
1352 r = -ENXIO;
1353 goto out_table;
1354 }
1355
512875bd
JN
1356 ti = dm_table_find_target(table, tmsg->sector);
1357 if (!dm_target_is_valid(ti)) {
1da177e4
LT
1358 DMWARN("Target message sector outside device.");
1359 r = -EINVAL;
512875bd 1360 } else if (ti->type->message)
1da177e4
LT
1361 r = ti->type->message(ti, argc, argv);
1362 else {
1363 DMWARN("Target type does not support messages");
1364 r = -EINVAL;
1365 }
1366
c50abeb3 1367 out_table:
1da177e4
LT
1368 dm_table_put(table);
1369 out_argv:
1370 kfree(argv);
1371 out:
1372 param->data_size = 0;
1373 dm_put(md);
1374 return r;
1375}
1376
1377/*-----------------------------------------------------------------
1378 * Implementation of open/close/ioctl on the special char
1379 * device.
1380 *---------------------------------------------------------------*/
1381static ioctl_fn lookup_ioctl(unsigned int cmd)
1382{
1383 static struct {
1384 int cmd;
1385 ioctl_fn fn;
1386 } _ioctls[] = {
1387 {DM_VERSION_CMD, NULL}, /* version is dealt with elsewhere */
1388 {DM_REMOVE_ALL_CMD, remove_all},
1389 {DM_LIST_DEVICES_CMD, list_devices},
1390
1391 {DM_DEV_CREATE_CMD, dev_create},
1392 {DM_DEV_REMOVE_CMD, dev_remove},
1393 {DM_DEV_RENAME_CMD, dev_rename},
1394 {DM_DEV_SUSPEND_CMD, dev_suspend},
1395 {DM_DEV_STATUS_CMD, dev_status},
1396 {DM_DEV_WAIT_CMD, dev_wait},
1397
1398 {DM_TABLE_LOAD_CMD, table_load},
1399 {DM_TABLE_CLEAR_CMD, table_clear},
1400 {DM_TABLE_DEPS_CMD, table_deps},
1401 {DM_TABLE_STATUS_CMD, table_status},
1402
1403 {DM_LIST_VERSIONS_CMD, list_versions},
1404
3ac51e74
DW
1405 {DM_TARGET_MSG_CMD, target_message},
1406 {DM_DEV_SET_GEOMETRY_CMD, dev_set_geometry}
1da177e4
LT
1407 };
1408
1409 return (cmd >= ARRAY_SIZE(_ioctls)) ? NULL : _ioctls[cmd].fn;
1410}
1411
1412/*
1413 * As well as checking the version compatibility this always
1414 * copies the kernel interface version out.
1415 */
1416static int check_version(unsigned int cmd, struct dm_ioctl __user *user)
1417{
1418 uint32_t version[3];
1419 int r = 0;
1420
1421 if (copy_from_user(version, user->version, sizeof(version)))
1422 return -EFAULT;
1423
1424 if ((DM_VERSION_MAJOR != version[0]) ||
1425 (DM_VERSION_MINOR < version[1])) {
1426 DMWARN("ioctl interface mismatch: "
1427 "kernel(%u.%u.%u), user(%u.%u.%u), cmd(%d)",
1428 DM_VERSION_MAJOR, DM_VERSION_MINOR,
1429 DM_VERSION_PATCHLEVEL,
1430 version[0], version[1], version[2], cmd);
1431 r = -EINVAL;
1432 }
1433
1434 /*
1435 * Fill in the kernel version.
1436 */
1437 version[0] = DM_VERSION_MAJOR;
1438 version[1] = DM_VERSION_MINOR;
1439 version[2] = DM_VERSION_PATCHLEVEL;
1440 if (copy_to_user(user->version, version, sizeof(version)))
1441 return -EFAULT;
1442
1443 return r;
1444}
1445
1446static void free_params(struct dm_ioctl *param)
1447{
1448 vfree(param);
1449}
1450
1451static int copy_params(struct dm_ioctl __user *user, struct dm_ioctl **param)
1452{
1453 struct dm_ioctl tmp, *dmi;
1454
76c072b4 1455 if (copy_from_user(&tmp, user, sizeof(tmp) - sizeof(tmp.data)))
1da177e4
LT
1456 return -EFAULT;
1457
76c072b4 1458 if (tmp.data_size < (sizeof(tmp) - sizeof(tmp.data)))
1da177e4
LT
1459 return -EINVAL;
1460
bb56acf8 1461 dmi = vmalloc(tmp.data_size);
1da177e4
LT
1462 if (!dmi)
1463 return -ENOMEM;
1464
1465 if (copy_from_user(dmi, user, tmp.data_size)) {
1466 vfree(dmi);
1467 return -EFAULT;
1468 }
1469
1470 *param = dmi;
1471 return 0;
1472}
1473
1474static int validate_params(uint cmd, struct dm_ioctl *param)
1475{
1476 /* Always clear this flag */
1477 param->flags &= ~DM_BUFFER_FULL_FLAG;
3abf85b5 1478 param->flags &= ~DM_UEVENT_GENERATED_FLAG;
1da177e4
LT
1479
1480 /* Ignores parameters */
1481 if (cmd == DM_REMOVE_ALL_CMD ||
1482 cmd == DM_LIST_DEVICES_CMD ||
1483 cmd == DM_LIST_VERSIONS_CMD)
1484 return 0;
1485
1486 if ((cmd == DM_DEV_CREATE_CMD)) {
1487 if (!*param->name) {
1488 DMWARN("name not supplied when creating device");
1489 return -EINVAL;
1490 }
1491 } else if ((*param->uuid && *param->name)) {
1492 DMWARN("only supply one of name or uuid, cmd(%u)", cmd);
1493 return -EINVAL;
1494 }
1495
1496 /* Ensure strings are terminated */
1497 param->name[DM_NAME_LEN - 1] = '\0';
1498 param->uuid[DM_UUID_LEN - 1] = '\0';
1499
1500 return 0;
1501}
1502
27238b2b 1503static int ctl_ioctl(uint command, struct dm_ioctl __user *user)
1da177e4
LT
1504{
1505 int r = 0;
1506 unsigned int cmd;
a26ffd4a 1507 struct dm_ioctl *uninitialized_var(param);
1da177e4
LT
1508 ioctl_fn fn = NULL;
1509 size_t param_size;
1510
1511 /* only root can play with this */
1512 if (!capable(CAP_SYS_ADMIN))
1513 return -EACCES;
1514
1515 if (_IOC_TYPE(command) != DM_IOCTL)
1516 return -ENOTTY;
1517
1518 cmd = _IOC_NR(command);
1519
1520 /*
1521 * Check the interface version passed in. This also
1522 * writes out the kernel's interface version.
1523 */
1524 r = check_version(cmd, user);
1525 if (r)
1526 return r;
1527
1528 /*
1529 * Nothing more to do for the version command.
1530 */
1531 if (cmd == DM_VERSION_CMD)
1532 return 0;
1533
1534 fn = lookup_ioctl(cmd);
1535 if (!fn) {
1536 DMWARN("dm_ctl_ioctl: unknown command 0x%x", command);
1537 return -ENOTTY;
1538 }
1539
1540 /*
1541 * Trying to avoid low memory issues when a device is
1542 * suspended.
1543 */
1544 current->flags |= PF_MEMALLOC;
1545
1546 /*
1547 * Copy the parameters into kernel space.
1548 */
1549 r = copy_params(user, &param);
1da177e4 1550
dab6a429
AK
1551 current->flags &= ~PF_MEMALLOC;
1552
1553 if (r)
1554 return r;
1da177e4
LT
1555
1556 r = validate_params(cmd, param);
1557 if (r)
1558 goto out;
1559
1560 param_size = param->data_size;
1561 param->data_size = sizeof(*param);
1562 r = fn(param, param_size);
1563
1564 /*
1565 * Copy the results back to userland.
1566 */
1567 if (!r && copy_to_user(user, param, param->data_size))
1568 r = -EFAULT;
1569
1570 out:
1571 free_params(param);
1da177e4
LT
1572 return r;
1573}
1574
27238b2b
AK
1575static long dm_ctl_ioctl(struct file *file, uint command, ulong u)
1576{
1577 return (long)ctl_ioctl(command, (struct dm_ioctl __user *)u);
1578}
1579
76c072b4
MB
1580#ifdef CONFIG_COMPAT
1581static long dm_compat_ctl_ioctl(struct file *file, uint command, ulong u)
1582{
1583 return (long)dm_ctl_ioctl(file, command, (ulong) compat_ptr(u));
1584}
1585#else
1586#define dm_compat_ctl_ioctl NULL
1587#endif
1588
fa027c2a 1589static const struct file_operations _ctl_fops = {
27238b2b 1590 .unlocked_ioctl = dm_ctl_ioctl,
76c072b4 1591 .compat_ioctl = dm_compat_ctl_ioctl,
1da177e4
LT
1592 .owner = THIS_MODULE,
1593};
1594
1595static struct miscdevice _dm_misc = {
1596 .minor = MISC_DYNAMIC_MINOR,
1597 .name = DM_NAME,
e454cea2 1598 .nodename = "mapper/control",
1da177e4
LT
1599 .fops = &_ctl_fops
1600};
1601
1602/*
1603 * Create misc character device and link to DM_DIR/control.
1604 */
1605int __init dm_interface_init(void)
1606{
1607 int r;
1608
1609 r = dm_hash_init();
1610 if (r)
1611 return r;
1612
1613 r = misc_register(&_dm_misc);
1614 if (r) {
1615 DMERR("misc_register failed for control device");
1616 dm_hash_exit();
1617 return r;
1618 }
1619
1620 DMINFO("%d.%d.%d%s initialised: %s", DM_VERSION_MAJOR,
1621 DM_VERSION_MINOR, DM_VERSION_PATCHLEVEL, DM_VERSION_EXTRA,
1622 DM_DRIVER_EMAIL);
1623 return 0;
1624}
1625
1626void dm_interface_exit(void)
1627{
1628 if (misc_deregister(&_dm_misc) < 0)
1629 DMERR("misc_deregister failed for control device");
1630
1631 dm_hash_exit();
1632}
96a1f7db
MA
1633
1634/**
1635 * dm_copy_name_and_uuid - Copy mapped device name & uuid into supplied buffers
1636 * @md: Pointer to mapped_device
1637 * @name: Buffer (size DM_NAME_LEN) for name
1638 * @uuid: Buffer (size DM_UUID_LEN) for uuid or empty string if uuid not defined
1639 */
1640int dm_copy_name_and_uuid(struct mapped_device *md, char *name, char *uuid)
1641{
1642 int r = 0;
1643 struct hash_cell *hc;
1644
1645 if (!md)
1646 return -ENXIO;
1647
6076905b 1648 mutex_lock(&dm_hash_cells_mutex);
96a1f7db
MA
1649 hc = dm_get_mdptr(md);
1650 if (!hc || hc->md != md) {
1651 r = -ENXIO;
1652 goto out;
1653 }
1654
23d39f63
MB
1655 if (name)
1656 strcpy(name, hc->name);
1657 if (uuid)
1658 strcpy(uuid, hc->uuid ? : "");
96a1f7db
MA
1659
1660out:
6076905b 1661 mutex_unlock(&dm_hash_cells_mutex);
96a1f7db
MA
1662
1663 return r;
1664}
This page took 3.734814 seconds and 5 git commands to generate.