You need to sign in or sign up before continuing.
storage_backend_logical.c 34.1 KB
Newer Older
1
/*
2
 * storage_backend_logical.c: storage backend for logical volume handling
3
 *
4
 * Copyright (C) 2007-2016 Red Hat, Inc.
5 6 7 8 9 10 11 12 13 14 15 16 17
 * Copyright (C) 2007-2008 Daniel P. Berrange
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
18
 * License along with this library.  If not, see
O
Osier Yang 已提交
19
 * <http://www.gnu.org/licenses/>.
20 21 22 23 24 25 26 27 28 29 30 31 32 33
 *
 * Author: Daniel P. Berrange <berrange@redhat.com>
 */

#include <config.h>

#include <sys/wait.h>
#include <sys/stat.h>
#include <stdio.h>
#include <regex.h>
#include <string.h>
#include <unistd.h>
#include <fcntl.h>

34
#include "virerror.h"
35 36
#include "storage_backend_logical.h"
#include "storage_conf.h"
37
#include "vircommand.h"
38
#include "viralloc.h"
39
#include "virlog.h"
E
Eric Blake 已提交
40
#include "virfile.h"
41
#include "virstring.h"
42
#include "storage_util.h"
43

44 45
#define VIR_FROM_THIS VIR_FROM_STORAGE

46 47
VIR_LOG_INIT("storage.storage_backend_logical");

48 49 50 51
#define PV_BLANK_SECTOR_SIZE 512


static int
52
virStorageBackendLogicalSetActive(virStoragePoolObjPtr pool,
53 54
                                  int on)
{
55
    int ret;
56
    virStoragePoolDefPtr def = virStoragePoolObjGetDef(pool);
57 58 59
    virCommandPtr cmd =
        virCommandNewArgList(VGCHANGE,
                             on ? "-aly" : "-aln",
60
                             def->source.name,
61 62 63 64 65
                             NULL);

    ret = virCommandRun(cmd, NULL);
    virCommandFree(cmd);
    return ret;
66 67 68
}


69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
/*
 * @path: Path to the device
 *
 * Remove the pv device since we're done with it. This ensures a subsequent
 * create won't require special arguments in order for force recreation.
 */
static void
virStorageBackendLogicalRemoveDevice(const char *path)
{
    virCommandPtr cmd = virCommandNewArgList(PVREMOVE, path, NULL);

    if (virCommandRun(cmd, NULL) < 0)
        VIR_INFO("Failed to pvremove logical device '%s'", path);
    virCommandFree(cmd);
}


86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103
/*
 * @path: Path to the device
 *
 * Initialize and pvcreate the device.
 *
 * Returns 0 on success, -1 on failure with error message set
 */
static int
virStorageBackendLogicalInitializeDevice(const char *path)
{
    int ret = -1;
    virCommandPtr pvcmd = NULL;

    /*
     * LVM requires that the first sector is blanked if using
     * a whole disk as a PV. So we just blank them out regardless
     * rather than trying to figure out if we're a disk or partition
     */
104
    if (virStorageBackendZeroPartitionTable(path, 1024 * 1024) < 0)
105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123
        return -1;

    /*
     * Initialize the physical volume because vgcreate is not
     * clever enough todo this for us :-(
     */
    pvcmd = virCommandNewArgList(PVCREATE, path, NULL);
    if (virCommandRun(pvcmd, NULL) < 0)
        goto cleanup;

    ret = 0;

 cleanup:
    virCommandFree(pvcmd);

    return ret;
}


124
#define VIR_STORAGE_VOL_LOGICAL_SEGTYPE_STRIPED "striped"
125 126
#define VIR_STORAGE_VOL_LOGICAL_SEGTYPE_MIRROR  "mirror"
#define VIR_STORAGE_VOL_LOGICAL_SEGTYPE_RAID    "raid"
127

128 129 130 131 132
struct virStorageBackendLogicalPoolVolData {
    virStoragePoolObjPtr pool;
    virStorageVolDefPtr vol;
};

133
static int
134 135
virStorageBackendLogicalParseVolExtents(virStorageVolDefPtr vol,
                                        char **const groups)
136
{
137
    int nextents, ret = -1;
138 139 140 141 142
    const char *regex_unit = "(\\S+)\\((\\S+)\\)";
    char *regex = NULL;
    regex_t *reg = NULL;
    regmatch_t *vars = NULL;
    char *p = NULL;
143
    size_t i;
144 145
    int err, nvars;
    unsigned long long offset, size, length;
146 147 148
    virStorageVolSourceExtent extent;

    memset(&extent, 0, sizeof(extent));
149

150 151 152 153 154 155 156
    /* Assume 1 extent (the regex for 'devices' is "(\\S+)") and only
     * check the 'stripes' field if we have a striped, mirror, or one of
     * the raid (raid1, raid4, raid5*, raid6*, or raid10) segtypes in which
     * case the stripes field will denote the number of lv's within the
     * 'devices' field in order to generate the proper regex to decode
     * the field
     */
157
    nextents = 1;
158 159 160
    if (STREQ(groups[4], VIR_STORAGE_VOL_LOGICAL_SEGTYPE_STRIPED) ||
        STREQ(groups[4], VIR_STORAGE_VOL_LOGICAL_SEGTYPE_MIRROR) ||
        STRPREFIX(groups[4], VIR_STORAGE_VOL_LOGICAL_SEGTYPE_RAID)) {
161
        if (virStrToLong_i(groups[5], NULL, 10, &nextents) < 0) {
162 163
            virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                           _("malformed volume extent stripes value"));
164 165 166
            goto cleanup;
        }
    }
