You need to sign in or sign up before continuing.
node_device_conf.c 74.6 KB
Newer Older
1 2 3
/*
 * node_device_conf.c: config handling for node devices
 *
4
 * Copyright (C) 2009-2015 Red Hat, Inc.
5 6 7 8 9 10 11 12 13 14 15 16 17 18
 * Copyright (C) 2008 Virtual Iron Software, Inc.
 * Copyright (C) 2008 David F. Lively
 *
 * 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
19
 * License along with this library.  If not, see
O
Osier Yang 已提交
20
 * <http://www.gnu.org/licenses/>.
21 22 23 24 25 26 27 28 29
 *
 * Author: David F. Lively <dlively@virtualiron.com>
 */

#include <config.h>

#include <unistd.h>
#include <errno.h>

30
#include "virerror.h"
31
#include "datatypes.h"
32
#include "viralloc.h"
33
#include "virstring.h"
34
#include "node_device_conf.h"
35
#include "device_conf.h"
36
#include "virxml.h"
37
#include "virbuffer.h"
38
#include "viruuid.h"
39
#include "virrandom.h"
40

41
#define VIR_FROM_THIS VIR_FROM_NODEDEV
42

43 44 45 46
VIR_ENUM_IMPL(virNodeDevDevnode, VIR_NODE_DEV_DEVNODE_LAST,
              "dev",
              "link")

47 48 49 50 51 52 53
VIR_ENUM_IMPL(virNodeDevCap, VIR_NODE_DEV_CAP_LAST,
              "system",
              "pci",
              "usb_device",
              "usb",
              "net",
              "scsi_host",
D
David Allan 已提交
54
              "scsi_target",
55
              "scsi",
56 57
              "storage",
              "fc_host",
58
              "vports",
M
Marc-André Lureau 已提交
59 60
              "scsi_generic",
              "drm")
61 62 63

VIR_ENUM_IMPL(virNodeDevNetCap, VIR_NODE_DEV_CAP_NET_LAST,
              "80203",
64
              "80211")
65

M
Marc-André Lureau 已提交
66 67 68 69 70
VIR_ENUM_IMPL(virNodeDevDRM, VIR_NODE_DEV_DRM_LAST,
              "primary",
              "control",
              "render")

71
static int
72
virNodeDevCapsDefParseString(const char *xpath,
73
                             xmlXPathContextPtr ctxt,
74
                             char **string)
75 76 77
{
    char *s;

78
    if (!(s = virXPathString(xpath, ctxt)))
79 80 81 82 83 84
        return -1;

    *string = s;
    return 0;
}

E
Eric Blake 已提交
85
int virNodeDeviceHasCap(const virNodeDeviceObj *dev, const char *cap)
86 87
{
    virNodeDevCapsDefPtr caps = dev->def->caps;
88 89 90 91 92
    const char *fc_host_cap =
        virNodeDevCapTypeToString(VIR_NODE_DEV_CAP_FC_HOST);
    const char *vports_cap =
        virNodeDevCapTypeToString(VIR_NODE_DEV_CAP_VPORTS);

93
    while (caps) {
94
        if (STREQ(cap, virNodeDevCapTypeToString(caps->data.type)))
95
            return 1;
96
        else if (caps->data.type == VIR_NODE_DEV_CAP_SCSI_HOST)
97
            if ((STREQ(cap, fc_host_cap) &&
98 99
                (caps->data.scsi_host.flags &
                 VIR_NODE_DEV_CAP_FLAG_HBA_FC_HOST)) ||
100
                (STREQ(cap, vports_cap) &&
101 102 103
                (caps->data.scsi_host.flags &
                 VIR_NODE_DEV_CAP_FLAG_HBA_VPORT_OPS)))
                return 1;
104 105 106 107
        caps = caps->next;
    }
    return 0;
}
108

109

110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133
/* virNodeDeviceFindFCCapDef:
 * @dev: Pointer to current device
 *
 * Search the device object 'caps' array for fc_host capability.
 *
 * Returns:
 * Pointer to the caps or NULL if not found
 */
static virNodeDevCapsDefPtr
virNodeDeviceFindFCCapDef(const virNodeDeviceObj *dev)
{
    virNodeDevCapsDefPtr caps = dev->def->caps;

    while (caps) {
        if (caps->data.type == VIR_NODE_DEV_CAP_SCSI_HOST &&
            (caps->data.scsi_host.flags & VIR_NODE_DEV_CAP_FLAG_HBA_FC_HOST))
            break;

        caps = caps->next;
    }
    return caps;
}


134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157
/* virNodeDeviceFindVPORTCapDef:
 * @dev: Pointer to current device
 *
 * Search the device object 'caps' array for vport_ops capability.
 *
 * Returns:
 * Pointer to the caps or NULL if not found
 */
static virNodeDevCapsDefPtr
virNodeDeviceFindVPORTCapDef(const virNodeDeviceObj *dev)
{
    virNodeDevCapsDefPtr caps = dev->def->caps;

    while (caps) {
        if (caps->data.type == VIR_NODE_DEV_CAP_SCSI_HOST &&
            (caps->data.scsi_host.flags & VIR_NODE_DEV_CAP_FLAG_HBA_VPORT_OPS))
            break;

        caps = caps->next;
    }
    return caps;
}


158
virNodeDeviceObjPtr
E
Eric Blake 已提交
159
virNodeDeviceFindBySysfsPath(virNodeDeviceObjListPtr devs,
160 161
                             const char *sysfs_path)
{
162
    size_t i;
163 164 165 166 167 168 169 170 171 172 173 174 175 176

    for (i = 0; i < devs->count; i++) {
        virNodeDeviceObjLock(devs->objs[i]);
        if ((devs->objs[i]->def->sysfs_path != NULL) &&
            (STREQ(devs->objs[i]->def->sysfs_path, sysfs_path))) {
            return devs->objs[i];
        }
        virNodeDeviceObjUnlock(devs->objs[i]);
    }

    return NULL;
}


E
Eric Blake 已提交
177
virNodeDeviceObjPtr virNodeDeviceFindByName(virNodeDeviceObjListPtr devs,
178 179
                                            const char *name)
{
180
    size_t i;
181

182 183
    for (i = 0; i < devs->count; i++) {
        virNodeDeviceObjLock(devs->objs[i]);
184 185
        if (STREQ(devs->objs[i]->def->name, name))
            return devs->objs[i];
186 187
        virNodeDeviceObjUnlock(devs->objs[i]);
    }
188 189 190 191 192

    return NULL;
}


193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232
static virNodeDeviceObjPtr
virNodeDeviceFindByWWNs(virNodeDeviceObjListPtr devs,
                        const char *parent_wwnn,
                        const char *parent_wwpn)
{
    size_t i;

    for (i = 0; i < devs->count; i++) {
        virNodeDevCapsDefPtr cap;
        virNodeDeviceObjLock(devs->objs[i]);
        if ((cap = virNodeDeviceFindFCCapDef(devs->objs[i])) &&
            STREQ_NULLABLE(cap->data.scsi_host.wwnn, parent_wwnn) &&
            STREQ_NULLABLE(cap->data.scsi_host.wwpn, parent_wwpn))
            return devs->objs[i];
        virNodeDeviceObjUnlock(devs->objs[i]);
    }

    return NULL;
}


static virNodeDeviceObjPtr
virNodeDeviceFindByFabricWWN(virNodeDeviceObjListPtr devs,
                             const char *parent_fabric_wwn)
{
    size_t i;

    for (i = 0; i < devs->count; i++) {
        virNodeDevCapsDefPtr cap;
        virNodeDeviceObjLock(devs->objs[i]);
        if ((cap = virNodeDeviceFindFCCapDef(devs->objs[i])) &&
            STREQ_NULLABLE(cap->data.scsi_host.fabric_wwn, parent_fabric_wwn))
            return devs->objs[i];
        virNodeDeviceObjUnlock(devs->objs[i]);
    }

    return NULL;
}


233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249
static virNodeDeviceObjPtr
virNodeDeviceFindByCap(virNodeDeviceObjListPtr devs,
                       const char *cap)
{
    size_t i;

    for (i = 0; i < devs->count; i++) {
        virNodeDeviceObjLock(devs->objs[i]);
        if (virNodeDeviceHasCap(devs->objs[i], cap))
            return devs->objs[i];
        virNodeDeviceObjUnlock(devs->objs[i]);
    }

    return NULL;
}


250 251 252 253 254 255 256 257 258
void virNodeDeviceDefFree(virNodeDeviceDefPtr def)
{
    virNodeDevCapsDefPtr caps;

    if (!def)
        return;

    VIR_FREE(def->name);
    VIR_FREE(def->parent);
259 260 261
    VIR_FREE(def->parent_wwnn);
    VIR_FREE(def->parent_wwpn);
    VIR_FREE(def->parent_fabric_wwn);
262
    VIR_FREE(def->driver);
263 264
    VIR_FREE(def->sysfs_path);
    VIR_FREE(def->parent_sysfs_path);
265 266
    VIR_FREE(def->devnode);
    virStringListFree(def->devlinks);
267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286

    caps = def->caps;
    while (caps) {
        virNodeDevCapsDefPtr next = caps->next;
        virNodeDevCapsDefFree(caps);
        caps = next;
    }

    VIR_FREE(def);
}

void virNodeDeviceObjFree(virNodeDeviceObjPtr dev)
{
    if (!dev)
        return;

    virNodeDeviceDefFree(dev->def);
    if (dev->privateFree)
        (*dev->privateFree)(dev->privateData);

287 288
    virMutexDestroy(&dev->lock);

289 290 291 292 293
    VIR_FREE(dev);
}

void virNodeDeviceObjListFree(virNodeDeviceObjListPtr devs)
{
294
    size_t i;
295
    for (i = 0; i < devs->count; i++)
296 297 298 299 300
        virNodeDeviceObjFree(devs->objs[i]);
    VIR_FREE(devs->objs);
    devs->count = 0;
}

301
virNodeDeviceObjPtr virNodeDeviceAssignDef(virNodeDeviceObjListPtr devs,
E
Eric Blake 已提交
302
                                           virNodeDeviceDefPtr def)
303 304 305 306 307 308 309 310 311
{
    virNodeDeviceObjPtr device;

    if ((device = virNodeDeviceFindByName(devs, def->name))) {
        virNodeDeviceDefFree(device->def);
        device->def = def;
        return device;
    }

312
    if (VIR_ALLOC(device) < 0)
313 314
        return NULL;

315
    if (virMutexInit(&device->lock) < 0) {
316 317
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       "%s", _("cannot initialize mutex"));
318 319 320
        VIR_FREE(device);
        return NULL;
    }
321
    virNodeDeviceObjLock(device);
322

323
    if (VIR_APPEND_ELEMENT_COPY(devs->objs, devs->count, device) < 0) {
324
        virNodeDeviceObjUnlock(device);
325 326 327
        virNodeDeviceObjFree(device);
        return NULL;
    }
328
    device->def = def;
329 330 331 332 333 334

    return device;

}

void virNodeDeviceObjRemove(virNodeDeviceObjListPtr devs,
335
                            virNodeDeviceObjPtr *dev)
