storage_conf.c 74.4 KB
Newer Older
1 2 3
/*
 * storage_conf.c: config handling for storage driver
 *
4
 * Copyright (C) 2006-2014 Red Hat, Inc.
5 6 7 8 9 10 11 12 13 14 15 16 17
 * Copyright (C) 2006-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 34 35
 *
 * Author: Daniel P. Berrange <berrange@redhat.com>
 */

#include <config.h>

#include <stdlib.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <dirent.h>
#include <unistd.h>
#include <errno.h>
#include <stdio.h>
#include <fcntl.h>
#include <string.h>

36
#include "virerror.h"
37
#include "datatypes.h"
38
#include "storage_conf.h"
39
#include "virstoragefile.h"
40

41
#include "virxml.h"
42
#include "viruuid.h"
43
#include "virbuffer.h"
44
#include "viralloc.h"
E
Eric Blake 已提交
45
#include "virfile.h"
46
#include "virstring.h"
47
#include "virlog.h"
48

49 50
#define VIR_FROM_THIS VIR_FROM_STORAGE

51 52
VIR_LOG_INIT("conf.storage_conf");

53 54
#define DEFAULT_POOL_PERM_MODE 0755
#define DEFAULT_VOL_PERM_MODE  0600
55

56 57
VIR_ENUM_IMPL(virStorageVol,
              VIR_STORAGE_VOL_LAST,
58
              "file", "block", "dir", "network", "netdir")
59

60 61 62 63
VIR_ENUM_IMPL(virStoragePool,
              VIR_STORAGE_POOL_LAST,
              "dir", "fs", "netfs",
              "logical", "disk", "iscsi",
R
Roman Bogorodskiy 已提交
64 65
              "scsi", "mpath", "rbd",
              "sheepdog", "gluster", "zfs")
66 67 68 69 70

VIR_ENUM_IMPL(virStoragePoolFormatFileSystem,
              VIR_STORAGE_POOL_FS_LAST,
              "auto", "ext2", "ext3",
              "ext4", "ufs", "iso9660", "udf",
J
Jim Fehlig 已提交
71
              "gfs", "gfs2", "vfat", "hfs+", "xfs", "ocfs2")
72 73 74

VIR_ENUM_IMPL(virStoragePoolFormatFileSystemNet,
              VIR_STORAGE_POOL_NETFS_LAST,
75
              "auto", "nfs", "glusterfs", "cifs")
76 77 78 79

VIR_ENUM_IMPL(virStoragePoolFormatDisk,
              VIR_STORAGE_POOL_DISK_LAST,
              "unknown", "dos", "dvh", "gpt",
80
              "mac", "bsd", "pc98", "sun", "lvm2")
81 82 83

VIR_ENUM_IMPL(virStoragePoolFormatLogical,
              VIR_STORAGE_POOL_LOGICAL_LAST,
84
              "unknown", "lvm2")
85 86 87 88 89 90 91


VIR_ENUM_IMPL(virStorageVolFormatDisk,
              VIR_STORAGE_VOL_DISK_LAST,
              "none", "linux", "fat16",
              "fat32", "linux-swap",
              "linux-lvm", "linux-raid",
92
              "extended")
93

94
VIR_ENUM_IMPL(virStoragePartedFs,
95
              VIR_STORAGE_PARTED_FS_TYPE_LAST,
96
              "ext2", "ext2", "fat16",
97 98 99
              "fat32", "linux-swap",
              "ext2", "ext2",
              "extended")
100

101
VIR_ENUM_IMPL(virStoragePoolSourceAdapter,
102 103 104
              VIR_STORAGE_POOL_SOURCE_ADAPTER_TYPE_LAST,
              "default", "scsi_host", "fc_host")

105 106
typedef const char *(*virStorageVolFormatToString)(int format);
typedef int (*virStorageVolFormatFromString)(const char *format);
107 108
typedef const char *(*virStorageVolFeatureToString)(int feature);
typedef int (*virStorageVolFeatureFromString)(const char *feature);
109 110 111 112 113 114 115

typedef const char *(*virStoragePoolFormatToString)(int format);
typedef int (*virStoragePoolFormatFromString)(const char *format);

typedef struct _virStorageVolOptions virStorageVolOptions;
typedef virStorageVolOptions *virStorageVolOptionsPtr;
struct _virStorageVolOptions {
116
    int defaultFormat;
117 118
    virStorageVolFormatToString formatToString;
    virStorageVolFormatFromString formatFromString;
119 120
    virStorageVolFeatureToString featureToString;
    virStorageVolFeatureFromString featureFromString;
121 122 123 124
};

/* Flags to indicate mandatory components in the pool source */
enum {
O
Osier Yang 已提交
125 126 127 128 129 130 131
    VIR_STORAGE_POOL_SOURCE_HOST            = (1 << 0),
    VIR_STORAGE_POOL_SOURCE_DEVICE          = (1 << 1),
    VIR_STORAGE_POOL_SOURCE_DIR             = (1 << 2),
    VIR_STORAGE_POOL_SOURCE_ADAPTER         = (1 << 3),
    VIR_STORAGE_POOL_SOURCE_NAME            = (1 << 4),
    VIR_STORAGE_POOL_SOURCE_INITIATOR_IQN   = (1 << 5),
    VIR_STORAGE_POOL_SOURCE_NETWORK         = (1 << 6),
132 133 134 135 136
};

typedef struct _virStoragePoolOptions virStoragePoolOptions;
typedef virStoragePoolOptions *virStoragePoolOptionsPtr;
struct _virStoragePoolOptions {
E
Eric Blake 已提交
137
    unsigned int flags;
138 139 140 141 142 143 144 145 146 147 148 149 150
    int defaultFormat;
    virStoragePoolFormatToString formatToString;
    virStoragePoolFormatFromString formatFromString;
};

typedef struct _virStoragePoolTypeInfo virStoragePoolTypeInfo;
typedef virStoragePoolTypeInfo *virStoragePoolTypeInfoPtr;
struct _virStoragePoolTypeInfo {
    int poolType;
    virStoragePoolOptions poolOptions;
    virStorageVolOptions volOptions;
};

E
Eric Blake 已提交
151 152 153 154 155 156 157 158 159
static int
virStorageVolumeFormatFromString(const char *format)
{
    int ret = virStorageFileFormatTypeFromString(format);
    if (ret == VIR_STORAGE_FILE_NONE)
        return -1;
    return ret;
}

160
static virStoragePoolTypeInfo poolTypeInfo[] = {
161 162 163 164 165 166 167 168
    {.poolType = VIR_STORAGE_POOL_LOGICAL,
     .poolOptions = {
         .flags = (VIR_STORAGE_POOL_SOURCE_NAME |
                   VIR_STORAGE_POOL_SOURCE_DEVICE),
         .defaultFormat = VIR_STORAGE_POOL_LOGICAL_LVM2,
         .formatFromString = virStoragePoolFormatLogicalTypeFromString,
         .formatToString = virStoragePoolFormatLogicalTypeToString,
     },
169
    },
170 171 172 173 174
    {.poolType = VIR_STORAGE_POOL_DIR,
     .volOptions = {
         .defaultFormat = VIR_STORAGE_FILE_RAW,
         .formatFromString = virStorageVolumeFormatFromString,
         .formatToString = virStorageFileFormatTypeToString,
175 176
         .featureFromString = virStorageFileFeatureTypeFromString,
         .featureToString = virStorageFileFeatureTypeToString,
177
     },
178
    },
179 180 181 182 183 184 185
    {.poolType = VIR_STORAGE_POOL_FS,
     .poolOptions = {
         .flags = (VIR_STORAGE_POOL_SOURCE_DEVICE),
         .defaultFormat = VIR_STORAGE_POOL_FS_AUTO,
         .formatFromString = virStoragePoolFormatFileSystemTypeFromString,
         .formatToString = virStoragePoolFormatFileSystemTypeToString,
      },
186
      .volOptions = {
187 188 189
         .defaultFormat = VIR_STORAGE_FILE_RAW,
         .formatFromString = virStorageVolumeFormatFromString,
         .formatToString = virStorageFileFormatTypeToString,
190 191
         .featureFromString = virStorageFileFeatureTypeFromString,
         .featureToString = virStorageFileFeatureTypeToString,
192
      },
193
    },
194 195 196 197 198 199 200 201
    {.poolType = VIR_STORAGE_POOL_NETFS,
     .poolOptions = {
         .flags = (VIR_STORAGE_POOL_SOURCE_HOST |
                   VIR_STORAGE_POOL_SOURCE_DIR),
         .defaultFormat = VIR_STORAGE_POOL_NETFS_AUTO,
         .formatFromString = virStoragePoolFormatFileSystemNetTypeFromString,
         .formatToString = virStoragePoolFormatFileSystemNetTypeToString,
      },
202
      .volOptions = {
203 204 205
         .defaultFormat = VIR_STORAGE_FILE_RAW,
         .formatFromString = virStorageVolumeFormatFromString,
         .formatToString = virStorageFileFormatTypeToString,
206 207
         .featureFromString = virStorageFileFeatureTypeFromString,
         .featureToString = virStorageFileFeatureTypeToString,
208
      },
209
    },
210 211 212 213 214 215
    {.poolType = VIR_STORAGE_POOL_ISCSI,
     .poolOptions = {
         .flags = (VIR_STORAGE_POOL_SOURCE_HOST |
                   VIR_STORAGE_POOL_SOURCE_DEVICE |
                   VIR_STORAGE_POOL_SOURCE_INITIATOR_IQN),
      },
216
      .volOptions = {
217 218 219 220 221 222 223 224 225 226
         .formatToString = virStoragePoolFormatDiskTypeToString,
      }
    },
    {.poolType = VIR_STORAGE_POOL_SCSI,
     .poolOptions = {
         .flags = (VIR_STORAGE_POOL_SOURCE_ADAPTER),
     },
     .volOptions = {
         .formatToString = virStoragePoolFormatDiskTypeToString,
     }
227
    },
228 229 230 231 232 233
    {.poolType = VIR_STORAGE_POOL_RBD,
     .poolOptions = {
         .flags = (VIR_STORAGE_POOL_SOURCE_HOST |
                   VIR_STORAGE_POOL_SOURCE_NETWORK |
                   VIR_STORAGE_POOL_SOURCE_NAME),
      },
234
      .volOptions = {
235 236 237
          .defaultFormat = VIR_STORAGE_FILE_RAW,
          .formatToString = virStoragePoolFormatDiskTypeToString,
      }
238
    },
239 240 241 242 243 244 245 246 247 248
    {.poolType = VIR_STORAGE_POOL_SHEEPDOG,
     .poolOptions = {
         .flags = (VIR_STORAGE_POOL_SOURCE_HOST |
                   VIR_STORAGE_POOL_SOURCE_NETWORK |
                   VIR_STORAGE_POOL_SOURCE_NAME),
     },
     .volOptions = {
         .defaultFormat = VIR_STORAGE_FILE_RAW,
         .formatToString = virStoragePoolFormatDiskTypeToString,
     }
249
    },
250 251 252 253 254 255 256 257 258 259 260
    {.poolType = VIR_STORAGE_POOL_GLUSTER,
     .poolOptions = {
         .flags = (VIR_STORAGE_POOL_SOURCE_HOST |
                   VIR_STORAGE_POOL_SOURCE_NETWORK |
                   VIR_STORAGE_POOL_SOURCE_NAME |
                   VIR_STORAGE_POOL_SOURCE_DIR),
     },
     .volOptions = {
         .defaultFormat = VIR_STORAGE_FILE_RAW,
         .formatToString = virStorageFileFormatTypeToString,
         .formatFromString = virStorageVolumeFormatFromString,
261 262
         .featureFromString = virStorageFileFeatureTypeFromString,
         .featureToString = virStorageFileFeatureTypeToString,
263 264
     }
    },
265 266 267 268
    {.poolType = VIR_STORAGE_POOL_MPATH,
     .volOptions = {
         .formatToString = virStoragePoolFormatDiskTypeToString,
     }
269
    },
270 271 272 273 274 275 276 277 278 279 280 281
    {.poolType = VIR_STORAGE_POOL_DISK,
     .poolOptions = {
         .flags = (VIR_STORAGE_POOL_SOURCE_DEVICE),
         .defaultFormat = VIR_STORAGE_POOL_DISK_UNKNOWN,
         .formatFromString = virStoragePoolFormatDiskTypeFromString,
         .formatToString = virStoragePoolFormatDiskTypeToString,
     },
     .volOptions = {
         .defaultFormat = VIR_STORAGE_VOL_DISK_NONE,
         .formatFromString = virStorageVolFormatDiskTypeFromString,
         .formatToString = virStorageVolFormatDiskTypeToString,
     },
R
Roman Bogorodskiy 已提交
282 283 284
    },
    {.poolType = VIR_STORAGE_POOL_ZFS,
     .poolOptions = {
285 286
         .flags = (VIR_STORAGE_POOL_SOURCE_NAME |
                   VIR_STORAGE_POOL_SOURCE_DEVICE),
R
Roman Bogorodskiy 已提交
287 288 289
         .defaultFormat = VIR_STORAGE_FILE_RAW,
     },
    },
290 291 292 293
};