167

168
    if (virStrToLong_ull(groups[6], NULL, 10, &length) < 0) {
169 170
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       "%s", _("malformed volume extent length value"));
171 172
        goto cleanup;
    }
173

174
    if (virStrToLong_ull(groups[7], NULL, 10, &size) < 0) {
175 176
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       "%s", _("malformed volume extent size value"));
177 178 179
        goto cleanup;
    }

180 181
    /* Allocate space for 'nextents' regex_unit strings plus a comma for each */
    if (VIR_ALLOC_N(regex, nextents * (strlen(regex_unit) + 1) + 1) < 0)
182
        goto cleanup;
J
Ján Tomko 已提交
183
    strcat(regex, regex_unit);
184
    for (i = 1; i < nextents; i++) {
E
Eric Blake 已提交
185
        /* "," is the separator of "devices" field */
186
        strcat(regex, ",");
J
Ján Tomko 已提交
187
        strcat(regex, regex_unit);
188 189
    }

190
    if (VIR_ALLOC(reg) < 0)
191
        goto cleanup;
192

193 194 195 196
    /* Each extent has a "path:offset" pair, and vars[0] will
     * be the whole matched string.
     */
    nvars = (nextents * 2) + 1;
197
    if (VIR_ALLOC_N(vars, nvars) < 0)
198 199 200 201 202 203
        goto cleanup;

    err = regcomp(reg, regex, REG_EXTENDED);
    if (err != 0) {
        char error[100];
        regerror(err, reg, error, sizeof(error));
204 205 206
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Failed to compile regex %s"),
                       error);
207
        goto cleanup;
208
    }
209

210 211 212
    err = regexec(reg, groups[3], nvars, vars, 0);
    regfree(reg);
    if (err != 0) {
213 214
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("malformed volume extent devices value"));
215
        goto cleanup;
216 217
    }

218
    p = groups[3];
219

220 221
    /* vars[0] is skipped */
    for (i = 0; i < nextents; i++) {
222 223
        size_t j;
        int len;
224
        char *offset_str = NULL;
225 226 227 228 229

        j = (i * 2) + 1;
        len = vars[j].rm_eo - vars[j].rm_so;
        p[vars[j].rm_eo] = '\0';

230
        if (VIR_STRNDUP(extent.path,
231
                        p + vars[j].rm_so, len) < 0)
232 233 234
            goto cleanup;

        len = vars[j + 1].rm_eo - vars[j + 1].rm_so;
235
        if (VIR_STRNDUP(offset_str, p + vars[j + 1].rm_so, len) < 0)
236 237 238
            goto cleanup;

        if (virStrToLong_ull(offset_str, NULL, 10, &offset) < 0) {
239 240
            virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                           _("malformed volume extent offset value"));
E
Eric Blake 已提交
241
            VIR_FREE(offset_str);
242 243 244
            goto cleanup;
        }
        VIR_FREE(offset_str);
245 246
        extent.start = offset * size;
        extent.end = (offset * size) + length;
247

248 249 250
        if (VIR_APPEND_ELEMENT(vol->source.extents, vol->source.nextent,
                               extent) < 0)
            goto cleanup;
251 252
    }

253 254 255 256 257 258
    ret = 0;

 cleanup:
    VIR_FREE(regex);
    VIR_FREE(reg);
    VIR_FREE(vars);
259
    VIR_FREE(extent.path);
260 261 262 263 264 265 266 267 268 269
    return ret;
}


static int
virStorageBackendLogicalMakeVol(char **const groups,
                                void *opaque)
{
    struct virStorageBackendLogicalPoolVolData *data = opaque;
    virStoragePoolObjPtr pool = data->pool;
270
    virStoragePoolDefPtr def = virStoragePoolObjGetDef(pool);
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
    virStorageVolDefPtr vol = NULL;
    bool is_new_vol = false;
    int ret = -1;
    const char *attrs = groups[9];

    /* Skip inactive volume */
    if (attrs[4] != 'a')
        return 0;

    /*
     * Skip thin pools(t). These show up in normal lvs output
     * but do not have a corresponding /dev/$vg/$lv device that
     * is created by udev. This breaks assumptions in later code.
     */
    if (attrs[0] == 't')
        return 0;

    /* See if we're only looking for a specific volume */
    if (data->vol != NULL) {
        vol = data->vol;
        if (STRNEQ(vol->name, groups[0]))
            return 0;
    }

    /* Or filling in more data on an existing volume */
    if (vol == NULL)
        vol = virStorageVolDefFindByName(pool, groups[0]);

    /* Or a completely new volume */
    if (vol == NULL) {
        if (VIR_ALLOC(vol) < 0)
            return -1;

        is_new_vol = true;
        vol->type = VIR_STORAGE_VOL_BLOCK;

        if (VIR_STRDUP(vol->name, groups[0]) < 0)
            goto cleanup;

    }

    if (vol->target.path == NULL) {
        if (virAsprintf(&vol->target.path, "%s/%s",
314
                        def->target.path, vol->name) < 0)
315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338
            goto cleanup;
    }

    /* Mark the (s) sparse/snapshot lv, e.g. the lv created using
     * the --virtualsize/-V option. We've already ignored the (t)hin
     * pool definition. In the manner libvirt defines these, the
     * thin pool is hidden to the lvs output, except as the name
     * in brackets [] described for the groups[1] (backingStore).
     */
    if (attrs[0] == 's')
        vol->target.sparse = true;

    /* Skips the backingStore of lv created with "--virtualsize",
     * its original device "/dev/$vgname/$lvname_vorigin" is
     * just for lvm internal use, one should never use it.
     *
     * (lvs outputs "[$lvname_vorigin] for field "origin" if the
     *  lv is created with "--virtualsize").
     */
    if (groups[1] && STRNEQ(groups[1], "") && (groups[1][0] != '[')) {
        if (VIR_ALLOC(vol->target.backingStore) < 0)
            goto cleanup;

        if (virAsprintf(&vol->target.backingStore->path, "%s/%s",
339
                        def->target.path, groups[1]) < 0)
340 341 342
            goto cleanup;

        vol->target.backingStore->format = VIR_STORAGE_POOL_LOGICAL_LVM2;
343
        vol->target.backingStore->type = VIR_STORAGE_TYPE_BLOCK;
344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361
    }

    if (!vol->key && VIR_STRDUP(vol->key, groups[2]) < 0)
        goto cleanup;

    if (virStorageBackendUpdateVolInfo(vol, false,
                                       VIR_STORAGE_VOL_OPEN_DEFAULT, 0) < 0)
        goto cleanup;

    if (virStrToLong_ull(groups[8], NULL, 10, &vol->target.allocation) < 0) {
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       "%s", _("malformed volume allocation value"));
        goto cleanup;
    }

    if (virStorageBackendLogicalParseVolExtents(vol, groups) < 0)
        goto cleanup;

