node_device_conf.c 63.8 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 47 48 49

VIR_ENUM_IMPL(virNodeDevCap, VIR_NODE_DEV_CAP_LAST,
              "system",
              "pci",
              "usb_device",
              "usb",
              "net",
              "scsi_host",
D
David Allan 已提交
50
              "scsi_target",
51
              "scsi",
52 53
              "storage",
              "fc_host",
54 55
              "vports",
              "scsi_generic")
56 57 58

VIR_ENUM_IMPL(virNodeDevNetCap, VIR_NODE_DEV_CAP_NET_LAST,
              "80203",
59
              "80211")
60

61
static int
62
virNodeDevCapsDefParseString(const char *xpath,
63
                             xmlXPathContextPtr ctxt,
64
                             char **string)
65 66 67
{
    char *s;

68
    if (!(s = virXPathString(xpath, ctxt)))
69 70 71 72 73 74
        return -1;

    *string = s;
    return 0;
}

E
Eric Blake 已提交
75
int virNodeDeviceHasCap(const virNodeDeviceObj *dev, const char *cap)
76 77 78
{
    virNodeDevCapsDefPtr caps = dev->def->caps;
    while (caps) {
79
        if (STREQ(cap, virNodeDevCapTypeToString(caps->data.type)))
80
            return 1;
81
        else if (caps->data.type == VIR_NODE_DEV_CAP_SCSI_HOST)
82 83 84 85 86 87 88
            if ((STREQ(cap, "fc_host") &&
                (caps->data.scsi_host.flags &
                 VIR_NODE_DEV_CAP_FLAG_HBA_FC_HOST)) ||
                (STREQ(cap, "vports") &&
                (caps->data.scsi_host.flags &
                 VIR_NODE_DEV_CAP_FLAG_HBA_VPORT_OPS)))
                return 1;
89 90 91 92
        caps = caps->next;
    }
    return 0;
}
93

94 95

virNodeDeviceObjPtr
E
Eric Blake 已提交
96
virNodeDeviceFindBySysfsPath(virNodeDeviceObjListPtr devs,
97 98
                             const char *sysfs_path)
{
99
    size_t i;
100 101 102 103 104 105 106 107 108 109 110 111 112 113

    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 已提交
114
virNodeDeviceObjPtr virNodeDeviceFindByName(virNodeDeviceObjListPtr devs,
115 116
                                            const char *name)
{
117
    size_t i;
118

119 120
    for (i = 0; i < devs->count; i++) {
        virNodeDeviceObjLock(devs->objs[i]);
121 122
        if (STREQ(devs->objs[i]->def->name, name))
            return devs->objs[i];
123 124
        virNodeDeviceObjUnlock(devs->objs[i]);
    }
125 126 127 128 129 130 131 132 133 134 135 136 137 138

    return NULL;
}


void virNodeDeviceDefFree(virNodeDeviceDefPtr def)
{
    virNodeDevCapsDefPtr caps;

    if (!def)
        return;

    VIR_FREE(def->name);
    VIR_FREE(def->parent);
139
    VIR_FREE(def->driver);
140 141
    VIR_FREE(def->sysfs_path);
    VIR_FREE(def->parent_sysfs_path);
142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161

    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);

162 163
    virMutexDestroy(&dev->lock);

164 165 166 167 168
    VIR_FREE(dev);
}

void virNodeDeviceObjListFree(virNodeDeviceObjListPtr devs)
{
169
    size_t i;
170
    for (i = 0; i < devs->count; i++)
171 172 173 174 175
        virNodeDeviceObjFree(devs->objs[i]);
    VIR_FREE(devs->objs);
    devs->count = 0;
}

176
virNodeDeviceObjPtr virNodeDeviceAssignDef(virNodeDeviceObjListPtr devs,
E
Eric Blake 已提交
177
                                           virNodeDeviceDefPtr def)
178 179 180 181 182 183 184 185 186
{
    virNodeDeviceObjPtr device;

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

187
    if (VIR_ALLOC(device) < 0)
188 189
        return NULL;

190
    if (virMutexInit(&device->lock) < 0) {
191 192
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       "%s", _("cannot initialize mutex"));
193 194 195
        VIR_FREE(device);
        return NULL;
    }
196
    virNodeDeviceObjLock(device);
197

198
    if (VIR_APPEND_ELEMENT_COPY(devs->objs, devs->count, device) < 0) {
199
        virNodeDeviceObjUnlock(device);
200 201 202
        virNodeDeviceObjFree(device);
        return NULL;
    }
203
    device->def = def;
204 205 206 207 208 209

    return device;

}

void virNodeDeviceObjRemove(virNodeDeviceObjListPtr devs,
E
Eric Blake 已提交
210
                            virNodeDeviceObjPtr dev)
211
{
212
    size_t i;
213

214 215
    virNodeDeviceObjUnlock(dev);

216
    for (i = 0; i < devs->count; i++) {
217
        virNodeDeviceObjLock(dev);
218
        if (devs->objs[i] == dev) {
219
            virNodeDeviceObjUnlock(dev);
220 221
            virNodeDeviceObjFree(devs->objs[i]);

222
            VIR_DELETE_ELEMENT(devs->objs, i, devs->count);
223 224
            break;
        }
225
        virNodeDeviceObjUnlock(dev);
226 227 228
    }
}

229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265
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 已提交
266
char *virNodeDeviceDefFormat(const virNodeDeviceDef *def)
267 268
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;
269
    virNodeDevCapsDefPtr caps;
270
    size_t i = 0;
271 272

    virBufferAddLit(&buf, "<device>\n");
273 274 275 276 277
    virBufferAdjustIndent(&buf, 2);
    virBufferEscapeString(&buf, "<name>%s</name>\n", def->name);
    virBufferEscapeString(&buf, "<path>%s</path>\n", def->sysfs_path);
    if (def->parent)
        virBufferEscapeString(&buf, "<parent>%s</parent>\n", def->parent);
278
    if (def->driver) {
279 280 281 282 283
        virBufferAddLit(&buf, "<driver>\n");
        virBufferAdjustIndent(&buf, 2);
        virBufferEscapeString(&buf, "<name>%s</name>\n", def->driver);
        virBufferAdjustIndent(&buf, -2);
        virBufferAddLit(&buf, "</driver>\n");
284
    }
285 286 287

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

290
        virBufferAsprintf(&buf, "<capability type='%s'>\n",
291
                          virNodeDevCapTypeToString(caps->data.type));
292
        virBufferAdjustIndent(&buf, 2);
