]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - drivers/md/dm-ioctl.c
Merge branch 'work.mount' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs
[mirror_ubuntu-artful-kernel.git] / drivers / md / dm-ioctl.c
CommitLineData
1da177e4
LT
1/*
2 * Copyright (C) 2001, 2002 Sistina Software (UK) Limited.
2b06cfff 3 * Copyright (C) 2004 - 2006 Red Hat, Inc. All rights reserved.
1da177e4
LT
4 *
5 * This file is released under the GPL.
6 */
7
4cc96131 8#include "dm-core.h"
1da177e4
LT
9
10#include <linux/module.h>
11#include <linux/vmalloc.h>
12#include <linux/miscdevice.h>
5b3cc15a 13#include <linux/sched/mm.h>
1da177e4
LT
14#include <linux/init.h>
15#include <linux/wait.h>
16#include <linux/slab.h>
1da177e4 17#include <linux/dm-ioctl.h>
3ac51e74 18#include <linux/hdreg.h>
76c072b4 19#include <linux/compat.h>
1da177e4 20
7c0f6ba6 21#include <linux/uaccess.h>
1da177e4 22
72d94861 23#define DM_MSG_PREFIX "ioctl"
1da177e4
LT
24#define DM_DRIVER_EMAIL "dm-devel@redhat.com"
25
93e6442c
MP
26struct dm_file {
27 /*
28 * poll will wait until the global event number is greater than
29 * this value.
30 */
fc1841e1 31 volatile unsigned global_event_nr;
93e6442c
MP
32};
33
1da177e4
LT
34/*-----------------------------------------------------------------
35 * The ioctl interface needs to be able to look up devices by
36 * name or uuid.
37 *---------------------------------------------------------------*/
38struct hash_cell {
39 struct list_head name_list;
40 struct list_head uuid_list;
41
42 char *name;
43 char *uuid;
44 struct mapped_device *md;
45 struct dm_table *new_map;
46};
47
48struct vers_iter {
49 size_t param_size;
50 struct dm_target_versions *vers, *old_vers;
51 char *end;
52 uint32_t flags;
53};
54
55
56#define NUM_BUCKETS 64
57#define MASK_BUCKETS (NUM_BUCKETS - 1)
58static struct list_head _name_buckets[NUM_BUCKETS];
59static struct list_head _uuid_buckets[NUM_BUCKETS];
60
2c140a24 61static void dm_hash_remove_all(bool keep_open_devices, bool mark_deferred, bool only_deferred);
1da177e4
LT
62
63/*
64 * Guards access to both hash tables.
65 */
66static DECLARE_RWSEM(_hash_lock);
67
6076905b
MP
68/*
69 * Protects use of mdptr to obtain hash cell name and uuid from mapped device.
70 */
71static DEFINE_MUTEX(dm_hash_cells_mutex);
72
1da177e4
LT
73static void init_buckets(struct list_head *buckets)
74{
75 unsigned int i;
76
77 for (i = 0; i < NUM_BUCKETS; i++)
78 INIT_LIST_HEAD(buckets + i);
79}
80
81static int dm_hash_init(void)
82{
83 init_buckets(_name_buckets);
84 init_buckets(_uuid_buckets);
1da177e4
LT
85 return 0;
86}
87
88static void dm_hash_exit(void)
89{
2c140a24 90 dm_hash_remove_all(false, false, false);
1da177e4
LT
91}
92
93/*-----------------------------------------------------------------
94 * Hash function:
95 * We're not really concerned with the str hash function being
96 * fast since it's only used by the ioctl interface.
97 *---------------------------------------------------------------*/
98static unsigned int hash_str(const char *str)
99{
100 const unsigned int hash_mult = 2654435387U;
101 unsigned int h = 0;
102
103 while (*str)
104 h = (h + (unsigned int) *str++) * hash_mult;
105
106 return h & MASK_BUCKETS;
107}
108
109/*-----------------------------------------------------------------
110 * Code for looking up a device by name
111 *---------------------------------------------------------------*/
112static struct hash_cell *__get_name_cell(const char *str)
113{
114 struct hash_cell *hc;
115 unsigned int h = hash_str(str);
116
117 list_for_each_entry (hc, _name_buckets + h, name_list)
7ec75f25
JM
118 if (!strcmp(hc->name, str)) {
119 dm_get(hc->md);
1da177e4 120 return hc;
7ec75f25 121 }
1da177e4
LT
122
123 return NULL;
124}
125
126static struct hash_cell *__get_uuid_cell(const char *str)
127{
128 struct hash_cell *hc;
129 unsigned int h = hash_str(str);
130
131 list_for_each_entry (hc, _uuid_buckets + h, uuid_list)
7ec75f25
JM
132 if (!strcmp(hc->uuid, str)) {
133 dm_get(hc->md);
1da177e4 134 return hc;
7ec75f25 135 }
1da177e4
LT
136
137 return NULL;
138}
139
ba2e19b0
MP
140static struct hash_cell *__get_dev_cell(uint64_t dev)
141{
142 struct mapped_device *md;
143 struct hash_cell *hc;
144
145 md = dm_get_md(huge_decode_dev(dev));
146 if (!md)
147 return NULL;
148
149 hc = dm_get_mdptr(md);
150 if (!hc) {
151 dm_put(md);
152 return NULL;
153 }
154
155 return hc;
156}
157
1da177e4
LT
158/*-----------------------------------------------------------------
159 * Inserting, removing and renaming a device.
160 *---------------------------------------------------------------*/
1da177e4
LT
161static struct hash_cell *alloc_cell(const char *name, const char *uuid,
162 struct mapped_device *md)
163{
164 struct hash_cell *hc;
165
166 hc = kmalloc(sizeof(*hc), GFP_KERNEL);
167 if (!hc)
168 return NULL;
169
543537bd 170 hc->name = kstrdup(name, GFP_KERNEL);
1da177e4
LT
171 if (!hc->name) {
172 kfree(hc);
173 return NULL;
174 }
175
176 if (!uuid)
177 hc->uuid = NULL;
178
179 else {
543537bd 180 hc->uuid = kstrdup(uuid, GFP_KERNEL);
1da177e4
LT
181 if (!hc->uuid) {
182 kfree(hc->name);
183 kfree(hc);
184 return NULL;
185 }
186 }
187
188 INIT_LIST_HEAD(&hc->name_list);
189 INIT_LIST_HEAD(&hc->uuid_list);
190 hc->md = md;
191 hc->new_map = NULL;
192 return hc;
193}
194
195static void free_cell(struct hash_cell *hc)
196{
197 if (hc) {
198 kfree(hc->name);
199 kfree(hc->uuid);
200 kfree(hc);
201 }
202}
203
1da177e4
LT
204/*
205 * The kdev_t and uuid of a device can never change once it is
206 * initially inserted.
207 */
208static int dm_hash_insert(const char *name, const char *uuid, struct mapped_device *md)
209{
7ec75f25 210 struct hash_cell *cell, *hc;
1da177e4
LT
211
212 /*
213 * Allocate the new cells.
214 */
215 cell = alloc_cell(name, uuid, md);
216 if (!cell)
217 return -ENOMEM;
218
219 /*
220 * Insert the cell into both hash tables.
221 */
222 down_write(&_hash_lock);
7ec75f25
JM
223 hc = __get_name_cell(name);
224 if (hc) {
225 dm_put(hc->md);
1da177e4 226 goto bad;
7ec75f25 227 }
1da177e4
LT
228
229 list_add(&cell->name_list, _name_buckets + hash_str(name));
230
231 if (uuid) {
7ec75f25
JM
232 hc = __get_uuid_cell(uuid);
233 if (hc) {
1da177e4 234 list_del(&cell->name_list);
7ec75f25 235 dm_put(hc->md);
1da177e4
LT
236 goto bad;
237 }
238 list_add(&cell->uuid_list, _uuid_buckets + hash_str(uuid));
239 }
1da177e4 240 dm_get(md);
6076905b 241 mutex_lock(&dm_hash_cells_mutex);
1da177e4 242 dm_set_mdptr(md, cell);
6076905b 243 mutex_unlock(&dm_hash_cells_mutex);
1da177e4
LT
244 up_write(&_hash_lock);
245
246 return 0;
247
248 bad:
249 up_write(&_hash_lock);
250 free_cell(cell);
251 return -EBUSY;
252}
253
83d5e5b0 254static struct dm_table *__hash_remove(struct hash_cell *hc)
1da177e4 255{
269fd2a6 256 struct dm_table *table;
83d5e5b0 257 int srcu_idx;
269fd2a6 258
1da177e4
LT
259 /* remove from the dev hash */
260 list_del(&hc->uuid_list);
261 list_del(&hc->name_list);
6076905b 262 mutex_lock(&dm_hash_cells_mutex);
1da177e4 263 dm_set_mdptr(hc->md, NULL);
6076905b 264 mutex_unlock(&dm_hash_cells_mutex);
269fd2a6 265
83d5e5b0
MP
266 table = dm_get_live_table(hc->md, &srcu_idx);
267 if (table)
269fd2a6 268 dm_table_event(table);
83d5e5b0 269 dm_put_live_table(hc->md, srcu_idx);
269fd2a6 270
83d5e5b0 271 table = NULL;
1da177e4 272 if (hc->new_map)
83d5e5b0 273 table = hc->new_map;
1134e5ae 274 dm_put(hc->md);
1da177e4 275 free_cell(hc);
83d5e5b0
MP
276
277 return table;
1da177e4
LT
278}
279
2c140a24 280static void dm_hash_remove_all(bool keep_open_devices, bool mark_deferred, bool only_deferred)
1da177e4 281{
98f33285 282 int i, dev_skipped;
1da177e4 283 struct hash_cell *hc;
98f33285 284 struct mapped_device *md;
83d5e5b0 285 struct dm_table *t;
98f33285
KU
286
287retry:
288 dev_skipped = 0;
1da177e4
LT
289
290 down_write(&_hash_lock);
5c6bd75d 291
1da177e4 292 for (i = 0; i < NUM_BUCKETS; i++) {
98f33285
KU
293 list_for_each_entry(hc, _name_buckets + i, name_list) {
294 md = hc->md;
295 dm_get(md);
5c6bd75d 296
2c140a24
MP
297 if (keep_open_devices &&
298 dm_lock_for_deletion(md, mark_deferred, only_deferred)) {
98f33285 299 dm_put(md);
5c6bd75d
AK
300 dev_skipped++;
301 continue;
302 }
98f33285 303
83d5e5b0 304 t = __hash_remove(hc);
5c6bd75d 305
98f33285 306 up_write(&_hash_lock);
5c6bd75d 307
83d5e5b0
MP
308 if (t) {
309 dm_sync_table(md);
310 dm_table_destroy(t);
311 }
98f33285 312 dm_put(md);
3f77316d
KU
313 if (likely(keep_open_devices))
314 dm_destroy(md);
315 else
316 dm_destroy_immediate(md);
98f33285
KU
317
318 /*
319 * Some mapped devices may be using other mapped
320 * devices, so repeat until we make no further
321 * progress. If a new mapped device is created
322 * here it will also get removed.
323 */
324 goto retry;
325 }
5c6bd75d
AK
326 }
327
1da177e4 328 up_write(&_hash_lock);
98f33285
KU
329
330 if (dev_skipped)
331 DMWARN("remove_all left %d open device(s)", dev_skipped);
1da177e4
LT
332}
333
84c89557
PJ
334/*
335 * Set the uuid of a hash_cell that isn't already set.
336 */
337static void __set_cell_uuid(struct hash_cell *hc, char *new_uuid)
338{
339 mutex_lock(&dm_hash_cells_mutex);
340 hc->uuid = new_uuid;
341 mutex_unlock(&dm_hash_cells_mutex);
342
343 list_add(&hc->uuid_list, _uuid_buckets + hash_str(new_uuid));
344}
345
346/*
347 * Changes the name of a hash_cell and returns the old name for
348 * the caller to free.
349 */
350static char *__change_cell_name(struct hash_cell *hc, char *new_name)
351{
352 char *old_name;
353
354 /*
355 * Rename and move the name cell.
356 */
357 list_del(&hc->name_list);
358 old_name = hc->name;
359
360 mutex_lock(&dm_hash_cells_mutex);
361 hc->name = new_name;
362 mutex_unlock(&dm_hash_cells_mutex);
363
364 list_add(&hc->name_list, _name_buckets + hash_str(new_name));
365
366 return old_name;
367}
368
856a6f1d
PR
369static struct mapped_device *dm_hash_rename(struct dm_ioctl *param,
370 const char *new)
1da177e4 371{
84c89557 372 char *new_data, *old_name = NULL;
1da177e4 373 struct hash_cell *hc;
81f1777a 374 struct dm_table *table;
856a6f1d 375 struct mapped_device *md;
84c89557 376 unsigned change_uuid = (param->flags & DM_UUID_FLAG) ? 1 : 0;
83d5e5b0 377 int srcu_idx;
1da177e4
LT
378
379 /*
380 * duplicate new.
381 */
84c89557
PJ
382 new_data = kstrdup(new, GFP_KERNEL);
383 if (!new_data)
856a6f1d 384 return ERR_PTR(-ENOMEM);
1da177e4
LT
385
386 down_write(&_hash_lock);
387
388 /*
389 * Is new free ?
390 */
84c89557
PJ
391 if (change_uuid)
392 hc = __get_uuid_cell(new);
393 else
394 hc = __get_name_cell(new);
395
1da177e4 396 if (hc) {
84c89557
PJ
397 DMWARN("Unable to change %s on mapped device %s to one that "
398 "already exists: %s",
399 change_uuid ? "uuid" : "name",
856a6f1d 400 param->name, new);
7ec75f25 401 dm_put(hc->md);
1da177e4 402 up_write(&_hash_lock);
84c89557 403 kfree(new_data);
856a6f1d 404 return ERR_PTR(-EBUSY);
1da177e4
LT
405 }
406
407 /*
408 * Is there such a device as 'old' ?
409 */
856a6f1d 410 hc = __get_name_cell(param->name);
1da177e4 411 if (!hc) {
84c89557
PJ
412 DMWARN("Unable to rename non-existent device, %s to %s%s",
413 param->name, change_uuid ? "uuid " : "", new);
1da177e4 414 up_write(&_hash_lock);
84c89557 415 kfree(new_data);
856a6f1d 416 return ERR_PTR(-ENXIO);
1da177e4
LT
417 }
418
419 /*
84c89557 420 * Does this device already have a uuid?
1da177e4 421 */
84c89557
PJ
422 if (change_uuid && hc->uuid) {
423 DMWARN("Unable to change uuid of mapped device %s to %s "
424 "because uuid is already set to %s",
425 param->name, new, hc->uuid);
426 dm_put(hc->md);
427 up_write(&_hash_lock);
428 kfree(new_data);
429 return ERR_PTR(-EINVAL);
430 }
431
432 if (change_uuid)
433 __set_cell_uuid(hc, new_data);
434 else
435 old_name = __change_cell_name(hc, new_data);
1da177e4 436
81f1777a 437 /*
438 * Wake up any dm event waiters.
439 */
83d5e5b0
MP
440 table = dm_get_live_table(hc->md, &srcu_idx);
441 if (table)
81f1777a 442 dm_table_event(table);
83d5e5b0 443 dm_put_live_table(hc->md, srcu_idx);
81f1777a 444
856a6f1d
PR
445 if (!dm_kobject_uevent(hc->md, KOBJ_CHANGE, param->event_nr))
446 param->flags |= DM_UEVENT_GENERATED_FLAG;
69267a30 447
856a6f1d 448 md = hc->md;
1da177e4
LT
449 up_write(&_hash_lock);
450 kfree(old_name);
856a6f1d
PR
451
452 return md;
1da177e4
LT
453}
454
2c140a24
MP
455void dm_deferred_remove(void)
456{
457 dm_hash_remove_all(true, false, true);
458}
459
1da177e4
LT
460/*-----------------------------------------------------------------
461 * Implementation of the ioctl commands
462 *---------------------------------------------------------------*/
463/*
464 * All the ioctl commands get dispatched to functions with this
465 * prototype.
466 */
fc1841e1 467typedef int (*ioctl_fn)(struct file *filp, struct dm_ioctl *param, size_t param_size);
1da177e4 468
fc1841e1 469static int remove_all(struct file *filp, struct dm_ioctl *param, size_t param_size)
1da177e4 470{
2c140a24 471 dm_hash_remove_all(true, !!(param->flags & DM_DEFERRED_REMOVE), false);
1da177e4
LT
472 param->data_size = 0;
473 return 0;
474}
475
476/*
477 * Round up the ptr to an 8-byte boundary.
478 */
479#define ALIGN_MASK 7
480static inline void *align_ptr(void *ptr)
481{
482 return (void *) (((size_t) (ptr + ALIGN_MASK)) & ~ALIGN_MASK);
483}
484
485/*
486 * Retrieves the data payload buffer from an already allocated
487 * struct dm_ioctl.
488 */
489static void *get_result_buffer(struct dm_ioctl *param, size_t param_size,
490 size_t *len)
491{
492 param->data_start = align_ptr(param + 1) - (void *) param;
493
494 if (param->data_start < param_size)
495 *len = param_size - param->data_start;
496 else
497 *len = 0;
498
499 return ((void *) param) + param->data_start;
500}
501
fc1841e1 502static int list_devices(struct file *filp, struct dm_ioctl *param, size_t param_size)
1da177e4
LT
503{
504 unsigned int i;
505 struct hash_cell *hc;
506 size_t len, needed = 0;
507 struct gendisk *disk;
508 struct dm_name_list *nl, *old_nl = NULL;
23d70c5e 509 uint32_t *event_nr;
1da177e4
LT
510
511 down_write(&_hash_lock);
512
513 /*
514 * Loop through all the devices working out how much
515 * space we need.
516 */
517 for (i = 0; i < NUM_BUCKETS; i++) {
518 list_for_each_entry (hc, _name_buckets + i, name_list) {
519 needed += sizeof(struct dm_name_list);
520 needed += strlen(hc->name) + 1;
521 needed += ALIGN_MASK;
23d70c5e 522 needed += (sizeof(uint32_t) + ALIGN_MASK) & ~ALIGN_MASK;
1da177e4
LT
523 }
524 }
525
526 /*
527 * Grab our output buffer.
528 */
529 nl = get_result_buffer(param, param_size, &len);
530 if (len < needed) {
531 param->flags |= DM_BUFFER_FULL_FLAG;
532 goto out;
533 }
534 param->data_size = param->data_start + needed;
535
536 nl->dev = 0; /* Flags no data */
537
538 /*
539 * Now loop through filling out the names.
540 */
541 for (i = 0; i < NUM_BUCKETS; i++) {
542 list_for_each_entry (hc, _name_buckets + i, name_list) {
543 if (old_nl)
544 old_nl->next = (uint32_t) ((void *) nl -
545 (void *) old_nl);
546 disk = dm_disk(hc->md);
f331c029 547 nl->dev = huge_encode_dev(disk_devt(disk));
1da177e4
LT
548 nl->next = 0;
549 strcpy(nl->name, hc->name);
550
551 old_nl = nl;
23d70c5e
MP
552 event_nr = align_ptr(((void *) (nl + 1)) + strlen(hc->name) + 1);
553 *event_nr = dm_get_event_nr(hc->md);
554 nl = align_ptr(event_nr + 1);
1da177e4
LT
555 }
556 }
557
558 out:
559 up_write(&_hash_lock);
560 return 0;
561}
562
563static void list_version_get_needed(struct target_type *tt, void *needed_param)
564{
565 size_t *needed = needed_param;
566
c4cc6635 567 *needed += sizeof(struct dm_target_versions);
1da177e4 568 *needed += strlen(tt->name);
1da177e4
LT
569 *needed += ALIGN_MASK;
570}
571
572static void list_version_get_info(struct target_type *tt, void *param)
573{
574 struct vers_iter *info = param;
575
576 /* Check space - it might have changed since the first iteration */
577 if ((char *)info->vers + sizeof(tt->version) + strlen(tt->name) + 1 >
578 info->end) {
579
580 info->flags = DM_BUFFER_FULL_FLAG;
581 return;
582 }
583
584 if (info->old_vers)
585 info->old_vers->next = (uint32_t) ((void *)info->vers -
586 (void *)info->old_vers);
587 info->vers->version[0] = tt->version[0];
588 info->vers->version[1] = tt->version[1];
589 info->vers->version[2] = tt->version[2];
590 info->vers->next = 0;
591 strcpy(info->vers->name, tt->name);
592
593 info->old_vers = info->vers;
594 info->vers = align_ptr(((void *) ++info->vers) + strlen(tt->name) + 1);
595}
596
fc1841e1 597static int list_versions(struct file *filp, struct dm_ioctl *param, size_t param_size)
1da177e4
LT
598{
599 size_t len, needed = 0;
600 struct dm_target_versions *vers;
601 struct vers_iter iter_info;
602
603 /*
604 * Loop through all the devices working out how much
605 * space we need.
606 */
607 dm_target_iterate(list_version_get_needed, &needed);
608
609 /*
610 * Grab our output buffer.
611 */
612 vers = get_result_buffer(param, param_size, &len);
613 if (len < needed) {
614 param->flags |= DM_BUFFER_FULL_FLAG;
615 goto out;
616 }
617 param->data_size = param->data_start + needed;
618
619 iter_info.param_size = param_size;
620 iter_info.old_vers = NULL;
621 iter_info.vers = vers;
622 iter_info.flags = 0;
623 iter_info.end = (char *)vers+len;
624
625 /*
626 * Now loop through filling out the names & versions.
627 */
628 dm_target_iterate(list_version_get_info, &iter_info);
629 param->flags |= iter_info.flags;
630
631 out:
632 return 0;
633}
634
1da177e4
LT
635static int check_name(const char *name)
636{
637 if (strchr(name, '/')) {
638 DMWARN("invalid device name");
639 return -EINVAL;
640 }
641
642 return 0;
643}
644
1d0f3ce8
MS
645/*
646 * On successful return, the caller must not attempt to acquire
88e2f901
JB
647 * _hash_lock without first calling dm_put_live_table, because dm_table_destroy
648 * waits for this dm_put_live_table and could be called under this lock.
1d0f3ce8 649 */
83d5e5b0 650static struct dm_table *dm_get_inactive_table(struct mapped_device *md, int *srcu_idx)
1d0f3ce8
MS
651{
652 struct hash_cell *hc;
653 struct dm_table *table = NULL;
654
83d5e5b0
MP
655 /* increment rcu count, we don't care about the table pointer */
656 dm_get_live_table(md, srcu_idx);
657
1d0f3ce8
MS
658 down_read(&_hash_lock);
659 hc = dm_get_mdptr(md);
660 if (!hc || hc->md != md) {
661 DMWARN("device has been removed from the dev hash table.");
662 goto out;
663 }
664
665 table = hc->new_map;
1d0f3ce8
MS
666
667out:
668 up_read(&_hash_lock);
669
670 return table;
671}
672
673static struct dm_table *dm_get_live_or_inactive_table(struct mapped_device *md,
83d5e5b0
MP
674 struct dm_ioctl *param,
675 int *srcu_idx)
1d0f3ce8
MS
676{
677 return (param->flags & DM_QUERY_INACTIVE_TABLE_FLAG) ?
83d5e5b0 678 dm_get_inactive_table(md, srcu_idx) : dm_get_live_table(md, srcu_idx);
1d0f3ce8
MS
679}
680
1da177e4
LT
681/*
682 * Fills in a dm_ioctl structure, ready for sending back to
683 * userland.
684 */
094ea9a0 685static void __dev_status(struct mapped_device *md, struct dm_ioctl *param)
1da177e4
LT
686{
687 struct gendisk *disk = dm_disk(md);
688 struct dm_table *table;
83d5e5b0 689 int srcu_idx;
1da177e4
LT
690
691 param->flags &= ~(DM_SUSPEND_FLAG | DM_READONLY_FLAG |
ffcc3936 692 DM_ACTIVE_PRESENT_FLAG | DM_INTERNAL_SUSPEND_FLAG);
1da177e4 693
4f186f8b 694 if (dm_suspended_md(md))
1da177e4
LT
695 param->flags |= DM_SUSPEND_FLAG;
696
ffcc3936
MS
697 if (dm_suspended_internally_md(md))
698 param->flags |= DM_INTERNAL_SUSPEND_FLAG;
699
2c140a24
MP
700 if (dm_test_deferred_remove_flag(md))
701 param->flags |= DM_DEFERRED_REMOVE;
702
f331c029 703 param->dev = huge_encode_dev(disk_devt(disk));
1da177e4 704
5c6bd75d
AK
705 /*
706 * Yes, this will be out of date by the time it gets back
707 * to userland, but it is still very useful for
708 * debugging.
709 */
710 param->open_count = dm_open_count(md);
1da177e4 711
1da177e4 712 param->event_nr = dm_get_event_nr(md);
1d0f3ce8 713 param->target_count = 0;
1da177e4 714
83d5e5b0 715 table = dm_get_live_table(md, &srcu_idx);
1da177e4 716 if (table) {
1d0f3ce8
MS
717 if (!(param->flags & DM_QUERY_INACTIVE_TABLE_FLAG)) {
718 if (get_disk_ro(disk))
719 param->flags |= DM_READONLY_FLAG;
720 param->target_count = dm_table_get_num_targets(table);
721 }
1d0f3ce8
MS
722
723 param->flags |= DM_ACTIVE_PRESENT_FLAG;
724 }
83d5e5b0 725 dm_put_live_table(md, srcu_idx);
1d0f3ce8
MS
726
727 if (param->flags & DM_QUERY_INACTIVE_TABLE_FLAG) {
83d5e5b0
MP
728 int srcu_idx;
729 table = dm_get_inactive_table(md, &srcu_idx);
1d0f3ce8
MS
730 if (table) {
731 if (!(dm_table_get_mode(table) & FMODE_WRITE))
732 param->flags |= DM_READONLY_FLAG;
733 param->target_count = dm_table_get_num_targets(table);
1d0f3ce8 734 }
83d5e5b0 735 dm_put_live_table(md, srcu_idx);
1d0f3ce8 736 }
1da177e4
LT
737}
738
fc1841e1 739static int dev_create(struct file *filp, struct dm_ioctl *param, size_t param_size)
1da177e4 740{
2b06cfff 741 int r, m = DM_ANY_MINOR;
1da177e4
LT
742 struct mapped_device *md;
743
744 r = check_name(param->name);
745 if (r)
746 return r;
747
748 if (param->flags & DM_PERSISTENT_DEV_FLAG)
2b06cfff 749 m = MINOR(huge_decode_dev(param->dev));
1da177e4 750
2b06cfff 751 r = dm_create(m, &md);
1da177e4
LT
752 if (r)
753 return r;
754
755 r = dm_hash_insert(param->name, *param->uuid ? param->uuid : NULL, md);
3f77316d
KU
756 if (r) {
757 dm_put(md);
758 dm_destroy(md);
759 return r;
760 }
1da177e4
LT
761
762 param->flags &= ~DM_INACTIVE_PRESENT_FLAG;
763
094ea9a0
AK
764 __dev_status(md, param);
765
1da177e4
LT
766 dm_put(md);
767
3f77316d 768 return 0;
1da177e4
LT
769}
770
771/*
772 * Always use UUID for lookups if it's present, otherwise use name or dev.
773 */
858119e1 774static struct hash_cell *__find_device_hash_cell(struct dm_ioctl *param)
1da177e4 775{
0ddf9644 776 struct hash_cell *hc = NULL;
9ade92a9 777
0ddf9644 778 if (*param->uuid) {
759dea20
MP
779 if (*param->name || param->dev)
780 return NULL;
781
0ddf9644
MP
782 hc = __get_uuid_cell(param->uuid);
783 if (!hc)
784 return NULL;
ba2e19b0 785 } else if (*param->name) {
759dea20
MP
786 if (param->dev)
787 return NULL;
788
0ddf9644
MP
789 hc = __get_name_cell(param->name);
790 if (!hc)
791 return NULL;
ba2e19b0
MP
792 } else if (param->dev) {
793 hc = __get_dev_cell(param->dev);
794 if (!hc)
795 return NULL;
796 } else
0ddf9644 797 return NULL;
9ade92a9 798
0ddf9644
MP
799 /*
800 * Sneakily write in both the name and the uuid
801 * while we have the cell.
802 */
803 strlcpy(param->name, hc->name, sizeof(param->name));
804 if (hc->uuid)
805 strlcpy(param->uuid, hc->uuid, sizeof(param->uuid));
806 else
807 param->uuid[0] = '\0';
808
809 if (hc->new_map)
810 param->flags |= DM_INACTIVE_PRESENT_FLAG;
811 else
812 param->flags &= ~DM_INACTIVE_PRESENT_FLAG;
813
814 return hc;
1da177e4
LT
815}
816
858119e1 817static struct mapped_device *find_device(struct dm_ioctl *param)
1da177e4
LT
818{
819 struct hash_cell *hc;
820 struct mapped_device *md = NULL;
821
822 down_read(&_hash_lock);
823 hc = __find_device_hash_cell(param);
0ddf9644 824 if (hc)
1da177e4 825 md = hc->md;
1da177e4
LT
826 up_read(&_hash_lock);
827
828 return md;
829}
830
fc1841e1 831static int dev_remove(struct file *filp, struct dm_ioctl *param, size_t param_size)
1da177e4
LT
832{
833 struct hash_cell *hc;
7ec75f25 834 struct mapped_device *md;
5c6bd75d 835 int r;
83d5e5b0 836 struct dm_table *t;
1da177e4
LT
837
838 down_write(&_hash_lock);
839 hc = __find_device_hash_cell(param);
840
841 if (!hc) {
810b4923 842 DMDEBUG_LIMIT("device doesn't appear to be in the dev hash table.");
1da177e4
LT
843 up_write(&_hash_lock);
844 return -ENXIO;
845 }
846
7ec75f25
JM
847 md = hc->md;
848
5c6bd75d
AK
849 /*
850 * Ensure the device is not open and nothing further can open it.
851 */
2c140a24 852 r = dm_lock_for_deletion(md, !!(param->flags & DM_DEFERRED_REMOVE), false);
5c6bd75d 853 if (r) {
2c140a24
MP
854 if (r == -EBUSY && param->flags & DM_DEFERRED_REMOVE) {
855 up_write(&_hash_lock);
856 dm_put(md);
857 return 0;
858 }
810b4923 859 DMDEBUG_LIMIT("unable to remove open device %s", hc->name);
5c6bd75d
AK
860 up_write(&_hash_lock);
861 dm_put(md);
862 return r;
863 }
864
83d5e5b0 865 t = __hash_remove(hc);
1da177e4 866 up_write(&_hash_lock);
60935eb2 867
83d5e5b0
MP
868 if (t) {
869 dm_sync_table(md);
870 dm_table_destroy(t);
871 }
872
2c140a24
MP
873 param->flags &= ~DM_DEFERRED_REMOVE;
874
3abf85b5
PR
875 if (!dm_kobject_uevent(md, KOBJ_REMOVE, param->event_nr))
876 param->flags |= DM_UEVENT_GENERATED_FLAG;
60935eb2 877
7ec75f25 878 dm_put(md);
3f77316d 879 dm_destroy(md);
1da177e4
LT
880 return 0;
881}
882
883/*
884 * Check a string doesn't overrun the chunk of
885 * memory we copied from userland.
886 */
887static int invalid_str(char *str, void *end)
888{
889 while ((void *) str < end)
890 if (!*str++)
891 return 0;
892
893 return -EINVAL;
894}
895
fc1841e1 896static int dev_rename(struct file *filp, struct dm_ioctl *param, size_t param_size)
1da177e4
LT
897{
898 int r;
84c89557 899 char *new_data = (char *) param + param->data_start;
856a6f1d 900 struct mapped_device *md;
84c89557 901 unsigned change_uuid = (param->flags & DM_UUID_FLAG) ? 1 : 0;
1da177e4 902
84c89557 903 if (new_data < param->data ||
c2b04824 904 invalid_str(new_data, (void *) param + param_size) || !*new_data ||
84c89557
PJ
905 strlen(new_data) > (change_uuid ? DM_UUID_LEN - 1 : DM_NAME_LEN - 1)) {
906 DMWARN("Invalid new mapped device name or uuid string supplied.");
1da177e4
LT
907 return -EINVAL;
908 }
909
84c89557
PJ
910 if (!change_uuid) {
911 r = check_name(new_data);
912 if (r)
913 return r;
914 }
1da177e4 915
84c89557 916 md = dm_hash_rename(param, new_data);
856a6f1d
PR
917 if (IS_ERR(md))
918 return PTR_ERR(md);
3abf85b5 919
856a6f1d
PR
920 __dev_status(md, param);
921 dm_put(md);
922
923 return 0;
1da177e4
LT
924}
925
fc1841e1 926static int dev_set_geometry(struct file *filp, struct dm_ioctl *param, size_t param_size)
3ac51e74
DW
927{
928 int r = -EINVAL, x;
929 struct mapped_device *md;
930 struct hd_geometry geometry;
931 unsigned long indata[4];
932 char *geostr = (char *) param + param->data_start;
31998ef1 933 char dummy;
3ac51e74
DW
934
935 md = find_device(param);
936 if (!md)
937 return -ENXIO;
938
27238b2b 939 if (geostr < param->data ||
3ac51e74
DW
940 invalid_str(geostr, (void *) param + param_size)) {
941 DMWARN("Invalid geometry supplied.");
942 goto out;
943 }
944
31998ef1
MP
945 x = sscanf(geostr, "%lu %lu %lu %lu%c", indata,
946 indata + 1, indata + 2, indata + 3, &dummy);
3ac51e74
DW
947
948 if (x != 4) {
949 DMWARN("Unable to interpret geometry settings.");
950 goto out;
951 }
952
953 if (indata[0] > 65535 || indata[1] > 255 ||
954 indata[2] > 255 || indata[3] > ULONG_MAX) {
955 DMWARN("Geometry exceeds range limits.");
956 goto out;
957 }
958
959 geometry.cylinders = indata[0];
960 geometry.heads = indata[1];
961 geometry.sectors = indata[2];
962 geometry.start = indata[3];
963
964 r = dm_set_geometry(md, &geometry);
3ac51e74
DW
965
966 param->data_size = 0;
967
968out:
969 dm_put(md);
970 return r;
971}
972
1da177e4
LT
973static int do_suspend(struct dm_ioctl *param)
974{
975 int r = 0;
a3d77d35 976 unsigned suspend_flags = DM_SUSPEND_LOCKFS_FLAG;
1da177e4
LT
977 struct mapped_device *md;
978
979 md = find_device(param);
980 if (!md)
981 return -ENXIO;
982
6da487dc 983 if (param->flags & DM_SKIP_LOCKFS_FLAG)
a3d77d35 984 suspend_flags &= ~DM_SUSPEND_LOCKFS_FLAG;
81fdb096
KU
985 if (param->flags & DM_NOFLUSH_FLAG)
986 suspend_flags |= DM_SUSPEND_NOFLUSH_FLAG;
6da487dc 987
094ea9a0 988 if (!dm_suspended_md(md)) {
a3d77d35 989 r = dm_suspend(md, suspend_flags);
094ea9a0
AK
990 if (r)
991 goto out;
992 }
1da177e4 993
094ea9a0 994 __dev_status(md, param);
1da177e4 995
094ea9a0 996out:
1da177e4 997 dm_put(md);
094ea9a0 998
1da177e4
LT
999 return r;
1000}
1001
1002static int do_resume(struct dm_ioctl *param)
1003{
1004 int r = 0;
a3d77d35 1005 unsigned suspend_flags = DM_SUSPEND_LOCKFS_FLAG;
1da177e4
LT
1006 struct hash_cell *hc;
1007 struct mapped_device *md;
042d2a9b 1008 struct dm_table *new_map, *old_map = NULL;
1da177e4
LT
1009
1010 down_write(&_hash_lock);
1011
1012 hc = __find_device_hash_cell(param);
1013 if (!hc) {
810b4923 1014 DMDEBUG_LIMIT("device doesn't appear to be in the dev hash table.");
1da177e4
LT
1015 up_write(&_hash_lock);
1016 return -ENXIO;
1017 }
1018
1019 md = hc->md;
1da177e4
LT
1020
1021 new_map = hc->new_map;
1022 hc->new_map = NULL;
1023 param->flags &= ~DM_INACTIVE_PRESENT_FLAG;
1024
1025 up_write(&_hash_lock);
1026
1027 /* Do we need to load a new map ? */
1028 if (new_map) {
1029 /* Suspend if it isn't already suspended */
6da487dc 1030 if (param->flags & DM_SKIP_LOCKFS_FLAG)
a3d77d35 1031 suspend_flags &= ~DM_SUSPEND_LOCKFS_FLAG;
81fdb096
KU
1032 if (param->flags & DM_NOFLUSH_FLAG)
1033 suspend_flags |= DM_SUSPEND_NOFLUSH_FLAG;
4f186f8b 1034 if (!dm_suspended_md(md))
a3d77d35 1035 dm_suspend(md, suspend_flags);
1da177e4 1036
042d2a9b
AK
1037 old_map = dm_swap_table(md, new_map);
1038 if (IS_ERR(old_map)) {
83d5e5b0 1039 dm_sync_table(md);
d5816876 1040 dm_table_destroy(new_map);
1da177e4 1041 dm_put(md);
042d2a9b 1042 return PTR_ERR(old_map);
1da177e4
LT
1043 }
1044
1045 if (dm_table_get_mode(new_map) & FMODE_WRITE)
1046 set_disk_ro(dm_disk(md), 0);
1047 else
1048 set_disk_ro(dm_disk(md), 1);
1da177e4
LT
1049 }
1050
0f3649a9 1051 if (dm_suspended_md(md)) {
1da177e4 1052 r = dm_resume(md);
3abf85b5
PR
1053 if (!r && !dm_kobject_uevent(md, KOBJ_CHANGE, param->event_nr))
1054 param->flags |= DM_UEVENT_GENERATED_FLAG;
0f3649a9 1055 }
1da177e4 1056
83d5e5b0
MP
1057 /*
1058 * Since dm_swap_table synchronizes RCU, nobody should be in
1059 * read-side critical section already.
1060 */
042d2a9b
AK
1061 if (old_map)
1062 dm_table_destroy(old_map);
60935eb2 1063
0f3649a9 1064 if (!r)
094ea9a0 1065 __dev_status(md, param);
1da177e4
LT
1066
1067 dm_put(md);
1068 return r;
1069}
1070
1071/*
1072 * Set or unset the suspension state of a device.
1073 * If the device already is in the requested state we just return its status.
1074 */
fc1841e1 1075static int dev_suspend(struct file *filp, struct dm_ioctl *param, size_t param_size)
1da177e4
LT
1076{
1077 if (param->flags & DM_SUSPEND_FLAG)
1078 return do_suspend(param);
1079
1080 return do_resume(param);
1081}
1082
1083/*
1084 * Copies device info back to user space, used by
1085 * the create and info ioctls.
1086 */
fc1841e1 1087static int dev_status(struct file *filp, struct dm_ioctl *param, size_t param_size)
1da177e4 1088{
1da177e4
LT
1089 struct mapped_device *md;
1090
1091 md = find_device(param);
1092 if (!md)
1093 return -ENXIO;
1094
094ea9a0 1095 __dev_status(md, param);
1da177e4 1096 dm_put(md);
094ea9a0
AK
1097
1098 return 0;
1da177e4
LT
1099}
1100
1101/*
1102 * Build up the status struct for each target
1103 */
1104static void retrieve_status(struct dm_table *table,
1105 struct dm_ioctl *param, size_t param_size)
1106{
1107 unsigned int i, num_targets;
1108 struct dm_target_spec *spec;
1109 char *outbuf, *outptr;
1110 status_type_t type;
1111 size_t remaining, len, used = 0;
1f4e0ff0 1112 unsigned status_flags = 0;
1da177e4
LT
1113
1114 outptr = outbuf = get_result_buffer(param, param_size, &len);
1115
1116 if (param->flags & DM_STATUS_TABLE_FLAG)
1117 type = STATUSTYPE_TABLE;
1118 else
1119 type = STATUSTYPE_INFO;
1120
1121 /* Get all the target info */
1122 num_targets = dm_table_get_num_targets(table);
1123 for (i = 0; i < num_targets; i++) {
1124 struct dm_target *ti = dm_table_get_target(table, i);
fd7c092e 1125 size_t l;
1da177e4
LT
1126
1127 remaining = len - (outptr - outbuf);
1128 if (remaining <= sizeof(struct dm_target_spec)) {
1129 param->flags |= DM_BUFFER_FULL_FLAG;
1130 break;
1131 }
1132
1133 spec = (struct dm_target_spec *) outptr;
1134
1135 spec->status = 0;
1136 spec->sector_start = ti->begin;
1137 spec->length = ti->len;
1138 strncpy(spec->target_type, ti->type->name,
1139 sizeof(spec->target_type));
1140
1141 outptr += sizeof(struct dm_target_spec);
1142 remaining = len - (outptr - outbuf);
1143 if (remaining <= 0) {
1144 param->flags |= DM_BUFFER_FULL_FLAG;
1145 break;
1146 }
1147
1148 /* Get the status/table string from the target driver */
1149 if (ti->type->status) {
1f4e0ff0
AK
1150 if (param->flags & DM_NOFLUSH_FLAG)
1151 status_flags |= DM_STATUS_NOFLUSH_FLAG;
fd7c092e 1152 ti->type->status(ti, type, status_flags, outptr, remaining);
1da177e4
LT
1153 } else
1154 outptr[0] = '\0';
1155
fd7c092e
MP
1156 l = strlen(outptr) + 1;
1157 if (l == remaining) {
1158 param->flags |= DM_BUFFER_FULL_FLAG;
1159 break;
1160 }
1161
1162 outptr += l;
1da177e4
LT
1163 used = param->data_start + (outptr - outbuf);
1164
1165 outptr = align_ptr(outptr);
1166 spec->next = outptr - outbuf;
1167 }
1168
1169 if (used)
1170 param->data_size = used;
1171
1172 param->target_count = num_targets;
1173}
1174
1175/*
1176 * Wait for a device to report an event
1177 */
fc1841e1 1178static int dev_wait(struct file *filp, struct dm_ioctl *param, size_t param_size)
1da177e4 1179{
094ea9a0 1180 int r = 0;
1da177e4
LT
1181 struct mapped_device *md;
1182 struct dm_table *table;
83d5e5b0 1183 int srcu_idx;
1da177e4
LT
1184
1185 md = find_device(param);
1186 if (!md)
1187 return -ENXIO;
1188
1189 /*
1190 * Wait for a notification event
1191 */
1192 if (dm_wait_event(md, param->event_nr)) {
1193 r = -ERESTARTSYS;
1194 goto out;
1195 }
1196
1197 /*
1198 * The userland program is going to want to know what
1199 * changed to trigger the event, so we may as well tell
1200 * him and save an ioctl.
1201 */
094ea9a0 1202 __dev_status(md, param);
1da177e4 1203
83d5e5b0
MP
1204 table = dm_get_live_or_inactive_table(md, param, &srcu_idx);
1205 if (table)
1da177e4 1206 retrieve_status(table, param, param_size);
83d5e5b0 1207 dm_put_live_table(md, srcu_idx);
1da177e4 1208
094ea9a0 1209out:
1da177e4 1210 dm_put(md);
094ea9a0 1211
1da177e4
LT
1212 return r;
1213}
1214
fc1841e1
MP
1215/*
1216 * Remember the global event number and make it possible to poll
1217 * for further events.
1218 */
1219static int dev_arm_poll(struct file *filp, struct dm_ioctl *param, size_t param_size)
1220{
1221 struct dm_file *priv = filp->private_data;
1222
1223 priv->global_event_nr = atomic_read(&dm_global_event_nr);
1224
1225 return 0;
1226}
1227
aeb5d727 1228static inline fmode_t get_mode(struct dm_ioctl *param)
1da177e4 1229{
aeb5d727 1230 fmode_t mode = FMODE_READ | FMODE_WRITE;
1da177e4
LT
1231
1232 if (param->flags & DM_READONLY_FLAG)
1233 mode = FMODE_READ;
1234
1235 return mode;
1236}
1237
1238static int next_target(struct dm_target_spec *last, uint32_t next, void *end,
1239 struct dm_target_spec **spec, char **target_params)
1240{
1241 *spec = (struct dm_target_spec *) ((unsigned char *) last + next);
1242 *target_params = (char *) (*spec + 1);
1243
1244 if (*spec < (last + 1))
1245 return -EINVAL;
1246
1247 return invalid_str(*target_params, end);
1248}
1249
1250static int populate_table(struct dm_table *table,
1251 struct dm_ioctl *param, size_t param_size)
1252{
1253 int r;
1254 unsigned int i = 0;
1255 struct dm_target_spec *spec = (struct dm_target_spec *) param;
1256 uint32_t next = param->data_start;
1257 void *end = (void *) param + param_size;
1258 char *target_params;
1259
1260 if (!param->target_count) {
1261 DMWARN("populate_table: no targets specified");
1262 return -EINVAL;
1263 }
1264
1265 for (i = 0; i < param->target_count; i++) {
1266
1267 r = next_target(spec, next, end, &spec, &target_params);
1268 if (r) {
1269 DMWARN("unable to find target");
1270 return r;
1271 }
1272
1273 r = dm_table_add_target(table, spec->target_type,
1274 (sector_t) spec->sector_start,
1275 (sector_t) spec->length,
1276 target_params);
1277 if (r) {
1278 DMWARN("error adding target to table");
1279 return r;
1280 }
1281
1282 next = spec->next;
1283 }
1284
1285 return dm_table_complete(table);
1286}
1287
7e0d574f 1288static bool is_valid_type(enum dm_queue_mode cur, enum dm_queue_mode new)
b5ab4a9b
TK
1289{
1290 if (cur == new ||
1291 (cur == DM_TYPE_BIO_BASED && new == DM_TYPE_DAX_BIO_BASED))
1292 return true;
1293
1294 return false;
1295}
1296
fc1841e1 1297static int table_load(struct file *filp, struct dm_ioctl *param, size_t param_size)
1da177e4
LT
1298{
1299 int r;
1300 struct hash_cell *hc;
83d5e5b0 1301 struct dm_table *t, *old_map = NULL;
1134e5ae 1302 struct mapped_device *md;
36a0456f 1303 struct target_type *immutable_target_type;
1134e5ae
MA
1304
1305 md = find_device(param);
1306 if (!md)
1307 return -ENXIO;
1da177e4 1308
1134e5ae 1309 r = dm_table_create(&t, get_mode(param), param->target_count, md);
1da177e4 1310 if (r)
f11c1c56 1311 goto err;
1da177e4 1312
00c4fc3b
MS
1313 /* Protect md->type and md->queue against concurrent table loads. */
1314 dm_lock_md_type(md);
1da177e4 1315 r = populate_table(t, param, param_size);
f11c1c56
MS
1316 if (r)
1317 goto err_unlock_md_type;
1da177e4 1318
36a0456f
AK
1319 immutable_target_type = dm_get_immutable_target_type(md);
1320 if (immutable_target_type &&
f083b09b
MS
1321 (immutable_target_type != dm_table_get_immutable_target_type(t)) &&
1322 !dm_table_get_wildcard_target(t)) {
36a0456f
AK
1323 DMWARN("can't replace immutable target type %s",
1324 immutable_target_type->name);
36a0456f 1325 r = -EINVAL;
f11c1c56 1326 goto err_unlock_md_type;
36a0456f
AK
1327 }
1328
3e6180f0 1329 if (dm_get_md_type(md) == DM_TYPE_NONE) {
a5664dad
MS
1330 /* Initial table load: acquire type of table. */
1331 dm_set_md_type(md, dm_table_get_type(t));
3e6180f0
CH
1332
1333 /* setup md->queue to reflect md's type (may block) */
591ddcfc 1334 r = dm_setup_md_queue(md, t);
3e6180f0
CH
1335 if (r) {
1336 DMWARN("unable to set up device queue for new table.");
1337 goto err_unlock_md_type;
1338 }
b5ab4a9b 1339 } else if (!is_valid_type(dm_get_md_type(md), dm_table_get_type(t))) {
a5664dad 1340 DMWARN("can't change device type after initial table load.");
a5664dad 1341 r = -EINVAL;
f11c1c56 1342 goto err_unlock_md_type;
a5664dad 1343 }
4a0b4ddf 1344
a5664dad
MS
1345 dm_unlock_md_type(md);
1346
1347 /* stage inactive table */
1da177e4 1348 down_write(&_hash_lock);
1134e5ae
MA
1349 hc = dm_get_mdptr(md);
1350 if (!hc || hc->md != md) {
1351 DMWARN("device has been removed from the dev hash table.");
1134e5ae
MA
1352 up_write(&_hash_lock);
1353 r = -ENXIO;
f11c1c56 1354 goto err_destroy_table;
1da177e4
LT
1355 }
1356
1357 if (hc->new_map)
83d5e5b0 1358 old_map = hc->new_map;
1da177e4 1359 hc->new_map = t;
1134e5ae
MA
1360 up_write(&_hash_lock);
1361
1da177e4 1362 param->flags |= DM_INACTIVE_PRESENT_FLAG;
094ea9a0 1363 __dev_status(md, param);
1134e5ae 1364
83d5e5b0
MP
1365 if (old_map) {
1366 dm_sync_table(md);
1367 dm_table_destroy(old_map);
1368 }
1369
1134e5ae 1370 dm_put(md);
1da177e4 1371
f11c1c56
MS
1372 return 0;
1373
1374err_unlock_md_type:
1375 dm_unlock_md_type(md);
1376err_destroy_table:
1377 dm_table_destroy(t);
1378err:
1379 dm_put(md);
1380
1da177e4
LT
1381 return r;
1382}
1383
fc1841e1 1384static int table_clear(struct file *filp, struct dm_ioctl *param, size_t param_size)
1da177e4 1385{
1da177e4 1386 struct hash_cell *hc;
7ec75f25 1387 struct mapped_device *md;
83d5e5b0 1388 struct dm_table *old_map = NULL;
1da177e4
LT
1389
1390 down_write(&_hash_lock);
1391
1392 hc = __find_device_hash_cell(param);
1393 if (!hc) {
810b4923 1394 DMDEBUG_LIMIT("device doesn't appear to be in the dev hash table.");
1da177e4
LT
1395 up_write(&_hash_lock);
1396 return -ENXIO;
1397 }
1398
1399 if (hc->new_map) {
83d5e5b0 1400 old_map = hc->new_map;
1da177e4
LT
1401 hc->new_map = NULL;
1402 }
1403
1404 param->flags &= ~DM_INACTIVE_PRESENT_FLAG;
1405
094ea9a0 1406 __dev_status(hc->md, param);
7ec75f25 1407 md = hc->md;
1da177e4 1408 up_write(&_hash_lock);
83d5e5b0
MP
1409 if (old_map) {
1410 dm_sync_table(md);
1411 dm_table_destroy(old_map);
1412 }
7ec75f25 1413 dm_put(md);
094ea9a0
AK
1414
1415 return 0;
1da177e4
LT
1416}
1417
1418/*
1419 * Retrieves a list of devices used by a particular dm device.
1420 */
1421static void retrieve_deps(struct dm_table *table,
1422 struct dm_ioctl *param, size_t param_size)
1423{
1424 unsigned int count = 0;
1425 struct list_head *tmp;
1426 size_t len, needed;
82b1519b 1427 struct dm_dev_internal *dd;
1da177e4
LT
1428 struct dm_target_deps *deps;
1429
1430 deps = get_result_buffer(param, param_size, &len);
1431
1432 /*
1433 * Count the devices.
1434 */
1435 list_for_each (tmp, dm_table_get_devices(table))
1436 count++;
1437
1438 /*
1439 * Check we have enough space.
1440 */
1441 needed = sizeof(*deps) + (sizeof(*deps->dev) * count);
1442 if (len < needed) {
1443 param->flags |= DM_BUFFER_FULL_FLAG;
1444 return;
1445 }
1446
1447 /*
1448 * Fill in the devices.
1449 */
1450 deps->count = count;
1451 count = 0;
1452 list_for_each_entry (dd, dm_table_get_devices(table), list)
86f1152b 1453 deps->dev[count++] = huge_encode_dev(dd->dm_dev->bdev->bd_dev);
1da177e4
LT
1454
1455 param->data_size = param->data_start + needed;
1456}
1457
fc1841e1 1458static int table_deps(struct file *filp, struct dm_ioctl *param, size_t param_size)
1da177e4 1459{
1da177e4
LT
1460 struct mapped_device *md;
1461 struct dm_table *table;
83d5e5b0 1462 int srcu_idx;
1da177e4
LT
1463
1464 md = find_device(param);
1465 if (!md)
1466 return -ENXIO;
1467
094ea9a0 1468 __dev_status(md, param);
1da177e4 1469
83d5e5b0
MP
1470 table = dm_get_live_or_inactive_table(md, param, &srcu_idx);
1471 if (table)
1da177e4 1472 retrieve_deps(table, param, param_size);
83d5e5b0 1473 dm_put_live_table(md, srcu_idx);
1da177e4 1474
1da177e4 1475 dm_put(md);
094ea9a0
AK
1476
1477 return 0;
1da177e4
LT
1478}
1479
1480/*
1481 * Return the status of a device as a text string for each
1482 * target.
1483 */
fc1841e1 1484static int table_status(struct file *filp, struct dm_ioctl *param, size_t param_size)
1da177e4 1485{
1da177e4
LT
1486 struct mapped_device *md;
1487 struct dm_table *table;
83d5e5b0 1488 int srcu_idx;
1da177e4
LT
1489
1490 md = find_device(param);
1491 if (!md)
1492 return -ENXIO;
1493
094ea9a0 1494 __dev_status(md, param);
1da177e4 1495
83d5e5b0
MP
1496 table = dm_get_live_or_inactive_table(md, param, &srcu_idx);
1497 if (table)
1da177e4 1498 retrieve_status(table, param, param_size);
83d5e5b0 1499 dm_put_live_table(md, srcu_idx);
1da177e4 1500
1da177e4 1501 dm_put(md);
094ea9a0
AK
1502
1503 return 0;
1da177e4
LT
1504}
1505
a2606241 1506/*
fd2ed4d2
MP
1507 * Process device-mapper dependent messages. Messages prefixed with '@'
1508 * are processed by the DM core. All others are delivered to the target.
a2606241
MP
1509 * Returns a number <= 1 if message was processed by device mapper.
1510 * Returns 2 if message should be delivered to the target.
1511 */
1512static int message_for_md(struct mapped_device *md, unsigned argc, char **argv,
1513 char *result, unsigned maxlen)
1514{
fd2ed4d2
MP
1515 int r;
1516
1517 if (**argv != '@')
1518 return 2; /* no '@' prefix, deliver to target */
1519
2c140a24
MP
1520 if (!strcasecmp(argv[0], "@cancel_deferred_remove")) {
1521 if (argc != 1) {
1522 DMERR("Invalid arguments for @cancel_deferred_remove");
1523 return -EINVAL;
1524 }
1525 return dm_cancel_deferred_remove(md);
1526 }
1527
fd2ed4d2
MP
1528 r = dm_stats_message(md, argc, argv, result, maxlen);
1529 if (r < 2)
1530 return r;
1531
1532 DMERR("Unsupported message sent to DM core: %s", argv[0]);
1533 return -EINVAL;
a2606241
MP
1534}
1535
1da177e4
LT
1536/*
1537 * Pass a message to the target that's at the supplied device offset.
1538 */
fc1841e1 1539static int target_message(struct file *filp, struct dm_ioctl *param, size_t param_size)
1da177e4
LT
1540{
1541 int r, argc;
1542 char **argv;
1543 struct mapped_device *md;
1544 struct dm_table *table;
1545 struct dm_target *ti;
1546 struct dm_target_msg *tmsg = (void *) param + param->data_start;
a2606241
MP
1547 size_t maxlen;
1548 char *result = get_result_buffer(param, param_size, &maxlen);
83d5e5b0 1549 int srcu_idx;
1da177e4
LT
1550
1551 md = find_device(param);
1552 if (!md)
1553 return -ENXIO;
1554
027d50f9 1555 if (tmsg < (struct dm_target_msg *) param->data ||
1da177e4
LT
1556 invalid_str(tmsg->message, (void *) param + param_size)) {
1557 DMWARN("Invalid target message parameters.");
1558 r = -EINVAL;
1559 goto out;
1560 }
1561
1562 r = dm_split_args(&argc, &argv, tmsg->message);
1563 if (r) {
1564 DMWARN("Failed to split target message parameters");
1565 goto out;
1566 }
1567
2ca4c92f
AK
1568 if (!argc) {
1569 DMWARN("Empty message received.");
902c6a96 1570 goto out_argv;
2ca4c92f
AK
1571 }
1572
a2606241
MP
1573 r = message_for_md(md, argc, argv, result, maxlen);
1574 if (r <= 1)
1575 goto out_argv;
1576
83d5e5b0 1577 table = dm_get_live_table(md, &srcu_idx);
1da177e4 1578 if (!table)
83d5e5b0 1579 goto out_table;
1da177e4 1580
c50abeb3
MA
1581 if (dm_deleting_md(md)) {
1582 r = -ENXIO;
1583 goto out_table;
1584 }
1585
512875bd
JN
1586 ti = dm_table_find_target(table, tmsg->sector);
1587 if (!dm_target_is_valid(ti)) {
1da177e4
LT
1588 DMWARN("Target message sector outside device.");
1589 r = -EINVAL;
512875bd 1590 } else if (ti->type->message)
1da177e4
LT
1591 r = ti->type->message(ti, argc, argv);
1592 else {
1593 DMWARN("Target type does not support messages");
1594 r = -EINVAL;
1595 }
1596
c50abeb3 1597 out_table:
83d5e5b0 1598 dm_put_live_table(md, srcu_idx);
1da177e4
LT
1599 out_argv:
1600 kfree(argv);
1601 out:
a2606241
MP
1602 if (r >= 0)
1603 __dev_status(md, param);
1604
1605 if (r == 1) {
1606 param->flags |= DM_DATA_OUT_FLAG;
fd2ed4d2 1607 if (dm_message_test_buffer_overflow(result, maxlen))
a2606241
MP
1608 param->flags |= DM_BUFFER_FULL_FLAG;
1609 else
1610 param->data_size = param->data_start + strlen(result) + 1;
1611 r = 0;
1612 }
1613
1da177e4
LT
1614 dm_put(md);
1615 return r;
1616}
1617
e2914cc2
MP
1618/*
1619 * The ioctl parameter block consists of two parts, a dm_ioctl struct
1620 * followed by a data buffer. This flag is set if the second part,
1621 * which has a variable size, is not used by the function processing
1622 * the ioctl.
1623 */
1624#define IOCTL_FLAGS_NO_PARAMS 1
1625
1da177e4
LT
1626/*-----------------------------------------------------------------
1627 * Implementation of open/close/ioctl on the special char
1628 * device.
1629 *---------------------------------------------------------------*/
e2914cc2 1630static ioctl_fn lookup_ioctl(unsigned int cmd, int *ioctl_flags)
1da177e4
LT
1631{
1632 static struct {
1633 int cmd;
e2914cc2 1634 int flags;
1da177e4
LT
1635 ioctl_fn fn;
1636 } _ioctls[] = {
e2914cc2
MP
1637 {DM_VERSION_CMD, 0, NULL}, /* version is dealt with elsewhere */
1638 {DM_REMOVE_ALL_CMD, IOCTL_FLAGS_NO_PARAMS, remove_all},
1639 {DM_LIST_DEVICES_CMD, 0, list_devices},
1640
1641 {DM_DEV_CREATE_CMD, IOCTL_FLAGS_NO_PARAMS, dev_create},
1642 {DM_DEV_REMOVE_CMD, IOCTL_FLAGS_NO_PARAMS, dev_remove},
1643 {DM_DEV_RENAME_CMD, 0, dev_rename},
1644 {DM_DEV_SUSPEND_CMD, IOCTL_FLAGS_NO_PARAMS, dev_suspend},
1645 {DM_DEV_STATUS_CMD, IOCTL_FLAGS_NO_PARAMS, dev_status},
1646 {DM_DEV_WAIT_CMD, 0, dev_wait},
1647
1648 {DM_TABLE_LOAD_CMD, 0, table_load},
1649 {DM_TABLE_CLEAR_CMD, IOCTL_FLAGS_NO_PARAMS, table_clear},
1650 {DM_TABLE_DEPS_CMD, 0, table_deps},
1651 {DM_TABLE_STATUS_CMD, 0, table_status},
1652
1653 {DM_LIST_VERSIONS_CMD, 0, list_versions},
1654
1655 {DM_TARGET_MSG_CMD, 0, target_message},
fc1841e1
MP
1656 {DM_DEV_SET_GEOMETRY_CMD, 0, dev_set_geometry},
1657 {DM_DEV_ARM_POLL, IOCTL_FLAGS_NO_PARAMS, dev_arm_poll},
1da177e4
LT
1658 };
1659
e2914cc2
MP
1660 if (unlikely(cmd >= ARRAY_SIZE(_ioctls)))
1661 return NULL;
1662
1663 *ioctl_flags = _ioctls[cmd].flags;
1664 return _ioctls[cmd].fn;
1da177e4
LT
1665}
1666
1667/*
1668 * As well as checking the version compatibility this always
1669 * copies the kernel interface version out.
1670 */
1671static int check_version(unsigned int cmd, struct dm_ioctl __user *user)
1672{
1673 uint32_t version[3];
1674 int r = 0;
1675
1676 if (copy_from_user(version, user->version, sizeof(version)))
1677 return -EFAULT;
1678
1679 if ((DM_VERSION_MAJOR != version[0]) ||
1680 (DM_VERSION_MINOR < version[1])) {
1681 DMWARN("ioctl interface mismatch: "
1682 "kernel(%u.%u.%u), user(%u.%u.%u), cmd(%d)",
1683 DM_VERSION_MAJOR, DM_VERSION_MINOR,
1684 DM_VERSION_PATCHLEVEL,
1685 version[0], version[1], version[2], cmd);
1686 r = -EINVAL;
1687 }
1688
1689 /*
1690 * Fill in the kernel version.
1691 */
1692 version[0] = DM_VERSION_MAJOR;
1693 version[1] = DM_VERSION_MINOR;
1694 version[2] = DM_VERSION_PATCHLEVEL;
1695 if (copy_to_user(user->version, version, sizeof(version)))
1696 return -EFAULT;
1697
1698 return r;
1699}
1700
028b39e3 1701#define DM_PARAMS_MALLOC 0x0001 /* Params allocated with kvmalloc() */
9c5091f2
MP
1702#define DM_WIPE_BUFFER 0x0010 /* Wipe input buffer before returning from ioctl */
1703
1704static void free_params(struct dm_ioctl *param, size_t param_size, int param_flags)
1705{
1706 if (param_flags & DM_WIPE_BUFFER)
1707 memset(param, 0, param_size);
1708
028b39e3
BVA
1709 if (param_flags & DM_PARAMS_MALLOC)
1710 kvfree(param);
9c5091f2
MP
1711}
1712
02cde50b
MP
1713static int copy_params(struct dm_ioctl __user *user, struct dm_ioctl *param_kernel,
1714 int ioctl_flags,
1715 struct dm_ioctl **param, int *param_flags)
1da177e4 1716{
02cde50b 1717 struct dm_ioctl *dmi;
f8681205 1718 int secure_data;
6080758d 1719 const size_t minimum_data_size = offsetof(struct dm_ioctl, data);
d224e938 1720 unsigned noio_flag;
1da177e4 1721
02cde50b 1722 if (copy_from_user(param_kernel, user, minimum_data_size))
1da177e4
LT
1723 return -EFAULT;
1724
02cde50b 1725 if (param_kernel->data_size < minimum_data_size)
1da177e4
LT
1726 return -EINVAL;
1727
02cde50b 1728 secure_data = param_kernel->flags & DM_SECURE_DATA_FLAG;
f8681205 1729
9c5091f2
MP
1730 *param_flags = secure_data ? DM_WIPE_BUFFER : 0;
1731
02cde50b
MP
1732 if (ioctl_flags & IOCTL_FLAGS_NO_PARAMS) {
1733 dmi = param_kernel;
1734 dmi->data_size = minimum_data_size;
1735 goto data_copied;
1736 }
1737
5023e5cf 1738 /*
8c1e2162
JS
1739 * Use __GFP_HIGH to avoid low memory issues when a device is
1740 * suspended and the ioctl is needed to resume it.
9c5091f2 1741 * Use kmalloc() rather than vmalloc() when we can.
5023e5cf 1742 */
9c5091f2 1743 dmi = NULL;
d224e938 1744 noio_flag = memalloc_noio_save();
8c1e2162 1745 dmi = kvmalloc(param_kernel->data_size, GFP_KERNEL | __GFP_HIGH);
d224e938 1746 memalloc_noio_restore(noio_flag);
9c5091f2 1747
f8681205 1748 if (!dmi) {
02cde50b 1749 if (secure_data && clear_user(user, param_kernel->data_size))
f8681205 1750 return -EFAULT;
1da177e4 1751 return -ENOMEM;
f8681205 1752 }
1da177e4 1753
028b39e3
BVA
1754 *param_flags |= DM_PARAMS_MALLOC;
1755
02cde50b 1756 if (copy_from_user(dmi, user, param_kernel->data_size))
6bb43b5d 1757 goto bad;
1da177e4 1758
02cde50b 1759data_copied:
e910d7eb
AK
1760 /*
1761 * Abort if something changed the ioctl data while it was being copied.
1762 */
02cde50b 1763 if (dmi->data_size != param_kernel->data_size) {
e910d7eb
AK
1764 DMERR("rejecting ioctl: data size modified while processing parameters");
1765 goto bad;
1766 }
1767
f8681205 1768 /* Wipe the user buffer so we do not return it to userspace */
02cde50b 1769 if (secure_data && clear_user(user, param_kernel->data_size))
f8681205
MB
1770 goto bad;
1771
1da177e4
LT
1772 *param = dmi;
1773 return 0;
6bb43b5d
MB
1774
1775bad:
02cde50b 1776 free_params(dmi, param_kernel->data_size, *param_flags);
9c5091f2 1777
6bb43b5d 1778 return -EFAULT;
1da177e4
LT
1779}
1780
1781static int validate_params(uint cmd, struct dm_ioctl *param)
1782{
1783 /* Always clear this flag */
1784 param->flags &= ~DM_BUFFER_FULL_FLAG;
3abf85b5 1785 param->flags &= ~DM_UEVENT_GENERATED_FLAG;
f8681205 1786 param->flags &= ~DM_SECURE_DATA_FLAG;
a2606241 1787 param->flags &= ~DM_DATA_OUT_FLAG;
1da177e4
LT
1788
1789 /* Ignores parameters */
1790 if (cmd == DM_REMOVE_ALL_CMD ||
1791 cmd == DM_LIST_DEVICES_CMD ||
1792 cmd == DM_LIST_VERSIONS_CMD)
1793 return 0;
1794
e36215d8 1795 if (cmd == DM_DEV_CREATE_CMD) {
1da177e4
LT
1796 if (!*param->name) {
1797 DMWARN("name not supplied when creating device");
1798 return -EINVAL;
1799 }
e36215d8 1800 } else if (*param->uuid && *param->name) {
1da177e4
LT
1801 DMWARN("only supply one of name or uuid, cmd(%u)", cmd);
1802 return -EINVAL;
1803 }
1804
1805 /* Ensure strings are terminated */
1806 param->name[DM_NAME_LEN - 1] = '\0';
1807 param->uuid[DM_UUID_LEN - 1] = '\0';
1808
1809 return 0;
1810}
1811
fc1841e1 1812static int ctl_ioctl(struct file *file, uint command, struct dm_ioctl __user *user)
1da177e4
LT
1813{
1814 int r = 0;
e2914cc2 1815 int ioctl_flags;
9c5091f2 1816 int param_flags;
1da177e4 1817 unsigned int cmd;
a26ffd4a 1818 struct dm_ioctl *uninitialized_var(param);
1da177e4 1819 ioctl_fn fn = NULL;
6bb43b5d 1820 size_t input_param_size;
02cde50b 1821 struct dm_ioctl param_kernel;
1da177e4
LT
1822
1823 /* only root can play with this */
1824 if (!capable(CAP_SYS_ADMIN))
1825 return -EACCES;
1826
1827 if (_IOC_TYPE(command) != DM_IOCTL)
1828 return -ENOTTY;
1829
1830 cmd = _IOC_NR(command);
1831
1832 /*
1833 * Check the interface version passed in. This also
1834 * writes out the kernel's interface version.
1835 */
1836 r = check_version(cmd, user);
1837 if (r)
1838 return r;
1839
1840 /*
1841 * Nothing more to do for the version command.
1842 */
1843 if (cmd == DM_VERSION_CMD)
1844 return 0;
1845
e2914cc2 1846 fn = lookup_ioctl(cmd, &ioctl_flags);
1da177e4
LT
1847 if (!fn) {
1848 DMWARN("dm_ctl_ioctl: unknown command 0x%x", command);
1849 return -ENOTTY;
1850 }
1851
1da177e4
LT
1852 /*
1853 * Copy the parameters into kernel space.
1854 */
02cde50b 1855 r = copy_params(user, &param_kernel, ioctl_flags, &param, &param_flags);
1da177e4 1856
dab6a429
AK
1857 if (r)
1858 return r;
1da177e4 1859
f8681205 1860 input_param_size = param->data_size;
1da177e4
LT
1861 r = validate_params(cmd, param);
1862 if (r)
1863 goto out;
1864
4617f564 1865 param->data_size = offsetof(struct dm_ioctl, data);
fc1841e1 1866 r = fn(file, param, input_param_size);
1da177e4 1867
e2914cc2
MP
1868 if (unlikely(param->flags & DM_BUFFER_FULL_FLAG) &&
1869 unlikely(ioctl_flags & IOCTL_FLAGS_NO_PARAMS))
1870 DMERR("ioctl %d tried to output some data but has IOCTL_FLAGS_NO_PARAMS set", cmd);
1871
1da177e4
LT
1872 /*
1873 * Copy the results back to userland.
1874 */
1875 if (!r && copy_to_user(user, param, param->data_size))
1876 r = -EFAULT;
1877
6bb43b5d 1878out:
9c5091f2 1879 free_params(param, input_param_size, param_flags);
1da177e4
LT
1880 return r;
1881}
1882
27238b2b
AK
1883static long dm_ctl_ioctl(struct file *file, uint command, ulong u)
1884{
fc1841e1 1885 return (long)ctl_ioctl(file, command, (struct dm_ioctl __user *)u);
27238b2b
AK
1886}
1887
76c072b4
MB
1888#ifdef CONFIG_COMPAT
1889static long dm_compat_ctl_ioctl(struct file *file, uint command, ulong u)
1890{
1891 return (long)dm_ctl_ioctl(file, command, (ulong) compat_ptr(u));
1892}
1893#else
1894#define dm_compat_ctl_ioctl NULL
1895#endif
1896
93e6442c
MP
1897static int dm_open(struct inode *inode, struct file *filp)
1898{
1899 int r;
1900 struct dm_file *priv;
1901
1902 r = nonseekable_open(inode, filp);
1903 if (unlikely(r))
1904 return r;
1905
1906 priv = filp->private_data = kmalloc(sizeof(struct dm_file), GFP_KERNEL);
1907 if (!priv)
1908 return -ENOMEM;
1909
1910 priv->global_event_nr = atomic_read(&dm_global_event_nr);
1911
1912 return 0;
1913}
1914
1915static int dm_release(struct inode *inode, struct file *filp)
1916{
1917 kfree(filp->private_data);
1918 return 0;
1919}
1920
1921static unsigned dm_poll(struct file *filp, poll_table *wait)
1922{
1923 struct dm_file *priv = filp->private_data;
1924 unsigned mask = 0;
1925
1926 poll_wait(filp, &dm_global_eventq, wait);
1927
1928 if ((int)(atomic_read(&dm_global_event_nr) - priv->global_event_nr) > 0)
1929 mask |= POLLIN;
1930
1931 return mask;
1932}
1933
fa027c2a 1934static const struct file_operations _ctl_fops = {
93e6442c
MP
1935 .open = dm_open,
1936 .release = dm_release,
1937 .poll = dm_poll,
27238b2b 1938 .unlocked_ioctl = dm_ctl_ioctl,
76c072b4 1939 .compat_ioctl = dm_compat_ctl_ioctl,
1da177e4 1940 .owner = THIS_MODULE,
6038f373 1941 .llseek = noop_llseek,
1da177e4
LT
1942};
1943
1944static struct miscdevice _dm_misc = {
7e507eb6 1945 .minor = MAPPER_CTRL_MINOR,
1da177e4 1946 .name = DM_NAME,
7e507eb6 1947 .nodename = DM_DIR "/" DM_CONTROL_NODE,
1da177e4
LT
1948 .fops = &_ctl_fops
1949};
1950
7e507eb6
PR
1951MODULE_ALIAS_MISCDEV(MAPPER_CTRL_MINOR);
1952MODULE_ALIAS("devname:" DM_DIR "/" DM_CONTROL_NODE);
1953
1da177e4
LT
1954/*
1955 * Create misc character device and link to DM_DIR/control.
1956 */
1957int __init dm_interface_init(void)
1958{
1959 int r;
1960
1961 r = dm_hash_init();
1962 if (r)
1963 return r;
1964
1965 r = misc_register(&_dm_misc);
1966 if (r) {
1967 DMERR("misc_register failed for control device");
1968 dm_hash_exit();
1969 return r;
1970 }
1971
1972 DMINFO("%d.%d.%d%s initialised: %s", DM_VERSION_MAJOR,
1973 DM_VERSION_MINOR, DM_VERSION_PATCHLEVEL, DM_VERSION_EXTRA,
1974 DM_DRIVER_EMAIL);
1975 return 0;
1976}
1977
1978void dm_interface_exit(void)
1979{
f368ed60 1980 misc_deregister(&_dm_misc);
1da177e4
LT
1981 dm_hash_exit();
1982}
96a1f7db
MA
1983
1984/**
1985 * dm_copy_name_and_uuid - Copy mapped device name & uuid into supplied buffers
1986 * @md: Pointer to mapped_device
1987 * @name: Buffer (size DM_NAME_LEN) for name
1988 * @uuid: Buffer (size DM_UUID_LEN) for uuid or empty string if uuid not defined
1989 */
1990int dm_copy_name_and_uuid(struct mapped_device *md, char *name, char *uuid)
1991{
1992 int r = 0;
1993 struct hash_cell *hc;
1994
1995 if (!md)
1996 return -ENXIO;
1997
6076905b 1998 mutex_lock(&dm_hash_cells_mutex);
96a1f7db
MA
1999 hc = dm_get_mdptr(md);
2000 if (!hc || hc->md != md) {
2001 r = -ENXIO;
2002 goto out;
2003 }
2004
23d39f63
MB
2005 if (name)
2006 strcpy(name, hc->name);
2007 if (uuid)
2008 strcpy(uuid, hc->uuid ? : "");
96a1f7db
MA
2009
2010out:
6076905b 2011 mutex_unlock(&dm_hash_cells_mutex);
96a1f7db
MA
2012
2013 return r;
2014}