virnetworkobj.c 39.2 KB
Newer Older
J
John Ferlan 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
/*
 * virnetworkobj.c: handle network objects
 *                  (derived from network_conf.c)
 *
 * 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
 * License along with this library.  If not, see
 * <http://www.gnu.org/licenses/>.
 */

#include <config.h>
#include <dirent.h>

#include "datatypes.h"
#include "virnetworkobj.h"

#include "viralloc.h"
#include "virerror.h"
#include "virfile.h"
#include "virhash.h"
#include "virlog.h"
#include "virstring.h"

#define VIR_FROM_THIS VIR_FROM_NETWORK

VIR_LOG_INIT("conf.virnetworkobj");

/* currently, /sbin/tc implementation allows up to 16 bits for minor class size */
#define CLASS_ID_BITMAP_SIZE (1<<16)

struct _virNetworkObjList {
    virObjectLockable parent;

    virHashTablePtr objs;
};

static virClassPtr virNetworkObjClass;
static virClassPtr virNetworkObjListClass;
static void virNetworkObjDispose(void *obj);
static void virNetworkObjListDispose(void *obj);

51 52
static int
virNetworkObjOnceInit(void)
J
John Ferlan 已提交
53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
{
    if (!(virNetworkObjClass = virClassNew(virClassForObjectLockable(),
                                           "virNetworkObj",
                                           sizeof(virNetworkObj),
                                           virNetworkObjDispose)))
        return -1;

    if (!(virNetworkObjListClass = virClassNew(virClassForObjectLockable(),
                                               "virNetworkObjList",
                                               sizeof(virNetworkObjList),
                                               virNetworkObjListDispose)))
        return -1;
    return 0;
}


VIR_ONCE_GLOBAL_INIT(virNetworkObj)

virNetworkObjPtr
virNetworkObjNew(void)
{
74
    virNetworkObjPtr obj;
J
John Ferlan 已提交
75 76 77 78

    if (virNetworkObjInitialize() < 0)
        return NULL;

79
    if (!(obj = virObjectLockableNew(virNetworkObjClass)))
J
John Ferlan 已提交
80 81
        return NULL;

82
    if (!(obj->classIdMap = virBitmapNew(CLASS_ID_BITMAP_SIZE)))
J
John Ferlan 已提交
83 84 85
        goto error;

    /* The first three class IDs are already taken */
86 87 88
    ignore_value(virBitmapSetBit(obj->classIdMap, 0));
    ignore_value(virBitmapSetBit(obj->classIdMap, 1));
    ignore_value(virBitmapSetBit(obj->classIdMap, 2));
J
John Ferlan 已提交
89

90 91
    virObjectLock(obj);

92
    return obj;
J
John Ferlan 已提交
93 94

 error:
95
    virObjectUnref(obj);
J
John Ferlan 已提交
96 97 98
    return NULL;
}

99