293
        switch (caps->data.type) {
294 295
        case VIR_NODE_DEV_CAP_SYSTEM:
            if (data->system.product_name)
296
                virBufferEscapeString(&buf, "<product>%s</product>\n",
297
                                      data->system.product_name);
298 299
            virBufferAddLit(&buf, "<hardware>\n");
            virBufferAdjustIndent(&buf, 2);
300
            if (data->system.hardware.vendor_name)
301
                virBufferEscapeString(&buf, "<vendor>%s</vendor>\n",
302 303
                                      data->system.hardware.vendor_name);
            if (data->system.hardware.version)
304
                virBufferEscapeString(&buf, "<version>%s</version>\n",
305 306
                                      data->system.hardware.version);
            if (data->system.hardware.serial)
307
                virBufferEscapeString(&buf, "<serial>%s</serial>\n",
308 309
                                      data->system.hardware.serial);
            virUUIDFormat(data->system.hardware.uuid, uuidstr);
310 311 312 313 314 315
            virBufferAsprintf(&buf, "<uuid>%s</uuid>\n", uuidstr);
            virBufferAdjustIndent(&buf, -2);
            virBufferAddLit(&buf, "</hardware>\n");

            virBufferAddLit(&buf, "<firmware>\n");
            virBufferAdjustIndent(&buf, 2);
316
            if (data->system.firmware.vendor_name)
317
                virBufferEscapeString(&buf, "<vendor>%s</vendor>\n",
318 319
                                      data->system.firmware.vendor_name);
            if (data->system.firmware.version)
320
                virBufferEscapeString(&buf, "<version>%s</version>\n",
321 322
                                      data->system.firmware.version);
            if (data->system.firmware.release_date)
323
                virBufferEscapeString(&buf, "<release_date>%s</release_date>\n",
324
                                      data->system.firmware.release_date);
325 326
            virBufferAdjustIndent(&buf, -2);
            virBufferAddLit(&buf, "</firmware>\n");
327 328
            break;
        case VIR_NODE_DEV_CAP_PCI_DEV:
329
            virBufferAsprintf(&buf, "<domain>%d</domain>\n",
330
                              data->pci_dev.domain);
331 332
            virBufferAsprintf(&buf, "<bus>%d</bus>\n", data->pci_dev.bus);
            virBufferAsprintf(&buf, "<slot>%d</slot>\n",
333
                              data->pci_dev.slot);
334
            virBufferAsprintf(&buf, "<function>%d</function>\n",
335
                              data->pci_dev.function);
336
            virBufferAsprintf(&buf, "<product id='0x%04x'",
337 338 339 340 341 342
                                  data->pci_dev.product);
            if (data->pci_dev.product_name)
                virBufferEscapeString(&buf, ">%s</product>\n",
                                      data->pci_dev.product_name);
            else
                virBufferAddLit(&buf, " />\n");
343
            virBufferAsprintf(&buf, "<vendor id='0x%04x'",
344 345 346 347 348 349
                                  data->pci_dev.vendor);
            if (data->pci_dev.vendor_name)
                virBufferEscapeString(&buf, ">%s</vendor>\n",
                                      data->pci_dev.vendor_name);
            else
                virBufferAddLit(&buf, " />\n");
350
            if (data->pci_dev.flags & VIR_NODE_DEV_CAP_FLAG_PCI_PHYSICAL_FUNCTION) {
351 352
                virBufferAddLit(&buf, "<capability type='phys_function'>\n");
                virBufferAdjustIndent(&buf, 2);
353
                virBufferAsprintf(&buf,
354
                                  "<address domain='0x%.4x' bus='0x%.2x' "
355 356 357 358 359
                                  "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);
360 361
                virBufferAdjustIndent(&buf, -2);
                virBufferAddLit(&buf, "</capability>\n");
362 363
            }
            if (data->pci_dev.flags & VIR_NODE_DEV_CAP_FLAG_PCI_VIRTUAL_FUNCTION) {
364 365
                virBufferAddLit(&buf, "<capability type='virt_functions'>\n");
                virBufferAdjustIndent(&buf, 2);
366
                for (i = 0; i < data->pci_dev.num_virtual_functions; i++) {
367
                    virBufferAsprintf(&buf,
368
                                      "<address domain='0x%.4x' bus='0x%.2x' "
369 370 371 372 373 374
                                      "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);
                }
375 376
                virBufferAdjustIndent(&buf, -2);
                virBufferAddLit(&buf, "</capability>\n");
377
            }
378
            if (data->pci_dev.nIommuGroupDevices) {
379
                virBufferAsprintf(&buf, "<iommuGroup number='%d'>\n",
380
                                  data->pci_dev.iommuGroupNumber);
381
                virBufferAdjustIndent(&buf, 2);
382 383
                for (i = 0; i < data->pci_dev.nIommuGroupDevices; i++) {
                    virBufferAsprintf(&buf,
384
                                      "<address domain='0x%.4x' bus='0x%.2x' "
385 386 387 388 389 390
                                      "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);
                }
391 392
                virBufferAdjustIndent(&buf, -2);
                virBufferAddLit(&buf, "</iommuGroup>\n");
393
            }
394 395 396
            if (data->pci_dev.numa_node >= 0)
                virBufferAsprintf(&buf, "<numa node='%d'/>\n",
                                  data->pci_dev.numa_node);
397 398
            if (data->pci_dev.flags & VIR_NODE_DEV_CAP_FLAG_PCIE)
                virPCIEDeviceInfoFormat(&buf, data->pci_dev.pci_express);
399 400
            break;
        case VIR_NODE_DEV_CAP_USB_DEV:
401 402
            virBufferAsprintf(&buf, "<bus>%d</bus>\n", data->usb_dev.bus);
            virBufferAsprintf(&buf, "<device>%d</device>\n",
403
                              data->usb_dev.device);
404
            virBufferAsprintf(&buf, "<product id='0x%04x'",
405 406 407 408 409 410
                                  data->usb_dev.product);
            if (data->usb_dev.product_name)
                virBufferEscapeString(&buf, ">%s</product>\n",
                                      data->usb_dev.product_name);
            else
                virBufferAddLit(&buf, " />\n");
411
            virBufferAsprintf(&buf, "<vendor id='0x%04x'",
412 413 414 415 416 417 418 419
                                  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:
420
            virBufferAsprintf(&buf, "<number>%d</number>\n",
421
                              data->usb_if.number);
422
            virBufferAsprintf(&buf, "<class>%d</class>\n",
423
                              data->usb_if._class);
424
            virBufferAsprintf(&buf, "<subclass>%d</subclass>\n",
425
                              data->usb_if.subclass);
426
            virBufferAsprintf(&buf, "<protocol>%d</protocol>\n",
427 428
                              data->usb_if.protocol);
            if (data->usb_if.description)
429
                virBufferEscapeString(&buf,
430
                                  "<description>%s</description>\n",
431 432 433
                                  data->usb_if.description);
            break;
        case VIR_NODE_DEV_CAP_NET:
434
            virBufferEscapeString(&buf, "<interface>%s</interface>\n",
435
                              data->net.ifname);
436
            if (data->net.address)
437
                virBufferEscapeString(&buf, "<address>%s</address>\n",
438
                                  data->net.address);
439
            virInterfaceLinkFormat(&buf, &data->net.lnk);
440 441
            if (data->net.features) {
                for (i = 0; i < VIR_NET_DEV_FEAT_LAST; i++) {
J
Ján Tomko 已提交
442
                    if (virBitmapIsBitSet(data->net.features, i)) {
443 444 445 446 447
                        virBufferAsprintf(&buf, "<feature name='%s'/>\n",
                                          virNetDevFeatureTypeToString(i));
                    }
                }
            }
448 449 450
            if (data->net.subtype != VIR_NODE_DEV_CAP_NET_LAST) {
                const char *subtyp =
                    virNodeDevNetCapTypeToString(data->net.subtype);
451
                virBufferEscapeString(&buf, "<capability type='%s'/>\n",
452
                                      subtyp);
453 454 455
            }
            break;
        case VIR_NODE_DEV_CAP_SCSI_HOST:
456
            virBufferAsprintf(&buf, "<host>%d</host>\n",
457
                              data->scsi_host.host);
J
John Ferlan 已提交
458 459 460
            if (data->scsi_host.unique_id != -1)
                virBufferAsprintf(&buf, "<unique_id>%d</unique_id>\n",
                                  data->scsi_host.unique_id);
461
            if (data->scsi_host.flags & VIR_NODE_DEV_CAP_FLAG_HBA_FC_HOST) {
462 463 464
                virBufferAddLit(&buf, "<capability type='fc_host'>\n");
                virBufferAdjustIndent(&buf, 2);
                virBufferEscapeString(&buf, "<wwnn>%s</wwnn>\n",
465
                                      data->scsi_host.wwnn);
466
                virBufferEscapeString(&buf, "<wwpn>%s</wwpn>\n",
467
                                      data->scsi_host.wwpn);
468
                virBufferEscapeString(&buf, "<fabric_wwn>%s</fabric_wwn>\n",
O
Osier Yang 已提交
469
                                      data->scsi_host.fabric_wwn);
470 471
                virBufferAdjustIndent(&buf, -2);
                virBufferAddLit(&buf, "</capability>\n");
472 473
            }
            if (data->scsi_host.flags & VIR_NODE_DEV_CAP_FLAG_HBA_VPORT_OPS) {
474 475 476
                virBufferAddLit(&buf, "<capability type='vport_ops'>\n");
                virBufferAdjustIndent(&buf, 2);
                virBufferAsprintf(&buf, "<max_vports>%d</max_vports>\n",
477
                                  data->scsi_host.max_vports);
478
                virBufferAsprintf(&buf, "<vports>%d</vports>\n",
479
                                  data->scsi_host.vports);
480 481
                virBufferAdjustIndent(&buf, -2);
                virBufferAddLit(&buf, "</capability>\n");
482 483
            }

484
            break;
D
David Allan 已提交
485 486

        case VIR_NODE_DEV_CAP_SCSI_TARGET:
487
            virBufferEscapeString(&buf, "<target>%s</target>\n",
488
                                  data->scsi_target.name);
D
David Allan 已提交
489 490
            break;

491
        case VIR_NODE_DEV_CAP_SCSI:
492 493 494
            virBufferAsprintf(&buf, "<host>%d</host>\n", data->scsi.host);
            virBufferAsprintf(&buf, "<bus>%d</bus>\n", data->scsi.bus);
            virBufferAsprintf(&buf, "<target>%d</target>\n",
495
                              data->scsi.target);
496
            virBufferAsprintf(&buf, "<lun>%d</lun>\n", data->scsi.lun);
497
            if (data->scsi.type)
498
                virBufferEscapeString(&buf, "<type>%s</type>\n",
499
                                      data->scsi.type);
500 501
            break;
        case VIR_NODE_DEV_CAP_STORAGE:
502 503
            virBufferEscapeString(&buf, "<block>%s</block>\n",
                                  data->storage.block);
504
            if (data->storage.bus)
505 506
                virBufferEscapeString(&buf, "<bus>%s</bus>\n",
                                      data->storage.bus);
507
            if (data->storage.drive_type)
508 509
                virBufferEscapeString(&buf, "<drive_type>%s</drive_type>\n",
                                      data->storage.drive_type);
510
            if (data->storage.model)
511 512
                virBufferEscapeString(&buf, "<model>%s</model>\n",
                                      data->storage.model);
513
            if (data->storage.vendor)
514 515
                virBufferEscapeString(&buf, "<vendor>%s</vendor>\n",
                                      data->storage.vendor);
516
            if (data->storage.serial)
517 518
                virBufferEscapeString(&buf, "<serial>%s</serial>\n",
                                      data->storage.serial);
519 520 521
            if (data->storage.flags & VIR_NODE_DEV_CAP_STORAGE_REMOVABLE) {
                int avl = data->storage.flags &
                    VIR_NODE_DEV_CAP_STORAGE_REMOVABLE_MEDIA_AVAILABLE;
522 523 524
                virBufferAddLit(&buf, "<capability type='removable'>\n");
                virBufferAdjustIndent(&buf, 2);
                virBufferAsprintf(&buf, "<media_available>%d"
525
                                  "</media_available>\n", avl ? 1 : 0);
526
                virBufferAsprintf(&buf, "<media_size>%llu</media_size>\n",
527
                                  data->storage.removable_media_size);
528 529
                if (data->storage.media_label)
                    virBufferEscapeString(&buf,
530 531
                                          "<media_label>%s</media_label>\n",
                                          data->storage.media_label);
532
                if (data->storage.logical_block_size > 0)
533
                    virBufferAsprintf(&buf, "<logical_block_size>%llu"
534 535 536
                                      "</logical_block_size>\n",
                                      data->storage.logical_block_size);
                if (data->storage.num_blocks > 0)
537
                    virBufferAsprintf(&buf,
538
                                      "<num_blocks>%llu</num_blocks>\n",
539
                                      data->storage.num_blocks);
540 541
                virBufferAdjustIndent(&buf, -2);
                virBufferAddLit(&buf, "</capability>\n");
542
            } else {
543
                virBufferAsprintf(&buf, "<size>%llu</size>\n",
544
                                  data->storage.size);
545
                if (data->storage.logical_block_size > 0)
546
                    virBufferAsprintf(&buf, "<logical_block_size>%llu"
547 548 549
                                      "</logical_block_size>\n",
                                      data->storage.logical_block_size);
                if (data->storage.num_blocks > 0)
550
                    virBufferAsprintf(&buf, "<num_blocks>%llu</num_blocks>\n",
551
                                      data->storage.num_blocks);
552 553
            }
            if (data->storage.flags & VIR_NODE_DEV_CAP_STORAGE_HOTPLUGGABLE)
554
                virBufferAddLit(&buf, "<capability type='hotpluggable' />\n");
555
            break;
556
        case VIR_NODE_DEV_CAP_SCSI_GENERIC:
557
            virBufferEscapeString(&buf, "<char>%s</char>\n",
558 559
                                  data->sg.path);
            break;
560 561
        case VIR_NODE_DEV_CAP_FC_HOST:
        case VIR_NODE_DEV_CAP_VPORTS:
562 563 564 565
        case VIR_NODE_DEV_CAP_LAST:
            break;
        }

566 567
        virBufferAdjustIndent(&buf, -2);
        virBufferAddLit(&buf, "</capability>\n");
568 569
    }

570
    virBufferAdjustIndent(&buf, -2);
571 572
    virBufferAddLit(&buf, "</device>\n");

573 574
    if (virBufferCheckError(&buf) < 0)
        return NULL;
575 576 577 578

    return virBufferContentAndReset(&buf);
}

579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613
/**
 * 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;
}

614
static int
615
virNodeDevCapsDefParseULong(const char *xpath,
616 617 618 619 620 621 622 623 624
                            xmlXPathContextPtr ctxt,
                            unsigned *value,
                            virNodeDeviceDefPtr def,
                            const char *missing_error_fmt,
                            const char *invalid_error_fmt)
{
    int ret;
    unsigned long val;

625
    ret = virXPathULong(xpath, ctxt, &val);
626
    if (ret < 0) {
627 628 629
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       ret == -1 ? missing_error_fmt : invalid_error_fmt,
                       def->name);
630 631 632 633 634 635 636 637
        return -1;
    }

    *value = val;
    return 0;
}

static int
638
virNodeDevCapsDefParseULongLong(const char *xpath,
639 640 641 642 643 644 645 646 647
                                xmlXPathContextPtr ctxt,
                                unsigned long long *value,
                                virNodeDeviceDefPtr def,
                                const char *missing_error_fmt,
                                const char *invalid_error_fmt)
{
    int ret;
    unsigned long long val;

648
    ret = virXPathULongLong(xpath, ctxt, &val);
649
    if (ret < 0) {
650 651 652
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       ret == -1 ? missing_error_fmt : invalid_error_fmt,
                       def->name);
653 654 655 656 657 658 659 660
        return -1;
    }

    *value = val;
    return 0;
}

static int
661
virNodeDevCapStorageParseXML(xmlXPathContextPtr ctxt,
662 663
                             virNodeDeviceDefPtr def,
                             xmlNodePtr node,
664
                             virNodeDevCapDataPtr data)
665 666
{
    xmlNodePtr orignode, *nodes = NULL;
667 668
    size_t i;
    int n, ret = -1;
669 670 671 672 673
    unsigned long long val;

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

674
    data->storage.block = virXPathString("string(./block[1])", ctxt);
675
    if (!data->storage.block) {
676 677 678
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("no block device path supplied for '%s'"),
                       def->name);
679 680 681
        goto out;
    }

682 683 684 685 686
    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);
687

688
    if ((n = virXPathNodeSet("./capability", ctxt, &nodes)) < 0)
689 690
        goto out;

691
    for (i = 0; i < n; i++) {
692 693 694
        char *type = virXMLPropString(nodes[i], "type");

        if (!type) {
695 696 697
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("missing storage capability type for '%s'"),
                           def->name);
698 699 700
            goto out;
        }

701
        if (STREQ(type, "hotpluggable")) {
702
            data->storage.flags |= VIR_NODE_DEV_CAP_STORAGE_HOTPLUGGABLE;
703
        } else if (STREQ(type, "removable")) {
704 705 706 707 708 709 710
            xmlNodePtr orignode2;

            data->storage.flags |= VIR_NODE_DEV_CAP_STORAGE_REMOVABLE;

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

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

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

716
            val = 0;
717
            if (virNodeDevCapsDefParseULongLong("number(./media_size[1])", ctxt, &val, def,
718 719 720 721 722 723 724 725 726 727
                                                _("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 {
728 729 730
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("unknown storage capability type '%s' for '%s'"),
                           type, def->name);
731 732 733 734 735 736 737 738 739
            VIR_FREE(type);
            goto out;
        }

        VIR_FREE(type);
    }

    if (!(data->storage.flags & VIR_NODE_DEV_CAP_STORAGE_REMOVABLE)) {
        val = 0;
740
        if (virNodeDevCapsDefParseULongLong("number(./size[1])", ctxt, &val, def,
741 742 743 744 745 746 747
                                            _("no size supplied for '%s'"),
                                            _("invalid size supplied for '%s'")) < 0)
            goto out;
        data->storage.size = val;
    }

    ret = 0;
748
 out:
749 750 751 752 753 754
    VIR_FREE(nodes);
    ctxt->node = orignode;
    return ret;
}

static int
755
virNodeDevCapSCSIParseXML(xmlXPathContextPtr ctxt,
756 757
                          virNodeDeviceDefPtr def,
                          xmlNodePtr node,
758
                          virNodeDevCapDataPtr data)
759 760 761 762 763 764 765
{
    xmlNodePtr orignode;
    int ret = -1;

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

766
    if (virNodeDevCapsDefParseULong("number(./host[1])", ctxt,
767 768 769 770 771
                                    &data->scsi.host, def,
                                    _("no SCSI host ID supplied for '%s'"),
                                    _("invalid SCSI host ID supplied for '%s'")) < 0)
        goto out;

772
    if (virNodeDevCapsDefParseULong("number(./bus[1])", ctxt,
773 774 775 776 777
                                    &data->scsi.bus, def,
                                    _("no SCSI bus ID supplied for '%s'"),
                                    _("invalid SCSI bus ID supplied for '%s'")) < 0)
        goto out;

778
    if (virNodeDevCapsDefParseULong("number(./target[1])", ctxt,
779 780 781 782 783
                                    &data->scsi.target, def,
                                    _("no SCSI target ID supplied for '%s'"),
                                    _("invalid SCSI target ID supplied for '%s'")) < 0)
        goto out;

784
    if (virNodeDevCapsDefParseULong("number(./lun[1])", ctxt,
785 786 787 788 789
                                    &data->scsi.lun, def,
                                    _("no SCSI LUN ID supplied for '%s'"),
                                    _("invalid SCSI LUN ID supplied for '%s'")) < 0)
        goto out;

790
    data->scsi.type = virXPathString("string(./type[1])", ctxt);
791 792

    ret = 0;
793
 out:
794 795 796 797
    ctxt->node = orignode;
    return ret;
}

D
David Allan 已提交
798 799

static int
800
virNodeDevCapSCSITargetParseXML(xmlXPathContextPtr ctxt,
D
David Allan 已提交
801 802
                                virNodeDeviceDefPtr def,
                                xmlNodePtr node,
803
                                virNodeDevCapDataPtr data)
D
David Allan 已提交
804 805 806 807 808 809 810
{
    xmlNodePtr orignode;
    int ret = -1;

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

811
    data->scsi_target.name = virXPathString("string(./name[1])", ctxt);
D
David Allan 已提交
812
    if (!data->scsi_target.name) {
813 814 815
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("no target name supplied for '%s'"),
                       def->name);
D
David Allan 已提交
816 817 818 819 820
        goto out;
    }

    ret = 0;

821
 out:
D
David Allan 已提交
822 823 824 825 826
    ctxt->node = orignode;
    return ret;
}


827
static int
828
virNodeDevCapSCSIHostParseXML(xmlXPathContextPtr ctxt,
829 830
                              virNodeDeviceDefPtr def,
                              xmlNodePtr node,
831
                              virNodeDevCapDataPtr data,
832 833
                              int create,
                              const char *virt_type)
834
{
835
    xmlNodePtr orignode, *nodes = NULL;
836 837
    int ret = -1, n = 0;
    size_t i;
838
    char *type = NULL;
839 840 841 842

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

J
John Ferlan 已提交
843 844 845 846 847 848 849 850 851 852 853 854 855 856
    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;
        }
857 858
    }

859
    if ((n = virXPathNodeSet("./capability", ctxt, &nodes)) < 0)
860
        goto out;
861

862
    for (i = 0; i < n; i++) {
863 864 865
        type = virXMLPropString(nodes[i], "type");

        if (!type) {
866 867 868
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("missing SCSI host capability type for '%s'"),
                           def->name);
869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884
            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];

885
            if (virNodeDevCapsDefParseString("string(./wwnn[1])",
886
                                             ctxt,
887 888
                                             &data->scsi_host.wwnn) < 0) {
                if (virRandomGenerateWWN(&data->scsi_host.wwnn, virt_type) < 0) {
889 890 891 892
                    virReportError(VIR_ERR_INTERNAL_ERROR,
                                   _("no WWNN supplied for '%s', and "
                                     "auto-generation failed"),
                                   def->name);
893 894
                    goto out;
                }
895 896
            }

897
            if (virNodeDevCapsDefParseString("string(./wwpn[1])",
898
                                             ctxt,
899 900
                                             &data->scsi_host.wwpn) < 0) {
                if (virRandomGenerateWWN(&data->scsi_host.wwpn, virt_type) < 0) {
901 902 903 904
                    virReportError(VIR_ERR_INTERNAL_ERROR,
                                   _("no WWPN supplied for '%s', and "
                                     "auto-generation failed"),
                                   def->name);
905 906
                    goto out;
                }
907 908 909 910 911
            }

            ctxt->node = orignode2;

        } else {
912 913 914
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("unknown SCSI host capability type '%s' for '%s'"),
                           type, def->name);
915 916 917 918 919
            goto out;
        }

        VIR_FREE(type);
    }
920 921

    ret = 0;
922

923
 out:
924
    VIR_FREE(type);
925
    ctxt->node = orignode;
926
    VIR_FREE(nodes);
927 928 929
    return ret;
}

930

931
static int
932
virNodeDevCapNetParseXML(xmlXPathContextPtr ctxt,
933 934
                         virNodeDeviceDefPtr def,
                         xmlNodePtr node,
935
                         virNodeDevCapDataPtr data)
936
{
937
    xmlNodePtr orignode, lnk;
938 939
    size_t i = -1;
    int ret = -1, n = -1;
940
    char *tmp = NULL;
941
    xmlNodePtr *nodes = NULL;
942 943 944 945

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

946
    data->net.ifname = virXPathString("string(./interface[1])", ctxt);
947
    if (!data->net.ifname) {
948 949 950
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("no network interface supplied for '%s'"),
                       def->name);
951 952 953
        goto out;
    }

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

956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978
    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));
979
        VIR_FREE(tmp);
980 981
    }

982 983
    data->net.subtype = VIR_NODE_DEV_CAP_NET_LAST;

984
    tmp = virXPathString("string(./capability/@type)", ctxt);
985 986 987 988
    if (tmp) {
        int val = virNodeDevNetCapTypeFromString(tmp);
        VIR_FREE(tmp);
        if (val < 0) {
989
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
990 991
                           _("invalid network type supplied for '%s'"),
                           def->name);
992 993 994 995 996
            goto out;
        }
        data->net.subtype = val;
    }

997 998 999 1000
    lnk = virXPathNode("./link", ctxt);
    if (lnk && virInterfaceLinkParseXML(lnk, &data->net.lnk) < 0)
        goto out;

1001
    ret = 0;
1002
 out:
1003
    ctxt->node = orignode;
1004 1005
    VIR_FREE(nodes);
    VIR_FREE(tmp);
1006 1007 1008 1009
    return ret;
}

static int
1010
virNodeDevCapUSBInterfaceParseXML(xmlXPathContextPtr ctxt,
1011 1012
                                  virNodeDeviceDefPtr def,
                                  xmlNodePtr node,
1013
                                  virNodeDevCapDataPtr data)
1014 1015 1016 1017 1018 1019 1020
{
    xmlNodePtr orignode;
    int ret = -1;

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

1021
    if (virNodeDevCapsDefParseULong("number(./number[1])", ctxt,
1022 1023 1024 1025 1026
                                    &data->usb_if.number, def,
                                    _("no USB interface number supplied for '%s'"),
                                    _("invalid USB interface number supplied for '%s'")) < 0)
        goto out;

1027
    if (virNodeDevCapsDefParseULong("number(./class[1])", ctxt,
1028 1029 1030 1031 1032
                                    &data->usb_if._class, def,
                                    _("no USB interface class supplied for '%s'"),
                                    _("invalid USB interface class supplied for '%s'")) < 0)
        goto out;

1033
    if (virNodeDevCapsDefParseULong("number(./subclass[1])", ctxt,
1034 1035 1036 1037 1038
                                    &data->usb_if.subclass, def,
                                    _("no USB interface subclass supplied for '%s'"),
                                    _("invalid USB interface subclass supplied for '%s'")) < 0)
        goto out;

1039
    if (virNodeDevCapsDefParseULong("number(./protocol[1])", ctxt,
1040 1041 1042 1043 1044
                                    &data->usb_if.protocol, def,
                                    _("no USB interface protocol supplied for '%s'"),
                                    _("invalid USB interface protocol supplied for '%s'")) < 0)
        goto out;

1045
    data->usb_if.description = virXPathString("string(./description[1])", ctxt);
1046 1047

    ret = 0;
1048
 out:
1049 1050 1051 1052 1053
    ctxt->node = orignode;
    return ret;
}

static int
1054
virNodeDevCapsDefParseHexId(const char *xpath,
1055 1056 1057 1058 1059 1060 1061 1062 1063
                            xmlXPathContextPtr ctxt,
                            unsigned *value,
                            virNodeDeviceDefPtr def,
                            const char *missing_error_fmt,
                            const char *invalid_error_fmt)
{
    int ret;
    unsigned long val;

1064
    ret = virXPathULongHex(xpath, ctxt, &val);
1065
    if (ret < 0) {
1066 1067 1068
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       ret == -1 ? missing_error_fmt : invalid_error_fmt,
                       def->name);
1069 1070 1071 1072 1073 1074 1075 1076
        return -1;
    }

    *value = val;
    return 0;
}

static int
1077
virNodeDevCapUSBDevParseXML(xmlXPathContextPtr ctxt,
1078 1079
                            virNodeDeviceDefPtr def,
                            xmlNodePtr node,
1080
                            virNodeDevCapDataPtr data)
1081 1082 1083 1084 1085 1086 1087
{
    xmlNodePtr orignode;
    int ret = -1;

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

1088
    if (virNodeDevCapsDefParseULong("number(./bus[1])", ctxt,
1089 1090 1091 1092 1093
                                    &data->usb_dev.bus, def,
                                    _("no USB bus number supplied for '%s'"),
                                    _("invalid USB bus number supplied for '%s'")) < 0)
        goto out;

1094
    if (virNodeDevCapsDefParseULong("number(./device[1])", ctxt,
1095 1096 1097 1098 1099
                                    &data->usb_dev.device, def,
                                    _("no USB device number supplied for '%s'"),
                                    _("invalid USB device number supplied for '%s'")) < 0)
        goto out;

1100
    if (virNodeDevCapsDefParseHexId("string(./vendor[1]/@id)", ctxt,
1101 1102 1103 1104 1105
                                    &data->usb_dev.vendor, def,
                                    _("no USB vendor ID supplied for '%s'"),
                                    _("invalid USB vendor ID supplied for '%s'")) < 0)
        goto out;

1106
    if (virNodeDevCapsDefParseHexId("string(./product[1]/@id)", ctxt,
1107 1108 1109 1110 1111
                                    &data->usb_dev.product, def,
                                    _("no USB product ID supplied for '%s'"),
                                    _("invalid USB product ID supplied for '%s'")) < 0)
        goto out;

1112 1113
    data->usb_dev.vendor_name  = virXPathString("string(./vendor[1])", ctxt);
    data->usb_dev.product_name = virXPathString("string(./product[1])", ctxt);
1114 1115

    ret = 0;
1116
 out:
1117 1118 1119 1120
    ctxt->node = orignode;
    return ret;
}

1121
static int
1122
virNodeDevCapPCIDevIommuGroupParseXML(xmlXPathContextPtr ctxt,
1123
                                      xmlNodePtr iommuGroupNode,
1124
                                      virNodeDevCapDataPtr data)
1125 1126 1127 1128
{
    xmlNodePtr origNode = ctxt->node;
    xmlNodePtr *addrNodes = NULL;
    char *numberStr = NULL;
1129 1130
    int nAddrNodes, ret = -1;
    size_t i;
1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151
    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;

1152
    for (i = 0; i < nAddrNodes; i++) {
1153
        virDevicePCIAddress addr = { 0, 0, 0, 0, 0 };
1154
        if (virDevicePCIAddressParseXML(addrNodes[i], &addr) < 0)
1155
            goto cleanup;
1156
        if (VIR_ALLOC(pciAddr) < 0)
1157 1158 1159 1160 1161 1162 1163
            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,
1164
                               pciAddr) < 0)
1165 1166 1167 1168
            goto cleanup;
    }

    ret = 0;
1169
 cleanup:
1170
    ctxt->node = origNode;
1171
    VIR_FREE(numberStr);
1172 1173 1174 1175 1176
    VIR_FREE(addrNodes);
    VIR_FREE(pciAddr);
    return ret;
}

1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256
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;
}

1257

1258
static int
1259
virNodeDevCapPCIDevParseXML(xmlXPathContextPtr ctxt,
1260 1261
                            virNodeDeviceDefPtr def,
                            xmlNodePtr node,
1262
                            virNodeDevCapDataPtr data)
1263
{
1264
    xmlNodePtr orignode, iommuGroupNode, pciExpress;
1265
    int ret = -1;
1266
    virPCIEDeviceInfoPtr pci_express = NULL;
1267 1268 1269 1270

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

1271
    if (virNodeDevCapsDefParseULong("number(./domain[1])", ctxt,
1272 1273 1274 1275 1276
                                    &data->pci_dev.domain, def,
                                    _("no PCI domain ID supplied for '%s'"),
                                    _("invalid PCI domain ID supplied for '%s'")) < 0)
        goto out;

1277
    if (virNodeDevCapsDefParseULong("number(./bus[1])", ctxt,
1278 1279 1280 1281 1282
                                    &data->pci_dev.bus, def,
                                    _("no PCI bus ID supplied for '%s'"),
                                    _("invalid PCI bus ID supplied for '%s'")) < 0)
        goto out;

1283
    if (virNodeDevCapsDefParseULong("number(./slot[1])", ctxt,
1284 1285 1286 1287 1288
                                    &data->pci_dev.slot, def,
                                    _("no PCI slot ID supplied for '%s'"),
                                    _("invalid PCI slot ID supplied for '%s'")) < 0)
        goto out;

1289
    if (virNodeDevCapsDefParseULong("number(./function[1])", ctxt,
1290 1291 1292 1293 1294
                                    &data->pci_dev.function, def,
                                    _("no PCI function ID supplied for '%s'"),
                                    _("invalid PCI function ID supplied for '%s'")) < 0)
        goto out;

1295
    if (virNodeDevCapsDefParseHexId("string(./vendor[1]/@id)", ctxt,
1296 1297 1298 1299 1300
                                    &data->pci_dev.vendor, def,
                                    _("no PCI vendor ID supplied for '%s'"),
                                    _("invalid PCI vendor ID supplied for '%s'")) < 0)
        goto out;

1301
    if (virNodeDevCapsDefParseHexId("string(./product[1]/@id)", ctxt,
1302 1303 1304 1305 1306
                                    &data->pci_dev.product, def,
                                    _("no PCI product ID supplied for '%s'"),
                                    _("invalid PCI product ID supplied for '%s'")) < 0)
        goto out;

1307 1308
    data->pci_dev.vendor_name  = virXPathString("string(./vendor[1])", ctxt);
    data->pci_dev.product_name = virXPathString("string(./product[1])", ctxt);
1309

1310
    if ((iommuGroupNode = virXPathNode("./iommuGroup[1]", ctxt))) {
1311
        if (virNodeDevCapPCIDevIommuGroupParseXML(ctxt, iommuGroupNode,
1312 1313 1314 1315
                                                  data) < 0) {
            goto out;
        }
    }
1316

1317 1318
    /* The default value is -1 since zero is valid NUMA node number */
    data->pci_dev.numa_node = -1;
1319 1320 1321 1322 1323
    if (virNodeDevCapsDefParseIntOptional("number(./numa[1]/@node)", ctxt,
                                          &data->pci_dev.numa_node, def,
                                          _("invalid NUMA node ID supplied for '%s'")) < 0)
        goto out;

1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335
    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;
    }

1336
    ret = 0;
1337
 out:
1338
    virPCIEDeviceInfoFree(pci_express);
1339 1340 1341 1342 1343
    ctxt->node = orignode;
    return ret;
}