336
{
337
    size_t i;
338

339
    virNodeDeviceObjUnlock(*dev);
340

341
    for (i = 0; i < devs->count; i++) {
342 343 344
        virNodeDeviceObjLock(*dev);
        if (devs->objs[i] == *dev) {
            virNodeDeviceObjUnlock(*dev);
345
            virNodeDeviceObjFree(devs->objs[i]);
346
            *dev = NULL;
347

348
            VIR_DELETE_ELEMENT(devs->objs, i, devs->count);
349 350
            break;
        }
351
        virNodeDeviceObjUnlock(*dev);
352 353 354
    }
}

355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391
static void
virPCIELinkFormat(virBufferPtr buf,
                  virPCIELinkPtr lnk,
                  const char *attrib)
{
    if (!lnk)
        return;

    virBufferAsprintf(buf, "<link validity='%s'", attrib);
    if (lnk->port >= 0)
        virBufferAsprintf(buf, " port='%d'", lnk->port);
    if (lnk->speed)
        virBufferAsprintf(buf, " speed='%s'",
                          virPCIELinkSpeedTypeToString(lnk->speed));
    virBufferAsprintf(buf, " width='%d'", lnk->width);
    virBufferAddLit(buf, "/>\n");
}

static void
virPCIEDeviceInfoFormat(virBufferPtr buf,
                        virPCIEDeviceInfoPtr info)
{
    if (!info->link_cap && !info->link_sta) {
        virBufferAddLit(buf, "<pci-express/>\n");
        return;
    }

    virBufferAddLit(buf, "<pci-express>\n");
    virBufferAdjustIndent(buf, 2);

    virPCIELinkFormat(buf, info->link_cap, "cap");
    virPCIELinkFormat(buf, info->link_sta, "sta");

    virBufferAdjustIndent(buf, -2);
    virBufferAddLit(buf, "</pci-express>\n");
}

E
Eric Blake 已提交
392
char *virNodeDeviceDefFormat(const virNodeDeviceDef *def)
393 394
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;
395
    virNodeDevCapsDefPtr caps;
396
    size_t i = 0;
397 398

    virBufferAddLit(&buf, "<device>\n");
399 400 401
    virBufferAdjustIndent(&buf, 2);
    virBufferEscapeString(&buf, "<name>%s</name>\n", def->name);
    virBufferEscapeString(&buf, "<path>%s</path>\n", def->sysfs_path);
402 403 404 405 406 407 408 409
    if (def->devnode)
        virBufferEscapeString(&buf, "<devnode type='dev'>%s</devnode>\n",
                              def->devnode);
    if (def->devlinks) {
        for (i = 0; def->devlinks[i]; i++)
            virBufferEscapeString(&buf, "<devnode type='link'>%s</devnode>\n",
                                  def->devlinks[i]);
    }
410 411
    if (def->parent)
        virBufferEscapeString(&buf, "<parent>%s</parent>\n", def->parent);
412
    if (def->driver) {
413 414 415 416 417
        virBufferAddLit(&buf, "<driver>\n");
        virBufferAdjustIndent(&buf, 2);
        virBufferEscapeString(&buf, "<name>%s</name>\n", def->driver);
        virBufferAdjustIndent(&buf, -2);
        virBufferAddLit(&buf, "</driver>\n");
418
    }