J
John Ferlan 已提交
100
void
101
virNetworkObjEndAPI(virNetworkObjPtr *obj)
J
John Ferlan 已提交
102
{
103
    if (!*obj)
J
John Ferlan 已提交
104 105
        return;

106 107 108
    virObjectUnlock(*obj);
    virObjectUnref(*obj);
    *obj = NULL;
J
John Ferlan 已提交
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
virNetworkDefPtr
virNetworkObjGetDef(virNetworkObjPtr obj)
{
    return obj->def;
}


void
virNetworkObjSetDef(virNetworkObjPtr obj,
                    virNetworkDefPtr def)
{
    obj->def = def;
}


virNetworkDefPtr
virNetworkObjGetNewDef(virNetworkObjPtr obj)
{
    return obj->newDef;
}


134 135 136 137 138 139 140 141 142 143 144 145 146 147 148
bool
virNetworkObjIsActive(virNetworkObjPtr obj)
{
    return obj->active;
}


void
virNetworkObjSetActive(virNetworkObjPtr obj,
                       bool active)
{
    obj->active = active;
}


149 150 151 152 153 154 155
bool
virNetworkObjIsPersistent(virNetworkObjPtr obj)
{
    return obj->persistent;
}


156 157 158 159 160 161 162 163 164 165 166 167 168 169 170
bool
virNetworkObjIsAutostart(virNetworkObjPtr obj)
{
    return obj->autostart;
}


void
virNetworkObjSetAutostart(virNetworkObjPtr obj,
                          bool autostart)
{
    obj->autostart = autostart;
}


171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200
pid_t
virNetworkObjGetDnsmasqPid(virNetworkObjPtr obj)
{
    return obj->dnsmasqPid;
}


void
virNetworkObjSetDnsmasqPid(virNetworkObjPtr obj,
                           pid_t dnsmasqPid)
{
    obj->dnsmasqPid = dnsmasqPid;
}


pid_t
virNetworkObjGetRadvdPid(virNetworkObjPtr obj)
{
    return obj->radvdPid;
}


void
virNetworkObjSetRadvdPid(virNetworkObjPtr obj,
                         pid_t radvdPid)
{
    obj->radvdPid = radvdPid;
}


201 202 203 204 205 206 207
virBitmapPtr
virNetworkObjGetClassIdMap(virNetworkObjPtr obj)
{
    return obj->classIdMap;
}


208 209 210 211 212 213 214
virMacMapPtr
virNetworkObjGetMacMap(virNetworkObjPtr obj)
{
    return obj->macmap;
}


215 216 217 218 219 220 221 222 223 224 225 226 227 228 229
unsigned long long
virNetworkObjGetFloorSum(virNetworkObjPtr obj)
{
    return obj->floor_sum;
}


void
virNetworkObjSetFloorSum(virNetworkObjPtr obj,
                         unsigned long long floor_sum)
{
    obj->floor_sum = floor_sum;
}


230 231 232 233 234 235 236 237 238 239 240
void
virNetworkObjSetMacMap(virNetworkObjPtr obj,
                       virMacMapPtr macmap)
{
    obj->macmap = macmap;
}


void
virNetworkObjUnrefMacMap(virNetworkObjPtr obj)
{
241 242
    virObjectUnref(obj->macmap);
    obj->macmap = NULL;
243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307
}


int
virNetworkObjMacMgrAdd(virNetworkObjPtr obj,
                       const char *dnsmasqStateDir,
                       const char *domain,
                       const virMacAddr *mac)
{
    char macStr[VIR_MAC_STRING_BUFLEN];
    char *file = NULL;
    int ret = -1;

    if (!obj->macmap)
        return 0;

    virMacAddrFormat(mac, macStr);

    if (!(file = virMacMapFileName(dnsmasqStateDir, obj->def->bridge)))
        goto cleanup;

    if (virMacMapAdd(obj->macmap, domain, macStr) < 0)
        goto cleanup;

    if (virMacMapWriteFile(obj->macmap, file) < 0)
        goto cleanup;

    ret = 0;
 cleanup:
    VIR_FREE(file);
    return ret;
}


int
virNetworkObjMacMgrDel(virNetworkObjPtr obj,
                       const char *dnsmasqStateDir,
                       const char *domain,
                       const virMacAddr *mac)
{
    char macStr[VIR_MAC_STRING_BUFLEN];
    char *file = NULL;
    int ret = -1;

    if (!obj->macmap)
        return 0;

    virMacAddrFormat(mac, macStr);

    if (!(file = virMacMapFileName(dnsmasqStateDir, obj->def->bridge)))
        goto cleanup;

    if (virMacMapRemove(obj->macmap, domain, macStr) < 0)
        goto cleanup;

    if (virMacMapWriteFile(obj->macmap, file) < 0)
        goto cleanup;

    ret = 0;
 cleanup:
    VIR_FREE(file);
    return ret;
}


308 309
virNetworkObjListPtr
virNetworkObjListNew(void)
J
John Ferlan 已提交
310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326
{
    virNetworkObjListPtr nets;

    if (virNetworkObjInitialize() < 0)
        return NULL;

    if (!(nets = virObjectLockableNew(virNetworkObjListClass)))
        return NULL;

    if (!(nets->objs = virHashCreate(50, virObjectFreeHashData))) {
        virObjectUnref(nets);
        return NULL;
    }

    return nets;
}

327

328
static virNetworkObjPtr
J
John Ferlan 已提交
329 330 331
virNetworkObjFindByUUIDLocked(virNetworkObjListPtr nets,
                              const unsigned char *uuid)
{
332
    virNetworkObjPtr obj = NULL;
J
John Ferlan 已提交
333 334 335 336
    char uuidstr[VIR_UUID_STRING_BUFLEN];

    virUUIDFormat(uuid, uuidstr);

337 338 339 340
    obj = virHashLookup(nets->objs, uuidstr);
    if (obj)
        virObjectRef(obj);
    return obj;
J
John Ferlan 已提交
341 342
}

343

J
John Ferlan 已提交
344 345 346 347 348 349 350 351 352 353 354 355 356 357
/**
 * virNetworkObjFindByUUID:
 * @nets: list of network objects
 * @uuid: network uuid to find
 *
 * This functions locks @nets and find network object which
 * corresponds to @uuid.
 *
 * Returns: locked and ref'd network object.
 */
virNetworkObjPtr
virNetworkObjFindByUUID(virNetworkObjListPtr nets,
                        const unsigned char *uuid)
{
358
    virNetworkObjPtr obj;
J
John Ferlan 已提交
359 360

    virObjectLock(nets);
361
    obj = virNetworkObjFindByUUIDLocked(nets, uuid);
J
John Ferlan 已提交
362
    virObjectUnlock(nets);
363 364 365
    if (obj)
        virObjectLock(obj);
    return obj;
J
John Ferlan 已提交
366 367
}

368

J
John Ferlan 已提交
369 370 371 372 373
static int
virNetworkObjSearchName(const void *payload,
                        const void *name ATTRIBUTE_UNUSED,
                        const void *data)
{
374
    virNetworkObjPtr obj = (virNetworkObjPtr) payload;
J
John Ferlan 已提交
375 376
    int want = 0;

377 378
    virObjectLock(obj);
    if (STREQ(obj->def->name, (const char *)data))
J
John Ferlan 已提交
379
        want = 1;
380
    virObjectUnlock(obj);
J
John Ferlan 已提交
381 382 383
    return want;
}

384

385
static virNetworkObjPtr
J
John Ferlan 已提交
386 387 388
virNetworkObjFindByNameLocked(virNetworkObjListPtr nets,
                              const char *name)
{
389
    virNetworkObjPtr obj = NULL;
J
John Ferlan 已提交
390

391 392 393 394
    obj = virHashSearch(nets->objs, virNetworkObjSearchName, name, NULL);
    if (obj)
        virObjectRef(obj);
    return obj;
J
John Ferlan 已提交
395 396
}

397

J
John Ferlan 已提交
398 399 400 401 402 403 404 405 406 407 408 409 410 411
/**
 * virNetworkObjFindByName:
 * @nets: list of network objects
 * @name: network name to find
 *
 * This functions locks @nets and find network object which
 * corresponds to @name.
 *
 * Returns: locked and ref'd network object.
 */
virNetworkObjPtr
virNetworkObjFindByName(virNetworkObjListPtr nets,
                        const char *name)
{
412
    virNetworkObjPtr obj;
J
John Ferlan 已提交
413 414

    virObjectLock(nets);
415
    obj = virNetworkObjFindByNameLocked(nets, name);
J
John Ferlan 已提交
416
    virObjectUnlock(nets);
417 418 419
    if (obj)
        virObjectLock(obj);
    return obj;
J
John Ferlan 已提交
420 421
}

422

J
John Ferlan 已提交
423 424 425 426 427 428 429 430 431 432 433 434 435 436 437
bool
virNetworkObjTaint(virNetworkObjPtr obj,
                   virNetworkTaintFlags taint)
{
    unsigned int flag = (1 << taint);

    if (obj->taint & flag)
        return false;

    obj->taint |= flag;
    return true;
}


static void
438
virNetworkObjDispose(void *opaque)
J
John Ferlan 已提交
439
{
440
    virNetworkObjPtr obj = opaque;
J
John Ferlan 已提交
441

442 443 444 445
    virNetworkDefFree(obj->def);
    virNetworkDefFree(obj->newDef);
    virBitmapFree(obj->classIdMap);
    virObjectUnref(obj->macmap);
J
John Ferlan 已提交
446 447
}

448

J
John Ferlan 已提交
449
static void
450
virNetworkObjListDispose(void *opaque)
J
John Ferlan 已提交
451
{
452
    virNetworkObjListPtr nets = opaque;
J
John Ferlan 已提交
453 454 455 456

    virHashFree(nets->objs);
}

457

J
John Ferlan 已提交
458
/*
459
 * virNetworkObjUpdateAssignDef:
J
John Ferlan 已提交
460 461 462 463 464 465 466 467 468 469 470 471 472 473 474
 * @network: the network object to update
 * @def: the new NetworkDef (will be consumed by this function)
 * @live: is this new def the "live" version, or the "persistent" version
 *
 * Replace the appropriate copy of the given network's def or newDef
 * with def. Use "live" and current state of the network to determine
 * which to replace and what to do with the old defs. When a non-live
 * def is set, indicate that the network is now persistent.
 *
 * NB: a persistent network can be made transient by calling with:
 * virNetworkObjAssignDef(network, NULL, false) (i.e. set the
 * persistent def to NULL)
 *
 */
void
475
virNetworkObjUpdateAssignDef(virNetworkObjPtr obj,
476 477
                             virNetworkDefPtr def,
                             bool live)
J
John Ferlan 已提交
478 479 480 481 482 483
{
    if (live) {
        /* before setting new live def, save (into newDef) any
         * existing persistent (!live) def to be restored when the
         * network is destroyed, unless there is one already saved.
         */
484 485
        if (obj->persistent && !obj->newDef)
            obj->newDef = obj->def;
J
John Ferlan 已提交
486
        else
487 488
            virNetworkDefFree(obj->def);
        obj->def = def;
J
John Ferlan 已提交
489
    } else { /* !live */
490 491
        virNetworkDefFree(obj->newDef);
        if (virNetworkObjIsActive(obj)) {
J
John Ferlan 已提交
492 493 494
            /* save new configuration to be restored on network
             * shutdown, leaving current live def alone
             */
495
            obj->newDef = def;
J
John Ferlan 已提交
496
        } else { /* !live and !active */
497
            if (obj->def && !obj->persistent) {
J
John Ferlan 已提交
498 499 500 501 502 503
                /* network isn't (yet) marked active or persistent,
                 * but already has a "live" def set. This means we are
                 * currently setting the persistent def as a part of
                 * the process of starting the network, so we need to
                 * preserve the "not yet live" def in network->def.
                 */
504
                obj->newDef = def;
J
John Ferlan 已提交
505 506 507 508 509
            } else {
                /* either there is no live def set, or this network
                 * was already set as persistent, so the proper thing
                 * is to overwrite network->def.
                 */
510 511 512
                obj->newDef = NULL;
                virNetworkDefFree(obj->def);
                obj->def = def;
J
John Ferlan 已提交
513 514
            }
        }
515
        obj->persistent = !!def;
J
John Ferlan 已提交
516 517 518
    }
}

519

J
John Ferlan 已提交
520 521 522 523 524 525 526 527 528 529 530
/*
 * If flags & VIR_NETWORK_OBJ_LIST_ADD_CHECK_LIVE then this will
 * refuse updating an existing def if the current def is live
 *
 * If flags & VIR_NETWORK_OBJ_LIST_ADD_LIVE then the @def being
 * added is assumed to represent a live config, not a future
 * inactive config
 *
 * If flags is zero, network is considered as inactive and persistent.
 */
static virNetworkObjPtr
531 532 533
virNetworkObjAssignDefLocked(virNetworkObjListPtr nets,
                             virNetworkDefPtr def,
                             unsigned int flags)
J
John Ferlan 已提交
534
{
535
    virNetworkObjPtr obj;
J
John Ferlan 已提交
536 537 538 539
    virNetworkObjPtr ret = NULL;
    char uuidstr[VIR_UUID_STRING_BUFLEN];

    /* See if a network with matching UUID already exists */
540 541
    if ((obj = virNetworkObjFindByUUIDLocked(nets, def->uuid))) {
        virObjectLock(obj);
J
John Ferlan 已提交
542
        /* UUID matches, but if names don't match, refuse it */
543 544
        if (STRNEQ(obj->def->name, def->name)) {
            virUUIDFormat(obj->def->uuid, uuidstr);
J
John Ferlan 已提交
545 546
            virReportError(VIR_ERR_OPERATION_FAILED,
                           _("network '%s' is already defined with uuid %s"),
547
                           obj->def->name, uuidstr);
J
John Ferlan 已提交
548 549 550 551 552
            goto cleanup;
        }

        if (flags & VIR_NETWORK_OBJ_LIST_ADD_CHECK_LIVE) {
            /* UUID & name match, but if network is already active, refuse it */
553
            if (virNetworkObjIsActive(obj)) {
J
John Ferlan 已提交
554 555
                virReportError(VIR_ERR_OPERATION_INVALID,
                               _("network is already active as '%s'"),
556
                               obj->def->name);
J
John Ferlan 已提交
557 558 559 560
                goto cleanup;
            }
        }

561
        virNetworkObjUpdateAssignDef(obj, def,
562
                                     !!(flags & VIR_NETWORK_OBJ_LIST_ADD_LIVE));
J
John Ferlan 已提交
563 564
    } else {
        /* UUID does not match, but if a name matches, refuse it */
565 566 567
        if ((obj = virNetworkObjFindByNameLocked(nets, def->name))) {
            virObjectLock(obj);
            virUUIDFormat(obj->def->uuid, uuidstr);
J
John Ferlan 已提交
568 569 570 571 572 573
            virReportError(VIR_ERR_OPERATION_FAILED,
                           _("network '%s' already exists with uuid %s"),
                           def->name, uuidstr);
            goto cleanup;
        }

574
        if (!(obj = virNetworkObjNew()))
J
John Ferlan 已提交
575 576 577
              goto cleanup;

        virUUIDFormat(def->uuid, uuidstr);
578
        if (virHashAddEntry(nets->objs, uuidstr, obj) < 0)
J
John Ferlan 已提交
579
            goto cleanup;
580
        virObjectRef(obj);
J
John Ferlan 已提交
581

582 583
        obj->def = def;
        obj->persistent = !(flags & VIR_NETWORK_OBJ_LIST_ADD_LIVE);
J
John Ferlan 已提交
584 585
    }

586 587
    ret = obj;
    obj = NULL;
J
John Ferlan 已提交
588 589

 cleanup:
590
    virNetworkObjEndAPI(&obj);
J
John Ferlan 已提交
591 592 593
    return ret;
}

594

J
John Ferlan 已提交
595
/*
596
 * virNetworkObjAssignDef:
J
John Ferlan 已提交
597 598 599 600 601 602 603 604 605
 * @nets: list of all networks
 * @def: the new NetworkDef (will be consumed by this function iff successful)
 * @flags: bitwise-OR of VIR_NETWORK_OBJ_LIST_ADD_* flags
 *
 * Either replace the appropriate copy of the NetworkDef with name
 * matching def->name or, if not found, create a new NetworkObj with
 * def. For an existing network, use "live" and current state of the
 * network to determine which to replace.
 *
606
 * Look at virNetworkObjAssignDefLocked() for @flags description.
J
John Ferlan 已提交
607 608 609 610
 *
 * Returns NULL on error, virNetworkObjPtr on success.
 */
virNetworkObjPtr
611 612 613
virNetworkObjAssignDef(virNetworkObjListPtr nets,
                       virNetworkDefPtr def,
                       unsigned int flags)
J
John Ferlan 已提交
614
{
615
    virNetworkObjPtr obj;
J
John Ferlan 已提交
616 617

    virObjectLock(nets);
618
    obj = virNetworkObjAssignDefLocked(nets, def, flags);
J
John Ferlan 已提交
619
    virObjectUnlock(nets);
620
    return obj;
J
John Ferlan 已提交
621 622
}

623

J
John Ferlan 已提交
624 625 626 627 628 629 630 631 632 633 634 635 636 637 638
/*
 * virNetworkObjSetDefTransient:
 * @network: network object pointer
 * @live: if true, run this operation even for an inactive network.
 *   this allows freely updated network->def with runtime defaults
 *   before starting the network, which will be discarded on network
 *   shutdown. Any cleanup paths need to be sure to handle newDef if
 *   the network is never started.
 *
 * Mark the active network config as transient. Ensures live-only update
 * operations do not persist past network destroy.
 *
 * Returns 0 on success, -1 on failure
 */
int
639
virNetworkObjSetDefTransient(virNetworkObjPtr obj,
640
                             bool live)
J
John Ferlan 已提交
641
{
642
    if (!virNetworkObjIsActive(obj) && !live)
J
John Ferlan 已提交
643 644
        return 0;

645
    if (!obj->persistent || obj->newDef)
J
John Ferlan 已提交
646 647
        return 0;

648 649
    obj->newDef = virNetworkDefCopy(obj->def, VIR_NETWORK_XML_INACTIVE);
    return obj->newDef ? 0 : -1;
J
John Ferlan 已提交
650 651
}

652

J
John Ferlan 已提交
653 654 655 656 657
/* virNetworkObjUnsetDefTransient:
 *
 * This *undoes* what virNetworkObjSetDefTransient did.
 */
void
658
virNetworkObjUnsetDefTransient(virNetworkObjPtr obj)
J
John Ferlan 已提交
659
{
660 661 662 663
    if (obj->newDef) {
        virNetworkDefFree(obj->def);
        obj->def = obj->newDef;
        obj->newDef = NULL;
J
John Ferlan 已提交
664 665 666
    }
}

667

J
John Ferlan 已提交
668 669 670 671 672 673 674 675 676 677
/*
 * virNetworkObjGetPersistentDef:
 * @network: network object pointer
 *
 * Return the persistent network configuration. If network is transient,
 * return the running config.
 *
 * Returns NULL on error, virNetworkDefPtr on success.
 */
virNetworkDefPtr
678
virNetworkObjGetPersistentDef(virNetworkObjPtr obj)
J
John Ferlan 已提交
679
{
680 681
    if (obj->newDef)
        return obj->newDef;
J
John Ferlan 已提交
682
    else
683
        return obj->def;
J
John Ferlan 已提交
684 685
}

686

J
John Ferlan 已提交
687 688 689 690 691 692 693 694 695 696 697 698
/*
 * virNetworkObjReplacePersistentDef:
 * @network: network object pointer
 * @def: new virNetworkDef to replace current persistent config
 *
 * Replace the "persistent" network configuration with the given new
 * virNetworkDef. This pays attention to whether or not the network
 * is active.
 *
 * Returns -1 on error, 0 on success
 */
int
699
virNetworkObjReplacePersistentDef(virNetworkObjPtr obj,
J
John Ferlan 已提交
700 701
                                  virNetworkDefPtr def)
{
702 703 704
    if (virNetworkObjIsActive(obj)) {
        virNetworkDefFree(obj->newDef);
        obj->newDef = def;
J
John Ferlan 已提交
705
    } else {
706 707
        virNetworkDefFree(obj->def);
        obj->def = def;
J
John Ferlan 已提交
708 709 710 711
    }
    return 0;
}

712

J
John Ferlan 已提交
713
/*
714
 * virNetworkObjConfigChangeSetup:
J
John Ferlan 已提交
715 716 717 718 719 720 721 722 723
 *
 * 1) checks whether network state is consistent with the requested
 *    type of modification.
 *
 * 3) make sure there are separate "def" and "newDef" copies of
 *    networkDef if appropriate.
 *
 * Returns 0 on success, -1 on error.
 */
724
static int
725
virNetworkObjConfigChangeSetup(virNetworkObjPtr obj,
726
                               unsigned int flags)
J
John Ferlan 已提交
727 728 729 730
{
    bool isActive;
    int ret = -1;

731
    isActive = virNetworkObjIsActive(obj);
J
John Ferlan 已提交
732 733 734 735 736 737 738 739

    if (!isActive && (flags & VIR_NETWORK_UPDATE_AFFECT_LIVE)) {
        virReportError(VIR_ERR_OPERATION_INVALID, "%s",
                       _("network is not running"));
        goto cleanup;
    }

    if (flags & VIR_NETWORK_UPDATE_AFFECT_CONFIG) {
740
        if (!obj->persistent) {
J
John Ferlan 已提交
741 742 743 744 745 746 747 748
            virReportError(VIR_ERR_OPERATION_INVALID, "%s",
                           _("cannot change persistent config of a "
                             "transient network"));
            goto cleanup;
        }
        /* this should already have been done by the driver, but do it
         * anyway just in case.
         */
749
        if (isActive && (virNetworkObjSetDefTransient(obj, false) < 0))
J
John Ferlan 已提交
750 751 752 753 754 755 756 757
            goto cleanup;
    }

    ret = 0;
 cleanup:
    return ret;
}

758 759

void
760
virNetworkObjRemoveInactive(virNetworkObjListPtr nets,
761
                            virNetworkObjPtr obj)
J
John Ferlan 已提交
762 763 764
{
    char uuidstr[VIR_UUID_STRING_BUFLEN];

765 766 767
    virUUIDFormat(obj->def->uuid, uuidstr);
    virObjectRef(obj);
    virObjectUnlock(obj);
J
John Ferlan 已提交
768
    virObjectLock(nets);
769
    virObjectLock(obj);
J
John Ferlan 已提交
770 771
    virHashRemoveEntry(nets->objs, uuidstr);
    virObjectUnlock(nets);
772
    virObjectUnref(obj);
J
John Ferlan 已提交
773 774
}

775

J
John Ferlan 已提交
776
static char *
777
virNetworkObjFormat(virNetworkObjPtr obj,
J
John Ferlan 已提交
778 779 780
                    unsigned int flags)
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;
781
    char *classIdStr = virBitmapFormat(obj->classIdMap);
J
John Ferlan 已提交
782 783
    size_t i;

784
    if (!classIdStr)
J
John Ferlan 已提交
785 786 787 788
        goto error;

    virBufferAddLit(&buf, "<networkstatus>\n");
    virBufferAdjustIndent(&buf, 2);
789
    virBufferAsprintf(&buf, "<class_id bitmap='%s'/>\n", classIdStr);
790
    virBufferAsprintf(&buf, "<floor sum='%llu'/>\n", obj->floor_sum);
791
    VIR_FREE(classIdStr);
J
John Ferlan 已提交
792 793

    for (i = 0; i < VIR_NETWORK_TAINT_LAST; i++) {
794
        if (obj->taint & (1 << i))
J
John Ferlan 已提交
795 796 797 798
            virBufferAsprintf(&buf, "<taint flag='%s'/>\n",
                              virNetworkTaintTypeToString(i));
    }

799
    if (virNetworkDefFormatBuf(&buf, obj->def, flags) < 0)
J
John Ferlan 已提交
800 801 802 803 804 805 806 807 808 809 810 811 812 813 814
        goto error;

    virBufferAdjustIndent(&buf, -2);
    virBufferAddLit(&buf, "</networkstatus>");

    if (virBufferCheckError(&buf) < 0)
        goto error;

    return virBufferContentAndReset(&buf);

 error:
    virBufferFreeAndReset(&buf);
    return NULL;
}

