network_conf.c 142.2 KB
Newer Older
1 2 3
/*
 * network_conf.c: network XML handling
 *
4
 * Copyright (C) 2006-2014 Red Hat, Inc.
5 6 7 8 9 10 11 12 13 14 15 16 17
 * Copyright (C) 2006-2008 Daniel P. Berrange
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
18
 * License along with this library.  If not, see
O
Osier Yang 已提交
19
 * <http://www.gnu.org/licenses/>.
20 21 22 23 24 25
 *
 * Author: Daniel P. Berrange <berrange@redhat.com>
 */

#include <config.h>

26
#include <unistd.h>
27 28
#include <arpa/inet.h>
#include <sys/types.h>
A
Atsushi SAKAI 已提交
29
#include <sys/stat.h>
30
#include <fcntl.h>
31
#include <string.h>
32 33
#include <dirent.h>

34
#include "virerror.h"
35
#include "datatypes.h"
36
#include "network_conf.h"
37 38
#include "netdev_vport_profile_conf.h"
#include "netdev_bandwidth_conf.h"
39
#include "netdev_vlan_conf.h"
40
#include "viralloc.h"
41
#include "virxml.h"
42
#include "viruuid.h"
43
#include "virbuffer.h"
44
#include "c-ctype.h"
E
Eric Blake 已提交
45
#include "virfile.h"
46
#include "virstring.h"
47

48
#define MAX_BRIDGE_ID 256
49
#define VIR_FROM_THIS VIR_FROM_NETWORK
50 51 52
#define NEXT_FREE_CLASS_ID 3
/* currently, /sbin/tc implementation allows up to 16 bits for minor class size */
#define CLASS_ID_BITMAP_SIZE (1<<16)
53

54 55
VIR_ENUM_IMPL(virNetworkForward,
              VIR_NETWORK_FORWARD_LAST,
56 57 58 59 60 61
              "none", "nat", "route", "bridge", "private", "vepa", "passthrough", "hostdev")

VIR_ENUM_DECL(virNetworkForwardHostdevDevice)
VIR_ENUM_IMPL(virNetworkForwardHostdevDevice,
              VIR_NETWORK_FORWARD_HOSTDEV_DEVICE_LAST,
              "none", "pci", "netdev")
62

63 64 65 66 67 68
VIR_ENUM_IMPL(virNetworkForwardDriverName,
              VIR_NETWORK_FORWARD_DRIVER_NAME_LAST,
              "default",
              "kvm",
              "vfio")

69 70 71 72 73 74
VIR_ENUM_IMPL(virNetworkDNSForwardPlainNames,
              VIR_NETWORK_DNS_FORWARD_PLAIN_NAMES_LAST,
              "default",
              "yes",
              "no")

75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90
VIR_ENUM_IMPL(virNetworkTaint, VIR_NETWORK_TAINT_LAST,
              "hook-script");

bool
virNetworkObjTaint(virNetworkObjPtr obj,
                   enum virNetworkTaintFlags taint)
{
    unsigned int flag = (1 << taint);

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

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

E
Eric Blake 已提交
91
virNetworkObjPtr virNetworkFindByUUID(virNetworkObjListPtr nets,
92 93
                                      const unsigned char *uuid)
{
94
    size_t i;
95

96
    for (i = 0; i < nets->count; i++) {
97
        virNetworkObjLock(nets->objs[i]);
98 99
        if (!memcmp(nets->objs[i]->def->uuid, uuid, VIR_UUID_BUFLEN))
            return nets->objs[i];
100 101
        virNetworkObjUnlock(nets->objs[i]);
    }
102 103 104 105

    return NULL;
}

E
Eric Blake 已提交
106
virNetworkObjPtr virNetworkFindByName(virNetworkObjListPtr nets,
107 108
                                      const char *name)
{
109
    size_t i;
110

111
    for (i = 0; i < nets->count; i++) {
112
        virNetworkObjLock(nets->objs[i]);
113 114
        if (STREQ(nets->objs[i]->def->name, name))
            return nets->objs[i];
115 116
        virNetworkObjUnlock(nets->objs[i]);
    }
117 118 119 120 121

    return NULL;
}


122 123 124 125 126
static void
virPortGroupDefClear(virPortGroupDefPtr def)
{
    VIR_FREE(def->name);
    VIR_FREE(def->virtPortProfile);
127
    virNetDevBandwidthFree(def->bandwidth);
128
    virNetDevVlanClear(&def->vlan);
129
    def->bandwidth = NULL;
130 131 132 133 134
}

static void
virNetworkForwardIfDefClear(virNetworkForwardIfDefPtr def)
{
135 136
    if (def->type == VIR_NETWORK_FORWARD_HOSTDEV_DEVICE_NETDEV)
        VIR_FREE(def->device.dev);
137 138
}

139 140 141 142 143 144
static void
virNetworkForwardPfDefClear(virNetworkForwardPfDefPtr def)
{
    VIR_FREE(def->dev);
}

145 146 147 148
static void
virNetworkDHCPHostDefClear(virNetworkDHCPHostDefPtr def)
{
    VIR_FREE(def->mac);
149
    VIR_FREE(def->id);
150 151 152
    VIR_FREE(def->name);
}

153 154
static void
virNetworkIpDefClear(virNetworkIpDefPtr def)
155 156 157 158
{
    VIR_FREE(def->family);
    VIR_FREE(def->ranges);

159 160
    while (def->nhosts)
        virNetworkDHCPHostDefClear(&def->hosts[--def->nhosts]);
161 162 163 164 165 166

    VIR_FREE(def->hosts);
    VIR_FREE(def->tftproot);
    VIR_FREE(def->bootfile);
}

167 168 169 170 171 172
static void
virNetworkRouteDefClear(virNetworkRouteDefPtr def)
{
    VIR_FREE(def->family);
}

173 174
static void
virNetworkDNSTxtDefClear(virNetworkDNSTxtDefPtr def)
175
{
176 177 178 179 180 181 182
    VIR_FREE(def->name);
    VIR_FREE(def->value);
}

static void
virNetworkDNSHostDefClear(virNetworkDNSHostDefPtr def)
{
183 184
    while (def->nnames)
        VIR_FREE(def->names[--def->nnames]);
185 186 187 188 189 190 191 192 193 194 195 196 197 198 199
    VIR_FREE(def->names);
}

static void
virNetworkDNSSrvDefClear(virNetworkDNSSrvDefPtr def)
{
    VIR_FREE(def->domain);
    VIR_FREE(def->service);
    VIR_FREE(def->protocol);
    VIR_FREE(def->target);
}

static void
virNetworkDNSDefClear(virNetworkDNSDefPtr def)
{
200 201 202 203 204
    if (def->forwarders) {
        while (def->nfwds)
            VIR_FREE(def->forwarders[--def->nfwds]);
        VIR_FREE(def->forwarders);
    }
205
    if (def->txts) {
206 207
        while (def->ntxts)
            virNetworkDNSTxtDefClear(&def->txts[--def->ntxts]);
208
        VIR_FREE(def->txts);
209 210
    }
    if (def->hosts) {
211 212
        while (def->nhosts)
            virNetworkDNSHostDefClear(&def->hosts[--def->nhosts]);
213
        VIR_FREE(def->hosts);
214 215
    }
    if (def->srvs) {
216 217
        while (def->nsrvs)
            virNetworkDNSSrvDefClear(&def->srvs[--def->nsrvs]);
218
        VIR_FREE(def->srvs);
219 220 221
    }
}

222 223 224
static void
virNetworkForwardDefClear(virNetworkForwardDefPtr def)
{
225
    size_t i;
226

227 228
    for (i = 0; i < def->npfs && def->pfs; i++) {
        virNetworkForwardPfDefClear(&def->pfs[i]);
229 230 231
    }
    VIR_FREE(def->pfs);

232 233
    for (i = 0; i < def->nifs && def->ifs; i++) {
        virNetworkForwardIfDefClear(&def->ifs[i]);
234 235
    }
    VIR_FREE(def->ifs);
236
    def->nifs = def->npfs = 0;
237 238 239 240
}

void
virNetworkDefFree(virNetworkDefPtr def)
241
{
242
    size_t i;
243 244 245 246 247 248

    if (!def)
        return;

    VIR_FREE(def->name);
    VIR_FREE(def->bridge);
249
    VIR_FREE(def->domain);
250

251
    virNetworkForwardDefClear(&def->forward);
252

253 254
    for (i = 0; i < def->nips && def->ips; i++) {
        virNetworkIpDefClear(&def->ips[i]);
255
    }
256
    VIR_FREE(def->ips);
257

258 259
    for (i = 0; i < def->nroutes && def->routes; i++) {
        virNetworkRouteDefClear(&def->routes[i]);
260 261 262
    }
    VIR_FREE(def->routes);

263 264
    for (i = 0; i < def->nPortGroups && def->portGroups; i++) {
        virPortGroupDefClear(&def->portGroups[i]);
265 266 267
    }
    VIR_FREE(def->portGroups);

268
    virNetworkDNSDefClear(&def->dns);
269

270 271
    VIR_FREE(def->virtPortProfile);

272
    virNetDevBandwidthFree(def->bandwidth);
273
    virNetDevVlanClear(&def->vlan);
274 275 276 277 278 279 280 281 282 283
    VIR_FREE(def);
}

void virNetworkObjFree(virNetworkObjPtr net)
{
    if (!net)
        return;

    virNetworkDefFree(net->def);
    virNetworkDefFree(net->newDef);
284
    virBitmapFree(net->class_id);
285

286 287
    virMutexDestroy(&net->lock);

288 289 290
    VIR_FREE(net);
}

291 292
void virNetworkObjListFree(virNetworkObjListPtr nets)
{
293
    size_t i;
294

295
    for (i = 0; i < nets->count; i++)
296 297 298 299 300 301
        virNetworkObjFree(nets->objs[i]);

    VIR_FREE(nets->objs);
    nets->count = 0;
}

302 303 304
/*
 * virNetworkObjAssignDef:
 * @network: the network object to update
305
 * @def: the new NetworkDef (will be consumed by this function)
306 307
 * @live: is this new def the "live" version, or the "persistent" version
 *
308
 * Replace the appropriate copy of the given network's def or newDef
309
 * with def. Use "live" and current state of the network to determine
310 311 312 313 314 315
 * 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)
316 317
 *
 */
318
void
319
virNetworkObjAssignDef(virNetworkObjPtr network,
E
Eric Blake 已提交
320
                       virNetworkDefPtr def,
321
                       bool live)
322
{
323 324 325 326 327 328 329 330
    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.
         */
        if (network->persistent && !network->newDef)
            network->newDef = network->def;
        else
331
            virNetworkDefFree(network->def);
332 333 334 335 336 337 338
        network->def = def;
    } else { /* !live */
        virNetworkDefFree(network->newDef);
        if (virNetworkObjIsActive(network)) {
            /* save new configuration to be restored on network
             * shutdown, leaving current live def alone
             */
339
            network->newDef = def;
340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357
        } else { /* !live and !active */
            if (network->def && !network->persistent) {
                /* 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.
                 */
                network->newDef = def;
            } 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.
                 */
                network->newDef = NULL;
                virNetworkDefFree(network->def);
                network->def = def;
            }
358
        }
359
        network->persistent = !!def;
360 361
    }
}
362

363 364 365 366 367 368 369 370 371 372 373
/*
 * virNetworkAssignDef:
 * @nets: list of all networks
 * @def: the new NetworkDef (will be consumed by this function iff successful)
 * @live: is this new def the "live" version, or the "persistent" version
 *
 * 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.
 *
374
 * Returns NULL on error, virNetworkObjPtr on success.
375 376 377
 */
virNetworkObjPtr
virNetworkAssignDef(virNetworkObjListPtr nets,
E
Eric Blake 已提交
378
                    virNetworkDefPtr def,
379 380 381 382 383
                    bool live)
{
    virNetworkObjPtr network;

    if ((network = virNetworkFindByName(nets, def->name))) {
384
        virNetworkObjAssignDef(network, def, live);
385 386 387
        return network;
    }

388
    if (VIR_ALLOC(network) < 0)
389
        return NULL;
390
    if (virMutexInit(&network->lock) < 0) {
391 392
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       "%s", _("cannot initialize mutex"));
393 394 395
        VIR_FREE(network);
        return NULL;
    }
396
    virNetworkObjLock(network);
397

398 399
    if (VIR_APPEND_ELEMENT_COPY(nets->objs, nets->count, network) < 0 ||
        !(network->class_id = virBitmapNew(CLASS_ID_BITMAP_SIZE)))
400 401 402 403 404 405 406 407
        goto error;

    /* The first three class IDs are already taken */
    ignore_value(virBitmapSetBit(network->class_id, 0));
    ignore_value(virBitmapSetBit(network->class_id, 1));
    ignore_value(virBitmapSetBit(network->class_id, 2));

    network->def = def;
408
    network->persistent = !live;
409
    return network;
410

411
 error:
412 413 414
    virNetworkObjUnlock(network);
    virNetworkObjFree(network);
    return NULL;
415 416 417

}

418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444
/*
 * 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
virNetworkObjSetDefTransient(virNetworkObjPtr network, bool live)
{
    if (!virNetworkObjIsActive(network) && !live)
        return 0;

    if (!network->persistent || network->newDef)
        return 0;

    network->newDef = virNetworkDefCopy(network->def, VIR_NETWORK_XML_INACTIVE);
    return network->newDef ? 0 : -1;
}

445 446 447 448 449 450 451
/* virNetworkObjUnsetDefTransient:
 *
 * This *undoes* what virNetworkObjSetDefTransient did.
 */
void
virNetworkObjUnsetDefTransient(virNetworkObjPtr network)
{
452
    if (network->newDef) {
453 454 455 456 457 458
        virNetworkDefFree(network->def);
        network->def = network->newDef;
        network->newDef = NULL;
    }
}

459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526
/*
 * 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
virNetworkObjGetPersistentDef(virNetworkObjPtr network)
{
    if (network->newDef)
        return network->newDef;
    else
        return network->def;
}

/*
 * 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
virNetworkObjReplacePersistentDef(virNetworkObjPtr network,
                                  virNetworkDefPtr def)
{
    if (virNetworkObjIsActive(network)) {
        virNetworkDefFree(network->newDef);
        network->newDef = def;
    } else {
        virNetworkDefFree(network->def);
        network->def = def;
    }
    return 0;
}

/*
 * virNetworkDefCopy:
 * @def: NetworkDef to copy
 * @flags: VIR_NETWORK_XML_INACTIVE if appropriate
 *
 * make a deep copy of the given NetworkDef
 *
 * Returns a new NetworkDef on success, or NULL on failure.
 */
virNetworkDefPtr
virNetworkDefCopy(virNetworkDefPtr def, unsigned int flags)
{
    char *xml = NULL;
    virNetworkDefPtr newDef = NULL;

    if (!def) {
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       "%s", _("NULL NetworkDef"));
        return NULL;
    }

    /* deep copy with a format/parse cycle */
    if (!(xml = virNetworkDefFormat(def, flags)))
        goto cleanup;
    newDef = virNetworkDefParseString(xml);
527
 cleanup:
528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571
    VIR_FREE(xml);
    return newDef;
}

/*
 * virNetworkConfigChangeSetup:
 *
 * 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.
 */
int
virNetworkConfigChangeSetup(virNetworkObjPtr network, unsigned int flags)
{
    bool isActive;
    int ret = -1;

    isActive = virNetworkObjIsActive(network);

    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) {
        if (!network->persistent) {
            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.
         */
        if (isActive && (virNetworkObjSetDefTransient(network, false) < 0))
            goto cleanup;
    }

    ret = 0;
572
 cleanup:
573 574 575
    return ret;
}

576
void virNetworkRemoveInactive(virNetworkObjListPtr nets,
E
Eric Blake 已提交
577
                              virNetworkObjPtr net)
578
{
579
    size_t i;
580

581
    virNetworkObjUnlock(net);
582
    for (i = 0; i < nets->count; i++) {
583
        virNetworkObjLock(nets->objs[i]);
584
        if (nets->objs[i] == net) {
585
            virNetworkObjUnlock(nets->objs[i]);
586
            virNetworkObjFree(nets->objs[i]);
587

588
            VIR_DELETE_ELEMENT(nets->objs, i, nets->count);
589 590
            break;
        }
591
        virNetworkObjUnlock(nets->objs[i]);
592
    }
593 594
}

595 596
/* return ips[index], or NULL if there aren't enough ips */
virNetworkIpDefPtr
E
Eric Blake 已提交
597
virNetworkDefGetIpByIndex(const virNetworkDef *def,
598 599
                          int family, size_t n)
{
600
    size_t i;
601 602 603 604 605 606 607 608 609

    if (!def->ips || n >= def->nips)
        return NULL;

    if (family == AF_UNSPEC) {
        return &def->ips[n];
    }

    /* find the nth ip of type "family" */
610 611
    for (i = 0; i < def->nips; i++) {
        if (VIR_SOCKET_ADDR_IS_FAMILY(&def->ips[i].address, family)
612
            && (n-- <= 0)) {
613
            return &def->ips[i];
614 615 616 617 618 619
        }
    }
    /* failed to find enough of the right family */
    return NULL;
}

L
Laine Stump 已提交
620 621 622
/* return number of 1 bits in netmask for the network's ipAddress,
 * or -1 on error
 */
E
Eric Blake 已提交
623
int virNetworkIpDefPrefix(const virNetworkIpDef *def)
L
Laine Stump 已提交
624
{
625 626 627
    return virSocketAddrGetIpPrefix(&def->address,
                                    &def->netmask,
                                    def->prefix);
L
Laine Stump 已提交
628 629 630 631 632 633
}

/* Fill in a virSocketAddr with the proper netmask for this
 * definition, based on either the definition's netmask, or its
 * prefix. Return -1 on error (and set the netmask family to AF_UNSPEC)
 */
E
Eric Blake 已提交
634
int virNetworkIpDefNetmask(const virNetworkIpDef *def,
635
                           virSocketAddrPtr netmask)
L
Laine Stump 已提交
636
{
637
    if (VIR_SOCKET_ADDR_IS_FAMILY(&def->netmask, AF_INET)) {
L
Laine Stump 已提交
638 639 640 641
        *netmask = def->netmask;
        return 0;
    }

642
    return virSocketAddrPrefixToNetmask(virNetworkIpDefPrefix(def), netmask,
643
                                        VIR_SOCKET_ADDR_FAMILY(&def->address));
L
Laine Stump 已提交
644 645
}

646 647

static int
648
virSocketAddrRangeParseXML(const char *networkName,
649
                               xmlNodePtr node,
650
                               virSocketAddrRangePtr range)
651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684
{


    char *start = NULL, *end = NULL;
    int ret = -1;

    if (!(start = virXMLPropString(node, "start"))) {
        virReportError(VIR_ERR_XML_ERROR,
                       _("Missing 'start' attribute in dhcp range for network '%s'"),
                       networkName);
        goto cleanup;
    }
    if (virSocketAddrParse(&range->start, start, AF_UNSPEC) < 0)
        goto cleanup;

    if (!(end = virXMLPropString(node, "end"))) {
        virReportError(VIR_ERR_XML_ERROR,
                       _("Missing 'end' attribute in dhcp range for network '%s'"),
                       networkName);
        goto cleanup;
    }
    if (virSocketAddrParse(&range->end, end, AF_UNSPEC) < 0)
        goto cleanup;

    /* do a sanity check of the range */
    if (virSocketAddrGetRange(&range->start, &range->end) < 0) {
        virReportError(VIR_ERR_XML_ERROR,
                       _("Invalid dhcp range '%s' to '%s' in network '%s'"),
                       start, end, networkName);
        goto cleanup;
    }

    ret = 0;

685
 cleanup:
686 687 688 689 690 691
    VIR_FREE(start);
    VIR_FREE(end);
    return ret;
}

static int
692
virNetworkDHCPHostDefParseXML(const char *networkName,
E
Eric Blake 已提交
693
                              virNetworkIpDefPtr def,
694 695 696
                              xmlNodePtr node,
                              virNetworkDHCPHostDefPtr host,
                              bool partialOkay)