static int
1344
virNodeDevCapSystemParseXML(xmlXPathContextPtr ctxt,
1345 1346
                            virNodeDeviceDefPtr def,
                            xmlNodePtr node,
1347
                            virNodeDevCapDataPtr data)
1348 1349 1350 1351 1352 1353 1354 1355
{
    xmlNodePtr orignode;
    int ret = -1;
    char *tmp;

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

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

1358 1359 1360
    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);
1361

1362
    tmp = virXPathString("string(./hardware/uuid[1])", ctxt);
1363
    if (!tmp) {
1364 1365
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("no system UUID supplied for '%s'"), def->name);
1366 1367 1368 1369
        goto out;
    }

    if (virUUIDParse(tmp, data->system.hardware.uuid) < 0) {
1370 1371
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("malformed uuid element for '%s'"), def->name);
1372 1373 1374 1375 1376
        VIR_FREE(tmp);
        goto out;
    }
    VIR_FREE(tmp);

1377 1378 1379
    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);
1380 1381

    ret = 0;
1382
 out:
1383 1384 1385 1386 1387
    ctxt->node = orignode;
    return ret;
}

static virNodeDevCapsDefPtr
1388
virNodeDevCapsDefParseXML(xmlXPathContextPtr ctxt,
1389
                          virNodeDeviceDefPtr def,
1390
                          xmlNodePtr node,
1391 1392
                          int create,
                          const char *virt_type)