815 816

int
817
virNetworkObjSaveStatus(const char *statusDir,
818
                        virNetworkObjPtr obj)
J
John Ferlan 已提交
819 820 821 822 823
{
    int ret = -1;
    int flags = 0;
    char *xml;

824
    if (!(xml = virNetworkObjFormat(obj, flags)))
J
John Ferlan 已提交
825 826
        goto cleanup;

827
    if (virNetworkSaveXML(statusDir, obj->def, xml))
J
John Ferlan 已提交
828 829 830 831 832 833 834 835
        goto cleanup;

    ret = 0;
 cleanup:
    VIR_FREE(xml);
    return ret;
}

836

837
static virNetworkObjPtr
J
John Ferlan 已提交
838 839 840 841 842 843
virNetworkLoadState(virNetworkObjListPtr nets,
                    const char *stateDir,
                    const char *name)
{
    char *configFile = NULL;
    virNetworkDefPtr def = NULL;
844
    virNetworkObjPtr obj = NULL;
J
John Ferlan 已提交
845 846 847
    xmlDocPtr xml = NULL;
    xmlNodePtr node = NULL, *nodes = NULL;
    xmlXPathContextPtr ctxt = NULL;
848
    virBitmapPtr classIdMap = NULL;
J
John Ferlan 已提交
849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881
    unsigned long long floor_sum_val = 0;
    unsigned int taint = 0;
    int n;
    size_t i;


    if ((configFile = virNetworkConfigFile(stateDir, name)) == NULL)
        goto error;

    if (!(xml = virXMLParseCtxt(configFile, NULL, _("(network status)"), &ctxt)))
        goto error;

    if (!(node = virXPathNode("//network", ctxt))) {
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("Could not find any 'network' element in status file"));
        goto error;
    }

    /* parse the definition first */
    ctxt->node = node;
    if (!(def = virNetworkDefParseXML(ctxt)))
        goto error;

    if (STRNEQ(name, def->name)) {
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Network config filename '%s'"
                         " does not match network name '%s'"),
                       configFile, def->name);
        goto error;
    }

    /* now parse possible status data */
    node = xmlDocGetRootElement(xml);