static virStoragePoolTypeInfoPtr
294 295
virStoragePoolTypeInfoLookup(int type)
{
296
    size_t i;
297
    for (i = 0; i < ARRAY_CARDINALITY(poolTypeInfo); i++)
298 299 300
        if (poolTypeInfo[i].poolType == type)
            return &poolTypeInfo[i];

301 302
    virReportError(VIR_ERR_INTERNAL_ERROR,
                   _("missing backend for pool type %d"), type);
303 304 305 306
    return NULL;
}

static virStoragePoolOptionsPtr
307 308
virStoragePoolOptionsForPoolType(int type)
{
309 310 311 312 313 314 315
    virStoragePoolTypeInfoPtr backend = virStoragePoolTypeInfoLookup(type);
    if (backend == NULL)
        return NULL;
    return &backend->poolOptions;
}

static virStorageVolOptionsPtr
316 317
virStorageVolOptionsForPoolType(int type)
{
318 319 320 321 322 323 324
    virStoragePoolTypeInfoPtr backend = virStoragePoolTypeInfoLookup(type);
    if (backend == NULL)
        return NULL;
    return &backend->volOptions;
}


325
void
326 327
virStorageVolDefFree(virStorageVolDefPtr def)
{
328
    size_t i;
329 330 331 332

    if (!def)
        return;

333 334
    VIR_FREE(def->name);
    VIR_FREE(def->key);
335

336
    for (i = 0; i < def->source.nextent; i++) {
337
        VIR_FREE(def->source.extents[i].path);
338
    }
339
    VIR_FREE(def->source.extents);
340

341
    virStorageSourceClear(&def->target);
342
    VIR_FREE(def);
343 344
}

345
static void
346
virStoragePoolSourceAdapterClear(virStoragePoolSourceAdapterPtr adapter)
347
{
348 349 350 351 352
    if (adapter->type == VIR_STORAGE_POOL_SOURCE_ADAPTER_TYPE_FC_HOST) {
        VIR_FREE(adapter->data.fchost.wwnn);
        VIR_FREE(adapter->data.fchost.wwpn);
        VIR_FREE(adapter->data.fchost.parent);
    } else if (adapter->type ==
353
               VIR_STORAGE_POOL_SOURCE_ADAPTER_TYPE_SCSI_HOST) {
354
        VIR_FREE(adapter->data.scsi_host.name);
355 356 357
    }
}

358 359 360 361 362 363 364
void
virStoragePoolSourceDeviceClear(virStoragePoolSourceDevicePtr dev)
{
    VIR_FREE(dev->freeExtents);
    VIR_FREE(dev->path);
}

365
void
366 367
virStoragePoolSourceClear(virStoragePoolSourcePtr source)
{
368
    size_t i;
369

370
    if (!source)
371 372
        return;

373
    for (i = 0; i < source->nhost; i++) {
374 375 376 377
        VIR_FREE(source->hosts[i].name);
    }
    VIR_FREE(source->hosts);

378 379
    for (i = 0; i < source->ndevice; i++)
        virStoragePoolSourceDeviceClear(&source->devices[i]);
380 381 382
    VIR_FREE(source->devices);
    VIR_FREE(source->dir);
    VIR_FREE(source->name);
383
    virStoragePoolSourceAdapterClear(&source->adapter);
D
David Allan 已提交
384
    VIR_FREE(source->initiator.iqn);
385
    virStorageAuthDefFree(source->auth);
386 387
    VIR_FREE(source->vendor);
    VIR_FREE(source->product);
388 389
}

390 391 392 393 394 395 396
void
virStoragePoolSourceFree(virStoragePoolSourcePtr source)
{
    virStoragePoolSourceClear(source);
    VIR_FREE(source);
}

397
void
398 399
virStoragePoolDefFree(virStoragePoolDefPtr def)
{
400 401 402 403 404
    if (!def)
        return;

    VIR_FREE(def->name);

405
    virStoragePoolSourceClear(&def->source);
406

407 408 409
    VIR_FREE(def->target.path);
    VIR_FREE(def->target.perms.label);
    VIR_FREE(def);
410 411 412 413
}


void
414 415
virStoragePoolObjFree(virStoragePoolObjPtr obj)
{
416 417 418
    if (!obj)
        return;

419 420
    virStoragePoolObjClearVols(obj);

421 422
    virStoragePoolDefFree(obj->def);
    virStoragePoolDefFree(obj->newDef);
423

424 425
    VIR_FREE(obj->configFile);
    VIR_FREE(obj->autostartLink);
426 427 428

    virMutexDestroy(&obj->lock);

429
    VIR_FREE(obj);
430 431
}

432 433
void
virStoragePoolObjListFree(virStoragePoolObjListPtr pools)
434
{
435
    size_t i;
436
    for (i = 0; i < pools->count; i++)
437 438 439 440 441
        virStoragePoolObjFree(pools->objs[i]);
    VIR_FREE(pools->objs);
    pools->count = 0;
}

442
void
443
virStoragePoolObjRemove(virStoragePoolObjListPtr pools,
444 445
                        virStoragePoolObjPtr pool)
{
446
    size_t i;
447

448 449
    virStoragePoolObjUnlock(pool);

450
    for (i = 0; i < pools->count; i++) {
451
        virStoragePoolObjLock(pools->objs[i]);
452
        if (pools->objs[i] == pool) {
453
            virStoragePoolObjUnlock(pools->objs[i]);
454
            virStoragePoolObjFree(pools->objs[i]);
455

456
            VIR_DELETE_ELEMENT(pools->objs, i, pools->count);
457 458
            break;
        }
459
        virStoragePoolObjUnlock(pools->objs[i]);
460
    }
461 462
}

463
static int
464
virStoragePoolDefParseSource(xmlXPathContextPtr ctxt,
465 466
                             virStoragePoolSourcePtr source,
                             int pool_type,
467 468
                             xmlNodePtr node)
{
469
    int ret = -1;
470
    xmlNodePtr relnode, authnode, *nodeset = NULL;
471 472
    int nsource;
    size_t i;
473
    virStoragePoolOptionsPtr options;
474
    virStorageAuthDefPtr authdef = NULL;
475
    char *name = NULL;
476
    char *port = NULL;
477
    char *adapter_type = NULL;
478
    char *managed = NULL;
479
    int n;
480 481 482 483 484 485 486 487

    relnode = ctxt->node;
    ctxt->node = node;

    if ((options = virStoragePoolOptionsForPoolType(pool_type)) == NULL) {
        goto cleanup;
    }

488
    source->name = virXPathString("string(./name)", ctxt);
489
    if (pool_type == VIR_STORAGE_POOL_RBD && source->name == NULL) {
490
        virReportError(VIR_ERR_XML_ERROR, "%s",
491
                       _("element 'name' is mandatory for RBD pool"));
492 493
        goto cleanup;
    }
494 495

    if (options->formatFromString) {
496
        char *format = virXPathString("string(./format/@type)", ctxt);
497 498 499 500 501 502
        if (format == NULL)
            source->format = options->defaultFormat;
        else
            source->format = options->formatFromString(format);

        if (source->format < 0) {
503
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
504
                           _("unknown pool format type %s"), format);
505 506 507 508 509 510
            VIR_FREE(format);
            goto cleanup;
        }
        VIR_FREE(format);
    }

511 512
    if ((n = virXPathNodeSet("./host", ctxt, &nodeset)) < 0)
        goto cleanup;
513

514 515
    if (n) {
        if (VIR_ALLOC_N(source->hosts, n) < 0)
516
            goto cleanup;
517
        source->nhost = n;
518

519
        for (i = 0; i < source->nhost; i++) {
520 521
            name = virXMLPropString(nodeset[i], "name");
            if (name == NULL) {
522 523
                virReportError(VIR_ERR_XML_ERROR, "%s",
                               _("missing storage pool host name"));
524 525 526 527 528 529 530
                goto cleanup;
            }
            source->hosts[i].name = name;

            port = virXMLPropString(nodeset[i], "port");
            if (port) {
                if (virStrToLong_i(port, NULL, 10, &source->hosts[i].port) < 0) {
531 532 533
                    virReportError(VIR_ERR_XML_ERROR,
                                   _("Invalid port number: %s"),
                                   port);
534 535 536 537 538
                    goto cleanup;
                }
            }
        }
    }
539

540
    VIR_FREE(nodeset);
541
    source->initiator.iqn = virXPathString("string(./initiator/iqn/@name)", ctxt);
542

543
    nsource = virXPathNodeSet("./device", ctxt, &nodeset);
544 545 546
    if (nsource < 0)
        goto cleanup;

547 548 549 550 551 552 553
    for (i = 0; i < nsource; i++) {
        virStoragePoolSourceDevice dev = { .path = NULL };
        dev.path = virXMLPropString(nodeset[i], "path");

        if (dev.path == NULL) {
            virReportError(VIR_ERR_XML_ERROR, "%s",
                           _("missing storage pool source device path"));
554 555 556
            goto cleanup;
        }

557 558 559
        if (VIR_APPEND_ELEMENT(source->devices, source->ndevice, dev) < 0) {
            virStoragePoolSourceDeviceClear(&dev);
            goto cleanup;
560 561 562
        }
    }

563
    source->dir = virXPathString("string(./dir/@path)", ctxt);
564 565 566 567
    /* In gluster, a missing dir defaults to "/" */
    if (!source->dir && pool_type == VIR_STORAGE_POOL_GLUSTER &&
        VIR_STRDUP(source->dir, "/") < 0)
        goto cleanup;
568 569 570

    if ((adapter_type = virXPathString("string(./adapter/@type)", ctxt))) {
        if ((source->adapter.type =
571
             virStoragePoolSourceAdapterTypeFromString(adapter_type)) <= 0) {
572
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
573 574 575 576 577 578 579 580 581
                           _("Unknown pool adapter type '%s'"),
                           adapter_type);
            goto cleanup;
        }

        if (source->adapter.type ==
            VIR_STORAGE_POOL_SOURCE_ADAPTER_TYPE_FC_HOST) {
            source->adapter.data.fchost.parent =
                virXPathString("string(./adapter/@parent)", ctxt);
582 583 584 585 586 587 588 589 590 591 592 593
            managed = virXPathString("string(./adapter/@managed)", ctxt);
            if (managed) {
                source->adapter.data.fchost.managed =
                    virTristateBoolTypeFromString(managed);
                if (source->adapter.data.fchost.managed < 0) {
                    virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                                   _("unknown fc_host managed setting '%s'"),
                                   managed);
                    goto cleanup;
                }
            }

