virnetworkobj.c 48.7 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
/*
 * 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");

37 38 39 40
/* Currently, /sbin/tc implementation allows up to 16 bits for
 * minor class size. But the initial bitmap doesn't have to be
 * that big. */
#define INIT_CLASS_ID_BITMAP_SIZE (1<<4)
J
John Ferlan 已提交
41

J
John Ferlan 已提交
42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
struct _virNetworkObj {
    virObjectLockable parent;

    pid_t dnsmasqPid;
    pid_t radvdPid;
    bool active;
    bool autostart;
    bool persistent;

    virNetworkDefPtr def; /* The current definition */
    virNetworkDefPtr newDef; /* New definition to activate at shutdown */

    virBitmapPtr classIdMap; /* bitmap of class IDs for QoS */
    unsigned long long floor_sum; /* sum of all 'floor'-s of attached NICs */

    unsigned int taint;

    /* Immutable pointer, self locking APIs */
    virMacMapPtr macmap;
61 62

    virHashTablePtr ports; /* uuid -> virNetworkPortDefPtr */
J
John Ferlan 已提交
63 64
};

J
John Ferlan 已提交
65
struct _virNetworkObjList {
66
    virObjectRWLockable parent;
J
John Ferlan 已提交
67 68 69 70 71 72 73 74 75

    virHashTablePtr objs;
};

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

76 77
static int
virNetworkObjOnceInit(void)
J
John Ferlan 已提交
78
{
79
    if (!VIR_CLASS_NEW(virNetworkObj, virClassForObjectLockable()))
J
John Ferlan 已提交
80 81
        return -1;

82
    if (!VIR_CLASS_NEW(virNetworkObjList, virClassForObjectRWLockable()))
J
John Ferlan 已提交
83
        return -1;
84

J
John Ferlan 已提交
85 86 87 88
    return 0;
}


89
VIR_ONCE_GLOBAL_INIT(virNetworkObj);
J
John Ferlan 已提交
90

91 92 93 94 95 96 97 98 99 100 101
static int
virNetworkObjLoadAllPorts(virNetworkObjPtr net,
                          const char *stateDir);


static void
virNetworkObjPortFree(void *val, const void *key ATTRIBUTE_UNUSED)
{
    virNetworkPortDefFree(val);
}

J
John Ferlan 已提交
102 103 104
virNetworkObjPtr
virNetworkObjNew(void)
{
105
    virNetworkObjPtr obj;
J
John Ferlan 已提交
106 107 108 109

    if (virNetworkObjInitialize() < 0)
        return NULL;

110
    if (!(obj = virObjectLockableNew(virNetworkObjClass)))
J
John Ferlan 已提交
111 112
        return NULL;

113
    if (!(obj->classIdMap = virBitmapNew(INIT_CLASS_ID_BITMAP_SIZE)))
J
John Ferlan 已提交
114 115 116
        goto error;

    /* The first three class IDs are already taken */
117 118 119 120
    if (virBitmapSetBitExpand(obj->classIdMap, 0) < 0 ||
        virBitmapSetBitExpand(obj->classIdMap, 1) < 0 ||
        virBitmapSetBitExpand(obj->classIdMap, 2) < 0)
        goto error;
J
John Ferlan 已提交
121

122 123 124 125
    if (!(obj->ports = virHashCreate(10,
                                     virNetworkObjPortFree)))
        goto error;

126 127
    virObjectLock(obj);

128
    return obj;
J
John Ferlan 已提交
129 130

 error:
131
    virObjectUnref(obj);
J
John Ferlan 已提交
132 133 134
    return NULL;
}

135

J
John Ferlan 已提交
136
void
137
virNetworkObjEndAPI(virNetworkObjPtr *obj)
J
John Ferlan 已提交
138
{
139
    if (!*obj)
J
John Ferlan 已提交
140 141
        return;

142 143 144
    virObjectUnlock(*obj);
    virObjectUnref(*obj);
    *obj = NULL;
J
John Ferlan 已提交
145 146
}

147

148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169
virNetworkDefPtr
virNetworkObjGetDef(virNetworkObjPtr obj)
{
    return obj->def;
}


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


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


170 171 172 173 174 175 176 177 178 179 180 181 182 183 184
bool
virNetworkObjIsActive(virNetworkObjPtr obj)
{
    return obj->active;
}


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


185 186 187 188 189 190 191
bool
virNetworkObjIsPersistent(virNetworkObjPtr obj)
{
    return obj->persistent;
}


192 193 194 195 196 197 198 199 200 201 202 203 204 205 206
bool
virNetworkObjIsAutostart(virNetworkObjPtr obj)
{
    return obj->autostart;
}


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


207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236
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;
}


237 238 239 240 241 242 243
virBitmapPtr
virNetworkObjGetClassIdMap(virNetworkObjPtr obj)
{
    return obj->classIdMap;
}


244 245 246 247 248 249 250
virMacMapPtr
virNetworkObjGetMacMap(virNetworkObjPtr obj)
{
    return obj->macmap;
}


251 252 253 254 255 256 257 258 259 260 261 262 263 264 265
unsigned long long
virNetworkObjGetFloorSum(virNetworkObjPtr obj)
{
    return obj->floor_sum;
}


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


266 267 268 269 270 271 272 273 274 275 276
void
virNetworkObjSetMacMap(virNetworkObjPtr obj,
                       virMacMapPtr macmap)
{
    obj->macmap = macmap;
}


void
virNetworkObjUnrefMacMap(virNetworkObjPtr obj)
{
277 278
    virObjectUnref(obj->macmap);
    obj->macmap = NULL;
279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343
}


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


344 345
virNetworkObjListPtr
virNetworkObjListNew(void)
J
John Ferlan 已提交
346 347 348 349 350 351
{
    virNetworkObjListPtr nets;

    if (virNetworkObjInitialize() < 0)
        return NULL;

352
    if (!(nets = virObjectRWLockableNew(virNetworkObjListClass)))
J
John Ferlan 已提交
353 354 355 356 357 358 359 360 361 362
        return NULL;

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

    return nets;
}

363

364
static virNetworkObjPtr
J
John Ferlan 已提交
365 366 367
virNetworkObjFindByUUIDLocked(virNetworkObjListPtr nets,
                              const unsigned char *uuid)
{
368
    virNetworkObjPtr obj = NULL;
J
John Ferlan 已提交
369 370 371 372
    char uuidstr[VIR_UUID_STRING_BUFLEN];

    virUUIDFormat(uuid, uuidstr);

373 374 375 376
    obj = virHashLookup(nets->objs, uuidstr);
    if (obj)
        virObjectRef(obj);
    return obj;
J
John Ferlan 已提交
377 378
}