419 420 421

    for (caps = def->caps; caps; caps = caps->next) {
        char uuidstr[VIR_UUID_STRING_BUFLEN];
422
        virNodeDevCapDataPtr data = &caps->data;
423

424
        virBufferAsprintf(&buf, "<capability type='%s'>\n",
425
                          virNodeDevCapTypeToString(caps->data.type));
426
        virBufferAdjustIndent(&buf, 2);
427
        switch (caps->data.type) {
428 429
        case VIR_NODE_DEV_CAP_SYSTEM:
            if (data->system.product_name)
430
                virBufferEscapeString(&buf, "<product>%s</product>\n",
431
                                      data->system.product_name);
432 433
            virBufferAddLit(&buf, "<hardware>\n");
            virBufferAdjustIndent(&buf, 2);
434
            if (data->system.hardware.vendor_name)
435
                virBufferEscapeString(&buf, "<vendor>%s</vendor>\n",
436 437
                                      data->system.hardware.vendor_name);
            if (data->system.hardware.version)
438
                virBufferEscapeString(&buf, "<version>%s</version>\n",
439 440
                                      data->system.hardware.version);
            if (data->system.hardware.serial)
441
                virBufferEscapeString(&buf, "<serial>%s</serial>\n",
442 443
                                      data->system.hardware.serial);
            virUUIDFormat(data->system.hardware.uuid, uuidstr);
444 445 446 447 448 449
            virBufferAsprintf(&buf, "<uuid>%s</uuid>\n", uuidstr);
            virBufferAdjustIndent(&buf, -2);
            virBufferAddLit(&buf, "</hardware>\n");

            virBufferAddLit(&buf, "<firmware>\n");
            virBufferAdjustIndent(&buf, 2);
450
            if (data->system.firmware.vendor_name)
451
                virBufferEscapeString(&buf, "<vendor>%s</vendor>\n",
452 453
                                      data->system.firmware.vendor_name);
            if (data->system.firmware.version)
454
                virBufferEscapeString(&buf, "<version>%s</version>\n",
455 456
                                      data->system.firmware.version);
            if (data->system.firmware.release_date)
457
                virBufferEscapeString(&buf, "<release_date>%s</release_date>\n",
458
                                      data->system.firmware.release_date);
459 460
            virBufferAdjustIndent(&buf, -2);
            virBufferAddLit(&buf, "</firmware>\n");
461 462
            break;
        case VIR_NODE_DEV_CAP_PCI_DEV:
463
            virBufferAsprintf(&buf, "<domain>%d</domain>\n",
464
                              data->pci_dev.domain);
465 466
            virBufferAsprintf(&buf, "<bus>%d</bus>\n", data->pci_dev.bus);
            virBufferAsprintf(&buf, "<slot>%d</slot>\n",
467
                              data->pci_dev.slot);
468
            virBufferAsprintf(&buf, "<function>%d</function>\n",
469
                              data->pci_dev.function);
470
            virBufferAsprintf(&buf, "<product id='0x%04x'",
471 472 473 474 475 476
                                  data->pci_dev.product);
            if (data->pci_dev.product_name)
                virBufferEscapeString(&buf, ">%s</product>\n",
                                      data->pci_dev.product_name);
            else
                virBufferAddLit(&buf, " />\n");
477
            virBufferAsprintf(&buf, "<vendor id='0x%04x'",
478 479 480 481 482 483
                                  data->pci_dev.vendor);
            if (data->pci_dev.vendor_name)
                virBufferEscapeString(&buf, ">%s</vendor>\n",
                                      data->pci_dev.vendor_name);
            else
                virBufferAddLit(&buf, " />\n");
484
            if (data->pci_dev.flags & VIR_NODE_DEV_CAP_FLAG_PCI_PHYSICAL_FUNCTION) {
485 486
                virBufferAddLit(&buf, "<capability type='phys_function'>\n");
                virBufferAdjustIndent(&buf, 2);
487
                virBufferAsprintf(&buf,
488
                                  "<address domain='0x%.4x' bus='0x%.2x' "
489 490 491 492 493
                                  "slot='0x%.2x' function='0x%.1x'/>\n",
                                  data->pci_dev.physical_function->domain,
                                  data->pci_dev.physical_function->bus,
                                  data->pci_dev.physical_function->slot,
                                  data->pci_dev.physical_function->function);
494 495
                virBufferAdjustIndent(&buf, -2);
                virBufferAddLit(&buf, "</capability>\n");
496 497
            }
            if (data->pci_dev.flags & VIR_NODE_DEV_CAP_FLAG_PCI_VIRTUAL_FUNCTION) {
498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517
                virBufferAddLit(&buf, "<capability type='virt_functions'");
                if (data->pci_dev.max_virtual_functions)
                    virBufferAsprintf(&buf, " maxCount='%u'",
                                      data->pci_dev.max_virtual_functions);
                if (data->pci_dev.num_virtual_functions == 0) {
                    virBufferAddLit(&buf, "/>\n");
                } else {
                    virBufferAddLit(&buf, ">\n");
                    virBufferAdjustIndent(&buf, 2);
                    for (i = 0; i < data->pci_dev.num_virtual_functions; i++) {
                        virBufferAsprintf(&buf,
                                          "<address domain='0x%.4x' bus='0x%.2x' "
                                          "slot='0x%.2x' function='0x%.1x'/>\n",
                                          data->pci_dev.virtual_functions[i]->domain,
                                          data->pci_dev.virtual_functions[i]->bus,
                                          data->pci_dev.virtual_functions[i]->slot,
                                          data->pci_dev.virtual_functions[i]->function);
                    }
                    virBufferAdjustIndent(&buf, -2);
                    virBufferAddLit(&buf, "</capability>\n");
518 519
                }
            }
520 521 522 523
            if (data->pci_dev.hdrType) {
                virBufferAsprintf(&buf, "<capability type='%s'/>\n",
                                  virPCIHeaderTypeToString(data->pci_dev.hdrType));
            }
524
            if (data->pci_dev.nIommuGroupDevices) {
525
                virBufferAsprintf(&buf, "<iommuGroup number='%d'>\n",
526
                                  data->pci_dev.iommuGroupNumber);
527
                virBufferAdjustIndent(&buf, 2);
528 529
                for (i = 0; i < data->pci_dev.nIommuGroupDevices; i++) {
                    virBufferAsprintf(&buf,
530
                                      "<address domain='0x%.4x' bus='0x%.2x' "
531 532 533 534 535 536
                                      "slot='0x%.2x' function='0x%.1x'/>\n",
                                      data->pci_dev.iommuGroupDevices[i]->domain,
                                      data->pci_dev.iommuGroupDevices[i]->bus,
                                      data->pci_dev.iommuGroupDevices[i]->slot,
                                      data->pci_dev.iommuGroupDevices[i]->function);
                }
537 538
                virBufferAdjustIndent(&buf, -2);
                virBufferAddLit(&buf, "</iommuGroup>\n");
539
            }
540 541 542
            if (data->pci_dev.numa_node >= 0)
                virBufferAsprintf(&buf, "<numa node='%d'/>\n",
                                  data->pci_dev.numa_node);
543

544 545
            if (data->pci_dev.flags & VIR_NODE_DEV_CAP_FLAG_PCIE)
                virPCIEDeviceInfoFormat(&buf, data->pci_dev.pci_express);
546 547
            break;
        case VIR_NODE_DEV_CAP_USB_DEV:
548 549
            virBufferAsprintf(&buf, "<bus>%d</bus>\n", data->usb_dev.bus);
            virBufferAsprintf(&buf, "<device>%d</device>\n",
550
                              data->usb_dev.device);
551
            virBufferAsprintf(&buf, "<product id='0x%04x'",
552 553 554 555 556 557
                                  data->usb_dev.product);
            if (data->usb_dev.product_name)
                virBufferEscapeString(&buf, ">%s</product>\n",
                                      data->usb_dev.product_name);
            else
                virBufferAddLit(&buf, " />\n");
558
            virBufferAsprintf(&buf, "<vendor id='0x%04x'",
559 560 561 562 563 564 565 566
                                  data->usb_dev.vendor);
            if (data->usb_dev.vendor_name)
                virBufferEscapeString(&buf, ">%s</vendor>\n",
                                      data->usb_dev.vendor_name);
            else
                virBufferAddLit(&buf, " />\n");
            break;
        case VIR_NODE_DEV_CAP_USB_INTERFACE:
567
            virBufferAsprintf(&buf, "<number>%d</number>\n",
568
                              data->usb_if.number);
569
            virBufferAsprintf(&buf, "<class>%d</class>\n",
570
                              data->usb_if._class);
571
            virBufferAsprintf(&buf, "<subclass>%d</subclass>\n",
572
                              data->usb_if.subclass);
573
            virBufferAsprintf(&buf, "<protocol>%d</protocol>\n",
574 575
                              data->usb_if.protocol);
            if (data->usb_if.description)
576
                virBufferEscapeString(&buf,
577
                                  "<description>%s</description>\n",
578 579 580
                                  data->usb_if.description);
            break;
        case VIR_NODE_DEV_CAP_NET:
581
            virBufferEscapeString(&buf, "<interface>%s</interface>\n",
582
                              data->net.ifname);
583
            if (data->net.address)
584
                virBufferEscapeString(&buf, "<address>%s</address>\n",
585
                                  data->net.address);
586
            virInterfaceLinkFormat(&buf, &data->net.lnk);
587 588
            if (data->net.features) {
                for (i = 0; i < VIR_NET_DEV_FEAT_LAST; i++) {
J
Ján Tomko 已提交
589
                    if (virBitmapIsBitSet(data->net.features, i)) {
590 591 592 593 594
                        virBufferAsprintf(&buf, "<feature name='%s'/>\n",
                                          virNetDevFeatureTypeToString(i));
                    }
                }
            }
595 596 597
            if (data->net.subtype != VIR_NODE_DEV_CAP_NET_LAST) {
                const char *subtyp =
                    virNodeDevNetCapTypeToString(data->net.subtype);
598
                virBufferEscapeString(&buf, "<capability type='%s'/>\n",
599
                                      subtyp);
600 601 602
            }
            break;
        case VIR_NODE_DEV_CAP_SCSI_HOST:
603
            virBufferAsprintf(&buf, "<host>%d</host>\n",
604
                              data->scsi_host.host);
J
John Ferlan 已提交
605 606 607
            if (data->scsi_host.unique_id != -1)
                virBufferAsprintf(&buf, "<unique_id>%d</unique_id>\n",
                                  data->scsi_host.unique_id);
608
            if (data->scsi_host.flags & VIR_NODE_DEV_CAP_FLAG_HBA_FC_HOST) {
609 610 611
                virBufferAddLit(&buf, "<capability type='fc_host'>\n");
                virBufferAdjustIndent(&buf, 2);
                virBufferEscapeString(&buf, "<wwnn>%s</wwnn>\n",
612
                                      data->scsi_host.wwnn);
613
                virBufferEscapeString(&buf, "<wwpn>%s</wwpn>\n",
614
                                      data->scsi_host.wwpn);
615
                virBufferEscapeString(&buf, "<fabric_wwn>%s</fabric_wwn>\n",
O
Osier Yang 已提交
616
                                      data->scsi_host.fabric_wwn);
617 618
                virBufferAdjustIndent(&buf, -2);
                virBufferAddLit(&buf, "</capability>\n");
619 620
            }
            if (data->scsi_host.flags & VIR_NODE_DEV_CAP_FLAG_HBA_VPORT_OPS) {
621 622 623
                virBufferAddLit(&buf, "<capability type='vport_ops'>\n");
                virBufferAdjustIndent(&buf, 2);
                virBufferAsprintf(&buf, "<max_vports>%d</max_vports>\n",
624
                                  data->scsi_host.max_vports);
625
                virBufferAsprintf(&buf, "<vports>%d</vports>\n",
626
                                  data->scsi_host.vports);
627 628
                virBufferAdjustIndent(&buf, -2);
                virBufferAddLit(&buf, "</capability>\n");
629 630
            }

631
            break;
D
David Allan 已提交
632 633

        case VIR_NODE_DEV_CAP_SCSI_TARGET:
634
            virBufferEscapeString(&buf, "<target>%s</target>\n",
635
                                  data->scsi_target.name);
D
David Allan 已提交
636 637
            break;

638
        case VIR_NODE_DEV_CAP_SCSI:
639 640 641
            virBufferAsprintf(&buf, "<host>%d</host>\n", data->scsi.host);
            virBufferAsprintf(&buf, "<bus>%d</bus>\n", data->scsi.bus);
            virBufferAsprintf(&buf, "<target>%d</target>\n",
642
                              data->scsi.target);
643
            virBufferAsprintf(&buf, "<lun>%d</lun>\n", data->scsi.lun);
644
            if (data->scsi.type)
645
                virBufferEscapeString(&buf, "<type>%s</type>\n",
646
                                      data->scsi.type);
647 648
            break;
        case VIR_NODE_DEV_CAP_STORAGE:
649 650
            virBufferEscapeString(&buf, "<block>%s</block>\n",
                                  data->storage.block);
651
            if (data->storage.bus)
652 653
                virBufferEscapeString(&buf, "<bus>%s</bus>\n",
                                      data->storage.bus);
654
            if (data->storage.drive_type)
655 656
                virBufferEscapeString(&buf, "<drive_type>%s</drive_type>\n",
                                      data->storage.drive_type);
657
            if (data->storage.model)
658 659
                virBufferEscapeString(&buf, "<model>%s</model>\n",
                                      data->storage.model);
660
            if (data->storage.vendor)
661 662
                virBufferEscapeString(&buf, "<vendor>%s</vendor>\n",
                                      data->storage.vendor);
663
            if (data->storage.serial)
664 665
                virBufferEscapeString(&buf, "<serial>%s</serial>\n",
                                      data->storage.serial);
666 667 668
            if (data->storage.flags & VIR_NODE_DEV_CAP_STORAGE_REMOVABLE) {
                int avl = data->storage.flags &
                    VIR_NODE_DEV_CAP_STORAGE_REMOVABLE_MEDIA_AVAILABLE;
669 670 671
                virBufferAddLit(&buf, "<capability type='removable'>\n");
                virBufferAdjustIndent(&buf, 2);
                virBufferAsprintf(&buf, "<media_available>%d"
672
                                  "</media_available>\n", avl ? 1 : 0);
673
                virBufferAsprintf(&buf, "<media_size>%llu</media_size>\n",
674
                                  data->storage.removable_media_size);
675 676
                if (data->storage.media_label)
                    virBufferEscapeString(&buf,
677 678
                                          "<media_label>%s</media_label>\n",
                                          data->storage.media_label);
679
                if (data->storage.logical_block_size > 0)
680
                    virBufferAsprintf(&buf, "<logical_block_size>%llu"
681 682 683
                                      "</logical_block_size>\n",
                                      data->storage.logical_block_size);
                if (data->storage.num_blocks > 0)
684
                    virBufferAsprintf(&buf,
685
                                      "<num_blocks>%llu</num_blocks>\n",
686
                                      data->storage.num_blocks);
687 688
                virBufferAdjustIndent(&buf, -2);
                virBufferAddLit(&buf, "</capability>\n");
689
            } else {
690
                virBufferAsprintf(&buf, "<size>%llu</size>\n",
691
                                  data->storage.size);
692
                if (data->storage.logical_block_size > 0)
693
                    virBufferAsprintf(&buf, "<logical_block_size>%llu"
694 695 696
                                      "</logical_block_size>\n",
                                      data->storage.logical_block_size);
                if (data->storage.num_blocks > 0)
697
                    virBufferAsprintf(&buf, "<num_blocks>%llu</num_blocks>\n",
698
                                      data->storage.num_blocks);
699 700
            }
            if (data->storage.flags & VIR_NODE_DEV_CAP_STORAGE_HOTPLUGGABLE)
701
                virBufferAddLit(&buf, "<capability type='hotpluggable'/>\n");
702
            break;
703
        case VIR_NODE_DEV_CAP_SCSI_GENERIC:
704
            virBufferEscapeString(&buf, "<char>%s</char>\n",
705 706
                                  data->sg.path);
            break;
M
Marc-André Lureau 已提交
707 708 709
        case VIR_NODE_DEV_CAP_DRM:
            virBufferEscapeString(&buf, "<type>%s</type>\n", virNodeDevDRMTypeToString(data->drm.type));
            break;
710 711
        case VIR_NODE_DEV_CAP_FC_HOST:
        case VIR_NODE_DEV_CAP_VPORTS:
712 713 714 715
        case VIR_NODE_DEV_CAP_LAST:
            break;
        }

716 717
        virBufferAdjustIndent(&buf, -2);
        virBufferAddLit(&buf, "</capability>\n");
718 719
    }

720
    virBufferAdjustIndent(&buf, -2);
721 722
    virBufferAddLit(&buf, "</device>\n");

723 724
    if (virBufferCheckError(&buf) < 0)
        return NULL;
725 726 727 728

    return virBufferContentAndReset(&buf);
}

729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763
/**
 * virNodeDevCapsDefParseIntOptional:
 * @xpath:  XPath to evaluate
 * @ctxt:   Context
 * @value:  Where to store parsed value
 * @def:    Node device which is parsed
 * @invalid_error_fmt:  error message to print on invalid format
 *
 * Returns: -1 on error (invalid int format under @xpath)
 *           0 if @xpath was not found (@value is untouched)
 *           1 on success
 */
static int
virNodeDevCapsDefParseIntOptional(const char *xpath,
                                  xmlXPathContextPtr ctxt,
                                  int *value,
                                  virNodeDeviceDefPtr def,
                                  const char *invalid_error_fmt)
{
    int ret;
    int val;

    ret = virXPathInt(xpath, ctxt, &val);
    if (ret < -1) {
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       invalid_error_fmt,
                       def->name);
        return -1;
    } else if (ret == -1) {
        return 0;
    }
    *value = val;
    return 1;
}

764
static int
765
virNodeDevCapsDefParseULong(const char *xpath,
766 767 768 769 770 771 772 773 774
                            xmlXPathContextPtr ctxt,
                            unsigned *value,
                            virNodeDeviceDefPtr def,
                            const char *missing_error_fmt,
                            const char *invalid_error_fmt)
{
    int ret;
    unsigned long val;

775
    ret = virXPathULong(xpath, ctxt, &val);
776
    if (ret < 0) {
777 778 779
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       ret == -1 ? missing_error_fmt : invalid_error_fmt,
                       def->name);
780 781 782 783 784 785 786 787
        return -1;
    }

    *value = val;
    return 0;
}

static int
788
virNodeDevCapsDefParseULongLong(const char *xpath,
789 790 791 792 793 794 795 796 797
                                xmlXPathContextPtr ctxt,
                                unsigned long long *value,
                                virNodeDeviceDefPtr def,
                                const char *missing_error_fmt,
                                const char *invalid_error_fmt)
{
    int ret;
    unsigned long long val;

798
    ret = virXPathULongLong(xpath, ctxt, &val);
799
    if (ret < 0) {
800 801 802
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       ret == -1 ? missing_error_fmt : invalid_error_fmt,
                       def->name);
803 804 805 806 807 808 809
        return -1;
    }

    *value = val;
    return 0;
}