697
{
698
    char *mac = NULL, *name = NULL, *ip = NULL, *id = NULL;
699 700 701 702 703 704
    virMacAddr addr;
    virSocketAddr inaddr;
    int ret = -1;

    mac = virXMLPropString(node, "mac");
    if (mac != NULL) {
G
Gene Czarcinski 已提交
705 706 707 708 709 710 711
        if (VIR_SOCKET_ADDR_IS_FAMILY(&def->address, AF_INET6)) {
            virReportError(VIR_ERR_XML_ERROR,
                           _("Invalid to specify MAC address '%s' "
                             "in network '%s' IPv6 static host definition"),
                           mac, networkName);
            goto cleanup;
        }
712 713 714 715 716 717 718 719 720 721 722 723 724 725 726
        if (virMacAddrParse(mac, &addr) < 0) {
            virReportError(VIR_ERR_XML_ERROR,
                           _("Cannot parse MAC address '%s' in network '%s'"),
                           mac, networkName);
            goto cleanup;
        }
        if (virMacAddrIsMulticast(&addr)) {
            virReportError(VIR_ERR_XML_ERROR,
                           _("expected unicast mac address, found "
                             "multicast '%s' in network '%s'"),
                           (const char *)mac, networkName);
            goto cleanup;
        }
    }

727 728 729 730 731 732 733 734 735 736
    id = virXMLPropString(node, "id");
    if (id) {
        char *cp = id + strspn(id, "0123456789abcdefABCDEF:");
        if (*cp) {
            virReportError(VIR_ERR_XML_ERROR,
                           _("Invalid character '%c' in id '%s' of network '%s'"),
                           *cp, id, networkName);
        }
    }

737 738 739
    name = virXMLPropString(node, "name");
    if (name && (!c_isalpha(name[0]))) {
        virReportError(VIR_ERR_XML_ERROR,
740
                       _("Cannot use host name '%s' in network '%s'"),
741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763
                       name, networkName);
        goto cleanup;
    }

    ip = virXMLPropString(node, "ip");
    if (ip && (virSocketAddrParse(&inaddr, ip, AF_UNSPEC) < 0)) {
        virReportError(VIR_ERR_XML_ERROR,
                       _("Invalid IP address in static host definition "
                         "for network '%s'"),
                       networkName);
        goto cleanup;
    }

    if (partialOkay) {
        /* for search/match, you just need one of the three */
        if (!(mac || name || ip)) {
            virReportError(VIR_ERR_XML_ERROR,
                           _("At least one of name, mac, or ip attribute "
                             "must be specified for static host definition "
                             "in network '%s' "),
                           networkName);
        }
    } else {
G
Gene Czarcinski 已提交
764 765 766 767
        /* normal usage - you need at least name (IPv6) or one of MAC
         * address or name (IPv4)
         */
        if (VIR_SOCKET_ADDR_IS_FAMILY(&def->address, AF_INET6)) {
768
            if (!(id || name)) {
G
Gene Czarcinski 已提交
769 770
                virReportError(VIR_ERR_XML_ERROR,
                           _("Static host definition in IPv6 network '%s' "
771
                             "must have id or name attribute"),
G
Gene Czarcinski 已提交
772 773 774 775
                           networkName);
                goto cleanup;
            }
        } else if (!(mac || name)) {
776
            virReportError(VIR_ERR_XML_ERROR,
G
Gene Czarcinski 已提交
777
                           _("Static host definition in IPv4 network '%s' "
778 779 780 781 782 783 784 785 786 787 788 789 790 791 792
                             "must have mac or name attribute"),
                           networkName);
            goto cleanup;
        }
        if (!ip) {
            virReportError(VIR_ERR_XML_ERROR,
                           _("Missing IP address in static host definition "
                             "for network '%s'"),
                           networkName);
            goto cleanup;
        }
    }

    host->mac = mac;
    mac = NULL;
793 794
    host->id = id;
    id = NULL;
795 796 797 798 799 800
    host->name = name;
    name = NULL;
    if (ip)
        host->ip = inaddr;
    ret = 0;

801
 cleanup:
802
    VIR_FREE(mac);
803
    VIR_FREE(id);
804 805 806 807 808 809
    VIR_FREE(name);
    VIR_FREE(ip);
    return ret;
}

static int
810 811 812
virNetworkDHCPDefParseXML(const char *networkName,
                          xmlNodePtr node,
                          virNetworkIpDefPtr def)
813
{
814 815 816 817 818

    xmlNodePtr cur;

    cur = node->children;
    while (cur != NULL) {
819 820
        if (cur->type == XML_ELEMENT_NODE &&
            xmlStrEqual(cur->name, BAD_CAST "range")) {
821

822
            if (VIR_REALLOC_N(def->ranges, def->nranges + 1) < 0)
823
                return -1;
824
            if (virSocketAddrRangeParseXML(networkName, cur,
825
                                               &def->ranges[def->nranges]) < 0) {
826 827
                return -1;
            }
828
            def->nranges++;
829

830 831 832
        } else if (cur->type == XML_ELEMENT_NODE &&
            xmlStrEqual(cur->name, BAD_CAST "host")) {

833
            if (VIR_REALLOC_N(def->hosts, def->nhosts + 1) < 0)
834
                return -1;
G
Gene Czarcinski 已提交
835
            if (virNetworkDHCPHostDefParseXML(networkName, def, cur,
836 837
                                              &def->hosts[def->nhosts],
                                              false) < 0) {
838 839
                return -1;
            }
840
            def->nhosts++;
841

G
Gene Czarcinski 已提交
842 843 844
        } else if (VIR_SOCKET_ADDR_IS_FAMILY(&def->address, AF_INET) &&
                   cur->type == XML_ELEMENT_NODE &&
                   xmlStrEqual(cur->name, BAD_CAST "bootp")) {
845 846
            char *file;
            char *server;
847
            virSocketAddr inaddr;
848
            memset(&inaddr, 0, sizeof(inaddr));
849

850
            if (!(file = virXMLPropString(cur, "file"))) {
851 852 853
                cur = cur->next;
                continue;
            }
854
            server = virXMLPropString(cur, "server");
855

856
            if (server &&
857
                virSocketAddrParse(&inaddr, server, AF_UNSPEC) < 0) {
E
Eric Blake 已提交
858 859
                VIR_FREE(file);
                VIR_FREE(server);
860
                return -1;
E
Eric Blake 已提交
861
            }
862

863
            def->bootfile = file;
864
            def->bootserver = inaddr;
E
Eric Blake 已提交
865
            VIR_FREE(server);
866 867 868 869 870 871 872 873
        }

        cur = cur->next;
    }

    return 0;
}

874
static int
875 876 877 878
virNetworkDNSHostDefParseXML(const char *networkName,
                             xmlNodePtr node,
                             virNetworkDNSHostDefPtr def,
                             bool partialOkay)
879 880 881 882
{
    xmlNodePtr cur;
    char *ip;

883 884 885 886
    if (!(ip = virXMLPropString(node, "ip")) && !partialOkay) {
        virReportError(VIR_ERR_XML_DETAIL,
                       _("Missing IP address in network '%s' DNS HOST record"),
                       networkName);
887 888 889
        goto error;
    }

890 891 892 893 894
    if (ip && (virSocketAddrParse(&def->ip, ip, AF_UNSPEC) < 0)) {
        virReportError(VIR_ERR_XML_DETAIL,
                       _("Invalid IP address in network '%s' DNS HOST record"),
                       networkName);
        VIR_FREE(ip);
895 896
        goto error;
    }
897
    VIR_FREE(ip);
898 899 900 901 902 903

    cur = node->children;
    while (cur != NULL) {
        if (cur->type == XML_ELEMENT_NODE &&
            xmlStrEqual(cur->name, BAD_CAST "hostname")) {
              if (cur->children != NULL) {
904 905 906
                  char *name = (char *) xmlNodeGetContent(cur);

                  if (!name) {
907 908 909
                      virReportError(VIR_ERR_XML_DETAIL,
                                     _("Missing hostname in network '%s' DNS HOST record"),
                                     networkName);
910 911 912 913 914
                      goto error;
                  }
                  if (VIR_APPEND_ELEMENT(def->names, def->nnames, name) < 0) {
                      VIR_FREE(name);
                      goto error;
915
                  }
916 917 918 919
              }
        }
        cur = cur->next;
    }
920 921 922 923 924 925
    if (def->nnames == 0 && !partialOkay) {
        virReportError(VIR_ERR_XML_DETAIL,
                       _("Missing hostname in network '%s' DNS HOST record"),
                       networkName);
        goto error;
    }
926

927 928 929 930 931 932
    if (!VIR_SOCKET_ADDR_VALID(&def->ip) && def->nnames == 0) {
        virReportError(VIR_ERR_XML_DETAIL,
                       _("Missing ip and hostname in network '%s' DNS HOST record"),
                       networkName);
        goto error;
    }
933

934
    return 0;
935

936
 error:
937 938
    virNetworkDNSHostDefClear(def);
    return -1;
939 940
}

941 942 943 944 945 946 947 948 949 950 951 952 953 954 955
/* This includes all characters used in the names of current
 * /etc/services and /etc/protocols files (on Fedora 20), except ".",
 * which we can't allow because it would conflict with the use of "."
 * as a field separator in the SRV record, there appears to be no way
 * to escape it in, and the protocols/services that use "." in the
 * name are obscure and unlikely to be used anyway.
 */
#define PROTOCOL_CHARS \
    "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789" \
    "-+/"

#define SERVICE_CHARS \
    "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789" \
    "_-+/*"

956
static int
957 958 959 960 961
virNetworkDNSSrvDefParseXML(const char *networkName,
                            xmlNodePtr node,
                            xmlXPathContextPtr ctxt,
                            virNetworkDNSSrvDefPtr def,
                            bool partialOkay)
962
{
963 964 965 966 967
    int ret;
    xmlNodePtr save_ctxt = ctxt->node;

    ctxt->node = node;

968
    if (!(def->service = virXMLPropString(node, "service")) && !partialOkay) {
969
        virReportError(VIR_ERR_XML_DETAIL,
970 971
                       _("missing required service attribute in DNS SRV record "
                         "of network '%s'"), networkName);
972 973
        goto error;
    }
974 975 976 977 978 979 980 981 982 983 984 985 986 987 988
    if (def->service) {
        if (strlen(def->service) > DNS_RECORD_LENGTH_SRV) {
            virReportError(VIR_ERR_XML_DETAIL,
                           _("service attribute '%s' in network '%s' is too long, "
                             "limit is %d bytes"),
                           def->service, networkName, DNS_RECORD_LENGTH_SRV);
            goto error;
        }
        if (strspn(def->service, SERVICE_CHARS) < strlen(def->service)) {
            virReportError(VIR_ERR_XML_DETAIL,
                           _("invalid character in service attribute '%s' "
                             "in DNS SRV record of network '%s'"),
                           def->service, networkName);
            goto error;
        }
989 990
    }

991
    if (!(def->protocol = virXMLPropString(node, "protocol")) && !partialOkay) {
992
        virReportError(VIR_ERR_XML_DETAIL,
993 994
                       _("missing required protocol attribute "
                         "in DNS SRV record '%s' of network '%s'"),
995
                       def->service, networkName);
996 997
        goto error;
    }
998 999
    if (def->protocol &&
        strspn(def->protocol, PROTOCOL_CHARS) < strlen(def->protocol)) {
1000
        virReportError(VIR_ERR_XML_DETAIL,
1001 1002
                       _("invalid character in protocol attribute '%s' "
                         "in DNS SRV record of network '%s'"),
1003
                       def->protocol, networkName);
1004 1005 1006
        goto error;
    }

1007
    /* Following attributes are optional */
1008 1009
    def->domain = virXMLPropString(node, "domain");
    def->target = virXMLPropString(node, "target");
1010

1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025
    ret = virXPathUInt("string(./@port)", ctxt, &def->port);
    if (ret >= 0 && !def->target) {
        virReportError(VIR_ERR_XML_DETAIL,
                       _("DNS SRV port attribute not permitted without "
                         "target for service '%s' in network '%s'"),
                       def->service, networkName);
        goto error;
    }
    if (ret == -2 || (ret >= 0 && (def->port < 1 || def->port > 65535))) {
        virReportError(VIR_ERR_XML_DETAIL,
                       _("invalid DNS SRV port attribute "
                         "for service '%s' in network '%s'"),
                       def->service, networkName);
        goto error;
    }
1026

1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040
    ret = virXPathUInt("string(./@priority)", ctxt, &def->priority);
    if (ret >= 0 && !def->target) {
        virReportError(VIR_ERR_XML_DETAIL,
                       _("DNS SRV priority attribute not permitted without "
                         "target for service '%s' in network '%s'"),
                       def->service, networkName);
        goto error;
    }
    if (ret == -2 || (ret >= 0 && def->priority > 65535)) {
        virReportError(VIR_ERR_XML_DETAIL,
                       _("Invalid DNS SRV priority attribute "
                         "for service '%s' in network '%s'"),
                       def->service, networkName);
        goto error;
1041 1042
    }

1043 1044
    ret = virXPathUInt("string(./@weight)", ctxt, &def->weight);
    if (ret >= 0 && !def->target) {
1045
        virReportError(VIR_ERR_XML_DETAIL,
1046 1047 1048
                       _("DNS SRV weight attribute not permitted without "
                         "target for service '%s' in network '%s'"),
                       def->service, networkName);
1049 1050
        goto error;
    }
1051 1052 1053 1054 1055 1056 1057 1058 1059
    if (ret == -2 || (ret >= 0 && def->weight > 65535)) {
        virReportError(VIR_ERR_XML_DETAIL,
                       _("invalid DNS SRV weight attribute "
                         "for service '%s' in network '%s'"),
                       def->service, networkName);
        goto error;
    }

    ctxt->node = save_ctxt;
1060
    return 0;
1061

1062
 error:
1063
    virNetworkDNSSrvDefClear(def);
1064
    ctxt->node = save_ctxt;
1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091
    return -1;
}

static int
virNetworkDNSTxtDefParseXML(const char *networkName,
                            xmlNodePtr node,
                            virNetworkDNSTxtDefPtr def,
                            bool partialOkay)
{
    if (!(def->name = virXMLPropString(node, "name"))) {
        virReportError(VIR_ERR_XML_DETAIL,
                       _("missing required name attribute in DNS TXT record "
                         "of network %s"), networkName);
        goto error;
    }
    if (strchr(def->name, ' ') != NULL) {
        virReportError(VIR_ERR_XML_DETAIL,
                       _("prohibited space character in DNS TXT record "
                         "name '%s' of network %s"), def->name, networkName);
        goto error;
    }
    if (!(def->value = virXMLPropString(node, "value")) && !partialOkay) {
        virReportError(VIR_ERR_XML_DETAIL,
                       _("missing required value attribute in DNS TXT record "
                         "named '%s' of network %s"), def->name, networkName);
        goto error;
    }
1092

1093 1094 1095 1096 1097 1098 1099
    if (!(def->name || def->value)) {
        virReportError(VIR_ERR_XML_DETAIL,
                       _("Missing required name or value "
                         "in DNS TXT record of network %s"), networkName);
        goto error;
    }
    return 0;
1100

1101
 error:
1102 1103
    virNetworkDNSTxtDefClear(def);
    return -1;
1104 1105
}

1106
static int
1107
virNetworkDNSDefParseXML(const char *networkName,
1108
                         xmlNodePtr node,
1109 1110
                         xmlXPathContextPtr ctxt,
                         virNetworkDNSDefPtr def)
1111
{
1112 1113 1114
    xmlNodePtr *hostNodes = NULL;
    xmlNodePtr *srvNodes = NULL;
    xmlNodePtr *txtNodes = NULL;
1115
    xmlNodePtr *fwdNodes = NULL;
1116
    char *forwardPlainNames = NULL;
1117
    int nhosts, nsrvs, ntxts, nfwds;
1118 1119
    size_t i;
    int ret = -1;
1120
    xmlNodePtr save = ctxt->node;
1121

1122 1123
    ctxt->node = node;

1124 1125
    forwardPlainNames = virXPathString("string(./@forwardPlainNames)", ctxt);
    if (forwardPlainNames) {
1126 1127 1128
        def->forwardPlainNames
            = virNetworkDNSForwardPlainNamesTypeFromString(forwardPlainNames);
        if (def->forwardPlainNames <= 0) {
1129 1130 1131 1132 1133 1134 1135 1136
            virReportError(VIR_ERR_XML_ERROR,
                           _("Invalid dns forwardPlainNames setting '%s' "
                             "in network '%s'"),
                           forwardPlainNames, networkName);
            goto cleanup;
        }
    }

1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160
    nfwds = virXPathNodeSet("./forwarder", ctxt, &fwdNodes);
    if (nfwds < 0) {
        virReportError(VIR_ERR_XML_ERROR,
                       _("invalid <forwarder> element found in <dns> of network %s"),
                       networkName);
        goto cleanup;
    }
    if (nfwds > 0) {
        if (VIR_ALLOC_N(def->forwarders, nfwds) < 0)
            goto cleanup;

        for (i = 0; i < nfwds; i++) {
            def->forwarders[i] = virXMLPropString(fwdNodes[i], "addr");
            if (virSocketAddrParse(NULL, def->forwarders[i], AF_UNSPEC) < 0) {
                virReportError(VIR_ERR_XML_ERROR,
                           _("Invalid forwarder IP address '%s' "
                             "in network '%s'"),
                           def->forwarders[i], networkName);
                goto cleanup;
            }
            def->nfwds++;
        }
    }

1161 1162 1163 1164 1165 1166
    nhosts = virXPathNodeSet("./host", ctxt, &hostNodes);
    if (nhosts < 0) {
        virReportError(VIR_ERR_XML_ERROR,
                       _("invalid <host> element found in <dns> of network %s"),
                       networkName);
        goto cleanup;
1167
    }
1168
    if (nhosts > 0) {
1169
        if (VIR_ALLOC_N(def->hosts, nhosts) < 0)
1170
            goto cleanup;
1171

1172 1173
        for (i = 0; i < nhosts; i++) {
            if (virNetworkDNSHostDefParseXML(networkName, hostNodes[i],
1174 1175
                                             &def->hosts[def->nhosts], false) < 0) {
                goto cleanup;
1176
            }
1177 1178 1179
            def->nhosts++;
        }
    }
1180

1181 1182 1183 1184 1185 1186 1187 1188
    nsrvs = virXPathNodeSet("./srv", ctxt, &srvNodes);
    if (nsrvs < 0) {
        virReportError(VIR_ERR_XML_ERROR,
                       _("invalid <srv> element found in <dns> of network %s"),
                       networkName);
        goto cleanup;
    }
    if (nsrvs > 0) {
1189
        if (VIR_ALLOC_N(def->srvs, nsrvs) < 0)
1190
            goto cleanup;
1191

1192 1193
        for (i = 0; i < nsrvs; i++) {
            if (virNetworkDNSSrvDefParseXML(networkName, srvNodes[i], ctxt,
1194 1195
                                            &def->srvs[def->nsrvs], false) < 0) {
                goto cleanup;
1196
            }
1197 1198 1199
            def->nsrvs++;
        }
    }
1200

1201 1202 1203 1204 1205 1206 1207 1208
    ntxts = virXPathNodeSet("./txt", ctxt, &txtNodes);
    if (ntxts < 0) {
        virReportError(VIR_ERR_XML_ERROR,
                       _("invalid <txt> element found in <dns> of network %s"),
                       networkName);
        goto cleanup;
    }
    if (ntxts > 0) {
1209
        if (VIR_ALLOC_N(def->txts, ntxts) < 0)
1210
            goto cleanup;
1211

1212 1213
        for (i = 0; i < ntxts; i++) {
            if (virNetworkDNSTxtDefParseXML(networkName, txtNodes[i],
1214 1215 1216 1217 1218
                                            &def->txts[def->ntxts], false) < 0) {
                goto cleanup;
            }
            def->ntxts++;
        }
1219 1220 1221
    }

    ret = 0;
1222
 cleanup:
1223
    VIR_FREE(forwardPlainNames);
1224
    VIR_FREE(fwdNodes);
1225 1226 1227 1228
    VIR_FREE(hostNodes);
    VIR_FREE(srvNodes);
    VIR_FREE(txtNodes);
    ctxt->node = save;
1229 1230 1231
    return ret;
}

1232
static int
1233 1234 1235 1236
virNetworkIPDefParseXML(const char *networkName,
                        xmlNodePtr node,
                        xmlXPathContextPtr ctxt,
                        virNetworkIpDefPtr def)