379

J
John Ferlan 已提交
380 381 382 383 384 385 386 387 388 389 390 391 392 393
/**
 * 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)
{
394
    virNetworkObjPtr obj;
J
John Ferlan 已提交
395

396
    virObjectRWLockRead(nets);
397
    obj = virNetworkObjFindByUUIDLocked(nets, uuid);
398
    virObjectRWUnlock(nets);
399 400 401
    if (obj)
        virObjectLock(obj);
    return obj;
J
John Ferlan 已提交
402 403
}

404

J
John Ferlan 已提交
405 406 407 408 409
static int
virNetworkObjSearchName(const void *payload,
                        const void *name ATTRIBUTE_UNUSED,
                        const void *data)
{
410
    virNetworkObjPtr obj = (virNetworkObjPtr) payload;
J
John Ferlan 已提交
411 412
    int want = 0;

413 414
    virObjectLock(obj);
    if (STREQ(obj->def->name, (const char *)data))
J
John Ferlan 已提交
415
        want = 1;
416
    virObjectUnlock(obj);
J
John Ferlan 已提交
417 418 419
    return want;
}

420

421
static virNetworkObjPtr
J
John Ferlan 已提交
422 423 424
virNetworkObjFindByNameLocked(virNetworkObjListPtr nets,
                              const char *name)
{
425
    virNetworkObjPtr obj = NULL;
J
John Ferlan 已提交
426

427 428 429 430
    obj = virHashSearch(nets->objs, virNetworkObjSearchName, name, NULL);
    if (obj)
        virObjectRef(obj);
    return obj;
J
John Ferlan 已提交
431 432
}

433

J
John Ferlan 已提交
434 435 436 437 438 439 440 441 442 443 444 445 446 447
/**
 * 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)
{
448
    virNetworkObjPtr obj;
J
John Ferlan 已提交
449

450
    virObjectRWLockRead(nets);
451
    obj = virNetworkObjFindByNameLocked(nets, name);
452
    virObjectRWUnlock(nets);
453 454 455
    if (obj)
        virObjectLock(obj);
    return obj;
J
John Ferlan 已提交
456 457
}

458

J
John Ferlan 已提交
459 460 461 462 463 464 465 466 467 468 469 470 471 472 473
bool
virNetworkObjTaint(virNetworkObjPtr obj,
                   virNetworkTaintFlags taint)
{
    unsigned int flag = (1 << taint);

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

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


static void
474
virNetworkObjDispose(void *opaque)
J
John Ferlan 已提交
475
{
476
    virNetworkObjPtr obj = opaque;
J
John Ferlan 已提交
477

478
    virHashFree(obj->ports);
479 480 481 482
    virNetworkDefFree(obj->def);
    virNetworkDefFree(obj->newDef);
    virBitmapFree(obj->classIdMap);
    virObjectUnref(obj->macmap);
J
John Ferlan 已提交
483 484
}

485

J
John Ferlan 已提交
486
static void
487
virNetworkObjListDispose(void *opaque)
J
John Ferlan 已提交
488
{
489
    virNetworkObjListPtr nets = opaque;
J
John Ferlan 已提交
490 491 492 493

    virHashFree(nets->objs);
}

494

J
John Ferlan 已提交
495
/*
496
 * virNetworkObjUpdateAssignDef:
J
John Ferlan 已提交
497 498 499 500 501 502 503 504 505 506 507 508 509 510 511
 * @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
512
virNetworkObjUpdateAssignDef(virNetworkObjPtr obj,
513 514
                             virNetworkDefPtr def,
                             bool live)
J
John Ferlan 已提交
515 516 517 518 519 520
{
    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.
         */
521 522
        if (obj->persistent && !obj->newDef)
            obj->newDef = obj->def;
J
John Ferlan 已提交
523
        else
524 525
            virNetworkDefFree(obj->def);
        obj->def = def;
J
John Ferlan 已提交
526
    } else { /* !live */
527 528
        virNetworkDefFree(obj->newDef);
        if (virNetworkObjIsActive(obj)) {
J
John Ferlan 已提交
529 530 531
            /* save new configuration to be restored on network
             * shutdown, leaving current live def alone
             */
532
            obj->newDef = def;
J
John Ferlan 已提交
533
        } else { /* !live and !active */
534
            if (obj->def && !obj->persistent) {
J
John Ferlan 已提交
535 536 537 538 539 540
                /* 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.
                 */
541
                obj->newDef = def;
J
John Ferlan 已提交
542 543 544 545 546
            } 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.
                 */
547 548 549
                obj->newDef = NULL;
                virNetworkDefFree(obj->def);
                obj->def = def;
J
John Ferlan 已提交
550 551
            }
        }
552
        obj->persistent = !!def;
J
John Ferlan 已提交
553 554 555
    }
}

556

J
John Ferlan 已提交
557 558 559 560 561 562 563 564 565 566 567
/*
 * 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
568 569 570
virNetworkObjAssignDefLocked(virNetworkObjListPtr nets,
                             virNetworkDefPtr def,
                             unsigned int flags)
J
John Ferlan 已提交
571
{
572
    virNetworkObjPtr obj;
J
John Ferlan 已提交
573 574 575 576
    virNetworkObjPtr ret = NULL;
    char uuidstr[VIR_UUID_STRING_BUFLEN];

    /* See if a network with matching UUID already exists */