1393 1394 1395
{
    virNodeDevCapsDefPtr caps;
    char *tmp;
1396
    int val, ret = -1;
1397

1398
    if (VIR_ALLOC(caps) < 0)
1399 1400 1401 1402
        return NULL;

    tmp = virXMLPropString(node, "type");
    if (!tmp) {
1403 1404
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       "%s", _("missing capability type"));
1405 1406 1407 1408
        goto error;
    }

    if ((val = virNodeDevCapTypeFromString(tmp)) < 0) {
1409
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
1410
                       _("unknown capability type '%s'"), tmp);
1411 1412 1413
        VIR_FREE(tmp);
        goto error;
    }
1414
    caps->data.type = val;
1415 1416
    VIR_FREE(tmp);

1417
    switch (caps->data.type) {
1418
    case VIR_NODE_DEV_CAP_SYSTEM:
1419
        ret = virNodeDevCapSystemParseXML(ctxt, def, node, &caps->data);
1420 1421
        break;
    case VIR_NODE_DEV_CAP_PCI_DEV:
1422
        ret = virNodeDevCapPCIDevParseXML(ctxt, def, node, &caps->data);
1423 1424
        break;
    case VIR_NODE_DEV_CAP_USB_DEV:
1425
        ret = virNodeDevCapUSBDevParseXML(ctxt, def, node, &caps->data);
1426 1427
        break;
    case VIR_NODE_DEV_CAP_USB_INTERFACE:
1428
        ret = virNodeDevCapUSBInterfaceParseXML(ctxt, def, node, &caps->data);
1429 1430
        break;
    case VIR_NODE_DEV_CAP_NET:
1431
        ret = virNodeDevCapNetParseXML(ctxt, def, node, &caps->data);
1432 1433
        break;
    case VIR_NODE_DEV_CAP_SCSI_HOST:
1434
        ret = virNodeDevCapSCSIHostParseXML(ctxt, def, node,
1435 1436 1437
                                            &caps->data,
                                            create,
                                            virt_type);
1438
        break;
D
David Allan 已提交
1439
    case VIR_NODE_DEV_CAP_SCSI_TARGET:
1440
        ret = virNodeDevCapSCSITargetParseXML(ctxt, def, node, &caps->data);
D
David Allan 已提交
1441
        break;
1442
    case VIR_NODE_DEV_CAP_SCSI:
1443
        ret = virNodeDevCapSCSIParseXML(ctxt, def, node, &caps->data);
1444 1445
        break;
    case VIR_NODE_DEV_CAP_STORAGE:
1446
        ret = virNodeDevCapStorageParseXML(ctxt, def, node, &caps->data);
1447
        break;
1448 1449 1450 1451
    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:
1452 1453
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("unknown capability type '%d' for '%s'"),
1454
                       caps->data.type, def->name);