882
    if (virXMLNodeNameEqual(node, "networkstatus")) {
J
John Ferlan 已提交
883 884
        /* Newer network status file. Contains useful
         * info which are not to be found in bare config XML */
885
        char *classIdStr = NULL;
J
John Ferlan 已提交
886 887 888
        char *floor_sum = NULL;

        ctxt->node = node;
889 890 891
        if ((classIdStr = virXPathString("string(./class_id[1]/@bitmap)",
                                         ctxt))) {
            if (virBitmapParse(classIdStr, &classIdMap,
J
John Ferlan 已提交
892
                               CLASS_ID_BITMAP_SIZE) < 0) {
893
                VIR_FREE(classIdStr);
J
John Ferlan 已提交
894 895 896
                goto error;
            }
        }
897
        VIR_FREE(classIdStr);
J
John Ferlan 已提交
898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932

        floor_sum = virXPathString("string(./floor[1]/@sum)", ctxt);
        if (floor_sum &&
            virStrToLong_ull(floor_sum, NULL, 10, &floor_sum_val) < 0) {
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("Malformed 'floor_sum' attribute: %s"),
                           floor_sum);
            VIR_FREE(floor_sum);
            goto error;
        }
        VIR_FREE(floor_sum);

        if ((n = virXPathNodeSet("./taint", ctxt, &nodes)) < 0)
            goto error;

        for (i = 0; i < n; i++) {
            char *str = virXMLPropString(nodes[i], "flag");
            if (str) {
                int flag = virNetworkTaintTypeFromString(str);
                if (flag < 0) {
                    virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                                   _("Unknown taint flag %s"), str);
                    VIR_FREE(str);
                    goto error;
                }
                VIR_FREE(str);
                /* Compute taint mask here. The network object does not
                 * exist yet, so we can't use virNetworkObjtTaint. */
                taint |= (1 << flag);
            }
        }
        VIR_FREE(nodes);
    }

    /* create the object */