1237 1238 1239 1240 1241 1242 1243 1244
{
    /*
     * virNetworkIpDef object is already allocated as part of an array.
     * On failure clear it out, but don't free it.
     */

    xmlNodePtr cur, save;
    char *address = NULL, *netmask = NULL;
G
Gene Czarcinski 已提交
1245 1246
    unsigned long prefix = 0;
    int prefixRc;
1247 1248 1249 1250 1251 1252 1253
    int result = -1;

    save = ctxt->node;
    ctxt->node = node;

    /* grab raw data from XML */
    def->family = virXPathString("string(./@family)", ctxt);
G
Gene Czarcinski 已提交
1254

1255
    address = virXPathString("string(./@address)", ctxt);
G
Gene Czarcinski 已提交
1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267
    if (!address) {
        virReportError(VIR_ERR_XML_ERROR,
                       _("Missing required address attribute in network '%s'"),
                       networkName);
        goto cleanup;
    }
    if (virSocketAddrParse(&def->address, address, AF_UNSPEC) < 0) {
        virReportError(VIR_ERR_XML_ERROR,
                       _("Invalid address '%s' in network '%s'"),
                       address, networkName);
        goto cleanup;
    }
1268 1269

    netmask = virXPathString("string(./@netmask)", ctxt);
G
Gene Czarcinski 已提交
1270 1271 1272 1273 1274 1275 1276
    if (netmask &&
        (virSocketAddrParse(&def->netmask, netmask, AF_UNSPEC) < 0)) {
        virReportError(VIR_ERR_XML_ERROR,
                       _("Invalid netmask '%s' in network '%s'"),
                       netmask, networkName);
        goto cleanup;
    }
1277

G
Gene Czarcinski 已提交
1278 1279 1280 1281 1282 1283
    prefixRc = virXPathULong("string(./@prefix)", ctxt, &prefix);
    if (prefixRc == -2) {
        virReportError(VIR_ERR_XML_ERROR,
                       _("Invalid ULong value specified for prefix in definition of network '%s'"),
                       networkName);
        goto cleanup;
1284
    }
G
Gene Czarcinski 已提交
1285 1286 1287 1288
    if (prefixRc < 0)
        def->prefix = 0;
    else
        def->prefix = prefix;
1289

G
Gene Czarcinski 已提交
1290 1291
    /* validate address, etc. for each family */
    if ((def->family == NULL) || (STREQ(def->family, "ipv4"))) {
1292 1293
        if (!(VIR_SOCKET_ADDR_IS_FAMILY(&def->address, AF_INET) ||
              VIR_SOCKET_ADDR_IS_FAMILY(&def->address, AF_UNSPEC))) {
1294
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
G
Gene Czarcinski 已提交
1295 1296
                           _("%s family specified for non-IPv4 address '%s' in network '%s'"),
                           def->family == NULL? "no" : "ipv4", address, networkName);
1297
            goto cleanup;
1298
        }
G
Gene Czarcinski 已提交
1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313
        if (netmask) {
            if (!VIR_SOCKET_ADDR_IS_FAMILY(&def->netmask, AF_INET)) {
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                               _("Invalid netmask '%s' for address '%s' "
                                 "in network '%s' (both must be IPv4)"),
                               netmask, address, networkName);
                goto cleanup;
            }
            if (def->prefix > 0) {
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                               _("Network '%s' IP address cannot have "
                                 "both a prefix and a netmask"), networkName);
                goto cleanup;
            }
        } else if (def->prefix > 32) {
1314
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
G
Gene Czarcinski 已提交
1315 1316
                           _("Invalid IPv4 prefix '%lu' in network '%s'"),
                           prefix, networkName);
1317
            goto cleanup;
1318 1319
        }
    } else if (STREQ(def->family, "ipv6")) {
1320
        if (!VIR_SOCKET_ADDR_IS_FAMILY(&def->address, AF_INET6)) {
1321
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
G
Gene Czarcinski 已提交
1322
                           _("Family 'ipv6' specified for non-IPv6 address '%s' in network '%s'"),
1323
                           address, networkName);
1324
            goto cleanup;
1325
        }
G
Gene Czarcinski 已提交
1326
        if (netmask) {
1327
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
G
Gene Czarcinski 已提交
1328
                           _("netmask not allowed for IPv6 address '%s' in network '%s'"),
1329
                           address, networkName);
1330
            goto cleanup;
1331
        }
G
Gene Czarcinski 已提交
1332
        if (def->prefix > 128) {
1333
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
G
Gene Czarcinski 已提交
1334 1335
                           _("Invalid IPv6 prefix '%lu' in network '%s'"),
                           prefix, networkName);
1336
            goto cleanup;
1337
        }
G
Gene Czarcinski 已提交
1338 1339 1340 1341 1342
    } else {
        virReportError(VIR_ERR_XML_ERROR,
                       _("Unrecognized family '%s' in network '%s'"),
                       def->family, networkName);
        goto cleanup;
1343 1344
    }

G
Gene Czarcinski 已提交
1345 1346 1347 1348 1349 1350 1351 1352 1353
    cur = node->children;
    while (cur != NULL) {
        if (cur->type == XML_ELEMENT_NODE &&
            xmlStrEqual(cur->name, BAD_CAST "dhcp")) {
            if (virNetworkDHCPDefParseXML(networkName, cur, def) < 0)
                goto cleanup;
        } else if (cur->type == XML_ELEMENT_NODE &&
                   xmlStrEqual(cur->name, BAD_CAST "tftp")) {
            char *root;
1354

G
Gene Czarcinski 已提交
1355 1356 1357 1358 1359
            if (!VIR_SOCKET_ADDR_IS_FAMILY(&def->address, AF_INET)) {
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                               _("Unsupported <tftp> element in an IPv6 element in network '%s'"),
                               networkName);
                goto cleanup;
1360
            }
G
Gene Czarcinski 已提交
1361 1362 1363 1364 1365
            if (!(root = virXMLPropString(cur, "root"))) {
                cur = cur->next;
                continue;
            }
            def->tftproot = (char *)root;
1366
        }
G
Gene Czarcinski 已提交
1367
        cur = cur->next;
1368
    }
1369

1370 1371
    result = 0;

1372
 cleanup:
1373 1374
    if (result < 0) {
        virNetworkIpDefClear(def);
1375
    }
1376 1377 1378 1379 1380
    VIR_FREE(address);
    VIR_FREE(netmask);

    ctxt->node = save;
    return result;
1381 1382
}

1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597
static int
virNetworkRouteDefParseXML(const char *networkName,
                           xmlNodePtr node,
                           xmlXPathContextPtr ctxt,
                           virNetworkRouteDefPtr def)
{
    /*
     * virNetworkRouteDef object is already allocated as part
     * of an array.  On failure clear: it out, but don't free it.
     */

    xmlNodePtr save;
    char *address = NULL, *netmask = NULL;
    char *gateway = NULL;
    unsigned long prefix = 0, metric = 0;
    int result = -1;
    int prefixRc, metricRc;
    virSocketAddr testAddr;

    save = ctxt->node;
    ctxt->node = node;

    /* grab raw data from XML */
    def->family = virXPathString("string(./@family)", ctxt);
    address = virXPathString("string(./@address)", ctxt);
    netmask = virXPathString("string(./@netmask)", ctxt);
    gateway = virXPathString("string(./@gateway)", ctxt);
    prefixRc = virXPathULong("string(./@prefix)", ctxt, &prefix);
    if (prefixRc == -2) {
        virReportError(VIR_ERR_XML_ERROR,
                       _("Invalid prefix specified "
                         "in route definition of network '%s'"),
                       networkName);
        goto cleanup;
    }
    def->has_prefix = (prefixRc == 0);
    def->prefix = prefix;
    metricRc = virXPathULong("string(./@metric)", ctxt, &metric);
    if (metricRc == -2) {
        virReportError(VIR_ERR_XML_ERROR,
                       _("Invalid metric specified "
                         "in route definition of network '%s'"),
                       networkName);
        goto cleanup;
    }
    if (metricRc == 0) {
        def->has_metric = true;
        if (metric == 0) {
            virReportError(VIR_ERR_XML_ERROR,
                           _("Invalid metric value, must be > 0 "
                             "in route definition of network '%s'"),
                           networkName);
            goto cleanup;
        }
    }
    def->metric = metric;

    /* Note: both network and gateway addresses must be specified */

    if (!address) {
        virReportError(VIR_ERR_XML_ERROR,
                       _("Missing required address attribute "
                         "in route definition of network '%s'"),
                       networkName);
        goto cleanup;
    }

    if (!gateway) {
        virReportError(VIR_ERR_XML_ERROR,
                       _("Missing required gateway attribute "
                         "in route definition of network '%s'"),
                       networkName);
        goto cleanup;
    }

    if (virSocketAddrParse(&def->address, address, AF_UNSPEC) < 0) {
        virReportError(VIR_ERR_XML_ERROR,
                       _("Bad network address '%s' "
                         "in route definition of network '%s'"),
                       address, networkName);
        goto cleanup;
    }

    if (virSocketAddrParse(&def->gateway, gateway, AF_UNSPEC) < 0) {
        virReportError(VIR_ERR_XML_ERROR,
                       _("Bad gateway address '%s' "
                         "in route definition of network '%s'"),
                       gateway, networkName);
        goto cleanup;
    }

    /* validate network address, etc. for each family */
    if ((def->family == NULL) || (STREQ(def->family, "ipv4"))) {
        if (!(VIR_SOCKET_ADDR_IS_FAMILY(&def->address, AF_INET) ||
              VIR_SOCKET_ADDR_IS_FAMILY(&def->address, AF_UNSPEC))) {
            virReportError(VIR_ERR_XML_ERROR,
                           def->family == NULL ?
                           _("No family specified for non-IPv4 address '%s' "
                             "in route definition of network '%s'") :
                           _("IPv4 family specified for non-IPv4 address '%s' "
                             "in route definition of network '%s'"),
                           address, networkName);
            goto cleanup;
        }
        if (!VIR_SOCKET_ADDR_IS_FAMILY(&def->gateway, AF_INET)) {
            virReportError(VIR_ERR_XML_ERROR,
                           def->family == NULL ?
                           _("No family specified for non-IPv4 gateway '%s' "
                             "in route definition of network '%s'") :
                           _("IPv4 family specified for non-IPv4 gateway '%s' "
                             "in route definition of network '%s'"),
                           address, networkName);
            goto cleanup;
        }
        if (netmask) {
            if (virSocketAddrParse(&def->netmask, netmask, AF_UNSPEC) < 0) {
                virReportError(VIR_ERR_XML_ERROR,
                               _("Bad netmask address '%s' "
                                 "in route definition of network '%s'"),
                               netmask, networkName);
                goto cleanup;
            }
            if (!VIR_SOCKET_ADDR_IS_FAMILY(&def->netmask, AF_INET)) {
                virReportError(VIR_ERR_XML_ERROR,
                               _("Network '%s' has invalid netmask '%s' "
                                 "for address '%s' (both must be IPv4)"),
                               networkName, netmask, address);
                goto cleanup;
            }
            if (def->has_prefix) {
                /* can't have both netmask and prefix at the same time */
                virReportError(VIR_ERR_XML_ERROR,
                               _("Route definition '%s' cannot have both "
                                 "a prefix and a netmask"),
                               networkName);
                goto cleanup;
            }
        }
        if (def->prefix > 32) {
            virReportError(VIR_ERR_XML_ERROR,
                           _("Invalid prefix %u specified "
                             "in route definition of network '%s', "
                             "must be 0 - 32"),
                           def->prefix, networkName);
            goto cleanup;
        }
    } else if (STREQ(def->family, "ipv6")) {
        if (!VIR_SOCKET_ADDR_IS_FAMILY(&def->address, AF_INET6)) {
            virReportError(VIR_ERR_XML_ERROR,
                           _("ipv6 family specified for non-IPv6 address '%s' "
                             "in route definition of network '%s'"),
                           address, networkName);
            goto cleanup;
        }
        if (netmask) {
            virReportError(VIR_ERR_XML_ERROR,
                           _("Specifying netmask invalid for IPv6 address '%s' "
                             "in route definition of network '%s'"),
                           address, networkName);
            goto cleanup;
        }
        if (!VIR_SOCKET_ADDR_IS_FAMILY(&def->gateway, AF_INET6)) {
            virReportError(VIR_ERR_XML_ERROR,
                           _("ipv6 specified for non-IPv6 gateway address '%s' "
                             "in route definition of network '%s'"),
                           gateway, networkName);
            goto cleanup;
        }
        if (def->prefix > 128) {
            virReportError(VIR_ERR_XML_ERROR,
                           _("Invalid prefix %u specified "
                             "in route definition of network '%s', "
                             "must be 0 - 128"),
                           def->prefix, networkName);
            goto cleanup;
        }
    } else {
        virReportError(VIR_ERR_XML_ERROR,
                       _("Unrecognized family '%s' "
                         "in route definition of network'%s'"),
                       def->family, networkName);
        goto cleanup;
    }

    /* make sure the address is a network address */
    if (netmask) {
        if (virSocketAddrMask(&def->address, &def->netmask, &testAddr) < 0) {
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("error converting address '%s' with netmask '%s' "
                             "to network-address "
                             "in route definition of network '%s'"),
                           address, netmask, networkName);
            goto cleanup;
        }
    } else {
        if (virSocketAddrMaskByPrefix(&def->address,
                                      def->prefix, &testAddr) < 0) {
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("error converting address '%s' with prefix %u "
                             "to network-address "
                             "in route definition of network '%s'"),
                           address, def->prefix, networkName);
            goto cleanup;
        }
    }
    if (!virSocketAddrEqual(&def->address, &testAddr)) {
        virReportError(VIR_ERR_XML_ERROR,
                       _("address '%s' in route definition of network '%s' "
                         "is not a network address"),
                       address, networkName);
        goto cleanup;
    }

    result = 0;

1598
 cleanup:
1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609
    if (result < 0) {
        virNetworkRouteDefClear(def);
    }
    VIR_FREE(address);
    VIR_FREE(netmask);
    VIR_FREE(gateway);

    ctxt->node = save;
    return result;
}

1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621
static int
virNetworkPortGroupParseXML(virPortGroupDefPtr def,
                            xmlNodePtr node,
                            xmlXPathContextPtr ctxt)
{
    /*
     * virPortGroupDef object is already allocated as part of an array.
     * On failure clear it out, but don't free it.
     */

    xmlNodePtr save;
    xmlNodePtr virtPortNode;
1622
    xmlNodePtr vlanNode;
1623
    xmlNodePtr bandwidth_node;
1624 1625 1626 1627 1628 1629 1630 1631 1632
    char *isDefault = NULL;

    int result = -1;

    save = ctxt->node;
    ctxt->node = node;

    /* grab raw data from XML */
    def->name = virXPathString("string(./@name)", ctxt);
1633 1634 1635
    if (!def->name) {
        virReportError(VIR_ERR_XML_ERROR, "%s",
                       _("Missing required name attribute in portgroup"));
1636
        goto cleanup;
1637 1638
    }

1639 1640 1641 1642 1643
    isDefault = virXPathString("string(./@default)", ctxt);
    def->isDefault = isDefault && STRCASEEQ(isDefault, "yes");

    virtPortNode = virXPathNode("./virtualport", ctxt);
    if (virtPortNode &&
1644
        (!(def->virtPortProfile = virNetDevVPortProfileParse(virtPortNode, 0)))) {
1645
        goto cleanup;
1646
    }
1647

1648 1649
    bandwidth_node = virXPathNode("./bandwidth", ctxt);
    if (bandwidth_node &&
1650
        !(def->bandwidth = virNetDevBandwidthParse(bandwidth_node, -1))) {
1651
        goto cleanup;
1652 1653
    }

1654 1655
    vlanNode = virXPathNode("./vlan", ctxt);
    if (vlanNode && virNetDevVlanParse(vlanNode, ctxt, &def->vlan) < 0)
1656
        goto cleanup;
1657

1658
    result = 0;
1659
 cleanup:
1660 1661 1662 1663 1664 1665 1666 1667 1668
    if (result < 0) {
        virPortGroupDefClear(def);
    }
    VIR_FREE(isDefault);

    ctxt->node = save;
    return result;
}

1669 1670 1671 1672 1673 1674 1675 1676
static int
virNetworkForwardNatDefParseXML(const char *networkName,
                                xmlNodePtr node,
                                xmlXPathContextPtr ctxt,
                                virNetworkForwardDefPtr def)
{
    int ret = -1;
    xmlNodePtr *natAddrNodes = NULL;
1677 1678
    xmlNodePtr *natPortNodes = NULL;
    int nNatAddrs, nNatPorts;
1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720
    char *addrStart = NULL;
    char *addrEnd = NULL;
    xmlNodePtr save = ctxt->node;

    ctxt->node = node;

    if (def->type != VIR_NETWORK_FORWARD_NAT) {
        virReportError(VIR_ERR_XML_ERROR,
                       _("The <nat> element can only be used when <forward> 'mode' is 'nat' in network %s"),
                       networkName);
        goto cleanup;
    }

    /* addresses for SNAT */
    nNatAddrs = virXPathNodeSet("./address", ctxt, &natAddrNodes);
    if (nNatAddrs < 0) {
        virReportError(VIR_ERR_XML_ERROR,
                       _("invalid <address> element found in <forward> of "
                         "network %s"), networkName);
        goto cleanup;
    } else if (nNatAddrs > 1) {
        virReportError(VIR_ERR_XML_ERROR,
                       _("Only one <address> element is allowed in <nat> in "
                         "<forward> in network %s"), networkName);
        goto cleanup;
    } else if (nNatAddrs == 1) {
        addrStart = virXMLPropString(*natAddrNodes, "start");
        if (addrStart == NULL) {
            virReportError(VIR_ERR_XML_ERROR,
                           _("missing 'start' attribute in <address> element in <nat> in "
                             "<forward> in network %s"), networkName);
            goto cleanup;
        }
        addrEnd = virXMLPropString(*natAddrNodes, "end");
        if (addrEnd == NULL) {
            virReportError(VIR_ERR_XML_ERROR,
                           _("missing 'end' attribute in <address> element in <nat> in "
                             "<forward> in network %s"), networkName);
            goto cleanup;
        }
    }

1721
    if (addrStart && virSocketAddrParse(&def->addr.start, addrStart, AF_INET) < 0) {
1722 1723 1724 1725 1726 1727
        virReportError(VIR_ERR_XML_ERROR,
                       _("Bad ipv4 start address '%s' in <nat> in <forward> in "
                         "network '%s'"), addrStart, networkName);
        goto cleanup;
    }

1728
    if (addrEnd && virSocketAddrParse(&def->addr.end, addrEnd, AF_INET) < 0) {
1729 1730 1731 1732 1733 1734
        virReportError(VIR_ERR_XML_ERROR,
                       _("Bad ipv4 end address '%s' in <nat> in <forward> in "
                         "network '%s'"), addrEnd, networkName);
        goto cleanup;
    }

1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747
    /* ports for SNAT and MASQUERADE */
    nNatPorts = virXPathNodeSet("./port", ctxt, &natPortNodes);
    if (nNatPorts < 0) {
        virReportError(VIR_ERR_XML_ERROR,
                       _("invalid <port> element found in <forward> of "
                         "network %s"), networkName);
        goto cleanup;
    } else if (nNatPorts > 1) {
        virReportError(VIR_ERR_XML_ERROR,
                       _("Only one <port> element is allowed in <nat> in "
                         "<forward> in network %s"), networkName);
        goto cleanup;
    } else if (nNatPorts == 1) {
1748 1749
        if (virXPathUInt("string(./port[1]/@start)", ctxt, &def->port.start) < 0
            || def->port.start > 65535) {
1750 1751 1752 1753 1754 1755 1756

            virReportError(VIR_ERR_XML_DETAIL,
                           _("Missing or invalid 'start' attribute in <port> "
                             "in <nat> in <forward> in network %s"),
                             networkName);
            goto cleanup;
        }
1757 1758
        if (virXPathUInt("string(./port[1]/@end)", ctxt, &def->port.end) < 0
            || def->port.end > 65535 || def->port.end < def->port.start) {
1759 1760 1761 1762 1763 1764
            virReportError(VIR_ERR_XML_DETAIL,
                           _("Missing or invalid 'end' attribute in <port> in "
                             "<nat> in <forward> in network %s"), networkName);
            goto cleanup;
        }
    }
1765 1766
    ret = 0;

1767
 cleanup:
1768 1769 1770
    VIR_FREE(addrStart);
    VIR_FREE(addrEnd);
    VIR_FREE(natAddrNodes);
1771
    VIR_FREE(natPortNodes);
1772 1773 1774 1775
    ctxt->node = save;
    return ret;
}