577 578
    if ((obj = virNetworkObjFindByUUIDLocked(nets, def->uuid))) {
        virObjectLock(obj);
J
John Ferlan 已提交
579
        /* UUID matches, but if names don't match, refuse it */
580 581
        if (STRNEQ(obj->def->name, def->name)) {
            virUUIDFormat(obj->def->uuid, uuidstr);
J
John Ferlan 已提交
582 583
            virReportError(VIR_ERR_OPERATION_FAILED,
                           _("network '%s' is already defined with uuid %s"),
584
                           obj->def->name, uuidstr);
J
John Ferlan 已提交
585 586 587 588 589
            goto cleanup;
        }

        if (flags & VIR_NETWORK_OBJ_LIST_ADD_CHECK_LIVE) {
            /* UUID & name match, but if network is already active, refuse it */
590
            if (virNetworkObjIsActive(obj)) {
J
John Ferlan 已提交
591 592
                virReportError(VIR_ERR_OPERATION_INVALID,
                               _("network is already active as '%s'"),
593
                               obj->def->name);
J
John Ferlan 已提交
594 595 596 597
                goto cleanup;
            }
        }

598
        virNetworkObjUpdateAssignDef(obj, def,
599
                                     !!(flags & VIR_NETWORK_OBJ_LIST_ADD_LIVE));
J
John Ferlan 已提交
600 601
    } else {
        /* UUID does not match, but if a name matches, refuse it */
602 603 604
        if ((obj = virNetworkObjFindByNameLocked(nets, def->name))) {
            virObjectLock(obj);
            virUUIDFormat(obj->def->uuid, uuidstr);
J
John Ferlan 已提交
605 606 607 608 609 610
            virReportError(VIR_ERR_OPERATION_FAILED,
                           _("network '%s' already exists with uuid %s"),
                           def->name, uuidstr);
            goto cleanup;
        }

611
        if (!(obj = virNetworkObjNew()))
J
John Ferlan 已提交
612 613 614
              goto cleanup;

        virUUIDFormat(def->uuid, uuidstr);
615
        if (virHashAddEntry(nets->objs, uuidstr, obj) < 0)
J
John Ferlan 已提交
616
            goto cleanup;
617
        virObjectRef(obj);
J
John Ferlan 已提交
618

619 620
        obj->def = def;
        obj->persistent = !(flags & VIR_NETWORK_OBJ_LIST_ADD_LIVE);
J
John Ferlan 已提交
621 622
    }

623
    VIR_STEAL_PTR(ret, obj);
J
John Ferlan 已提交
624 625

 cleanup:
626
    virNetworkObjEndAPI(&obj);
J
John Ferlan 已提交
627 628 629
    return ret;
}

630

J
John Ferlan 已提交
631
/*
632
 * virNetworkObjAssignDef:
J
John Ferlan 已提交
633 634 635 636 637 638 639 640 641
 * @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.
 *
642
 * Look at virNetworkObjAssignDefLocked() for @flags description.
J
John Ferlan 已提交
643 644 645 646
 *
 * Returns NULL on error, virNetworkObjPtr on success.
 */
virNetworkObjPtr
647 648 649
virNetworkObjAssignDef(virNetworkObjListPtr nets,
                       virNetworkDefPtr def,
                       unsigned int flags)
J
John Ferlan 已提交
650
{
651
    virNetworkObjPtr obj;
J
John Ferlan 已提交
652

653
    virObjectRWLockWrite(nets);
654
    obj = virNetworkObjAssignDefLocked(nets, def, flags);
655
    virObjectRWUnlock(nets);
656
    return obj;
J
John Ferlan 已提交
657 658
}

659

J
John Ferlan 已提交
660 661 662 663 664 665 666 667 668 669 670 671 672 673 674
/*
 * 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
675
virNetworkObjSetDefTransient(virNetworkObjPtr obj,
676 677
                             bool live,
                             virNetworkXMLOptionPtr xmlopt)
J
John Ferlan 已提交
678
{
679
    if (!virNetworkObjIsActive(obj) && !live)
J
John Ferlan 已提交
680 681
        return 0;

682
    if (!obj->persistent || obj->newDef)
J
John Ferlan 已提交
683 684
        return 0;

685 686 687
    obj->newDef = virNetworkDefCopy(obj->def,
                                    xmlopt,
                                    VIR_NETWORK_XML_INACTIVE);
688
    return obj->newDef ? 0 : -1;
J
John Ferlan 已提交
689 690
}

691

J
John Ferlan 已提交
692 693 694 695 696
/* virNetworkObjUnsetDefTransient:
 *
 * This *undoes* what virNetworkObjSetDefTransient did.
 */
void
697
virNetworkObjUnsetDefTransient(virNetworkObjPtr obj)
J
John Ferlan 已提交
698
{
699 700 701 702
    if (obj->newDef) {
        virNetworkDefFree(obj->def);
        obj->def = obj->newDef;
        obj->newDef = NULL;
J
John Ferlan 已提交
703 704 705
    }
}

706

J
John Ferlan 已提交
707 708 709 710 711 712 713 714 715 716
/*
 * 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
717
virNetworkObjGetPersistentDef(virNetworkObjPtr obj)
J
John Ferlan 已提交
718
{
719 720
    if (obj->newDef)
        return obj->newDef;
J
John Ferlan 已提交
721
    else
722
        return obj->def;
J
John Ferlan 已提交
723 724
}

725

J
John Ferlan 已提交
726 727 728 729 730 731 732 733 734 735 736 737
/*
 * 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
738
virNetworkObjReplacePersistentDef(virNetworkObjPtr obj,
J
John Ferlan 已提交
739 740
                                  virNetworkDefPtr def)
{
741 742 743
    if (virNetworkObjIsActive(obj)) {
        virNetworkDefFree(obj->newDef);
        obj->newDef = def;
J
John Ferlan 已提交
744
    } else {
745 746
        virNetworkDefFree(obj->def);
        obj->def = def;
J
John Ferlan 已提交
747 748 749 750
    }
    return 0;
}

751

J
John Ferlan 已提交
752
/*
753
 * virNetworkObjConfigChangeSetup:
J
John Ferlan 已提交
754 755 756 757 758 759 760 761 762
 *
 * 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.
 */
763
static int
764
virNetworkObjConfigChangeSetup(virNetworkObjPtr obj,
765
                               virNetworkXMLOptionPtr xmlopt,
766
                               unsigned int flags)
J
John Ferlan 已提交
767 768 769 770
{
    bool isActive;
    int ret = -1;

771
    isActive = virNetworkObjIsActive(obj);
J
John Ferlan 已提交
772 773 774 775 776 777 778 779

    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) {
780
        if (!obj->persistent) {
J
John Ferlan 已提交
781 782 783 784 785 786 787 788
            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.
         */
789
        if (isActive && (virNetworkObjSetDefTransient(obj, false, xmlopt) < 0))
J
John Ferlan 已提交
790 791 792 793 794 795 796 797
            goto cleanup;
    }

    ret = 0;
 cleanup:
    return ret;
}

798 799

void
800
virNetworkObjRemoveInactive(virNetworkObjListPtr nets,
801
                            virNetworkObjPtr obj)
J
John Ferlan 已提交
802 803 804
{
    char uuidstr[VIR_UUID_STRING_BUFLEN];

805 806 807
    virUUIDFormat(obj->def->uuid, uuidstr);
    virObjectRef(obj);
    virObjectUnlock(obj);
808
    virObjectRWLockWrite(nets);
809
    virObjectLock(obj);
J
John Ferlan 已提交
810
    virHashRemoveEntry(nets->objs, uuidstr);
811
    virObjectRWUnlock(nets);
812
    virObjectUnref(obj);
J
John Ferlan 已提交
813 814
}

