1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735
|
/*
* Copyright (c) 2004, 2005 Christophe Varoqui
*/
#define _GNU_SOURCE
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <stdint.h>
#include <libdevmapper.h>
#include <ctype.h>
#include <errno.h>
#include <sys/sysmacros.h>
#include "autoconfig.h"
#include "devmapper.h"
#include "kpartx.h"
#define UUID_PREFIX_ "part"
#define UUID_PREFIX UUID_PREFIX_ "%d-"
#define UUID_PREFIX_LEN (sizeof(UUID_PREFIX_) - 1)
#define MAX_PREFIX_LEN (UUID_PREFIX_LEN + 4)
#define PARAMS_SIZE 1024
#ifdef LIBDM_API_COOKIE
# define DM_API_COOKIE_UNUSED__ /* empty */
#else
# define DM_API_COOKIE_UNUSED__ __attribute__((unused))
#endif
int dm_prereq(char * str, uint32_t x, uint32_t y, uint32_t z)
{
int r = 1;
struct dm_task *dmt;
struct dm_versions *target;
struct dm_versions *last_target;
if (!(dmt = dm_task_create(DM_DEVICE_LIST_VERSIONS)))
return 1;
if (!dm_task_run(dmt))
goto out;
target = dm_task_get_versions(dmt);
/* Fetch targets and print 'em */
do {
last_target = target;
if (!strncmp(str, target->name, strlen(str)) &&
/* dummy prereq on multipath version */
target->version[0] >= x &&
target->version[1] >= y &&
target->version[2] >= z
)
r = 0;
target = (void *) target + target->next;
} while (last_target != target);
out:
dm_task_destroy(dmt);
return r;
}
int dm_simplecmd(int task, const char *name, int no_flush, DM_API_COOKIE_UNUSED__ uint16_t udev_flags)
{
int r = 0;
#ifdef LIBDM_API_COOKIE
int udev_wait_flag = (task == DM_DEVICE_RESUME ||
task == DM_DEVICE_REMOVE);
uint32_t cookie = 0;
#endif
struct dm_task *dmt;
if (!(dmt = dm_task_create(task)))
return 0;
if (!dm_task_set_name(dmt, name))
goto out;
dm_task_skip_lockfs(dmt);
if (no_flush)
dm_task_no_flush(dmt);
#ifdef LIBDM_API_COOKIE
if (!udev_sync)
udev_flags |= DM_UDEV_DISABLE_LIBRARY_FALLBACK;
if (udev_wait_flag && !dm_task_set_cookie(dmt, &cookie, udev_flags))
goto out;
#endif
r = dm_task_run(dmt);
#ifdef LIBDM_API_COOKIE
if (udev_wait_flag)
dm_udev_wait(cookie);
#endif
out:
dm_task_destroy(dmt);
return r;
}
static void
strip_slash (char * device)
{
char * p = device;
while (*(p++) != 0x0) {
if (*p == '/')
*p = '!';
}
}
static int format_partname(char *buf, size_t bufsiz,
const char *mapname, const char *delim, int part)
{
if (safe_snprintf(buf, bufsiz, "%s%s%d", mapname, delim, part))
return 0;
strip_slash(buf);
return 1;
}
static char *make_prefixed_uuid(int part, const char *uuid)
{
char *prefixed_uuid;
int len = MAX_PREFIX_LEN + strlen(uuid) + 1;
prefixed_uuid = malloc(len);
if (!prefixed_uuid) {
fprintf(stderr, "cannot create prefixed uuid : %s\n",
strerror(errno));
return NULL;
}
snprintf(prefixed_uuid, len, UUID_PREFIX "%s", part, uuid);
return prefixed_uuid;
}
int dm_addmap(int task, const char *name, const char *target,
const char *params, uint64_t size, int ro, const char *uuid,
int part, mode_t mode, uid_t uid, gid_t gid)
{
int r = 0;
struct dm_task *dmt;
char *prefixed_uuid = NULL;
#ifdef LIBDM_API_COOKIE
uint32_t cookie = 0;
uint16_t udev_flags = 0;
#endif
if (!(dmt = dm_task_create (task)))
return 0;
if (!dm_task_set_name (dmt, name))
goto addout;
if (!dm_task_add_target (dmt, 0, size, target, params))
goto addout;
if (ro && !dm_task_set_ro (dmt))
goto addout;
if (task == DM_DEVICE_CREATE && uuid) {
prefixed_uuid = make_prefixed_uuid(part, uuid);
if (prefixed_uuid == NULL)
goto addout;
if (!dm_task_set_uuid(dmt, prefixed_uuid))
goto addout;
}
if (!dm_task_set_mode(dmt, mode))
goto addout;
if (!dm_task_set_uid(dmt, uid))
goto addout;
if (!dm_task_set_gid(dmt, gid))
goto addout;
#ifdef LIBDM_API_COOKIE
if (!udev_sync)
udev_flags = DM_UDEV_DISABLE_LIBRARY_FALLBACK;
if (task == DM_DEVICE_CREATE &&
!dm_task_set_cookie(dmt, &cookie, udev_flags))
goto addout;
#endif
r = dm_task_run (dmt);
#ifdef LIBDM_API_COOKIE
if (task == DM_DEVICE_CREATE)
dm_udev_wait(cookie);
#endif
addout:
dm_task_destroy (dmt);
free(prefixed_uuid);
return r;
}
static int dm_map_present(char *str, char **uuid)
{
int r = 0;
struct dm_task *dmt;
const char *uuidtmp;
struct dm_info info;
if (uuid)
*uuid = NULL;
if (!(dmt = dm_task_create(DM_DEVICE_INFO)))
return 0;
if (!dm_task_set_name(dmt, str))
goto out;
if (!dm_task_run(dmt))
goto out;
if (!dm_task_get_info(dmt, &info))
goto out;
if (!info.exists)
goto out;
r = 1;
if (uuid) {
uuidtmp = dm_task_get_uuid(dmt);
if (uuidtmp && strlen(uuidtmp))
*uuid = strdup(uuidtmp);
}
out:
dm_task_destroy(dmt);
return r;
}
static int dm_rename (const char *old, const char *new)
{
int r = 0;
struct dm_task *dmt;
uint16_t udev_flags = DM_UDEV_DISABLE_LIBRARY_FALLBACK;
uint32_t cookie = 0;
dmt = dm_task_create(DM_DEVICE_RENAME);
if (!dmt)
return r;
if (!dm_task_set_name(dmt, old) ||
!dm_task_set_newname(dmt, new) ||
!dm_task_set_cookie(dmt, &cookie, udev_flags))
goto out;
r = dm_task_run(dmt);
dm_udev_wait(cookie);
out:
dm_task_destroy(dmt);
return r;
}
static char *dm_find_uuid(const char *uuid)
{
struct dm_task *dmt;
char *name = NULL;
const char *tmp;
if ((dmt = dm_task_create(DM_DEVICE_INFO)) == NULL)
return NULL;
if (!dm_task_set_uuid(dmt, uuid) ||
!dm_task_run(dmt))
goto out;
tmp = dm_task_get_name(dmt);
if (tmp != NULL && *tmp != '\0')
name = strdup(tmp);
out:
dm_task_destroy(dmt);
return name;
}
char *
dm_mapname(int major, int minor)
{
struct dm_task *dmt;
char *mapname = NULL;
const char *map;
if (!(dmt = dm_task_create(DM_DEVICE_INFO)))
return NULL;
dm_task_set_major(dmt, major);
dm_task_set_minor(dmt, minor);
if (!dm_task_run(dmt))
goto out;
map = dm_task_get_name(dmt);
if (map && strlen(map))
mapname = strdup(map);
out:
dm_task_destroy(dmt);
return mapname;
}
/*
* dm_get_first_dep
*
* Return the device number of the first dependent device
* for a given target.
*/
dev_t dm_get_first_dep(char *devname)
{
struct dm_task *dmt;
struct dm_deps *dm_deps;
dev_t ret = 0;
if ((dmt = dm_task_create(DM_DEVICE_DEPS)) == NULL) {
return ret;
}
if (!dm_task_set_name(dmt, devname)) {
goto out;
}
if (!dm_task_run(dmt)) {
goto out;
}
if ((dm_deps = dm_task_get_deps(dmt)) == NULL) {
goto out;
}
if (dm_deps->count > 0) {
ret = dm_deps->device[0];
}
out:
dm_task_destroy(dmt);
return ret;
}
char *
dm_mapuuid(const char *mapname)
{
struct dm_task *dmt;
const char *tmp;
char *uuid = NULL;
if (!(dmt = dm_task_create(DM_DEVICE_INFO)))
return NULL;
if (!dm_task_set_name(dmt, mapname))
goto out;
if (!dm_task_run(dmt))
goto out;
tmp = dm_task_get_uuid(dmt);
if (tmp[0] != '\0')
uuid = strdup(tmp);
out:
dm_task_destroy(dmt);
return uuid;
}
int
dm_devn (const char * mapname, unsigned int *major, unsigned int *minor)
{
int r = 1;
struct dm_task *dmt;
struct dm_info info;
if (!(dmt = dm_task_create(DM_DEVICE_INFO)))
return 1;
if (!dm_task_set_name(dmt, mapname))
goto out;
if (!dm_task_run(dmt))
goto out;
if (!dm_task_get_info(dmt, &info) || info.exists == 0)
goto out;
*major = info.major;
*minor = info.minor;
r = 0;
out:
dm_task_destroy(dmt);
return r;
}
static int
dm_get_map(const char *mapname, char * outparams)
{
int r = 1;
struct dm_task *dmt;
uint64_t start, length;
char *target_type = NULL;
char *params = NULL;
if (!(dmt = dm_task_create(DM_DEVICE_TABLE)))
return 1;
if (!dm_task_set_name(dmt, mapname))
goto out;
if (!dm_task_run(dmt))
goto out;
/* Fetch 1st target */
if (dm_get_next_target(dmt, NULL, &start, &length,
&target_type, ¶ms) != NULL || !params)
/* more than one target or not found target */
goto out;
if (snprintf(outparams, PARAMS_SIZE, "%s", params) <= PARAMS_SIZE)
r = 0;
out:
dm_task_destroy(dmt);
return r;
}
static int
dm_get_opencount (const char * mapname)
{
int r = -1;
struct dm_task *dmt;
struct dm_info info;
if (!(dmt = dm_task_create(DM_DEVICE_INFO)))
return 0;
if (!dm_task_set_name(dmt, mapname))
goto out;
if (!dm_task_run(dmt))
goto out;
if (!dm_task_get_info(dmt, &info))
goto out;
if (!info.exists)
goto out;
r = info.open_count;
out:
dm_task_destroy(dmt);
return r;
}
/*
* returns:
* 1 : match
* 0 : no match
* -1 : empty map
*/
static int
dm_type(const char * name, char * type)
{
int r = 0;
struct dm_task *dmt;
uint64_t start, length;
char *target_type = NULL;
char *params;
if (!(dmt = dm_task_create(DM_DEVICE_TABLE)))
return 0;
if (!dm_task_set_name(dmt, name))
goto out;
if (!dm_task_run(dmt))
goto out;
/* Fetch 1st target */
if (dm_get_next_target(dmt, NULL, &start, &length,
&target_type, ¶ms) != NULL)
/* more than one target */
r = -1;
else if (!target_type)
r = -1;
else if (!strcmp(target_type, type))
r = 1;
out:
dm_task_destroy(dmt);
return r;
}
/*
* returns:
* 0 : if both uuids end with same suffix which starts with UUID_PREFIX
* 1 : otherwise
*/
int
dm_compare_uuid(const char *mapuuid, const char *partname)
{
char *partuuid;
int r = 1;
partuuid = dm_mapuuid(partname);
if (!partuuid)
return 1;
if (!strncmp(partuuid, UUID_PREFIX_, UUID_PREFIX_LEN)) {
char *p = partuuid + UUID_PREFIX_LEN;
/* skip partition number */
while (isdigit(*p))
p++;
if (p != partuuid + UUID_PREFIX_LEN && *p == '-' &&
!strcmp(mapuuid, p + 1))
r = 0;
}
free(partuuid);
return r;
}
struct remove_data {
int verbose;
};
static int
do_foreach_partmaps (const char * mapname, const char *uuid,
dev_t devt,
int (*partmap_func)(const char *, void *),
void *data)
{
struct dm_task *dmt;
struct dm_names *names;
struct remove_data *rd = data;
unsigned next = 0;
char params[PARAMS_SIZE];
unsigned int major, minor;
char dev_t[32];
int r = 1;
int is_dmdev = 1;
if (!(dmt = dm_task_create(DM_DEVICE_LIST)))
return 1;
if (!dm_task_run(dmt))
goto out;
if (!(names = dm_task_get_names(dmt)))
goto out;
if (!names->dev) {
r = 0; /* this is perfectly valid */
goto out;
}
if (dm_devn(mapname, &major, &minor) ||
(major != major(devt) || minor != minor(devt)))
/*
* The latter could happen if a dm device "/dev/mapper/loop0"
* exits while kpartx is called on "/dev/loop0".
*/
is_dmdev = 0;
sprintf(dev_t, "%d:%d", major(devt), minor(devt));
do {
/*
* skip our devmap
*/
if (is_dmdev && !strcmp(names->name, mapname))
goto next;
/*
* skip if we cannot fetch the map table from the kernel
*/
if (dm_get_map(names->name, ¶ms[0]))
goto next;
/*
* skip if the table does not map over the multipath map
*/
if (!strstr(params, dev_t))
goto next;
/*
* skip if devmap target is not "linear"
*/
if (dm_type(names->name, "linear") != 1) {
if (rd->verbose)
printf("%s: is not a linear target. Not removing\n",
names->name);
goto next;
}
/*
* skip if uuids don't match
*/
if (uuid && dm_compare_uuid(uuid, names->name)) {
if (rd->verbose)
printf("%s: is not a kpartx partition. Not removing\n",
names->name);
goto next;
}
if (partmap_func(names->name, data) != 0)
goto out;
next:
next = names->next;
names = (void *) names + next;
} while (next);
r = 0;
out:
dm_task_destroy (dmt);
return r;
}
static int
remove_partmap(const char *name, void *data)
{
struct remove_data *rd = (struct remove_data *)data;
int r = 0;
if (dm_get_opencount(name)) {
if (rd->verbose)
printf("%s is in use. Not removing\n", name);
return 1;
}
if (!dm_simplecmd(DM_DEVICE_REMOVE, name, 0, 0)) {
if (rd->verbose)
printf("%s: failed to remove\n", name);
r = 1;
} else if (rd->verbose)
printf("del devmap : %s\n", name);
return r;
}
int
dm_remove_partmaps (char * mapname, char *uuid, dev_t devt, int verbose)
{
struct remove_data rd = { verbose };
return do_foreach_partmaps(mapname, uuid, devt, remove_partmap, &rd);
}
int dm_find_part(const char *parent, const char *delim, int part,
const char *parent_uuid,
char *name, size_t namesiz, char **part_uuid, int verbose)
{
int r;
char params[PARAMS_SIZE];
char *tmp;
char *uuid;
unsigned int major, minor;
char dev_t[32];
if (!format_partname(name, namesiz, parent, delim, part)) {
if (verbose)
fprintf(stderr, "partname too small\n");
return 0;
}
r = dm_map_present(name, part_uuid);
if (r == 1 || parent_uuid == NULL || *parent_uuid == '\0')
return r;
uuid = make_prefixed_uuid(part, parent_uuid);
if (!uuid)
return 0;
tmp = dm_find_uuid(uuid);
if (tmp == NULL)
goto out;
/* Sanity check on partition, see dm_foreach_partmaps */
if (dm_type(tmp, "linear") != 1)
goto out;
/*
* Try nondm uuid first. That way we avoid confusing
* a device name with a device mapper name.
*/
if (!nondm_parse_uuid(parent_uuid, &major, &minor) &&
dm_devn(parent, &major, &minor))
goto out;
snprintf(dev_t, sizeof(dev_t), "%d:%d", major, minor);
if (dm_get_map(tmp, params))
goto out;
if (!strstr(params, dev_t))
goto out;
if (verbose)
fprintf(stderr, "found map %s for uuid %s, renaming to %s\n",
tmp, uuid, name);
r = dm_rename(tmp, name);
if (r == 1) {
free(tmp);
*part_uuid = uuid;
return 1;
}
if (verbose)
fprintf(stderr, "renaming %s->%s failed\n", tmp, name);
out:
free(uuid);
free(tmp);
return r;
}
char *nondm_create_uuid(dev_t devt)
{
char *uuid;
if (asprintf(&uuid, "%s_%u:%u_%s", NONDM_UUID_PREFIX, major(devt),
minor(devt), NONDM_UUID_SUFFIX) >= 0)
return uuid;
else
return NULL;
}
int nondm_parse_uuid(const char *uuid, unsigned int *major, unsigned int *minor)
{
const char *p;
char *e;
int ma, mi;
if (strncmp(uuid, NONDM_UUID_PREFIX "_", sizeof(NONDM_UUID_PREFIX)))
return 0;
p = uuid + sizeof(NONDM_UUID_PREFIX);
ma = strtoul(p, &e, 10);
if (e == p || *e != ':')
return 0;
p = e + 1;
mi = strtoul(p, &e, 10);
if (e == p || *e != '_')
return 0;
p = e + 1;
if (strcmp(p, NONDM_UUID_SUFFIX))
return 0;
*major = ma;
*minor = mi;
return 1;
}
|