1776 1777 1778 1779 1780 1781
static int
virNetworkForwardDefParseXML(const char *networkName,
                             xmlNodePtr node,
                             xmlXPathContextPtr ctxt,
                             virNetworkForwardDefPtr def)
{
1782 1783
    size_t i;
    int ret = -1;
1784 1785 1786
    xmlNodePtr *forwardIfNodes = NULL;
    xmlNodePtr *forwardPfNodes = NULL;
    xmlNodePtr *forwardAddrNodes = NULL;
1787 1788
    xmlNodePtr *forwardNatNodes = NULL;
    int nForwardIfs, nForwardAddrs, nForwardPfs, nForwardNats;
1789 1790
    char *forwardDev = NULL;
    char *forwardManaged = NULL;
1791
    char *forwardDriverName = NULL;
1792 1793 1794 1795 1796 1797 1798 1799 1800
    char *type = NULL;
    xmlNodePtr save = ctxt->node;

    ctxt->node = node;

    if (!(type = virXPathString("string(./@mode)", ctxt))) {
        def->type = VIR_NETWORK_FORWARD_NAT;
    } else {
        if ((def->type = virNetworkForwardTypeFromString(type)) < 0) {
1801
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813
                           _("unknown forwarding type '%s'"), type);
            goto cleanup;
        }
        VIR_FREE(type);
    }

    forwardManaged = virXPathString("string(./@managed)", ctxt);
    if (forwardManaged != NULL &&
        STRCASEEQ(forwardManaged, "yes")) {
        def->managed = true;
    }

1814 1815 1816 1817 1818 1819
    forwardDriverName = virXPathString("string(./driver/@name)", ctxt);
    if (forwardDriverName) {
        int driverName
            = virNetworkForwardDriverNameTypeFromString(forwardDriverName);

        if (driverName <= 0) {
1820
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
1821 1822 1823 1824 1825 1826 1827 1828
                           _("Unknown forward <driver name='%s'/> "
                             "in network %s"),
                           forwardDriverName, networkName);
            goto cleanup;
        }
        def->driverName = driverName;
    }

1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853
    /* bridge and hostdev modes can use a pool of physical interfaces */
    nForwardIfs = virXPathNodeSet("./interface", ctxt, &forwardIfNodes);
    if (nForwardIfs < 0) {
        virReportError(VIR_ERR_XML_ERROR,
                       _("invalid <interface> element found in <forward> of network %s"),
                       networkName);
        goto cleanup;
    }

    nForwardAddrs = virXPathNodeSet("./address", ctxt, &forwardAddrNodes);
    if (nForwardAddrs < 0) {
        virReportError(VIR_ERR_XML_ERROR,
                       _("invalid <address> element found in <forward> of network %s"),
                       networkName);
        goto cleanup;
    }

    nForwardPfs = virXPathNodeSet("./pf", ctxt, &forwardPfNodes);
    if (nForwardPfs < 0) {
        virReportError(VIR_ERR_XML_ERROR,
                       _("invalid <pf> element found in <forward> of network %s"),
                       networkName);
        goto cleanup;
    }

1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871
    nForwardNats = virXPathNodeSet("./nat", ctxt, &forwardNatNodes);
    if (nForwardNats < 0) {
        virReportError(VIR_ERR_XML_ERROR,
                       _("invalid <nat> element found in <forward> of network %s"),
                       networkName);
        goto cleanup;
    } else if (nForwardNats > 1) {
        virReportError(VIR_ERR_XML_ERROR,
                       _("Only one <nat> element is allowed in <forward> of network %s"),
                       networkName);
        goto cleanup;
    } else if (nForwardNats == 1) {
        if (virNetworkForwardNatDefParseXML(networkName,
                                            *forwardNatNodes,
                                            ctxt, def) < 0)
            goto cleanup;
    }

1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889
    if (((nForwardIfs > 0) + (nForwardAddrs > 0) + (nForwardPfs > 0)) > 1) {
        virReportError(VIR_ERR_XML_ERROR,
                       _("<address>, <interface>, and <pf> elements in <forward> "
                         "of network %s are mutually exclusive"),
                       networkName);
        goto cleanup;
    }

    forwardDev = virXPathString("string(./@dev)", ctxt);
    if (forwardDev && (nForwardAddrs > 0 || nForwardPfs > 0)) {
        virReportError(VIR_ERR_XML_ERROR, "%s",
                       _("the <forward> 'dev' attribute cannot be used when "
                         "<address> or <pf> sub-elements are present "
                         "in network %s"));
        goto cleanup;
    }

    if (nForwardIfs > 0 || forwardDev) {
1890
        if (VIR_ALLOC_N(def->ifs, MAX(nForwardIfs, 1)) < 0)
1891 1892 1893 1894 1895 1896 1897 1898 1899 1900
            goto cleanup;

        if (forwardDev) {
            def->ifs[0].device.dev = forwardDev;
            def->ifs[0].type = VIR_NETWORK_FORWARD_HOSTDEV_DEVICE_NETDEV;
            forwardDev = NULL;
            def->nifs++;
        }

        /* parse each <interface> */
1901 1902
        for (i = 0; i < nForwardIfs; i++) {
            forwardDev = virXMLPropString(forwardIfNodes[i], "dev");
1903 1904 1905 1906 1907 1908 1909 1910
            if (!forwardDev) {
                virReportError(VIR_ERR_XML_ERROR,
                               _("Missing required dev attribute in "
                                 "<forward> <interface> element of network %s"),
                               networkName);
                goto cleanup;
            }

1911
            if ((i == 0) && (def->nifs == 1)) {
1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926
                /* both <forward dev='x'> and <interface dev='x'/> are
                 * present.  If they don't match, it's an error.
                 */
                if (STRNEQ(forwardDev, def->ifs[0].device.dev)) {
                    virReportError(VIR_ERR_XML_ERROR,
                                   _("<forward dev='%s'> must match first "
                                     "<interface dev='%s'/> in network %s"),
                                   def->ifs[0].device.dev,
                                   forwardDev, networkName);
                    goto cleanup;
                }
                VIR_FREE(forwardDev);
                continue;
            }

1927
            def->ifs[i].device.dev = forwardDev;
1928
            forwardDev = NULL;
1929
            def->ifs[i].type = VIR_NETWORK_FORWARD_HOSTDEV_DEVICE_NETDEV;
1930 1931 1932 1933
            def->nifs++;
        }

    } else if (nForwardAddrs > 0) {
1934
        if (VIR_ALLOC_N(def->ifs, nForwardAddrs) < 0)
1935 1936
            goto cleanup;

1937 1938
        for (i = 0; i < nForwardAddrs; i++) {
            if (!(type = virXMLPropString(forwardAddrNodes[i], "type"))) {
1939 1940 1941 1942 1943 1944
                virReportError(VIR_ERR_XML_ERROR,
                               _("missing address type in network %s"),
                               networkName);
                goto cleanup;
            }

1945
            if ((def->ifs[i].type = virNetworkForwardHostdevDeviceTypeFromString(type)) < 0) {
1946
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
1947 1948 1949 1950 1951
                               _("unknown address type '%s' in network %s"),
                               type, networkName);
                goto cleanup;
            }

1952
            switch (def->ifs[i].type) {
1953
            case VIR_NETWORK_FORWARD_HOSTDEV_DEVICE_PCI:
1954 1955
                if (virDevicePCIAddressParseXML(forwardAddrNodes[i],
                                                &def->ifs[i].device.pci) < 0) {
1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977
                    goto cleanup;
                }
                break;

            /* Add USB case here if we ever find a reason to support it */

            default:
                virReportError(VIR_ERR_XML_ERROR,
                               _("unsupported address type '%s' in network %s"),
                               type, networkName);
                goto cleanup;
            }
            VIR_FREE(type);
            def->nifs++;
        }

    } else if (nForwardPfs > 1) {
        virReportError(VIR_ERR_XML_ERROR,
                       _("Only one <pf> element is allowed in <forward> of network %s"),
                       networkName);
        goto cleanup;
    } else if (nForwardPfs == 1) {
1978
        if (VIR_ALLOC_N(def->pfs, nForwardPfs) < 0)
1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995
            goto cleanup;

        forwardDev = virXMLPropString(*forwardPfNodes, "dev");
        if (!forwardDev) {
            virReportError(VIR_ERR_XML_ERROR,
                           _("Missing required dev attribute "
                             "in <pf> element of network '%s'"),
                           networkName);
            goto cleanup;
        }

        def->pfs->dev = forwardDev;
        forwardDev = NULL;
        def->npfs++;
    }

    ret = 0;
1996
 cleanup:
1997 1998 1999
    VIR_FREE(type);
    VIR_FREE(forwardDev);
    VIR_FREE(forwardManaged);
2000
    VIR_FREE(forwardDriverName);
2001 2002 2003
    VIR_FREE(forwardPfNodes);
    VIR_FREE(forwardIfNodes);
    VIR_FREE(forwardAddrNodes);
2004
    VIR_FREE(forwardNatNodes);
2005 2006 2007 2008
    ctxt->node = save;
    return ret;
}

2009
static virNetworkDefPtr
2010
virNetworkDefParseXML(xmlXPathContextPtr ctxt)
2011 2012 2013
{
    virNetworkDefPtr def;
    char *tmp;
2014
    char *stp = NULL;
2015
    xmlNodePtr *ipNodes = NULL;
2016
    xmlNodePtr *routeNodes = NULL;
2017
    xmlNodePtr *portGroupNodes = NULL;
2018
    int nIps, nPortGroups, nRoutes;
2019
    xmlNodePtr dnsNode = NULL;
2020 2021
    xmlNodePtr virtPortNode = NULL;
    xmlNodePtr forwardNode = NULL;
2022
    char *ipv6nogwStr = NULL;
2023
    xmlNodePtr save = ctxt->node;
2024
    xmlNodePtr bandwidthNode = NULL;
2025
    xmlNodePtr vlanNode;
2026

2027
    if (VIR_ALLOC(def) < 0)
2028 2029 2030
        return NULL;

    /* Extract network name */
2031
    def->name = virXPathString("string(./name[1])", ctxt);
2032
    if (!def->name) {
2033
        virReportError(VIR_ERR_NO_NAME, NULL);
2034 2035 2036 2037
        goto error;
    }

    /* Extract network uuid */
2038
    tmp = virXPathString("string(./uuid[1])", ctxt);
2039
    if (!tmp) {
2040
        if (virUUIDGenerate(def->uuid)) {
2041 2042
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           "%s", _("Failed to generate UUID"));
2043 2044 2045 2046 2047
            goto error;
        }
    } else {
        if (virUUIDParse(tmp, def->uuid) < 0) {
            VIR_FREE(tmp);
2048 2049
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           "%s", _("malformed uuid element"));
2050 2051 2052
            goto error;
        }
        VIR_FREE(tmp);
M
Matthias Bolte 已提交
2053
        def->uuid_specified = true;
2054 2055
    }

2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071
    /* check if definitions with no IPv6 gateway addresses is to
     * allow guest-to-guest communications.
     */
    ipv6nogwStr = virXPathString("string(./@ipv6)", ctxt);
    if (ipv6nogwStr) {
        if (STREQ(ipv6nogwStr, "yes")) {
            def->ipv6nogw = true;
        } else if (STRNEQ(ipv6nogwStr, "no")) {
            virReportError(VIR_ERR_XML_ERROR,
                           _("Invalid ipv6 setting '%s' in network '%s'"),
                           ipv6nogwStr, def->name);
            goto error;
        }
        VIR_FREE(ipv6nogwStr);
    }

2072
    /* Parse network domain information */
2073
    def->domain = virXPathString("string(./domain[1]/@name)", ctxt);
2074

2075
    if ((bandwidthNode = virXPathNode("./bandwidth", ctxt)) != NULL &&
2076
        (def->bandwidth = virNetDevBandwidthParse(bandwidthNode, -1)) == NULL)
2077 2078
        goto error;

2079 2080 2081 2082
    vlanNode = virXPathNode("./vlan", ctxt);
    if (vlanNode && virNetDevVlanParse(vlanNode, ctxt, &def->vlan) < 0)
        goto error;

2083
    /* Parse bridge information */
2084
    def->bridge = virXPathString("string(./bridge[1]/@name)", ctxt);
2085
    stp = virXPathString("string(./bridge[1]/@stp)", ctxt);
2086
    def->stp = (stp && STREQ(stp, "off")) ? false : true;
2087

2088
    if (virXPathULong("string(./bridge[1]/@delay)", ctxt, &def->delay) < 0)
2089 2090
        def->delay = 0;

2091 2092
    tmp = virXPathString("string(./mac[1]/@address)", ctxt);
    if (tmp) {
2093
        if (virMacAddrParse(tmp, &def->mac) < 0) {
2094 2095 2096
            virReportError(VIR_ERR_XML_ERROR,
                           _("Invalid bridge mac address '%s' in network '%s'"),
                           tmp, def->name);
2097 2098 2099
            VIR_FREE(tmp);
            goto error;
        }
2100
        if (virMacAddrIsMulticast(&def->mac)) {
2101 2102 2103
            virReportError(VIR_ERR_XML_ERROR,
                           _("Invalid multicast bridge mac address '%s' in network '%s'"),
                           tmp, def->name);
2104 2105 2106
            VIR_FREE(tmp);
            goto error;
        }
2107 2108 2109 2110
        VIR_FREE(tmp);
        def->mac_specified = true;
    }

2111
    dnsNode = virXPathNode("./dns", ctxt);
2112 2113 2114
    if (dnsNode != NULL &&
        virNetworkDNSDefParseXML(def->name, dnsNode, ctxt, &def->dns) < 0) {
        goto error;
2115 2116
    }

2117 2118
    virtPortNode = virXPathNode("./virtualport", ctxt);
    if (virtPortNode &&
2119 2120
        (!(def->virtPortProfile = virNetDevVPortProfileParse(virtPortNode,
                                                             VIR_VPORT_XML_REQUIRE_TYPE)))) {
2121
        goto error;
2122
    }
2123 2124 2125 2126 2127 2128

    nPortGroups = virXPathNodeSet("./portgroup", ctxt, &portGroupNodes);
    if (nPortGroups < 0)
        goto error;

    if (nPortGroups > 0) {
2129
        size_t i;
2130 2131

        /* allocate array to hold all the portgroups */
2132
        if (VIR_ALLOC_N(def->portGroups, nPortGroups) < 0)
2133 2134
            goto error;
        /* parse each portgroup */
2135 2136 2137
        for (i = 0; i < nPortGroups; i++) {
            int ret = virNetworkPortGroupParseXML(&def->portGroups[i],
                                                  portGroupNodes[i], ctxt);
2138 2139 2140 2141 2142 2143 2144
            if (ret < 0)
                goto error;
            def->nPortGroups++;
        }
    }
    VIR_FREE(portGroupNodes);

2145
    nIps = virXPathNodeSet("./ip", ctxt, &ipNodes);
2146 2147 2148
    if (nIps < 0)
        goto error;

2149
    if (nIps > 0) {
2150
        size_t i;
2151

2152
        /* allocate array to hold all the addrs */
2153
        if (VIR_ALLOC_N(def->ips, nIps) < 0)
2154
            goto error;
2155
        /* parse each addr */
2156 2157 2158
        for (i = 0; i < nIps; i++) {
            int ret = virNetworkIPDefParseXML(def->name, ipNodes[i],
                                              ctxt, &def->ips[i]);
2159 2160 2161
            if (ret < 0)
                goto error;
            def->nips++;
2162
        }
2163
    }
E
Eric Blake 已提交
2164
    VIR_FREE(ipNodes);
2165

2166 2167 2168 2169 2170
    nRoutes = virXPathNodeSet("./route", ctxt, &routeNodes);
    if (nRoutes < 0)
        goto error;

    if (nRoutes > 0) {
2171
        size_t i;
2172 2173

        /* allocate array to hold all the route definitions */
2174
        if (VIR_ALLOC_N(def->routes, nRoutes) < 0)
2175 2176
            goto error;
        /* parse each definition */
2177 2178 2179
        for (i = 0; i < nRoutes; i++) {
            int ret = virNetworkRouteDefParseXML(def->name, routeNodes[i],
                                              ctxt, &def->routes[i]);
2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192
            if (ret < 0)
                goto error;
            def->nroutes++;
        }

        /* now validate the correctness of any static route gateways specified
         *
         * note: the parameters within each definition are verified/assumed valid;
         * the question being asked and answered here is if the specified gateway
         * is directly reachable from this bridge.
         */
        nRoutes = def->nroutes;
        nIps = def->nips;
2193 2194
        for (i = 0; i < nRoutes; i++) {
            size_t j;
2195 2196
            virSocketAddr testAddr, testGw;
            bool addrMatch;
2197
            virNetworkRouteDefPtr gwdef = &def->routes[i];
2198
            addrMatch = false;
2199 2200
            for (j = 0; j < nIps; j++) {
                virNetworkIpDefPtr def2 = &def->ips[j];
2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226
                if (VIR_SOCKET_ADDR_FAMILY(&gwdef->gateway)
                    != VIR_SOCKET_ADDR_FAMILY(&def2->address)) {
                    continue;
                }
                int prefix = virNetworkIpDefPrefix(def2);
                virSocketAddrMaskByPrefix(&def2->address, prefix, &testAddr);
                virSocketAddrMaskByPrefix(&gwdef->gateway, prefix, &testGw);
                if (VIR_SOCKET_ADDR_VALID(&testAddr) &&
                    VIR_SOCKET_ADDR_VALID(&testGw) &&
                    virSocketAddrEqual(&testAddr, &testGw)) {
                    addrMatch = true;
                    break;
                }
            }
            if (!addrMatch) {
                char *gw = virSocketAddrFormat(&gwdef->gateway);
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                               _("unreachable static route gateway '%s' specified for network '%s'"),
                               gw, def->name);
                VIR_FREE(gw);
                goto error;
            }
        }
    }
    VIR_FREE(routeNodes);

2227
    forwardNode = virXPathNode("./forward", ctxt);
2228 2229 2230 2231
    if (forwardNode &&
        virNetworkForwardDefParseXML(def->name, forwardNode, ctxt, &def->forward) < 0) {
        goto error;
    }
2232

2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250
    /* Validate some items in the main NetworkDef that need to align
     * with the chosen forward mode.
     */
    switch (def->forward.type) {
    case VIR_NETWORK_FORWARD_NONE:
        break;

    case VIR_NETWORK_FORWARD_ROUTE:
    case VIR_NETWORK_FORWARD_NAT:
        /* It's pointless to specify L3 forwarding without specifying
         * the network we're on.
         */
        if (def->nips == 0) {
            virReportError(VIR_ERR_XML_ERROR,
                           _("%s forwarding requested, "
                             "but no IP address provided for network '%s'"),
                           virNetworkForwardTypeToString(def->forward.type),
                           def->name);
2251
            goto error;
2252
        }
2253 2254 2255 2256 2257
        if (def->forward.nifs > 1) {
            virReportError(VIR_ERR_XML_ERROR,
                           _("multiple forwarding interfaces specified "
                             "for network '%s', only one is supported"),
                           def->name);
2258 2259
            goto error;
        }
2260
        break;
2261

2262 2263 2264 2265 2266 2267 2268 2269 2270
    case VIR_NETWORK_FORWARD_PRIVATE:
    case VIR_NETWORK_FORWARD_VEPA:
    case VIR_NETWORK_FORWARD_PASSTHROUGH:
    case VIR_NETWORK_FORWARD_HOSTDEV:
        if (def->bridge) {
            virReportError(VIR_ERR_XML_ERROR,
                           _("bridge name not allowed in %s mode (network '%s')"),
                           virNetworkForwardTypeToString(def->forward.type),
                           def->name);
2271 2272
            goto error;
        }
2273 2274 2275 2276 2277 2278 2279
        /* fall through to next case */
    case VIR_NETWORK_FORWARD_BRIDGE:
        if (def->delay || stp) {
            virReportError(VIR_ERR_XML_ERROR,
                           _("bridge delay/stp options only allowed in route, nat, and isolated mode, not in %s (network '%s')"),
                           virNetworkForwardTypeToString(def->forward.type),
                           def->name);
2280 2281
            goto error;
        }
2282 2283 2284 2285 2286 2287 2288 2289
        if (def->bridge && (def->forward.nifs || def->forward.npfs)) {
            virReportError(VIR_ERR_XML_ERROR,
                           _("A network with forward mode='%s' can specify "
                             "a bridge name or a forward dev, but not "
                             "both (network '%s')"),
                           virNetworkForwardTypeToString(def->forward.type),
                           def->name);
            goto error;
2290
        }
2291
        break;
2292
    }