1455 1456 1457 1458 1459 1460 1461 1462
        ret = -1;
        break;
    }

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

1463
 error:
1464 1465 1466 1467 1468
    virNodeDevCapsDefFree(caps);
    return NULL;
}

static virNodeDeviceDefPtr
1469 1470 1471
virNodeDeviceDefParseXML(xmlXPathContextPtr ctxt,
                         int create,
                         const char *virt_type)
1472 1473 1474 1475
{
    virNodeDeviceDefPtr def;
    virNodeDevCapsDefPtr *next_cap;
    xmlNodePtr *nodes;
1476 1477
    int n;
    size_t i;
1478

1479
    if (VIR_ALLOC(def) < 0)
1480 1481 1482
        return NULL;

    /* Extract device name */
1483
    if (create == EXISTING_DEVICE) {
1484
        def->name = virXPathString("string(./name[1])", ctxt);
1485 1486

        if (!def->name) {
1487
            virReportError(VIR_ERR_NO_NAME, NULL);
1488 1489
            goto error;
        }
1490
    } else {
1491
        if (VIR_STRDUP(def->name, "new device") < 0)
1492
            goto error;
1493 1494 1495
    }

    /* Extract device parent, if any */
1496
    def->parent = virXPathString("string(./parent[1])", ctxt);
1497 1498 1499

    /* Parse device capabilities */
    nodes = NULL;
1500
    if ((n = virXPathNodeSet("./capability", ctxt, &nodes)) < 0)
1501 1502 1503
        goto error;

    if (n == 0) {
1504 1505 1506
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("no device capabilities for '%s'"),
                       def->name);
1507 1508 1509 1510
        goto error;
    }

    next_cap = &def->caps;