M
Marc-André Lureau 已提交
810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838
static int
virNodeDevCapDRMParseXML(xmlXPathContextPtr ctxt,
                         virNodeDeviceDefPtr def,
                         xmlNodePtr node,
                         virNodeDevCapDataPtr data)
{
    xmlNodePtr orignode;
    int ret = -1;
    char *type = NULL;

    orignode = ctxt->node;
    ctxt->node = node;

    type = virXPathString("string(./type[1])", ctxt);

    if ((data->drm.type = virNodeDevDRMTypeFromString(type)) < 0) {
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                       _("unknown drm type '%s' for '%s'"), type, def->name);
        goto out;
    }

    ret = 0;

 out:
    VIR_FREE(type);
    ctxt->node = orignode;
    return ret;
}

839
static int
840
virNodeDevCapStorageParseXML(xmlXPathContextPtr ctxt,
841 842
                             virNodeDeviceDefPtr def,
                             xmlNodePtr node,
843
                             virNodeDevCapDataPtr data)
844 845
{
    xmlNodePtr orignode, *nodes = NULL;
846 847
    size_t i;
    int n, ret = -1;
848 849 850 851 852
    unsigned long long val;

    orignode = ctxt->node;
    ctxt->node = node;

853
    data->storage.block = virXPathString("string(./block[1])", ctxt);
854
    if (!data->storage.block) {
855 856 857
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("no block device path supplied for '%s'"),
                       def->name);
858 859 860
        goto out;
    }

861 862 863 864 865
    data->storage.bus        = virXPathString("string(./bus[1])", ctxt);
    data->storage.drive_type = virXPathString("string(./drive_type[1])", ctxt);
    data->storage.model      = virXPathString("string(./model[1])", ctxt);
    data->storage.vendor     = virXPathString("string(./vendor[1])", ctxt);
    data->storage.serial     = virXPathString("string(./serial[1])", ctxt);
866

867
    if ((n = virXPathNodeSet("./capability", ctxt, &nodes)) < 0)
868 869
        goto out;

870
    for (i = 0; i < n; i++) {
871 872 873
        char *type = virXMLPropString(nodes[i], "type");

        if (!type) {
874 875 876
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("missing storage capability type for '%s'"),
                           def->name);
877 878 879
            goto out;
        }

880
        if (STREQ(type, "hotpluggable")) {
881
            data->storage.flags |= VIR_NODE_DEV_CAP_STORAGE_HOTPLUGGABLE;
882
        } else if (STREQ(type, "removable")) {
883 884 885 886 887 888 889
            xmlNodePtr orignode2;

            data->storage.flags |= VIR_NODE_DEV_CAP_STORAGE_REMOVABLE;

            orignode2 = ctxt->node;
            ctxt->node = nodes[i];

890
            if (virXPathBoolean("count(./media_available[. = '1']) > 0", ctxt))
891 892
                data->storage.flags |= VIR_NODE_DEV_CAP_STORAGE_REMOVABLE_MEDIA_AVAILABLE;

893
            data->storage.media_label = virXPathString("string(./media_label[1])", ctxt);
894

895
            val = 0;
896
            if (virNodeDevCapsDefParseULongLong("number(./media_size[1])", ctxt, &val, def,
897 898 899 900 901 902 903 904 905 906
                                                _("no removable media size supplied for '%s'"),
                                                _("invalid removable media size supplied for '%s'")) < 0) {
                ctxt->node = orignode2;
                VIR_FREE(type);
                goto out;
            }
            data->storage.removable_media_size = val;

            ctxt->node = orignode2;
        } else {
907 908 909
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("unknown storage capability type '%s' for '%s'"),
                           type, def->name);
910 911 912 913 914 915 916 917 918
            VIR_FREE(type);
            goto out;
        }

        VIR_FREE(type);
    }

    if (!(data->storage.flags & VIR_NODE_DEV_CAP_STORAGE_REMOVABLE)) {
        val = 0;
919
        if (virNodeDevCapsDefParseULongLong("number(./size[1])", ctxt, &val, def,
920 921 922 923 924 925 926
                                            _("no size supplied for '%s'"),
                                            _("invalid size supplied for '%s'")) < 0)
            goto out;
        data->storage.size = val;
    }

    ret = 0;
927
 out:
928 929 930 931 932 933
    VIR_FREE(nodes);
    ctxt->node = orignode;
    return ret;
}

static int
934
virNodeDevCapSCSIParseXML(xmlXPathContextPtr ctxt,
935 936
                          virNodeDeviceDefPtr def,
                          xmlNodePtr node,
937
                          virNodeDevCapDataPtr data)
938 939 940 941 942 943 944
{
    xmlNodePtr orignode;
    int ret = -1;

    orignode = ctxt->node;
    ctxt->node = node;

945
    if (virNodeDevCapsDefParseULong("number(./host[1])", ctxt,
946 947 948 949 950
                                    &data->scsi.host, def,
                                    _("no SCSI host ID supplied for '%s'"),
                                    _("invalid SCSI host ID supplied for '%s'")) < 0)
        goto out;

951
    if (virNodeDevCapsDefParseULong("number(./bus[1])", ctxt,
952 953 954 955 956
                                    &data->scsi.bus, def,
                                    _("no SCSI bus ID supplied for '%s'"),
                                    _("invalid SCSI bus ID supplied for '%s'")) < 0)
        goto out;

957
    if (virNodeDevCapsDefParseULong("number(./target[1])", ctxt,
958 959 960 961 962
                                    &data->scsi.target, def,
                                    _("no SCSI target ID supplied for '%s'"),
                                    _("invalid SCSI target ID supplied for '%s'")) < 0)
        goto out;

963
    if (virNodeDevCapsDefParseULong("number(./lun[1])", ctxt,
964 965 966 967 968
                                    &data->scsi.lun, def,
                                    _("no SCSI LUN ID supplied for '%s'"),
                                    _("invalid SCSI LUN ID supplied for '%s'")) < 0)
        goto out;

969
    data->scsi.type = virXPathString("string(./type[1])", ctxt);
970 971

    ret = 0;
972
 out:
973 974 975 976
    ctxt->node = orignode;
    return ret;
}

D
David Allan 已提交
977 978

static int
979
virNodeDevCapSCSITargetParseXML(xmlXPathContextPtr ctxt,
D
David Allan 已提交
980 981
                                virNodeDeviceDefPtr def,
                                xmlNodePtr node,
982
                                virNodeDevCapDataPtr data)
D
David Allan 已提交
983 984 985 986 987 988 989
{
    xmlNodePtr orignode;
    int ret = -1;

    orignode = ctxt->node;
    ctxt->node = node;

990
    data->scsi_target.name = virXPathString("string(./target[1])", ctxt);
D
David Allan 已提交
991
    if (!data->scsi_target.name) {
992 993 994
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("no target name supplied for '%s'"),
                       def->name);
D
David Allan 已提交
995 996 997 998 999
        goto out;
    }

    ret = 0;

1000
 out:
D
David Allan 已提交
1001 1002 1003 1004 1005
    ctxt->node = orignode;
    return ret;
}


1006
static int
1007
virNodeDevCapSCSIHostParseXML(xmlXPathContextPtr ctxt,
1008 1009
                              virNodeDeviceDefPtr def,
                              xmlNodePtr node,
1010
                              virNodeDevCapDataPtr data,
1011 1012
                              int create,
                              const char *virt_type)
1013
{
1014
    xmlNodePtr orignode, *nodes = NULL;
1015 1016
    int ret = -1, n = 0;
    size_t i;
1017
    char *type = NULL;
1018 1019 1020 1021

    orignode = ctxt->node;
    ctxt->node = node;

J
John Ferlan 已提交
1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035
    if (create == EXISTING_DEVICE) {
        if (virNodeDevCapsDefParseULong("number(./host[1])", ctxt,
                                        &data->scsi_host.host, def,
                                        _("no SCSI host ID supplied for '%s'"),
                                        _("invalid SCSI host ID supplied for '%s'")) < 0) {
            goto out;
        }
        /* Optional unique_id value */
        data->scsi_host.unique_id = -1;
        if (virNodeDevCapsDefParseIntOptional("number(./unique_id[1])", ctxt,
                                              &data->scsi_host.unique_id, def,
                                              _("invalid unique_id supplied for '%s'")) < 0) {
            goto out;
        }
1036 1037
    }

1038
    if ((n = virXPathNodeSet("./capability", ctxt, &nodes)) < 0)
1039
        goto out;
1040

1041
    for (i = 0; i < n; i++) {
1042 1043 1044
        type = virXMLPropString(nodes[i], "type");

        if (!type) {
1045 1046 1047
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("missing SCSI host capability type for '%s'"),
                           def->name);
1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063
            goto out;
        }

        if (STREQ(type, "vport_ops")) {

            data->scsi_host.flags |= VIR_NODE_DEV_CAP_FLAG_HBA_VPORT_OPS;

        } else if (STREQ(type, "fc_host")) {

            xmlNodePtr orignode2;

            data->scsi_host.flags |= VIR_NODE_DEV_CAP_FLAG_HBA_FC_HOST;

            orignode2 = ctxt->node;
            ctxt->node = nodes[i];

1064
            if (virNodeDevCapsDefParseString("string(./wwnn[1])",
1065
                                             ctxt,
1066 1067
                                             &data->scsi_host.wwnn) < 0) {
                if (virRandomGenerateWWN(&data->scsi_host.wwnn, virt_type) < 0) {
1068 1069 1070 1071
                    virReportError(VIR_ERR_INTERNAL_ERROR,
                                   _("no WWNN supplied for '%s', and "
                                     "auto-generation failed"),
                                   def->name);
1072 1073
                    goto out;
                }
1074 1075
            }

1076
            if (virNodeDevCapsDefParseString("string(./wwpn[1])",
1077
                                             ctxt,
1078 1079
                                             &data->scsi_host.wwpn) < 0) {
                if (virRandomGenerateWWN(&data->scsi_host.wwpn, virt_type) < 0) {
1080 1081 1082 1083
                    virReportError(VIR_ERR_INTERNAL_ERROR,
                                   _("no WWPN supplied for '%s', and "
                                     "auto-generation failed"),
                                   def->name);
1084 1085
                    goto out;
                }
1086 1087 1088 1089 1090
            }

            ctxt->node = orignode2;

        } else {
1091 1092 1093
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("unknown SCSI host capability type '%s' for '%s'"),
                           type, def->name);
1094 1095 1096 1097 1098
            goto out;
        }

        VIR_FREE(type);
    }
1099 1100

    ret = 0;
1101

1102
 out:
1103
    VIR_FREE(type);
1104
    ctxt->node = orignode;
1105
    VIR_FREE(nodes);
1106 1107 1108
    return ret;
}

1109

1110
static int
1111
virNodeDevCapNetParseXML(xmlXPathContextPtr ctxt,
1112 1113
                         virNodeDeviceDefPtr def,
                         xmlNodePtr node,
1114
                         virNodeDevCapDataPtr data)