362
    if (is_new_vol && virStoragePoolObjAddVol(pool, vol) < 0)
363
        goto cleanup;
364
    vol = NULL;
365

366 367
    ret = 0;

368
 cleanup:
369
    if (is_new_vol)
370 371
        virStorageVolDefFree(vol);
    return ret;
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
#define VIR_STORAGE_VOL_LOGICAL_PREFIX_REGEX "^\\s*"
#define VIR_STORAGE_VOL_LOGICAL_LV_NAME_REGEX "(\\S+)#"
#define VIR_STORAGE_VOL_LOGICAL_ORIGIN_REGEX "(\\S*)#"
#define VIR_STORAGE_VOL_LOGICAL_UUID_REGEX "(\\S+)#"
#define VIR_STORAGE_VOL_LOGICAL_DEVICES_REGEX "(\\S+)#"
#define VIR_STORAGE_VOL_LOGICAL_SEGTYPE_REGEX "(\\S+)#"
#define VIR_STORAGE_VOL_LOGICAL_STRIPES_REGEX "([0-9]+)#"
#define VIR_STORAGE_VOL_LOGICAL_SEG_SIZE_REGEX "(\\S+)#"
#define VIR_STORAGE_VOL_LOGICAL_VG_EXTENT_SIZE_REGEX "([0-9]+)#"
#define VIR_STORAGE_VOL_LOGICAL_SIZE_REGEX "([0-9]+)#"
#define VIR_STORAGE_VOL_LOGICAL_LV_ATTR_REGEX "(\\S+)#"
#define VIR_STORAGE_VOL_LOGICAL_SUFFIX_REGEX "?\\s*$"

#define VIR_STORAGE_VOL_LOGICAL_REGEX_COUNT 10
#define VIR_STORAGE_VOL_LOGICAL_REGEX \
           VIR_STORAGE_VOL_LOGICAL_PREFIX_REGEX \
           VIR_STORAGE_VOL_LOGICAL_LV_NAME_REGEX \
           VIR_STORAGE_VOL_LOGICAL_ORIGIN_REGEX \
           VIR_STORAGE_VOL_LOGICAL_UUID_REGEX \
           VIR_STORAGE_VOL_LOGICAL_DEVICES_REGEX \
           VIR_STORAGE_VOL_LOGICAL_SEGTYPE_REGEX \
           VIR_STORAGE_VOL_LOGICAL_STRIPES_REGEX \
           VIR_STORAGE_VOL_LOGICAL_SEG_SIZE_REGEX \
           VIR_STORAGE_VOL_LOGICAL_VG_EXTENT_SIZE_REGEX \
           VIR_STORAGE_VOL_LOGICAL_SIZE_REGEX \
           VIR_STORAGE_VOL_LOGICAL_LV_ATTR_REGEX \
           VIR_STORAGE_VOL_LOGICAL_SUFFIX_REGEX