594 595 596 597 598 599
            source->adapter.data.fchost.wwnn =
                virXPathString("string(./adapter/@wwnn)", ctxt);
            source->adapter.data.fchost.wwpn =
                virXPathString("string(./adapter/@wwpn)", ctxt);
        } else if (source->adapter.type ==
                   VIR_STORAGE_POOL_SOURCE_ADAPTER_TYPE_SCSI_HOST) {
600

601
            source->adapter.data.scsi_host.name =
602
                virXPathString("string(./adapter/@name)", ctxt);
603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626
            if (virXPathNode("./adapter/parentaddr", ctxt)) {
                xmlNodePtr addrnode = virXPathNode("./adapter/parentaddr/address",
                                                   ctxt);
                virDevicePCIAddressPtr addr =
                    &source->adapter.data.scsi_host.parentaddr;

                if (!addrnode) {
                    virReportError(VIR_ERR_XML_ERROR, "%s",
                                   _("Missing scsi_host PCI address element"));
                    goto cleanup;
                }
                source->adapter.data.scsi_host.has_parent = true;
                if (virDevicePCIAddressParseXML(addrnode, addr) < 0)
                    goto cleanup;
                if ((virXPathInt("string(./adapter/parentaddr/@unique_id)",
                                 ctxt,
                                 &source->adapter.data.scsi_host.unique_id) < 0) ||
                    (source->adapter.data.scsi_host.unique_id < 0)) {
                    virReportError(VIR_ERR_XML_ERROR, "%s",
                                   _("Missing or invalid scsi adapter "
                                     "'unique_id' value"));
                    goto cleanup;
                }
            }
627 628 629 630 631 632
        }
    } else {
        char *wwnn = NULL;
        char *wwpn = NULL;
        char *parent = NULL;

633 634 635 636
        /* "type" was not specified in the XML, so we must verify that
         * "wwnn", "wwpn", "parent", or "parentaddr" are also not in the
         * XML. If any are found, then we cannot just use "name" alone".
         */
637 638 639 640 641 642 643 644 645 646
        wwnn = virXPathString("string(./adapter/@wwnn)", ctxt);
        wwpn = virXPathString("string(./adapter/@wwpn)", ctxt);
        parent = virXPathString("string(./adapter/@parent)", ctxt);

        if (wwnn || wwpn || parent) {
            VIR_FREE(wwnn);
            VIR_FREE(wwpn);
            VIR_FREE(parent);
            virReportError(VIR_ERR_XML_ERROR, "%s",
                           _("Use of 'wwnn', 'wwpn', and 'parent' attributes "
647 648 649 650 651 652 653 654
                             "requires use of the adapter 'type'"));
            goto cleanup;
        }

        if (virXPathNode("./adapter/parentaddr", ctxt)) {
            virReportError(VIR_ERR_XML_ERROR, "%s",
                           _("Use of 'parent' element requires use "
                             "of the adapter 'type'"));
655 656 657 658 659 660
            goto cleanup;
        }

        /* To keep back-compat, 'type' is not required to specify
         * for scsi_host adapter.
         */
661
        if ((source->adapter.data.scsi_host.name =
662 663 664 665
             virXPathString("string(./adapter/@name)", ctxt)))
            source->adapter.type =
                VIR_STORAGE_POOL_SOURCE_ADAPTER_TYPE_SCSI_HOST;
    }
666

667 668 669 670 671 672 673 674 675 676 677
    if ((authnode = virXPathNode("./auth", ctxt))) {
        if (!(authdef = virStorageAuthDefParse(node->doc, authnode)))
            goto cleanup;

        if (authdef->authType == VIR_STORAGE_AUTH_TYPE_NONE) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("storage pool missing auth type"));
            goto cleanup;
        }

        source->auth = authdef;
678
        authdef = NULL;
679
    }
680

681 682 683
    source->vendor = virXPathString("string(./vendor/@name)", ctxt);
    source->product = virXPathString("string(./product/@name)", ctxt);

684
    ret = 0;
685
 cleanup:
686 687
    ctxt->node = relnode;

688
    VIR_FREE(port);
689
    VIR_FREE(nodeset);
690
    VIR_FREE(adapter_type);
691
    VIR_FREE(managed);
692
    virStorageAuthDefFree(authdef);
693 694
    return ret;
}
695

696
virStoragePoolSourcePtr
697
virStoragePoolDefParseSourceString(const char *srcSpec,
698 699 700 701 702 703 704
                                   int pool_type)
{
    xmlDocPtr doc = NULL;
    xmlNodePtr node = NULL;
    xmlXPathContextPtr xpath_ctxt = NULL;
    virStoragePoolSourcePtr def = NULL, ret = NULL;

705 706 707
    if (!(doc = virXMLParseStringCtxt(srcSpec,
                                      _("(storage_source_specification)"),
                                      &xpath_ctxt)))
708 709
        goto cleanup;

710
    if (VIR_ALLOC(def) < 0)
711 712
        goto cleanup;

713
    if (!(node = virXPathNode("/source", xpath_ctxt))) {
714 715
        virReportError(VIR_ERR_XML_ERROR, "%s",
                       _("root element was not source"));
716 717 718
        goto cleanup;
    }

719
    if (virStoragePoolDefParseSource(xpath_ctxt, def, pool_type,
720 721 722 723 724
                                     node) < 0)
        goto cleanup;

    ret = def;
    def = NULL;
725
 cleanup:
726
    virStoragePoolSourceFree(def);
727 728 729 730 731
    xmlFreeDoc(doc);
    xmlXPathFreeContext(xpath_ctxt);

    return ret;
}
732

733
static int
734
virStorageDefParsePerms(xmlXPathContextPtr ctxt,
735 736
                        virStoragePermsPtr perms,
                        const char *permxpath,
737 738
                        int defaultmode)
{
739
    char *mode;
740
    long val;
741 742 743
    int ret = -1;
    xmlNodePtr relnode;
    xmlNodePtr node;
744

745
    node = virXPathNode(permxpath, ctxt);
746 747 748
    if (node == NULL) {
        /* Set default values if there is not <permissions> element */
        perms->mode = defaultmode;
P
Philipp Hahn 已提交
749 750
        perms->uid = (uid_t) -1;
        perms->gid = (gid_t) -1;
751 752 753 754 755 756 757
        perms->label = NULL;
        return 0;
    }

    relnode = ctxt->node;
    ctxt->node = node;

758
    mode = virXPathString("string(./mode)", ctxt);
759
    if (!mode) {
760
        perms->mode = defaultmode;
761
    } else {
762 763 764
        int tmp;

        if (virStrToLong_i(mode, NULL, 8, &tmp) < 0 || (tmp & ~0777)) {
765
            VIR_FREE(mode);
766 767
            virReportError(VIR_ERR_XML_ERROR, "%s",
                           _("malformed octal mode"));
768
            goto error;
769
        }
770
        perms->mode = tmp;
771
        VIR_FREE(mode);
772 773
    }

774
    if (virXPathNode("./owner", ctxt) == NULL) {
P
Philipp Hahn 已提交
775
        perms->uid = (uid_t) -1;
776
    } else {
777 778 779
        if (virXPathLong("number(./owner)", ctxt, &val) < 0 ||
            ((uid_t)val != val &&
             val != -1)) {
780 781
            virReportError(VIR_ERR_XML_ERROR, "%s",
                           _("malformed owner element"));
782
            goto error;
783
        }
784 785

        perms->uid = val;
786 787
    }

788
    if (virXPathNode("./group", ctxt) == NULL) {
P
Philipp Hahn 已提交
789
        perms->gid = (gid_t) -1;
790
    } else {
791 792 793
        if (virXPathLong("number(./group)", ctxt, &val) < 0 ||
            ((gid_t) val != val &&
             val != -1)) {
794 795
            virReportError(VIR_ERR_XML_ERROR, "%s",
                           _("malformed group element"));
796
            goto error;
797
        }
798
        perms->gid = val;
799 800 801
    }

    /* NB, we're ignoring missing labels here - they'll simply inherit */
802
    perms->label = virXPathString("string(./label)", ctxt);
803

804
    ret = 0;
805
 error:
806 807
    ctxt->node = relnode;
    return ret;
808 809 810
}

static virStoragePoolDefPtr
811 812
virStoragePoolDefParseXML(xmlXPathContextPtr ctxt)
{
813
    virStoragePoolOptionsPtr options;
814
    virStoragePoolDefPtr ret;
815
    xmlNodePtr source_node;
816
    char *type = NULL;
817
    char *uuid = NULL;
818
    char *target_path = NULL;
819

820
    if (VIR_ALLOC(ret) < 0)
821 822
        return NULL;

823
    type = virXPathString("string(./@type)", ctxt);
824 825 826 827 828 829
    if (type == NULL) {
        virReportError(VIR_ERR_XML_ERROR, "%s",
                       _("storage pool missing type attribute"));
        goto error;
    }

830
    if ((ret->type = virStoragePoolTypeFromString(type)) < 0) {
831
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
832
                       _("unknown storage pool type %s"), type);
833
        goto error;
834 835 836
    }

    if ((options = virStoragePoolOptionsForPoolType(ret->type)) == NULL) {
837
        goto error;
838 839
    }

840
    source_node = virXPathNode("./source", ctxt);
841
    if (source_node) {
842
        if (virStoragePoolDefParseSource(ctxt, &ret->source, ret->type,
843
                                         source_node) < 0)
844
            goto error;
845 846
    }

847
    ret->name = virXPathString("string(./name)", ctxt);
848
    if (ret->name == NULL &&
849
        options->flags & VIR_STORAGE_POOL_SOURCE_NAME)
850
        ret->name = ret->source.name;
851
    if (ret->name == NULL) {
852 853
        virReportError(VIR_ERR_XML_ERROR, "%s",
                       _("missing pool source name element"));
854
        goto error;
855 856
    }

857
    uuid = virXPathString("string(./uuid)", ctxt);
858 859
    if (uuid == NULL) {
        if (virUUIDGenerate(ret->uuid) < 0) {
860 861
            virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                           _("unable to generate uuid"));
862
            goto error;
863 864 865
        }
    } else {
        if (virUUIDParse(uuid, ret->uuid) < 0) {
866 867
            virReportError(VIR_ERR_XML_ERROR, "%s",
                           _("malformed uuid element"));
868
            goto error;
869 870 871
        }
    }

872
    if (options->flags & VIR_STORAGE_POOL_SOURCE_HOST) {
873
        if (!ret->source.nhost) {
874
            virReportError(VIR_ERR_XML_ERROR, "%s",
875
                           _("missing storage pool source host name"));
876
            goto error;
877 878 879
        }
    }

880
    if (options->flags & VIR_STORAGE_POOL_SOURCE_DIR) {
881
        if (!ret->source.dir) {
882 883
            virReportError(VIR_ERR_XML_ERROR, "%s",
                           _("missing storage pool source path"));
884
            goto error;
885 886
        }
    }
887
    if (options->flags & VIR_STORAGE_POOL_SOURCE_NAME) {
888 889
        if (ret->source.name == NULL) {
            /* source name defaults to pool name */
890
            if (VIR_STRDUP(ret->source.name, ret->name) < 0)
891
                goto error;
892 893
        }
    }
894