1115
{
1116
    xmlNodePtr orignode, lnk;
1117 1118
    size_t i = -1;
    int ret = -1, n = -1;
1119
    char *tmp = NULL;
1120
    xmlNodePtr *nodes = NULL;
1121 1122 1123 1124

    orignode = ctxt->node;
    ctxt->node = node;

1125
    data->net.ifname = virXPathString("string(./interface[1])", ctxt);
1126
    if (!data->net.ifname) {
1127 1128 1129
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("no network interface supplied for '%s'"),
                       def->name);
1130 1131 1132
        goto out;
    }

1133
    data->net.address = virXPathString("string(./address[1])", ctxt);
1134

1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157
    if ((n = virXPathNodeSet("./feature", ctxt, &nodes)) < 0)
        goto out;

    if (n > 0) {
        if (!(data->net.features = virBitmapNew(VIR_NET_DEV_FEAT_LAST)))
            goto out;
    }

    for (i = 0; i < n; i++) {
        int val;
        if (!(tmp = virXMLPropString(nodes[i], "name"))) {
            virReportError(VIR_ERR_XML_ERROR, "%s",
                           _("missing network device feature name"));
            goto out;
        }

        if ((val = virNetDevFeatureTypeFromString(tmp)) < 0) {
            virReportError(VIR_ERR_XML_ERROR,
                           _("unknown network device feature '%s'"),
                           tmp);
            goto out;
        }
        ignore_value(virBitmapSetBit(data->net.features, val));
1158
        VIR_FREE(tmp);
1159 1160
    }

1161 1162
    data->net.subtype = VIR_NODE_DEV_CAP_NET_LAST;

1163
    tmp = virXPathString("string(./capability/@type)", ctxt);
1164 1165 1166 1167
    if (tmp) {
        int val = virNodeDevNetCapTypeFromString(tmp);
        VIR_FREE(tmp);
        if (val < 0) {
1168
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
1169 1170
                           _("invalid network type supplied for '%s'"),
                           def->name);
1171 1172 1173 1174 1175
            goto out;
        }
        data->net.subtype = val;
    }

1176 1177 1178 1179
    lnk = virXPathNode("./link", ctxt);
    if (lnk && virInterfaceLinkParseXML(lnk, &data->net.lnk) < 0)
        goto out;

1180
    ret = 0;
1181
 out:
1182
    ctxt->node = orignode;
1183 1184
    VIR_FREE(nodes);
    VIR_FREE(tmp);
1185 1186 1187 1188
    return ret;
}

static int
1189
virNodeDevCapUSBInterfaceParseXML(xmlXPathContextPtr ctxt,
1190 1191
                                  virNodeDeviceDefPtr def,
                                  xmlNodePtr node,
1192
                                  virNodeDevCapDataPtr data)
1193 1194 1195 1196 1197 1198 1199
{
    xmlNodePtr orignode;
    int ret = -1;

    orignode = ctxt->node;
    ctxt->node = node;

1200
    if (virNodeDevCapsDefParseULong("number(./number[1])", ctxt,
1201 1202 1203 1204 1205
                                    &data->usb_if.number, def,
                                    _("no USB interface number supplied for '%s'"),
                                    _("invalid USB interface number supplied for '%s'")) < 0)
        goto out;

1206
    if (virNodeDevCapsDefParseULong("number(./class[1])", ctxt,
1207 1208 1209 1210 1211
                                    &data->usb_if._class, def,
                                    _("no USB interface class supplied for '%s'"),
                                    _("invalid USB interface class supplied for '%s'")) < 0)
        goto out;

1212
    if (virNodeDevCapsDefParseULong("number(./subclass[1])", ctxt,
1213 1214 1215 1216 1217
                                    &data->usb_if.subclass, def,
                                    _("no USB interface subclass supplied for '%s'"),
                                    _("invalid USB interface subclass supplied for '%s'")) < 0)
        goto out;

1218
    if (virNodeDevCapsDefParseULong("number(./protocol[1])", ctxt,
1219 1220 1221 1222 1223
                                    &data->usb_if.protocol, def,
                                    _("no USB interface protocol supplied for '%s'"),
                                    _("invalid USB interface protocol supplied for '%s'")) < 0)
        goto out;

1224
    data->usb_if.description = virXPathString("string(./description[1])", ctxt);
1225 1226

    ret = 0;
1227
 out:
1228 1229 1230 1231 1232
    ctxt->node = orignode;
    return ret;
}

static int
1233
virNodeDevCapsDefParseHexId(const char *xpath,
1234 1235 1236 1237 1238 1239 1240 1241 1242
                            xmlXPathContextPtr ctxt,
                            unsigned *value,
                            virNodeDeviceDefPtr def,
                            const char *missing_error_fmt,
                            const char *invalid_error_fmt)
{
    int ret;
    unsigned long val;

1243
    ret = virXPathULongHex(xpath, ctxt, &val);
1244
    if (ret < 0) {
1245 1246 1247
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       ret == -1 ? missing_error_fmt : invalid_error_fmt,
                       def->name);
1248 1249 1250 1251 1252 1253 1254 1255
        return -1;
    }

    *value = val;
    return 0;
}

static int
1256
virNodeDevCapUSBDevParseXML(xmlXPathContextPtr ctxt,
1257 1258
                            virNodeDeviceDefPtr def,
                            xmlNodePtr node,
1259
                            virNodeDevCapDataPtr data)
1260 1261 1262 1263 1264 1265 1266
{
    xmlNodePtr orignode;
    int ret = -1;

    orignode = ctxt->node;
    ctxt->node = node;

1267
    if (virNodeDevCapsDefParseULong("number(./bus[1])", ctxt,
1268 1269 1270 1271 1272
                                    &data->usb_dev.bus, def,
                                    _("no USB bus number supplied for '%s'"),
                                    _("invalid USB bus number supplied for '%s'")) < 0)
        goto out;

1273
    if (virNodeDevCapsDefParseULong("number(./device[1])", ctxt,
1274 1275 1276 1277 1278
                                    &data->usb_dev.device, def,
                                    _("no USB device number supplied for '%s'"),
                                    _("invalid USB device number supplied for '%s'")) < 0)
        goto out;

1279
    if (virNodeDevCapsDefParseHexId("string(./vendor[1]/@id)", ctxt,
1280 1281 1282 1283 1284
                                    &data->usb_dev.vendor, def,
                                    _("no USB vendor ID supplied for '%s'"),
                                    _("invalid USB vendor ID supplied for '%s'")) < 0)
        goto out;

1285
    if (virNodeDevCapsDefParseHexId("string(./product[1]/@id)", ctxt,
1286 1287 1288 1289 1290
                                    &data->usb_dev.product, def,
                                    _("no USB product ID supplied for '%s'"),
                                    _("invalid USB product ID supplied for '%s'")) < 0)
        goto out;

1291 1292
    data->usb_dev.vendor_name  = virXPathString("string(./vendor[1])", ctxt);
    data->usb_dev.product_name = virXPathString("string(./product[1])", ctxt);
1293 1294

    ret = 0;
1295
 out:
1296 1297 1298 1299
    ctxt->node = orignode;
    return ret;
}

1300
static int
1301
virNodeDevCapPCIDevIommuGroupParseXML(xmlXPathContextPtr ctxt,
1302
                                      xmlNodePtr iommuGroupNode,
1303
                                      virNodeDevCapDataPtr data)
1304 1305 1306 1307
{
    xmlNodePtr origNode = ctxt->node;
    xmlNodePtr *addrNodes = NULL;
    char *numberStr = NULL;
1308 1309
    int nAddrNodes, ret = -1;
    size_t i;
1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330
    virPCIDeviceAddressPtr pciAddr = NULL;

    ctxt->node = iommuGroupNode;

    numberStr = virXMLPropString(iommuGroupNode, "number");
    if (!numberStr) {
        virReportError(VIR_ERR_XML_ERROR,
                       "%s", _("missing iommuGroup number attribute"));
        goto cleanup;
    }
    if (virStrToLong_ui(numberStr, NULL, 10,
                        &data->pci_dev.iommuGroupNumber) < 0) {
        virReportError(VIR_ERR_XML_ERROR,
                       _("invalid iommuGroup number attribute '%s'"),
                       numberStr);
        goto cleanup;
    }

    if ((nAddrNodes = virXPathNodeSet("./address", ctxt, &addrNodes)) < 0)
        goto cleanup;

1331
    for (i = 0; i < nAddrNodes; i++) {
1332
        virPCIDeviceAddress addr = {0};
1333
        if (virPCIDeviceAddressParseXML(addrNodes[i], &addr) < 0)
1334
            goto cleanup;
1335
        if (VIR_ALLOC(pciAddr) < 0)
1336 1337 1338 1339 1340 1341 1342
            goto cleanup;
        pciAddr->domain = addr.domain;
        pciAddr->bus = addr.bus;
        pciAddr->slot = addr.slot;
        pciAddr->function = addr.function;
        if (VIR_APPEND_ELEMENT(data->pci_dev.iommuGroupDevices,
                               data->pci_dev.nIommuGroupDevices,
1343
                               pciAddr) < 0)
1344 1345 1346 1347
            goto cleanup;
    }

    ret = 0;
1348
 cleanup:
1349
    ctxt->node = origNode;
1350
    VIR_FREE(numberStr);
1351 1352 1353 1354 1355
    VIR_FREE(addrNodes);
    VIR_FREE(pciAddr);
    return ret;
}

1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435
static int
virPCIEDeviceInfoLinkParseXML(xmlXPathContextPtr ctxt,
                              xmlNodePtr linkNode,
                              virPCIELinkPtr lnk)
{
    xmlNodePtr origNode = ctxt->node;
    int ret = -1, speed;
    char *speedStr = NULL, *portStr = NULL;

    ctxt->node = linkNode;

    if (virXPathUInt("number(./@width)", ctxt, &lnk->width) < 0) {
        virReportError(VIR_ERR_XML_DETAIL, "%s",
                       _("mandatory attribute 'width' is missing or malformed"));
        goto cleanup;
    }

    if ((speedStr = virXPathString("string(./@speed)", ctxt))) {
        if ((speed = virPCIELinkSpeedTypeFromString(speedStr)) < 0) {
            virReportError(VIR_ERR_XML_DETAIL,
                           _("malformed 'speed' attribute: %s"),
                           speedStr);
            goto cleanup;
        }
        lnk->speed = speed;
    }

    if ((portStr = virXPathString("string(./@port)", ctxt))) {
        if (virStrToLong_i(portStr, NULL, 10, &lnk->port) < 0) {
            virReportError(VIR_ERR_XML_DETAIL,
                           _("malformed 'port' attribute: %s"),
                           portStr);
            goto cleanup;
        }
    } else {
        lnk->port = -1;
    }

    ret = 0;
 cleanup:
    VIR_FREE(portStr);
    VIR_FREE(speedStr);
    ctxt->node = origNode;
    return ret;
}