402
static int
403
virStorageBackendLogicalFindLVs(virStoragePoolObjPtr pool,
404 405 406
                                virStorageVolDefPtr vol)
{
    /*
407 408
     * # lvs --separator # --noheadings --units b --unbuffered --nosuffix --options \
     * "lv_name,origin,uuid,devices,segtype,stripes,seg_size,vg_extent_size,size,lv_attr" VGNAME
O
Osier Yang 已提交
409
     *
410 411 412 413 414 415
     * RootLV##06UgP5-2rhb-w3Bo-3mdR-WeoL-pytO-SAa2ky#/dev/hda2(0)#linear#1#5234491392#33554432#5234491392#-wi-ao
     * SwapLV##oHviCK-8Ik0-paqS-V20c-nkhY-Bm1e-zgzU0M#/dev/hda2(156)#linear#1#1040187392#33554432#1040187392#-wi-ao
     * Test2##3pg3he-mQsA-5Sui-h0i6-HNmc-Cz7W-QSndcR#/dev/hda2(219)#linear#1#1073741824#33554432#1073741824#owi-a-
     * Test3##UB5hFw-kmlm-LSoX-EI1t-ioVd-h7GL-M0W8Ht#/dev/hda2(251)#linear#1#2181038080#33554432#2181038080#-wi-a-
     * Test3#Test2#UB5hFw-kmlm-LSoX-EI1t-ioVd-h7GL-M0W8Ht#/dev/hda2(187)#linear#1#1040187392#33554432#1040187392#swi-a-
     * test_stripes##fSLSZH-zAS2-yAIb-n4mV-Al9u-HA3V-oo9K1B#/dev/sdc1(10240),/dev/sdd1(0)#striped#2#42949672960#4194304#-wi-a-
416
     *
O
Osier Yang 已提交
417 418
     * Pull out name, origin, & uuid, device, device extent start #,
     * segment size, extent size, size, attrs
419 420
     *
     * NB can be multiple rows per volume if they have many extents
421
     *
422 423
     * NB lvs from some distros (e.g. SLES10 SP2) outputs trailing ","
     * on each line
424 425 426
     *
     * NB Encrypted logical volumes can print ':' in their name, so it is
     *    not a suitable separator (rhbz 470693).
427
     *
428 429
     * NB "devices" field has multiple device paths and "," if the volume is
     *    striped, so "," is not a suitable separator either (rhbz 727474).
430 431
     */
    const char *regexes[] = {
432
        VIR_STORAGE_VOL_LOGICAL_REGEX
433 434
    };
    int vars[] = {
435
        VIR_STORAGE_VOL_LOGICAL_REGEX_COUNT
436
    };
437 438
    int ret = -1;
    virCommandPtr cmd;
439
    virStoragePoolDefPtr def = virStoragePoolObjGetDef(pool);
440 441 442 443
    struct virStorageBackendLogicalPoolVolData cbdata = {
        .pool = pool,
        .vol = vol,
    };
444 445 446 447 448 449 450

    cmd = virCommandNewArgList(LVS,
                               "--separator", "#",
                               "--noheadings",
                               "--units", "b",
                               "--unbuffered",
                               "--nosuffix",
O
Osier Yang 已提交
451 452
                               "--options",
                               "lv_name,origin,uuid,devices,segtype,stripes,seg_size,vg_extent_size,size,lv_attr",
453
                               def->source.name,
454
                               NULL);
455 456 457 458 459 460
    if (virCommandRunRegex(cmd,
                           1,
                           regexes,
                           vars,
                           virStorageBackendLogicalMakeVol,
                           &cbdata,
461 462
                           "lvs",
                           NULL) < 0)
463
        goto cleanup;
464

465
    ret = 0;
466
 cleanup:
467 468
    virCommandFree(cmd);
    return ret;
469 470 471
}

static int
472 473
virStorageBackendLogicalRefreshPoolFunc(char **const groups,
                                        void *data)
474
{
475
    virStoragePoolObjPtr pool = data;
476 477 478
    virStoragePoolDefPtr def = virStoragePoolObjGetDef(pool);

    if (virStrToLong_ull(groups[0], NULL, 10, &def->capacity) < 0)
479
        return -1;
480
    if (virStrToLong_ull(groups[1], NULL, 10, &def->available) < 0)
481
        return -1;
482
    def->allocation = def->capacity - def->available;
483 484 485 486 487

    return 0;
}


488
static int
489
virStorageBackendLogicalFindPoolSourcesFunc(char **const groups,
490 491
                                            void *data)
{
492 493 494
    virStoragePoolSourceListPtr sourceList = data;
    char *pvname = NULL;
    char *vgname = NULL;
495
    size_t i;
496 497 498
    virStoragePoolSourceDevicePtr dev;
    virStoragePoolSource *thisSource;

499 500 501
    if (VIR_STRDUP(pvname, groups[0]) < 0 ||
        VIR_STRDUP(vgname, groups[1]) < 0)
        goto error;
502 503

    thisSource = NULL;
504
    for (i = 0; i < sourceList->nsources; i++) {
505 506 507 508 509
        if (STREQ(sourceList->sources[i].name, vgname)) {
            thisSource = &sourceList->sources[i];
            break;
        }
    }
510

511
    if (thisSource == NULL) {
512
        if (!(thisSource = virStoragePoolSourceListNewSource(sourceList)))
513
            goto error;
514 515

        thisSource->name = vgname;
516
    }
517 518
    else
        VIR_FREE(vgname);
519

520
    if (VIR_REALLOC_N(thisSource->devices, thisSource->ndevice + 1) != 0)
521
        goto error;
522

523 524
    dev = &thisSource->devices[thisSource->ndevice];
    thisSource->ndevice++;
525
    thisSource->format = VIR_STORAGE_POOL_LOGICAL_LVM2;
526 527 528

    memset(dev, 0, sizeof(*dev));
    dev->path = pvname;
529 530

    return 0;
531

532
 error:
533 534 535 536
    VIR_FREE(pvname);
    VIR_FREE(vgname);

    return -1;
537 538
}

539 540 541 542 543 544 545 546 547 548
/*
 * @sourceList: Pointer to a storage pool source list
 *
 * Use the pvs command to fill the list of pv_name and vg_name associated
 * into the passed sourceList.
 *
 * Returns 0 if successful, -1 and sets error on failure
 */