2293

2294 2295
    VIR_FREE(stp);
    ctxt->node = save;
2296 2297
    return def;

2298
 error:
2299
    VIR_FREE(routeNodes);
2300
    VIR_FREE(stp);
2301
    virNetworkDefFree(def);
E
Eric Blake 已提交
2302
    VIR_FREE(ipNodes);
2303
    VIR_FREE(portGroupNodes);
2304
    VIR_FREE(ipv6nogwStr);
2305
    ctxt->node = save;
2306 2307 2308
    return NULL;
}

J
Jiri Denemark 已提交
2309 2310 2311
static virNetworkDefPtr
virNetworkDefParse(const char *xmlStr,
                   const char *filename)
2312
{
J
Jiri Denemark 已提交
2313
    xmlDocPtr xml;
2314
    virNetworkDefPtr def = NULL;
2315

2316
    if ((xml = virXMLParse(filename, xmlStr, _("(network_definition)")))) {
J
Jiri Denemark 已提交
2317 2318
        def = virNetworkDefParseNode(xml, xmlDocGetRootElement(xml));
        xmlFreeDoc(xml);
2319 2320 2321 2322 2323
    }

    return def;
}

J
Jiri Denemark 已提交
2324
virNetworkDefPtr virNetworkDefParseString(const char *xmlStr)
2325
{
J
Jiri Denemark 已提交
2326 2327
    return virNetworkDefParse(xmlStr, NULL);
}
2328

J
Jiri Denemark 已提交
2329 2330 2331
virNetworkDefPtr virNetworkDefParseFile(const char *filename)
{
    return virNetworkDefParse(NULL, filename);
2332 2333 2334
}


2335
virNetworkDefPtr virNetworkDefParseNode(xmlDocPtr xml,
2336 2337 2338 2339 2340 2341
                                        xmlNodePtr root)
{
    xmlXPathContextPtr ctxt = NULL;
    virNetworkDefPtr def = NULL;

    if (!xmlStrEqual(root->name, BAD_CAST "network")) {
2342 2343 2344 2345
        virReportError(VIR_ERR_XML_ERROR,
                       _("unexpected root element <%s>, "
                         "expecting <network>"),
                       root->name);
2346 2347 2348 2349 2350
        return NULL;
    }

    ctxt = xmlXPathNewContext(xml);
    if (ctxt == NULL) {
2351
        virReportOOMError();
2352 2353 2354 2355
        goto cleanup;
    }

    ctxt->node = root;
2356
    def = virNetworkDefParseXML(ctxt);
2357

2358
 cleanup:
2359 2360 2361 2362
    xmlXPathFreeContext(ctxt);
    return def;
}

2363

2364 2365
static int
virNetworkDNSDefFormat(virBufferPtr buf,
E
Eric Blake 已提交
2366
                       const virNetworkDNSDef *def)
2367
{
2368
    size_t i, j;
2369

2370 2371
    if (!(def->forwardPlainNames || def->forwarders || def->nhosts ||
          def->nsrvs || def->ntxts))
2372
        return 0;
2373

2374 2375
    virBufferAddLit(buf, "<dns");
    if (def->forwardPlainNames) {
2376 2377 2378 2379 2380 2381 2382 2383 2384
        const char *fwd = virNetworkDNSForwardPlainNamesTypeToString(def->forwardPlainNames);

        if (!fwd) {
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("Unknown forwardPlainNames type %d in network"),
                           def->forwardPlainNames);
            return -1;
        }
        virBufferAsprintf(buf, " forwardPlainNames='%s'", fwd);
2385
        if (!(def->forwarders || def->nhosts || def->nsrvs || def->ntxts)) {
2386
            virBufferAddLit(buf, "/>\n");
2387
            return 0;
2388 2389 2390 2391
        }
    }

    virBufferAddLit(buf, ">\n");
2392
    virBufferAdjustIndent(buf, 2);
2393

2394 2395 2396 2397 2398
    for (i = 0; i < def->nfwds; i++) {
        virBufferAsprintf(buf, "<forwarder addr='%s'/>\n",
                          def->forwarders[i]);
    }

2399
    for (i = 0; i < def->ntxts; i++) {
2400
        virBufferAsprintf(buf, "<txt name='%s' value='%s'/>\n",
2401 2402
                              def->txts[i].name,
                              def->txts[i].value);
2403 2404
    }

2405
    for (i = 0; i < def->nsrvs; i++) {
2406
        if (def->srvs[i].service && def->srvs[i].protocol) {
2407
            virBufferAsprintf(buf, "<srv service='%s' protocol='%s'",
2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420
                                  def->srvs[i].service,
                                  def->srvs[i].protocol);

            if (def->srvs[i].domain)
                virBufferAsprintf(buf, " domain='%s'", def->srvs[i].domain);
            if (def->srvs[i].target)
                virBufferAsprintf(buf, " target='%s'", def->srvs[i].target);
            if (def->srvs[i].port)
                virBufferAsprintf(buf, " port='%d'", def->srvs[i].port);
            if (def->srvs[i].priority)
                virBufferAsprintf(buf, " priority='%d'", def->srvs[i].priority);
            if (def->srvs[i].weight)
                virBufferAsprintf(buf, " weight='%d'", def->srvs[i].weight);
2421

2422
            virBufferAddLit(buf, "/>\n");
2423 2424 2425
        }
    }

2426
    if (def->nhosts) {
2427 2428
        for (i = 0; i < def->nhosts; i++) {
            char *ip = virSocketAddrFormat(&def->hosts[i].ip);
2429

2430 2431
            virBufferAsprintf(buf, "<host ip='%s'>\n", ip);
            virBufferAdjustIndent(buf, 2);
2432
            for (j = 0; j < def->hosts[i].nnames; j++)
2433
                virBufferAsprintf(buf, "<hostname>%s</hostname>\n",
2434
                                  def->hosts[i].names[j]);
2435

2436
            virBufferAdjustIndent(buf, -2);
2437
            virBufferAddLit(buf, "</host>\n");
2438
            VIR_FREE(ip);
2439 2440
        }
    }
2441 2442
    virBufferAdjustIndent(buf, -2);
    virBufferAddLit(buf, "</dns>\n");
2443
    return 0;
2444 2445
}

2446 2447
static int
virNetworkIpDefFormat(virBufferPtr buf,
E
Eric Blake 已提交
2448
                      const virNetworkIpDef *def)
2449 2450 2451
{
    int result = -1;

2452
    virBufferAddLit(buf, "<ip");
2453 2454

    if (def->family) {
2455
        virBufferAsprintf(buf, " family='%s'", def->family);
2456
    }
2457 2458
    if (VIR_SOCKET_ADDR_VALID(&def->address)) {
        char *addr = virSocketAddrFormat(&def->address);
2459 2460
        if (!addr)
            goto error;
2461
        virBufferAsprintf(buf, " address='%s'", addr);
2462 2463
        VIR_FREE(addr);
    }
2464 2465
    if (VIR_SOCKET_ADDR_VALID(&def->netmask)) {
        char *addr = virSocketAddrFormat(&def->netmask);
2466 2467
        if (!addr)
            goto error;
2468
        virBufferAsprintf(buf, " netmask='%s'", addr);
2469 2470 2471
        VIR_FREE(addr);
    }
    if (def->prefix > 0) {
E
Eric Blake 已提交
2472
        virBufferAsprintf(buf, " prefix='%u'", def->prefix);
2473 2474
    }
    virBufferAddLit(buf, ">\n");
2475
    virBufferAdjustIndent(buf, 2);
2476 2477

    if (def->tftproot) {
2478
        virBufferEscapeString(buf, "<tftp root='%s'/>\n",
2479 2480 2481
                              def->tftproot);
    }
    if ((def->nranges || def->nhosts)) {
2482
        size_t i;
2483 2484 2485
        virBufferAddLit(buf, "<dhcp>\n");
        virBufferAdjustIndent(buf, 2);

2486 2487
        for (i = 0; i < def->nranges; i++) {
            char *saddr = virSocketAddrFormat(&def->ranges[i].start);
2488 2489
            if (!saddr)
                goto error;
2490
            char *eaddr = virSocketAddrFormat(&def->ranges[i].end);
2491 2492 2493 2494
            if (!eaddr) {
                VIR_FREE(saddr);
                goto error;
            }
2495
            virBufferAsprintf(buf, "<range start='%s' end='%s'/>\n",
2496 2497 2498 2499
                              saddr, eaddr);
            VIR_FREE(saddr);
            VIR_FREE(eaddr);
        }
2500
        for (i = 0; i < def->nhosts; i++) {
2501
            virBufferAddLit(buf, "<host");
2502
            if (def->hosts[i].mac)
2503
                virBufferAsprintf(buf, " mac='%s'", def->hosts[i].mac);
2504
            if (def->hosts[i].id)
2505
                virBufferAsprintf(buf, " id='%s'", def->hosts[i].id);
2506
            if (def->hosts[i].name)
2507
                virBufferAsprintf(buf, " name='%s'", def->hosts[i].name);
2508 2509
            if (VIR_SOCKET_ADDR_VALID(&def->hosts[i].ip)) {
                char *ipaddr = virSocketAddrFormat(&def->hosts[i].ip);
2510 2511
                if (!ipaddr)
                    goto error;
2512
                virBufferAsprintf(buf, " ip='%s'", ipaddr);
2513 2514 2515 2516 2517
                VIR_FREE(ipaddr);
            }
            virBufferAddLit(buf, "/>\n");
        }
        if (def->bootfile) {
2518
            virBufferEscapeString(buf, "<bootp file='%s'",
2519
                                  def->bootfile);
2520 2521
            if (VIR_SOCKET_ADDR_VALID(&def->bootserver)) {
                char *ipaddr = virSocketAddrFormat(&def->bootserver);
2522 2523
                if (!ipaddr)
                    goto error;
2524
                virBufferEscapeString(buf, " server='%s'", ipaddr);
2525 2526 2527
                VIR_FREE(ipaddr);
            }
            virBufferAddLit(buf, "/>\n");
2528

2529 2530
        }

2531 2532
        virBufferAdjustIndent(buf, -2);
        virBufferAddLit(buf, "</dhcp>\n");
2533 2534
    }

2535 2536
    virBufferAdjustIndent(buf, -2);
    virBufferAddLit(buf, "</ip>\n");
2537 2538

    result = 0;
2539
 error:
2540 2541 2542
    return result;
}

2543 2544
static int
virNetworkRouteDefFormat(virBufferPtr buf,
E
Eric Blake 已提交
2545
                         const virNetworkRouteDef *def)
2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570
{
    int result = -1;

    virBufferAddLit(buf, "<route");

    if (def->family) {
        virBufferAsprintf(buf, " family='%s'", def->family);
    }
    if (VIR_SOCKET_ADDR_VALID(&def->address)) {
        char *addr = virSocketAddrFormat(&def->address);

        if (!addr)
            goto error;
        virBufferAsprintf(buf, " address='%s'", addr);
        VIR_FREE(addr);
    }
    if (VIR_SOCKET_ADDR_VALID(&def->netmask)) {
        char *addr = virSocketAddrFormat(&def->netmask);

        if (!addr)
            goto error;
        virBufferAsprintf(buf, " netmask='%s'", addr);
        VIR_FREE(addr);
    }
    if (def->has_prefix) {
E
Eric Blake 已提交
2571
        virBufferAsprintf(buf, " prefix='%u'", def->prefix);
2572 2573 2574 2575 2576 2577 2578 2579 2580
    }
    if (VIR_SOCKET_ADDR_VALID(&def->gateway)) {
        char *addr = virSocketAddrFormat(&def->gateway);
        if (!addr)
            goto error;
        virBufferAsprintf(buf, " gateway='%s'", addr);
        VIR_FREE(addr);
    }
    if (def->has_metric && def->metric > 0) {
E
Eric Blake 已提交
2581
        virBufferAsprintf(buf, " metric='%u'", def->metric);
2582 2583 2584 2585
    }
    virBufferAddLit(buf, "/>\n");

    result = 0;
2586
 error:
2587 2588 2589
    return result;
}

2590
static int
2591
virPortGroupDefFormat(virBufferPtr buf,
E
Eric Blake 已提交
2592
                      const virPortGroupDef *def)
2593
{
2594
    virBufferAsprintf(buf, "<portgroup name='%s'", def->name);
2595 2596 2597 2598
    if (def->isDefault) {
        virBufferAddLit(buf, " default='yes'");
    }
    virBufferAddLit(buf, ">\n");
2599
    virBufferAdjustIndent(buf, 2);
2600 2601
    if (virNetDevVlanFormat(&def->vlan, buf) < 0)
        return -1;
2602 2603
    if (virNetDevVPortProfileFormat(def->virtPortProfile, buf) < 0)
        return -1;
2604
    virNetDevBandwidthFormat(def->bandwidth, buf);
2605 2606
    virBufferAdjustIndent(buf, -2);
    virBufferAddLit(buf, "</portgroup>\n");
2607
    return 0;
2608 2609
}

2610 2611
static int
virNetworkForwardNatDefFormat(virBufferPtr buf,
E
Eric Blake 已提交
2612
                              const virNetworkForwardDef *fwd)
2613 2614 2615 2616 2617
{
    char *addrStart = NULL;
    char *addrEnd = NULL;
    int ret = -1;

2618 2619
    if (VIR_SOCKET_ADDR_VALID(&fwd->addr.start)) {
        addrStart = virSocketAddrFormat(&fwd->addr.start);
2620 2621 2622 2623
        if (!addrStart)
            goto cleanup;
    }

2624 2625
    if (VIR_SOCKET_ADDR_VALID(&fwd->addr.end)) {
        addrEnd = virSocketAddrFormat(&fwd->addr.end);
2626 2627 2628 2629
        if (!addrEnd)
            goto cleanup;
    }

2630
    if (!addrEnd && !addrStart && !fwd->port.start && !fwd->port.end)
2631 2632 2633 2634 2635
        return 0;

    virBufferAddLit(buf, "<nat>\n");
    virBufferAdjustIndent(buf, 2);

2636 2637 2638 2639 2640 2641 2642
    if (addrStart) {
        virBufferAsprintf(buf, "<address start='%s'", addrStart);
        if (addrEnd)
            virBufferAsprintf(buf, " end='%s'", addrEnd);
        virBufferAddLit(buf, "/>\n");
    }

2643 2644 2645 2646
    if (fwd->port.start || fwd->port.end) {
        virBufferAsprintf(buf, "<port start='%d'", fwd->port.start);
        if (fwd->port.end)
            virBufferAsprintf(buf, " end='%d'", fwd->port.end);
2647 2648
        virBufferAddLit(buf, "/>\n");
    }
2649 2650 2651 2652 2653

    virBufferAdjustIndent(buf, -2);
    virBufferAddLit(buf, "</nat>\n");
    ret = 0;

2654
 cleanup:
2655 2656 2657 2658 2659
    VIR_FREE(addrStart);
    VIR_FREE(addrEnd);
    return ret;
}

2660 2661 2662 2663
int
virNetworkDefFormatBuf(virBufferPtr buf,
                       const virNetworkDef *def,
                       unsigned int flags)
2664
{
E
Eric Blake 已提交
2665
    const unsigned char *uuid;
2666
    char uuidstr[VIR_UUID_STRING_BUFLEN];
2667
    size_t i;
J
Ján Tomko 已提交
2668
    bool shortforward;
2669

2670
    virBufferAddLit(buf, "<network");
2671
    if (!(flags & VIR_NETWORK_XML_INACTIVE) && (def->connections > 0)) {
2672
        virBufferAsprintf(buf, " connections='%d'", def->connections);
2673
    }
2674
    if (def->ipv6nogw)
2675 2676 2677 2678
        virBufferAddLit(buf, " ipv6='yes'");
    virBufferAddLit(buf, ">\n");
    virBufferAdjustIndent(buf, 2);
    virBufferEscapeString(buf, "<name>%s</name>\n", def->name);
2679 2680 2681

    uuid = def->uuid;
    virUUIDFormat(uuid, uuidstr);
2682
    virBufferAsprintf(buf, "<uuid>%s</uuid>\n", uuidstr);
2683

2684
    if (def->forward.type != VIR_NETWORK_FORWARD_NONE) {
2685
        const char *dev = NULL;
2686
        if (!def->forward.npfs)
2687
            dev = virNetworkDefForwardIf(def, 0);
2688
        const char *mode = virNetworkForwardTypeToString(def->forward.type);
2689 2690

        if (!mode) {
2691 2692
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("Unknown forward type %d in network '%s'"),
2693
                           def->forward.type, def->name);
2694 2695
            goto error;
        }
2696 2697 2698
        virBufferAddLit(buf, "<forward");
        virBufferEscapeString(buf, " dev='%s'", dev);
        virBufferAsprintf(buf, " mode='%s'", mode);
2699 2700
        if (def->forward.type == VIR_NETWORK_FORWARD_HOSTDEV) {
            if (def->forward.managed)
2701
                virBufferAddLit(buf, " managed='yes'");
2702
            else
2703
                virBufferAddLit(buf, " managed='no'");
2704
        }
2705
        shortforward = !(def->forward.nifs || def->forward.npfs
2706 2707 2708
                         || VIR_SOCKET_ADDR_VALID(&def->forward.addr.start)
                         || VIR_SOCKET_ADDR_VALID(&def->forward.addr.end)
                         || def->forward.port.start
2709 2710 2711
                         || def->forward.port.end
                         || (def->forward.driverName
                             != VIR_NETWORK_FORWARD_DRIVER_NAME_DEFAULT));
2712
        virBufferAsprintf(buf, "%s>\n", shortforward ? "/" : "");
2713
        virBufferAdjustIndent(buf, 2);
2714

2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726
        if (def->forward.driverName
            != VIR_NETWORK_FORWARD_DRIVER_NAME_DEFAULT) {
            const char *driverName
                = virNetworkForwardDriverNameTypeToString(def->forward.driverName);
            if (!driverName) {
                virReportError(VIR_ERR_INTERNAL_ERROR,
                               _("unexpected hostdev driver name type %d "),
                               def->forward.driverName);
                goto error;
            }
            virBufferAsprintf(buf, "<driver name='%s'/>\n", driverName);
        }
2727 2728 2729 2730 2731
        if (def->forward.type == VIR_NETWORK_FORWARD_NAT) {
            if (virNetworkForwardNatDefFormat(buf, &def->forward) < 0)
                goto error;
        }

2732 2733
        /* For now, hard-coded to at most 1 forward.pfs */
        if (def->forward.npfs)
2734
            virBufferEscapeString(buf, "<pf dev='%s'/>\n",
2735
                                  def->forward.pfs[0].dev);
2736

2737 2738
        if (def->forward.nifs &&
            (!def->forward.npfs || !(flags & VIR_NETWORK_XML_INACTIVE))) {
2739
            for (i = 0; i < def->forward.nifs; i++) {
2740
                if (def->forward.type != VIR_NETWORK_FORWARD_HOSTDEV) {
2741
                    virBufferEscapeString(buf, "<interface dev='%s'",
2742
                                          def->forward.ifs[i].device.dev);
2743
                    if (!(flags & VIR_NETWORK_XML_INACTIVE) &&
2744
                        (def->forward.ifs[i].connections > 0)) {
2745
                        virBufferAsprintf(buf, " connections='%d'",
2746
                                          def->forward.ifs[i].connections);
2747
                    }
2748
                    virBufferAddLit(buf, "/>\n");
2749 2750
                }
                else {
2751
                    if (def->forward.ifs[i].type ==  VIR_NETWORK_FORWARD_HOSTDEV_DEVICE_PCI) {
2752
                        if (virDevicePCIAddressFormat(buf,
2753
                                                      def->forward.ifs[i].device.pci,
2754 2755 2756
                                                      true) < 0)
                            goto error;
                    }
2757
                }
2758 2759
            }
        }
2760
        virBufferAdjustIndent(buf, -2);
2761
        if (!shortforward)
2762
            virBufferAddLit(buf, "</forward>\n");
2763 2764
    }