933
    if (!(obj = virNetworkObjAssignDef(nets, def,
934
                                       VIR_NETWORK_OBJ_LIST_ADD_LIVE)))
J
John Ferlan 已提交
935 936 937 938
        goto error;
    /* do not put any "goto error" below this comment */

    /* assign status data stored in the network object */
939
    if (classIdMap) {
940 941
        virBitmapFree(obj->classIdMap);
        obj->classIdMap = classIdMap;
J
John Ferlan 已提交
942 943 944
    }

    if (floor_sum_val > 0)
945
        obj->floor_sum = floor_sum_val;
J
John Ferlan 已提交
946

947 948
    obj->taint = taint;
    obj->active = true; /* network with a state file is by definition active */
J
John Ferlan 已提交
949 950 951 952 953

 cleanup:
    VIR_FREE(configFile);
    xmlFreeDoc(xml);
    xmlXPathFreeContext(ctxt);
954
    return obj;
J
John Ferlan 已提交
955 956 957

 error:
    VIR_FREE(nodes);
958
    virBitmapFree(classIdMap);
J
John Ferlan 已提交
959 960 961 962
    virNetworkDefFree(def);
    goto cleanup;
}

963

964
static virNetworkObjPtr
965 966 967 968
virNetworkLoadConfig(virNetworkObjListPtr nets,
                     const char *configDir,
                     const char *autostartDir,
                     const char *name)