static int
virStorageBackendLogicalGetPoolSources(virStoragePoolSourceListPtr sourceList)
549 550
{
    /*
551 552 553
     * # pvs --noheadings -o pv_name,vg_name
     *   /dev/sdb
     *   /dev/sdc VolGroup00
554 555
     */
    const char *regexes[] = {
556
        "^\\s*(\\S+)\\s+(\\S+)\\s*$"
557 558
    };
    int vars[] = {
559
        2
560
    };
561
    virCommandPtr cmd;
562
    int ret = -1;
E
Eric Blake 已提交
563

564 565 566 567 568
    /*
     * NOTE: ignoring errors here; this is just to "touch" any logical volumes
     * that might be hanging around, so if this fails for some reason, the
     * worst that happens is that scanning doesn't pick everything up
     */
569 570
    cmd = virCommandNew(VGSCAN);
    if (virCommandRun(cmd, NULL) < 0)
571
        VIR_WARN("Failure when running vgscan to refresh physical volumes");
572
    virCommandFree(cmd);
573

574 575 576
    cmd = virCommandNewArgList(PVS,
                               "--noheadings",
                               "-o", "pv_name,vg_name",
577
                               NULL, NULL);
578 579
    if (virCommandRunRegex(cmd, 1, regexes, vars,
                           virStorageBackendLogicalFindPoolSourcesFunc,
580
                           sourceList, "pvs", NULL) < 0)
581 582 583 584
        goto cleanup;
    ret = 0;

 cleanup:
585
    virCommandFree(cmd);
586 587 588 589 590
    return ret;
}


static char *
591
virStorageBackendLogicalFindPoolSources(const char *srcSpec ATTRIBUTE_UNUSED,
592 593 594 595 596 597 598 599 600 601 602 603 604
                                        unsigned int flags)
{
    virStoragePoolSourceList sourceList;
    size_t i;
    char *retval = NULL;

    virCheckFlags(0, NULL);

    memset(&sourceList, 0, sizeof(sourceList));
    sourceList.type = VIR_STORAGE_POOL_LOGICAL;

    if (virStorageBackendLogicalGetPoolSources(&sourceList) < 0)
        goto cleanup;
605

606
    retval = virStoragePoolSourceListFormat(&sourceList);
607
    if (retval == NULL) {
608 609
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("failed to get source from sourceList"));
610 611 612 613
        goto cleanup;
    }

 cleanup:
614
    for (i = 0; i < sourceList.nsources; i++)
615
        virStoragePoolSourceClear(&sourceList.sources[i]);
616
    VIR_FREE(sourceList.sources);
617 618 619 620 621

    return retval;
}


622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638
/*
 * virStorageBackendLogicalMatchPoolSource
 * @pool: Pointer to the source pool object
 *
 * Search the output generated by a 'pvs --noheadings -o pv_name,vg_name'
 * to match the 'vg_name' with the pool def->source.name and for the list
 * of pool def->source.devices[].
 *
 * Returns true if the volume group name matches the pool's source.name
 * and at least one of the pool's def->source.devices[] matches the
 * list of physical device names listed for the pool. Return false if
 * we cannot find a matching volume group name and if we cannot match
 * the any device list members.
 */
static bool
virStorageBackendLogicalMatchPoolSource(virStoragePoolObjPtr pool)
{
639
    virStoragePoolDefPtr def = virStoragePoolObjGetDef(pool);
640
    virStoragePoolSourceList sourceList;
641
    virStoragePoolSource *thisSource = NULL;
642 643 644 645 646 647 648 649 650 651 652 653 654
    size_t i, j;
    int matchcount = 0;
    bool ret = false;

    memset(&sourceList, 0, sizeof(sourceList));
    sourceList.type = VIR_STORAGE_POOL_LOGICAL;

    if (virStorageBackendLogicalGetPoolSources(&sourceList) < 0)
        goto cleanup;

    /* Search the pvs output for this pool's source.name */
    for (i = 0; i < sourceList.nsources; i++) {
        thisSource = &sourceList.sources[i];
655
        if (STREQ(thisSource->name, def->source.name))
656 657 658 659 660 661
            break;
    }

    if (i == sourceList.nsources) {
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                       _("cannot find logical volume group name '%s'"),
662
                       def->source.name);
663 664 665
        goto cleanup;
    }

666 667 668 669
    /* If the pool has defined source device(s), then let's make sure
     * they match as well; otherwise, matching can only occur on the
     * pool's name.
     */
670
   if (!def->source.ndevice) {
671 672 673 674
        ret = true;
        goto cleanup;
    }

675 676 677
    /* Let's make sure the pool's device(s) match what the pvs output has
     * for volume group devices.
     */
678
    for (i = 0; i < def->source.ndevice; i++) {
679
        for (j = 0; j < thisSource->ndevice; j++) {
680
            if (STREQ(def->source.devices[i].path,
681 682 683 684 685 686 687 688 689 690 691
                      thisSource->devices[j].path))
                matchcount++;
        }
    }

    /* If we didn't find any matches, then this pool has listed (a) source
     * device path(s) that don't/doesn't match what was created for the pool
     */
    if (matchcount == 0) {
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                       _("cannot find any matching source devices for logical "
692
                         "volume group '%s'"), def->source.name);