2765 2766 2767
    if (def->forward.type == VIR_NETWORK_FORWARD_NONE ||
         def->forward.type == VIR_NETWORK_FORWARD_NAT ||
         def->forward.type == VIR_NETWORK_FORWARD_ROUTE) {
2768

2769
        virBufferAddLit(buf, "<bridge");
2770
        if (def->bridge)
2771
            virBufferEscapeString(buf, " name='%s'", def->bridge);
2772
        virBufferAsprintf(buf, " stp='%s' delay='%ld'/>\n",
2773 2774
                          def->stp ? "on" : "off",
                          def->delay);
2775
    } else if (def->forward.type == VIR_NETWORK_FORWARD_BRIDGE &&
2776
               def->bridge) {
2777
        virBufferEscapeString(buf, "<bridge name='%s'/>\n", def->bridge);
2778 2779 2780
    }


2781 2782
    if (def->mac_specified) {
        char macaddr[VIR_MAC_STRING_BUFLEN];
2783
        virMacAddrFormat(&def->mac, macaddr);
2784
        virBufferAsprintf(buf, "<mac address='%s'/>\n", macaddr);
2785
    }
2786

2787
    if (def->domain)
2788
        virBufferAsprintf(buf, "<domain name='%s'/>\n", def->domain);
2789

2790
    if (virNetworkDNSDefFormat(buf, &def->dns) < 0)
2791 2792
        goto error;

2793
    if (virNetDevVlanFormat(&def->vlan, buf) < 0)
2794
        goto error;
2795
    if (virNetDevBandwidthFormat(def->bandwidth, buf) < 0)
2796 2797
        goto error;

2798 2799
    for (i = 0; i < def->nips; i++) {
        if (virNetworkIpDefFormat(buf, &def->ips[i]) < 0)
2800
            goto error;
2801 2802
    }

2803 2804
    for (i = 0; i < def->nroutes; i++) {
        if (virNetworkRouteDefFormat(buf, &def->routes[i]) < 0)
2805 2806 2807
            goto error;
    }

2808
    if (virNetDevVPortProfileFormat(def->virtPortProfile, buf) < 0)
2809
        goto error;
2810

2811 2812
    for (i = 0; i < def->nPortGroups; i++)
        if (virPortGroupDefFormat(buf, &def->portGroups[i]) < 0)
2813
            goto error;
2814

2815 2816 2817 2818 2819
    virBufferAdjustIndent(buf, -2);
    virBufferAddLit(buf, "</network>\n");

    return 0;

2820
 error:
2821 2822 2823 2824
    return -1;
}

char *
E
Eric Blake 已提交
2825
virNetworkDefFormat(const virNetworkDef *def,
2826 2827 2828 2829
                    unsigned int flags)
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;

2830
    if (virNetworkDefFormatBuf(&buf, def, flags) < 0)
2831 2832 2833 2834 2835 2836 2837
        goto error;

    if (virBufferError(&buf))
        goto no_memory;

    return virBufferContentAndReset(&buf);

2838
 no_memory:
2839
    virReportOOMError();
2840
 error:
2841 2842 2843 2844 2845 2846 2847 2848 2849 2850
    virBufferFreeAndReset(&buf);
    return NULL;
}

static char *
virNetworkObjFormat(virNetworkObjPtr net,
                    unsigned int flags)
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;
    char *class_id = virBitmapFormat(net->class_id);
2851
    size_t i;
2852 2853 2854 2855 2856

    if (!class_id)
        goto no_memory;

    virBufferAddLit(&buf, "<networkstatus>\n");
2857 2858 2859
    virBufferAdjustIndent(&buf, 2);
    virBufferAsprintf(&buf, "<class_id bitmap='%s'/>\n", class_id);
    virBufferAsprintf(&buf, "<floor sum='%llu'/>\n", net->floor_sum);
2860 2861
    VIR_FREE(class_id);

2862 2863
    for (i = 0; i < VIR_NETWORK_TAINT_LAST; i++) {
        if (net->taint & (1 << i))
2864
            virBufferAsprintf(&buf, "<taint flag='%s'/>\n",
2865 2866 2867
                              virNetworkTaintTypeToString(i));
    }

2868
    if (virNetworkDefFormatBuf(&buf, net->def, flags) < 0)
2869 2870
        goto error;

2871
    virBufferAdjustIndent(&buf, -2);
2872
    virBufferAddLit(&buf, "</networkstatus>");
2873 2874 2875 2876 2877 2878

    if (virBufferError(&buf))
        goto no_memory;

    return virBufferContentAndReset(&buf);

2879
 no_memory:
2880
    virReportOOMError();
2881
 error:
2882
    virBufferFreeAndReset(&buf);
2883 2884 2885
    return NULL;
}

2886 2887 2888
virPortGroupDefPtr virPortGroupFindByName(virNetworkDefPtr net,
                                          const char *portgroup)
{
2889 2890
    size_t i;
    for (i = 0; i < net->nPortGroups; i++) {
2891
        if (portgroup) {
2892 2893
            if (STREQ(portgroup, net->portGroups[i].name))
                return &net->portGroups[i];
2894
        } else {
2895 2896
            if (net->portGroups[i].isDefault)
                return &net->portGroups[i];
2897 2898 2899 2900 2901
        }
    }
    return NULL;
}

2902
int virNetworkSaveXML(const char *configDir,
2903 2904
                      virNetworkDefPtr def,
                      const char *xml)
2905
{
J
Ján Tomko 已提交
2906
    char uuidstr[VIR_UUID_STRING_BUFLEN];
2907
    char *configFile = NULL;
2908
    int ret = -1;
2909

2910
    if ((configFile = virNetworkConfigFile(configDir, def->name)) == NULL)
2911 2912
        goto cleanup;

2913 2914
    if (virFileMakePath(configDir) < 0) {
        virReportSystemError(errno,
2915 2916
                             _("cannot create config directory '%s'"),
                             configDir);
2917 2918 2919
        goto cleanup;
    }

J
Ján Tomko 已提交
2920 2921 2922 2923
    virUUIDFormat(def->uuid, uuidstr);
    ret = virXMLSaveFile(configFile,
                         virXMLPickShellSafeComment(def->name, uuidstr),
                         "net-edit", xml);
2924 2925

 cleanup:
2926 2927 2928 2929
    VIR_FREE(configFile);
    return ret;
}

2930
int virNetworkSaveConfig(const char *configDir,
2931 2932 2933 2934 2935
                         virNetworkDefPtr def)
{
    int ret = -1;
    char *xml;

2936
    if (!(xml = virNetworkDefFormat(def, VIR_NETWORK_XML_INACTIVE)))
2937 2938
        goto cleanup;

2939
    if (virNetworkSaveXML(configDir, def, xml))
2940 2941 2942
        goto cleanup;

    ret = 0;
2943
 cleanup:
2944
    VIR_FREE(xml);
2945 2946 2947
    return ret;
}

2948

2949 2950 2951 2952
int virNetworkSaveStatus(const char *statusDir,
                         virNetworkObjPtr network)
{
    int ret = -1;
2953
    int flags = 0;
2954 2955
    char *xml;

2956
    if (!(xml = virNetworkObjFormat(network, flags)))
2957 2958 2959 2960 2961 2962
        goto cleanup;

    if (virNetworkSaveXML(statusDir, network->def, xml))
        goto cleanup;

    ret = 0;
2963
 cleanup:
2964 2965 2966 2967
    VIR_FREE(xml);
    return ret;
}

2968 2969 2970 2971 2972 2973 2974 2975 2976
virNetworkObjPtr
virNetworkLoadState(virNetworkObjListPtr nets,
                    const char *stateDir,
                    const char *name)
{
    char *configFile = NULL;
    virNetworkDefPtr def = NULL;
    virNetworkObjPtr net = NULL;
    xmlDocPtr xml = NULL;
2977
    xmlNodePtr node = NULL, *nodes = NULL;
2978 2979 2980
    xmlXPathContextPtr ctxt = NULL;
    virBitmapPtr class_id_map = NULL;
    unsigned long long floor_sum_val = 0;
2981 2982 2983
    unsigned int taint = 0;
    int n;
    size_t i;
2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035


    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 (!STREQ(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);
    if (xmlStrEqual(node->name, BAD_CAST "networkstatus")) {
        /* Newer network status file. Contains useful
         * info which are not to be found in bare config XML */
        char *class_id = NULL;
        char *floor_sum = NULL;

        ctxt->node = node;
        if ((class_id = virXPathString("string(./class_id[1]/@bitmap)", ctxt))) {
            if (virBitmapParse(class_id, 0, &class_id_map,
                               CLASS_ID_BITMAP_SIZE) < 0) {
                VIR_FREE(class_id);
                goto error;
            }
        }
        VIR_FREE(class_id);

        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);
3036
            goto error;
3037 3038
        }
        VIR_FREE(floor_sum);
3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059

        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);
3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075
    }

    /* create the object */
    if (!(net = virNetworkAssignDef(nets, def, true)))
        goto error;
    /* do not put any "goto error" below this comment */

    /* assign status data stored in the network object */
    if (class_id_map) {
        virBitmapFree(net->class_id);
        net->class_id = class_id_map;
    }

    if (floor_sum_val > 0)
        net->floor_sum = floor_sum_val;

3076
    net->taint = taint;
3077
    net->active = 1; /* any network with a state file is by definition active */
3078

3079
 cleanup:
3080 3081 3082 3083 3084
    VIR_FREE(configFile);
    xmlFreeDoc(xml);
    xmlXPathFreeContext(ctxt);
    return net;

3085
 error:
3086
    VIR_FREE(nodes);
3087 3088 3089 3090 3091
    virBitmapFree(class_id_map);
    virNetworkDefFree(def);
    goto cleanup;
}

3092
virNetworkObjPtr virNetworkLoadConfig(virNetworkObjListPtr nets,
3093 3094
                                      const char *configDir,
                                      const char *autostartDir,
3095
                                      const char *name)
3096 3097 3098 3099 3100 3101
{
    char *configFile = NULL, *autostartLink = NULL;
    virNetworkDefPtr def = NULL;
    virNetworkObjPtr net;
    int autostart;

3102
    if ((configFile = virNetworkConfigFile(configDir, name)) == NULL)
3103
        goto error;
3104
    if ((autostartLink = virNetworkConfigFile(autostartDir, name)) == NULL)
3105 3106 3107 3108 3109
        goto error;

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

3110
    if (!(def = virNetworkDefParseFile(configFile)))
3111 3112
        goto error;

3113
    if (!STREQ(name, def->name)) {
3114 3115 3116 3117
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Network config filename '%s'"
                         " does not match network name '%s'"),
                       configFile, def->name);
3118 3119 3120
        goto error;
    }

3121 3122 3123
    if (def->forward.type == VIR_NETWORK_FORWARD_NONE ||
        def->forward.type == VIR_NETWORK_FORWARD_NAT ||
        def->forward.type == VIR_NETWORK_FORWARD_ROUTE) {
3124 3125 3126 3127 3128 3129 3130

        /* Generate a bridge if none is specified, but don't check for collisions
         * if a bridge is hardcoded, so the network is at least defined.
         */
        if (virNetworkSetBridgeName(nets, def, 0))
            goto error;
    }
3131

3132
    if (!(net = virNetworkAssignDef(nets, def, false)))
3133 3134 3135 3136
        goto error;

    net->autostart = autostart;

3137 3138 3139
    VIR_FREE(configFile);
    VIR_FREE(autostartLink);

3140 3141
    return net;

3142
 error:
3143 3144 3145 3146 3147 3148
    VIR_FREE(configFile);
    VIR_FREE(autostartLink);
    virNetworkDefFree(def);
    return NULL;
}

3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182

int
virNetworkLoadAllState(virNetworkObjListPtr nets,
                       const char *stateDir)
{
    DIR *dir;
    struct dirent *entry;

    if (!(dir = opendir(stateDir))) {
        if (errno == ENOENT)
            return 0;

        virReportSystemError(errno, _("Failed to open dir '%s'"), stateDir);
        return -1;
    }

    while ((entry = readdir(dir))) {
        virNetworkObjPtr net;

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

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

        if ((net = virNetworkLoadState(nets, stateDir, entry->d_name)))
            virNetworkObjUnlock(net);
    }

    closedir(dir);
    return 0;
}


3183
int virNetworkLoadAllConfigs(virNetworkObjListPtr nets,
3184 3185 3186 3187 3188 3189 3190 3191 3192
                             const char *configDir,
                             const char *autostartDir)
{
    DIR *dir;
    struct dirent *entry;

    if (!(dir = opendir(configDir))) {
        if (errno == ENOENT)
            return 0;
3193
        virReportSystemError(errno,
3194 3195
                             _("Failed to open dir '%s'"),
                             configDir);
3196 3197 3198 3199
        return -1;
    }

    while ((entry = readdir(dir))) {
3200 3201
        virNetworkObjPtr net;

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

3205
        if (!virFileStripSuffix(entry->d_name, ".xml"))
3206 3207 3208 3209
            continue;

        /* NB: ignoring errors, so one malformed config doesn't
           kill the whole process */
3210
        net = virNetworkLoadConfig(nets,
3211 3212 3213 3214 3215
                                   configDir,
                                   autostartDir,
                                   entry->d_name);
        if (net)
            virNetworkObjUnlock(net);
3216 3217 3218 3219 3220 3221 3222
    }

    closedir(dir);

    return 0;
}

3223
int virNetworkDeleteConfig(const char *configDir,
3224
                           const char *autostartDir,
3225 3226
                           virNetworkObjPtr net)
{
3227 3228
    char *configFile = NULL;
    char *autostartLink = NULL;
R
Ryota Ozaki 已提交
3229
    int ret = -1;
3230

3231
    if ((configFile = virNetworkConfigFile(configDir, net->def->name)) == NULL)
3232
        goto error;
3233
    if ((autostartLink = virNetworkConfigFile(autostartDir, net->def->name)) == NULL)
3234
        goto error;
3235 3236

    /* Not fatal if this doesn't work */
3237
    unlink(autostartLink);
3238

3239
    if (unlink(configFile) < 0) {
3240
        virReportSystemError(errno,
3241
                             _("cannot remove config file '%s'"),
3242 3243
                             configFile);
        goto error;
3244 3245
    }

R
Ryota Ozaki 已提交
3246
    ret = 0;
3247

3248
 error:
3249 3250
    VIR_FREE(configFile);
    VIR_FREE(autostartLink);
R
Ryota Ozaki 已提交
3251
    return ret;
3252 3253
}

3254
char *virNetworkConfigFile(const char *dir,
3255 3256 3257 3258
                           const char *name)
{
    char *ret = NULL;

3259
    ignore_value(virAsprintf(&ret, "%s/%s.xml", dir, name));
3260
    return ret;
3261
}
D
Daniel P. Berrange 已提交
3262

E
Eric Blake 已提交
3263
int virNetworkBridgeInUse(virNetworkObjListPtr nets,
3264 3265 3266
                          const char *bridge,
                          const char *skipname)
{
3267
    size_t i;
3268 3269
    unsigned int ret = 0;

3270
    for (i = 0; i < nets->count; i++) {
3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281
        virNetworkObjLock(nets->objs[i]);
        if (nets->objs[i]->def->bridge &&
            STREQ(nets->objs[i]->def->bridge, bridge) &&
            !(skipname && STREQ(nets->objs[i]->def->name, skipname)))
                ret = 1;
        virNetworkObjUnlock(nets->objs[i]);
    }

    return ret;
}

E
Eric Blake 已提交
3282
char *virNetworkAllocateBridge(virNetworkObjListPtr nets,
3283
                               const char *template)
3284 3285 3286 3287 3288
{

    int id = 0;
    char *newname;

3289 3290 3291
    if (!template)
        template = "virbr%d";

3292
    do {
3293
        if (virAsprintf(&newname, template, id) < 0)
3294 3295
            return NULL;
        if (!virNetworkBridgeInUse(nets, newname, NULL)) {
3296 3297
            return newname;
        }
3298
        VIR_FREE(newname);
3299 3300

        id++;
3301
    } while (id <= MAX_BRIDGE_ID);
3302

3303 3304 3305
    virReportError(VIR_ERR_INTERNAL_ERROR,
                   _("Bridge generation exceeded max id %d"),
                   MAX_BRIDGE_ID);
3306 3307 3308
    return NULL;
}

E
Eric Blake 已提交
3309
int virNetworkSetBridgeName(virNetworkObjListPtr nets,
3310
                            virNetworkDefPtr def,
E
Eric Blake 已提交
3311 3312
                            int check_collision)
{
3313 3314
    int ret = -1;

3315
    if (def->bridge && !strstr(def->bridge, "%d")) {
3316 3317 3318 3319 3320
        /* We may want to skip collision detection in this case (ex. when
         * loading configs at daemon startup, so the network is at least
         * defined. */
        if (check_collision &&
            virNetworkBridgeInUse(nets, def->bridge, def->name)) {
3321 3322 3323
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("bridge name '%s' already in use."),
                           def->bridge);
3324 3325 3326 3327
            goto error;
        }
    } else {
        /* Allocate a bridge name */
3328
        if (!(def->bridge = virNetworkAllocateBridge(nets, def->bridge)))
3329 3330 3331 3332
            goto error;
    }

    ret = 0;
3333
 error:
3334 3335
    return ret;
}
3336

3337

3338 3339 3340 3341 3342 3343
void virNetworkSetBridgeMacAddr(virNetworkDefPtr def)
{
    if (!def->mac_specified) {
        /* if the bridge doesn't have a mac address explicitly defined,
         * autogenerate a random one.
         */
3344
        virMacAddrGenerate((unsigned char[]){ 0x52, 0x54, 0 },
3345
                           &def->mac);
3346 3347 3348 3349
        def->mac_specified = true;
    }
}

3350 3351 3352 3353 3354 3355 3356 3357 3358
/* NetworkObj backend of the virNetworkUpdate API */

static void
virNetworkDefUpdateNoSupport(virNetworkDefPtr def, const char *section)
{
    virReportError(VIR_ERR_NO_SUPPORT,
                   _("can't update '%s' section of network '%s'"),
                   section, def->name);
}
3359 3360 3361 3362 3363 3364
static void
virNetworkDefUpdateUnknownCommand(unsigned int command)
{
    virReportError(VIR_ERR_NO_SUPPORT,
                   _("unrecognized network update command code %d"), command);
}
3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416

static int
virNetworkDefUpdateCheckElementName(virNetworkDefPtr def,
                                    xmlNodePtr node,
                                    const char *section)
{
    if (!xmlStrEqual(node->name, BAD_CAST section)) {
        virReportError(VIR_ERR_XML_ERROR,
                       _("unexpected element <%s>, expecting <%s>, "
                         "while updating network '%s'"),
                       node->name, section, def->name);
        return -1;
    }
    return 0;
}

static int
virNetworkDefUpdateBridge(virNetworkDefPtr def,
                          unsigned int command ATTRIBUTE_UNUSED,
                          int parentIndex ATTRIBUTE_UNUSED,
                          xmlXPathContextPtr ctxt ATTRIBUTE_UNUSED,
                          /* virNetworkUpdateFlags */
                          unsigned int fflags ATTRIBUTE_UNUSED)
{
    virNetworkDefUpdateNoSupport(def, "bridge");
    return -1;
}

static int
virNetworkDefUpdateDomain(virNetworkDefPtr def,
                          unsigned int command ATTRIBUTE_UNUSED,
                          int parentIndex ATTRIBUTE_UNUSED,
                          xmlXPathContextPtr ctxt ATTRIBUTE_UNUSED,
                          /* virNetworkUpdateFlags */
                          unsigned int fflags ATTRIBUTE_UNUSED)
{
    virNetworkDefUpdateNoSupport(def, "domain");
    return -1;
}

static int
virNetworkDefUpdateIP(virNetworkDefPtr def,
                      unsigned int command ATTRIBUTE_UNUSED,
                      int parentIndex ATTRIBUTE_UNUSED,
                      xmlXPathContextPtr ctxt ATTRIBUTE_UNUSED,
                      /* virNetworkUpdateFlags */
                      unsigned int fflags ATTRIBUTE_UNUSED)
{
    virNetworkDefUpdateNoSupport(def, "ip");
    return -1;
}

