[PATCH] dm: tidy mdptr
[linux-2.6/suspend2-2.6.18.git] / drivers / md / dm-ioctl.c
blob0693b6f54b7dd6939488e4c7a44409015735d348
1 /*
2 * Copyright (C) 2001, 2002 Sistina Software (UK) Limited.
3 * Copyright (C) 2004 - 2005 Red Hat, Inc. All rights reserved.
5 * This file is released under the GPL.
6 */
8 #include "dm.h"
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>
16 #include <linux/devfs_fs_kernel.h>
17 #include <linux/dm-ioctl.h>
19 #include <asm/uaccess.h>
21 #define DM_DRIVER_EMAIL "dm-devel@redhat.com"
23 /*-----------------------------------------------------------------
24 * The ioctl interface needs to be able to look up devices by
25 * name or uuid.
26 *---------------------------------------------------------------*/
27 struct hash_cell {
28 struct list_head name_list;
29 struct list_head uuid_list;
31 char *name;
32 char *uuid;
33 struct mapped_device *md;
34 struct dm_table *new_map;
37 struct vers_iter {
38 size_t param_size;
39 struct dm_target_versions *vers, *old_vers;
40 char *end;
41 uint32_t flags;
45 #define NUM_BUCKETS 64
46 #define MASK_BUCKETS (NUM_BUCKETS - 1)
47 static struct list_head _name_buckets[NUM_BUCKETS];
48 static struct list_head _uuid_buckets[NUM_BUCKETS];
50 static void dm_hash_remove_all(void);
53 * Guards access to both hash tables.
55 static DECLARE_RWSEM(_hash_lock);
57 static void init_buckets(struct list_head *buckets)
59 unsigned int i;
61 for (i = 0; i < NUM_BUCKETS; i++)
62 INIT_LIST_HEAD(buckets + i);
65 static int dm_hash_init(void)
67 init_buckets(_name_buckets);
68 init_buckets(_uuid_buckets);
69 devfs_mk_dir(DM_DIR);
70 return 0;
73 static void dm_hash_exit(void)
75 dm_hash_remove_all();
76 devfs_remove(DM_DIR);
79 /*-----------------------------------------------------------------
80 * Hash function:
81 * We're not really concerned with the str hash function being
82 * fast since it's only used by the ioctl interface.
83 *---------------------------------------------------------------*/
84 static unsigned int hash_str(const char *str)
86 const unsigned int hash_mult = 2654435387U;
87 unsigned int h = 0;
89 while (*str)
90 h = (h + (unsigned int) *str++) * hash_mult;
92 return h & MASK_BUCKETS;
95 /*-----------------------------------------------------------------
96 * Code for looking up a device by name
97 *---------------------------------------------------------------*/
98 static struct hash_cell *__get_name_cell(const char *str)
100 struct hash_cell *hc;
101 unsigned int h = hash_str(str);
103 list_for_each_entry (hc, _name_buckets + h, name_list)
104 if (!strcmp(hc->name, str))
105 return hc;
107 return NULL;
110 static struct hash_cell *__get_uuid_cell(const char *str)
112 struct hash_cell *hc;
113 unsigned int h = hash_str(str);
115 list_for_each_entry (hc, _uuid_buckets + h, uuid_list)
116 if (!strcmp(hc->uuid, str))
117 return hc;
119 return NULL;
122 /*-----------------------------------------------------------------
123 * Inserting, removing and renaming a device.
124 *---------------------------------------------------------------*/
125 static struct hash_cell *alloc_cell(const char *name, const char *uuid,
126 struct mapped_device *md)
128 struct hash_cell *hc;
130 hc = kmalloc(sizeof(*hc), GFP_KERNEL);
131 if (!hc)
132 return NULL;
134 hc->name = kstrdup(name, GFP_KERNEL);
135 if (!hc->name) {
136 kfree(hc);
137 return NULL;
140 if (!uuid)
141 hc->uuid = NULL;
143 else {
144 hc->uuid = kstrdup(uuid, GFP_KERNEL);
145 if (!hc->uuid) {
146 kfree(hc->name);
147 kfree(hc);
148 return NULL;
152 INIT_LIST_HEAD(&hc->name_list);
153 INIT_LIST_HEAD(&hc->uuid_list);
154 hc->md = md;
155 hc->new_map = NULL;
156 return hc;
159 static void free_cell(struct hash_cell *hc)
161 if (hc) {
162 kfree(hc->name);
163 kfree(hc->uuid);
164 kfree(hc);
169 * devfs stuff.
171 static int register_with_devfs(struct hash_cell *hc)
173 struct gendisk *disk = dm_disk(hc->md);
175 devfs_mk_bdev(MKDEV(disk->major, disk->first_minor),
176 S_IFBLK | S_IRUSR | S_IWUSR | S_IRGRP,
177 DM_DIR "/%s", hc->name);
178 return 0;
181 static int unregister_with_devfs(struct hash_cell *hc)
183 devfs_remove(DM_DIR"/%s", hc->name);
184 return 0;
188 * The kdev_t and uuid of a device can never change once it is
189 * initially inserted.
191 static int dm_hash_insert(const char *name, const char *uuid, struct mapped_device *md)
193 struct hash_cell *cell;
196 * Allocate the new cells.
198 cell = alloc_cell(name, uuid, md);
199 if (!cell)
200 return -ENOMEM;
203 * Insert the cell into both hash tables.
205 down_write(&_hash_lock);
206 if (__get_name_cell(name))
207 goto bad;
209 list_add(&cell->name_list, _name_buckets + hash_str(name));
211 if (uuid) {
212 if (__get_uuid_cell(uuid)) {
213 list_del(&cell->name_list);
214 goto bad;
216 list_add(&cell->uuid_list, _uuid_buckets + hash_str(uuid));
218 register_with_devfs(cell);
219 dm_get(md);
220 dm_set_mdptr(md, cell);
221 up_write(&_hash_lock);
223 return 0;
225 bad:
226 up_write(&_hash_lock);
227 free_cell(cell);
228 return -EBUSY;
231 static void __hash_remove(struct hash_cell *hc)
233 struct dm_table *table;
235 /* remove from the dev hash */
236 list_del(&hc->uuid_list);
237 list_del(&hc->name_list);
238 unregister_with_devfs(hc);
239 dm_set_mdptr(hc->md, NULL);
241 table = dm_get_table(hc->md);
242 if (table) {
243 dm_table_event(table);
244 dm_table_put(table);
247 dm_put(hc->md);
248 if (hc->new_map)
249 dm_table_put(hc->new_map);
250 free_cell(hc);
253 static void dm_hash_remove_all(void)
255 int i;
256 struct hash_cell *hc;
257 struct list_head *tmp, *n;
259 down_write(&_hash_lock);
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);
263 __hash_remove(hc);
266 up_write(&_hash_lock);
269 static int dm_hash_rename(const char *old, const char *new)
271 char *new_name, *old_name;
272 struct hash_cell *hc;
273 struct dm_table *table;
276 * duplicate new.
278 new_name = kstrdup(new, GFP_KERNEL);
279 if (!new_name)
280 return -ENOMEM;
282 down_write(&_hash_lock);
285 * Is new free ?
287 hc = __get_name_cell(new);
288 if (hc) {
289 DMWARN("asked to rename to an already existing name %s -> %s",
290 old, new);
291 up_write(&_hash_lock);
292 kfree(new_name);
293 return -EBUSY;
297 * Is there such a device as 'old' ?
299 hc = __get_name_cell(old);
300 if (!hc) {
301 DMWARN("asked to rename a non existent device %s -> %s",
302 old, new);
303 up_write(&_hash_lock);
304 kfree(new_name);
305 return -ENXIO;
309 * rename and move the name cell.
311 unregister_with_devfs(hc);
313 list_del(&hc->name_list);
314 old_name = hc->name;
315 hc->name = new_name;
316 list_add(&hc->name_list, _name_buckets + hash_str(new_name));
318 /* rename the device node in devfs */
319 register_with_devfs(hc);
322 * Wake up any dm event waiters.
324 table = dm_get_table(hc->md);
325 if (table) {
326 dm_table_event(table);
327 dm_table_put(table);
330 up_write(&_hash_lock);
331 kfree(old_name);
332 return 0;
335 /*-----------------------------------------------------------------
336 * Implementation of the ioctl commands
337 *---------------------------------------------------------------*/
339 * All the ioctl commands get dispatched to functions with this
340 * prototype.
342 typedef int (*ioctl_fn)(struct dm_ioctl *param, size_t param_size);
344 static int remove_all(struct dm_ioctl *param, size_t param_size)
346 dm_hash_remove_all();
347 param->data_size = 0;
348 return 0;
352 * Round up the ptr to an 8-byte boundary.
354 #define ALIGN_MASK 7
355 static inline void *align_ptr(void *ptr)
357 return (void *) (((size_t) (ptr + ALIGN_MASK)) & ~ALIGN_MASK);
361 * Retrieves the data payload buffer from an already allocated
362 * struct dm_ioctl.
364 static void *get_result_buffer(struct dm_ioctl *param, size_t param_size,
365 size_t *len)
367 param->data_start = align_ptr(param + 1) - (void *) param;
369 if (param->data_start < param_size)
370 *len = param_size - param->data_start;
371 else
372 *len = 0;
374 return ((void *) param) + param->data_start;
377 static int list_devices(struct dm_ioctl *param, size_t param_size)
379 unsigned int i;
380 struct hash_cell *hc;
381 size_t len, needed = 0;
382 struct gendisk *disk;
383 struct dm_name_list *nl, *old_nl = NULL;
385 down_write(&_hash_lock);
388 * Loop through all the devices working out how much
389 * space we need.
391 for (i = 0; i < NUM_BUCKETS; i++) {
392 list_for_each_entry (hc, _name_buckets + i, name_list) {
393 needed += sizeof(struct dm_name_list);
394 needed += strlen(hc->name) + 1;
395 needed += ALIGN_MASK;
400 * Grab our output buffer.
402 nl = get_result_buffer(param, param_size, &len);
403 if (len < needed) {
404 param->flags |= DM_BUFFER_FULL_FLAG;
405 goto out;
407 param->data_size = param->data_start + needed;
409 nl->dev = 0; /* Flags no data */
412 * Now loop through filling out the names.
414 for (i = 0; i < NUM_BUCKETS; i++) {
415 list_for_each_entry (hc, _name_buckets + i, name_list) {
416 if (old_nl)
417 old_nl->next = (uint32_t) ((void *) nl -
418 (void *) old_nl);
419 disk = dm_disk(hc->md);
420 nl->dev = huge_encode_dev(MKDEV(disk->major, disk->first_minor));
421 nl->next = 0;
422 strcpy(nl->name, hc->name);
424 old_nl = nl;
425 nl = align_ptr(((void *) ++nl) + strlen(hc->name) + 1);
429 out:
430 up_write(&_hash_lock);
431 return 0;
434 static void list_version_get_needed(struct target_type *tt, void *needed_param)
436 size_t *needed = needed_param;
438 *needed += sizeof(struct dm_target_versions);
439 *needed += strlen(tt->name);
440 *needed += ALIGN_MASK;
443 static void list_version_get_info(struct target_type *tt, void *param)
445 struct vers_iter *info = param;
447 /* Check space - it might have changed since the first iteration */
448 if ((char *)info->vers + sizeof(tt->version) + strlen(tt->name) + 1 >
449 info->end) {
451 info->flags = DM_BUFFER_FULL_FLAG;
452 return;
455 if (info->old_vers)
456 info->old_vers->next = (uint32_t) ((void *)info->vers -
457 (void *)info->old_vers);
458 info->vers->version[0] = tt->version[0];
459 info->vers->version[1] = tt->version[1];
460 info->vers->version[2] = tt->version[2];
461 info->vers->next = 0;
462 strcpy(info->vers->name, tt->name);
464 info->old_vers = info->vers;
465 info->vers = align_ptr(((void *) ++info->vers) + strlen(tt->name) + 1);
468 static int list_versions(struct dm_ioctl *param, size_t param_size)
470 size_t len, needed = 0;
471 struct dm_target_versions *vers;
472 struct vers_iter iter_info;
475 * Loop through all the devices working out how much
476 * space we need.
478 dm_target_iterate(list_version_get_needed, &needed);
481 * Grab our output buffer.
483 vers = get_result_buffer(param, param_size, &len);
484 if (len < needed) {
485 param->flags |= DM_BUFFER_FULL_FLAG;
486 goto out;
488 param->data_size = param->data_start + needed;
490 iter_info.param_size = param_size;
491 iter_info.old_vers = NULL;
492 iter_info.vers = vers;
493 iter_info.flags = 0;
494 iter_info.end = (char *)vers+len;
497 * Now loop through filling out the names & versions.
499 dm_target_iterate(list_version_get_info, &iter_info);
500 param->flags |= iter_info.flags;
502 out:
503 return 0;
508 static int check_name(const char *name)
510 if (strchr(name, '/')) {
511 DMWARN("invalid device name");
512 return -EINVAL;
515 return 0;
519 * Fills in a dm_ioctl structure, ready for sending back to
520 * userland.
522 static int __dev_status(struct mapped_device *md, struct dm_ioctl *param)
524 struct gendisk *disk = dm_disk(md);
525 struct dm_table *table;
526 struct block_device *bdev;
528 param->flags &= ~(DM_SUSPEND_FLAG | DM_READONLY_FLAG |
529 DM_ACTIVE_PRESENT_FLAG);
531 if (dm_suspended(md))
532 param->flags |= DM_SUSPEND_FLAG;
534 param->dev = huge_encode_dev(MKDEV(disk->major, disk->first_minor));
536 if (!(param->flags & DM_SKIP_BDGET_FLAG)) {
537 bdev = bdget_disk(disk, 0);
538 if (!bdev)
539 return -ENXIO;
542 * Yes, this will be out of date by the time it gets back
543 * to userland, but it is still very useful for
544 * debugging.
546 param->open_count = bdev->bd_openers;
547 bdput(bdev);
548 } else
549 param->open_count = -1;
551 if (disk->policy)
552 param->flags |= DM_READONLY_FLAG;
554 param->event_nr = dm_get_event_nr(md);
556 table = dm_get_table(md);
557 if (table) {
558 param->flags |= DM_ACTIVE_PRESENT_FLAG;
559 param->target_count = dm_table_get_num_targets(table);
560 dm_table_put(table);
561 } else
562 param->target_count = 0;
564 return 0;
567 static int dev_create(struct dm_ioctl *param, size_t param_size)
569 int r;
570 struct mapped_device *md;
572 r = check_name(param->name);
573 if (r)
574 return r;
576 if (param->flags & DM_PERSISTENT_DEV_FLAG)
577 r = dm_create_with_minor(MINOR(huge_decode_dev(param->dev)), &md);
578 else
579 r = dm_create(&md);
581 if (r)
582 return r;
584 r = dm_hash_insert(param->name, *param->uuid ? param->uuid : NULL, md);
585 if (r) {
586 dm_put(md);
587 return r;
590 param->flags &= ~DM_INACTIVE_PRESENT_FLAG;
592 r = __dev_status(md, param);
593 dm_put(md);
595 return r;
599 * Always use UUID for lookups if it's present, otherwise use name or dev.
601 static struct hash_cell *__find_device_hash_cell(struct dm_ioctl *param)
603 struct mapped_device *md;
604 void *mdptr = NULL;
606 if (*param->uuid)
607 return __get_uuid_cell(param->uuid);
609 if (*param->name)
610 return __get_name_cell(param->name);
612 md = dm_get_md(huge_decode_dev(param->dev));
613 if (md) {
614 mdptr = dm_get_mdptr(md);
615 dm_put(md);
618 return mdptr;
621 static struct mapped_device *find_device(struct dm_ioctl *param)
623 struct hash_cell *hc;
624 struct mapped_device *md = NULL;
626 down_read(&_hash_lock);
627 hc = __find_device_hash_cell(param);
628 if (hc) {
629 md = hc->md;
630 dm_get(md);
633 * Sneakily write in both the name and the uuid
634 * while we have the cell.
636 strncpy(param->name, hc->name, sizeof(param->name));
637 if (hc->uuid)
638 strncpy(param->uuid, hc->uuid, sizeof(param->uuid)-1);
639 else
640 param->uuid[0] = '\0';
642 if (hc->new_map)
643 param->flags |= DM_INACTIVE_PRESENT_FLAG;
644 else
645 param->flags &= ~DM_INACTIVE_PRESENT_FLAG;
647 up_read(&_hash_lock);
649 return md;
652 static int dev_remove(struct dm_ioctl *param, size_t param_size)
654 struct hash_cell *hc;
656 down_write(&_hash_lock);
657 hc = __find_device_hash_cell(param);
659 if (!hc) {
660 DMWARN("device doesn't appear to be in the dev hash table.");
661 up_write(&_hash_lock);
662 return -ENXIO;
665 __hash_remove(hc);
666 up_write(&_hash_lock);
667 param->data_size = 0;
668 return 0;
672 * Check a string doesn't overrun the chunk of
673 * memory we copied from userland.
675 static int invalid_str(char *str, void *end)
677 while ((void *) str < end)
678 if (!*str++)
679 return 0;
681 return -EINVAL;
684 static int dev_rename(struct dm_ioctl *param, size_t param_size)
686 int r;
687 char *new_name = (char *) param + param->data_start;
689 if (new_name < (char *) (param + 1) ||
690 invalid_str(new_name, (void *) param + param_size)) {
691 DMWARN("Invalid new logical volume name supplied.");
692 return -EINVAL;
695 r = check_name(new_name);
696 if (r)
697 return r;
699 param->data_size = 0;
700 return dm_hash_rename(param->name, new_name);
703 static int do_suspend(struct dm_ioctl *param)
705 int r = 0;
706 int do_lockfs = 1;
707 struct mapped_device *md;
709 md = find_device(param);
710 if (!md)
711 return -ENXIO;
713 if (param->flags & DM_SKIP_LOCKFS_FLAG)
714 do_lockfs = 0;
716 if (!dm_suspended(md))
717 r = dm_suspend(md, do_lockfs);
719 if (!r)
720 r = __dev_status(md, param);
722 dm_put(md);
723 return r;
726 static int do_resume(struct dm_ioctl *param)
728 int r = 0;
729 int do_lockfs = 1;
730 struct hash_cell *hc;
731 struct mapped_device *md;
732 struct dm_table *new_map;
734 down_write(&_hash_lock);
736 hc = __find_device_hash_cell(param);
737 if (!hc) {
738 DMWARN("device doesn't appear to be in the dev hash table.");
739 up_write(&_hash_lock);
740 return -ENXIO;
743 md = hc->md;
744 dm_get(md);
746 new_map = hc->new_map;
747 hc->new_map = NULL;
748 param->flags &= ~DM_INACTIVE_PRESENT_FLAG;
750 up_write(&_hash_lock);
752 /* Do we need to load a new map ? */
753 if (new_map) {
754 /* Suspend if it isn't already suspended */
755 if (param->flags & DM_SKIP_LOCKFS_FLAG)
756 do_lockfs = 0;
757 if (!dm_suspended(md))
758 dm_suspend(md, do_lockfs);
760 r = dm_swap_table(md, new_map);
761 if (r) {
762 dm_put(md);
763 dm_table_put(new_map);
764 return r;
767 if (dm_table_get_mode(new_map) & FMODE_WRITE)
768 set_disk_ro(dm_disk(md), 0);
769 else
770 set_disk_ro(dm_disk(md), 1);
772 dm_table_put(new_map);
775 if (dm_suspended(md))
776 r = dm_resume(md);
778 if (!r)
779 r = __dev_status(md, param);
781 dm_put(md);
782 return r;
786 * Set or unset the suspension state of a device.
787 * If the device already is in the requested state we just return its status.
789 static int dev_suspend(struct dm_ioctl *param, size_t param_size)
791 if (param->flags & DM_SUSPEND_FLAG)
792 return do_suspend(param);
794 return do_resume(param);
798 * Copies device info back to user space, used by
799 * the create and info ioctls.
801 static int dev_status(struct dm_ioctl *param, size_t param_size)
803 int r;
804 struct mapped_device *md;
806 md = find_device(param);
807 if (!md)
808 return -ENXIO;
810 r = __dev_status(md, param);
811 dm_put(md);
812 return r;
816 * Build up the status struct for each target
818 static void retrieve_status(struct dm_table *table,
819 struct dm_ioctl *param, size_t param_size)
821 unsigned int i, num_targets;
822 struct dm_target_spec *spec;
823 char *outbuf, *outptr;
824 status_type_t type;
825 size_t remaining, len, used = 0;
827 outptr = outbuf = get_result_buffer(param, param_size, &len);
829 if (param->flags & DM_STATUS_TABLE_FLAG)
830 type = STATUSTYPE_TABLE;
831 else
832 type = STATUSTYPE_INFO;
834 /* Get all the target info */
835 num_targets = dm_table_get_num_targets(table);
836 for (i = 0; i < num_targets; i++) {
837 struct dm_target *ti = dm_table_get_target(table, i);
839 remaining = len - (outptr - outbuf);
840 if (remaining <= sizeof(struct dm_target_spec)) {
841 param->flags |= DM_BUFFER_FULL_FLAG;
842 break;
845 spec = (struct dm_target_spec *) outptr;
847 spec->status = 0;
848 spec->sector_start = ti->begin;
849 spec->length = ti->len;
850 strncpy(spec->target_type, ti->type->name,
851 sizeof(spec->target_type));
853 outptr += sizeof(struct dm_target_spec);
854 remaining = len - (outptr - outbuf);
855 if (remaining <= 0) {
856 param->flags |= DM_BUFFER_FULL_FLAG;
857 break;
860 /* Get the status/table string from the target driver */
861 if (ti->type->status) {
862 if (ti->type->status(ti, type, outptr, remaining)) {
863 param->flags |= DM_BUFFER_FULL_FLAG;
864 break;
866 } else
867 outptr[0] = '\0';
869 outptr += strlen(outptr) + 1;
870 used = param->data_start + (outptr - outbuf);
872 outptr = align_ptr(outptr);
873 spec->next = outptr - outbuf;
876 if (used)
877 param->data_size = used;
879 param->target_count = num_targets;
883 * Wait for a device to report an event
885 static int dev_wait(struct dm_ioctl *param, size_t param_size)
887 int r;
888 struct mapped_device *md;
889 struct dm_table *table;
891 md = find_device(param);
892 if (!md)
893 return -ENXIO;
896 * Wait for a notification event
898 if (dm_wait_event(md, param->event_nr)) {
899 r = -ERESTARTSYS;
900 goto out;
904 * The userland program is going to want to know what
905 * changed to trigger the event, so we may as well tell
906 * him and save an ioctl.
908 r = __dev_status(md, param);
909 if (r)
910 goto out;
912 table = dm_get_table(md);
913 if (table) {
914 retrieve_status(table, param, param_size);
915 dm_table_put(table);
918 out:
919 dm_put(md);
920 return r;
923 static inline int get_mode(struct dm_ioctl *param)
925 int mode = FMODE_READ | FMODE_WRITE;
927 if (param->flags & DM_READONLY_FLAG)
928 mode = FMODE_READ;
930 return mode;
933 static int next_target(struct dm_target_spec *last, uint32_t next, void *end,
934 struct dm_target_spec **spec, char **target_params)
936 *spec = (struct dm_target_spec *) ((unsigned char *) last + next);
937 *target_params = (char *) (*spec + 1);
939 if (*spec < (last + 1))
940 return -EINVAL;
942 return invalid_str(*target_params, end);
945 static int populate_table(struct dm_table *table,
946 struct dm_ioctl *param, size_t param_size)
948 int r;
949 unsigned int i = 0;
950 struct dm_target_spec *spec = (struct dm_target_spec *) param;
951 uint32_t next = param->data_start;
952 void *end = (void *) param + param_size;
953 char *target_params;
955 if (!param->target_count) {
956 DMWARN("populate_table: no targets specified");
957 return -EINVAL;
960 for (i = 0; i < param->target_count; i++) {
962 r = next_target(spec, next, end, &spec, &target_params);
963 if (r) {
964 DMWARN("unable to find target");
965 return r;
968 r = dm_table_add_target(table, spec->target_type,
969 (sector_t) spec->sector_start,
970 (sector_t) spec->length,
971 target_params);
972 if (r) {
973 DMWARN("error adding target to table");
974 return r;
977 next = spec->next;
980 return dm_table_complete(table);
983 static int table_load(struct dm_ioctl *param, size_t param_size)
985 int r;
986 struct hash_cell *hc;
987 struct dm_table *t;
989 r = dm_table_create(&t, get_mode(param), param->target_count);
990 if (r)
991 return r;
993 r = populate_table(t, param, param_size);
994 if (r) {
995 dm_table_put(t);
996 return r;
999 down_write(&_hash_lock);
1000 hc = __find_device_hash_cell(param);
1001 if (!hc) {
1002 DMWARN("device doesn't appear to be in the dev hash table.");
1003 up_write(&_hash_lock);
1004 dm_table_put(t);
1005 return -ENXIO;
1008 if (hc->new_map)
1009 dm_table_put(hc->new_map);
1010 hc->new_map = t;
1011 param->flags |= DM_INACTIVE_PRESENT_FLAG;
1013 r = __dev_status(hc->md, param);
1014 up_write(&_hash_lock);
1015 return r;
1018 static int table_clear(struct dm_ioctl *param, size_t param_size)
1020 int r;
1021 struct hash_cell *hc;
1023 down_write(&_hash_lock);
1025 hc = __find_device_hash_cell(param);
1026 if (!hc) {
1027 DMWARN("device doesn't appear to be in the dev hash table.");
1028 up_write(&_hash_lock);
1029 return -ENXIO;
1032 if (hc->new_map) {
1033 dm_table_put(hc->new_map);
1034 hc->new_map = NULL;
1037 param->flags &= ~DM_INACTIVE_PRESENT_FLAG;
1039 r = __dev_status(hc->md, param);
1040 up_write(&_hash_lock);
1041 return r;
1045 * Retrieves a list of devices used by a particular dm device.
1047 static void retrieve_deps(struct dm_table *table,
1048 struct dm_ioctl *param, size_t param_size)
1050 unsigned int count = 0;
1051 struct list_head *tmp;
1052 size_t len, needed;
1053 struct dm_dev *dd;
1054 struct dm_target_deps *deps;
1056 deps = get_result_buffer(param, param_size, &len);
1059 * Count the devices.
1061 list_for_each (tmp, dm_table_get_devices(table))
1062 count++;
1065 * Check we have enough space.
1067 needed = sizeof(*deps) + (sizeof(*deps->dev) * count);
1068 if (len < needed) {
1069 param->flags |= DM_BUFFER_FULL_FLAG;
1070 return;
1074 * Fill in the devices.
1076 deps->count = count;
1077 count = 0;
1078 list_for_each_entry (dd, dm_table_get_devices(table), list)
1079 deps->dev[count++] = huge_encode_dev(dd->bdev->bd_dev);
1081 param->data_size = param->data_start + needed;
1084 static int table_deps(struct dm_ioctl *param, size_t param_size)
1086 int r = 0;
1087 struct mapped_device *md;
1088 struct dm_table *table;
1090 md = find_device(param);
1091 if (!md)
1092 return -ENXIO;
1094 r = __dev_status(md, param);
1095 if (r)
1096 goto out;
1098 table = dm_get_table(md);
1099 if (table) {
1100 retrieve_deps(table, param, param_size);
1101 dm_table_put(table);
1104 out:
1105 dm_put(md);
1106 return r;
1110 * Return the status of a device as a text string for each
1111 * target.
1113 static int table_status(struct dm_ioctl *param, size_t param_size)
1115 int r;
1116 struct mapped_device *md;
1117 struct dm_table *table;
1119 md = find_device(param);
1120 if (!md)
1121 return -ENXIO;
1123 r = __dev_status(md, param);
1124 if (r)
1125 goto out;
1127 table = dm_get_table(md);
1128 if (table) {
1129 retrieve_status(table, param, param_size);
1130 dm_table_put(table);
1133 out:
1134 dm_put(md);
1135 return r;
1139 * Pass a message to the target that's at the supplied device offset.
1141 static int target_message(struct dm_ioctl *param, size_t param_size)
1143 int r, argc;
1144 char **argv;
1145 struct mapped_device *md;
1146 struct dm_table *table;
1147 struct dm_target *ti;
1148 struct dm_target_msg *tmsg = (void *) param + param->data_start;
1150 md = find_device(param);
1151 if (!md)
1152 return -ENXIO;
1154 r = __dev_status(md, param);
1155 if (r)
1156 goto out;
1158 if (tmsg < (struct dm_target_msg *) (param + 1) ||
1159 invalid_str(tmsg->message, (void *) param + param_size)) {
1160 DMWARN("Invalid target message parameters.");
1161 r = -EINVAL;
1162 goto out;
1165 r = dm_split_args(&argc, &argv, tmsg->message);
1166 if (r) {
1167 DMWARN("Failed to split target message parameters");
1168 goto out;
1171 table = dm_get_table(md);
1172 if (!table)
1173 goto out_argv;
1175 if (tmsg->sector >= dm_table_get_size(table)) {
1176 DMWARN("Target message sector outside device.");
1177 r = -EINVAL;
1178 goto out_table;
1181 ti = dm_table_find_target(table, tmsg->sector);
1182 if (ti->type->message)
1183 r = ti->type->message(ti, argc, argv);
1184 else {
1185 DMWARN("Target type does not support messages");
1186 r = -EINVAL;
1189 out_table:
1190 dm_table_put(table);
1191 out_argv:
1192 kfree(argv);
1193 out:
1194 param->data_size = 0;
1195 dm_put(md);
1196 return r;
1199 /*-----------------------------------------------------------------
1200 * Implementation of open/close/ioctl on the special char
1201 * device.
1202 *---------------------------------------------------------------*/
1203 static ioctl_fn lookup_ioctl(unsigned int cmd)
1205 static struct {
1206 int cmd;
1207 ioctl_fn fn;
1208 } _ioctls[] = {
1209 {DM_VERSION_CMD, NULL}, /* version is dealt with elsewhere */
1210 {DM_REMOVE_ALL_CMD, remove_all},
1211 {DM_LIST_DEVICES_CMD, list_devices},
1213 {DM_DEV_CREATE_CMD, dev_create},
1214 {DM_DEV_REMOVE_CMD, dev_remove},
1215 {DM_DEV_RENAME_CMD, dev_rename},
1216 {DM_DEV_SUSPEND_CMD, dev_suspend},
1217 {DM_DEV_STATUS_CMD, dev_status},
1218 {DM_DEV_WAIT_CMD, dev_wait},
1220 {DM_TABLE_LOAD_CMD, table_load},
1221 {DM_TABLE_CLEAR_CMD, table_clear},
1222 {DM_TABLE_DEPS_CMD, table_deps},
1223 {DM_TABLE_STATUS_CMD, table_status},
1225 {DM_LIST_VERSIONS_CMD, list_versions},
1227 {DM_TARGET_MSG_CMD, target_message}
1230 return (cmd >= ARRAY_SIZE(_ioctls)) ? NULL : _ioctls[cmd].fn;
1234 * As well as checking the version compatibility this always
1235 * copies the kernel interface version out.
1237 static int check_version(unsigned int cmd, struct dm_ioctl __user *user)
1239 uint32_t version[3];
1240 int r = 0;
1242 if (copy_from_user(version, user->version, sizeof(version)))
1243 return -EFAULT;
1245 if ((DM_VERSION_MAJOR != version[0]) ||
1246 (DM_VERSION_MINOR < version[1])) {
1247 DMWARN("ioctl interface mismatch: "
1248 "kernel(%u.%u.%u), user(%u.%u.%u), cmd(%d)",
1249 DM_VERSION_MAJOR, DM_VERSION_MINOR,
1250 DM_VERSION_PATCHLEVEL,
1251 version[0], version[1], version[2], cmd);
1252 r = -EINVAL;
1256 * Fill in the kernel version.
1258 version[0] = DM_VERSION_MAJOR;
1259 version[1] = DM_VERSION_MINOR;
1260 version[2] = DM_VERSION_PATCHLEVEL;
1261 if (copy_to_user(user->version, version, sizeof(version)))
1262 return -EFAULT;
1264 return r;
1267 static void free_params(struct dm_ioctl *param)
1269 vfree(param);
1272 static int copy_params(struct dm_ioctl __user *user, struct dm_ioctl **param)
1274 struct dm_ioctl tmp, *dmi;
1276 if (copy_from_user(&tmp, user, sizeof(tmp)))
1277 return -EFAULT;
1279 if (tmp.data_size < sizeof(tmp))
1280 return -EINVAL;
1282 dmi = (struct dm_ioctl *) vmalloc(tmp.data_size);
1283 if (!dmi)
1284 return -ENOMEM;
1286 if (copy_from_user(dmi, user, tmp.data_size)) {
1287 vfree(dmi);
1288 return -EFAULT;
1291 *param = dmi;
1292 return 0;
1295 static int validate_params(uint cmd, struct dm_ioctl *param)
1297 /* Always clear this flag */
1298 param->flags &= ~DM_BUFFER_FULL_FLAG;
1300 /* Ignores parameters */
1301 if (cmd == DM_REMOVE_ALL_CMD ||
1302 cmd == DM_LIST_DEVICES_CMD ||
1303 cmd == DM_LIST_VERSIONS_CMD)
1304 return 0;
1306 if ((cmd == DM_DEV_CREATE_CMD)) {
1307 if (!*param->name) {
1308 DMWARN("name not supplied when creating device");
1309 return -EINVAL;
1311 } else if ((*param->uuid && *param->name)) {
1312 DMWARN("only supply one of name or uuid, cmd(%u)", cmd);
1313 return -EINVAL;
1316 /* Ensure strings are terminated */
1317 param->name[DM_NAME_LEN - 1] = '\0';
1318 param->uuid[DM_UUID_LEN - 1] = '\0';
1320 return 0;
1323 static int ctl_ioctl(struct inode *inode, struct file *file,
1324 uint command, ulong u)
1326 int r = 0;
1327 unsigned int cmd;
1328 struct dm_ioctl *param;
1329 struct dm_ioctl __user *user = (struct dm_ioctl __user *) u;
1330 ioctl_fn fn = NULL;
1331 size_t param_size;
1333 /* only root can play with this */
1334 if (!capable(CAP_SYS_ADMIN))
1335 return -EACCES;
1337 if (_IOC_TYPE(command) != DM_IOCTL)
1338 return -ENOTTY;
1340 cmd = _IOC_NR(command);
1343 * Check the interface version passed in. This also
1344 * writes out the kernel's interface version.
1346 r = check_version(cmd, user);
1347 if (r)
1348 return r;
1351 * Nothing more to do for the version command.
1353 if (cmd == DM_VERSION_CMD)
1354 return 0;
1356 fn = lookup_ioctl(cmd);
1357 if (!fn) {
1358 DMWARN("dm_ctl_ioctl: unknown command 0x%x", command);
1359 return -ENOTTY;
1363 * Trying to avoid low memory issues when a device is
1364 * suspended.
1366 current->flags |= PF_MEMALLOC;
1369 * Copy the parameters into kernel space.
1371 r = copy_params(user, &param);
1373 current->flags &= ~PF_MEMALLOC;
1375 if (r)
1376 return r;
1378 r = validate_params(cmd, param);
1379 if (r)
1380 goto out;
1382 param_size = param->data_size;
1383 param->data_size = sizeof(*param);
1384 r = fn(param, param_size);
1387 * Copy the results back to userland.
1389 if (!r && copy_to_user(user, param, param->data_size))
1390 r = -EFAULT;
1392 out:
1393 free_params(param);
1394 return r;
1397 static struct file_operations _ctl_fops = {
1398 .ioctl = ctl_ioctl,
1399 .owner = THIS_MODULE,
1402 static struct miscdevice _dm_misc = {
1403 .minor = MISC_DYNAMIC_MINOR,
1404 .name = DM_NAME,
1405 .devfs_name = "mapper/control",
1406 .fops = &_ctl_fops
1410 * Create misc character device and link to DM_DIR/control.
1412 int __init dm_interface_init(void)
1414 int r;
1416 r = dm_hash_init();
1417 if (r)
1418 return r;
1420 r = misc_register(&_dm_misc);
1421 if (r) {
1422 DMERR("misc_register failed for control device");
1423 dm_hash_exit();
1424 return r;
1427 DMINFO("%d.%d.%d%s initialised: %s", DM_VERSION_MAJOR,
1428 DM_VERSION_MINOR, DM_VERSION_PATCHLEVEL, DM_VERSION_EXTRA,
1429 DM_DRIVER_EMAIL);
1430 return 0;
1433 void dm_interface_exit(void)
1435 if (misc_deregister(&_dm_misc) < 0)
1436 DMERR("misc_deregister failed for control device");
1438 dm_hash_exit();