693 694 695 696 697 698 699 700
        goto cleanup;
    }

    /* Either there's more devices in the pool source device list or there's
     * more devices in the pvs output. Could easily happen if someone decides
     * to 'add' to or 'remove' from the volume group outside of libvirt's
     * knowledge. Rather than fail on that, provide a warning and move on.
     */
701
    if (matchcount != def->source.ndevice)
702 703 704 705 706 707 708 709 710 711 712 713 714
        VIR_WARN("pool device list count doesn't match pvs device list count");

    ret = true;

 cleanup:
    for (i = 0; i < sourceList.nsources; i++)
        virStoragePoolSourceClear(&sourceList.sources[i]);
    VIR_FREE(sourceList.sources);

    return ret;
}


715
static int
716
virStorageBackendLogicalCheckPool(virStoragePoolObjPtr pool,
717 718
                                  bool *isActive)
{
719 720
    virStoragePoolDefPtr def = virStoragePoolObjGetDef(pool);

721 722 723
    /* If we can find the target.path as well as ensure that the
     * pool's def source
     */
724
    *isActive = virFileExists(def->target.path) &&
725
                virStorageBackendLogicalMatchPoolSource(pool);
726 727 728
    return 0;
}

729
static int
730
virStorageBackendLogicalStartPool(virStoragePoolObjPtr pool)
731
{
732 733 734 735 736
    /* Let's make sure that the pool's name matches the pvs output and
     * that the pool's source devices match the pvs output.
     */
    if (!virStorageBackendLogicalMatchPoolSource(pool) ||
        virStorageBackendLogicalSetActive(pool, 1) < 0)
737 738 739 740 741 742 743
        return -1;

    return 0;
}


static int
744
virStorageBackendLogicalBuildPool(virStoragePoolObjPtr pool,
E
Eric Blake 已提交
745
                                  unsigned int flags)
746
{
747
    virStoragePoolDefPtr def = virStoragePoolObjGetDef(pool);
748
    virCommandPtr vgcmd = NULL;
749
    int ret = -1;
750 751 752 753
    size_t i = 0;

    virCheckFlags(VIR_STORAGE_POOL_BUILD_OVERWRITE |
                  VIR_STORAGE_POOL_BUILD_NO_OVERWRITE, ret);
754

755 756 757
    VIR_EXCLUSIVE_FLAGS_GOTO(VIR_STORAGE_POOL_BUILD_OVERWRITE,
                             VIR_STORAGE_POOL_BUILD_NO_OVERWRITE,
                             cleanup);
E
Eric Blake 已提交
758

759
    vgcmd = virCommandNewArgList(VGCREATE, def->source.name, NULL);
760

761 762
    for (i = 0; i < def->source.ndevice; i++) {
        const char *path = def->source.devices[i].path;
763

764 765 766 767 768 769 770
        /* The blkid FS and Part probing code doesn't know "lvm2" (this
         * pool's only format type), but it does know "LVM2_member", so
         * we'll pass that here */
        if (!(flags & VIR_STORAGE_POOL_BUILD_OVERWRITE) &&
            !virStorageBackendDeviceIsEmpty(path, "LVM2_member", true))
            goto cleanup;

771
        if (virStorageBackendLogicalInitializeDevice(path) < 0)
772 773
            goto cleanup;

774
        virCommandAddArg(vgcmd, path);
775
    }
776 777

    /* Now create the volume group itself */
778
    if (virCommandRun(vgcmd, NULL) < 0)
779 780
        goto cleanup;

781
    ret = 0;
782

783
 cleanup:
784
    virCommandFree(vgcmd);
785 786 787 788 789 790 791

    /* On any failure, run through the devices that had pvcreate run in
     * in order to run pvremove on the device; otherwise, subsequent build
     * will fail if a pvcreate had been run already. */
    if (ret < 0) {
        size_t j;
        for (j = 0; j < i; j++)
792
            virStorageBackendLogicalRemoveDevice(def->source.devices[j].path);
793
    }
794
    return ret;
795 796 797 798
}


static int
799
virStorageBackendLogicalRefreshPool(virStoragePoolObjPtr pool)
800 801 802 803 804 805
{
    /*
     *  # vgs --separator : --noheadings --units b --unbuffered --nosuffix --options "vg_size,vg_free" VGNAME
     *    10603200512:4328521728
     *
     * Pull out size & free
806 807
     *
     * NB vgs from some distros (e.g. SLES10 SP2) outputs trailing ":" on each line
808 809
     */
    const char *regexes[] = {
810
        "^\\s*(\\S+):([0-9]+):?\\s*$"
811 812 813 814
    };
    int vars[] = {
        2
    };
815
    virStoragePoolDefPtr def = virStoragePoolObjGetDef(pool);
816 817
    virCommandPtr cmd = NULL;
    int ret = -1;
818

J
John Ferlan 已提交
819
    virWaitForDevices();
820

821
    /* Get list of all logical volumes */
822 823 824 825 826 827 828 829 830 831
    if (virStorageBackendLogicalFindLVs(pool, NULL) < 0)
        goto cleanup;

    cmd = virCommandNewArgList(VGS,
                               "--separator", ":",
                               "--noheadings",
                               "--units", "b",
                               "--unbuffered",
                               "--nosuffix",
                               "--options", "vg_size,vg_free",
832
                               def->source.name,
833
                               NULL);
834 835

    /* Now get basic volgrp metadata */
836 837 838 839 840 841
    if (virCommandRunRegex(cmd,
                           1,
                           regexes,
                           vars,
                           virStorageBackendLogicalRefreshPoolFunc,
                           pool,
842 843
                           "vgs",
                           NULL) < 0)
844
        goto cleanup;
845

846 847
    ret = 0;

848
 cleanup:
849 850 851 852
    virCommandFree(cmd);
    if (ret < 0)
        virStoragePoolObjClearVols(pool);
    return ret;
853 854
}