1511
    for (i = 0; i < n; i++) {
1512 1513 1514 1515
        *next_cap = virNodeDevCapsDefParseXML(ctxt, def,
                                              nodes[i],
                                              create,
                                              virt_type);
1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531
        if (!*next_cap) {
            VIR_FREE(nodes);
            goto error;
        }

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

    return def;

 error:
    virNodeDeviceDefFree(def);
    return NULL;
}

1532
virNodeDeviceDefPtr
1533
virNodeDeviceDefParseNode(xmlDocPtr xml,
1534
                          xmlNodePtr root,
1535 1536
                          int create,
                          const char *virt_type)
1537 1538 1539 1540 1541
{
    xmlXPathContextPtr ctxt = NULL;
    virNodeDeviceDefPtr def = NULL;

    if (!xmlStrEqual(root->name, BAD_CAST "device")) {
1542 1543 1544 1545
        virReportError(VIR_ERR_XML_ERROR,
                       _("unexpected root element <%s> "
                         "expecting <device>"),
                       root->name);
1546 1547 1548 1549 1550
        return NULL;
    }

    ctxt = xmlXPathNewContext(xml);
    if (ctxt == NULL) {
1551
        virReportOOMError();
1552 1553 1554 1555
        goto cleanup;
    }

    ctxt->node = root;
1556
    def = virNodeDeviceDefParseXML(ctxt, create, virt_type);
1557

1558
 cleanup:
1559 1560 1561 1562
    xmlXPathFreeContext(ctxt);
    return def;
}