3417 3418 3419 3420
static virNetworkIpDefPtr
virNetworkIpDefByIndex(virNetworkDefPtr def, int parentIndex)
{
    virNetworkIpDefPtr ipdef = NULL;
3421
    size_t i;
3422 3423 3424 3425

    /* first find which ip element's dhcp host list to work on */
    if (parentIndex >= 0) {
        ipdef = virNetworkDefGetIpByIndex(def, AF_UNSPEC, parentIndex);
G
Gene Czarcinski 已提交
3426
        if (!(ipdef)) {
3427
            virReportError(VIR_ERR_OPERATION_INVALID,
G
Gene Czarcinski 已提交
3428
                           _("couldn't update dhcp host entry - no <ip> "
3429 3430 3431 3432 3433 3434 3435 3436 3437
                             "element found at index %d in network '%s'"),
                           parentIndex, def->name);
        }
        return ipdef;
    }

    /* -1 means "find the most appropriate", which in this case
     * means the one and only <ip> that has <dhcp> element
     */
3438 3439 3440
    for (i = 0;
         (ipdef = virNetworkDefGetIpByIndex(def, AF_UNSPEC, i));
         i++) {
G
Gene Czarcinski 已提交
3441
        if (ipdef->nranges || ipdef->nhosts)
3442 3443
            break;
    }
G
Gene Czarcinski 已提交
3444
    if (!ipdef) {
3445
        ipdef = virNetworkDefGetIpByIndex(def, AF_INET, 0);
G
Gene Czarcinski 已提交
3446 3447 3448
        if (!ipdef)
            ipdef = virNetworkDefGetIpByIndex(def, AF_INET6, 0);
    }
3449 3450
    if (!ipdef) {
        virReportError(VIR_ERR_OPERATION_INVALID,
G
Gene Czarcinski 已提交
3451
                       _("couldn't update dhcp host entry - no <ip> "
3452 3453 3454 3455 3456
                         "element found in network '%s'"), def->name);
    }
    return ipdef;
}

3457 3458
static int
virNetworkDefUpdateIPDHCPHost(virNetworkDefPtr def,
3459 3460 3461
                              unsigned int command,
                              int parentIndex,
                              xmlXPathContextPtr ctxt,
3462 3463 3464
                              /* virNetworkUpdateFlags */
                              unsigned int fflags ATTRIBUTE_UNUSED)
{
3465 3466
    size_t i;
    int ret = -1;
3467 3468
    virNetworkIpDefPtr ipdef = virNetworkIpDefByIndex(def, parentIndex);
    virNetworkDHCPHostDef host;
3469
    bool partialOkay = (command == VIR_NETWORK_UPDATE_COMMAND_DELETE);
3470 3471 3472 3473 3474 3475 3476 3477 3478 3479

    memset(&host, 0, sizeof(host));

    if (virNetworkDefUpdateCheckElementName(def, ctxt->node, "host") < 0)
        goto cleanup;

    /* ipdef is the ip element that needs its host array updated */
    if (!ipdef)
        goto cleanup;

3480 3481 3482
    if (virNetworkDHCPHostDefParseXML(def->name, ipdef, ctxt->node,
                                      &host, partialOkay) < 0)
        goto cleanup;
3483

3484
    if (command == VIR_NETWORK_UPDATE_COMMAND_MODIFY) {
3485 3486 3487

        /* search for the entry with this (mac|name),
         * and update the IP+(mac|name) */
3488
        for (i = 0; i < ipdef->nhosts; i++) {
3489
            if ((host.mac &&
3490
                 !virMacAddrCompare(host.mac, ipdef->hosts[i].mac)) ||
3491
                (host.name &&
3492
                 STREQ_NULLABLE(host.name, ipdef->hosts[i].name))) {
3493 3494 3495 3496
                break;
            }
        }

3497
        if (i == ipdef->nhosts) {
3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508
            virReportError(VIR_ERR_OPERATION_INVALID,
                           _("couldn't locate an existing dhcp host entry with "
                             "\"mac='%s'\" in network '%s'"),
                           host.mac, def->name);
            goto cleanup;
        }

        /* clear the existing hosts entry, move the new one in its place,
         * then clear out the extra copy to get rid of the duplicate pointers
         * to its data (mac and name strings).
         */
3509 3510
        virNetworkDHCPHostDefClear(&ipdef->hosts[i]);
        ipdef->hosts[i] = host;
3511 3512 3513 3514 3515 3516
        memset(&host, 0, sizeof(host));

    } else if ((command == VIR_NETWORK_UPDATE_COMMAND_ADD_FIRST) ||
               (command == VIR_NETWORK_UPDATE_COMMAND_ADD_LAST)) {

        /* log error if an entry with same name/address/ip already exists */
3517
        for (i = 0; i < ipdef->nhosts; i++) {
3518
            if ((host.mac &&
3519
                 !virMacAddrCompare(host.mac, ipdef->hosts[i].mac)) ||
3520
                (host.name &&
3521
                 STREQ_NULLABLE(host.name, ipdef->hosts[i].name)) ||
3522
                (VIR_SOCKET_ADDR_VALID(&host.ip) &&
3523
                 virSocketAddrEqual(&host.ip, &ipdef->hosts[i].ip))) {
3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535
                char *ip = virSocketAddrFormat(&host.ip);

                virReportError(VIR_ERR_OPERATION_INVALID,
                               _("there is an existing dhcp host entry in "
                                 "network '%s' that matches "
                                 "\"<host mac='%s' name='%s' ip='%s'/>\""),
                               def->name, host.mac, host.name,
                               ip ? ip : "unknown");
                VIR_FREE(ip);
                goto cleanup;
            }
        }
3536

3537
        /* add to beginning/end of list */
3538 3539 3540 3541
        if (VIR_INSERT_ELEMENT(ipdef->hosts,
                               command == VIR_NETWORK_UPDATE_COMMAND_ADD_FIRST
                               ? 0 : ipdef->nhosts,
                               ipdef->nhosts, host) < 0)
3542 3543 3544 3545
            goto cleanup;
    } else if (command == VIR_NETWORK_UPDATE_COMMAND_DELETE) {

        /* find matching entry - all specified attributes must match */
3546
        for (i = 0; i < ipdef->nhosts; i++) {
3547
            if ((!host.mac ||
3548
                 !virMacAddrCompare(host.mac, ipdef->hosts[i].mac)) &&
3549
                (!host.name ||
3550
                 STREQ_NULLABLE(host.name, ipdef->hosts[i].name)) &&
3551
                (!VIR_SOCKET_ADDR_VALID(&host.ip) ||
3552
                 virSocketAddrEqual(&host.ip, &ipdef->hosts[i].ip))) {
3553 3554 3555
                break;
            }
        }
3556
        if (i == ipdef->nhosts) {
3557 3558 3559 3560 3561 3562 3563
            virReportError(VIR_ERR_OPERATION_INVALID,
                           _("couldn't locate a matching dhcp host entry "
                             "in network '%s'"), def->name);
            goto cleanup;
        }

        /* remove it */
3564 3565
        virNetworkDHCPHostDefClear(&ipdef->hosts[i]);
        VIR_DELETE_ELEMENT(ipdef->hosts, i, ipdef->nhosts);
3566

3567 3568 3569
    } else {
        virNetworkDefUpdateUnknownCommand(command);
        goto cleanup;
3570 3571 3572
    }

    ret = 0;
3573
 cleanup:
3574 3575
    virNetworkDHCPHostDefClear(&host);
    return ret;
3576 3577 3578 3579
}

static int
virNetworkDefUpdateIPDHCPRange(virNetworkDefPtr def,
3580
                               unsigned int command,
3581
                               int parentIndex,
3582
                               xmlXPathContextPtr ctxt,
3583 3584 3585
                               /* virNetworkUpdateFlags */
                               unsigned int fflags ATTRIBUTE_UNUSED)
{
3586 3587
    size_t i;
    int ret = -1;
3588
    virNetworkIpDefPtr ipdef = virNetworkIpDefByIndex(def, parentIndex);
3589
    virSocketAddrRange range;
3590 3591 3592 3593 3594 3595 3596 3597 3598 3599

    memset(&range, 0, sizeof(range));

    if (virNetworkDefUpdateCheckElementName(def, ctxt->node, "range") < 0)
        goto cleanup;

    /* ipdef is the ip element that needs its range array updated */
    if (!ipdef)
        goto cleanup;

3600
    /* parse the xml into a virSocketAddrRange */
3601 3602 3603 3604 3605 3606 3607 3608
    if (command == VIR_NETWORK_UPDATE_COMMAND_MODIFY) {

        virReportError(VIR_ERR_NO_SUPPORT, "%s",
                       _("dhcp ranges cannot be modified, "
                         "only added or deleted"));
        goto cleanup;
    }

3609
    if (virSocketAddrRangeParseXML(def->name, ctxt->node, &range) < 0)
3610 3611 3612
        goto cleanup;

    /* check if an entry with same name/address/ip already exists */
3613 3614 3615
    for (i = 0; i < ipdef->nranges; i++) {
        if (virSocketAddrEqual(&range.start, &ipdef->ranges[i].start) &&
            virSocketAddrEqual(&range.end, &ipdef->ranges[i].end)) {
3616 3617 3618 3619 3620 3621 3622
            break;
        }
    }

    if ((command == VIR_NETWORK_UPDATE_COMMAND_ADD_FIRST) ||
        (command == VIR_NETWORK_UPDATE_COMMAND_ADD_LAST)) {

3623
        if (i < ipdef->nranges) {
3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637
            char *startip = virSocketAddrFormat(&range.start);
            char *endip = virSocketAddrFormat(&range.end);

            virReportError(VIR_ERR_OPERATION_INVALID,
                           _("there is an existing dhcp range entry in "
                             "network '%s' that matches "
                             "\"<range start='%s' end='%s'/>\""),
                           def->name,
                           startip ? startip : "unknown",
                           endip ? endip : "unknown");
            goto cleanup;
        }

        /* add to beginning/end of list */
3638 3639 3640 3641
        if (VIR_INSERT_ELEMENT(ipdef->ranges,
                               command == VIR_NETWORK_UPDATE_COMMAND_ADD_FIRST
                               ? 0 : ipdef->nranges,
                               ipdef->nranges, range) < 0)
3642 3643 3644
            goto cleanup;
    } else if (command == VIR_NETWORK_UPDATE_COMMAND_DELETE) {

3645
        if (i == ipdef->nranges) {
3646 3647 3648 3649 3650 3651 3652 3653
            virReportError(VIR_ERR_OPERATION_INVALID,
                           _("couldn't locate a matching dhcp range entry "
                             "in network '%s'"), def->name);
            goto cleanup;
        }

        /* remove it */
        /* NB: nothing to clear from a RangeDef that's being freed */
3654
        VIR_DELETE_ELEMENT(ipdef->ranges, i, ipdef->nranges);
3655

3656 3657 3658
    } else {
        virNetworkDefUpdateUnknownCommand(command);
        goto cleanup;
3659 3660 3661
    }

    ret = 0;
3662
 cleanup:
3663
    return ret;
3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679
}

static int
virNetworkDefUpdateForward(virNetworkDefPtr def,
                           unsigned int command ATTRIBUTE_UNUSED,
                           int parentIndex ATTRIBUTE_UNUSED,
                           xmlXPathContextPtr ctxt ATTRIBUTE_UNUSED,
                           /* virNetworkUpdateFlags */
                           unsigned int fflags ATTRIBUTE_UNUSED)
{
    virNetworkDefUpdateNoSupport(def, "forward");
    return -1;
}

static int
virNetworkDefUpdateForwardInterface(virNetworkDefPtr def,
3680
                                    unsigned int command,
3681
                                    int parentIndex ATTRIBUTE_UNUSED,
3682
                                    xmlXPathContextPtr ctxt,
3683 3684 3685
                                    /* virNetworkUpdateFlags */
                                    unsigned int fflags ATTRIBUTE_UNUSED)
{
3686 3687
    size_t i;
    int ret = -1;
3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710
    virNetworkForwardIfDef iface;

    memset(&iface, 0, sizeof(iface));

    if (virNetworkDefUpdateCheckElementName(def, ctxt->node, "interface") < 0)
        goto cleanup;

    if (command == VIR_NETWORK_UPDATE_COMMAND_MODIFY) {
        virReportError(VIR_ERR_NO_SUPPORT, "%s",
                       _("forward interface entries cannot be modified, "
                         "only added or deleted"));
        goto cleanup;
    }

    /* parsing this is so simple that it doesn't have its own function */
    iface.type = VIR_NETWORK_FORWARD_HOSTDEV_DEVICE_NETDEV;
    if (!(iface.device.dev = virXMLPropString(ctxt->node, "dev"))) {
        virReportError(VIR_ERR_XML_ERROR, "%s",
                       _("missing dev attribute in <interface> element"));
        goto cleanup;
    }

    /* check if an <interface> with same dev name already exists */
3711 3712
    for (i = 0; i < def->forward.nifs; i++) {
        if (def->forward.ifs[i].type
3713
            == VIR_NETWORK_FORWARD_HOSTDEV_DEVICE_NETDEV &&
3714
            STREQ(iface.device.dev, def->forward.ifs[i].device.dev))
3715 3716 3717 3718 3719 3720
            break;
    }

    if ((command == VIR_NETWORK_UPDATE_COMMAND_ADD_FIRST) ||
        (command == VIR_NETWORK_UPDATE_COMMAND_ADD_LAST)) {

3721
        if (i < def->forward.nifs) {
3722 3723 3724 3725 3726 3727 3728 3729 3730
            virReportError(VIR_ERR_OPERATION_INVALID,
                           _("there is an existing interface entry "
                             "in network '%s' that matches "
                             "\"<interface dev='%s'>\""),
                           def->name, iface.device.dev);
            goto cleanup;
        }

        /* add to beginning/end of list */
3731 3732 3733 3734
        if (VIR_INSERT_ELEMENT(def->forward.ifs,
                               command == VIR_NETWORK_UPDATE_COMMAND_ADD_FIRST
                               ? 0 : def->forward.nifs,
                               def->forward.nifs, iface) < 0)
3735 3736 3737
            goto cleanup;
    } else if (command == VIR_NETWORK_UPDATE_COMMAND_DELETE) {

3738
        if (i == def->forward.nifs) {
3739 3740 3741 3742 3743 3744 3745 3746
            virReportError(VIR_ERR_OPERATION_INVALID,
                           _("couldn't find an interface entry "
                             "in network '%s' matching <interface dev='%s'>"),
                           def->name, iface.device.dev);
            goto cleanup;
        }

        /* fail if the interface is being used */
3747
        if (def->forward.ifs[i].connections > 0) {
3748 3749 3750 3751 3752
            virReportError(VIR_ERR_OPERATION_INVALID,
                           _("unable to delete interface '%s' "
                             "in network '%s'. It is currently being used "
                             " by %d domains."),
                           iface.device.dev, def->name,
3753
                           def->forward.ifs[i].connections);
3754 3755 3756 3757
            goto cleanup;
        }

        /* remove it */
3758 3759
        virNetworkForwardIfDefClear(&def->forward.ifs[i]);
        VIR_DELETE_ELEMENT(def->forward.ifs, i, def->forward.nifs);
3760

3761 3762 3763 3764 3765 3766
    } else {
        virNetworkDefUpdateUnknownCommand(command);
        goto cleanup;
    }

    ret = 0;
3767
 cleanup:
3768 3769
    virNetworkForwardIfDefClear(&iface);
    return ret;
3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784
}

static int
virNetworkDefUpdateForwardPF(virNetworkDefPtr def,
                             unsigned int command ATTRIBUTE_UNUSED,
                             int parentIndex ATTRIBUTE_UNUSED,
                             xmlXPathContextPtr ctxt ATTRIBUTE_UNUSED,
                             /* virNetworkUpdateFlags */
                             unsigned int fflags ATTRIBUTE_UNUSED)
{
    virNetworkDefUpdateNoSupport(def, "forward pf");
    return -1;
}

static int
3785 3786
virNetworkDefUpdatePortGroup(virNetworkDefPtr def,
                             unsigned int command,
3787
                             int parentIndex ATTRIBUTE_UNUSED,
3788
                             xmlXPathContextPtr ctxt,
3789 3790 3791
                             /* virNetworkUpdateFlags */
                             unsigned int fflags ATTRIBUTE_UNUSED)
{
3792 3793
    size_t i;
    int foundName = -1, foundDefault = -1;
3794
    int ret = -1;
3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805
    virPortGroupDef portgroup;

    memset(&portgroup, 0, sizeof(portgroup));

    if (virNetworkDefUpdateCheckElementName(def, ctxt->node, "portgroup") < 0)
        goto cleanup;

    if (virNetworkPortGroupParseXML(&portgroup, ctxt->node, ctxt) < 0)
        goto cleanup;

    /* check if a portgroup with same name already exists */
3806 3807 3808 3809 3810
    for (i = 0; i < def->nPortGroups; i++) {
        if (STREQ(portgroup.name, def->portGroups[i].name))
            foundName = i;
        if (def->portGroups[i].isDefault)
            foundDefault = i;
3811
    }
3812
    if (foundName == -1 &&
3813 3814 3815 3816 3817 3818 3819
        ((command == VIR_NETWORK_UPDATE_COMMAND_MODIFY) ||
         (command == VIR_NETWORK_UPDATE_COMMAND_DELETE))) {
        virReportError(VIR_ERR_OPERATION_INVALID,
                       _("couldn't find a portgroup entry "
                         "in network '%s' matching <portgroup name='%s'>"),
                       def->name, portgroup.name);
        goto cleanup;
3820
    } else if (foundName >= 0 &&
3821 3822 3823 3824 3825 3826 3827 3828 3829 3830
               ((command == VIR_NETWORK_UPDATE_COMMAND_ADD_FIRST) ||
                (command == VIR_NETWORK_UPDATE_COMMAND_ADD_LAST))) {
        virReportError(VIR_ERR_OPERATION_INVALID,
                       _("there is an existing portgroup entry in "
                         "network '%s' that matches "
                         "\"<portgroup name='%s'>\""),
                       def->name, portgroup.name);
        goto cleanup;
    }

3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844
    /* if there is already a different default, we can't make this
     * one the default.
     */
    if (command != VIR_NETWORK_UPDATE_COMMAND_DELETE &&
        portgroup.isDefault &&
        foundDefault >= 0 && foundDefault != foundName) {
        virReportError(VIR_ERR_OPERATION_INVALID,
                       _("a different portgroup entry in "
                         "network '%s' is already set as the default. "
                         "Only one default is allowed."),
                       def->name);
        goto cleanup;
    }

3845 3846 3847
    if (command == VIR_NETWORK_UPDATE_COMMAND_MODIFY) {

        /* replace existing entry */
3848 3849
        virPortGroupDefClear(&def->portGroups[foundName]);
        def->portGroups[foundName] = portgroup;
3850 3851 3852 3853 3854 3855
        memset(&portgroup, 0, sizeof(portgroup));

    } else if ((command == VIR_NETWORK_UPDATE_COMMAND_ADD_FIRST) ||
        (command == VIR_NETWORK_UPDATE_COMMAND_ADD_LAST)) {

        /* add to beginning/end of list */
3856 3857 3858 3859
        if (VIR_INSERT_ELEMENT(def->portGroups,
                               command == VIR_NETWORK_UPDATE_COMMAND_ADD_FIRST
                               ? 0 : def->nPortGroups,
                               def->nPortGroups, portgroup) < 0)
3860 3861 3862 3863
            goto cleanup;
    } else if (command == VIR_NETWORK_UPDATE_COMMAND_DELETE) {

        /* remove it */
3864
        virPortGroupDefClear(&def->portGroups[foundName]);
3865 3866
        VIR_DELETE_ELEMENT(def->portGroups, foundName, def->nPortGroups);

3867 3868 3869
    } else {
        virNetworkDefUpdateUnknownCommand(command);
        goto cleanup;
3870 3871 3872
    }

    ret = 0;
3873
 cleanup:
3874 3875
    virPortGroupDefClear(&portgroup);
    return ret;
3876 3877 3878 3879 3880 3881 3882 3883 3884 3885
}