895
    if (options->flags & VIR_STORAGE_POOL_SOURCE_ADAPTER) {
896 897 898
        if (!ret->source.adapter.type) {
            virReportError(VIR_ERR_XML_ERROR, "%s",
                           _("missing storage pool source adapter"));
899
            goto error;
900
        }
901 902 903 904 905 906 907 908

        if (ret->source.adapter.type ==
            VIR_STORAGE_POOL_SOURCE_ADAPTER_TYPE_FC_HOST) {
            if (!ret->source.adapter.data.fchost.wwnn ||
                !ret->source.adapter.data.fchost.wwpn) {
                virReportError(VIR_ERR_XML_ERROR, "%s",
                               _("'wwnn' and 'wwpn' must be specified for adapter "
                                 "type 'fchost'"));
909
                goto error;
910 911 912 913
            }

            if (!virValidateWWN(ret->source.adapter.data.fchost.wwnn) ||
                !virValidateWWN(ret->source.adapter.data.fchost.wwpn))
914
                goto error;
915 916
        } else if (ret->source.adapter.type ==
                   VIR_STORAGE_POOL_SOURCE_ADAPTER_TYPE_SCSI_HOST) {
917 918 919 920 921 922 923 924 925 926
            if (!ret->source.adapter.data.scsi_host.name &&
                !ret->source.adapter.data.scsi_host.has_parent) {
                virReportError(VIR_ERR_XML_ERROR, "%s",
                               _("Either 'name' or 'parent' must be specified "
                                 "for the 'scsi_host' adapter"));
                goto error;
            }

            if (ret->source.adapter.data.scsi_host.name &&
                ret->source.adapter.data.scsi_host.has_parent) {
927
                virReportError(VIR_ERR_XML_ERROR, "%s",
928 929
                               _("Both 'name' and 'parent' cannot be specified "
                                 "for the 'scsi_host' adapter"));
930
                goto error;
931 932
            }
        }
933
    }
934

935 936 937
    /* If DEVICE is the only source type, then its required */
    if (options->flags == VIR_STORAGE_POOL_SOURCE_DEVICE) {
        if (!ret->source.ndevice) {
938 939
            virReportError(VIR_ERR_XML_ERROR, "%s",
                           _("missing storage pool source device name"));
940
            goto error;
941 942 943
        }
    }

944 945 946
    /* When we are working with a virtual disk we can skip the target
     * path and permissions */
    if (!(options->flags & VIR_STORAGE_POOL_SOURCE_NETWORK)) {
947 948 949 950
        if (ret->type == VIR_STORAGE_POOL_LOGICAL) {
            if (virAsprintf(&target_path, "/dev/%s", ret->source.name) < 0) {
                goto error;
            }
R
Roman Bogorodskiy 已提交
951 952 953 954
        } else if (ret->type == VIR_STORAGE_POOL_ZFS) {
            if (virAsprintf(&target_path, "/dev/zvol/%s", ret->source.name) < 0) {
                goto error;
            }
955 956 957 958 959 960 961
        } else {
            target_path = virXPathString("string(./target/path)", ctxt);
            if (!target_path) {
                virReportError(VIR_ERR_XML_ERROR, "%s",
                               _("missing storage pool target path"));
                goto error;
            }
962
        }
963
        ret->target.path = virFileSanitizePath(target_path);
964
        if (!ret->target.path)
965
            goto error;
966

967
        if (virStorageDefParsePerms(ctxt, &ret->target.perms,
968 969
                                    "./target/permissions",
                                    DEFAULT_POOL_PERM_MODE) < 0)
970
            goto error;
971
    }
972

973
 cleanup:
974
    VIR_FREE(uuid);
975 976 977 978
    VIR_FREE(type);
    VIR_FREE(target_path);
    return ret;

979
 error:
980
    virStoragePoolDefFree(ret);
981 982
    ret = NULL;
    goto cleanup;
983 984 985
}

virStoragePoolDefPtr
986
virStoragePoolDefParseNode(xmlDocPtr xml,
987 988
                           xmlNodePtr root)
{
989 990 991
    xmlXPathContextPtr ctxt = NULL;
    virStoragePoolDefPtr def = NULL;

992
    if (!xmlStrEqual(root->name, BAD_CAST "pool")) {
993
        virReportError(VIR_ERR_XML_ERROR,
994 995 996
                       _("unexpected root element <%s>, "
                         "expecting <pool>"),
                       root->name);
997 998 999 1000 1001
        goto cleanup;
    }

    ctxt = xmlXPathNewContext(xml);
    if (ctxt == NULL) {
1002
        virReportOOMError();
1003 1004 1005 1006
        goto cleanup;
    }

    ctxt->node = root;
1007
    def = virStoragePoolDefParseXML(ctxt);
1008
 cleanup:
1009 1010 1011 1012 1013
    xmlXPathFreeContext(ctxt);
    return def;
}

static virStoragePoolDefPtr
1014
virStoragePoolDefParse(const char *xmlStr,
1015 1016
                       const char *filename)
{
1017
    virStoragePoolDefPtr ret = NULL;
J
Jiri Denemark 已提交
1018
    xmlDocPtr xml;
1019

1020
    if ((xml = virXMLParse(filename, xmlStr, _("(storage_pool_definition)")))) {
J
Jiri Denemark 已提交
1021 1022
        ret = virStoragePoolDefParseNode(xml, xmlDocGetRootElement(xml));
        xmlFreeDoc(xml);
1023 1024
    }

1025 1026 1027
    return ret;
}

1028
virStoragePoolDefPtr
1029
virStoragePoolDefParseString(const char *xmlStr)
1030
{
1031
    return virStoragePoolDefParse(xmlStr, NULL);
1032 1033 1034
}

virStoragePoolDefPtr
1035
virStoragePoolDefParseFile(const char *filename)
1036
{
1037
    return virStoragePoolDefParse(NULL, filename);
1038 1039
}

1040
static int
1041
virStoragePoolSourceFormat(virBufferPtr buf,
1042
                           virStoragePoolOptionsPtr options,
1043 1044
                           virStoragePoolSourcePtr src)
{
1045
    size_t i, j;
1046

1047 1048 1049
    virBufferAddLit(buf, "<source>\n");
    virBufferAdjustIndent(buf, 2);

1050 1051
    if ((options->flags & VIR_STORAGE_POOL_SOURCE_HOST) && src->nhost) {
        for (i = 0; i < src->nhost; i++) {
1052
            virBufferEscapeString(buf, "<host name='%s'",
1053
                                  src->hosts[i].name);
1054 1055 1056 1057
            if (src->hosts[i].port)
                virBufferAsprintf(buf, " port='%d'", src->hosts[i].port);
            virBufferAddLit(buf, "/>\n");
        }
1058
    }
1059

1060
    if ((options->flags & VIR_STORAGE_POOL_SOURCE_DEVICE) &&
1061
        src->ndevice) {
1062
        for (i = 0; i < src->ndevice; i++) {
1063
            if (src->devices[i].nfreeExtent) {
1064
                virBufferEscapeString(buf, "<device path='%s'>\n",
1065
                                      src->devices[i].path);
1066
                virBufferAdjustIndent(buf, 2);
1067
                for (j = 0; j < src->devices[i].nfreeExtent; j++) {
1068
                    virBufferAsprintf(buf, "<freeExtent start='%llu' end='%llu'/>\n",
1069 1070 1071
                                      src->devices[i].freeExtents[j].start,
                                      src->devices[i].freeExtents[j].end);
                }
1072 1073
                virBufferAdjustIndent(buf, -2);
                virBufferAddLit(buf, "</device>\n");
1074
            } else {
1075
                virBufferEscapeString(buf, "<device path='%s'/>\n",
1076
                                      src->devices[i].path);
1077
            }
1078 1079
        }
    }
1080

1081
    if (options->flags & VIR_STORAGE_POOL_SOURCE_DIR)
1082
        virBufferEscapeString(buf, "<dir path='%s'/>\n", src->dir);
1083

1084 1085 1086
    if ((options->flags & VIR_STORAGE_POOL_SOURCE_ADAPTER)) {
        if (src->adapter.type == VIR_STORAGE_POOL_SOURCE_ADAPTER_TYPE_FC_HOST ||
            src->adapter.type == VIR_STORAGE_POOL_SOURCE_ADAPTER_TYPE_SCSI_HOST)
1087
            virBufferAsprintf(buf, "<adapter type='%s'",
1088
                              virStoragePoolSourceAdapterTypeToString(src->adapter.type));
1089 1090 1091 1092

        if (src->adapter.type == VIR_STORAGE_POOL_SOURCE_ADAPTER_TYPE_FC_HOST) {
            virBufferEscapeString(buf, " parent='%s'",
                                  src->adapter.data.fchost.parent);
1093 1094 1095
            if (src->adapter.data.fchost.managed)
                virBufferAsprintf(buf, " managed='%s'",
                                  virTristateBoolTypeToString(src->adapter.data.fchost.managed));
E
Eric Blake 已提交
1096
            virBufferAsprintf(buf, " wwnn='%s' wwpn='%s'/>\n",
1097 1098 1099
                              src->adapter.data.fchost.wwnn,
                              src->adapter.data.fchost.wwpn);
        } else if (src->adapter.type ==
1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117
                   VIR_STORAGE_POOL_SOURCE_ADAPTER_TYPE_SCSI_HOST) {
            if (src->adapter.data.scsi_host.name) {
                virBufferAsprintf(buf, " name='%s'/>\n",
                                  src->adapter.data.scsi_host.name);
            } else {
                virDevicePCIAddress addr;
                virBufferAddLit(buf, ">\n");
                virBufferAdjustIndent(buf, 2);
                virBufferAsprintf(buf, "<parentaddr unique_id='%d'>\n",
                                  src->adapter.data.scsi_host.unique_id);
                virBufferAdjustIndent(buf, 2);
                addr = src->adapter.data.scsi_host.parentaddr;
                ignore_value(virDevicePCIAddressFormat(buf, addr, false));
                virBufferAdjustIndent(buf, -2);
                virBufferAddLit(buf, "</parentaddr>\n");
                virBufferAdjustIndent(buf, -2);
                virBufferAddLit(buf, "</adapter>\n");
            }
1118 1119
        }
    }
1120

1121
    if (options->flags & VIR_STORAGE_POOL_SOURCE_NAME)
1122
        virBufferEscapeString(buf, "<name>%s</name>\n", src->name);
1123

D
David Allan 已提交
1124 1125
    if ((options->flags & VIR_STORAGE_POOL_SOURCE_INITIATOR_IQN) &&
        src->initiator.iqn) {
1126 1127 1128
        virBufferAddLit(buf, "<initiator>\n");
        virBufferAdjustIndent(buf, 2);
        virBufferEscapeString(buf, "<iqn name='%s'/>\n",
E
Eric Blake 已提交
1129
                              src->initiator.iqn);
1130 1131
        virBufferAdjustIndent(buf, -2);
        virBufferAddLit(buf, "</initiator>\n");
D
David Allan 已提交
1132 1133
    }

1134 1135 1136
    if (options->formatToString) {
        const char *format = (options->formatToString)(src->format);
        if (!format) {
1137 1138 1139
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("unknown pool format number %d"),
                           src->format);
1140 1141
            return -1;
        }
1142
        virBufferAsprintf(buf, "<format type='%s'/>\n", format);
1143 1144
    }

1145 1146 1147
    if (src->auth) {
        if (virStorageAuthDefFormat(buf, src->auth) < 0)
            return -1;
1148 1149
    }

1150 1151
    virBufferEscapeString(buf, "<vendor name='%s'/>\n", src->vendor);
    virBufferEscapeString(buf, "<product name='%s'/>\n", src->product);
1152

1153 1154
    virBufferAdjustIndent(buf, -2);
    virBufferAddLit(buf, "</source>\n");
1155 1156 1157
    return 0;
}

1158 1159

char *
1160 1161
virStoragePoolDefFormat(virStoragePoolDefPtr def)
{
1162
    virStoragePoolOptionsPtr options;
1163
    virBuffer buf = VIR_BUFFER_INITIALIZER;
1164 1165 1166
    const char *type;
    char uuid[VIR_UUID_STRING_BUFLEN];

1167
    options = virStoragePoolOptionsForPoolType(def->type);
1168 1169 1170
    if (options == NULL)
        return NULL;

1171
    type = virStoragePoolTypeToString(def->type);
1172
    if (!type) {
1173 1174
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("unexpected pool type"));
1175 1176
        goto cleanup;
    }