815

J
John Ferlan 已提交
816
static char *
817
virNetworkObjFormat(virNetworkObjPtr obj,
818
                    virNetworkXMLOptionPtr xmlopt,
J
John Ferlan 已提交
819 820 821
                    unsigned int flags)
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;
822
    char *classIdStr = virBitmapFormat(obj->classIdMap);
J
John Ferlan 已提交
823 824
    size_t i;

825
    if (!classIdStr)
J
John Ferlan 已提交
826 827 828 829
        goto error;

    virBufferAddLit(&buf, "<networkstatus>\n");
    virBufferAdjustIndent(&buf, 2);
830
    virBufferAsprintf(&buf, "<class_id bitmap='%s'/>\n", classIdStr);
831
    virBufferAsprintf(&buf, "<floor sum='%llu'/>\n", obj->floor_sum);
832
    VIR_FREE(classIdStr);
J
John Ferlan 已提交
833 834

    for (i = 0; i < VIR_NETWORK_TAINT_LAST; i++) {
835
        if (obj->taint & (1 << i))
J
John Ferlan 已提交
836 837 838 839
            virBufferAsprintf(&buf, "<taint flag='%s'/>\n",
                              virNetworkTaintTypeToString(i));
    }

840
    if (virNetworkDefFormatBuf(&buf, obj->def, xmlopt, flags) < 0)
J
John Ferlan 已提交
841 842 843 844 845 846 847 848 849 850 851 852 853 854 855
        goto error;

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

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

    return virBufferContentAndReset(&buf);

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

856 857

int
858
virNetworkObjSaveStatus(const char *statusDir,
859 860
                        virNetworkObjPtr obj,
                        virNetworkXMLOptionPtr xmlopt)
J
John Ferlan 已提交
861 862 863 864 865
{
    int ret = -1;
    int flags = 0;
    char *xml;

866
    if (!(xml = virNetworkObjFormat(obj, xmlopt, flags)))
J
John Ferlan 已提交
867 868
        goto cleanup;

869
    if (virNetworkSaveXML(statusDir, obj->def, xml))
J
John Ferlan 已提交
870 871 872 873 874 875 876 877
        goto cleanup;

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

878

879
static virNetworkObjPtr
J
John Ferlan 已提交
880 881
virNetworkLoadState(virNetworkObjListPtr nets,
                    const char *stateDir,
882 883
                    const char *name,
                    virNetworkXMLOptionPtr xmlopt)
J
John Ferlan 已提交
884 885 886
{
    char *configFile = NULL;
    virNetworkDefPtr def = NULL;
887
    virNetworkObjPtr obj = NULL;
J
John Ferlan 已提交
888 889 890
    xmlDocPtr xml = NULL;
    xmlNodePtr node = NULL, *nodes = NULL;
    xmlXPathContextPtr ctxt = NULL;
891
    virBitmapPtr classIdMap = NULL;
J
John Ferlan 已提交
892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911
    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;
912
    if (!(def = virNetworkDefParseXML(ctxt, xmlopt)))
J
John Ferlan 已提交
913 914 915 916 917 918 919 920 921 922 923 924
        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);
925
    if (virXMLNodeNameEqual(node, "networkstatus")) {
J
John Ferlan 已提交
926 927
        /* Newer network status file. Contains useful
         * info which are not to be found in bare config XML */
928
        char *classIdStr = NULL;
J
John Ferlan 已提交
929 930 931
        char *floor_sum = NULL;

        ctxt->node = node;
932 933
        if ((classIdStr = virXPathString("string(./class_id[1]/@bitmap)",
                                         ctxt))) {
934
            if (!(classIdMap = virBitmapParseUnlimited(classIdStr))) {
935
                VIR_FREE(classIdStr);
J
John Ferlan 已提交
936 937 938
                goto error;
            }
        }
939
        VIR_FREE(classIdStr);
J
John Ferlan 已提交
940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974

        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 */
975
    if (!(obj = virNetworkObjAssignDef(nets, def,
976
                                       VIR_NETWORK_OBJ_LIST_ADD_LIVE)))
J
John Ferlan 已提交
977 978 979 980
        goto error;
    /* do not put any "goto error" below this comment */

    /* assign status data stored in the network object */
981
    if (classIdMap) {
982 983
        virBitmapFree(obj->classIdMap);
        obj->classIdMap = classIdMap;
J
John Ferlan 已提交
984 985 986
    }

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

989 990
    obj->taint = taint;
    obj->active = true; /* network with a state file is by definition active */
J
John Ferlan 已提交
991 992 993 994 995

 cleanup:
    VIR_FREE(configFile);
    xmlFreeDoc(xml);
    xmlXPathFreeContext(ctxt);
996
    return obj;
J
John Ferlan 已提交
997 998 999

 error:
    VIR_FREE(nodes);
1000
    virBitmapFree(classIdMap);
J
John Ferlan 已提交
1001 1002 1003 1004
    virNetworkDefFree(def);
    goto cleanup;
}

1005

1006
static virNetworkObjPtr
1007 1008 1009
virNetworkLoadConfig(virNetworkObjListPtr nets,
                     const char *configDir,
                     const char *autostartDir,
1010 1011
                     const char *name,
                     virNetworkXMLOptionPtr xmlopt)
J
John Ferlan 已提交
1012 1013 1014
{
    char *configFile = NULL, *autostartLink = NULL;
    virNetworkDefPtr def = NULL;
1015
    virNetworkObjPtr obj;
J
John Ferlan 已提交
1016 1017 1018 1019 1020 1021 1022 1023 1024 1025
    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;

1026
    if (!(def = virNetworkDefParseFile(configFile, xmlopt)))
J
John Ferlan 已提交
1027 1028 1029 1030 1031 1032 1033 1034 1035 1036
        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;
    }

1037 1038 1039 1040 1041
    switch ((virNetworkForwardType) def->forward.type) {
    case VIR_NETWORK_FORWARD_NONE:
    case VIR_NETWORK_FORWARD_NAT:
    case VIR_NETWORK_FORWARD_ROUTE:
    case VIR_NETWORK_FORWARD_OPEN:
J
John Ferlan 已提交
1042 1043
        if (!def->mac_specified) {
            virNetworkSetBridgeMacAddr(def);
1044
            virNetworkSaveConfig(configDir, def, xmlopt);
J
John Ferlan 已提交
1045
        }
1046 1047 1048 1049 1050 1051 1052
        break;

    case VIR_NETWORK_FORWARD_BRIDGE:
    case VIR_NETWORK_FORWARD_PRIVATE:
    case VIR_NETWORK_FORWARD_VEPA:
    case VIR_NETWORK_FORWARD_PASSTHROUGH:
    case VIR_NETWORK_FORWARD_HOSTDEV:
J
John Ferlan 已提交
1053 1054 1055
        /* Throw away MAC address for other forward types,
         * which could have been generated by older libvirt RPMs */
        def->mac_specified = false;
1056 1057 1058 1059 1060 1061
        break;

    case VIR_NETWORK_FORWARD_LAST:
    default:
        virReportEnumRangeError(virNetworkForwardType, def->forward.type);
        goto error;
J
John Ferlan 已提交
1062 1063
    }

1064
    if (!(obj = virNetworkObjAssignDef(nets, def, 0)))
J
John Ferlan 已提交
1065 1066
        goto error;

1067
    obj->autostart = (autostart == 1);
J
John Ferlan 已提交
1068 1069 1070 1071

    VIR_FREE(configFile);
    VIR_FREE(autostartLink);

1072
    return obj;
J
John Ferlan 已提交
1073 1074 1075 1076 1077 1078 1079 1080 1081 1082

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


int
1083
virNetworkObjLoadAllState(virNetworkObjListPtr nets,
1084 1085
                          const char *stateDir,
                          virNetworkXMLOptionPtr xmlopt)
J
John Ferlan 已提交
1086 1087 1088 1089 1090 1091 1092 1093 1094 1095
{
    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) {
1096
        virNetworkObjPtr obj;
J
John Ferlan 已提交
1097

1098
        if (!virStringStripSuffix(entry->d_name, ".xml"))
J
John Ferlan 已提交
1099 1100
            continue;

1101
        obj = virNetworkLoadState(nets, stateDir, entry->d_name, xmlopt);
1102 1103 1104 1105 1106 1107

        if (obj &&
            virNetworkObjLoadAllPorts(obj, stateDir) < 0) {
            virNetworkObjEndAPI(&obj);
            goto cleanup;
        }
1108
        virNetworkObjEndAPI(&obj);
J
John Ferlan 已提交
1109 1110
    }

1111
 cleanup:
J
John Ferlan 已提交
1112 1113 1114 1115 1116
    VIR_DIR_CLOSE(dir);
    return ret;
}