static int
virPCIEDeviceInfoParseXML(xmlXPathContextPtr ctxt,
                          xmlNodePtr pciExpressNode,
                          virPCIEDeviceInfoPtr pci_express)
{
    xmlNodePtr lnk, origNode = ctxt->node;
    int ret = -1;

    ctxt->node = pciExpressNode;

    if ((lnk = virXPathNode("./link[@validity='cap']", ctxt))) {
        if (VIR_ALLOC(pci_express->link_cap) < 0)
            goto cleanup;

        if (virPCIEDeviceInfoLinkParseXML(ctxt, lnk,
                                          pci_express->link_cap) < 0)
            goto cleanup;
    }

    if ((lnk = virXPathNode("./link[@validity='sta']", ctxt))) {
        if (VIR_ALLOC(pci_express->link_sta) < 0)
            goto cleanup;

        if (virPCIEDeviceInfoLinkParseXML(ctxt, lnk,
                                          pci_express->link_sta) < 0)
            goto cleanup;
    }

    ret = 0;
 cleanup:
    ctxt->node = origNode;
    return ret;
}

1436

1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470
static int
virNodeDevPCICapabilityParseXML(xmlXPathContextPtr ctxt,
                                xmlNodePtr node,
                                virNodeDevCapDataPtr data)
{
    char *maxFuncsStr = virXMLPropString(node, "maxCount");
    char *type = virXMLPropString(node, "type");
    xmlNodePtr *addresses = NULL;
    xmlNodePtr orignode = ctxt->node;
    int ret = -1;
    size_t i = 0;

    ctxt->node = node;

    if (!type) {
        virReportError(VIR_ERR_XML_ERROR, "%s", _("Missing capability type"));
        goto out;
    }

    if (STREQ(type, "phys_function")) {
        xmlNodePtr address = virXPathNode("./address[1]", ctxt);

        if (VIR_ALLOC(data->pci_dev.physical_function) < 0)
            goto out;

        if (!address) {
            virReportError(VIR_ERR_XML_ERROR, "%s",
                           _("Missing address in 'phys_function' capability"));
            goto out;
        }

        if (virPCIDeviceAddressParseXML(address,
                                        data->pci_dev.physical_function) < 0)
            goto out;
1471 1472

        data->pci_dev.flags |= VIR_NODE_DEV_CAP_FLAG_PCI_PHYSICAL_FUNCTION;
1473
    } else if (STREQ(type, "virt_functions")) {
1474 1475 1476 1477
        int naddresses;

        if ((naddresses = virXPathNodeSet("./address", ctxt, &addresses)) < 0)
            goto out;
1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524

        if (maxFuncsStr &&
            virStrToLong_uip(maxFuncsStr, NULL, 10,
                             &data->pci_dev.max_virtual_functions) < 0) {
            virReportError(VIR_ERR_XML_ERROR, "%s",
                           _("Malformed 'maxCount' parameter"));
            goto out;
        }

        if (VIR_ALLOC_N(data->pci_dev.virtual_functions, naddresses) < 0)
            goto out;

        for (i = 0; i < naddresses; i++) {
            virPCIDeviceAddressPtr addr = NULL;

            if (VIR_ALLOC(addr) < 0)
                goto out;

            if (virPCIDeviceAddressParseXML(addresses[i], addr) < 0) {
                VIR_FREE(addr);
                goto out;
            }

            if (VIR_APPEND_ELEMENT(data->pci_dev.virtual_functions,
                                   data->pci_dev.num_virtual_functions,
                                   addr) < 0)
                goto out;
        }

        data->pci_dev.flags |= VIR_NODE_DEV_CAP_FLAG_PCI_VIRTUAL_FUNCTION;
    } else {
        int hdrType = virPCIHeaderTypeFromString(type);

        if (hdrType > 0 && !data->pci_dev.hdrType)
            data->pci_dev.hdrType = hdrType;
    }

    ret = 0;
 out:
    VIR_FREE(addresses);
    VIR_FREE(maxFuncsStr);
    VIR_FREE(type);
    ctxt->node = orignode;
    return ret;
}


1525
static int
1526
virNodeDevCapPCIDevParseXML(xmlXPathContextPtr ctxt,
1527 1528
                            virNodeDeviceDefPtr def,
                            xmlNodePtr node,
1529
                            virNodeDevCapDataPtr data)
1530
{
1531
    xmlNodePtr orignode, iommuGroupNode, pciExpress;
1532 1533
    xmlNodePtr *nodes = NULL;
    int n = 0;
1534
    int ret = -1;
1535
    virPCIEDeviceInfoPtr pci_express = NULL;
1536
    char *tmp = NULL;
1537
    size_t i = 0;
1538 1539 1540 1541

    orignode = ctxt->node;
    ctxt->node = node;

1542
    if (virNodeDevCapsDefParseULong("number(./domain[1])", ctxt,
1543 1544 1545 1546 1547
                                    &data->pci_dev.domain, def,
                                    _("no PCI domain ID supplied for '%s'"),
                                    _("invalid PCI domain ID supplied for '%s'")) < 0)
        goto out;

1548
    if (virNodeDevCapsDefParseULong("number(./bus[1])", ctxt,
1549 1550 1551 1552 1553
                                    &data->pci_dev.bus, def,
                                    _("no PCI bus ID supplied for '%s'"),
                                    _("invalid PCI bus ID supplied for '%s'")) < 0)
        goto out;

1554
    if (virNodeDevCapsDefParseULong("number(./slot[1])", ctxt,
1555 1556 1557 1558 1559
                                    &data->pci_dev.slot, def,
                                    _("no PCI slot ID supplied for '%s'"),
                                    _("invalid PCI slot ID supplied for '%s'")) < 0)
        goto out;

1560
    if (virNodeDevCapsDefParseULong("number(./function[1])", ctxt,
1561 1562 1563 1564 1565
                                    &data->pci_dev.function, def,
                                    _("no PCI function ID supplied for '%s'"),
                                    _("invalid PCI function ID supplied for '%s'")) < 0)
        goto out;

1566
    if (virNodeDevCapsDefParseHexId("string(./vendor[1]/@id)", ctxt,
1567 1568 1569 1570 1571
                                    &data->pci_dev.vendor, def,
                                    _("no PCI vendor ID supplied for '%s'"),
                                    _("invalid PCI vendor ID supplied for '%s'")) < 0)
        goto out;

1572
    if (virNodeDevCapsDefParseHexId("string(./product[1]/@id)", ctxt,
1573 1574 1575 1576 1577
                                    &data->pci_dev.product, def,
                                    _("no PCI product ID supplied for '%s'"),
                                    _("invalid PCI product ID supplied for '%s'")) < 0)
        goto out;

1578 1579
    data->pci_dev.vendor_name  = virXPathString("string(./vendor[1])", ctxt);
    data->pci_dev.product_name = virXPathString("string(./product[1])", ctxt);
1580

1581 1582 1583 1584 1585 1586 1587 1588 1589
    if ((n = virXPathNodeSet("./capability", ctxt, &nodes)) < 0)
        goto out;

    for (i = 0; i < n; i++) {
        if (virNodeDevPCICapabilityParseXML(ctxt, nodes[i], data) < 0)
            goto out;
    }
    VIR_FREE(nodes);

1590
    if ((iommuGroupNode = virXPathNode("./iommuGroup[1]", ctxt))) {
1591
        if (virNodeDevCapPCIDevIommuGroupParseXML(ctxt, iommuGroupNode,
1592 1593 1594 1595
                                                  data) < 0) {
            goto out;
        }
    }
1596

1597 1598
    /* The default value is -1 since zero is valid NUMA node number */
    data->pci_dev.numa_node = -1;
1599 1600 1601 1602 1603
    if (virNodeDevCapsDefParseIntOptional("number(./numa[1]/@node)", ctxt,
                                          &data->pci_dev.numa_node, def,
                                          _("invalid NUMA node ID supplied for '%s'")) < 0)
        goto out;

1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615
    if ((pciExpress = virXPathNode("./pci-express[1]", ctxt))) {
        if (VIR_ALLOC(pci_express) < 0)
            goto out;

        if (virPCIEDeviceInfoParseXML(ctxt, pciExpress, pci_express) < 0)
            goto out;

        data->pci_dev.pci_express = pci_express;
        pci_express = NULL;
        data->pci_dev.flags |= VIR_NODE_DEV_CAP_FLAG_PCIE;
    }

1616
    ret = 0;
1617
 out:
1618
    VIR_FREE(nodes);
1619
    VIR_FREE(tmp);
1620
    virPCIEDeviceInfoFree(pci_express);
1621 1622 1623 1624 1625
    ctxt->node = orignode;
    return ret;
}

static int
1626
virNodeDevCapSystemParseXML(xmlXPathContextPtr ctxt,
1627 1628
                            virNodeDeviceDefPtr def,
                            xmlNodePtr node,
1629
                            virNodeDevCapDataPtr data)
1630 1631 1632 1633 1634 1635 1636 1637
{
    xmlNodePtr orignode;
    int ret = -1;
    char *tmp;

    orignode = ctxt->node;
    ctxt->node = node;

1638
    data->system.product_name = virXPathString("string(./product[1])", ctxt);
1639

1640 1641 1642
    data->system.hardware.vendor_name = virXPathString("string(./hardware/vendor[1])", ctxt);
    data->system.hardware.version     = virXPathString("string(./hardware/version[1])", ctxt);
    data->system.hardware.serial      = virXPathString("string(./hardware/serial[1])", ctxt);
1643

1644
    tmp = virXPathString("string(./hardware/uuid[1])", ctxt);
1645
    if (!tmp) {
1646 1647
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("no system UUID supplied for '%s'"), def->name);
1648 1649 1650 1651
        goto out;
    }

    if (virUUIDParse(tmp, data->system.hardware.uuid) < 0) {
1652 1653
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("malformed uuid element for '%s'"), def->name);
1654 1655 1656 1657 1658
        VIR_FREE(tmp);
        goto out;
    }
    VIR_FREE(tmp);

1659 1660 1661
    data->system.firmware.vendor_name  = virXPathString("string(./firmware/vendor[1])", ctxt);
    data->system.firmware.version      = virXPathString("string(./firmware/version[1])", ctxt);
    data->system.firmware.release_date = virXPathString("string(./firmware/release_date[1])", ctxt);
1662 1663

    ret = 0;
1664
 out:
1665 1666 1667 1668 1669
    ctxt->node = orignode;
    return ret;
}

static virNodeDevCapsDefPtr
1670
virNodeDevCapsDefParseXML(xmlXPathContextPtr ctxt,
1671
                          virNodeDeviceDefPtr def,
1672
                          xmlNodePtr node,
1673 1674
                          int create,
                          const char *virt_type)
1675 1676 1677
{
    virNodeDevCapsDefPtr caps;
    char *tmp;
1678
    int val, ret = -1;
1679

1680
    if (VIR_ALLOC(caps) < 0)
1681 1682 1683 1684
        return NULL;

    tmp = virXMLPropString(node, "type");
    if (!tmp) {
1685 1686
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       "%s", _("missing capability type"));
1687 1688 1689 1690
        goto error;
    }

    if ((val = virNodeDevCapTypeFromString(tmp)) < 0) {
1691
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
1692
                       _("unknown capability type '%s'"), tmp);
1693 1694 1695
        VIR_FREE(tmp);
        goto error;
    }