855 856 857 858
/*
 * This is actually relatively safe; if you happen to try to "stop" the
 * pool that your / is on, for instance, you will get failure like:
 * "Can't deactivate volume group "VolGroup00" with 3 open logical volume(s)"
859 860
 */
static int
861
virStorageBackendLogicalStopPool(virStoragePoolObjPtr pool)
862
{
863
    if (virStorageBackendLogicalSetActive(pool, 0) < 0)
864 865 866 867 868 869
        return -1;

    return 0;
}

static int
870
virStorageBackendLogicalDeletePool(virStoragePoolObjPtr pool,
E
Eric Blake 已提交
871
                                   unsigned int flags)
872
{
873
    virStoragePoolDefPtr def = virStoragePoolObjGetDef(pool);
874 875 876
    virCommandPtr cmd = NULL;
    size_t i;
    int ret = -1;
877

E
Eric Blake 已提交
878 879
    virCheckFlags(0, -1);

880
    /* first remove the volume group */
881
    cmd = virCommandNewArgList(VGREMOVE,
882
                               "-f", def->source.name,
883 884 885
                               NULL);
    if (virCommandRun(cmd, NULL) < 0)
        goto cleanup;
886

887
    /* now remove the pv devices and clear them out */
888 889
    for (i = 0; i < def->source.ndevice; i++)
        virStorageBackendLogicalRemoveDevice(def->source.devices[i].path);
890

891
    ret = 0;
892

893
 cleanup:
894 895
    virCommandFree(cmd);
    return ret;
896 897 898 899
}


static int
900
virStorageBackendLogicalDeleteVol(virStoragePoolObjPtr pool ATTRIBUTE_UNUSED,
901
                                  virStorageVolDefPtr vol,
902 903 904 905 906 907 908 909 910
                                  unsigned int flags)
{
    int ret = -1;

    virCommandPtr lvchange_cmd = NULL;
    virCommandPtr lvremove_cmd = NULL;

    virCheckFlags(0, -1);

J
John Ferlan 已提交
911
    virWaitForDevices();
912 913 914 915 916 917 918 919 920 921 922 923 924 925

    lvchange_cmd = virCommandNewArgList(LVCHANGE, "-aln", vol->target.path, NULL);
    lvremove_cmd = virCommandNewArgList(LVREMOVE, "-f", vol->target.path, NULL);

    if (virCommandRun(lvremove_cmd, NULL) < 0) {
        if (virCommandRun(lvchange_cmd, NULL) < 0) {
            goto cleanup;
        } else {
            if (virCommandRun(lvremove_cmd, NULL) < 0)
                goto cleanup;
        }
    }

    ret = 0;
926
 cleanup:
927 928 929 930
    virCommandFree(lvchange_cmd);
    virCommandFree(lvremove_cmd);
    return ret;
}
931 932 933


static int
J
John Ferlan 已提交
934 935
virStorageBackendLogicalLVCreate(virStorageVolDefPtr vol,
                                 virStoragePoolDefPtr def)
936
{
J
John Ferlan 已提交
937
    int ret;
938
    unsigned long long capacity = vol->target.capacity;
939
    virCommandPtr cmd = NULL;
940

941 942 943 944
    cmd = virCommandNewArgList(LVCREATE,
                               "--name", vol->name,
                               NULL);
    virCommandAddArg(cmd, "-L");
945
    if (capacity != vol->target.allocation) {
946
        virCommandAddArgFormat(cmd, "%lluK",
947 948
                               VIR_DIV_UP(vol->target.allocation
                                          ? vol->target.allocation : 1, 1024));
949
        virCommandAddArgList(cmd, "--type", "snapshot", NULL);
950
        virCommandAddArg(cmd, "--virtualsize");
951
        vol->target.sparse = true;
952
    }
953 954 955 956 957 958 959 960

    /* If we're going to encrypt using LUKS, then we could need up to
     * an extra 2MB for the LUKS header - so account for that now */
    if (vol->target.encryption &&
        vol->target.encryption->format == VIR_STORAGE_ENCRYPTION_FORMAT_LUKS)
        capacity += 2 * 1024 * 1024;
    virCommandAddArgFormat(cmd, "%lluK", VIR_DIV_UP(capacity, 1024));

961
    if (virStorageSourceHasBacking(&vol->target))
962
        virCommandAddArgList(cmd, "-s", vol->target.backingStore->path, NULL);
963
    else
964
        virCommandAddArg(cmd, def->source.name);
965

J
John Ferlan 已提交
966
    ret = virCommandRun(cmd, NULL);
967
    virCommandFree(cmd);
J
John Ferlan 已提交
968 969 970 971 972
    return ret;
}


