2 * Copyright (C) 2001, 2002 Sistina Software (UK) Limited.
3 * Copyright (C) 2004 - 2006 Red Hat, Inc. All rights reserved.
5 * This file is released under the GPL.
10 #include <linux/module.h>
11 #include <linux/vmalloc.h>
12 #include <linux/miscdevice.h>
13 #include <linux/sched/mm.h>
14 #include <linux/init.h>
15 #include <linux/wait.h>
16 #include <linux/slab.h>
17 #include <linux/rbtree.h>
18 #include <linux/dm-ioctl.h>
19 #include <linux/hdreg.h>
20 #include <linux/compat.h>
22 #include <linux/uaccess.h>
23 #include <linux/ima.h>
25 #define DM_MSG_PREFIX "ioctl"
26 #define DM_DRIVER_EMAIL "dm-devel@redhat.com"
30 * poll will wait until the global event number is greater than
33 volatile unsigned global_event_nr;
36 /*-----------------------------------------------------------------
37 * The ioctl interface needs to be able to look up devices by
39 *---------------------------------------------------------------*/
41 struct rb_node name_node;
42 struct rb_node uuid_node;
48 struct mapped_device *md;
49 struct dm_table *new_map;
54 struct dm_target_versions *vers, *old_vers;
60 static struct rb_root name_rb_tree = RB_ROOT;
61 static struct rb_root uuid_rb_tree = RB_ROOT;
63 static void dm_hash_remove_all(bool keep_open_devices, bool mark_deferred, bool only_deferred);
66 * Guards access to both hash tables.
68 static DECLARE_RWSEM(_hash_lock);
71 * Protects use of mdptr to obtain hash cell name and uuid from mapped device.
73 static DEFINE_MUTEX(dm_hash_cells_mutex);
75 static void dm_hash_exit(void)
77 dm_hash_remove_all(false, false, false);
80 /*-----------------------------------------------------------------
81 * Code for looking up a device by name
82 *---------------------------------------------------------------*/
83 static struct hash_cell *__get_name_cell(const char *str)
85 struct rb_node *n = name_rb_tree.rb_node;
88 struct hash_cell *hc = container_of(n, struct hash_cell, name_node);
89 int c = strcmp(hc->name, str);
94 n = c >= 0 ? n->rb_left : n->rb_right;
100 static struct hash_cell *__get_uuid_cell(const char *str)
102 struct rb_node *n = uuid_rb_tree.rb_node;
105 struct hash_cell *hc = container_of(n, struct hash_cell, uuid_node);
106 int c = strcmp(hc->uuid, str);
111 n = c >= 0 ? n->rb_left : n->rb_right;
117 static void __unlink_name(struct hash_cell *hc)
120 hc->name_set = false;
121 rb_erase(&hc->name_node, &name_rb_tree);
125 static void __unlink_uuid(struct hash_cell *hc)
128 hc->uuid_set = false;
129 rb_erase(&hc->uuid_node, &uuid_rb_tree);
133 static void __link_name(struct hash_cell *new_hc)
135 struct rb_node **n, *parent;
137 __unlink_name(new_hc);
139 new_hc->name_set = true;
141 n = &name_rb_tree.rb_node;
145 struct hash_cell *hc = container_of(*n, struct hash_cell, name_node);
146 int c = strcmp(hc->name, new_hc->name);
149 n = c >= 0 ? &hc->name_node.rb_left : &hc->name_node.rb_right;
152 rb_link_node(&new_hc->name_node, parent, n);
153 rb_insert_color(&new_hc->name_node, &name_rb_tree);
156 static void __link_uuid(struct hash_cell *new_hc)
158 struct rb_node **n, *parent;
160 __unlink_uuid(new_hc);
162 new_hc->uuid_set = true;
164 n = &uuid_rb_tree.rb_node;
168 struct hash_cell *hc = container_of(*n, struct hash_cell, uuid_node);
169 int c = strcmp(hc->uuid, new_hc->uuid);
172 n = c > 0 ? &hc->uuid_node.rb_left : &hc->uuid_node.rb_right;
175 rb_link_node(&new_hc->uuid_node, parent, n);
176 rb_insert_color(&new_hc->uuid_node, &uuid_rb_tree);
179 static struct hash_cell *__get_dev_cell(uint64_t dev)
181 struct mapped_device *md;
182 struct hash_cell *hc;
184 md = dm_get_md(huge_decode_dev(dev));
188 hc = dm_get_mdptr(md);
197 /*-----------------------------------------------------------------
198 * Inserting, removing and renaming a device.
199 *---------------------------------------------------------------*/
200 static struct hash_cell *alloc_cell(const char *name, const char *uuid,
201 struct mapped_device *md)
203 struct hash_cell *hc;
205 hc = kmalloc(sizeof(*hc), GFP_KERNEL);
209 hc->name = kstrdup(name, GFP_KERNEL);
219 hc->uuid = kstrdup(uuid, GFP_KERNEL);
227 hc->name_set = hc->uuid_set = false;
233 static void free_cell(struct hash_cell *hc)
243 * The kdev_t and uuid of a device can never change once it is
244 * initially inserted.
246 static int dm_hash_insert(const char *name, const char *uuid, struct mapped_device *md)
248 struct hash_cell *cell, *hc;
251 * Allocate the new cells.
253 cell = alloc_cell(name, uuid, md);
258 * Insert the cell into both hash tables.
260 down_write(&_hash_lock);
261 hc = __get_name_cell(name);
270 hc = __get_uuid_cell(uuid);
279 mutex_lock(&dm_hash_cells_mutex);
280 dm_set_mdptr(md, cell);
281 mutex_unlock(&dm_hash_cells_mutex);
282 up_write(&_hash_lock);
287 up_write(&_hash_lock);
292 static struct dm_table *__hash_remove(struct hash_cell *hc)
294 struct dm_table *table;
297 /* remove from the dev trees */
300 mutex_lock(&dm_hash_cells_mutex);
301 dm_set_mdptr(hc->md, NULL);
302 mutex_unlock(&dm_hash_cells_mutex);
304 table = dm_get_live_table(hc->md, &srcu_idx);
306 dm_table_event(table);
307 dm_put_live_table(hc->md, srcu_idx);
318 static void dm_hash_remove_all(bool keep_open_devices, bool mark_deferred, bool only_deferred)
322 struct hash_cell *hc;
323 struct mapped_device *md;
329 down_write(&_hash_lock);
331 for (n = rb_first(&name_rb_tree); n; n = rb_next(n)) {
332 hc = container_of(n, struct hash_cell, name_node);
336 if (keep_open_devices &&
337 dm_lock_for_deletion(md, mark_deferred, only_deferred)) {
343 t = __hash_remove(hc);
345 up_write(&_hash_lock);
351 dm_ima_measure_on_device_remove(md, true);
353 if (likely(keep_open_devices))
356 dm_destroy_immediate(md);
359 * Some mapped devices may be using other mapped
360 * devices, so repeat until we make no further
361 * progress. If a new mapped device is created
362 * here it will also get removed.
367 up_write(&_hash_lock);
370 DMWARN("remove_all left %d open device(s)", dev_skipped);
374 * Set the uuid of a hash_cell that isn't already set.
376 static void __set_cell_uuid(struct hash_cell *hc, char *new_uuid)
378 mutex_lock(&dm_hash_cells_mutex);
380 mutex_unlock(&dm_hash_cells_mutex);
386 * Changes the name of a hash_cell and returns the old name for
387 * the caller to free.
389 static char *__change_cell_name(struct hash_cell *hc, char *new_name)
394 * Rename and move the name cell.
399 mutex_lock(&dm_hash_cells_mutex);
401 mutex_unlock(&dm_hash_cells_mutex);
408 static struct mapped_device *dm_hash_rename(struct dm_ioctl *param,
411 char *new_data, *old_name = NULL;
412 struct hash_cell *hc;
413 struct dm_table *table;
414 struct mapped_device *md;
415 unsigned change_uuid = (param->flags & DM_UUID_FLAG) ? 1 : 0;
421 new_data = kstrdup(new, GFP_KERNEL);
423 return ERR_PTR(-ENOMEM);
425 down_write(&_hash_lock);
431 hc = __get_uuid_cell(new);
433 hc = __get_name_cell(new);
436 DMWARN("Unable to change %s on mapped device %s to one that "
437 "already exists: %s",
438 change_uuid ? "uuid" : "name",
441 up_write(&_hash_lock);
443 return ERR_PTR(-EBUSY);
447 * Is there such a device as 'old' ?
449 hc = __get_name_cell(param->name);
451 DMWARN("Unable to rename non-existent device, %s to %s%s",
452 param->name, change_uuid ? "uuid " : "", new);
453 up_write(&_hash_lock);
455 return ERR_PTR(-ENXIO);
459 * Does this device already have a uuid?
461 if (change_uuid && hc->uuid) {
462 DMWARN("Unable to change uuid of mapped device %s to %s "
463 "because uuid is already set to %s",
464 param->name, new, hc->uuid);
466 up_write(&_hash_lock);
468 return ERR_PTR(-EINVAL);
472 __set_cell_uuid(hc, new_data);
474 old_name = __change_cell_name(hc, new_data);
477 * Wake up any dm event waiters.
479 table = dm_get_live_table(hc->md, &srcu_idx);
481 dm_table_event(table);
482 dm_put_live_table(hc->md, srcu_idx);
484 if (!dm_kobject_uevent(hc->md, KOBJ_CHANGE, param->event_nr))
485 param->flags |= DM_UEVENT_GENERATED_FLAG;
489 dm_ima_measure_on_device_rename(md);
491 up_write(&_hash_lock);
497 void dm_deferred_remove(void)
499 dm_hash_remove_all(true, false, true);
502 /*-----------------------------------------------------------------
503 * Implementation of the ioctl commands
504 *---------------------------------------------------------------*/
506 * All the ioctl commands get dispatched to functions with this
509 typedef int (*ioctl_fn)(struct file *filp, struct dm_ioctl *param, size_t param_size);
511 static int remove_all(struct file *filp, struct dm_ioctl *param, size_t param_size)
513 dm_hash_remove_all(true, !!(param->flags & DM_DEFERRED_REMOVE), false);
514 param->data_size = 0;
519 * Round up the ptr to an 8-byte boundary.
522 static inline size_t align_val(size_t val)
524 return (val + ALIGN_MASK) & ~ALIGN_MASK;
526 static inline void *align_ptr(void *ptr)
528 return (void *)align_val((size_t)ptr);
532 * Retrieves the data payload buffer from an already allocated
535 static void *get_result_buffer(struct dm_ioctl *param, size_t param_size,
538 param->data_start = align_ptr(param + 1) - (void *) param;
540 if (param->data_start < param_size)
541 *len = param_size - param->data_start;
545 return ((void *) param) + param->data_start;
548 static bool filter_device(struct hash_cell *hc, const char *pfx_name, const char *pfx_uuid)
551 size_t val_len, pfx_len;
554 val_len = strlen(val);
555 pfx_len = strnlen(pfx_name, DM_NAME_LEN);
556 if (pfx_len > val_len)
558 if (memcmp(val, pfx_name, pfx_len))
561 val = hc->uuid ? hc->uuid : "";
562 val_len = strlen(val);
563 pfx_len = strnlen(pfx_uuid, DM_UUID_LEN);
564 if (pfx_len > val_len)
566 if (memcmp(val, pfx_uuid, pfx_len))
572 static int list_devices(struct file *filp, struct dm_ioctl *param, size_t param_size)
575 struct hash_cell *hc;
576 size_t len, needed = 0;
577 struct gendisk *disk;
578 struct dm_name_list *orig_nl, *nl, *old_nl = NULL;
581 down_write(&_hash_lock);
584 * Loop through all the devices working out how much
587 for (n = rb_first(&name_rb_tree); n; n = rb_next(n)) {
588 hc = container_of(n, struct hash_cell, name_node);
589 if (!filter_device(hc, param->name, param->uuid))
591 needed += align_val(offsetof(struct dm_name_list, name) + strlen(hc->name) + 1);
592 needed += align_val(sizeof(uint32_t) * 2);
593 if (param->flags & DM_UUID_FLAG && hc->uuid)
594 needed += align_val(strlen(hc->uuid) + 1);
598 * Grab our output buffer.
600 nl = orig_nl = get_result_buffer(param, param_size, &len);
601 if (len < needed || len < sizeof(nl->dev)) {
602 param->flags |= DM_BUFFER_FULL_FLAG;
605 param->data_size = param->data_start + needed;
607 nl->dev = 0; /* Flags no data */
610 * Now loop through filling out the names.
612 for (n = rb_first(&name_rb_tree); n; n = rb_next(n)) {
614 hc = container_of(n, struct hash_cell, name_node);
615 if (!filter_device(hc, param->name, param->uuid))
618 old_nl->next = (uint32_t) ((void *) nl -
620 disk = dm_disk(hc->md);
621 nl->dev = huge_encode_dev(disk_devt(disk));
623 strcpy(nl->name, hc->name);
626 event_nr = align_ptr(nl->name + strlen(hc->name) + 1);
627 event_nr[0] = dm_get_event_nr(hc->md);
629 uuid_ptr = align_ptr(event_nr + 2);
630 if (param->flags & DM_UUID_FLAG) {
632 event_nr[1] |= DM_NAME_LIST_FLAG_HAS_UUID;
633 strcpy(uuid_ptr, hc->uuid);
634 uuid_ptr = align_ptr(uuid_ptr + strlen(hc->uuid) + 1);
636 event_nr[1] |= DM_NAME_LIST_FLAG_DOESNT_HAVE_UUID;
642 * If mismatch happens, security may be compromised due to buffer
643 * overflow, so it's better to crash.
645 BUG_ON((char *)nl - (char *)orig_nl != needed);
648 up_write(&_hash_lock);
652 static void list_version_get_needed(struct target_type *tt, void *needed_param)
654 size_t *needed = needed_param;
656 *needed += sizeof(struct dm_target_versions);
657 *needed += strlen(tt->name);
658 *needed += ALIGN_MASK;
661 static void list_version_get_info(struct target_type *tt, void *param)
663 struct vers_iter *info = param;
665 /* Check space - it might have changed since the first iteration */
666 if ((char *)info->vers + sizeof(tt->version) + strlen(tt->name) + 1 >
669 info->flags = DM_BUFFER_FULL_FLAG;
674 info->old_vers->next = (uint32_t) ((void *)info->vers -
675 (void *)info->old_vers);
676 info->vers->version[0] = tt->version[0];
677 info->vers->version[1] = tt->version[1];
678 info->vers->version[2] = tt->version[2];
679 info->vers->next = 0;
680 strcpy(info->vers->name, tt->name);
682 info->old_vers = info->vers;
683 info->vers = align_ptr(((void *) ++info->vers) + strlen(tt->name) + 1);
686 static int __list_versions(struct dm_ioctl *param, size_t param_size, const char *name)
688 size_t len, needed = 0;
689 struct dm_target_versions *vers;
690 struct vers_iter iter_info;
691 struct target_type *tt = NULL;
694 tt = dm_get_target_type(name);
700 * Loop through all the devices working out how much
704 dm_target_iterate(list_version_get_needed, &needed);
706 list_version_get_needed(tt, &needed);
709 * Grab our output buffer.
711 vers = get_result_buffer(param, param_size, &len);
713 param->flags |= DM_BUFFER_FULL_FLAG;
716 param->data_size = param->data_start + needed;
718 iter_info.param_size = param_size;
719 iter_info.old_vers = NULL;
720 iter_info.vers = vers;
722 iter_info.end = (char *)vers+len;
725 * Now loop through filling out the names & versions.
728 dm_target_iterate(list_version_get_info, &iter_info);
730 list_version_get_info(tt, &iter_info);
731 param->flags |= iter_info.flags;
735 dm_put_target_type(tt);
739 static int list_versions(struct file *filp, struct dm_ioctl *param, size_t param_size)
741 return __list_versions(param, param_size, NULL);
744 static int get_target_version(struct file *filp, struct dm_ioctl *param, size_t param_size)
746 return __list_versions(param, param_size, param->name);
749 static int check_name(const char *name)
751 if (strchr(name, '/')) {
752 DMWARN("invalid device name");
760 * On successful return, the caller must not attempt to acquire
761 * _hash_lock without first calling dm_put_live_table, because dm_table_destroy
762 * waits for this dm_put_live_table and could be called under this lock.
764 static struct dm_table *dm_get_inactive_table(struct mapped_device *md, int *srcu_idx)
766 struct hash_cell *hc;
767 struct dm_table *table = NULL;
769 /* increment rcu count, we don't care about the table pointer */
770 dm_get_live_table(md, srcu_idx);
772 down_read(&_hash_lock);
773 hc = dm_get_mdptr(md);
774 if (!hc || hc->md != md) {
775 DMWARN("device has been removed from the dev hash table.");
782 up_read(&_hash_lock);
787 static struct dm_table *dm_get_live_or_inactive_table(struct mapped_device *md,
788 struct dm_ioctl *param,
791 return (param->flags & DM_QUERY_INACTIVE_TABLE_FLAG) ?
792 dm_get_inactive_table(md, srcu_idx) : dm_get_live_table(md, srcu_idx);
796 * Fills in a dm_ioctl structure, ready for sending back to
799 static void __dev_status(struct mapped_device *md, struct dm_ioctl *param)
801 struct gendisk *disk = dm_disk(md);
802 struct dm_table *table;
805 param->flags &= ~(DM_SUSPEND_FLAG | DM_READONLY_FLAG |
806 DM_ACTIVE_PRESENT_FLAG | DM_INTERNAL_SUSPEND_FLAG);
808 if (dm_suspended_md(md))
809 param->flags |= DM_SUSPEND_FLAG;
811 if (dm_suspended_internally_md(md))
812 param->flags |= DM_INTERNAL_SUSPEND_FLAG;
814 if (dm_test_deferred_remove_flag(md))
815 param->flags |= DM_DEFERRED_REMOVE;
817 param->dev = huge_encode_dev(disk_devt(disk));
820 * Yes, this will be out of date by the time it gets back
821 * to userland, but it is still very useful for
824 param->open_count = dm_open_count(md);
826 param->event_nr = dm_get_event_nr(md);
827 param->target_count = 0;
829 table = dm_get_live_table(md, &srcu_idx);
831 if (!(param->flags & DM_QUERY_INACTIVE_TABLE_FLAG)) {
832 if (get_disk_ro(disk))
833 param->flags |= DM_READONLY_FLAG;
834 param->target_count = dm_table_get_num_targets(table);
837 param->flags |= DM_ACTIVE_PRESENT_FLAG;
839 dm_put_live_table(md, srcu_idx);
841 if (param->flags & DM_QUERY_INACTIVE_TABLE_FLAG) {
843 table = dm_get_inactive_table(md, &srcu_idx);
845 if (!(dm_table_get_mode(table) & FMODE_WRITE))
846 param->flags |= DM_READONLY_FLAG;
847 param->target_count = dm_table_get_num_targets(table);
849 dm_put_live_table(md, srcu_idx);
853 static int dev_create(struct file *filp, struct dm_ioctl *param, size_t param_size)
855 int r, m = DM_ANY_MINOR;
856 struct mapped_device *md;
858 r = check_name(param->name);
862 if (param->flags & DM_PERSISTENT_DEV_FLAG)
863 m = MINOR(huge_decode_dev(param->dev));
865 r = dm_create(m, &md);
869 r = dm_hash_insert(param->name, *param->uuid ? param->uuid : NULL, md);
876 param->flags &= ~DM_INACTIVE_PRESENT_FLAG;
878 __dev_status(md, param);
886 * Always use UUID for lookups if it's present, otherwise use name or dev.
888 static struct hash_cell *__find_device_hash_cell(struct dm_ioctl *param)
890 struct hash_cell *hc = NULL;
893 if (*param->name || param->dev)
896 hc = __get_uuid_cell(param->uuid);
899 } else if (*param->name) {
903 hc = __get_name_cell(param->name);
906 } else if (param->dev) {
907 hc = __get_dev_cell(param->dev);
914 * Sneakily write in both the name and the uuid
915 * while we have the cell.
917 strlcpy(param->name, hc->name, sizeof(param->name));
919 strlcpy(param->uuid, hc->uuid, sizeof(param->uuid));
921 param->uuid[0] = '\0';
924 param->flags |= DM_INACTIVE_PRESENT_FLAG;
926 param->flags &= ~DM_INACTIVE_PRESENT_FLAG;
931 static struct mapped_device *find_device(struct dm_ioctl *param)
933 struct hash_cell *hc;
934 struct mapped_device *md = NULL;
936 down_read(&_hash_lock);
937 hc = __find_device_hash_cell(param);
940 up_read(&_hash_lock);
945 static int dev_remove(struct file *filp, struct dm_ioctl *param, size_t param_size)
947 struct hash_cell *hc;
948 struct mapped_device *md;
952 down_write(&_hash_lock);
953 hc = __find_device_hash_cell(param);
956 DMDEBUG_LIMIT("device doesn't appear to be in the dev hash table.");
957 up_write(&_hash_lock);
964 * Ensure the device is not open and nothing further can open it.
966 r = dm_lock_for_deletion(md, !!(param->flags & DM_DEFERRED_REMOVE), false);
968 if (r == -EBUSY && param->flags & DM_DEFERRED_REMOVE) {
969 up_write(&_hash_lock);
973 DMDEBUG_LIMIT("unable to remove open device %s", hc->name);
974 up_write(&_hash_lock);
979 t = __hash_remove(hc);
980 up_write(&_hash_lock);
987 param->flags &= ~DM_DEFERRED_REMOVE;
989 dm_ima_measure_on_device_remove(md, false);
991 if (!dm_kobject_uevent(md, KOBJ_REMOVE, param->event_nr))
992 param->flags |= DM_UEVENT_GENERATED_FLAG;
1000 * Check a string doesn't overrun the chunk of
1001 * memory we copied from userland.
1003 static int invalid_str(char *str, void *end)
1005 while ((void *) str < end)
1012 static int dev_rename(struct file *filp, struct dm_ioctl *param, size_t param_size)
1015 char *new_data = (char *) param + param->data_start;
1016 struct mapped_device *md;
1017 unsigned change_uuid = (param->flags & DM_UUID_FLAG) ? 1 : 0;
1019 if (new_data < param->data ||
1020 invalid_str(new_data, (void *) param + param_size) || !*new_data ||
1021 strlen(new_data) > (change_uuid ? DM_UUID_LEN - 1 : DM_NAME_LEN - 1)) {
1022 DMWARN("Invalid new mapped device name or uuid string supplied.");
1027 r = check_name(new_data);
1032 md = dm_hash_rename(param, new_data);
1036 __dev_status(md, param);
1042 static int dev_set_geometry(struct file *filp, struct dm_ioctl *param, size_t param_size)
1045 struct mapped_device *md;
1046 struct hd_geometry geometry;
1047 unsigned long indata[4];
1048 char *geostr = (char *) param + param->data_start;
1051 md = find_device(param);
1055 if (geostr < param->data ||
1056 invalid_str(geostr, (void *) param + param_size)) {
1057 DMWARN("Invalid geometry supplied.");
1061 x = sscanf(geostr, "%lu %lu %lu %lu%c", indata,
1062 indata + 1, indata + 2, indata + 3, &dummy);
1065 DMWARN("Unable to interpret geometry settings.");
1069 if (indata[0] > 65535 || indata[1] > 255 ||
1070 indata[2] > 255 || indata[3] > ULONG_MAX) {
1071 DMWARN("Geometry exceeds range limits.");
1075 geometry.cylinders = indata[0];
1076 geometry.heads = indata[1];
1077 geometry.sectors = indata[2];
1078 geometry.start = indata[3];
1080 r = dm_set_geometry(md, &geometry);
1082 param->data_size = 0;
1089 static int do_suspend(struct dm_ioctl *param)
1092 unsigned suspend_flags = DM_SUSPEND_LOCKFS_FLAG;
1093 struct mapped_device *md;
1095 md = find_device(param);
1099 if (param->flags & DM_SKIP_LOCKFS_FLAG)
1100 suspend_flags &= ~DM_SUSPEND_LOCKFS_FLAG;
1101 if (param->flags & DM_NOFLUSH_FLAG)
1102 suspend_flags |= DM_SUSPEND_NOFLUSH_FLAG;
1104 if (!dm_suspended_md(md)) {
1105 r = dm_suspend(md, suspend_flags);
1110 __dev_status(md, param);
1118 static int do_resume(struct dm_ioctl *param)
1121 unsigned suspend_flags = DM_SUSPEND_LOCKFS_FLAG;
1122 struct hash_cell *hc;
1123 struct mapped_device *md;
1124 struct dm_table *new_map, *old_map = NULL;
1126 down_write(&_hash_lock);
1128 hc = __find_device_hash_cell(param);
1130 DMDEBUG_LIMIT("device doesn't appear to be in the dev hash table.");
1131 up_write(&_hash_lock);
1137 new_map = hc->new_map;
1139 param->flags &= ~DM_INACTIVE_PRESENT_FLAG;
1141 up_write(&_hash_lock);
1143 /* Do we need to load a new map ? */
1145 /* Suspend if it isn't already suspended */
1146 if (param->flags & DM_SKIP_LOCKFS_FLAG)
1147 suspend_flags &= ~DM_SUSPEND_LOCKFS_FLAG;
1148 if (param->flags & DM_NOFLUSH_FLAG)
1149 suspend_flags |= DM_SUSPEND_NOFLUSH_FLAG;
1150 if (!dm_suspended_md(md))
1151 dm_suspend(md, suspend_flags);
1153 old_map = dm_swap_table(md, new_map);
1154 if (IS_ERR(old_map)) {
1156 dm_table_destroy(new_map);
1158 return PTR_ERR(old_map);
1161 if (dm_table_get_mode(new_map) & FMODE_WRITE)
1162 set_disk_ro(dm_disk(md), 0);
1164 set_disk_ro(dm_disk(md), 1);
1167 if (dm_suspended_md(md)) {
1170 dm_ima_measure_on_device_resume(md, new_map ? true : false);
1172 if (!dm_kobject_uevent(md, KOBJ_CHANGE, param->event_nr))
1173 param->flags |= DM_UEVENT_GENERATED_FLAG;
1178 * Since dm_swap_table synchronizes RCU, nobody should be in
1179 * read-side critical section already.
1182 dm_table_destroy(old_map);
1185 __dev_status(md, param);
1192 * Set or unset the suspension state of a device.
1193 * If the device already is in the requested state we just return its status.
1195 static int dev_suspend(struct file *filp, struct dm_ioctl *param, size_t param_size)
1197 if (param->flags & DM_SUSPEND_FLAG)
1198 return do_suspend(param);
1200 return do_resume(param);
1204 * Copies device info back to user space, used by
1205 * the create and info ioctls.
1207 static int dev_status(struct file *filp, struct dm_ioctl *param, size_t param_size)
1209 struct mapped_device *md;
1211 md = find_device(param);
1215 __dev_status(md, param);
1222 * Build up the status struct for each target
1224 static void retrieve_status(struct dm_table *table,
1225 struct dm_ioctl *param, size_t param_size)
1227 unsigned int i, num_targets;
1228 struct dm_target_spec *spec;
1229 char *outbuf, *outptr;
1231 size_t remaining, len, used = 0;
1232 unsigned status_flags = 0;
1234 outptr = outbuf = get_result_buffer(param, param_size, &len);
1236 if (param->flags & DM_STATUS_TABLE_FLAG)
1237 type = STATUSTYPE_TABLE;
1238 else if (param->flags & DM_IMA_MEASUREMENT_FLAG)
1239 type = STATUSTYPE_IMA;
1241 type = STATUSTYPE_INFO;
1243 /* Get all the target info */
1244 num_targets = dm_table_get_num_targets(table);
1245 for (i = 0; i < num_targets; i++) {
1246 struct dm_target *ti = dm_table_get_target(table, i);
1249 remaining = len - (outptr - outbuf);
1250 if (remaining <= sizeof(struct dm_target_spec)) {
1251 param->flags |= DM_BUFFER_FULL_FLAG;
1255 spec = (struct dm_target_spec *) outptr;
1258 spec->sector_start = ti->begin;
1259 spec->length = ti->len;
1260 strncpy(spec->target_type, ti->type->name,
1261 sizeof(spec->target_type) - 1);
1263 outptr += sizeof(struct dm_target_spec);
1264 remaining = len - (outptr - outbuf);
1265 if (remaining <= 0) {
1266 param->flags |= DM_BUFFER_FULL_FLAG;
1270 /* Get the status/table string from the target driver */
1271 if (ti->type->status) {
1272 if (param->flags & DM_NOFLUSH_FLAG)
1273 status_flags |= DM_STATUS_NOFLUSH_FLAG;
1274 ti->type->status(ti, type, status_flags, outptr, remaining);
1278 l = strlen(outptr) + 1;
1279 if (l == remaining) {
1280 param->flags |= DM_BUFFER_FULL_FLAG;
1285 used = param->data_start + (outptr - outbuf);
1287 outptr = align_ptr(outptr);
1288 spec->next = outptr - outbuf;
1292 param->data_size = used;
1294 param->target_count = num_targets;
1298 * Wait for a device to report an event
1300 static int dev_wait(struct file *filp, struct dm_ioctl *param, size_t param_size)
1303 struct mapped_device *md;
1304 struct dm_table *table;
1307 md = find_device(param);
1312 * Wait for a notification event
1314 if (dm_wait_event(md, param->event_nr)) {
1320 * The userland program is going to want to know what
1321 * changed to trigger the event, so we may as well tell
1322 * him and save an ioctl.
1324 __dev_status(md, param);
1326 table = dm_get_live_or_inactive_table(md, param, &srcu_idx);
1328 retrieve_status(table, param, param_size);
1329 dm_put_live_table(md, srcu_idx);
1338 * Remember the global event number and make it possible to poll
1339 * for further events.
1341 static int dev_arm_poll(struct file *filp, struct dm_ioctl *param, size_t param_size)
1343 struct dm_file *priv = filp->private_data;
1345 priv->global_event_nr = atomic_read(&dm_global_event_nr);
1350 static inline fmode_t get_mode(struct dm_ioctl *param)
1352 fmode_t mode = FMODE_READ | FMODE_WRITE;
1354 if (param->flags & DM_READONLY_FLAG)
1360 static int next_target(struct dm_target_spec *last, uint32_t next, void *end,
1361 struct dm_target_spec **spec, char **target_params)
1363 *spec = (struct dm_target_spec *) ((unsigned char *) last + next);
1364 *target_params = (char *) (*spec + 1);
1366 if (*spec < (last + 1))
1369 return invalid_str(*target_params, end);
1372 static int populate_table(struct dm_table *table,
1373 struct dm_ioctl *param, size_t param_size)
1377 struct dm_target_spec *spec = (struct dm_target_spec *) param;
1378 uint32_t next = param->data_start;
1379 void *end = (void *) param + param_size;
1380 char *target_params;
1382 if (!param->target_count) {
1383 DMWARN("populate_table: no targets specified");
1387 for (i = 0; i < param->target_count; i++) {
1389 r = next_target(spec, next, end, &spec, &target_params);
1391 DMWARN("unable to find target");
1395 r = dm_table_add_target(table, spec->target_type,
1396 (sector_t) spec->sector_start,
1397 (sector_t) spec->length,
1400 DMWARN("error adding target to table");
1407 return dm_table_complete(table);
1410 static bool is_valid_type(enum dm_queue_mode cur, enum dm_queue_mode new)
1413 (cur == DM_TYPE_BIO_BASED && new == DM_TYPE_DAX_BIO_BASED))
1419 static int table_load(struct file *filp, struct dm_ioctl *param, size_t param_size)
1422 struct hash_cell *hc;
1423 struct dm_table *t, *old_map = NULL;
1424 struct mapped_device *md;
1425 struct target_type *immutable_target_type;
1427 md = find_device(param);
1431 r = dm_table_create(&t, get_mode(param), param->target_count, md);
1435 /* Protect md->type and md->queue against concurrent table loads. */
1436 dm_lock_md_type(md);
1437 r = populate_table(t, param, param_size);
1439 goto err_unlock_md_type;
1441 dm_ima_measure_on_table_load(t, STATUSTYPE_IMA);
1443 immutable_target_type = dm_get_immutable_target_type(md);
1444 if (immutable_target_type &&
1445 (immutable_target_type != dm_table_get_immutable_target_type(t)) &&
1446 !dm_table_get_wildcard_target(t)) {
1447 DMWARN("can't replace immutable target type %s",
1448 immutable_target_type->name);
1450 goto err_unlock_md_type;
1453 if (dm_get_md_type(md) == DM_TYPE_NONE) {
1454 /* setup md->queue to reflect md's type (may block) */
1455 r = dm_setup_md_queue(md, t);
1457 DMWARN("unable to set up device queue for new table.");
1458 goto err_unlock_md_type;
1460 } else if (!is_valid_type(dm_get_md_type(md), dm_table_get_type(t))) {
1461 DMWARN("can't change device type (old=%u vs new=%u) after initial table load.",
1462 dm_get_md_type(md), dm_table_get_type(t));
1464 goto err_unlock_md_type;
1467 dm_unlock_md_type(md);
1469 /* stage inactive table */
1470 down_write(&_hash_lock);
1471 hc = dm_get_mdptr(md);
1472 if (!hc || hc->md != md) {
1473 DMWARN("device has been removed from the dev hash table.");
1474 up_write(&_hash_lock);
1476 goto err_destroy_table;
1480 old_map = hc->new_map;
1482 up_write(&_hash_lock);
1484 param->flags |= DM_INACTIVE_PRESENT_FLAG;
1485 __dev_status(md, param);
1489 dm_table_destroy(old_map);
1497 dm_unlock_md_type(md);
1499 dm_table_destroy(t);
1506 static int table_clear(struct file *filp, struct dm_ioctl *param, size_t param_size)
1508 struct hash_cell *hc;
1509 struct mapped_device *md;
1510 struct dm_table *old_map = NULL;
1511 bool has_new_map = false;
1513 down_write(&_hash_lock);
1515 hc = __find_device_hash_cell(param);
1517 DMDEBUG_LIMIT("device doesn't appear to be in the dev hash table.");
1518 up_write(&_hash_lock);
1523 old_map = hc->new_map;
1528 param->flags &= ~DM_INACTIVE_PRESENT_FLAG;
1530 __dev_status(hc->md, param);
1532 up_write(&_hash_lock);
1535 dm_table_destroy(old_map);
1537 dm_ima_measure_on_table_clear(md, has_new_map);
1544 * Retrieves a list of devices used by a particular dm device.
1546 static void retrieve_deps(struct dm_table *table,
1547 struct dm_ioctl *param, size_t param_size)
1549 unsigned int count = 0;
1550 struct list_head *tmp;
1552 struct dm_dev_internal *dd;
1553 struct dm_target_deps *deps;
1555 deps = get_result_buffer(param, param_size, &len);
1558 * Count the devices.
1560 list_for_each (tmp, dm_table_get_devices(table))
1564 * Check we have enough space.
1566 needed = struct_size(deps, dev, count);
1568 param->flags |= DM_BUFFER_FULL_FLAG;
1573 * Fill in the devices.
1575 deps->count = count;
1577 list_for_each_entry (dd, dm_table_get_devices(table), list)
1578 deps->dev[count++] = huge_encode_dev(dd->dm_dev->bdev->bd_dev);
1580 param->data_size = param->data_start + needed;
1583 static int table_deps(struct file *filp, struct dm_ioctl *param, size_t param_size)
1585 struct mapped_device *md;
1586 struct dm_table *table;
1589 md = find_device(param);
1593 __dev_status(md, param);
1595 table = dm_get_live_or_inactive_table(md, param, &srcu_idx);
1597 retrieve_deps(table, param, param_size);
1598 dm_put_live_table(md, srcu_idx);
1606 * Return the status of a device as a text string for each
1609 static int table_status(struct file *filp, struct dm_ioctl *param, size_t param_size)
1611 struct mapped_device *md;
1612 struct dm_table *table;
1615 md = find_device(param);
1619 __dev_status(md, param);
1621 table = dm_get_live_or_inactive_table(md, param, &srcu_idx);
1623 retrieve_status(table, param, param_size);
1624 dm_put_live_table(md, srcu_idx);
1632 * Process device-mapper dependent messages. Messages prefixed with '@'
1633 * are processed by the DM core. All others are delivered to the target.
1634 * Returns a number <= 1 if message was processed by device mapper.
1635 * Returns 2 if message should be delivered to the target.
1637 static int message_for_md(struct mapped_device *md, unsigned argc, char **argv,
1638 char *result, unsigned maxlen)
1643 return 2; /* no '@' prefix, deliver to target */
1645 if (!strcasecmp(argv[0], "@cancel_deferred_remove")) {
1647 DMERR("Invalid arguments for @cancel_deferred_remove");
1650 return dm_cancel_deferred_remove(md);
1653 r = dm_stats_message(md, argc, argv, result, maxlen);
1657 DMERR("Unsupported message sent to DM core: %s", argv[0]);
1662 * Pass a message to the target that's at the supplied device offset.
1664 static int target_message(struct file *filp, struct dm_ioctl *param, size_t param_size)
1668 struct mapped_device *md;
1669 struct dm_table *table;
1670 struct dm_target *ti;
1671 struct dm_target_msg *tmsg = (void *) param + param->data_start;
1673 char *result = get_result_buffer(param, param_size, &maxlen);
1676 md = find_device(param);
1680 if (tmsg < (struct dm_target_msg *) param->data ||
1681 invalid_str(tmsg->message, (void *) param + param_size)) {
1682 DMWARN("Invalid target message parameters.");
1687 r = dm_split_args(&argc, &argv, tmsg->message);
1689 DMWARN("Failed to split target message parameters");
1694 DMWARN("Empty message received.");
1699 r = message_for_md(md, argc, argv, result, maxlen);
1703 table = dm_get_live_table(md, &srcu_idx);
1707 if (dm_deleting_md(md)) {
1712 ti = dm_table_find_target(table, tmsg->sector);
1714 DMWARN("Target message sector outside device.");
1716 } else if (ti->type->message)
1717 r = ti->type->message(ti, argc, argv, result, maxlen);
1719 DMWARN("Target type does not support messages");
1724 dm_put_live_table(md, srcu_idx);
1729 __dev_status(md, param);
1732 param->flags |= DM_DATA_OUT_FLAG;
1733 if (dm_message_test_buffer_overflow(result, maxlen))
1734 param->flags |= DM_BUFFER_FULL_FLAG;
1736 param->data_size = param->data_start + strlen(result) + 1;
1745 * The ioctl parameter block consists of two parts, a dm_ioctl struct
1746 * followed by a data buffer. This flag is set if the second part,
1747 * which has a variable size, is not used by the function processing
1750 #define IOCTL_FLAGS_NO_PARAMS 1
1751 #define IOCTL_FLAGS_ISSUE_GLOBAL_EVENT 2
1753 /*-----------------------------------------------------------------
1754 * Implementation of open/close/ioctl on the special char
1756 *---------------------------------------------------------------*/
1757 static ioctl_fn lookup_ioctl(unsigned int cmd, int *ioctl_flags)
1759 static const struct {
1764 {DM_VERSION_CMD, 0, NULL}, /* version is dealt with elsewhere */
1765 {DM_REMOVE_ALL_CMD, IOCTL_FLAGS_NO_PARAMS | IOCTL_FLAGS_ISSUE_GLOBAL_EVENT, remove_all},
1766 {DM_LIST_DEVICES_CMD, 0, list_devices},
1768 {DM_DEV_CREATE_CMD, IOCTL_FLAGS_NO_PARAMS | IOCTL_FLAGS_ISSUE_GLOBAL_EVENT, dev_create},
1769 {DM_DEV_REMOVE_CMD, IOCTL_FLAGS_NO_PARAMS | IOCTL_FLAGS_ISSUE_GLOBAL_EVENT, dev_remove},
1770 {DM_DEV_RENAME_CMD, IOCTL_FLAGS_ISSUE_GLOBAL_EVENT, dev_rename},
1771 {DM_DEV_SUSPEND_CMD, IOCTL_FLAGS_NO_PARAMS, dev_suspend},
1772 {DM_DEV_STATUS_CMD, IOCTL_FLAGS_NO_PARAMS, dev_status},
1773 {DM_DEV_WAIT_CMD, 0, dev_wait},
1775 {DM_TABLE_LOAD_CMD, 0, table_load},
1776 {DM_TABLE_CLEAR_CMD, IOCTL_FLAGS_NO_PARAMS, table_clear},
1777 {DM_TABLE_DEPS_CMD, 0, table_deps},
1778 {DM_TABLE_STATUS_CMD, 0, table_status},
1780 {DM_LIST_VERSIONS_CMD, 0, list_versions},
1782 {DM_TARGET_MSG_CMD, 0, target_message},
1783 {DM_DEV_SET_GEOMETRY_CMD, 0, dev_set_geometry},
1784 {DM_DEV_ARM_POLL, IOCTL_FLAGS_NO_PARAMS, dev_arm_poll},
1785 {DM_GET_TARGET_VERSION, 0, get_target_version},
1788 if (unlikely(cmd >= ARRAY_SIZE(_ioctls)))
1791 *ioctl_flags = _ioctls[cmd].flags;
1792 return _ioctls[cmd].fn;
1796 * As well as checking the version compatibility this always
1797 * copies the kernel interface version out.
1799 static int check_version(unsigned int cmd, struct dm_ioctl __user *user)
1801 uint32_t version[3];
1804 if (copy_from_user(version, user->version, sizeof(version)))
1807 if ((DM_VERSION_MAJOR != version[0]) ||
1808 (DM_VERSION_MINOR < version[1])) {
1809 DMWARN("ioctl interface mismatch: "
1810 "kernel(%u.%u.%u), user(%u.%u.%u), cmd(%d)",
1811 DM_VERSION_MAJOR, DM_VERSION_MINOR,
1812 DM_VERSION_PATCHLEVEL,
1813 version[0], version[1], version[2], cmd);
1818 * Fill in the kernel version.
1820 version[0] = DM_VERSION_MAJOR;
1821 version[1] = DM_VERSION_MINOR;
1822 version[2] = DM_VERSION_PATCHLEVEL;
1823 if (copy_to_user(user->version, version, sizeof(version)))
1829 #define DM_PARAMS_MALLOC 0x0001 /* Params allocated with kvmalloc() */
1830 #define DM_WIPE_BUFFER 0x0010 /* Wipe input buffer before returning from ioctl */
1832 static void free_params(struct dm_ioctl *param, size_t param_size, int param_flags)
1834 if (param_flags & DM_WIPE_BUFFER)
1835 memset(param, 0, param_size);
1837 if (param_flags & DM_PARAMS_MALLOC)
1841 static int copy_params(struct dm_ioctl __user *user, struct dm_ioctl *param_kernel,
1842 int ioctl_flags, struct dm_ioctl **param, int *param_flags)
1844 struct dm_ioctl *dmi;
1846 const size_t minimum_data_size = offsetof(struct dm_ioctl, data);
1849 if (copy_from_user(param_kernel, user, minimum_data_size))
1852 if (param_kernel->data_size < minimum_data_size)
1855 secure_data = param_kernel->flags & DM_SECURE_DATA_FLAG;
1857 *param_flags = secure_data ? DM_WIPE_BUFFER : 0;
1859 if (ioctl_flags & IOCTL_FLAGS_NO_PARAMS) {
1861 dmi->data_size = minimum_data_size;
1866 * Use __GFP_HIGH to avoid low memory issues when a device is
1867 * suspended and the ioctl is needed to resume it.
1868 * Use kmalloc() rather than vmalloc() when we can.
1871 noio_flag = memalloc_noio_save();
1872 dmi = kvmalloc(param_kernel->data_size, GFP_KERNEL | __GFP_HIGH);
1873 memalloc_noio_restore(noio_flag);
1876 if (secure_data && clear_user(user, param_kernel->data_size))
1881 *param_flags |= DM_PARAMS_MALLOC;
1883 /* Copy from param_kernel (which was already copied from user) */
1884 memcpy(dmi, param_kernel, minimum_data_size);
1886 if (copy_from_user(&dmi->data, (char __user *)user + minimum_data_size,
1887 param_kernel->data_size - minimum_data_size))
1890 /* Wipe the user buffer so we do not return it to userspace */
1891 if (secure_data && clear_user(user, param_kernel->data_size))
1898 free_params(dmi, param_kernel->data_size, *param_flags);
1903 static int validate_params(uint cmd, struct dm_ioctl *param)
1905 /* Always clear this flag */
1906 param->flags &= ~DM_BUFFER_FULL_FLAG;
1907 param->flags &= ~DM_UEVENT_GENERATED_FLAG;
1908 param->flags &= ~DM_SECURE_DATA_FLAG;
1909 param->flags &= ~DM_DATA_OUT_FLAG;
1911 /* Ignores parameters */
1912 if (cmd == DM_REMOVE_ALL_CMD ||
1913 cmd == DM_LIST_DEVICES_CMD ||
1914 cmd == DM_LIST_VERSIONS_CMD)
1917 if (cmd == DM_DEV_CREATE_CMD) {
1918 if (!*param->name) {
1919 DMWARN("name not supplied when creating device");
1922 } else if (*param->uuid && *param->name) {
1923 DMWARN("only supply one of name or uuid, cmd(%u)", cmd);
1927 /* Ensure strings are terminated */
1928 param->name[DM_NAME_LEN - 1] = '\0';
1929 param->uuid[DM_UUID_LEN - 1] = '\0';
1934 static int ctl_ioctl(struct file *file, uint command, struct dm_ioctl __user *user)
1940 struct dm_ioctl *param;
1942 size_t input_param_size;
1943 struct dm_ioctl param_kernel;
1945 /* only root can play with this */
1946 if (!capable(CAP_SYS_ADMIN))
1949 if (_IOC_TYPE(command) != DM_IOCTL)
1952 cmd = _IOC_NR(command);
1955 * Check the interface version passed in. This also
1956 * writes out the kernel's interface version.
1958 r = check_version(cmd, user);
1963 * Nothing more to do for the version command.
1965 if (cmd == DM_VERSION_CMD)
1968 fn = lookup_ioctl(cmd, &ioctl_flags);
1970 DMWARN("dm_ctl_ioctl: unknown command 0x%x", command);
1975 * Copy the parameters into kernel space.
1977 r = copy_params(user, ¶m_kernel, ioctl_flags, ¶m, ¶m_flags);
1982 input_param_size = param->data_size;
1983 r = validate_params(cmd, param);
1987 param->data_size = offsetof(struct dm_ioctl, data);
1988 r = fn(file, param, input_param_size);
1990 if (unlikely(param->flags & DM_BUFFER_FULL_FLAG) &&
1991 unlikely(ioctl_flags & IOCTL_FLAGS_NO_PARAMS))
1992 DMERR("ioctl %d tried to output some data but has IOCTL_FLAGS_NO_PARAMS set", cmd);
1994 if (!r && ioctl_flags & IOCTL_FLAGS_ISSUE_GLOBAL_EVENT)
1995 dm_issue_global_event();
1998 * Copy the results back to userland.
2000 if (!r && copy_to_user(user, param, param->data_size))
2004 free_params(param, input_param_size, param_flags);
2008 static long dm_ctl_ioctl(struct file *file, uint command, ulong u)
2010 return (long)ctl_ioctl(file, command, (struct dm_ioctl __user *)u);
2013 #ifdef CONFIG_COMPAT
2014 static long dm_compat_ctl_ioctl(struct file *file, uint command, ulong u)
2016 return (long)dm_ctl_ioctl(file, command, (ulong) compat_ptr(u));
2019 #define dm_compat_ctl_ioctl NULL
2022 static int dm_open(struct inode *inode, struct file *filp)
2025 struct dm_file *priv;
2027 r = nonseekable_open(inode, filp);
2031 priv = filp->private_data = kmalloc(sizeof(struct dm_file), GFP_KERNEL);
2035 priv->global_event_nr = atomic_read(&dm_global_event_nr);
2040 static int dm_release(struct inode *inode, struct file *filp)
2042 kfree(filp->private_data);
2046 static __poll_t dm_poll(struct file *filp, poll_table *wait)
2048 struct dm_file *priv = filp->private_data;
2051 poll_wait(filp, &dm_global_eventq, wait);
2053 if ((int)(atomic_read(&dm_global_event_nr) - priv->global_event_nr) > 0)
2059 static const struct file_operations _ctl_fops = {
2061 .release = dm_release,
2063 .unlocked_ioctl = dm_ctl_ioctl,
2064 .compat_ioctl = dm_compat_ctl_ioctl,
2065 .owner = THIS_MODULE,
2066 .llseek = noop_llseek,
2069 static struct miscdevice _dm_misc = {
2070 .minor = MAPPER_CTRL_MINOR,
2072 .nodename = DM_DIR "/" DM_CONTROL_NODE,
2076 MODULE_ALIAS_MISCDEV(MAPPER_CTRL_MINOR);
2077 MODULE_ALIAS("devname:" DM_DIR "/" DM_CONTROL_NODE);
2080 * Create misc character device and link to DM_DIR/control.
2082 int __init dm_interface_init(void)
2086 r = misc_register(&_dm_misc);
2088 DMERR("misc_register failed for control device");
2092 DMINFO("%d.%d.%d%s initialised: %s", DM_VERSION_MAJOR,
2093 DM_VERSION_MINOR, DM_VERSION_PATCHLEVEL, DM_VERSION_EXTRA,
2098 void dm_interface_exit(void)
2100 misc_deregister(&_dm_misc);
2105 * dm_copy_name_and_uuid - Copy mapped device name & uuid into supplied buffers
2106 * @md: Pointer to mapped_device
2107 * @name: Buffer (size DM_NAME_LEN) for name
2108 * @uuid: Buffer (size DM_UUID_LEN) for uuid or empty string if uuid not defined
2110 int dm_copy_name_and_uuid(struct mapped_device *md, char *name, char *uuid)
2113 struct hash_cell *hc;
2118 mutex_lock(&dm_hash_cells_mutex);
2119 hc = dm_get_mdptr(md);
2120 if (!hc || hc->md != md) {
2126 strcpy(name, hc->name);
2128 strcpy(uuid, hc->uuid ? : "");
2131 mutex_unlock(&dm_hash_cells_mutex);
2135 EXPORT_SYMBOL_GPL(dm_copy_name_and_uuid);
2138 * dm_early_create - create a mapped device in early boot.
2140 * @dmi: Contains main information of the device mapping to be created.
2141 * @spec_array: array of pointers to struct dm_target_spec. Describes the
2142 * mapping table of the device.
2143 * @target_params_array: array of strings with the parameters to a specific
2146 * Instead of having the struct dm_target_spec and the parameters for every
2147 * target embedded at the end of struct dm_ioctl (as performed in a normal
2148 * ioctl), pass them as arguments, so the caller doesn't need to serialize them.
2149 * The size of the spec_array and target_params_array is given by
2150 * @dmi->target_count.
2151 * This function is supposed to be called in early boot, so locking mechanisms
2152 * to protect against concurrent loads are not required.
2154 int __init dm_early_create(struct dm_ioctl *dmi,
2155 struct dm_target_spec **spec_array,
2156 char **target_params_array)
2158 int r, m = DM_ANY_MINOR;
2159 struct dm_table *t, *old_map;
2160 struct mapped_device *md;
2163 if (!dmi->target_count)
2166 r = check_name(dmi->name);
2170 if (dmi->flags & DM_PERSISTENT_DEV_FLAG)
2171 m = MINOR(huge_decode_dev(dmi->dev));
2173 /* alloc dm device */
2174 r = dm_create(m, &md);
2179 r = dm_hash_insert(dmi->name, *dmi->uuid ? dmi->uuid : NULL, md);
2181 goto err_destroy_dm;
2184 r = dm_table_create(&t, get_mode(dmi), dmi->target_count, md);
2186 goto err_hash_remove;
2189 for (i = 0; i < dmi->target_count; i++) {
2190 r = dm_table_add_target(t, spec_array[i]->target_type,
2191 (sector_t) spec_array[i]->sector_start,
2192 (sector_t) spec_array[i]->length,
2193 target_params_array[i]);
2195 DMWARN("error adding target to table");
2196 goto err_destroy_table;
2201 r = dm_table_complete(t);
2203 goto err_destroy_table;
2205 /* setup md->queue to reflect md's type (may block) */
2206 r = dm_setup_md_queue(md, t);
2208 DMWARN("unable to set up device queue for new table.");
2209 goto err_destroy_table;
2214 old_map = dm_swap_table(md, t);
2215 if (IS_ERR(old_map)) {
2216 r = PTR_ERR(old_map);
2217 goto err_destroy_table;
2219 set_disk_ro(dm_disk(md), !!(dmi->flags & DM_READONLY_FLAG));
2224 goto err_destroy_table;
2226 DMINFO("%s (%s) is ready", md->disk->disk_name, dmi->name);
2231 dm_table_destroy(t);
2233 (void) __hash_remove(__get_name_cell(dmi->name));
2234 /* release reference from __get_name_cell */