1696
    caps->data.type = val;
1697 1698
    VIR_FREE(tmp);

1699
    switch (caps->data.type) {
1700
    case VIR_NODE_DEV_CAP_SYSTEM:
1701
        ret = virNodeDevCapSystemParseXML(ctxt, def, node, &caps->data);
1702 1703
        break;
    case VIR_NODE_DEV_CAP_PCI_DEV:
1704
        ret = virNodeDevCapPCIDevParseXML(ctxt, def, node, &caps->data);
1705 1706
        break;
    case VIR_NODE_DEV_CAP_USB_DEV:
1707
        ret = virNodeDevCapUSBDevParseXML(ctxt, def, node, &caps->data);
1708 1709
        break;
    case VIR_NODE_DEV_CAP_USB_INTERFACE:
1710
        ret = virNodeDevCapUSBInterfaceParseXML(ctxt, def, node, &caps->data);
1711 1712
        break;
    case VIR_NODE_DEV_CAP_NET:
1713
        ret = virNodeDevCapNetParseXML(ctxt, def, node, &caps->data);
1714 1715
        break;
    case VIR_NODE_DEV_CAP_SCSI_HOST:
1716
        ret = virNodeDevCapSCSIHostParseXML(ctxt, def, node,
1717 1718 1719
                                            &caps->data,
                                            create,
                                            virt_type);
1720
        break;
D
David Allan 已提交
1721
    case VIR_NODE_DEV_CAP_SCSI_TARGET:
1722
        ret = virNodeDevCapSCSITargetParseXML(ctxt, def, node, &caps->data);
D
David Allan 已提交
1723
        break;
1724
    case VIR_NODE_DEV_CAP_SCSI:
1725
        ret = virNodeDevCapSCSIParseXML(ctxt, def, node, &caps->data);
1726 1727
        break;
    case VIR_NODE_DEV_CAP_STORAGE:
1728
        ret = virNodeDevCapStorageParseXML(ctxt, def, node, &caps->data);
1729
        break;
M
Marc-André Lureau 已提交
1730 1731 1732
    case VIR_NODE_DEV_CAP_DRM:
        ret = virNodeDevCapDRMParseXML(ctxt, def, node, &caps->data);
        break;
1733 1734 1735 1736
    case VIR_NODE_DEV_CAP_FC_HOST:
    case VIR_NODE_DEV_CAP_VPORTS:
    case VIR_NODE_DEV_CAP_SCSI_GENERIC:
    case VIR_NODE_DEV_CAP_LAST:
1737 1738
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("unknown capability type '%d' for '%s'"),
1739
                       caps->data.type, def->name);
1740 1741 1742 1743 1744 1745 1746 1747
        ret = -1;
        break;
    }

    if (ret < 0)
        goto error;
    return caps;

1748
 error:
1749 1750 1751 1752 1753
    virNodeDevCapsDefFree(caps);
    return NULL;
}

static virNodeDeviceDefPtr
1754 1755 1756
virNodeDeviceDefParseXML(xmlXPathContextPtr ctxt,
                         int create,
                         const char *virt_type)
1757 1758 1759 1760
{
    virNodeDeviceDefPtr def;
    virNodeDevCapsDefPtr *next_cap;
    xmlNodePtr *nodes;
1761
    int n, m;
1762
    size_t i;
1763

1764
    if (VIR_ALLOC(def) < 0)
1765 1766 1767
        return NULL;

    /* Extract device name */
1768
    if (create == EXISTING_DEVICE) {
1769
        def->name = virXPathString("string(./name[1])", ctxt);
1770 1771

        if (!def->name) {
1772
            virReportError(VIR_ERR_NO_NAME, NULL);
1773 1774
            goto error;
        }
1775
    } else {
1776
        if (VIR_STRDUP(def->name, "new device") < 0)
1777
            goto error;
1778 1779
    }

M
Marc-André Lureau 已提交
1780 1781
    def->sysfs_path = virXPathString("string(./path[1])", ctxt);

1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819
    /* Parse devnodes */
    nodes = NULL;
    if ((n = virXPathNodeSet("./devnode", ctxt, &nodes)) < 0)
        goto error;

    if (VIR_ALLOC_N(def->devlinks, n + 1) < 0)
        goto error;

    for (i = 0, m = 0; i < n; i++) {
        xmlNodePtr node = nodes[i];
        char *tmp = virXMLPropString(node, "type");
        virNodeDevDevnodeType type;

        if (!tmp) {
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           "%s", _("missing devnode type"));
            goto error;
        }

        if ((type = virNodeDevDevnodeTypeFromString(tmp)) < 0) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                           _("unknown devnode type '%s'"), tmp);
            VIR_FREE(tmp);
            goto error;
        }

        switch (type) {
        case VIR_NODE_DEV_DEVNODE_DEV:
            def->devnode = (char*)xmlNodeGetContent(node);
            break;
        case VIR_NODE_DEV_DEVNODE_LINK:
            def->devlinks[m++] = (char*)xmlNodeGetContent(node);
            break;
        case VIR_NODE_DEV_DEVNODE_LAST:
            break;
        }
    }

1820
    /* Extract device parent, if any */
1821
    def->parent = virXPathString("string(./parent[1])", ctxt);
1822 1823 1824 1825 1826 1827 1828 1829 1830 1831
    def->parent_wwnn = virXPathString("string(./parent[1]/@wwnn)", ctxt);
    def->parent_wwpn = virXPathString("string(./parent[1]/@wwpn)", ctxt);
    if ((def->parent_wwnn && !def->parent_wwpn) ||
        (!def->parent_wwnn && def->parent_wwpn)) {
        virReportError(VIR_ERR_XML_ERROR, "%s",
                       _("must supply both wwnn and wwpn for parent"));
        goto error;
    }
    def->parent_fabric_wwn = virXPathString("string(./parent[1]/@fabric_wwn)",
                                            ctxt);
1832 1833 1834

    /* Parse device capabilities */
    nodes = NULL;
1835
    if ((n = virXPathNodeSet("./capability", ctxt, &nodes)) < 0)
1836 1837 1838
        goto error;

    if (n == 0) {
1839 1840 1841
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("no device capabilities for '%s'"),
                       def->name);
1842 1843 1844 1845
        goto error;
    }

    next_cap = &def->caps;
1846
    for (i = 0; i < n; i++) {
1847 1848 1849 1850
        *next_cap = virNodeDevCapsDefParseXML(ctxt, def,
                                              nodes[i],
                                              create,
                                              virt_type);
1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866
        if (!*next_cap) {
            VIR_FREE(nodes);
            goto error;
        }

        next_cap = &(*next_cap)->next;
    }
    VIR_FREE(nodes);

    return def;

 error:
    virNodeDeviceDefFree(def);
    return NULL;
}

1867
virNodeDeviceDefPtr
1868
virNodeDeviceDefParseNode(xmlDocPtr xml,
1869
                          xmlNodePtr root,
1870 1871
                          int create,
                          const char *virt_type)
1872 1873 1874 1875 1876
{
    xmlXPathContextPtr ctxt = NULL;
    virNodeDeviceDefPtr def = NULL;

    if (!xmlStrEqual(root->name, BAD_CAST "device")) {
1877 1878 1879 1880
        virReportError(VIR_ERR_XML_ERROR,
                       _("unexpected root element <%s> "
                         "expecting <device>"),
                       root->name);
1881 1882 1883 1884 1885
        return NULL;
    }

    ctxt = xmlXPathNewContext(xml);
    if (ctxt == NULL) {
1886
        virReportOOMError();
1887 1888 1889 1890
        goto cleanup;
    }

    ctxt->node = root;
1891
    def = virNodeDeviceDefParseXML(ctxt, create, virt_type);
1892

1893
 cleanup:
1894 1895 1896 1897
    xmlXPathFreeContext(ctxt);
    return def;
}

1898
static virNodeDeviceDefPtr
1899
virNodeDeviceDefParse(const char *str,
1900
                      const char *filename,
1901 1902
                      int create,
                      const char *virt_type)
1903
{
J
Jiri Denemark 已提交
1904
    xmlDocPtr xml;
1905 1906
    virNodeDeviceDefPtr def = NULL;

1907
    if ((xml = virXMLParse(filename, str, _("(node_device_definition)")))) {
1908 1909
        def = virNodeDeviceDefParseNode(xml, xmlDocGetRootElement(xml),
                                        create, virt_type);
J
Jiri Denemark 已提交
1910
        xmlFreeDoc(xml);
1911 1912
    }

1913 1914 1915
    return def;
}

1916
virNodeDeviceDefPtr
1917
virNodeDeviceDefParseString(const char *str,
1918 1919
                            int create,
                            const char *virt_type)
1920
{
1921
    return virNodeDeviceDefParse(str, NULL, create, virt_type);
1922 1923 1924
}

virNodeDeviceDefPtr
1925
virNodeDeviceDefParseFile(const char *filename,
1926 1927
                          int create,
                          const char *virt_type)
1928
{
1929
    return virNodeDeviceDefParse(NULL, filename, create, virt_type);
1930 1931
}

1932 1933 1934 1935
/*
 * Return fc_host dev's WWNN and WWPN
 */
int
1936
virNodeDeviceGetWWNs(virNodeDeviceDefPtr def,
1937 1938 1939 1940
                     char **wwnn,
                     char **wwpn)
{
    virNodeDevCapsDefPtr cap = NULL;
1941
    int ret = -1;
1942 1943 1944

    cap = def->caps;
    while (cap != NULL) {
1945
        if (cap->data.type == VIR_NODE_DEV_CAP_SCSI_HOST &&
1946
            cap->data.scsi_host.flags & VIR_NODE_DEV_CAP_FLAG_HBA_FC_HOST) {
1947 1948 1949 1950 1951 1952
            if (VIR_STRDUP(*wwnn, cap->data.scsi_host.wwnn) < 0 ||
                VIR_STRDUP(*wwpn, cap->data.scsi_host.wwpn) < 0) {
                /* Free the other one, if allocated... */
                VIR_FREE(*wwnn);
                goto cleanup;
            }
1953 1954 1955 1956 1957 1958 1959
            break;
        }

        cap = cap->next;
    }

    if (cap == NULL) {
1960 1961
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       "%s", _("Device is not a fibre channel HBA"));
1962
        goto cleanup;
1963 1964
    }

1965
    ret = 0;
1966
 cleanup:
1967 1968 1969 1970 1971 1972
    return ret;
}

/*
 * Return the NPIV dev's parent device name
 */
1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001
/* virNodeDeviceFindFCParentHost:
 * @parent: Pointer to node device object
 * @parent_host: Pointer to return parent host number
 *
 * Search the capabilities for the device to find the FC capabilities
 * in order to set the parent_host value.
 *
 * Returns:
 *   0 on success with parent_host set, -1 otherwise;
 */
static int
virNodeDeviceFindFCParentHost(virNodeDeviceObjPtr parent,
                              int *parent_host)
{
    virNodeDevCapsDefPtr cap = virNodeDeviceFindVPORTCapDef(parent);

    if (!cap) {
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Parent device %s is not capable "
                         "of vport operations"),
                       parent->def->name);
        return -1;
    }

    *parent_host = cap->data.scsi_host.host;
    return 0;
}