1117
int
1118 1119
virNetworkObjLoadAllConfigs(virNetworkObjListPtr nets,
                            const char *configDir,
1120 1121
                            const char *autostartDir,
                            virNetworkXMLOptionPtr xmlopt)
J
John Ferlan 已提交
1122 1123 1124 1125 1126 1127 1128 1129 1130 1131
{
    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) {
1132
        virNetworkObjPtr obj;
J
John Ferlan 已提交
1133

1134
        if (!virStringStripSuffix(entry->d_name, ".xml"))
J
John Ferlan 已提交
1135 1136 1137 1138
            continue;

        /* NB: ignoring errors, so one malformed config doesn't
           kill the whole process */
1139
        obj = virNetworkLoadConfig(nets,
J
John Ferlan 已提交
1140 1141
                                   configDir,
                                   autostartDir,
1142 1143
                                   entry->d_name,
                                   xmlopt);
1144
        virNetworkObjEndAPI(&obj);
J
John Ferlan 已提交
1145 1146 1147 1148 1149 1150
    }

    VIR_DIR_CLOSE(dir);
    return ret;
}

1151 1152

int
1153 1154
virNetworkObjDeleteConfig(const char *configDir,
                          const char *autostartDir,
1155
                          virNetworkObjPtr obj)
J
John Ferlan 已提交
1156 1157 1158 1159 1160
{
    char *configFile = NULL;
    char *autostartLink = NULL;
    int ret = -1;

1161
    if (!(configFile = virNetworkConfigFile(configDir, obj->def->name)))
J
John Ferlan 已提交
1162
        goto error;
1163
    if (!(autostartLink = virNetworkConfigFile(autostartDir, obj->def->name)))
J
John Ferlan 已提交
1164 1165 1166 1167
        goto error;

    /* Not fatal if this doesn't work */
    unlink(autostartLink);
1168
    obj->autostart = false;
J
John Ferlan 已提交
1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184

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

1185

1186
struct virNetworkObjBridgeInUseHelperData {
J
John Ferlan 已提交
1187 1188 1189 1190 1191
    const char *bridge;
    const char *skipname;
};

static int
1192 1193 1194
virNetworkObjBridgeInUseHelper(const void *payload,
                               const void *name ATTRIBUTE_UNUSED,
                               const void *opaque)
J
John Ferlan 已提交
1195 1196
{
    int ret;
1197
    virNetworkObjPtr obj = (virNetworkObjPtr) payload;
1198
    const struct virNetworkObjBridgeInUseHelperData *data = opaque;
J
John Ferlan 已提交
1199

1200
    virObjectLock(obj);
J
John Ferlan 已提交
1201
    if (data->skipname &&
1202 1203
        ((obj->def && STREQ(obj->def->name, data->skipname)) ||
         (obj->newDef && STREQ(obj->newDef->name, data->skipname))))
J
John Ferlan 已提交
1204
        ret = 0;
1205 1206 1207 1208
    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 已提交
1209 1210 1211
        ret = 1;
    else
        ret = 0;
1212
    virObjectUnlock(obj);
J
John Ferlan 已提交
1213 1214 1215
    return ret;
}

1216

1217
bool
1218 1219 1220
virNetworkObjBridgeInUse(virNetworkObjListPtr nets,
                         const char *bridge,
                         const char *skipname)
J
John Ferlan 已提交
1221 1222
{
    virNetworkObjPtr obj;
1223
    struct virNetworkObjBridgeInUseHelperData data = {bridge, skipname};
J
John Ferlan 已提交
1224

1225
    virObjectRWLockRead(nets);
1226
    obj = virHashSearch(nets->objs, virNetworkObjBridgeInUseHelper, &data, NULL);
1227
    virObjectRWUnlock(nets);
J
John Ferlan 已提交
1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247

    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
1248
virNetworkObjUpdate(virNetworkObjPtr obj,
J
John Ferlan 已提交
1249 1250 1251 1252
                    unsigned int command, /* virNetworkUpdateCommand */
                    unsigned int section, /* virNetworkUpdateSection */
                    int parentIndex,
                    const char *xml,
1253
                    virNetworkXMLOptionPtr xmlopt,
J
John Ferlan 已提交
1254 1255 1256 1257 1258 1259
                    unsigned int flags)  /* virNetworkUpdateFlags */
{
    int ret = -1;
    virNetworkDefPtr livedef = NULL, configdef = NULL;

    /* normalize config data, and check for common invalid requests. */
1260
    if (virNetworkObjConfigChangeSetup(obj, xmlopt, flags) < 0)
J
John Ferlan 已提交
1261 1262 1263 1264 1265 1266
       goto cleanup;

    if (flags & VIR_NETWORK_UPDATE_AFFECT_LIVE) {
        virNetworkDefPtr checkdef;

        /* work on a copy of the def */
1267
        if (!(livedef = virNetworkDefCopy(obj->def, xmlopt, 0)))
J
John Ferlan 已提交
1268 1269 1270 1271 1272 1273 1274 1275
            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
         */
1276
        if (!(checkdef = virNetworkDefCopy(livedef, xmlopt, 0)))
J
John Ferlan 已提交
1277 1278 1279 1280 1281 1282 1283 1284
            goto cleanup;
        virNetworkDefFree(checkdef);
    }

    if (flags & VIR_NETWORK_UPDATE_AFFECT_CONFIG) {
        virNetworkDefPtr checkdef;

        /* work on a copy of the def */
1285
        if (!(configdef = virNetworkDefCopy(virNetworkObjGetPersistentDef(obj),
1286
                                            xmlopt,
J
John Ferlan 已提交
1287 1288 1289 1290 1291 1292 1293 1294
                                            VIR_NETWORK_XML_INACTIVE))) {
            goto cleanup;
        }
        if (virNetworkDefUpdateSection(configdef, command, section,
                                       parentIndex, xml, flags) < 0) {
            goto cleanup;
        }
        if (!(checkdef = virNetworkDefCopy(configdef,
1295
                                           xmlopt,
J
John Ferlan 已提交
1296 1297 1298 1299 1300 1301 1302 1303
                                           VIR_NETWORK_XML_INACTIVE))) {
            goto cleanup;
        }
        virNetworkDefFree(checkdef);
    }

    if (configdef) {
        /* successfully modified copy, now replace original */
1304
        if (virNetworkObjReplacePersistentDef(obj, configdef) < 0)
J
John Ferlan 已提交
1305 1306 1307 1308 1309
           goto cleanup;
        configdef = NULL;
    }
    if (livedef) {
        /* successfully modified copy, now replace original */
1310 1311
        virNetworkDefFree(obj->def);
        obj->def = livedef;
J
John Ferlan 已提交
1312 1313 1314 1315 1316 1317 1318 1319 1320 1321
        livedef = NULL;
    }

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

1322

J
John Ferlan 已提交
1323 1324
#define MATCH(FLAG) (flags & (FLAG))
static bool
A
Anya Harter 已提交
1325 1326
virNetworkObjMatch(virNetworkObjPtr obj,
                   unsigned int flags)
J
John Ferlan 已提交
1327 1328 1329 1330
{
    /* filter by active state */
    if (MATCH(VIR_CONNECT_LIST_NETWORKS_FILTERS_ACTIVE) &&
        !((MATCH(VIR_CONNECT_LIST_NETWORKS_ACTIVE) &&
1331
           virNetworkObjIsActive(obj)) ||
J
John Ferlan 已提交
1332
          (MATCH(VIR_CONNECT_LIST_NETWORKS_INACTIVE) &&
1333
           !virNetworkObjIsActive(obj))))
J
John Ferlan 已提交
1334 1335 1336 1337 1338
        return false;

    /* filter by persistence */
    if (MATCH(VIR_CONNECT_LIST_NETWORKS_FILTERS_PERSISTENT) &&
        !((MATCH(VIR_CONNECT_LIST_NETWORKS_PERSISTENT) &&
1339
           obj->persistent) ||
J
John Ferlan 已提交
1340
          (MATCH(VIR_CONNECT_LIST_NETWORKS_TRANSIENT) &&
1341
           !obj->persistent)))
J
John Ferlan 已提交
1342 1343 1344 1345 1346
        return false;

    /* filter by autostart option */
    if (MATCH(VIR_CONNECT_LIST_NETWORKS_FILTERS_AUTOSTART) &&
        !((MATCH(VIR_CONNECT_LIST_NETWORKS_AUTOSTART) &&
1347
           obj->autostart) ||
J
John Ferlan 已提交
1348
          (MATCH(VIR_CONNECT_LIST_NETWORKS_NO_AUTOSTART) &&
1349
           !obj->autostart)))
J
John Ferlan 已提交
1350 1351 1352 1353 1354 1355
        return false;

    return true;
}
#undef MATCH

1356

1357 1358 1359
typedef struct _virNetworkObjListExportData virNetworkObjListExportData;
typedef virNetworkObjListExportData *virNetworkObjListExportDataPtr;
struct _virNetworkObjListExportData {
J
John Ferlan 已提交
1360 1361 1362 1363 1364 1365 1366 1367 1368
    virConnectPtr conn;
    virNetworkPtr *nets;
    virNetworkObjListFilter filter;
    unsigned int flags;
    int nnets;
    bool error;
};

static int
1369 1370 1371
virNetworkObjListExportCallback(void *payload,
                                const void *name ATTRIBUTE_UNUSED,
                                void *opaque)
J
John Ferlan 已提交
1372
{
1373
    virNetworkObjListExportDataPtr data = opaque;
J
John Ferlan 已提交
1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385
    virNetworkObjPtr obj = payload;
    virNetworkPtr net = NULL;

    if (data->error)
        return 0;

    virObjectLock(obj);

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

A
Anya Harter 已提交
1386
    if (!virNetworkObjMatch(obj, data->flags))
J
John Ferlan 已提交
1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405
        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;
}

1406

J
John Ferlan 已提交
1407 1408 1409 1410 1411 1412 1413 1414
int
virNetworkObjListExport(virConnectPtr conn,
                        virNetworkObjListPtr netobjs,
                        virNetworkPtr **nets,
                        virNetworkObjListFilter filter,
                        unsigned int flags)
{
    int ret = -1;
1415
    virNetworkObjListExportData data = {
1416 1417
        .conn = conn, .nets = NULL, .filter = filter, .flags = flags,
        .nnets = 0, .error = false };
J
John Ferlan 已提交
1418

1419
    virObjectRWLockRead(netobjs);
J
John Ferlan 已提交
1420 1421 1422
    if (nets && VIR_ALLOC_N(data.nets, virHashSize(netobjs->objs) + 1) < 0)
        goto cleanup;

1423
    virHashForEach(netobjs->objs, virNetworkObjListExportCallback, &data);
J
John Ferlan 已提交
1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436

    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:
1437
    virObjectRWUnlock(netobjs);
J
John Ferlan 已提交
1438 1439 1440 1441 1442 1443 1444
    while (data.nets && data.nnets)
        virObjectUnref(data.nets[--data.nnets]);

    VIR_FREE(data.nets);
    return ret;
}

1445

J
John Ferlan 已提交
1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463
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;
}

1464

J
John Ferlan 已提交
1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482
/**
 * 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)
{
1483 1484
    struct virNetworkObjListForEachHelperData data = {
        .callback = callback, .opaque = opaque, .ret = 0};
1485
    virObjectRWLockRead(nets);
J
John Ferlan 已提交
1486
    virHashForEach(nets->objs, virNetworkObjListForEachHelper, &data);
1487
    virObjectRWUnlock(nets);
J
John Ferlan 已提交
1488 1489 1490
    return data.ret;
}

1491

J
John Ferlan 已提交
1492 1493 1494 1495
struct virNetworkObjListGetHelperData {
    virConnectPtr conn;
    virNetworkObjListFilter filter;
    char **names;
1496
    int nnames;
1497
    int maxnames;
J
John Ferlan 已提交
1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512
    bool active;
    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;

1513
    if (data->maxnames >= 0 &&
1514
        data->nnames == data->maxnames)
J
John Ferlan 已提交
1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525
        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 &&
1526
            VIR_STRDUP(data->names[data->nnames], obj->def->name) < 0) {
J
John Ferlan 已提交
1527 1528 1529
            data->error = true;
            goto cleanup;
        }
1530
        data->nnames++;
J
John Ferlan 已提交
1531 1532 1533 1534 1535 1536 1537
    }

 cleanup:
    virObjectUnlock(obj);
    return 0;
}

1538

J
John Ferlan 已提交
1539 1540 1541 1542
int
virNetworkObjListGetNames(virNetworkObjListPtr nets,
                          bool active,
                          char **names,
1543
                          int maxnames,
J
John Ferlan 已提交
1544 1545 1546 1547 1548 1549
                          virNetworkObjListFilter filter,
                          virConnectPtr conn)
{
    int ret = -1;

    struct virNetworkObjListGetHelperData data = {
1550 1551
        .conn = conn, .filter = filter, .names = names, .nnames = 0,
        .maxnames = maxnames, .active = active, .error = false};
J
John Ferlan 已提交
1552

1553
    virObjectRWLockRead(nets);
J
John Ferlan 已提交
1554
    virHashForEach(nets->objs, virNetworkObjListGetHelper, &data);
1555
    virObjectRWUnlock(nets);
J
John Ferlan 已提交
1556 1557 1558 1559

    if (data.error)
        goto cleanup;

1560
    ret = data.nnames;
J
John Ferlan 已提交
1561 1562
 cleanup:
    if (ret < 0) {
1563 1564
        while (data.nnames)
            VIR_FREE(data.names[--data.nnames]);
J
John Ferlan 已提交
1565 1566 1567 1568
    }
    return ret;
}

1569

J
John Ferlan 已提交
1570 1571 1572 1573 1574 1575 1576
int
virNetworkObjListNumOfNetworks(virNetworkObjListPtr nets,
                               bool active,
                               virNetworkObjListFilter filter,
                               virConnectPtr conn)
{
    struct virNetworkObjListGetHelperData data = {
1577 1578
        .conn = conn, .filter = filter, .names = NULL, .nnames = 0,
        .maxnames = -1, .active = active, .error = false};
J
John Ferlan 已提交
1579

1580
    virObjectRWLockRead(nets);
J
John Ferlan 已提交
1581
    virHashForEach(nets->objs, virNetworkObjListGetHelper, &data);
1582
    virObjectRWUnlock(nets);
J
John Ferlan 已提交
1583

1584
    return data.nnames;
J
John Ferlan 已提交
1585 1586
}

1587

J
John Ferlan 已提交
1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601
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);
A
Anya Harter 已提交
1602
    want = virNetworkObjMatch(obj, data->flags);
J
John Ferlan 已提交
1603 1604 1605 1606
    virObjectUnlock(obj);
    return want;
}

1607

J
John Ferlan 已提交
1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621
/**
 * 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};

1622
    virObjectRWLockWrite(nets);
J
John Ferlan 已提交
1623
    virHashRemoveSet(nets->objs, virNetworkObjListPruneHelper, &data);
1624
    virObjectRWUnlock(nets);
J
John Ferlan 已提交
1625
}
1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642


char *
virNetworkObjGetPortStatusDir(virNetworkObjPtr net,
                              const char *stateDir)
{
    char *ret;
    ignore_value(virAsprintf(&ret, "%s/%s/ports", stateDir, net->def->name));
    return ret;
}

int
virNetworkObjAddPort(virNetworkObjPtr net,
                     virNetworkPortDefPtr portdef,
                     const char *stateDir)
{
    char uuidstr[VIR_UUID_STRING_BUFLEN];
1643
    VIR_AUTOFREE(char *) dir = NULL;
1644 1645 1646 1647 1648 1649 1650

    virUUIDFormat(portdef->uuid, uuidstr);

    if (virHashLookup(net->ports, uuidstr)) {
        virReportError(VIR_ERR_NETWORK_PORT_EXIST,
                       _("Network port with UUID %s already exists"),
                       uuidstr);
1651
        return -1;
1652 1653 1654
    }

    if (!(dir = virNetworkObjGetPortStatusDir(net, stateDir)))
1655
        return -1;
1656 1657

    if (virHashAddEntry(net->ports, uuidstr, portdef) < 0)
1658
        return -1;
1659 1660 1661

    if (virNetworkPortDefSaveStatus(portdef, dir) < 0) {
        virHashRemoveEntry(net->ports, uuidstr);
1662
        return -1;
1663 1664
    }

1665
    return 0;
1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695
}


virNetworkPortDefPtr
virNetworkObjLookupPort(virNetworkObjPtr net,
                        const unsigned char *uuid)
{
    virNetworkPortDefPtr ret = NULL;
    char uuidstr[VIR_UUID_STRING_BUFLEN];

    virUUIDFormat(uuid, uuidstr);

    if (!(ret = virHashLookup(net->ports, uuidstr))) {
        virReportError(VIR_ERR_NO_NETWORK_PORT,
                       _("Network port with UUID %s does not exist"),
                       uuidstr);
        goto cleanup;
    }

 cleanup:
    return ret;
}


int
virNetworkObjDeletePort(virNetworkObjPtr net,
                        const unsigned char *uuid,
                        const char *stateDir)
{
    char uuidstr[VIR_UUID_STRING_BUFLEN];
1696
    VIR_AUTOFREE(char *) dir = NULL;
1697 1698 1699 1700 1701 1702 1703 1704
    virNetworkPortDefPtr portdef;

    virUUIDFormat(uuid, uuidstr);

    if (!(portdef = virHashLookup(net->ports, uuidstr))) {
        virReportError(VIR_ERR_NO_NETWORK_PORT,
                       _("Network port with UUID %s does not exist"),
                       uuidstr);
1705
        return -1;
1706 1707 1708
    }

    if (!(dir = virNetworkObjGetPortStatusDir(net, stateDir)))
1709
        return -1;
1710 1711

    if (virNetworkPortDefDeleteStatus(portdef, dir) < 0)
1712
        return -1;
1713 1714

    if (virHashRemoveEntry(net->ports, uuidstr) < 0)
1715
        return -1;
1716

1717
    return 0;
1718 1719 1720 1721 1722 1723 1724
}


int
virNetworkObjDeleteAllPorts(virNetworkObjPtr net,
                            const char *stateDir)
{
1725
    VIR_AUTOFREE(char *) dir = NULL;
1726
    DIR *dh = NULL;
1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757
    struct dirent *de;
    int rc;
    int ret = -1;

    if (!(dir = virNetworkObjGetPortStatusDir(net, stateDir)))
        goto cleanup;

    if ((rc = virDirOpenIfExists(&dh, dir)) <= 0) {
        ret = rc;
        goto cleanup;
    }

    while ((rc = virDirRead(dh, &de, dir)) > 0) {
        char *file = NULL;

        if (!virStringStripSuffix(de->d_name, ".xml"))
            continue;

        if (virAsprintf(&file, "%s/%s.xml", dir, de->d_name) < 0)
            goto cleanup;

        if (unlink(file) < 0 && errno != ENOENT)
            VIR_WARN("Unable to delete %s", file);

        VIR_FREE(file);
    }

    virHashRemoveAll(net->ports);

    ret = 0;
 cleanup:
1758
    VIR_DIR_CLOSE(dh);
1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817
    return ret;
}


typedef struct _virNetworkObjPortListExportData virNetworkObjPortListExportData;
typedef virNetworkObjPortListExportData *virNetworkObjPortListExportDataPtr;
struct _virNetworkObjPortListExportData {
    virNetworkPtr net;
    virNetworkDefPtr def;
    virNetworkPortPtr *ports;
    virNetworkPortListFilter filter;
    int nports;
    bool error;
};

static int
virNetworkObjPortListExportCallback(void *payload,
                                    const void *name ATTRIBUTE_UNUSED,
                                    void *opaque)
{
    virNetworkObjPortListExportDataPtr data = opaque;
    virNetworkPortDefPtr def = payload;
    virNetworkPortPtr port;

    if (data->error)
        return 0;

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

    if (!data->ports) {
        data->nports++;
        goto cleanup;
    }

    if (!(port = virGetNetworkPort(data->net, def->uuid))) {
        data->error = true;
        goto cleanup;
    }

    data->ports[data->nports++] = port;

 cleanup:
    return 0;
}


int
virNetworkObjPortListExport(virNetworkPtr net,
                            virNetworkObjPtr obj,
                            virNetworkPortPtr **ports,
                            virNetworkPortListFilter filter)
{
    virNetworkObjPortListExportData data = {
        net, obj->def, NULL, filter, 0, false,
    };
    int ret = -1;

1818 1819
    if (ports) {
        *ports = NULL;
1820

1821 1822 1823
        if (VIR_ALLOC_N(data.ports, virHashSize(obj->ports) + 1) < 0)
            goto cleanup;
    }
1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846

    virHashForEach(obj->ports, virNetworkObjPortListExportCallback, &data);

    if (data.error)
        goto cleanup;

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

    ret = data.nports;
 cleanup:
    while (data.ports && data.nports)
        virObjectUnref(data.ports[--data.nports]);

    VIR_FREE(data.ports);
    return ret;
}


1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879
typedef struct _virNetworkObjPortListForEachData virNetworkObjPortListForEachData;
struct _virNetworkObjPortListForEachData {
    virNetworkPortListIter iter;
    void *opaque;
    bool err;
};

static int
virNetworkObjPortForEachCallback(void *payload,
                                 const void *name ATTRIBUTE_UNUSED,
                                 void *opaque)
{
    virNetworkObjPortListForEachData *data = opaque;

    if (!data->iter(payload, data->opaque))
        data->err = true;

    return 0;
}

int
virNetworkObjPortForEach(virNetworkObjPtr obj,
                         virNetworkPortListIter iter,
                         void *opaque)
{
    virNetworkObjPortListForEachData data = { iter, opaque, false };
    virHashForEach(obj->ports, virNetworkObjPortForEachCallback, &data);
    if (data.err)
        return -1;
    return 0;
}


1880 1881 1882 1883
static int
virNetworkObjLoadAllPorts(virNetworkObjPtr net,
                          const char *stateDir)
{
1884
    VIR_AUTOFREE(char *) dir = NULL;
1885 1886 1887 1888 1889
    DIR *dh = NULL;
    struct dirent *de;
    int ret = -1;
    int rc;
    char uuidstr[VIR_UUID_STRING_BUFLEN];
1890
    VIR_AUTOPTR(virNetworkPortDef) portdef = NULL;
1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929

    if (!(dir = virNetworkObjGetPortStatusDir(net, stateDir)))
        goto cleanup;

    if ((rc = virDirOpenIfExists(&dh, dir)) <= 0) {
        ret = rc;
        goto cleanup;
    }

    while ((rc = virDirRead(dh, &de, dir)) > 0) {
        char *file = NULL;

        if (!virStringStripSuffix(de->d_name, ".xml"))
            continue;

        if (virAsprintf(&file, "%s/%s.xml", dir, de->d_name) < 0)
            goto cleanup;

        portdef = virNetworkPortDefParseFile(file);
        VIR_FREE(file);
        file = NULL;

        if (!portdef) {
            VIR_WARN("Cannot parse port %s", file);
            continue;
        }

        virUUIDFormat(portdef->uuid, uuidstr);
        if (virHashAddEntry(net->ports, uuidstr, portdef) < 0)
            goto cleanup;

        portdef = NULL;
    }

    ret = 0;
 cleanup:
    VIR_DIR_CLOSE(dh);
    return ret;
}