1563
static virNodeDeviceDefPtr
1564
virNodeDeviceDefParse(const char *str,
1565
                      const char *filename,
1566 1567
                      int create,
                      const char *virt_type)
1568
{
J
Jiri Denemark 已提交
1569
    xmlDocPtr xml;
1570 1571
    virNodeDeviceDefPtr def = NULL;

1572
    if ((xml = virXMLParse(filename, str, _("(node_device_definition)")))) {
1573 1574
        def = virNodeDeviceDefParseNode(xml, xmlDocGetRootElement(xml),
                                        create, virt_type);
J
Jiri Denemark 已提交
1575
        xmlFreeDoc(xml);
1576 1577
    }

1578 1579 1580
    return def;
}

1581
virNodeDeviceDefPtr
1582
virNodeDeviceDefParseString(const char *str,
1583 1584
                            int create,
                            const char *virt_type)
1585
{
1586
    return virNodeDeviceDefParse(str, NULL, create, virt_type);
1587 1588 1589
}

virNodeDeviceDefPtr
1590
virNodeDeviceDefParseFile(const char *filename,
1591 1592
                          int create,
                          const char *virt_type)
1593
{
1594
    return virNodeDeviceDefParse(NULL, filename, create, virt_type);
1595 1596
}

1597 1598 1599 1600
/*
 * Return fc_host dev's WWNN and WWPN
 */
int
1601
virNodeDeviceGetWWNs(virNodeDeviceDefPtr def,
1602 1603 1604 1605
                     char **wwnn,
                     char **wwpn)
{
    virNodeDevCapsDefPtr cap = NULL;
1606
    int ret = -1;
1607 1608 1609

    cap = def->caps;
    while (cap != NULL) {
1610
        if (cap->data.type == VIR_NODE_DEV_CAP_SCSI_HOST &&
1611
            cap->data.scsi_host.flags & VIR_NODE_DEV_CAP_FLAG_HBA_FC_HOST) {
1612 1613 1614 1615 1616 1617
            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;
            }
1618 1619 1620 1621 1622 1623 1624
            break;
        }

        cap = cap->next;
    }

    if (cap == NULL) {
1625 1626
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       "%s", _("Device is not a fibre channel HBA"));
1627
        goto cleanup;
1628 1629
    }

1630
    ret = 0;
1631
 cleanup:
1632 1633 1634 1635 1636 1637 1638
    return ret;
}

/*
 * Return the NPIV dev's parent device name
 */
int
E
Eric Blake 已提交
1639
virNodeDeviceGetParentHost(virNodeDeviceObjListPtr devs,
1640 1641 1642 1643 1644 1645 1646 1647 1648 1649
                           const char *dev_name,
                           const char *parent_name,
                           int *parent_host)
{
    virNodeDeviceObjPtr parent = NULL;
    virNodeDevCapsDefPtr cap = NULL;
    int ret = 0;

    parent = virNodeDeviceFindByName(devs, parent_name);
    if (parent == NULL) {
1650 1651 1652
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Could not find parent device for '%s'"),
                       dev_name);
1653 1654 1655 1656 1657 1658
        ret = -1;
        goto out;
    }

    cap = parent->def->caps;
    while (cap != NULL) {
1659
        if (cap->data.type == VIR_NODE_DEV_CAP_SCSI_HOST &&
1660 1661 1662 1663 1664 1665 1666 1667 1668 1669
            (cap->data.scsi_host.flags &
             VIR_NODE_DEV_CAP_FLAG_HBA_VPORT_OPS)) {
                *parent_host = cap->data.scsi_host.host;
                break;
        }

        cap = cap->next;
    }

    if (cap == NULL) {
1670 1671 1672 1673
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Parent device %s is not capable "
                         "of vport operations"),
                       parent->def->name);
1674 1675 1676 1677 1678
        ret = -1;
    }

    virNodeDeviceObjUnlock(parent);

1679
 out:
1680 1681
    return ret;
}
1682

