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/init.h>
14 #include <linux/wait.h>
15 #include <linux/slab.h>
16 #include <linux/dm-ioctl.h>
17 #include <linux/hdreg.h>
19 #include <asm/uaccess.h>
21 #define DM_MSG_PREFIX "ioctl"
22 #define DM_DRIVER_EMAIL "dm-devel@redhat.com"
24 /*-----------------------------------------------------------------
25 * The ioctl interface needs to be able to look up devices by
27 *---------------------------------------------------------------*/
29 struct list_head name_list
;
30 struct list_head uuid_list
;
34 struct mapped_device
*md
;
35 struct dm_table
*new_map
;
40 struct dm_target_versions
*vers
, *old_vers
;
46 #define NUM_BUCKETS 64
47 #define MASK_BUCKETS (NUM_BUCKETS - 1)
48 static struct list_head _name_buckets
[NUM_BUCKETS
];
49 static struct list_head _uuid_buckets
[NUM_BUCKETS
];
51 static void dm_hash_remove_all(int keep_open_devices
);
54 * Guards access to both hash tables.
56 static DECLARE_RWSEM(_hash_lock
);
58 static void init_buckets(struct list_head
*buckets
)
62 for (i
= 0; i
< NUM_BUCKETS
; i
++)
63 INIT_LIST_HEAD(buckets
+ i
);
66 static int dm_hash_init(void)
68 init_buckets(_name_buckets
);
69 init_buckets(_uuid_buckets
);
73 static void dm_hash_exit(void)
75 dm_hash_remove_all(0);
78 /*-----------------------------------------------------------------
80 * We're not really concerned with the str hash function being
81 * fast since it's only used by the ioctl interface.
82 *---------------------------------------------------------------*/
83 static unsigned int hash_str(const char *str
)
85 const unsigned int hash_mult
= 2654435387U;
89 h
= (h
+ (unsigned int) *str
++) * hash_mult
;
91 return h
& MASK_BUCKETS
;
94 /*-----------------------------------------------------------------
95 * Code for looking up a device by name
96 *---------------------------------------------------------------*/
97 static struct hash_cell
*__get_name_cell(const char *str
)
100 unsigned int h
= hash_str(str
);
102 list_for_each_entry (hc
, _name_buckets
+ h
, name_list
)
103 if (!strcmp(hc
->name
, str
)) {
111 static struct hash_cell
*__get_uuid_cell(const char *str
)
113 struct hash_cell
*hc
;
114 unsigned int h
= hash_str(str
);
116 list_for_each_entry (hc
, _uuid_buckets
+ h
, uuid_list
)
117 if (!strcmp(hc
->uuid
, str
)) {
125 /*-----------------------------------------------------------------
126 * Inserting, removing and renaming a device.
127 *---------------------------------------------------------------*/
128 static struct hash_cell
*alloc_cell(const char *name
, const char *uuid
,
129 struct mapped_device
*md
)
131 struct hash_cell
*hc
;
133 hc
= kmalloc(sizeof(*hc
), GFP_KERNEL
);
137 hc
->name
= kstrdup(name
, GFP_KERNEL
);
147 hc
->uuid
= kstrdup(uuid
, GFP_KERNEL
);
155 INIT_LIST_HEAD(&hc
->name_list
);
156 INIT_LIST_HEAD(&hc
->uuid_list
);
162 static void free_cell(struct hash_cell
*hc
)
172 * The kdev_t and uuid of a device can never change once it is
173 * initially inserted.
175 static int dm_hash_insert(const char *name
, const char *uuid
, struct mapped_device
*md
)
177 struct hash_cell
*cell
, *hc
;
180 * Allocate the new cells.
182 cell
= alloc_cell(name
, uuid
, md
);
187 * Insert the cell into both hash tables.
189 down_write(&_hash_lock
);
190 hc
= __get_name_cell(name
);
196 list_add(&cell
->name_list
, _name_buckets
+ hash_str(name
));
199 hc
= __get_uuid_cell(uuid
);
201 list_del(&cell
->name_list
);
205 list_add(&cell
->uuid_list
, _uuid_buckets
+ hash_str(uuid
));
208 dm_set_mdptr(md
, cell
);
209 up_write(&_hash_lock
);
214 up_write(&_hash_lock
);
219 static void __hash_remove(struct hash_cell
*hc
)
221 struct dm_table
*table
;
223 /* remove from the dev hash */
224 list_del(&hc
->uuid_list
);
225 list_del(&hc
->name_list
);
226 dm_set_mdptr(hc
->md
, NULL
);
228 table
= dm_get_table(hc
->md
);
230 dm_table_event(table
);
235 dm_table_put(hc
->new_map
);
240 static void dm_hash_remove_all(int keep_open_devices
)
242 int i
, dev_skipped
, dev_removed
;
243 struct hash_cell
*hc
;
244 struct list_head
*tmp
, *n
;
246 down_write(&_hash_lock
);
249 dev_skipped
= dev_removed
= 0;
250 for (i
= 0; i
< NUM_BUCKETS
; i
++) {
251 list_for_each_safe (tmp
, n
, _name_buckets
+ i
) {
252 hc
= list_entry(tmp
, struct hash_cell
, name_list
);
254 if (keep_open_devices
&&
255 dm_lock_for_deletion(hc
->md
)) {
265 * Some mapped devices may be using other mapped devices, so if any
266 * still exist, repeat until we make no further progress.
272 DMWARN("remove_all left %d open device(s)", dev_skipped
);
275 up_write(&_hash_lock
);
278 static int dm_hash_rename(const char *old
, const char *new)
280 char *new_name
, *old_name
;
281 struct hash_cell
*hc
;
282 struct dm_table
*table
;
287 new_name
= kstrdup(new, GFP_KERNEL
);
291 down_write(&_hash_lock
);
296 hc
= __get_name_cell(new);
298 DMWARN("asked to rename to an already existing name %s -> %s",
301 up_write(&_hash_lock
);
307 * Is there such a device as 'old' ?
309 hc
= __get_name_cell(old
);
311 DMWARN("asked to rename a non existent device %s -> %s",
313 up_write(&_hash_lock
);
319 * rename and move the name cell.
321 list_del(&hc
->name_list
);
324 list_add(&hc
->name_list
, _name_buckets
+ hash_str(new_name
));
327 * Wake up any dm event waiters.
329 table
= dm_get_table(hc
->md
);
331 dm_table_event(table
);
335 dm_kobject_uevent(hc
->md
);
338 up_write(&_hash_lock
);
343 /*-----------------------------------------------------------------
344 * Implementation of the ioctl commands
345 *---------------------------------------------------------------*/
347 * All the ioctl commands get dispatched to functions with this
350 typedef int (*ioctl_fn
)(struct dm_ioctl
*param
, size_t param_size
);
352 static int remove_all(struct dm_ioctl
*param
, size_t param_size
)
354 dm_hash_remove_all(1);
355 param
->data_size
= 0;
360 * Round up the ptr to an 8-byte boundary.
363 static inline void *align_ptr(void *ptr
)
365 return (void *) (((size_t) (ptr
+ ALIGN_MASK
)) & ~ALIGN_MASK
);
369 * Retrieves the data payload buffer from an already allocated
372 static void *get_result_buffer(struct dm_ioctl
*param
, size_t param_size
,
375 param
->data_start
= align_ptr(param
+ 1) - (void *) param
;
377 if (param
->data_start
< param_size
)
378 *len
= param_size
- param
->data_start
;
382 return ((void *) param
) + param
->data_start
;
385 static int list_devices(struct dm_ioctl
*param
, size_t param_size
)
388 struct hash_cell
*hc
;
389 size_t len
, needed
= 0;
390 struct gendisk
*disk
;
391 struct dm_name_list
*nl
, *old_nl
= NULL
;
393 down_write(&_hash_lock
);
396 * Loop through all the devices working out how much
399 for (i
= 0; i
< NUM_BUCKETS
; i
++) {
400 list_for_each_entry (hc
, _name_buckets
+ i
, name_list
) {
401 needed
+= sizeof(struct dm_name_list
);
402 needed
+= strlen(hc
->name
) + 1;
403 needed
+= ALIGN_MASK
;
408 * Grab our output buffer.
410 nl
= get_result_buffer(param
, param_size
, &len
);
412 param
->flags
|= DM_BUFFER_FULL_FLAG
;
415 param
->data_size
= param
->data_start
+ needed
;
417 nl
->dev
= 0; /* Flags no data */
420 * Now loop through filling out the names.
422 for (i
= 0; i
< NUM_BUCKETS
; i
++) {
423 list_for_each_entry (hc
, _name_buckets
+ i
, name_list
) {
425 old_nl
->next
= (uint32_t) ((void *) nl
-
427 disk
= dm_disk(hc
->md
);
428 nl
->dev
= huge_encode_dev(MKDEV(disk
->major
, disk
->first_minor
));
430 strcpy(nl
->name
, hc
->name
);
433 nl
= align_ptr(((void *) ++nl
) + strlen(hc
->name
) + 1);
438 up_write(&_hash_lock
);
442 static void list_version_get_needed(struct target_type
*tt
, void *needed_param
)
444 size_t *needed
= needed_param
;
446 *needed
+= sizeof(struct dm_target_versions
);
447 *needed
+= strlen(tt
->name
);
448 *needed
+= ALIGN_MASK
;
451 static void list_version_get_info(struct target_type
*tt
, void *param
)
453 struct vers_iter
*info
= param
;
455 /* Check space - it might have changed since the first iteration */
456 if ((char *)info
->vers
+ sizeof(tt
->version
) + strlen(tt
->name
) + 1 >
459 info
->flags
= DM_BUFFER_FULL_FLAG
;
464 info
->old_vers
->next
= (uint32_t) ((void *)info
->vers
-
465 (void *)info
->old_vers
);
466 info
->vers
->version
[0] = tt
->version
[0];
467 info
->vers
->version
[1] = tt
->version
[1];
468 info
->vers
->version
[2] = tt
->version
[2];
469 info
->vers
->next
= 0;
470 strcpy(info
->vers
->name
, tt
->name
);
472 info
->old_vers
= info
->vers
;
473 info
->vers
= align_ptr(((void *) ++info
->vers
) + strlen(tt
->name
) + 1);
476 static int list_versions(struct dm_ioctl
*param
, size_t param_size
)
478 size_t len
, needed
= 0;
479 struct dm_target_versions
*vers
;
480 struct vers_iter iter_info
;
483 * Loop through all the devices working out how much
486 dm_target_iterate(list_version_get_needed
, &needed
);
489 * Grab our output buffer.
491 vers
= get_result_buffer(param
, param_size
, &len
);
493 param
->flags
|= DM_BUFFER_FULL_FLAG
;
496 param
->data_size
= param
->data_start
+ needed
;
498 iter_info
.param_size
= param_size
;
499 iter_info
.old_vers
= NULL
;
500 iter_info
.vers
= vers
;
502 iter_info
.end
= (char *)vers
+len
;
505 * Now loop through filling out the names & versions.
507 dm_target_iterate(list_version_get_info
, &iter_info
);
508 param
->flags
|= iter_info
.flags
;
516 static int check_name(const char *name
)
518 if (strchr(name
, '/')) {
519 DMWARN("invalid device name");
527 * Fills in a dm_ioctl structure, ready for sending back to
530 static int __dev_status(struct mapped_device
*md
, struct dm_ioctl
*param
)
532 struct gendisk
*disk
= dm_disk(md
);
533 struct dm_table
*table
;
535 param
->flags
&= ~(DM_SUSPEND_FLAG
| DM_READONLY_FLAG
|
536 DM_ACTIVE_PRESENT_FLAG
);
538 if (dm_suspended(md
))
539 param
->flags
|= DM_SUSPEND_FLAG
;
541 param
->dev
= huge_encode_dev(MKDEV(disk
->major
, disk
->first_minor
));
544 * Yes, this will be out of date by the time it gets back
545 * to userland, but it is still very useful for
548 param
->open_count
= dm_open_count(md
);
551 param
->flags
|= DM_READONLY_FLAG
;
553 param
->event_nr
= dm_get_event_nr(md
);
555 table
= dm_get_table(md
);
557 param
->flags
|= DM_ACTIVE_PRESENT_FLAG
;
558 param
->target_count
= dm_table_get_num_targets(table
);
561 param
->target_count
= 0;
566 static int dev_create(struct dm_ioctl
*param
, size_t param_size
)
568 int r
, m
= DM_ANY_MINOR
;
569 struct mapped_device
*md
;
571 r
= check_name(param
->name
);
575 if (param
->flags
& DM_PERSISTENT_DEV_FLAG
)
576 m
= MINOR(huge_decode_dev(param
->dev
));
578 r
= dm_create(m
, &md
);
582 r
= dm_hash_insert(param
->name
, *param
->uuid
? param
->uuid
: NULL
, md
);
588 param
->flags
&= ~DM_INACTIVE_PRESENT_FLAG
;
590 r
= __dev_status(md
, param
);
597 * Always use UUID for lookups if it's present, otherwise use name or dev.
599 static struct hash_cell
*__find_device_hash_cell(struct dm_ioctl
*param
)
601 struct mapped_device
*md
;
605 return __get_uuid_cell(param
->uuid
);
608 return __get_name_cell(param
->name
);
610 md
= dm_get_md(huge_decode_dev(param
->dev
));
614 mdptr
= dm_get_mdptr(md
);
622 static struct mapped_device
*find_device(struct dm_ioctl
*param
)
624 struct hash_cell
*hc
;
625 struct mapped_device
*md
= NULL
;
627 down_read(&_hash_lock
);
628 hc
= __find_device_hash_cell(param
);
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
));
638 strncpy(param
->uuid
, hc
->uuid
, sizeof(param
->uuid
)-1);
640 param
->uuid
[0] = '\0';
643 param
->flags
|= DM_INACTIVE_PRESENT_FLAG
;
645 param
->flags
&= ~DM_INACTIVE_PRESENT_FLAG
;
647 up_read(&_hash_lock
);
652 static int dev_remove(struct dm_ioctl
*param
, size_t param_size
)
654 struct hash_cell
*hc
;
655 struct mapped_device
*md
;
658 down_write(&_hash_lock
);
659 hc
= __find_device_hash_cell(param
);
662 DMWARN("device doesn't appear to be in the dev hash table.");
663 up_write(&_hash_lock
);
670 * Ensure the device is not open and nothing further can open it.
672 r
= dm_lock_for_deletion(md
);
674 DMWARN("unable to remove open device %s", hc
->name
);
675 up_write(&_hash_lock
);
681 up_write(&_hash_lock
);
683 param
->data_size
= 0;
688 * Check a string doesn't overrun the chunk of
689 * memory we copied from userland.
691 static int invalid_str(char *str
, void *end
)
693 while ((void *) str
< end
)
700 static int dev_rename(struct dm_ioctl
*param
, size_t param_size
)
703 char *new_name
= (char *) param
+ param
->data_start
;
705 if (new_name
< (char *) param
->data
||
706 invalid_str(new_name
, (void *) param
+ param_size
)) {
707 DMWARN("Invalid new logical volume name supplied.");
711 r
= check_name(new_name
);
715 param
->data_size
= 0;
716 return dm_hash_rename(param
->name
, new_name
);
719 static int dev_set_geometry(struct dm_ioctl
*param
, size_t param_size
)
722 struct mapped_device
*md
;
723 struct hd_geometry geometry
;
724 unsigned long indata
[4];
725 char *geostr
= (char *) param
+ param
->data_start
;
727 md
= find_device(param
);
731 if (geostr
< (char *) param
->data
||
732 invalid_str(geostr
, (void *) param
+ param_size
)) {
733 DMWARN("Invalid geometry supplied.");
737 x
= sscanf(geostr
, "%lu %lu %lu %lu", indata
,
738 indata
+ 1, indata
+ 2, indata
+ 3);
741 DMWARN("Unable to interpret geometry settings.");
745 if (indata
[0] > 65535 || indata
[1] > 255 ||
746 indata
[2] > 255 || indata
[3] > ULONG_MAX
) {
747 DMWARN("Geometry exceeds range limits.");
751 geometry
.cylinders
= indata
[0];
752 geometry
.heads
= indata
[1];
753 geometry
.sectors
= indata
[2];
754 geometry
.start
= indata
[3];
756 r
= dm_set_geometry(md
, &geometry
);
758 r
= __dev_status(md
, param
);
760 param
->data_size
= 0;
767 static int do_suspend(struct dm_ioctl
*param
)
770 unsigned suspend_flags
= DM_SUSPEND_LOCKFS_FLAG
;
771 struct mapped_device
*md
;
773 md
= find_device(param
);
777 if (param
->flags
& DM_SKIP_LOCKFS_FLAG
)
778 suspend_flags
&= ~DM_SUSPEND_LOCKFS_FLAG
;
779 if (param
->flags
& DM_NOFLUSH_FLAG
)
780 suspend_flags
|= DM_SUSPEND_NOFLUSH_FLAG
;
782 if (!dm_suspended(md
))
783 r
= dm_suspend(md
, suspend_flags
);
786 r
= __dev_status(md
, param
);
792 static int do_resume(struct dm_ioctl
*param
)
795 unsigned suspend_flags
= DM_SUSPEND_LOCKFS_FLAG
;
796 struct hash_cell
*hc
;
797 struct mapped_device
*md
;
798 struct dm_table
*new_map
;
800 down_write(&_hash_lock
);
802 hc
= __find_device_hash_cell(param
);
804 DMWARN("device doesn't appear to be in the dev hash table.");
805 up_write(&_hash_lock
);
811 new_map
= hc
->new_map
;
813 param
->flags
&= ~DM_INACTIVE_PRESENT_FLAG
;
815 up_write(&_hash_lock
);
817 /* Do we need to load a new map ? */
819 /* Suspend if it isn't already suspended */
820 if (param
->flags
& DM_SKIP_LOCKFS_FLAG
)
821 suspend_flags
&= ~DM_SUSPEND_LOCKFS_FLAG
;
822 if (param
->flags
& DM_NOFLUSH_FLAG
)
823 suspend_flags
|= DM_SUSPEND_NOFLUSH_FLAG
;
824 if (!dm_suspended(md
))
825 dm_suspend(md
, suspend_flags
);
827 r
= dm_swap_table(md
, new_map
);
830 dm_table_put(new_map
);
834 if (dm_table_get_mode(new_map
) & FMODE_WRITE
)
835 set_disk_ro(dm_disk(md
), 0);
837 set_disk_ro(dm_disk(md
), 1);
839 dm_table_put(new_map
);
842 if (dm_suspended(md
))
846 r
= __dev_status(md
, param
);
853 * Set or unset the suspension state of a device.
854 * If the device already is in the requested state we just return its status.
856 static int dev_suspend(struct dm_ioctl
*param
, size_t param_size
)
858 if (param
->flags
& DM_SUSPEND_FLAG
)
859 return do_suspend(param
);
861 return do_resume(param
);
865 * Copies device info back to user space, used by
866 * the create and info ioctls.
868 static int dev_status(struct dm_ioctl
*param
, size_t param_size
)
871 struct mapped_device
*md
;
873 md
= find_device(param
);
877 r
= __dev_status(md
, param
);
883 * Build up the status struct for each target
885 static void retrieve_status(struct dm_table
*table
,
886 struct dm_ioctl
*param
, size_t param_size
)
888 unsigned int i
, num_targets
;
889 struct dm_target_spec
*spec
;
890 char *outbuf
, *outptr
;
892 size_t remaining
, len
, used
= 0;
894 outptr
= outbuf
= get_result_buffer(param
, param_size
, &len
);
896 if (param
->flags
& DM_STATUS_TABLE_FLAG
)
897 type
= STATUSTYPE_TABLE
;
899 type
= STATUSTYPE_INFO
;
901 /* Get all the target info */
902 num_targets
= dm_table_get_num_targets(table
);
903 for (i
= 0; i
< num_targets
; i
++) {
904 struct dm_target
*ti
= dm_table_get_target(table
, i
);
906 remaining
= len
- (outptr
- outbuf
);
907 if (remaining
<= sizeof(struct dm_target_spec
)) {
908 param
->flags
|= DM_BUFFER_FULL_FLAG
;
912 spec
= (struct dm_target_spec
*) outptr
;
915 spec
->sector_start
= ti
->begin
;
916 spec
->length
= ti
->len
;
917 strncpy(spec
->target_type
, ti
->type
->name
,
918 sizeof(spec
->target_type
));
920 outptr
+= sizeof(struct dm_target_spec
);
921 remaining
= len
- (outptr
- outbuf
);
922 if (remaining
<= 0) {
923 param
->flags
|= DM_BUFFER_FULL_FLAG
;
927 /* Get the status/table string from the target driver */
928 if (ti
->type
->status
) {
929 if (ti
->type
->status(ti
, type
, outptr
, remaining
)) {
930 param
->flags
|= DM_BUFFER_FULL_FLAG
;
936 outptr
+= strlen(outptr
) + 1;
937 used
= param
->data_start
+ (outptr
- outbuf
);
939 outptr
= align_ptr(outptr
);
940 spec
->next
= outptr
- outbuf
;
944 param
->data_size
= used
;
946 param
->target_count
= num_targets
;
950 * Wait for a device to report an event
952 static int dev_wait(struct dm_ioctl
*param
, size_t param_size
)
955 struct mapped_device
*md
;
956 struct dm_table
*table
;
958 md
= find_device(param
);
963 * Wait for a notification event
965 if (dm_wait_event(md
, param
->event_nr
)) {
971 * The userland program is going to want to know what
972 * changed to trigger the event, so we may as well tell
973 * him and save an ioctl.
975 r
= __dev_status(md
, param
);
979 table
= dm_get_table(md
);
981 retrieve_status(table
, param
, param_size
);
990 static inline int get_mode(struct dm_ioctl
*param
)
992 int mode
= FMODE_READ
| FMODE_WRITE
;
994 if (param
->flags
& DM_READONLY_FLAG
)
1000 static int next_target(struct dm_target_spec
*last
, uint32_t next
, void *end
,
1001 struct dm_target_spec
**spec
, char **target_params
)
1003 *spec
= (struct dm_target_spec
*) ((unsigned char *) last
+ next
);
1004 *target_params
= (char *) (*spec
+ 1);
1006 if (*spec
< (last
+ 1))
1009 return invalid_str(*target_params
, end
);
1012 static int populate_table(struct dm_table
*table
,
1013 struct dm_ioctl
*param
, size_t param_size
)
1017 struct dm_target_spec
*spec
= (struct dm_target_spec
*) param
;
1018 uint32_t next
= param
->data_start
;
1019 void *end
= (void *) param
+ param_size
;
1020 char *target_params
;
1022 if (!param
->target_count
) {
1023 DMWARN("populate_table: no targets specified");
1027 for (i
= 0; i
< param
->target_count
; i
++) {
1029 r
= next_target(spec
, next
, end
, &spec
, &target_params
);
1031 DMWARN("unable to find target");
1035 r
= dm_table_add_target(table
, spec
->target_type
,
1036 (sector_t
) spec
->sector_start
,
1037 (sector_t
) spec
->length
,
1040 DMWARN("error adding target to table");
1047 return dm_table_complete(table
);
1050 static int table_load(struct dm_ioctl
*param
, size_t param_size
)
1053 struct hash_cell
*hc
;
1055 struct mapped_device
*md
;
1057 md
= find_device(param
);
1061 r
= dm_table_create(&t
, get_mode(param
), param
->target_count
, md
);
1065 r
= populate_table(t
, param
, param_size
);
1071 down_write(&_hash_lock
);
1072 hc
= dm_get_mdptr(md
);
1073 if (!hc
|| hc
->md
!= md
) {
1074 DMWARN("device has been removed from the dev hash table.");
1076 up_write(&_hash_lock
);
1082 dm_table_put(hc
->new_map
);
1084 up_write(&_hash_lock
);
1086 param
->flags
|= DM_INACTIVE_PRESENT_FLAG
;
1087 r
= __dev_status(md
, param
);
1095 static int table_clear(struct dm_ioctl
*param
, size_t param_size
)
1098 struct hash_cell
*hc
;
1099 struct mapped_device
*md
;
1101 down_write(&_hash_lock
);
1103 hc
= __find_device_hash_cell(param
);
1105 DMWARN("device doesn't appear to be in the dev hash table.");
1106 up_write(&_hash_lock
);
1111 dm_table_put(hc
->new_map
);
1115 param
->flags
&= ~DM_INACTIVE_PRESENT_FLAG
;
1117 r
= __dev_status(hc
->md
, param
);
1119 up_write(&_hash_lock
);
1125 * Retrieves a list of devices used by a particular dm device.
1127 static void retrieve_deps(struct dm_table
*table
,
1128 struct dm_ioctl
*param
, size_t param_size
)
1130 unsigned int count
= 0;
1131 struct list_head
*tmp
;
1134 struct dm_target_deps
*deps
;
1136 deps
= get_result_buffer(param
, param_size
, &len
);
1139 * Count the devices.
1141 list_for_each (tmp
, dm_table_get_devices(table
))
1145 * Check we have enough space.
1147 needed
= sizeof(*deps
) + (sizeof(*deps
->dev
) * count
);
1149 param
->flags
|= DM_BUFFER_FULL_FLAG
;
1154 * Fill in the devices.
1156 deps
->count
= count
;
1158 list_for_each_entry (dd
, dm_table_get_devices(table
), list
)
1159 deps
->dev
[count
++] = huge_encode_dev(dd
->bdev
->bd_dev
);
1161 param
->data_size
= param
->data_start
+ needed
;
1164 static int table_deps(struct dm_ioctl
*param
, size_t param_size
)
1167 struct mapped_device
*md
;
1168 struct dm_table
*table
;
1170 md
= find_device(param
);
1174 r
= __dev_status(md
, param
);
1178 table
= dm_get_table(md
);
1180 retrieve_deps(table
, param
, param_size
);
1181 dm_table_put(table
);
1190 * Return the status of a device as a text string for each
1193 static int table_status(struct dm_ioctl
*param
, size_t param_size
)
1196 struct mapped_device
*md
;
1197 struct dm_table
*table
;
1199 md
= find_device(param
);
1203 r
= __dev_status(md
, param
);
1207 table
= dm_get_table(md
);
1209 retrieve_status(table
, param
, param_size
);
1210 dm_table_put(table
);
1219 * Pass a message to the target that's at the supplied device offset.
1221 static int target_message(struct dm_ioctl
*param
, size_t param_size
)
1225 struct mapped_device
*md
;
1226 struct dm_table
*table
;
1227 struct dm_target
*ti
;
1228 struct dm_target_msg
*tmsg
= (void *) param
+ param
->data_start
;
1230 md
= find_device(param
);
1234 r
= __dev_status(md
, param
);
1238 if (tmsg
< (struct dm_target_msg
*) param
->data
||
1239 invalid_str(tmsg
->message
, (void *) param
+ param_size
)) {
1240 DMWARN("Invalid target message parameters.");
1245 r
= dm_split_args(&argc
, &argv
, tmsg
->message
);
1247 DMWARN("Failed to split target message parameters");
1251 table
= dm_get_table(md
);
1255 ti
= dm_table_find_target(table
, tmsg
->sector
);
1256 if (!dm_target_is_valid(ti
)) {
1257 DMWARN("Target message sector outside device.");
1259 } else if (ti
->type
->message
)
1260 r
= ti
->type
->message(ti
, argc
, argv
);
1262 DMWARN("Target type does not support messages");
1266 dm_table_put(table
);
1270 param
->data_size
= 0;
1275 /*-----------------------------------------------------------------
1276 * Implementation of open/close/ioctl on the special char
1278 *---------------------------------------------------------------*/
1279 static ioctl_fn
lookup_ioctl(unsigned int cmd
)
1285 {DM_VERSION_CMD
, NULL
}, /* version is dealt with elsewhere */
1286 {DM_REMOVE_ALL_CMD
, remove_all
},
1287 {DM_LIST_DEVICES_CMD
, list_devices
},
1289 {DM_DEV_CREATE_CMD
, dev_create
},
1290 {DM_DEV_REMOVE_CMD
, dev_remove
},
1291 {DM_DEV_RENAME_CMD
, dev_rename
},
1292 {DM_DEV_SUSPEND_CMD
, dev_suspend
},
1293 {DM_DEV_STATUS_CMD
, dev_status
},
1294 {DM_DEV_WAIT_CMD
, dev_wait
},
1296 {DM_TABLE_LOAD_CMD
, table_load
},
1297 {DM_TABLE_CLEAR_CMD
, table_clear
},
1298 {DM_TABLE_DEPS_CMD
, table_deps
},
1299 {DM_TABLE_STATUS_CMD
, table_status
},
1301 {DM_LIST_VERSIONS_CMD
, list_versions
},
1303 {DM_TARGET_MSG_CMD
, target_message
},
1304 {DM_DEV_SET_GEOMETRY_CMD
, dev_set_geometry
}
1307 return (cmd
>= ARRAY_SIZE(_ioctls
)) ? NULL
: _ioctls
[cmd
].fn
;
1311 * As well as checking the version compatibility this always
1312 * copies the kernel interface version out.
1314 static int check_version(unsigned int cmd
, struct dm_ioctl __user
*user
)
1316 uint32_t version
[3];
1319 if (copy_from_user(version
, user
->version
, sizeof(version
)))
1322 if ((DM_VERSION_MAJOR
!= version
[0]) ||
1323 (DM_VERSION_MINOR
< version
[1])) {
1324 DMWARN("ioctl interface mismatch: "
1325 "kernel(%u.%u.%u), user(%u.%u.%u), cmd(%d)",
1326 DM_VERSION_MAJOR
, DM_VERSION_MINOR
,
1327 DM_VERSION_PATCHLEVEL
,
1328 version
[0], version
[1], version
[2], cmd
);
1333 * Fill in the kernel version.
1335 version
[0] = DM_VERSION_MAJOR
;
1336 version
[1] = DM_VERSION_MINOR
;
1337 version
[2] = DM_VERSION_PATCHLEVEL
;
1338 if (copy_to_user(user
->version
, version
, sizeof(version
)))
1344 static void free_params(struct dm_ioctl
*param
)
1349 static int copy_params(struct dm_ioctl __user
*user
, struct dm_ioctl
**param
)
1351 struct dm_ioctl tmp
, *dmi
;
1353 if (copy_from_user(&tmp
, user
, sizeof(tmp
)))
1356 if (tmp
.data_size
< sizeof(tmp
))
1359 dmi
= vmalloc(tmp
.data_size
);
1363 if (copy_from_user(dmi
, user
, tmp
.data_size
)) {
1372 static int validate_params(uint cmd
, struct dm_ioctl
*param
)
1374 /* Always clear this flag */
1375 param
->flags
&= ~DM_BUFFER_FULL_FLAG
;
1377 /* Ignores parameters */
1378 if (cmd
== DM_REMOVE_ALL_CMD
||
1379 cmd
== DM_LIST_DEVICES_CMD
||
1380 cmd
== DM_LIST_VERSIONS_CMD
)
1383 if ((cmd
== DM_DEV_CREATE_CMD
)) {
1384 if (!*param
->name
) {
1385 DMWARN("name not supplied when creating device");
1388 } else if ((*param
->uuid
&& *param
->name
)) {
1389 DMWARN("only supply one of name or uuid, cmd(%u)", cmd
);
1393 /* Ensure strings are terminated */
1394 param
->name
[DM_NAME_LEN
- 1] = '\0';
1395 param
->uuid
[DM_UUID_LEN
- 1] = '\0';
1400 static int ctl_ioctl(struct inode
*inode
, struct file
*file
,
1401 uint command
, ulong u
)
1405 struct dm_ioctl
*param
;
1406 struct dm_ioctl __user
*user
= (struct dm_ioctl __user
*) u
;
1410 /* only root can play with this */
1411 if (!capable(CAP_SYS_ADMIN
))
1414 if (_IOC_TYPE(command
) != DM_IOCTL
)
1417 cmd
= _IOC_NR(command
);
1420 * Check the interface version passed in. This also
1421 * writes out the kernel's interface version.
1423 r
= check_version(cmd
, user
);
1428 * Nothing more to do for the version command.
1430 if (cmd
== DM_VERSION_CMD
)
1433 fn
= lookup_ioctl(cmd
);
1435 DMWARN("dm_ctl_ioctl: unknown command 0x%x", command
);
1440 * Trying to avoid low memory issues when a device is
1443 current
->flags
|= PF_MEMALLOC
;
1446 * Copy the parameters into kernel space.
1448 r
= copy_params(user
, ¶m
);
1450 current
->flags
&= ~PF_MEMALLOC
;
1455 r
= validate_params(cmd
, param
);
1459 param_size
= param
->data_size
;
1460 param
->data_size
= sizeof(*param
);
1461 r
= fn(param
, param_size
);
1464 * Copy the results back to userland.
1466 if (!r
&& copy_to_user(user
, param
, param
->data_size
))
1474 static const struct file_operations _ctl_fops
= {
1476 .owner
= THIS_MODULE
,
1479 static struct miscdevice _dm_misc
= {
1480 .minor
= MISC_DYNAMIC_MINOR
,
1486 * Create misc character device and link to DM_DIR/control.
1488 int __init
dm_interface_init(void)
1496 r
= misc_register(&_dm_misc
);
1498 DMERR("misc_register failed for control device");
1503 DMINFO("%d.%d.%d%s initialised: %s", DM_VERSION_MAJOR
,
1504 DM_VERSION_MINOR
, DM_VERSION_PATCHLEVEL
, DM_VERSION_EXTRA
,
1509 void dm_interface_exit(void)
1511 if (misc_deregister(&_dm_misc
) < 0)
1512 DMERR("misc_deregister failed for control device");
1518 * dm_copy_name_and_uuid - Copy mapped device name & uuid into supplied buffers
1519 * @md: Pointer to mapped_device
1520 * @name: Buffer (size DM_NAME_LEN) for name
1521 * @uuid: Buffer (size DM_UUID_LEN) for uuid or empty string if uuid not defined
1523 int dm_copy_name_and_uuid(struct mapped_device
*md
, char *name
, char *uuid
)
1526 struct hash_cell
*hc
;
1532 down_read(&_hash_lock
);
1533 hc
= dm_get_mdptr(md
);
1534 if (!hc
|| hc
->md
!= md
) {
1539 strcpy(name
, hc
->name
);
1540 strcpy(uuid
, hc
->uuid
? : "");
1543 up_read(&_hash_lock
);