1177
    virBufferAsprintf(&buf, "<pool type='%s'>\n", type);
1178 1179
    virBufferAdjustIndent(&buf, 2);
    virBufferEscapeString(&buf, "<name>%s</name>\n", def->name);
1180 1181

    virUUIDFormat(def->uuid, uuid);
1182
    virBufferAsprintf(&buf, "<uuid>%s</uuid>\n", uuid);
1183

1184
    virBufferAsprintf(&buf, "<capacity unit='bytes'>%llu</capacity>\n",
1185
                      def->capacity);
1186
    virBufferAsprintf(&buf, "<allocation unit='bytes'>%llu</allocation>\n",
1187
                      def->allocation);
1188
    virBufferAsprintf(&buf, "<available unit='bytes'>%llu</available>\n",
1189
                      def->available);
1190

1191
    if (virStoragePoolSourceFormat(&buf, options, &def->source) < 0)
1192
        goto cleanup;
1193

1194 1195
    /* RBD, Sheepdog, and Gluster devices are not local block devs nor
     * files, so they don't have a target */
1196
    if (def->type != VIR_STORAGE_POOL_RBD &&
1197 1198
        def->type != VIR_STORAGE_POOL_SHEEPDOG &&
        def->type != VIR_STORAGE_POOL_GLUSTER) {
1199 1200
        virBufferAddLit(&buf, "<target>\n");
        virBufferAdjustIndent(&buf, 2);
1201

1202
        virBufferEscapeString(&buf, "<path>%s</path>\n", def->target.path);
1203

1204 1205 1206
        virBufferAddLit(&buf, "<permissions>\n");
        virBufferAdjustIndent(&buf, 2);
        virBufferAsprintf(&buf, "<mode>0%o</mode>\n",
1207
                          def->target.perms.mode);
1208
        virBufferAsprintf(&buf, "<owner>%d</owner>\n",
1209
                          (int) def->target.perms.uid);
1210
        virBufferAsprintf(&buf, "<group>%d</group>\n",
1211
                          (int) def->target.perms.gid);
1212

1213
        virBufferEscapeString(&buf, "<label>%s</label>\n",
1214
                              def->target.perms.label);
1215

1216 1217 1218 1219
        virBufferAdjustIndent(&buf, -2);
        virBufferAddLit(&buf, "</permissions>\n");
        virBufferAdjustIndent(&buf, -2);
        virBufferAddLit(&buf, "</target>\n");
1220
    }
1221
    virBufferAdjustIndent(&buf, -2);
E
Eric Blake 已提交
1222
    virBufferAddLit(&buf, "</pool>\n");
1223

1224 1225
    if (virBufferCheckError(&buf) < 0)
        goto cleanup;
1226

1227
    return virBufferContentAndReset(&buf);
1228

1229
 cleanup:
1230
    virBufferFreeAndReset(&buf);
1231 1232 1233 1234 1235
    return NULL;
}


static int
1236
virStorageSize(const char *unit,
1237
               const char *val,
1238 1239 1240
               unsigned long long *ret)
{
    if (virStrToLong_ull(val, NULL, 10, ret) < 0) {
1241 1242
        virReportError(VIR_ERR_XML_ERROR, "%s",
                       _("malformed capacity element"));
1243 1244
        return -1;
    }
1245 1246 1247 1248
    /* off_t is signed, so you cannot create a file larger than 2**63
     * bytes in the first place.  */
    if (virScaleInteger(ret, unit, 1, LLONG_MAX) < 0)
        return -1;
1249 1250 1251 1252 1253

    return 0;
}

static virStorageVolDefPtr
1254
virStorageVolDefParseXML(virStoragePoolDefPtr pool,
1255 1256
                         xmlXPathContextPtr ctxt)
{
1257
    virStorageVolDefPtr ret;
1258
    virStorageVolOptionsPtr options;
1259
    char *type = NULL;
1260 1261 1262
    char *allocation = NULL;
    char *capacity = NULL;
    char *unit = NULL;
1263
    char *backingStore = NULL;
1264
    xmlNodePtr node;
1265
    xmlNodePtr *nodes = NULL;
1266 1267
    size_t i;
    int n;
1268

1269
    options = virStorageVolOptionsForPoolType(pool->type);
1270 1271 1272
    if (options == NULL)
        return NULL;

1273
    if (VIR_ALLOC(ret) < 0)
1274 1275
        return NULL;

1276
    ret->name = virXPathString("string(./name)", ctxt);
1277
    if (ret->name == NULL) {
1278 1279
        virReportError(VIR_ERR_XML_ERROR, "%s",
                       _("missing volume name element"));
1280
        goto error;
1281 1282
    }

1283 1284
    /* Normally generated by pool refresh, but useful for unit tests */
    ret->key = virXPathString("string(./key)", ctxt);
1285

1286 1287 1288 1289
    /* Technically overridden by pool refresh, but useful for unit tests */
    type = virXPathString("string(./@type)", ctxt);
    if (type) {
        if ((ret->type = virStorageVolTypeFromString(type)) < 0) {
1290
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
1291 1292 1293 1294 1295
                           _("unknown volume type '%s'"), type);
            goto error;
        }
    }

1296 1297
    capacity = virXPathString("string(./capacity)", ctxt);
    unit = virXPathString("string(./capacity/@unit)", ctxt);
1298
    if (capacity == NULL) {
1299 1300
        virReportError(VIR_ERR_XML_ERROR, "%s",
                       _("missing capacity element"));
1301
        goto error;
1302
    }
1303
    if (virStorageSize(unit, capacity, &ret->target.capacity) < 0)
1304
        goto error;
1305
    VIR_FREE(unit);
1306

1307
    allocation = virXPathString("string(./allocation)", ctxt);
1308
    if (allocation) {
1309
        unit = virXPathString("string(./allocation/@unit)", ctxt);
1310
        if (virStorageSize(unit, allocation, &ret->target.allocation) < 0)
1311
            goto error;
1312
    } else {
1313
        ret->target.allocation = ret->target.capacity;
1314 1315
    }

1316
    ret->target.path = virXPathString("string(./target/path)", ctxt);
1317
    if (options->formatFromString) {
1318
        char *format = virXPathString("string(./target/format/@type)", ctxt);
1319 1320 1321 1322 1323 1324
        if (format == NULL)
            ret->target.format = options->defaultFormat;
        else
            ret->target.format = (options->formatFromString)(format);

        if (ret->target.format < 0) {
1325
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
1326
                           _("unknown volume format type %s"), format);
1327
            VIR_FREE(format);
1328
            goto error;
1329
        }
1330
        VIR_FREE(format);
1331 1332
    }

1333 1334 1335
    if (VIR_ALLOC(ret->target.perms) < 0)
        goto error;
    if (virStorageDefParsePerms(ctxt, ret->target.perms,
1336 1337
                                "./target/permissions",
                                DEFAULT_VOL_PERM_MODE) < 0)
1338
        goto error;
1339

1340
    node = virXPathNode("./target/encryption", ctxt);
1341
    if (node != NULL) {
1342
        ret->target.encryption = virStorageEncryptionParseNode(ctxt->doc,
1343 1344
                                                               node);
        if (ret->target.encryption == NULL)
1345
            goto error;
1346 1347
    }

1348 1349 1350
    if ((backingStore = virXPathString("string(./backingStore/path)", ctxt))) {
        if (VIR_ALLOC(ret->target.backingStore) < 0)
            goto error;
1351

1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367
        ret->target.backingStore->path = backingStore;
        backingStore = NULL;

        if (options->formatFromString) {
            char *format = virXPathString("string(./backingStore/format/@type)", ctxt);
            if (format == NULL)
                ret->target.backingStore->format = options->defaultFormat;
            else
                ret->target.backingStore->format = (options->formatFromString)(format);

            if (ret->target.backingStore->format < 0) {
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                               _("unknown volume format type %s"), format);
                VIR_FREE(format);
                goto error;
            }
1368 1369
            VIR_FREE(format);
        }
1370 1371 1372 1373 1374 1375 1376

        if (VIR_ALLOC(ret->target.backingStore->perms) < 0)
            goto error;
        if (virStorageDefParsePerms(ctxt, ret->target.backingStore->perms,
                                    "./backingStore/permissions",
                                    DEFAULT_VOL_PERM_MODE) < 0)
            goto error;
1377 1378
    }

1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394
    ret->target.compat = virXPathString("string(./target/compat)", ctxt);
    if (ret->target.compat) {
        char **version = virStringSplit(ret->target.compat, ".", 2);
        unsigned int result;

        if (!version || !version[1] ||
            virStrToLong_ui(version[0], NULL, 10, &result) < 0 ||
            virStrToLong_ui(version[1], NULL, 10, &result) < 0) {
            virStringFreeList(version);
            virReportError(VIR_ERR_XML_ERROR, "%s",
                           _("forbidden characters in 'compat' attribute"));
            goto error;
        }
        virStringFreeList(version);
    }

C
Chunyan Liu 已提交
1395 1396 1397
    if (virXPathNode("./target/nocow", ctxt))
        ret->target.nocow = true;

1398 1399 1400 1401 1402 1403 1404 1405
    if (options->featureFromString && virXPathNode("./target/features", ctxt)) {
        if ((n = virXPathNodeSet("./target/features/*", ctxt, &nodes)) < 0)
            goto error;

        if (!ret->target.compat && VIR_STRDUP(ret->target.compat, "1.1") < 0)
            goto error;

        if (!(ret->target.features = virBitmapNew(VIR_STORAGE_FILE_FEATURE_LAST)))
1406
            goto error;
1407 1408 1409 1410 1411

        for (i = 0; i < n; i++) {
            int f = options->featureFromString((const char*)nodes[i]->name);

            if (f < 0) {
1412
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, _("unsupported feature %s"),
1413 1414 1415 1416 1417 1418 1419 1420
                               (const char*)nodes[i]->name);
                goto error;
            }
            ignore_value(virBitmapSetBit(ret->target.features, f));
        }
        VIR_FREE(nodes);
    }

1421
 cleanup:
1422
    VIR_FREE(nodes);
1423 1424 1425
    VIR_FREE(allocation);
    VIR_FREE(capacity);
    VIR_FREE(unit);
1426
    VIR_FREE(type);
1427
    VIR_FREE(backingStore);
1428 1429
    return ret;

1430
 error:
1431
    virStorageVolDefFree(ret);
1432 1433
    ret = NULL;
    goto cleanup;
1434 1435 1436
}

virStorageVolDefPtr
1437
virStorageVolDefParseNode(virStoragePoolDefPtr pool,
1438
                          xmlDocPtr xml,
1439 1440
                          xmlNodePtr root)
{
1441 1442 1443
    xmlXPathContextPtr ctxt = NULL;
    virStorageVolDefPtr def = NULL;

1444
    if (!xmlStrEqual(root->name, BAD_CAST "volume")) {
1445
        virReportError(VIR_ERR_XML_ERROR,
1446 1447 1448
                       _("unexpected root element <%s>, "
                         "expecting <volume>"),
                       root->name);
1449 1450 1451 1452 1453
        goto cleanup;
    }

    ctxt = xmlXPathNewContext(xml);
    if (ctxt == NULL) {
1454
        virReportOOMError();
1455 1456 1457 1458
        goto cleanup;
    }

    ctxt->node = root;
1459
    def = virStorageVolDefParseXML(pool, ctxt);
1460
 cleanup:
1461 1462 1463 1464 1465
    xmlXPathFreeContext(ctxt);
    return def;
}