J
John Ferlan 已提交
969 970 971
{
    char *configFile = NULL, *autostartLink = NULL;
    virNetworkDefPtr def = NULL;
972
    virNetworkObjPtr obj;
J
John Ferlan 已提交
973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008
    int autostart;

    if ((configFile = virNetworkConfigFile(configDir, name)) == NULL)
        goto error;
    if ((autostartLink = virNetworkConfigFile(autostartDir, name)) == NULL)
        goto error;

    if ((autostart = virFileLinkPointsTo(autostartLink, configFile)) < 0)
        goto error;

    if (!(def = virNetworkDefParseFile(configFile)))
        goto error;

    if (STRNEQ(name, def->name)) {
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Network config filename '%s'"
                         " does not match network name '%s'"),
                       configFile, def->name);
        goto error;
    }

    if (def->forward.type == VIR_NETWORK_FORWARD_NONE ||
        def->forward.type == VIR_NETWORK_FORWARD_NAT ||
        def->forward.type == VIR_NETWORK_FORWARD_ROUTE ||
        def->forward.type == VIR_NETWORK_FORWARD_OPEN) {

        if (!def->mac_specified) {
            virNetworkSetBridgeMacAddr(def);
            virNetworkSaveConfig(configDir, def);
        }
    } else {
        /* Throw away MAC address for other forward types,
         * which could have been generated by older libvirt RPMs */
        def->mac_specified = false;
    }

1009
    if (!(obj = virNetworkObjAssignDef(nets, def, 0)))
J
John Ferlan 已提交
1010 1011
        goto error;

1012
    obj->autostart = (autostart == 1);
J
John Ferlan 已提交
1013 1014 1015 1016

    VIR_FREE(configFile);
    VIR_FREE(autostartLink);

1017
    return obj;
J
John Ferlan 已提交
1018 1019 1020 1021 1022 1023 1024 1025 1026 1027

 error:
    VIR_FREE(configFile);
    VIR_FREE(autostartLink);
    virNetworkDefFree(def);
    return NULL;
}


int
1028 1029
virNetworkObjLoadAllState(virNetworkObjListPtr nets,
                          const char *stateDir)
J
John Ferlan 已提交
1030 1031 1032 1033 1034 1035 1036 1037 1038 1039
{
    DIR *dir;
    struct dirent *entry;
    int ret = -1;
    int rc;

    if ((rc = virDirOpenIfExists(&dir, stateDir)) <= 0)
        return rc;

    while ((ret = virDirRead(dir, &entry, stateDir)) > 0) {
1040
        virNetworkObjPtr obj;
J
John Ferlan 已提交
1041 1042 1043 1044

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

1045 1046
        obj = virNetworkLoadState(nets, stateDir, entry->d_name);
        virNetworkObjEndAPI(&obj);
J
John Ferlan 已提交
1047 1048 1049 1050 1051 1052 1053
    }

    VIR_DIR_CLOSE(dir);
    return ret;
}


1054
int
1055 1056 1057
virNetworkObjLoadAllConfigs(virNetworkObjListPtr nets,
                            const char *configDir,
                            const char *autostartDir)
J
John Ferlan 已提交
1058 1059 1060 1061 1062 1063 1064 1065 1066 1067
{
    DIR *dir;
    struct dirent *entry;
    int ret = -1;
    int rc;

    if ((rc = virDirOpenIfExists(&dir, configDir)) <= 0)
        return rc;

    while ((ret = virDirRead(dir, &entry, configDir)) > 0) {
1068
        virNetworkObjPtr obj;
J
John Ferlan 已提交
1069 1070 1071 1072 1073 1074

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

        /* NB: ignoring errors, so one malformed config doesn't
           kill the whole process */
1075
        obj = virNetworkLoadConfig(nets,
J
John Ferlan 已提交
1076 1077 1078
                                   configDir,
                                   autostartDir,
                                   entry->d_name);
1079
        virNetworkObjEndAPI(&obj);
J
John Ferlan 已提交
1080 1081 1082 1083 1084 1085
    }

    VIR_DIR_CLOSE(dir);
    return ret;
}

1086 1087

int
1088 1089
virNetworkObjDeleteConfig(const char *configDir,
                          const char *autostartDir,
1090
                          virNetworkObjPtr obj)
J
John Ferlan 已提交
1091 1092 1093 1094 1095
{
    char *configFile = NULL;
    char *autostartLink = NULL;
    int ret = -1;

1096
    if (!(configFile = virNetworkConfigFile(configDir, obj->def->name)))
J
John Ferlan 已提交
1097
        goto error;
1098
    if (!(autostartLink = virNetworkConfigFile(autostartDir, obj->def->name)))
J
John Ferlan 已提交
1099 1100 1101 1102
        goto error;

    /* Not fatal if this doesn't work */
    unlink(autostartLink);
1103
    obj->autostart = false;
J
John Ferlan 已提交
1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119

    if (unlink(configFile) < 0) {
        virReportSystemError(errno,
                             _("cannot remove config file '%s'"),
                             configFile);
        goto error;
    }

    ret = 0;

 error:
    VIR_FREE(configFile);
    VIR_FREE(autostartLink);
    return ret;
}

1120

1121
struct virNetworkObjBridgeInUseHelperData {
J
John Ferlan 已提交
1122 1123 1124 1125 1126
    const char *bridge;
    const char *skipname;
};

static int
1127 1128 1129
virNetworkObjBridgeInUseHelper(const void *payload,
                               const void *name ATTRIBUTE_UNUSED,
                               const void *opaque)
J
John Ferlan 已提交
1130 1131
{
    int ret;
1132
    virNetworkObjPtr obj = (virNetworkObjPtr) payload;
1133
    const struct virNetworkObjBridgeInUseHelperData *data = opaque;
J
John Ferlan 已提交
1134

1135
    virObjectLock(obj);
J
John Ferlan 已提交
1136
    if (data->skipname &&
1137 1138
        ((obj->def && STREQ(obj->def->name, data->skipname)) ||
         (obj->newDef && STREQ(obj->newDef->name, data->skipname))))
J
John Ferlan 已提交
1139
        ret = 0;
1140 1141 1142 1143
    else if ((obj->def && obj->def->bridge &&
              STREQ(obj->def->bridge, data->bridge)) ||
             (obj->newDef && obj->newDef->bridge &&
              STREQ(obj->newDef->bridge, data->bridge)))
J
John Ferlan 已提交
1144 1145 1146
        ret = 1;
    else
        ret = 0;
1147
    virObjectUnlock(obj);
J
John Ferlan 已提交
1148 1149 1150
    return ret;
}

1151 1152

int
1153 1154 1155
virNetworkObjBridgeInUse(virNetworkObjListPtr nets,
                         const char *bridge,
                         const char *skipname)