2002
int
E
Eric Blake 已提交
2003
virNodeDeviceGetParentHost(virNodeDeviceObjListPtr devs,
2004 2005 2006 2007 2008
                           const char *dev_name,
                           const char *parent_name,
                           int *parent_host)
{
    virNodeDeviceObjPtr parent = NULL;
2009
    int ret;
2010

2011
    if (!(parent = virNodeDeviceFindByName(devs, parent_name))) {
2012 2013 2014
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Could not find parent device for '%s'"),
                       dev_name);
2015
        return -1;
2016 2017
    }

2018
    ret = virNodeDeviceFindFCParentHost(parent, parent_host);
2019 2020 2021 2022 2023

    virNodeDeviceObjUnlock(parent);

    return ret;
}
2024

2025

2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074
int
virNodeDeviceGetParentHostByWWNs(virNodeDeviceObjListPtr devs,
                                 const char *dev_name,
                                 const char *parent_wwnn,
                                 const char *parent_wwpn,
                                 int *parent_host)
{
    virNodeDeviceObjPtr parent = NULL;
    int ret;

    if (!(parent = virNodeDeviceFindByWWNs(devs, parent_wwnn, parent_wwpn))) {
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Could not find parent device for '%s'"),
                       dev_name);
        return -1;
    }

    ret = virNodeDeviceFindFCParentHost(parent, parent_host);

    virNodeDeviceObjUnlock(parent);

    return ret;
}


int
virNodeDeviceGetParentHostByFabricWWN(virNodeDeviceObjListPtr devs,
                                      const char *dev_name,
                                      const char *parent_fabric_wwn,
                                      int *parent_host)
{
    virNodeDeviceObjPtr parent = NULL;
    int ret;

    if (!(parent = virNodeDeviceFindByFabricWWN(devs, parent_fabric_wwn))) {
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Could not find parent device for '%s'"),
                       dev_name);
        return -1;
    }

    ret = virNodeDeviceFindFCParentHost(parent, parent_host);

    virNodeDeviceObjUnlock(parent);

    return ret;
}


2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096
int
virNodeDeviceFindVportParentHost(virNodeDeviceObjListPtr devs,
                                 int *parent_host)
{
    virNodeDeviceObjPtr parent = NULL;
    const char *cap = virNodeDevCapTypeToString(VIR_NODE_DEV_CAP_VPORTS);
    int ret;

    if (!(parent = virNodeDeviceFindByCap(devs, cap))) {
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("Could not find any vport capable device"));
        return -1;
    }

    ret = virNodeDeviceFindFCParentHost(parent, parent_host);

    virNodeDeviceObjUnlock(parent);

    return ret;
}


2097 2098
void virNodeDevCapsDefFree(virNodeDevCapsDefPtr caps)
{
2099
    size_t i = 0;
2100
    virNodeDevCapDataPtr data = &caps->data;
2101

2102
    switch (caps->data.type) {
2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114
    case VIR_NODE_DEV_CAP_SYSTEM:
        VIR_FREE(data->system.product_name);
        VIR_FREE(data->system.hardware.vendor_name);
        VIR_FREE(data->system.hardware.version);
        VIR_FREE(data->system.hardware.serial);
        VIR_FREE(data->system.firmware.vendor_name);
        VIR_FREE(data->system.firmware.version);
        VIR_FREE(data->system.firmware.release_date);
        break;
    case VIR_NODE_DEV_CAP_PCI_DEV:
        VIR_FREE(data->pci_dev.product_name);
        VIR_FREE(data->pci_dev.vendor_name);
2115
        VIR_FREE(data->pci_dev.physical_function);
2116
        for (i = 0; i < data->pci_dev.num_virtual_functions; i++)
2117
            VIR_FREE(data->pci_dev.virtual_functions[i]);
2118
        VIR_FREE(data->pci_dev.virtual_functions);
2119
        for (i = 0; i < data->pci_dev.nIommuGroupDevices; i++)
2120
            VIR_FREE(data->pci_dev.iommuGroupDevices[i]);
2121
        VIR_FREE(data->pci_dev.iommuGroupDevices);
2122
        virPCIEDeviceInfoFree(data->pci_dev.pci_express);
2123 2124 2125 2126 2127 2128 2129 2130 2131
        break;
    case VIR_NODE_DEV_CAP_USB_DEV:
        VIR_FREE(data->usb_dev.product_name);
        VIR_FREE(data->usb_dev.vendor_name);
        break;
    case VIR_NODE_DEV_CAP_USB_INTERFACE:
        VIR_FREE(data->usb_if.description);
        break;
    case VIR_NODE_DEV_CAP_NET:
2132
        VIR_FREE(data->net.ifname);
2133
        VIR_FREE(data->net.address);
2134 2135
        virBitmapFree(data->net.features);
        data->net.features = NULL;
2136 2137
        break;
    case VIR_NODE_DEV_CAP_SCSI_HOST:
2138 2139
        VIR_FREE(data->scsi_host.wwnn);
        VIR_FREE(data->scsi_host.wwpn);
O
Osier Yang 已提交
2140
        VIR_FREE(data->scsi_host.fabric_wwn);
2141
        break;
D
David Allan 已提交
2142 2143 2144
    case VIR_NODE_DEV_CAP_SCSI_TARGET:
        VIR_FREE(data->scsi_target.name);
        break;
2145 2146 2147 2148
    case VIR_NODE_DEV_CAP_SCSI:
        VIR_FREE(data->scsi.type);
        break;
    case VIR_NODE_DEV_CAP_STORAGE:
2149
        VIR_FREE(data->storage.block);
2150 2151 2152 2153
        VIR_FREE(data->storage.bus);
        VIR_FREE(data->storage.drive_type);
        VIR_FREE(data->storage.model);
        VIR_FREE(data->storage.vendor);
2154
        VIR_FREE(data->storage.serial);
2155
        VIR_FREE(data->storage.media_label);
2156
        break;
2157 2158 2159
    case VIR_NODE_DEV_CAP_SCSI_GENERIC:
        VIR_FREE(data->sg.path);
        break;
M
Marc-André Lureau 已提交
2160
    case VIR_NODE_DEV_CAP_DRM:
2161 2162
    case VIR_NODE_DEV_CAP_FC_HOST:
    case VIR_NODE_DEV_CAP_VPORTS:
2163 2164 2165 2166 2167 2168 2169 2170
    case VIR_NODE_DEV_CAP_LAST:
        /* This case is here to shutup the compiler */
        break;
    }

    VIR_FREE(caps);
}

D
Daniel P. Berrange 已提交
2171

2172 2173
void virNodeDeviceObjLock(virNodeDeviceObjPtr obj)
{
2174
    virMutexLock(&obj->lock);
2175 2176 2177 2178
}

void virNodeDeviceObjUnlock(virNodeDeviceObjPtr obj)
{
2179
    virMutexUnlock(&obj->lock);
D
Daniel P. Berrange 已提交
2180
}
2181 2182 2183 2184 2185 2186 2187 2188

static bool
virNodeDeviceCapMatch(virNodeDeviceObjPtr devobj,
                      int type)
{
    virNodeDevCapsDefPtr cap = NULL;

    for (cap = devobj->def->caps; cap; cap = cap->next) {
2189
        if (type == cap->data.type)
2190
            return true;
2191

2192
        if (cap->data.type == VIR_NODE_DEV_CAP_SCSI_HOST) {
2193
            if (type == VIR_NODE_DEV_CAP_FC_HOST &&
2194 2195 2196 2197
                (cap->data.scsi_host.flags &
                 VIR_NODE_DEV_CAP_FLAG_HBA_FC_HOST))
                return true;

2198
            if (type == VIR_NODE_DEV_CAP_VPORTS &&
2199 2200 2201 2202
                (cap->data.scsi_host.flags &
                 VIR_NODE_DEV_CAP_FLAG_HBA_VPORT_OPS))
                return true;
        }
2203 2204 2205 2206 2207
    }

    return false;
}

2208 2209
#define MATCH(FLAG) ((flags & (VIR_CONNECT_LIST_NODE_DEVICES_CAP_ ## FLAG)) && \
                     virNodeDeviceCapMatch(devobj, VIR_NODE_DEV_CAP_ ## FLAG))
2210 2211 2212 2213 2214
static bool
virNodeDeviceMatch(virNodeDeviceObjPtr devobj,
                   unsigned int flags)
{
    /* filter by cap type */
2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226
    if (flags & VIR_CONNECT_LIST_NODE_DEVICES_FILTERS_CAP) {
        if (!(MATCH(SYSTEM)        ||
              MATCH(PCI_DEV)       ||
              MATCH(USB_DEV)       ||
              MATCH(USB_INTERFACE) ||
              MATCH(NET)           ||
              MATCH(SCSI_HOST)     ||
              MATCH(SCSI_TARGET)   ||
              MATCH(SCSI)          ||
              MATCH(STORAGE)       ||
              MATCH(FC_HOST)       ||
              MATCH(VPORTS)        ||
2227 2228
              MATCH(SCSI_GENERIC)  ||
              MATCH(DRM)))
2229 2230 2231 2232 2233 2234 2235 2236
            return false;
    }

    return true;
}
#undef MATCH

int
2237 2238 2239 2240 2241
virNodeDeviceObjListExport(virConnectPtr conn,
                           virNodeDeviceObjList devobjs,
                           virNodeDevicePtr **devices,
                           virNodeDeviceObjListFilter filter,
                           unsigned int flags)
2242 2243 2244 2245 2246
{
    virNodeDevicePtr *tmp_devices = NULL;
    virNodeDevicePtr device = NULL;
    int ndevices = 0;
    int ret = -1;
2247
    size_t i;
2248

2249 2250
    if (devices && VIR_ALLOC_N(tmp_devices, devobjs.count + 1) < 0)
        goto cleanup;
2251 2252 2253 2254

    for (i = 0; i < devobjs.count; i++) {
        virNodeDeviceObjPtr devobj = devobjs.objs[i];
        virNodeDeviceObjLock(devobj);
2255 2256
        if ((!filter || filter(conn, devobj->def)) &&
            virNodeDeviceMatch(devobj, flags)) {
2257
            if (devices) {
2258 2259
                if (!(device = virGetNodeDevice(conn, devobj->def->name)) ||
                    VIR_STRDUP(device->parent, devobj->def->parent) < 0) {
2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278
                    virNodeDeviceObjUnlock(devobj);
                    goto cleanup;
                }
                tmp_devices[ndevices] = device;
            }
            ndevices++;
        }
        virNodeDeviceObjUnlock(devobj);
    }

    if (tmp_devices) {
        /* trim the array to the final size */
        ignore_value(VIR_REALLOC_N(tmp_devices, ndevices + 1));
        *devices = tmp_devices;
        tmp_devices = NULL;
    }

    ret = ndevices;

2279
 cleanup:
2280
    if (tmp_devices) {
2281 2282
        for (i = 0; i < ndevices; i++)
            virObjectUnref(tmp_devices[i]);
2283 2284 2285 2286 2287
    }

    VIR_FREE(tmp_devices);
    return ret;
}