static virStorageVolDefPtr
1466
virStorageVolDefParse(virStoragePoolDefPtr pool,
1467
                      const char *xmlStr,
1468 1469
                      const char *filename)
{
1470
    virStorageVolDefPtr ret = NULL;
J
Jiri Denemark 已提交
1471
    xmlDocPtr xml;
1472

1473
    if ((xml = virXMLParse(filename, xmlStr, _("(storage_volume_definition)")))) {
J
Jiri Denemark 已提交
1474 1475
        ret = virStorageVolDefParseNode(pool, xml, xmlDocGetRootElement(xml));
        xmlFreeDoc(xml);
1476 1477 1478 1479 1480
    }

    return ret;
}

1481
virStorageVolDefPtr
1482
virStorageVolDefParseString(virStoragePoolDefPtr pool,
1483 1484
                            const char *xmlStr)
{
1485
    return virStorageVolDefParse(pool, xmlStr, NULL);
1486 1487 1488
}

virStorageVolDefPtr
1489
virStorageVolDefParseFile(virStoragePoolDefPtr pool,
1490 1491
                          const char *filename)
{
1492
    return virStorageVolDefParse(pool, NULL, filename);
1493
}
1494

1495 1496 1497 1498 1499 1500
static void
virStorageVolTimestampFormat(virBufferPtr buf, const char *name,
                             struct timespec *ts)
{
    if (ts->tv_nsec < 0)
        return;
1501
    virBufferAsprintf(buf, "<%s>%llu", name,
1502 1503 1504 1505 1506 1507
                      (unsigned long long) ts->tv_sec);
    if (ts->tv_nsec)
       virBufferAsprintf(buf, ".%09ld", ts->tv_nsec);
    virBufferAsprintf(buf, "</%s>\n", name);
}

1508
static int
1509
virStorageVolTargetDefFormat(virStorageVolOptionsPtr options,
1510
                             virBufferPtr buf,
1511
                             virStorageSourcePtr def,
1512 1513
                             const char *type)
{
1514 1515
    virBufferAsprintf(buf, "<%s>\n", type);
    virBufferAdjustIndent(buf, 2);
1516

1517
    virBufferEscapeString(buf, "<path>%s</path>\n", def->path);
1518 1519 1520 1521

    if (options->formatToString) {
        const char *format = (options->formatToString)(def->format);
        if (!format) {
1522 1523 1524
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("unknown volume format number %d"),
                           def->format);
1525 1526
            return -1;
        }
1527
        virBufferAsprintf(buf, "<format type='%s'/>\n", format);
1528 1529
    }

1530 1531 1532
    if (def->perms) {
        virBufferAddLit(buf, "<permissions>\n");
        virBufferAdjustIndent(buf, 2);
1533

1534 1535 1536 1537 1538 1539
        virBufferAsprintf(buf, "<mode>0%o</mode>\n",
                          def->perms->mode);
        virBufferAsprintf(buf, "<owner>%u</owner>\n",
                          (unsigned int) def->perms->uid);
        virBufferAsprintf(buf, "<group>%u</group>\n",
                          (unsigned int) def->perms->gid);
1540 1541


1542 1543
        virBufferEscapeString(buf, "<label>%s</label>\n",
                              def->perms->label);
1544

1545 1546 1547
        virBufferAdjustIndent(buf, -2);
        virBufferAddLit(buf, "</permissions>\n");
    }
1548

1549
    if (def->timestamps) {
1550 1551
        virBufferAddLit(buf, "<timestamps>\n");
        virBufferAdjustIndent(buf, 2);
1552 1553 1554 1555
        virStorageVolTimestampFormat(buf, "atime", &def->timestamps->atime);
        virStorageVolTimestampFormat(buf, "mtime", &def->timestamps->mtime);
        virStorageVolTimestampFormat(buf, "ctime", &def->timestamps->ctime);
        virStorageVolTimestampFormat(buf, "btime", &def->timestamps->btime);
1556 1557
        virBufferAdjustIndent(buf, -2);
        virBufferAddLit(buf, "</timestamps>\n");
1558 1559
    }

1560 1561
    if (def->encryption &&
        virStorageEncryptionFormat(buf, def->encryption) < 0)
1562
            return -1;
1563

1564
    virBufferEscapeString(buf, "<compat>%s</compat>\n", def->compat);
1565 1566

    if (options->featureToString && def->features) {
1567
        size_t i;
1568 1569 1570
        bool b;
        bool empty = virBitmapIsAllClear(def->features);

1571 1572 1573 1574 1575 1576
        if (empty) {
            virBufferAddLit(buf, "<features/>\n");
        } else {
            virBufferAddLit(buf, "<features>\n");
            virBufferAdjustIndent(buf, 2);
        }
1577 1578 1579 1580

        for (i = 0; i < VIR_STORAGE_FILE_FEATURE_LAST; i++) {
            ignore_value(virBitmapGetBit(def->features, i, &b));
            if (b)
1581
                virBufferAsprintf(buf, "<%s/>\n",
1582 1583
                                  options->featureToString(i));
        }
1584 1585 1586 1587
        if (!empty) {
            virBufferAdjustIndent(buf, -2);
            virBufferAddLit(buf, "</features>\n");
        }
1588 1589
    }

1590 1591
    virBufferAdjustIndent(buf, -2);
    virBufferAsprintf(buf, "</%s>\n", type);
1592 1593
    return 0;
}
1594 1595

char *
1596
virStorageVolDefFormat(virStoragePoolDefPtr pool,
1597 1598
                       virStorageVolDefPtr def)
{
1599
    virStorageVolOptionsPtr options;
1600
    virBuffer buf = VIR_BUFFER_INITIALIZER;
1601

1602
    options = virStorageVolOptionsForPoolType(pool->type);
1603 1604 1605
    if (options == NULL)
        return NULL;

1606 1607
    virBufferAsprintf(&buf, "<volume type='%s'>\n",
                      virStorageVolTypeToString(def->type));
1608 1609 1610 1611 1612 1613
    virBufferAdjustIndent(&buf, 2);

    virBufferEscapeString(&buf, "<name>%s</name>\n", def->name);
    virBufferEscapeString(&buf, "<key>%s</key>\n", def->key);
    virBufferAddLit(&buf, "<source>\n");
    virBufferAdjustIndent(&buf, 2);
1614 1615

    if (def->source.nextent) {
1616
        size_t i;
1617
        const char *thispath = NULL;
1618
        for (i = 0; i < def->source.nextent; i++) {
1619 1620 1621
            if (thispath == NULL ||
                STRNEQ(thispath, def->source.extents[i].path)) {
                if (thispath != NULL)
1622
                    virBufferAddLit(&buf, "</device>\n");
1623

1624
                virBufferEscapeString(&buf, "<device path='%s'>\n",
1625
                                      def->source.extents[i].path);
1626 1627
            }

1628 1629
            virBufferAdjustIndent(&buf, 2);
            virBufferAsprintf(&buf, "<extent start='%llu' end='%llu'/>\n",
1630 1631
                              def->source.extents[i].start,
                              def->source.extents[i].end);
1632
            virBufferAdjustIndent(&buf, -2);
1633 1634 1635
            thispath = def->source.extents[i].path;
        }
        if (thispath != NULL)
1636
            virBufferAddLit(&buf, "</device>\n");
1637 1638
    }

1639 1640 1641 1642
    virBufferAdjustIndent(&buf, -2);
    virBufferAddLit(&buf, "</source>\n");

    virBufferAsprintf(&buf, "<capacity unit='bytes'>%llu</capacity>\n",
1643
                      def->target.capacity);
1644
    virBufferAsprintf(&buf, "<allocation unit='bytes'>%llu</allocation>\n",
1645
                      def->target.allocation);
1646

1647
    if (virStorageVolTargetDefFormat(options, &buf,
1648 1649
                                     &def->target, "target") < 0)
        goto cleanup;
1650

1651
    if (def->target.backingStore &&
1652
        virStorageVolTargetDefFormat(options, &buf,
1653 1654
                                     def->target.backingStore,
                                     "backingStore") < 0)
1655
        goto cleanup;
1656

1657
    virBufferAdjustIndent(&buf, -2);
E
Eric Blake 已提交
1658
    virBufferAddLit(&buf, "</volume>\n");
1659

1660 1661
    if (virBufferCheckError(&buf) < 0)
        goto cleanup;
1662

1663
    return virBufferContentAndReset(&buf);
1664

1665
 cleanup:
1666
    virBufferFreeAndReset(&buf);
1667 1668 1669 1670 1671
    return NULL;
}


virStoragePoolObjPtr
1672
virStoragePoolObjFindByUUID(virStoragePoolObjListPtr pools,
1673 1674
                            const unsigned char *uuid)
{
1675
    size_t i;
1676

1677
    for (i = 0; i < pools->count; i++) {
1678
        virStoragePoolObjLock(pools->objs[i]);
1679 1680
        if (!memcmp(pools->objs[i]->def->uuid, uuid, VIR_UUID_BUFLEN))
            return pools->objs[i];
1681 1682
        virStoragePoolObjUnlock(pools->objs[i]);
    }
1683 1684 1685 1686 1687

    return NULL;
}

virStoragePoolObjPtr
1688
virStoragePoolObjFindByName(virStoragePoolObjListPtr pools,
1689 1690
                            const char *name)
{
1691
    size_t i;
1692

1693
    for (i = 0; i < pools->count; i++) {
1694
        virStoragePoolObjLock(pools->objs[i]);
1695 1696
        if (STREQ(pools->objs[i]->def->name, name))
            return pools->objs[i];
1697 1698
        virStoragePoolObjUnlock(pools->objs[i]);
    }
1699 1700 1701 1702

    return NULL;
}

1703 1704
virStoragePoolObjPtr
virStoragePoolSourceFindDuplicateDevices(virStoragePoolObjPtr pool,
1705 1706
                                         virStoragePoolDefPtr def)
{
1707
    size_t i, j;
1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718

    for (i = 0; i < pool->def->source.ndevice; i++) {
        for (j = 0; j < def->source.ndevice; j++) {
            if (STREQ(pool->def->source.devices[i].path, def->source.devices[j].path))
                return pool;
        }
    }

    return NULL;
}

1719 1720 1721
void
virStoragePoolObjClearVols(virStoragePoolObjPtr pool)
{
1722
    size_t i;
1723
    for (i = 0; i < pool->volumes.count; i++)
1724 1725 1726 1727
        virStorageVolDefFree(pool->volumes.objs[i]);

    VIR_FREE(pool->volumes.objs);
    pool->volumes.count = 0;
1728 1729 1730 1731
}

virStorageVolDefPtr
virStorageVolDefFindByKey(virStoragePoolObjPtr pool,
1732 1733
                          const char *key)
{
1734
    size_t i;
1735

1736
    for (i = 0; i < pool->volumes.count; i++)
1737 1738
        if (STREQ(pool->volumes.objs[i]->key, key))
            return pool->volumes.objs[i];
1739 1740 1741 1742 1743 1744

    return NULL;
}

virStorageVolDefPtr
virStorageVolDefFindByPath(virStoragePoolObjPtr pool,
1745 1746
                           const char *path)
{
1747
    size_t i;
1748

1749
    for (i = 0; i < pool->volumes.count; i++)
1750 1751
        if (STREQ(pool->volumes.objs[i]->target.path, path))
            return pool->volumes.objs[i];
1752 1753 1754 1755 1756 1757

    return NULL;
}

virStorageVolDefPtr
virStorageVolDefFindByName(virStoragePoolObjPtr pool,
1758 1759
                           const char *name)
{
1760
    size_t i;
1761

1762
    for (i = 0; i < pool->volumes.count; i++)
1763 1764
        if (STREQ(pool->volumes.objs[i]->name, name))
            return pool->volumes.objs[i];
1765 1766 1767 1768 1769

    return NULL;
}