J
John Ferlan 已提交
1156 1157
{
    virNetworkObjPtr obj;
1158
    struct virNetworkObjBridgeInUseHelperData data = {bridge, skipname};
J
John Ferlan 已提交
1159 1160

    virObjectLock(nets);
1161
    obj = virHashSearch(nets->objs, virNetworkObjBridgeInUseHelper, &data, NULL);
J
John Ferlan 已提交
1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182
    virObjectUnlock(nets);

    return obj != NULL;
}


/*
 * virNetworkObjUpdate:
 *
 * Apply the supplied update to the given virNetworkObj. Except for
 * @network pointing to an actual network object rather than the
 * opaque virNetworkPtr, parameters are identical to the public API
 * virNetworkUpdate.
 *
 * The original virNetworkDefs are copied, and all modifications made
 * to these copies. The originals are replaced with the copies only
 * after success has been guaranteed.
 *
 * Returns: -1 on error, 0 on success.
 */
int
1183
virNetworkObjUpdate(virNetworkObjPtr obj,
J
John Ferlan 已提交
1184 1185 1186 1187 1188 1189 1190 1191 1192 1193
                    unsigned int command, /* virNetworkUpdateCommand */
                    unsigned int section, /* virNetworkUpdateSection */
                    int parentIndex,
                    const char *xml,
                    unsigned int flags)  /* virNetworkUpdateFlags */
{
    int ret = -1;
    virNetworkDefPtr livedef = NULL, configdef = NULL;

    /* normalize config data, and check for common invalid requests. */
1194
    if (virNetworkObjConfigChangeSetup(obj, flags) < 0)
J
John Ferlan 已提交
1195 1196 1197 1198 1199 1200
       goto cleanup;

    if (flags & VIR_NETWORK_UPDATE_AFFECT_LIVE) {
        virNetworkDefPtr checkdef;

        /* work on a copy of the def */
1201
        if (!(livedef = virNetworkDefCopy(obj->def, 0)))
J
John Ferlan 已提交
1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218
            goto cleanup;
        if (virNetworkDefUpdateSection(livedef, command, section,
                                       parentIndex, xml, flags) < 0) {
            goto cleanup;
        }
        /* run a final format/parse cycle to make sure we didn't
         * add anything illegal to the def
         */
        if (!(checkdef = virNetworkDefCopy(livedef, 0)))
            goto cleanup;
        virNetworkDefFree(checkdef);
    }

    if (flags & VIR_NETWORK_UPDATE_AFFECT_CONFIG) {
        virNetworkDefPtr checkdef;

        /* work on a copy of the def */
1219
        if (!(configdef = virNetworkDefCopy(virNetworkObjGetPersistentDef(obj),
J
John Ferlan 已提交
1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235
                                            VIR_NETWORK_XML_INACTIVE))) {
            goto cleanup;
        }
        if (virNetworkDefUpdateSection(configdef, command, section,
                                       parentIndex, xml, flags) < 0) {
            goto cleanup;
        }
        if (!(checkdef = virNetworkDefCopy(configdef,
                                           VIR_NETWORK_XML_INACTIVE))) {
            goto cleanup;
        }
        virNetworkDefFree(checkdef);
    }

    if (configdef) {
        /* successfully modified copy, now replace original */
1236
        if (virNetworkObjReplacePersistentDef(obj, configdef) < 0)
J
John Ferlan 已提交
1237 1238 1239 1240 1241
           goto cleanup;
        configdef = NULL;
    }
    if (livedef) {
        /* successfully modified copy, now replace original */
1242 1243
        virNetworkDefFree(obj->def);
        obj->def = livedef;
J
John Ferlan 已提交
1244 1245 1246 1247 1248 1249 1250 1251 1252 1253
        livedef = NULL;
    }

    ret = 0;
 cleanup:
    virNetworkDefFree(livedef);
    virNetworkDefFree(configdef);
    return ret;
}

1254

J
John Ferlan 已提交
1255 1256
#define MATCH(FLAG) (flags & (FLAG))
static bool
1257
virNetworkMatch(virNetworkObjPtr obj,
J
John Ferlan 已提交
1258 1259 1260 1261 1262
                unsigned int flags)
{
    /* filter by active state */
    if (MATCH(VIR_CONNECT_LIST_NETWORKS_FILTERS_ACTIVE) &&
        !((MATCH(VIR_CONNECT_LIST_NETWORKS_ACTIVE) &&
1263
           virNetworkObjIsActive(obj)) ||
J
John Ferlan 已提交
1264
          (MATCH(VIR_CONNECT_LIST_NETWORKS_INACTIVE) &&
1265
           !virNetworkObjIsActive(obj))))
J
John Ferlan 已提交
1266 1267 1268 1269 1270
        return false;

    /* filter by persistence */
    if (MATCH(VIR_CONNECT_LIST_NETWORKS_FILTERS_PERSISTENT) &&
        !((MATCH(VIR_CONNECT_LIST_NETWORKS_PERSISTENT) &&
1271
           obj->persistent) ||
J
John Ferlan 已提交
1272
          (MATCH(VIR_CONNECT_LIST_NETWORKS_TRANSIENT) &&
1273
           !obj->persistent)))
J
John Ferlan 已提交
1274 1275 1276 1277 1278
        return false;

    /* filter by autostart option */
    if (MATCH(VIR_CONNECT_LIST_NETWORKS_FILTERS_AUTOSTART) &&
        !((MATCH(VIR_CONNECT_LIST_NETWORKS_AUTOSTART) &&
1279
           obj->autostart) ||
J
John Ferlan 已提交
1280
          (MATCH(VIR_CONNECT_LIST_NETWORKS_NO_AUTOSTART) &&
1281
           !obj->autostart)))
J
John Ferlan 已提交
1282 1283 1284 1285 1286 1287
        return false;

    return true;
}
#undef MATCH

1288

J
John Ferlan 已提交
1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335
struct virNetworkObjListData {
    virConnectPtr conn;
    virNetworkPtr *nets;
    virNetworkObjListFilter filter;
    unsigned int flags;
    int nnets;
    bool error;
};

static int
virNetworkObjListPopulate(void *payload,
                          const void *name ATTRIBUTE_UNUSED,
                          void *opaque)
{
    struct virNetworkObjListData *data = opaque;
    virNetworkObjPtr obj = payload;
    virNetworkPtr net = NULL;

    if (data->error)
        return 0;

    virObjectLock(obj);

    if (data->filter &&
        !data->filter(data->conn, obj->def))
        goto cleanup;

    if (!virNetworkMatch(obj, data->flags))
        goto cleanup;

    if (!data->nets) {
        data->nnets++;
        goto cleanup;
    }

    if (!(net = virGetNetwork(data->conn, obj->def->name, obj->def->uuid))) {
        data->error = true;
        goto cleanup;
    }

    data->nets[data->nnets++] = net;

 cleanup:
    virObjectUnlock(obj);
    return 0;
}