static int
973
virStorageBackendLogicalCreateVol(virStoragePoolObjPtr pool,
J
John Ferlan 已提交
974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989
                                  virStorageVolDefPtr vol)
{
    int fd = -1;
    virStoragePoolDefPtr def = virStoragePoolObjGetDef(pool);
    virErrorPtr err;
    struct stat sb;

    vol->type = VIR_STORAGE_VOL_BLOCK;

    VIR_FREE(vol->target.path);
    if (virAsprintf(&vol->target.path, "%s/%s",
                    def->target.path, vol->name) < 0)
        return -1;

    if (virStorageBackendLogicalLVCreate(vol, def) < 0)
        return -1;
990

991
    if (vol->target.encryption &&
992
        virStorageBackendCreateVolUsingQemuImg(pool, vol, NULL, 0) < 0)
993 994
        goto error;

995 996
    if ((fd = virStorageBackendVolOpen(vol->target.path, &sb,
                                       VIR_STORAGE_VOL_OPEN_DEFAULT)) < 0)
997
        goto error;
998 999

    /* We can only chown/grp if root */
1000
    if (geteuid() == 0) {
1001
        if (fchown(fd, vol->target.perms->uid, vol->target.perms->gid) < 0) {
1002
            virReportSystemError(errno,
1003 1004
                                 _("cannot set file owner '%s'"),
                                 vol->target.path);
1005
            goto error;
1006 1007
        }
    }
1008
    if (fchmod(fd, (vol->target.perms->mode == (mode_t)-1 ?
1009 1010
                    VIR_STORAGE_DEFAULT_VOL_PERM_MODE :
                    vol->target.perms->mode)) < 0) {
1011
        virReportSystemError(errno,
1012 1013
                             _("cannot set file mode '%s'"),
                             vol->target.path);
1014
        goto error;
1015 1016
    }

1017
    if (VIR_CLOSE(fd) < 0) {
1018
        virReportSystemError(errno,
1019 1020
                             _("cannot close file '%s'"),
                             vol->target.path);
1021
        goto error;
1022 1023 1024
    }

    /* Fill in data about this new vol */
1025
    if (virStorageBackendLogicalFindLVs(pool, vol) < 0) {
1026
        virReportSystemError(errno,
1027 1028
                             _("cannot find newly created volume '%s'"),
                             vol->target.path);
1029
        goto error;
1030 1031 1032 1033
    }

    return 0;

1034
 error:
1035
    err = virSaveLastError();
1036
    VIR_FORCE_CLOSE(fd);
1037
    virStorageBackendLogicalDeleteVol(pool, vol, 0);
1038
    virSetError(err);
1039
    virFreeError(err);
1040 1041 1042
    return -1;
}

1043
static int
1044
virStorageBackendLogicalBuildVolFrom(virStoragePoolObjPtr pool,
1045 1046 1047 1048 1049 1050
                                     virStorageVolDefPtr vol,
                                     virStorageVolDefPtr inputvol,
                                     unsigned int flags)
{
    virStorageBackendBuildVolFrom build_func;

1051
    build_func = virStorageBackendGetBuildVolFromFunction(vol, inputvol);
1052 1053 1054
    if (!build_func)
        return -1;

1055
    return build_func(pool, vol, inputvol, flags);
1056 1057
}

1058
static int
1059
virStorageBackendLogicalVolWipe(virStoragePoolObjPtr pool,
1060 1061 1062 1063 1064
                                virStorageVolDefPtr vol,
                                unsigned int algorithm,
                                unsigned int flags)
{
    if (!vol->target.sparse)
1065
        return virStorageBackendVolWipeLocal(pool, vol, algorithm, flags);
1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079

    /* The wiping algorithms will write something to the logical volume.
     * Writing to a sparse logical volume causes it to be filled resulting
     * in the volume becoming INACTIVE because there is some amount of
     * metadata contained within the sparse lv. Choosing to only write
     * a wipe pattern to the already written portion lv based on what
     * 'lvs' shows in the "Data%" column/field for the sparse lv was
     * considered. However, there is no guarantee that sparse lv could
     * grow or shrink outside of libvirt's knowledge and thus still render
     * the volume INACTIVE. Until there is some sort of wipe function
     * implemented by lvm for one of these sparse lv, we'll just return
     * unsupported.
     */
    virReportError(VIR_ERR_NO_SUPPORT,
J
John Ferlan 已提交
1080 1081
                   _("logical volume '%s' is sparse, volume wipe "
                     "not supported"),
1082 1083 1084
                   vol->target.path);
    return -1;
}
1085 1086 1087 1088

virStorageBackend virStorageBackendLogical = {
    .type = VIR_STORAGE_POOL_LOGICAL,

1089
    .findPoolSources = virStorageBackendLogicalFindPoolSources,
1090
    .checkPool = virStorageBackendLogicalCheckPool,
1091 1092 1093 1094 1095
    .startPool = virStorageBackendLogicalStartPool,
    .buildPool = virStorageBackendLogicalBuildPool,
    .refreshPool = virStorageBackendLogicalRefreshPool,
    .stopPool = virStorageBackendLogicalStopPool,
    .deletePool = virStorageBackendLogicalDeletePool,
1096
    .buildVol = NULL,
1097
    .buildVolFrom = virStorageBackendLogicalBuildVolFrom,
1098 1099
    .createVol = virStorageBackendLogicalCreateVol,
    .deleteVol = virStorageBackendLogicalDeleteVol,
1100 1101
    .uploadVol = virStorageBackendVolUploadLocal,
    .downloadVol = virStorageBackendVolDownloadLocal,
1102
    .wipeVol = virStorageBackendLogicalVolWipe,
1103
};
1104 1105 1106 1107 1108 1109 1110


int
virStorageBackendLogicalRegister(void)
{
    return virStorageBackendRegister(&virStorageBackendLogical);
}