virStoragePoolObjPtr
1770
virStoragePoolObjAssignDef(virStoragePoolObjListPtr pools,
1771 1772
                           virStoragePoolDefPtr def)
{
1773 1774
    virStoragePoolObjPtr pool;

1775
    if ((pool = virStoragePoolObjFindByName(pools, def->name))) {
1776 1777 1778 1779
        if (!virStoragePoolObjIsActive(pool)) {
            virStoragePoolDefFree(pool->def);
            pool->def = def;
        } else {
1780
            virStoragePoolDefFree(pool->newDef);
1781 1782 1783 1784 1785
            pool->newDef = def;
        }
        return pool;
    }

1786
    if (VIR_ALLOC(pool) < 0)
1787 1788
        return NULL;

1789
    if (virMutexInit(&pool->lock) < 0) {
1790 1791
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("cannot initialize mutex"));
1792 1793 1794
        VIR_FREE(pool);
        return NULL;
    }
1795
    virStoragePoolObjLock(pool);
1796 1797
    pool->active = 0;

1798
    if (VIR_APPEND_ELEMENT_COPY(pools->objs, pools->count, pool) < 0) {
1799
        virStoragePoolObjUnlock(pool);
1800 1801 1802
        virStoragePoolObjFree(pool);
        return NULL;
    }
1803
    pool->def = def;
1804 1805 1806 1807 1808

    return pool;
}

static virStoragePoolObjPtr
1809
virStoragePoolObjLoad(virStoragePoolObjListPtr pools,
1810 1811
                      const char *file,
                      const char *path,
1812 1813
                      const char *autostartLink)
{
1814 1815 1816
    virStoragePoolDefPtr def;
    virStoragePoolObjPtr pool;

1817
    if (!(def = virStoragePoolDefParseFile(path))) {
1818 1819 1820 1821
        return NULL;
    }

    if (!virFileMatchesNameSuffix(file, def->name, ".xml")) {
1822
        virReportError(VIR_ERR_XML_ERROR,
1823 1824
                       _("Storage pool config filename '%s' does "
                         "not match pool name '%s'"),
1825
                       path, def->name);
1826 1827 1828 1829
        virStoragePoolDefFree(def);
        return NULL;
    }

1830
    if (!(pool = virStoragePoolObjAssignDef(pools, def))) {
1831 1832 1833 1834
        virStoragePoolDefFree(def);
        return NULL;
    }

1835
    VIR_FREE(pool->configFile);  /* for driver reload */
1836
    if (VIR_STRDUP(pool->configFile, path) < 0) {
1837 1838 1839
        virStoragePoolDefFree(def);
        return NULL;
    }
1840
    VIR_FREE(pool->autostartLink); /* for driver reload */
1841
    if (VIR_STRDUP(pool->autostartLink, autostartLink) < 0) {
1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853
        virStoragePoolDefFree(def);
        return NULL;
    }

    pool->autostart = virFileLinkPointsTo(pool->autostartLink,
                                          pool->configFile);

    return pool;
}


int
1854
virStoragePoolLoadAllConfigs(virStoragePoolObjListPtr pools,
1855
                             const char *configDir,
1856 1857
                             const char *autostartDir)
{
1858 1859
    DIR *dir;
    struct dirent *entry;
E
Eric Blake 已提交
1860
    int ret;
1861

1862
    if (!(dir = opendir(configDir))) {
1863 1864
        if (errno == ENOENT)
            return 0;
1865
        virReportSystemError(errno, _("Failed to open dir '%s'"),
1866
                             configDir);
1867 1868 1869
        return -1;
    }

E
Eric Blake 已提交
1870
    while ((ret = virDirRead(dir, &entry, configDir)) > 0) {
1871 1872
        char *path;
        char *autostartLink;
1873
        virStoragePoolObjPtr pool;
1874 1875 1876 1877 1878 1879 1880

        if (entry->d_name[0] == '.')
            continue;

        if (!virFileHasSuffix(entry->d_name, ".xml"))
            continue;

1881
        if (!(path = virFileBuildPath(configDir, entry->d_name, NULL)))
1882 1883
            continue;

1884 1885 1886
        if (!(autostartLink = virFileBuildPath(autostartDir, entry->d_name,
                                               NULL))) {
            VIR_FREE(path);
1887 1888 1889
            continue;
        }

1890
        pool = virStoragePoolObjLoad(pools, entry->d_name, path,
1891
                                     autostartLink);
1892 1893
        if (pool)
            virStoragePoolObjUnlock(pool);
1894 1895 1896

        VIR_FREE(path);
        VIR_FREE(autostartLink);
1897 1898 1899
    }

    closedir(dir);
E
Eric Blake 已提交
1900
    return ret;
1901 1902 1903
}

int
1904
virStoragePoolSaveConfig(const char *configFile,
1905 1906
                         virStoragePoolDefPtr def)
{
J
Ján Tomko 已提交
1907
    char uuidstr[VIR_UUID_STRING_BUFLEN];
1908
    char *xml;
1909
    int ret = -1;
1910

1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930
    if (!(xml = virStoragePoolDefFormat(def))) {
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("failed to generate XML"));
        return -1;
    }

    virUUIDFormat(def->uuid, uuidstr);
    ret = virXMLSaveFile(configFile,
                         virXMLPickShellSafeComment(def->name, uuidstr),
                         "pool-edit", xml);
    VIR_FREE(xml);

    return ret;
}

int
virStoragePoolObjSaveDef(virStorageDriverStatePtr driver,
                         virStoragePoolObjPtr pool,
                         virStoragePoolDefPtr def)
{
1931
    if (!pool->configFile) {
1932 1933
        if (virFileMakePath(driver->configDir) < 0) {
            virReportSystemError(errno,
C
Cole Robinson 已提交
1934 1935
                                 _("cannot create config directory %s"),
                                 driver->configDir);
1936 1937 1938
            return -1;
        }

1939 1940
        if (!(pool->configFile = virFileBuildPath(driver->configDir,
                                                  def->name, ".xml"))) {
1941 1942 1943
            return -1;
        }

1944 1945
        if (!(pool->autostartLink = virFileBuildPath(driver->autostartDir,
                                                     def->name, ".xml"))) {
1946
            VIR_FREE(pool->configFile);
1947 1948 1949 1950
            return -1;
        }
    }

1951
    return virStoragePoolSaveConfig(pool->configFile, def);
1952 1953 1954
}

int
1955 1956
virStoragePoolObjDeleteDef(virStoragePoolObjPtr pool)
{
1957
    if (!pool->configFile) {
1958 1959
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("no config file for %s"), pool->def->name);
1960 1961 1962 1963
        return -1;
    }

    if (unlink(pool->configFile) < 0) {
1964 1965 1966
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("cannot remove config for %s"),
                       pool->def->name);
1967 1968 1969 1970 1971
        return -1;
    }

    return 0;
}
1972

1973
virStoragePoolSourcePtr
1974
virStoragePoolSourceListNewSource(virStoragePoolSourceListPtr list)
1975 1976 1977
{
    virStoragePoolSourcePtr source;

1978
    if (VIR_REALLOC_N(list->sources, list->nsources + 1) < 0)
1979 1980 1981 1982 1983 1984 1985 1986
        return NULL;

    source = &list->sources[list->nsources++];
    memset(source, 0, sizeof(*source));

    return source;
}

1987 1988
char *
virStoragePoolSourceListFormat(virStoragePoolSourceListPtr def)
1989
{
1990
    virStoragePoolOptionsPtr options;
1991
    virBuffer buf = VIR_BUFFER_INITIALIZER;
1992
    const char *type;
1993
    size_t i;
1994

1995
    options = virStoragePoolOptionsForPoolType(def->type);
1996 1997 1998
    if (options == NULL)
        return NULL;

1999
    type = virStoragePoolTypeToString(def->type);
2000
    if (!type) {
2001 2002
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("unexpected pool type"));
2003 2004 2005 2006
        goto cleanup;
    }

    virBufferAddLit(&buf, "<sources>\n");
2007
    virBufferAdjustIndent(&buf, 2);
2008 2009

    for (i = 0; i < def->nsources; i++) {
2010
        virStoragePoolSourceFormat(&buf, options, &def->sources[i]);
2011 2012
    }

2013
    virBufferAdjustIndent(&buf, -2);
2014 2015
    virBufferAddLit(&buf, "</sources>\n");

2016 2017
    if (virBufferCheckError(&buf) < 0)
        goto cleanup;
2018 2019

    return virBufferContentAndReset(&buf);
2020

2021
 cleanup:
2022
    virBufferFreeAndReset(&buf);
2023
    return NULL;
2024
}
D
Daniel P. Berrange 已提交
2025 2026


2027 2028 2029 2030 2031 2032 2033 2034 2035 2036
/*
 * virStoragePoolObjIsDuplicate:
 * @doms : virStoragePoolObjListPtr to search
 * @def  : virStoragePoolDefPtr definition of pool to lookup
 * @check_active: If true, ensure that pool is not active
 *
 * Returns: -1 on error
 *          0 if pool is new
 *          1 if pool is a duplicate
 */
2037 2038 2039 2040
int
virStoragePoolObjIsDuplicate(virStoragePoolObjListPtr pools,
                             virStoragePoolDefPtr def,
                             unsigned int check_active)
2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051
{
    int ret = -1;
    virStoragePoolObjPtr pool = NULL;

    /* See if a Pool with matching UUID already exists */
    pool = virStoragePoolObjFindByUUID(pools, def->uuid);
    if (pool) {
        /* UUID matches, but if names don't match, refuse it */
        if (STRNEQ(pool->def->name, def->name)) {
            char uuidstr[VIR_UUID_STRING_BUFLEN];
            virUUIDFormat(pool->def->uuid, uuidstr);
2052 2053 2054
            virReportError(VIR_ERR_OPERATION_FAILED,
                           _("pool '%s' is already defined with uuid %s"),
                           pool->def->name, uuidstr);
2055 2056 2057 2058 2059 2060
            goto cleanup;
        }

        if (check_active) {
            /* UUID & name match, but if Pool is already active, refuse it */
            if (virStoragePoolObjIsActive(pool)) {
2061 2062 2063
                virReportError(VIR_ERR_OPERATION_INVALID,
                               _("pool is already active as '%s'"),
                               pool->def->name);
2064 2065 2066 2067
                goto cleanup;
            }
        }

J
Ján Tomko 已提交
2068
        ret = 1;
2069 2070 2071 2072 2073 2074
    } else {
        /* UUID does not match, but if a name matches, refuse it */
        pool = virStoragePoolObjFindByName(pools, def->name);
        if (pool) {
            char uuidstr[VIR_UUID_STRING_BUFLEN];
            virUUIDFormat(pool->def->uuid, uuidstr);
2075 2076 2077
            virReportError(VIR_ERR_OPERATION_FAILED,
                           _("pool '%s' already exists with uuid %s"),
                           def->name, uuidstr);
2078 2079
            goto cleanup;
        }
J
Ján Tomko 已提交
2080
        ret = 0;
2081 2082
    }

2083
 cleanup:
2084 2085 2086 2087 2088
    if (pool)
        virStoragePoolObjUnlock(pool);
    return ret;
}

2089 2090 2091
static int
getSCSIHostNumber(virStoragePoolSourceAdapter adapter,
                  unsigned int *hostnum)