1683 1684
void virNodeDevCapsDefFree(virNodeDevCapsDefPtr caps)
{
1685
    size_t i = 0;
1686
    virNodeDevCapDataPtr data = &caps->data;
1687

1688
    switch (caps->data.type) {
1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700
    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);
1701
        VIR_FREE(data->pci_dev.physical_function);
1702
        for (i = 0; i < data->pci_dev.num_virtual_functions; i++)
1703
            VIR_FREE(data->pci_dev.virtual_functions[i]);
1704
        VIR_FREE(data->pci_dev.virtual_functions);
1705
        for (i = 0; i < data->pci_dev.nIommuGroupDevices; i++)
1706
            VIR_FREE(data->pci_dev.iommuGroupDevices[i]);
1707
        VIR_FREE(data->pci_dev.iommuGroupDevices);
1708
        virPCIEDeviceInfoFree(data->pci_dev.pci_express);
1709 1710 1711 1712 1713 1714 1715 1716 1717
        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:
1718
        VIR_FREE(data->net.ifname);
1719
        VIR_FREE(data->net.address);
1720 1721
        virBitmapFree(data->net.features);
        data->net.features = NULL;
1722 1723
        break;
    case VIR_NODE_DEV_CAP_SCSI_HOST:
1724 1725
        VIR_FREE(data->scsi_host.wwnn);
        VIR_FREE(data->scsi_host.wwpn);
O
Osier Yang 已提交
1726
        VIR_FREE(data->scsi_host.fabric_wwn);
1727
        break;
D
David Allan 已提交
1728 1729 1730
    case VIR_NODE_DEV_CAP_SCSI_TARGET:
        VIR_FREE(data->scsi_target.name);
        break;
1731 1732 1733 1734
    case VIR_NODE_DEV_CAP_SCSI:
        VIR_FREE(data->scsi.type);
        break;
    case VIR_NODE_DEV_CAP_STORAGE:
1735
        VIR_FREE(data->storage.block);
1736 1737 1738 1739
        VIR_FREE(data->storage.bus);
        VIR_FREE(data->storage.drive_type);
        VIR_FREE(data->storage.model);
        VIR_FREE(data->storage.vendor);
1740
        VIR_FREE(data->storage.serial);
1741
        VIR_FREE(data->storage.media_label);
1742
        break;
1743 1744 1745
    case VIR_NODE_DEV_CAP_SCSI_GENERIC:
        VIR_FREE(data->sg.path);
        break;
1746 1747
    case VIR_NODE_DEV_CAP_FC_HOST:
    case VIR_NODE_DEV_CAP_VPORTS:
1748 1749 1750 1751 1752 1753 1754 1755
    case VIR_NODE_DEV_CAP_LAST:
        /* This case is here to shutup the compiler */
        break;
    }

    VIR_FREE(caps);
}

D
Daniel P. Berrange 已提交
1756

1757 1758
void virNodeDeviceObjLock(virNodeDeviceObjPtr obj)
{
1759
    virMutexLock(&obj->lock);
1760 1761 1762 1763
}

void virNodeDeviceObjUnlock(virNodeDeviceObjPtr obj)
{
1764
    virMutexUnlock(&obj->lock);
D
Daniel P. Berrange 已提交
1765
}
1766 1767 1768 1769 1770 1771 1772 1773

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

    for (cap = devobj->def->caps; cap; cap = cap->next) {
1774
        if (type == cap->data.type)
1775
            return true;
1776

1777
        if (cap->data.type == VIR_NODE_DEV_CAP_SCSI_HOST) {
1778
            if (type == VIR_NODE_DEV_CAP_FC_HOST &&
1779 1780 1781 1782
                (cap->data.scsi_host.flags &
                 VIR_NODE_DEV_CAP_FLAG_HBA_FC_HOST))
                return true;

1783
            if (type == VIR_NODE_DEV_CAP_VPORTS &&
1784 1785 1786 1787
                (cap->data.scsi_host.flags &
                 VIR_NODE_DEV_CAP_FLAG_HBA_VPORT_OPS))
                return true;
        }
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
    }

    return false;
}

#define MATCH(FLAG) (flags & (FLAG))
static bool
virNodeDeviceMatch(virNodeDeviceObjPtr devobj,
                   unsigned int flags)
{
    /* filter by cap type */
    if (MATCH(VIR_CONNECT_LIST_NODE_DEVICES_FILTERS_CAP)) {
        if (!((MATCH(VIR_CONNECT_LIST_NODE_DEVICES_CAP_SYSTEM) &&
               virNodeDeviceCapMatch(devobj, VIR_NODE_DEV_CAP_SYSTEM))        ||
              (MATCH(VIR_CONNECT_LIST_NODE_DEVICES_CAP_PCI_DEV) &&
               virNodeDeviceCapMatch(devobj, VIR_NODE_DEV_CAP_PCI_DEV))       ||
              (MATCH(VIR_CONNECT_LIST_NODE_DEVICES_CAP_USB_DEV) &&
               virNodeDeviceCapMatch(devobj, VIR_NODE_DEV_CAP_USB_DEV))       ||
              (MATCH(VIR_CONNECT_LIST_NODE_DEVICES_CAP_USB_INTERFACE) &&
               virNodeDeviceCapMatch(devobj, VIR_NODE_DEV_CAP_USB_INTERFACE)) ||
              (MATCH(VIR_CONNECT_LIST_NODE_DEVICES_CAP_NET) &&
               virNodeDeviceCapMatch(devobj, VIR_NODE_DEV_CAP_NET))           ||
              (MATCH(VIR_CONNECT_LIST_NODE_DEVICES_CAP_SCSI_HOST) &&
               virNodeDeviceCapMatch(devobj, VIR_NODE_DEV_CAP_SCSI_HOST))     ||
              (MATCH(VIR_CONNECT_LIST_NODE_DEVICES_CAP_SCSI_TARGET) &&
               virNodeDeviceCapMatch(devobj, VIR_NODE_DEV_CAP_SCSI_TARGET))   ||
              (MATCH(VIR_CONNECT_LIST_NODE_DEVICES_CAP_SCSI) &&
               virNodeDeviceCapMatch(devobj, VIR_NODE_DEV_CAP_SCSI))          ||
              (MATCH(VIR_CONNECT_LIST_NODE_DEVICES_CAP_STORAGE) &&
1817 1818 1819 1820
               virNodeDeviceCapMatch(devobj, VIR_NODE_DEV_CAP_STORAGE))       ||
              (MATCH(VIR_CONNECT_LIST_NODE_DEVICES_CAP_FC_HOST) &&
               virNodeDeviceCapMatch(devobj, VIR_NODE_DEV_CAP_FC_HOST))       ||
              (MATCH(VIR_CONNECT_LIST_NODE_DEVICES_CAP_VPORTS) &&
1821 1822 1823
               virNodeDeviceCapMatch(devobj, VIR_NODE_DEV_CAP_VPORTS))        ||
              (MATCH(VIR_CONNECT_LIST_NODE_DEVICES_CAP_SCSI_GENERIC) &&
               virNodeDeviceCapMatch(devobj, VIR_NODE_DEV_CAP_SCSI_GENERIC))))
1824 1825 1826 1827 1828 1829 1830 1831
            return false;
    }

    return true;
}
#undef MATCH

int
1832 1833 1834 1835 1836
virNodeDeviceObjListExport(virConnectPtr conn,
                           virNodeDeviceObjList devobjs,
                           virNodeDevicePtr **devices,
                           virNodeDeviceObjListFilter filter,
                           unsigned int flags)
1837 1838 1839 1840 1841
{
    virNodeDevicePtr *tmp_devices = NULL;
    virNodeDevicePtr device = NULL;
    int ndevices = 0;
    int ret = -1;
1842
    size_t i;
1843

1844 1845
    if (devices && VIR_ALLOC_N(tmp_devices, devobjs.count + 1) < 0)
        goto cleanup;
1846 1847 1848 1849

    for (i = 0; i < devobjs.count; i++) {
        virNodeDeviceObjPtr devobj = devobjs.objs[i];
        virNodeDeviceObjLock(devobj);
1850 1851
        if ((!filter || filter(conn, devobj->def)) &&
            virNodeDeviceMatch(devobj, flags)) {
1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873
            if (devices) {
                if (!(device = virGetNodeDevice(conn,
                                                devobj->def->name))) {
                    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;

1874
 cleanup:
1875
    if (tmp_devices) {
1876 1877
        for (i = 0; i < ndevices; i++)
            virObjectUnref(tmp_devices[i]);
1878 1879 1880 1881 1882
    }

    VIR_FREE(tmp_devices);
    return ret;
}