1336

J
John Ferlan 已提交
1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372
int
virNetworkObjListExport(virConnectPtr conn,
                        virNetworkObjListPtr netobjs,
                        virNetworkPtr **nets,
                        virNetworkObjListFilter filter,
                        unsigned int flags)
{
    int ret = -1;
    struct virNetworkObjListData data = { conn, NULL, filter, flags, 0, false};

    virObjectLock(netobjs);
    if (nets && VIR_ALLOC_N(data.nets, virHashSize(netobjs->objs) + 1) < 0)
        goto cleanup;

    virHashForEach(netobjs->objs, virNetworkObjListPopulate, &data);

    if (data.error)
        goto cleanup;

    if (data.nets) {
        /* trim the array to the final size */
        ignore_value(VIR_REALLOC_N(data.nets, data.nnets + 1));
        *nets = data.nets;
        data.nets = NULL;
    }

    ret = data.nnets;
 cleanup:
    virObjectUnlock(netobjs);
    while (data.nets && data.nnets)
        virObjectUnref(data.nets[--data.nnets]);

    VIR_FREE(data.nets);
    return ret;
}

1373

J
John Ferlan 已提交
1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391
struct virNetworkObjListForEachHelperData {
    virNetworkObjListIterator callback;
    void *opaque;
    int ret;
};

static int
virNetworkObjListForEachHelper(void *payload,
                               const void *name ATTRIBUTE_UNUSED,
                               void *opaque)
{
    struct virNetworkObjListForEachHelperData *data = opaque;

    if (data->callback(payload, data->opaque) < 0)
        data->ret = -1;
    return 0;
}

1392

J
John Ferlan 已提交
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
/**
 * virNetworkObjListForEach:
 * @nets: a list of network objects
 * @callback: function to call over each of object in the list
 * @opaque: pointer to pass to the @callback
 *
 * Function iterates over the list of network objects and calls
 * passed callback over each one of them. You should avoid
 * calling those virNetworkObjList APIs, which lock the list
 * again in favor of their virNetworkObj*Locked variants.
 *
 * Returns: 0 on success, -1 otherwise.
 */
int
virNetworkObjListForEach(virNetworkObjListPtr nets,
                         virNetworkObjListIterator callback,
                         void *opaque)
{
    struct virNetworkObjListForEachHelperData data = {callback, opaque, 0};
    virObjectLock(nets);
    virHashForEach(nets->objs, virNetworkObjListForEachHelper, &data);
    virObjectUnlock(nets);
    return data.ret;
}

1418

J
John Ferlan 已提交
1419 1420 1421 1422
struct virNetworkObjListGetHelperData {
    virConnectPtr conn;
    virNetworkObjListFilter filter;
    char **names;
1423
    int maxnames;
J
John Ferlan 已提交
1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439
    bool active;
    int got;
    bool error;
};

static int
virNetworkObjListGetHelper(void *payload,
                           const void *name ATTRIBUTE_UNUSED,
                           void *opaque)
{
    struct virNetworkObjListGetHelperData *data = opaque;
    virNetworkObjPtr obj = payload;

    if (data->error)
        return 0;

1440 1441
    if (data->maxnames >= 0 &&
        data->got == data->maxnames)
J
John Ferlan 已提交
1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464
        return 0;

    virObjectLock(obj);

    if (data->filter &&
        !data->filter(data->conn, obj->def))
        goto cleanup;

    if ((data->active && virNetworkObjIsActive(obj)) ||
        (!data->active && !virNetworkObjIsActive(obj))) {
        if (data->names &&
            VIR_STRDUP(data->names[data->got], obj->def->name) < 0) {
            data->error = true;
            goto cleanup;
        }
        data->got++;
    }

 cleanup:
    virObjectUnlock(obj);
    return 0;
}

1465

J
John Ferlan 已提交
1466 1467 1468 1469
int
virNetworkObjListGetNames(virNetworkObjListPtr nets,
                          bool active,
                          char **names,
1470
                          int maxnames,
J
John Ferlan 已提交
1471 1472 1473 1474 1475 1476
                          virNetworkObjListFilter filter,
                          virConnectPtr conn)
{
    int ret = -1;

    struct virNetworkObjListGetHelperData data = {
1477
        conn, filter, names, maxnames, active, 0, false};
J
John Ferlan 已提交
1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494

    virObjectLock(nets);
    virHashForEach(nets->objs, virNetworkObjListGetHelper, &data);
    virObjectUnlock(nets);

    if (data.error)
        goto cleanup;

    ret = data.got;
 cleanup:
    if (ret < 0) {
        while (data.got)
            VIR_FREE(data.names[--data.got]);
    }
    return ret;
}

1495

J
John Ferlan 已提交
1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511
int
virNetworkObjListNumOfNetworks(virNetworkObjListPtr nets,
                               bool active,
                               virNetworkObjListFilter filter,
                               virConnectPtr conn)
{
    struct virNetworkObjListGetHelperData data = {
        conn, filter, NULL, -1, active, 0, false};

    virObjectLock(nets);
    virHashForEach(nets->objs, virNetworkObjListGetHelper, &data);
    virObjectUnlock(nets);

    return data.got;
}

1512

J
John Ferlan 已提交
1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531
struct virNetworkObjListPruneHelperData {
    unsigned int flags;
};

static int
virNetworkObjListPruneHelper(const void *payload,
                             const void *name ATTRIBUTE_UNUSED,
                             const void *opaque)
{
    const struct virNetworkObjListPruneHelperData *data = opaque;
    virNetworkObjPtr obj = (virNetworkObjPtr) payload;
    int want = 0;

    virObjectLock(obj);
    want = virNetworkMatch(obj, data->flags);
    virObjectUnlock(obj);
    return want;
}

1532

J
John Ferlan 已提交
1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550
/**
 * virNetworkObjListPrune:
 * @nets: a list of network objects
 * @flags: bitwise-OR of virConnectListAllNetworksFlags
 *
 * Iterate over list of network objects and remove the desired
 * ones from it.
 */
void
virNetworkObjListPrune(virNetworkObjListPtr nets,
                       unsigned int flags)
{
    struct virNetworkObjListPruneHelperData data = {flags};

    virObjectLock(nets);
    virHashRemoveSet(nets->objs, virNetworkObjListPruneHelper, &data);
    virObjectUnlock(nets);
}