2092
{
2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119
    int ret = -1;
    unsigned int num;
    char *name = NULL;

    if (adapter.data.scsi_host.has_parent) {
        virDevicePCIAddress addr = adapter.data.scsi_host.parentaddr;
        unsigned int unique_id = adapter.data.scsi_host.unique_id;

        if (!(name = virGetSCSIHostNameByParentaddr(addr.domain,
                                                    addr.bus,
                                                    addr.slot,
                                                    addr.function,
                                                    unique_id)))
            goto cleanup;
        if (virGetSCSIHostNumber(name, &num) < 0)
            goto cleanup;
    } else {
        if (virGetSCSIHostNumber(adapter.data.scsi_host.name, &num) < 0)
            goto cleanup;
    }

    *hostnum = num;
    ret = 0;

 cleanup:
    VIR_FREE(name);
    return ret;
2120
}
2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142
static bool
matchSCSIAdapterParent(virStoragePoolObjPtr pool,
                       virStoragePoolDefPtr def)
{
    virDevicePCIAddressPtr pooladdr =
        &pool->def->source.adapter.data.scsi_host.parentaddr;
    virDevicePCIAddressPtr defaddr =
        &def->source.adapter.data.scsi_host.parentaddr;
    int pool_unique_id =
        pool->def->source.adapter.data.scsi_host.unique_id;
    int def_unique_id =
        def->source.adapter.data.scsi_host.unique_id;
    if (pooladdr->domain == defaddr->domain &&
        pooladdr->bus == defaddr->bus &&
        pooladdr->slot == defaddr->slot &&
        pooladdr->function == defaddr->function &&
        pool_unique_id == def_unique_id) {
        return true;
    }
    return false;
}

2143

2144 2145 2146
int
virStoragePoolSourceFindDuplicate(virStoragePoolObjListPtr pools,
                                  virStoragePoolDefPtr def)
2147
{
2148
    size_t i;
2149 2150 2151 2152 2153 2154 2155 2156 2157 2158
    int ret = 1;
    virStoragePoolObjPtr pool = NULL;
    virStoragePoolObjPtr matchpool = NULL;

    /* Check the pool list for duplicate underlying storage */
    for (i = 0; i < pools->count; i++) {
        pool = pools->objs[i];
        if (def->type != pool->def->type)
            continue;

2159 2160 2161 2162
        /* Don't mach against ourself if re-defining existing pool ! */
        if (STREQ(pool->def->name, def->name))
            continue;

2163 2164 2165 2166 2167 2168 2169 2170 2171
        virStoragePoolObjLock(pool);

        switch (pool->def->type) {
        case VIR_STORAGE_POOL_DIR:
            if (STREQ(pool->def->target.path, def->target.path))
                matchpool = pool;
            break;
        case VIR_STORAGE_POOL_NETFS:
            if ((STREQ(pool->def->source.dir, def->source.dir)) \
2172 2173
                && (pool->def->source.nhost == 1 && def->source.nhost == 1) \
                && (STREQ(pool->def->source.hosts[0].name, def->source.hosts[0].name)))
2174 2175 2176
                matchpool = pool;
            break;
        case VIR_STORAGE_POOL_SCSI:
2177
            if (pool->def->source.adapter.type ==
2178 2179
                VIR_STORAGE_POOL_SOURCE_ADAPTER_TYPE_FC_HOST &&
                def->source.adapter.type ==
2180 2181 2182 2183 2184 2185 2186
                VIR_STORAGE_POOL_SOURCE_ADAPTER_TYPE_FC_HOST) {
                if (STREQ(pool->def->source.adapter.data.fchost.wwnn,
                          def->source.adapter.data.fchost.wwnn) &&
                    STREQ(pool->def->source.adapter.data.fchost.wwpn,
                          def->source.adapter.data.fchost.wwpn))
                    matchpool = pool;
            } else if (pool->def->source.adapter.type ==
2187 2188
                       VIR_STORAGE_POOL_SOURCE_ADAPTER_TYPE_SCSI_HOST &&
                       def->source.adapter.type ==
2189
                       VIR_STORAGE_POOL_SOURCE_ADAPTER_TYPE_SCSI_HOST) {
2190 2191
                unsigned int pool_hostnum, def_hostnum;

2192 2193 2194 2195 2196 2197 2198
                if (pool->def->source.adapter.data.scsi_host.has_parent &&
                    def->source.adapter.data.scsi_host.has_parent &&
                    matchSCSIAdapterParent(pool, def)) {
                    matchpool = pool;
                    break;
                }

2199 2200 2201
                if (getSCSIHostNumber(pool->def->source.adapter,
                                      &pool_hostnum) < 0 ||
                    getSCSIHostNumber(def->source.adapter, &def_hostnum) < 0)
2202
                    break;
2203 2204
                if (pool_hostnum == def_hostnum)
                    matchpool = pool;
2205
            }
2206 2207 2208 2209
            break;
        case VIR_STORAGE_POOL_ISCSI:
            matchpool = virStoragePoolSourceFindDuplicateDevices(pool, def);
            if (matchpool) {
2210 2211 2212 2213 2214 2215 2216 2217
                if (matchpool->def->source.nhost == 1 && def->source.nhost == 1) {
                    if (STREQ(matchpool->def->source.hosts[0].name, def->source.hosts[0].name)) {
                        if ((matchpool->def->source.initiator.iqn) && (def->source.initiator.iqn)) {
                            if (STREQ(matchpool->def->source.initiator.iqn, def->source.initiator.iqn))
                                break;
                            matchpool = NULL;
                        }
                        break;
2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231
                    }
                }
                matchpool = NULL;
            }
            break;
        case VIR_STORAGE_POOL_FS:
        case VIR_STORAGE_POOL_LOGICAL:
        case VIR_STORAGE_POOL_DISK:
            matchpool = virStoragePoolSourceFindDuplicateDevices(pool, def);
            break;
        default:
            break;
        }
        virStoragePoolObjUnlock(pool);
2232 2233 2234

        if (matchpool)
            break;
2235 2236 2237
    }

    if (matchpool) {
2238 2239 2240
        virReportError(VIR_ERR_OPERATION_FAILED,
                       _("Storage source conflict with pool: '%s'"),
                       matchpool->def->name);
2241 2242 2243 2244
        ret = -1;
    }
    return ret;
}
2245

2246 2247
void
virStoragePoolObjLock(virStoragePoolObjPtr obj)
2248
{
2249
    virMutexLock(&obj->lock);
2250 2251
}

2252 2253
void
virStoragePoolObjUnlock(virStoragePoolObjPtr obj)
2254
{
2255
    virMutexUnlock(&obj->lock);
2256
}
2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307

#define MATCH(FLAG) (flags & (FLAG))
static bool
virStoragePoolMatch(virStoragePoolObjPtr poolobj,
                    unsigned int flags)
{
    /* filter by active state */
    if (MATCH(VIR_CONNECT_LIST_STORAGE_POOLS_FILTERS_ACTIVE) &&
        !((MATCH(VIR_CONNECT_LIST_STORAGE_POOLS_ACTIVE) &&
           virStoragePoolObjIsActive(poolobj)) ||
          (MATCH(VIR_CONNECT_LIST_STORAGE_POOLS_INACTIVE) &&
           !virStoragePoolObjIsActive(poolobj))))
        return false;

    /* filter by persistence */
    if (MATCH(VIR_CONNECT_LIST_STORAGE_POOLS_FILTERS_PERSISTENT) &&
        !((MATCH(VIR_CONNECT_LIST_STORAGE_POOLS_PERSISTENT) &&
           poolobj->configFile) ||
          (MATCH(VIR_CONNECT_LIST_STORAGE_POOLS_TRANSIENT) &&
           !poolobj->configFile)))
        return false;

    /* filter by autostart option */
    if (MATCH(VIR_CONNECT_LIST_STORAGE_POOLS_FILTERS_AUTOSTART) &&
        !((MATCH(VIR_CONNECT_LIST_STORAGE_POOLS_AUTOSTART) &&
           poolobj->autostart) ||
          (MATCH(VIR_CONNECT_LIST_STORAGE_POOLS_NO_AUTOSTART) &&
           !poolobj->autostart)))
        return false;

    /* filter by pool type */
    if (MATCH(VIR_CONNECT_LIST_STORAGE_POOLS_FILTERS_POOL_TYPE)) {
        if (!((MATCH(VIR_CONNECT_LIST_STORAGE_POOLS_DIR) &&
               (poolobj->def->type == VIR_STORAGE_POOL_DIR))     ||
              (MATCH(VIR_CONNECT_LIST_STORAGE_POOLS_FS) &&
               (poolobj->def->type == VIR_STORAGE_POOL_FS))      ||
              (MATCH(VIR_CONNECT_LIST_STORAGE_POOLS_NETFS) &&
               (poolobj->def->type == VIR_STORAGE_POOL_NETFS))   ||
              (MATCH(VIR_CONNECT_LIST_STORAGE_POOLS_LOGICAL) &&
               (poolobj->def->type == VIR_STORAGE_POOL_LOGICAL)) ||
              (MATCH(VIR_CONNECT_LIST_STORAGE_POOLS_DISK) &&
               (poolobj->def->type == VIR_STORAGE_POOL_DISK))    ||
              (MATCH(VIR_CONNECT_LIST_STORAGE_POOLS_ISCSI) &&
               (poolobj->def->type == VIR_STORAGE_POOL_ISCSI))   ||
              (MATCH(VIR_CONNECT_LIST_STORAGE_POOLS_SCSI) &&
               (poolobj->def->type == VIR_STORAGE_POOL_SCSI))    ||
              (MATCH(VIR_CONNECT_LIST_STORAGE_POOLS_MPATH) &&
               (poolobj->def->type == VIR_STORAGE_POOL_MPATH))   ||
              (MATCH(VIR_CONNECT_LIST_STORAGE_POOLS_RBD) &&
               (poolobj->def->type == VIR_STORAGE_POOL_RBD))     ||
              (MATCH(VIR_CONNECT_LIST_STORAGE_POOLS_SHEEPDOG) &&
2308 2309 2310
               (poolobj->def->type == VIR_STORAGE_POOL_SHEEPDOG)) ||
              (MATCH(VIR_CONNECT_LIST_STORAGE_POOLS_GLUSTER) &&
               (poolobj->def->type == VIR_STORAGE_POOL_GLUSTER))))
2311 2312 2313 2314 2315 2316 2317 2318
            return false;
    }

    return true;
}
#undef MATCH

int
2319 2320 2321 2322 2323
virStoragePoolObjListExport(virConnectPtr conn,
                            virStoragePoolObjList poolobjs,
                            virStoragePoolPtr **pools,
                            virStoragePoolObjListFilter filter,
                            unsigned int flags)
2324 2325 2326 2327 2328
{
    virStoragePoolPtr *tmp_pools = NULL;
    virStoragePoolPtr pool = NULL;
    int npools = 0;
    int ret = -1;
2329
    size_t i;
2330

2331 2332
    if (pools && VIR_ALLOC_N(tmp_pools, poolobjs.count + 1) < 0)
        goto cleanup;
2333 2334 2335 2336

    for (i = 0; i < poolobjs.count; i++) {
        virStoragePoolObjPtr poolobj = poolobjs.objs[i];
        virStoragePoolObjLock(poolobj);
2337 2338
        if ((!filter || filter(conn, poolobj->def)) &&
            virStoragePoolMatch(poolobj, flags)) {
2339 2340 2341
            if (pools) {
                if (!(pool = virGetStoragePool(conn,
                                               poolobj->def->name,
2342 2343
                                               poolobj->def->uuid,
                                               NULL, NULL))) {
2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362
                    virStoragePoolObjUnlock(poolobj);
                    goto cleanup;
                }
                tmp_pools[npools] = pool;
            }
            npools++;
        }
        virStoragePoolObjUnlock(poolobj);
    }

    if (tmp_pools) {
        /* trim the array to the final size */
        ignore_value(VIR_REALLOC_N(tmp_pools, npools + 1));
        *pools = tmp_pools;
        tmp_pools = NULL;
    }

    ret = npools;

2363
 cleanup:
2364 2365 2366 2367 2368 2369 2370 2371 2372 2373
    if (tmp_pools) {
        for (i = 0; i < npools; i++) {
            if (tmp_pools[i])
                virStoragePoolFree(tmp_pools[i]);
        }
    }

    VIR_FREE(tmp_pools);
    return ret;
}