static int
virNetworkDefUpdateDNSHost(virNetworkDefPtr def,
                           unsigned int command ATTRIBUTE_UNUSED,
                           int parentIndex ATTRIBUTE_UNUSED,
                           xmlXPathContextPtr ctxt ATTRIBUTE_UNUSED,
                           /* virNetworkUpdateFlags */
                           unsigned int fflags ATTRIBUTE_UNUSED)
{
3886 3887
    size_t i, j, k;
    int foundIdx = -1, ret = -1;
3888 3889 3890 3891
    virNetworkDNSDefPtr dns = &def->dns;
    virNetworkDNSHostDef host;
    bool isAdd = (command == VIR_NETWORK_UPDATE_COMMAND_ADD_FIRST ||
                  command == VIR_NETWORK_UPDATE_COMMAND_ADD_LAST);
3892
    int foundCt = 0;
3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908

    memset(&host, 0, sizeof(host));

    if (command == VIR_NETWORK_UPDATE_COMMAND_MODIFY) {
        virReportError(VIR_ERR_NO_SUPPORT, "%s",
                       _("DNS HOST records cannot be modified, "
                         "only added or deleted"));
        goto cleanup;
    }

    if (virNetworkDefUpdateCheckElementName(def, ctxt->node, "host") < 0)
        goto cleanup;

    if (virNetworkDNSHostDefParseXML(def->name, ctxt->node, &host, !isAdd) < 0)
        goto cleanup;

3909
    for (i = 0; i < dns->nhosts; i++) {
3910 3911
        bool foundThisTime = false;

3912
        if (virSocketAddrEqual(&host.ip, &dns->hosts[i].ip))
3913 3914
            foundThisTime = true;

3915 3916 3917
        for (j = 0; j < host.nnames && !foundThisTime; j++) {
            for (k = 0; k < dns->hosts[i].nnames && !foundThisTime; k++) {
                if (STREQ(host.names[j], dns->hosts[i].names[k]))
3918 3919 3920 3921 3922
                    foundThisTime = true;
            }
        }
        if (foundThisTime) {
            foundCt++;
3923
            foundIdx = i;
3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937
        }
    }

    if (isAdd) {

        if (foundCt > 0) {
            virReportError(VIR_ERR_OPERATION_INVALID,
                           _("there is already at least one DNS HOST "
                             "record with a matching field in network %s"),
                           def->name);
            goto cleanup;
        }

        /* add to beginning/end of list */
3938 3939 3940
        if (VIR_INSERT_ELEMENT(dns->hosts,
                               command == VIR_NETWORK_UPDATE_COMMAND_ADD_FIRST
                               ? 0 : dns->nhosts, dns->nhosts, host) < 0)
3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966
            goto cleanup;
    } else if (command == VIR_NETWORK_UPDATE_COMMAND_DELETE) {

        if (foundCt == 0) {
            virReportError(VIR_ERR_OPERATION_INVALID,
                           _("couldn't locate a matching DNS HOST "
                             "record in network %s"), def->name);
            goto cleanup;
        }
        if (foundCt > 1) {
            virReportError(VIR_ERR_OPERATION_INVALID,
                           _("multiple matching DNS HOST records were "
                             "found in network %s"), def->name);
            goto cleanup;
        }

        /* remove it */
        virNetworkDNSHostDefClear(&dns->hosts[foundIdx]);
        VIR_DELETE_ELEMENT(dns->hosts, foundIdx, dns->nhosts);

    } else {
        virNetworkDefUpdateUnknownCommand(command);
        goto cleanup;
    }

    ret = 0;
3967
 cleanup:
3968 3969
    virNetworkDNSHostDefClear(&host);
    return ret;
3970 3971 3972
}

static int
3973
virNetworkDefUpdateDNSSrv(virNetworkDefPtr def,
3974 3975 3976 3977 3978 3979
                          unsigned int command ATTRIBUTE_UNUSED,
                          int parentIndex ATTRIBUTE_UNUSED,
                          xmlXPathContextPtr ctxt ATTRIBUTE_UNUSED,
                          /* virNetworkUpdateFlags */
                          unsigned int fflags ATTRIBUTE_UNUSED)
{
3980 3981
    size_t i;
    int foundIdx = -1, ret = -1;
3982 3983 3984 3985
    virNetworkDNSDefPtr dns = &def->dns;
    virNetworkDNSSrvDef srv;
    bool isAdd = (command == VIR_NETWORK_UPDATE_COMMAND_ADD_FIRST ||
                  command == VIR_NETWORK_UPDATE_COMMAND_ADD_LAST);
3986
    int foundCt = 0;
3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002

    memset(&srv, 0, sizeof(srv));

    if (command == VIR_NETWORK_UPDATE_COMMAND_MODIFY) {
        virReportError(VIR_ERR_NO_SUPPORT, "%s",
                       _("DNS SRV records cannot be modified, "
                         "only added or deleted"));
        goto cleanup;
    }

    if (virNetworkDefUpdateCheckElementName(def, ctxt->node, "srv") < 0)
        goto cleanup;

    if (virNetworkDNSSrvDefParseXML(def->name, ctxt->node, ctxt, &srv, !isAdd) < 0)
        goto cleanup;

4003 4004 4005 4006 4007
    for (i = 0; i < dns->nsrvs; i++) {
        if ((!srv.domain || STREQ_NULLABLE(srv.domain, dns->srvs[i].domain)) &&
            (!srv.service || STREQ_NULLABLE(srv.service, dns->srvs[i].service)) &&
            (!srv.protocol || STREQ_NULLABLE(srv.protocol, dns->srvs[i].protocol)) &&
            (!srv.target || STREQ_NULLABLE(srv.target, dns->srvs[i].target))) {
4008
            foundCt++;
4009
            foundIdx = i;
4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023
        }
    }

    if (isAdd) {

        if (foundCt > 0) {
            virReportError(VIR_ERR_OPERATION_INVALID,
                           _("there is already at least one DNS SRV "
                             "record matching all specified fields in network %s"),
                           def->name);
            goto cleanup;
        }

        /* add to beginning/end of list */
4024 4025 4026
        if (VIR_INSERT_ELEMENT(dns->srvs,
                               command == VIR_NETWORK_UPDATE_COMMAND_ADD_FIRST
                               ? 0 : dns->nsrvs, dns->nsrvs, srv) < 0)
4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052
            goto cleanup;
    } else if (command == VIR_NETWORK_UPDATE_COMMAND_DELETE) {

        if (foundCt == 0) {
            virReportError(VIR_ERR_OPERATION_INVALID,
                           _("couldn't locate a matching DNS SRV "
                             "record in network %s"), def->name);
            goto cleanup;
        }
        if (foundCt > 1) {
            virReportError(VIR_ERR_OPERATION_INVALID,
                           _("multiple DNS SRV records matching all specified "
                             "fields were found in network %s"), def->name);
            goto cleanup;
        }

        /* remove it */
        virNetworkDNSSrvDefClear(&dns->srvs[foundIdx]);
        VIR_DELETE_ELEMENT(dns->srvs, foundIdx, dns->nsrvs);

    } else {
        virNetworkDefUpdateUnknownCommand(command);
        goto cleanup;
    }

    ret = 0;
4053
 cleanup:
4054 4055
    virNetworkDNSSrvDefClear(&srv);
    return ret;
4056 4057 4058
}

static int
4059
virNetworkDefUpdateDNSTxt(virNetworkDefPtr def,
4060 4061 4062 4063 4064 4065
                          unsigned int command ATTRIBUTE_UNUSED,
                          int parentIndex ATTRIBUTE_UNUSED,
                          xmlXPathContextPtr ctxt ATTRIBUTE_UNUSED,
                          /* virNetworkUpdateFlags */
                          unsigned int fflags ATTRIBUTE_UNUSED)
{
4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102
    int foundIdx, ret = -1;
    virNetworkDNSDefPtr dns = &def->dns;
    virNetworkDNSTxtDef txt;
    bool isAdd = (command == VIR_NETWORK_UPDATE_COMMAND_ADD_FIRST ||
                  command == VIR_NETWORK_UPDATE_COMMAND_ADD_LAST);

    memset(&txt, 0, sizeof(txt));

    if (command == VIR_NETWORK_UPDATE_COMMAND_MODIFY) {
        virReportError(VIR_ERR_NO_SUPPORT, "%s",
                       _("DNS TXT records cannot be modified, "
                         "only added or deleted"));
        goto cleanup;
    }

    if (virNetworkDefUpdateCheckElementName(def, ctxt->node, "txt") < 0)
        goto cleanup;

    if (virNetworkDNSTxtDefParseXML(def->name, ctxt->node, &txt, !isAdd) < 0)
        goto cleanup;

    for (foundIdx = 0; foundIdx < dns->ntxts; foundIdx++) {
        if (STREQ(txt.name, dns->txts[foundIdx].name))
            break;
    }

    if (isAdd) {

        if (foundIdx < dns->ntxts) {
            virReportError(VIR_ERR_OPERATION_INVALID,
                           _("there is already a DNS TXT record "
                             "with name '%s' in network %s"),
                           txt.name, def->name);
            goto cleanup;
        }

        /* add to beginning/end of list */
4103 4104 4105
        if (VIR_INSERT_ELEMENT(dns->txts,
                               command == VIR_NETWORK_UPDATE_COMMAND_ADD_FIRST
                               ? 0 : dns->ntxts, dns->ntxts, txt) < 0)
4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125
            goto cleanup;
    } else if (command == VIR_NETWORK_UPDATE_COMMAND_DELETE) {

        if (foundIdx == dns->ntxts) {
            virReportError(VIR_ERR_OPERATION_INVALID,
                           _("couldn't locate a matching DNS TXT "
                             "record in network %s"), def->name);
            goto cleanup;
        }

        /* remove it */
        virNetworkDNSTxtDefClear(&dns->txts[foundIdx]);
        VIR_DELETE_ELEMENT(dns->txts, foundIdx, dns->ntxts);

    } else {
        virNetworkDefUpdateUnknownCommand(command);
        goto cleanup;
    }

    ret = 0;
4126
 cleanup:
4127 4128
    virNetworkDNSTxtDefClear(&txt);
    return ret;
4129 4130
}

J
Ján Tomko 已提交
4131
int
4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177
virNetworkDefUpdateSection(virNetworkDefPtr def,
                           unsigned int command, /* virNetworkUpdateCommand */
                           unsigned int section, /* virNetworkUpdateSection */
                           int parentIndex,
                           const char *xml,
                           unsigned int flags)  /* virNetworkUpdateFlags */
{
    int ret = -1;
    xmlDocPtr doc;
    xmlXPathContextPtr ctxt = NULL;

    if (!(doc = virXMLParseStringCtxt(xml, _("network_update_xml"), &ctxt)))
        goto cleanup;

    switch (section) {
    case VIR_NETWORK_SECTION_BRIDGE:
       ret = virNetworkDefUpdateBridge(def, command, parentIndex, ctxt, flags);
        break;

    case VIR_NETWORK_SECTION_DOMAIN:
        ret = virNetworkDefUpdateDomain(def, command, parentIndex, ctxt, flags);
        break;
    case VIR_NETWORK_SECTION_IP:
        ret = virNetworkDefUpdateIP(def, command, parentIndex, ctxt, flags);
        break;
    case VIR_NETWORK_SECTION_IP_DHCP_HOST:
        ret = virNetworkDefUpdateIPDHCPHost(def, command,
                                            parentIndex, ctxt, flags);
        break;
    case VIR_NETWORK_SECTION_IP_DHCP_RANGE:
        ret = virNetworkDefUpdateIPDHCPRange(def, command,
                                             parentIndex, ctxt, flags);
        break;
    case VIR_NETWORK_SECTION_FORWARD:
        ret = virNetworkDefUpdateForward(def, command,
                                         parentIndex, ctxt, flags);
        break;
    case VIR_NETWORK_SECTION_FORWARD_INTERFACE:
        ret = virNetworkDefUpdateForwardInterface(def, command,
                                                  parentIndex, ctxt, flags);
        break;
    case VIR_NETWORK_SECTION_FORWARD_PF:
        ret = virNetworkDefUpdateForwardPF(def, command,
                                           parentIndex, ctxt, flags);
        break;
    case VIR_NETWORK_SECTION_PORTGROUP:
4178
        ret = virNetworkDefUpdatePortGroup(def, command,
4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196
                                           parentIndex, ctxt, flags);
        break;
    case VIR_NETWORK_SECTION_DNS_HOST:
        ret = virNetworkDefUpdateDNSHost(def, command,
                                         parentIndex, ctxt, flags);
        break;
    case VIR_NETWORK_SECTION_DNS_TXT:
        ret = virNetworkDefUpdateDNSTxt(def, command, parentIndex, ctxt, flags);
        break;
    case VIR_NETWORK_SECTION_DNS_SRV:
        ret = virNetworkDefUpdateDNSSrv(def, command, parentIndex, ctxt, flags);
        break;
    default:
        virReportError(VIR_ERR_NO_SUPPORT, "%s",
                       _("can't update unrecognized section of network"));
        break;
    }

4197
 cleanup:
4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225
    xmlFreeDoc(doc);
    xmlXPathFreeContext(ctxt);
    return ret;
}

/*
 * 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
virNetworkObjUpdate(virNetworkObjPtr network,
                    unsigned int command, /* virNetworkUpdateCommand */
                    unsigned int section, /* virNetworkUpdateSection */
                    int parentIndex,
                    const char *xml,
                    unsigned int flags)  /* virNetworkUpdateFlags */
{
    int ret = -1;
4226
    virNetworkDefPtr livedef = NULL, configdef = NULL;
4227 4228 4229 4230 4231 4232

    /* normalize config data, and check for common invalid requests. */
    if (virNetworkConfigChangeSetup(network, flags) < 0)
       goto cleanup;

    if (flags & VIR_NETWORK_UPDATE_AFFECT_LIVE) {
4233 4234
        virNetworkDefPtr checkdef;

4235
        /* work on a copy of the def */
4236
        if (!(livedef = virNetworkDefCopy(network->def, 0)))
4237
            goto cleanup;
4238
        if (virNetworkDefUpdateSection(livedef, command, section,
4239 4240 4241
                                       parentIndex, xml, flags) < 0) {
            goto cleanup;
        }
4242 4243 4244 4245 4246 4247
        /* 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);
4248 4249 4250
    }

    if (flags & VIR_NETWORK_UPDATE_AFFECT_CONFIG) {
4251 4252
        virNetworkDefPtr checkdef;

4253
        /* work on a copy of the def */
4254 4255
        if (!(configdef = virNetworkDefCopy(virNetworkObjGetPersistentDef(network),
                                            VIR_NETWORK_XML_INACTIVE))) {
4256 4257
            goto cleanup;
        }
4258
        if (virNetworkDefUpdateSection(configdef, command, section,
4259 4260 4261
                                       parentIndex, xml, flags) < 0) {
            goto cleanup;
        }
4262 4263 4264 4265 4266 4267 4268 4269
        if (!(checkdef = virNetworkDefCopy(configdef,
                                           VIR_NETWORK_XML_INACTIVE))) {
            goto cleanup;
        }
        virNetworkDefFree(checkdef);
    }

    if (configdef) {
4270
        /* successfully modified copy, now replace original */
4271
        if (virNetworkObjReplacePersistentDef(network, configdef) < 0)
4272
           goto cleanup;
4273 4274 4275 4276 4277 4278 4279
        configdef = NULL;
    }
    if (livedef) {
        /* successfully modified copy, now replace original */
        virNetworkDefFree(network->def);
        network->def = livedef;
        livedef = NULL;
4280 4281 4282
    }

    ret = 0;
4283
 cleanup:
4284 4285
    virNetworkDefFree(livedef);
    virNetworkDefFree(configdef);
4286 4287 4288
    return ret;
}

4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301
/*
 * virNetworkObjIsDuplicate:
 * @doms : virNetworkObjListPtr to search
 * @def  : virNetworkDefPtr definition of network to lookup
 * @check_active: If true, ensure that network is not active
 *
 * Returns: -1 on error
 *          0 if network is new
 *          1 if network is a duplicate
 */
int
virNetworkObjIsDuplicate(virNetworkObjListPtr doms,
                         virNetworkDefPtr def,
4302
                         bool check_active)
4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313
{
    int ret = -1;
    virNetworkObjPtr vm = NULL;

    /* See if a VM with matching UUID already exists */
    vm = virNetworkFindByUUID(doms, def->uuid);
    if (vm) {
        /* UUID matches, but if names don't match, refuse it */
        if (STRNEQ(vm->def->name, def->name)) {
            char uuidstr[VIR_UUID_STRING_BUFLEN];
            virUUIDFormat(vm->def->uuid, uuidstr);
4314 4315 4316
            virReportError(VIR_ERR_OPERATION_FAILED,
                           _("network '%s' is already defined with uuid %s"),
                           vm->def->name, uuidstr);
4317 4318 4319 4320 4321 4322
            goto cleanup;
        }

        if (check_active) {
            /* UUID & name match, but if VM is already active, refuse it */
            if (virNetworkObjIsActive(vm)) {
4323 4324 4325
                virReportError(VIR_ERR_OPERATION_INVALID,
                               _("network is already active as '%s'"),
                               vm->def->name);
4326 4327 4328 4329
                goto cleanup;
            }
        }

J
Ján Tomko 已提交
4330
        ret = 1;
4331 4332 4333 4334 4335 4336
    } else {
        /* UUID does not match, but if a name matches, refuse it */
        vm = virNetworkFindByName(doms, def->name);
        if (vm) {
            char uuidstr[VIR_UUID_STRING_BUFLEN];
            virUUIDFormat(vm->def->uuid, uuidstr);
4337 4338 4339
            virReportError(VIR_ERR_OPERATION_FAILED,
                           _("network '%s' already exists with uuid %s"),
                           def->name, uuidstr);
4340 4341
            goto cleanup;
        }
J
Ján Tomko 已提交
4342
        ret = 0;
4343 4344
    }

4345
 cleanup:
4346 4347 4348 4349 4350 4351
    if (vm)
        virNetworkObjUnlock(vm);
    return ret;
}


4352 4353
void virNetworkObjLock(virNetworkObjPtr obj)
{
4354
    virMutexLock(&obj->lock);
4355 4356 4357 4358
}

void virNetworkObjUnlock(virNetworkObjPtr obj)
{
4359
    virMutexUnlock(&obj->lock);
D
Daniel P. Berrange 已提交
4360
}
4361 4362 4363

#define MATCH(FLAG) (flags & (FLAG))
static bool
4364 4365
virNetworkMatch(virNetworkObjPtr netobj,
                unsigned int flags)
4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395
{
    /* filter by active state */
    if (MATCH(VIR_CONNECT_LIST_NETWORKS_FILTERS_ACTIVE) &&
        !((MATCH(VIR_CONNECT_LIST_NETWORKS_ACTIVE) &&
           virNetworkObjIsActive(netobj)) ||
          (MATCH(VIR_CONNECT_LIST_NETWORKS_INACTIVE) &&
           !virNetworkObjIsActive(netobj))))
        return false;

    /* filter by persistence */
    if (MATCH(VIR_CONNECT_LIST_NETWORKS_FILTERS_PERSISTENT) &&
        !((MATCH(VIR_CONNECT_LIST_NETWORKS_PERSISTENT) &&
           netobj->persistent) ||
          (MATCH(VIR_CONNECT_LIST_NETWORKS_TRANSIENT) &&
           !netobj->persistent)))
        return false;

    /* filter by autostart option */
    if (MATCH(VIR_CONNECT_LIST_NETWORKS_FILTERS_AUTOSTART) &&
        !((MATCH(VIR_CONNECT_LIST_NETWORKS_AUTOSTART) &&
           netobj->autostart) ||
          (MATCH(VIR_CONNECT_LIST_NETWORKS_NO_AUTOSTART) &&
           !netobj->autostart)))
        return false;

    return true;
}
#undef MATCH

int
4396 4397 4398 4399 4400
virNetworkObjListExport(virConnectPtr conn,
                        virNetworkObjList netobjs,
                        virNetworkPtr **nets,
                        virNetworkObjListFilter filter,
                        unsigned int flags)
4401 4402 4403 4404 4405
{
    virNetworkPtr *tmp_nets = NULL;
    virNetworkPtr net = NULL;
    int nnets = 0;
    int ret = -1;
4406
    size_t i;
4407

4408 4409
    if (nets && VIR_ALLOC_N(tmp_nets, netobjs.count + 1) < 0)
        goto cleanup;
4410 4411 4412 4413

    for (i = 0; i < netobjs.count; i++) {
        virNetworkObjPtr netobj = netobjs.objs[i];
        virNetworkObjLock(netobj);
4414 4415
        if ((!filter || filter(conn, netobj->def)) &&
            virNetworkMatch(netobj, flags)) {
4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438
            if (nets) {
                if (!(net = virGetNetwork(conn,
                                          netobj->def->name,
                                          netobj->def->uuid))) {
                    virNetworkObjUnlock(netobj);
                    goto cleanup;
                }
                tmp_nets[nnets] = net;
            }
            nnets++;
        }
        virNetworkObjUnlock(netobj);
    }

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

    ret = nnets;

4439
 cleanup:
4440 4441 4442 4443 4444 4445 4446 4447 4448 4449
    if (tmp_nets) {
        for (i = 0; i < nnets; i++) {
            if (tmp_nets[i])
                virNetworkFree(tmp_nets[i]);
        }
    }

    VIR_FREE(tmp_nets);
    return ret;
}