bridge.c 19.9 KB
Newer Older
1
/*
2
 * Copyright (C) 2007, 2009, 2011 Red Hat, Inc.
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307  USA
 *
 * Authors:
 *     Mark McLoughlin <markmc@redhat.com>
 */

#include <config.h>

24
#if defined(WITH_BRIDGE)
25

26
# include "bridge.h"
E
Eric Blake 已提交
27
# include "virfile.h"
28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48

# include <stdlib.h>
# include <stdio.h>
# include <string.h>
# include <unistd.h>
# include <fcntl.h>
# include <errno.h>
# include <arpa/inet.h>
# include <sys/types.h>
# include <sys/socket.h>
# include <sys/ioctl.h>
# include <paths.h>
# include <sys/wait.h>

# include <linux/param.h>     /* HZ                 */
# include <linux/sockios.h>   /* SIOCBRADDBR etc.   */
# include <linux/if_bridge.h> /* SYSFS_BRIDGE_ATTR  */
# include <linux/if_tun.h>    /* IFF_TUN, IFF_NO_PI */
# include <net/if_arp.h>    /* ARPHRD_ETHER */

# include "internal.h"
49
# include "command.h"
50 51 52
# include "memory.h"
# include "util.h"
# include "logging.h"
53
# include "network.h"
54 55 56

# define JIFFIES_TO_MS(j) (((j)*1000)/HZ)
# define MS_TO_JIFFIES(ms) (((ms)*HZ)/1000)
57 58 59 60 61

struct _brControl {
    int fd;
};

62 63 64 65 66 67 68 69 70
/**
 * brInit:
 * @ctlp: pointer to bridge control return value
 *
 * Initialize a new bridge layer. In case of success
 * @ctlp will contain a pointer to the new bridge structure.
 *
 * Returns 0 in case of success, an error code otherwise.
 */
71 72 73 74 75 76 77 78 79
int
brInit(brControl **ctlp)
{
    int fd;

    if (!ctlp || *ctlp)
        return EINVAL;

    fd = socket(AF_INET, SOCK_STREAM, 0);
E
Eric Blake 已提交
80 81 82
    if (fd < 0 ||
        virSetCloseExec(fd) < 0 ||
        VIR_ALLOC(*ctlp) < 0) {
83
        VIR_FORCE_CLOSE(fd);
E
Eric Blake 已提交
84
        return errno;
85
    }
86 87 88 89 90 91

    (*ctlp)->fd = fd;

    return 0;
}

92 93 94 95 96 97
/**
 * brShutdown:
 * @ctl: pointer to a bridge control
 *
 * Shutdown the bridge layer and deallocate the associated structures
 */
98 99 100 101 102 103
void
brShutdown(brControl *ctl)
{
    if (!ctl)
        return;

104
    VIR_FORCE_CLOSE(ctl->fd);
105

106
    VIR_FREE(ctl);
107 108
}

109 110 111
/**
 * brAddBridge:
 * @ctl: bridge control pointer
112
 * @name: the bridge name
113
 *
114
 * This function register a new bridge
115 116 117
 *
 * Returns 0 in case of success or an errno code in case of failure.
 */
118
# ifdef SIOCBRADDBR
119 120
int
brAddBridge(brControl *ctl,
121
            const char *name)
122
{
123
    if (!ctl || !ctl->fd || !name)
124 125
        return EINVAL;

126 127
    if (ioctl(ctl->fd, SIOCBRADDBR, name) == 0)
        return 0;
128 129 130

    return errno;
}
131
# else
132
int brAddBridge (brControl *ctl ATTRIBUTE_UNUSED,
133
                 const char *name ATTRIBUTE_UNUSED)
134 135 136
{
    return EINVAL;
}
137
# endif
138

139
# ifdef SIOCBRDELBR
140 141 142 143 144 145 146 147 148 149 150
int
brHasBridge(brControl *ctl,
            const char *name)
{
    struct ifreq ifr;

    if (!ctl || !name) {
        errno = EINVAL;
        return -1;
    }

C
Chris Lalancette 已提交
151 152 153
    memset(&ifr, 0, sizeof(struct ifreq));

    if (virStrcpyStatic(ifr.ifr_name, name) == NULL) {
154 155 156 157 158 159 160 161 162
        errno = EINVAL;
        return -1;
    }

    if (ioctl(ctl->fd, SIOCGIFFLAGS, &ifr))
        return -1;

    return 0;
}
163
# else
164
int
165 166
brHasBridge(brControl *ctl ATTRIBUTE_UNUSED,
            const char *name ATTRIBUTE_UNUSED)
167 168 169
{
    return EINVAL;
}
170
# endif
171

172 173 174 175 176 177 178 179 180
/**
 * brDeleteBridge:
 * @ctl: bridge control pointer
 * @name: the bridge name
 *
 * Remove a bridge from the layer.
 *
 * Returns 0 in case of success or an errno code in case of failure.
 */
181
# ifdef SIOCBRDELBR
182 183 184 185 186 187 188 189 190
int
brDeleteBridge(brControl *ctl,
               const char *name)
{
    if (!ctl || !ctl->fd || !name)
        return EINVAL;

    return ioctl(ctl->fd, SIOCBRDELBR, name) == 0 ? 0 : errno;
}
191
# else
192 193 194 195 196 197
int
brDeleteBridge(brControl *ctl ATTRIBUTE_UNUSED,
               const char *name ATTRIBUTE_UNUSED)
{
    return EINVAL;
}
198
# endif
199

200
# if defined(SIOCBRADDIF) && defined(SIOCBRDELIF)
201 202 203 204 205 206 207 208 209 210 211 212 213
static int
brAddDelInterface(brControl *ctl,
                  int cmd,
                  const char *bridge,
                  const char *iface)
{
    struct ifreq ifr;

    if (!ctl || !ctl->fd || !bridge || !iface)
        return EINVAL;

    memset(&ifr, 0, sizeof(struct ifreq));

C
Chris Lalancette 已提交
214 215
    if (virStrcpyStatic(ifr.ifr_name, bridge) == NULL)
        return EINVAL;
216 217 218 219 220 221

    if (!(ifr.ifr_ifindex = if_nametoindex(iface)))
        return ENODEV;

    return ioctl(ctl->fd, cmd, &ifr) == 0 ? 0 : errno;
}
222
# endif
223

224 225 226 227 228
/**
 * brAddInterface:
 * @ctl: bridge control pointer
 * @bridge: the bridge name
 * @iface: the network interface name
229
 *
230 231 232 233
 * Adds an interface to a bridge
 *
 * Returns 0 in case of success or an errno code in case of failure.
 */
234
# ifdef SIOCBRADDIF
235 236 237 238 239 240 241
int
brAddInterface(brControl *ctl,
               const char *bridge,
               const char *iface)
{
    return brAddDelInterface(ctl, SIOCBRADDIF, bridge, iface);
}
242
# else
243 244 245 246 247 248 249
int
brAddInterface(brControl *ctl ATTRIBUTE_UNUSED,
               const char *bridge ATTRIBUTE_UNUSED,
               const char *iface ATTRIBUTE_UNUSED)
{
    return EINVAL;
}
250
# endif
251

252 253 254 255 256
/**
 * brDeleteInterface:
 * @ctl: bridge control pointer
 * @bridge: the bridge name
 * @iface: the network interface name
257
 *
258 259 260 261
 * Removes an interface from a bridge
 *
 * Returns 0 in case of success or an errno code in case of failure.
 */
262
# ifdef SIOCBRDELIF
263 264 265 266 267 268 269
int
brDeleteInterface(brControl *ctl,
                  const char *bridge,
                  const char *iface)
{
    return brAddDelInterface(ctl, SIOCBRDELIF, bridge, iface);
}
270
# else
271 272 273 274 275 276 277
int
brDeleteInterface(brControl *ctl ATTRIBUTE_UNUSED,
                  const char *bridge ATTRIBUTE_UNUSED,
                  const char *iface ATTRIBUTE_UNUSED)
{
    return EINVAL;
}
278
# endif
279

280
/**
281
 * brSetInterfaceMac:
282 283 284 285 286 287 288 289 290
 * @ctl: bridge control pointer
 * @ifname: interface name to set MTU for
 * @macaddr: MAC address (VIR_MAC_BUFLEN in size)
 *
 * This function sets the @macaddr for a given interface @ifname. This
 * gets rid of the kernel's automatically assigned random MAC.
 *
 * Returns 0 in case of success or an errno code in case of failure.
 */
291 292 293
int
brSetInterfaceMac(brControl *ctl, const char *ifname,
                  const unsigned char *macaddr)
294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312
{
    struct ifreq ifr;

    if (!ctl || !ifname)
        return EINVAL;

    memset(&ifr, 0, sizeof(struct ifreq));
    if (virStrcpyStatic(ifr.ifr_name, ifname) == NULL)
        return EINVAL;

    /* To fill ifr.ifr_hdaddr.sa_family field */
    if (ioctl(ctl->fd, SIOCGIFHWADDR, &ifr) != 0)
        return errno;

    memcpy(ifr.ifr_hwaddr.sa_data, macaddr, VIR_MAC_BUFLEN);

    return ioctl(ctl->fd, SIOCSIFHWADDR, &ifr) == 0 ? 0 : errno;
}

313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331
/**
 * ifGetMtu
 * @ctl: bridge control pointer
 * @ifname: interface name get MTU for
 *
 * This function gets the @mtu value set for a given interface @ifname.
 *
 * Returns the MTU value in case of success.
 * On error, returns -1 and sets errno accordingly
 */
static int ifGetMtu(brControl *ctl, const char *ifname)
{
    struct ifreq ifr;

    if (!ctl || !ifname) {
        errno = EINVAL;
        return -1;
    }

C
Chris Lalancette 已提交
332 333 334
    memset(&ifr, 0, sizeof(struct ifreq));

    if (virStrcpyStatic(ifr.ifr_name, ifname) == NULL) {
335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365
        errno = EINVAL;
        return -1;
    }

    if (ioctl(ctl->fd, SIOCGIFMTU, &ifr))
        return -1;

    return ifr.ifr_mtu;

}

/**
 * ifSetMtu:
 * @ctl: bridge control pointer
 * @ifname: interface name to set MTU for
 * @mtu: MTU value
 *
 * This function sets the @mtu for a given interface @ifname.  Typically
 * used on a tap device to set up for Jumbo Frames.
 *
 * Returns 0 in case of success or an errno code in case of failure.
 */
static int ifSetMtu(brControl *ctl, const char *ifname, int mtu)
{
    struct ifreq ifr;

    if (!ctl || !ifname)
        return EINVAL;

    memset(&ifr, 0, sizeof(struct ifreq));

C
Chris Lalancette 已提交
366 367
    if (virStrcpyStatic(ifr.ifr_name, ifname) == NULL)
        return EINVAL;
368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394
    ifr.ifr_mtu = mtu;

    return ioctl(ctl->fd, SIOCSIFMTU, &ifr) == 0 ? 0 : errno;
}

/**
 * brSetInterfaceMtu
 * @ctl: bridge control pointer
 * @bridge: name of the bridge interface
 * @ifname: name of the interface whose MTU we want to set
 *
 * Sets the interface mtu to the same MTU of the bridge
 *
 * Returns 0 in case of success or an errno code in case of failure.
 */
static int brSetInterfaceMtu(brControl *ctl,
                             const char *bridge,
                             const char *ifname)
{
    int mtu = ifGetMtu(ctl, bridge);

    if (mtu < 0)
        return errno;

    return ifSetMtu(ctl, ifname, mtu);
}

395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413
/**
 * brProbeVnetHdr:
 * @tapfd: a tun/tap file descriptor
 *
 * Check whether it is safe to enable the IFF_VNET_HDR flag on the
 * tap interface.
 *
 * Setting IFF_VNET_HDR enables QEMU's virtio_net driver to allow
 * guests to pass larger (GSO) packets, with partial checksums, to
 * the host. This greatly increases the achievable throughput.
 *
 * It is only useful to enable this when we're setting up a virtio
 * interface. And it is only *safe* to enable it when we know for
 * sure that a) qemu has support for IFF_VNET_HDR and b) the running
 * kernel implements the TUNGETIFF ioctl(), which qemu needs to query
 * the supplied tapfd.
 *
 * Returns 0 in case of success or an errno code in case of failure.
 */
414
# ifdef IFF_VNET_HDR
415 416 417
static int
brProbeVnetHdr(int tapfd)
{
418
#  if defined(IFF_VNET_HDR) && defined(TUNGETFEATURES) && defined(TUNGETIFF)
419 420 421 422
    unsigned int features;
    struct ifreq dummy;

    if (ioctl(tapfd, TUNGETFEATURES, &features) != 0) {
423 424
        VIR_INFO("Not enabling IFF_VNET_HDR; "
                 "TUNGETFEATURES ioctl() not implemented");
425 426 427 428
        return 0;
    }

    if (!(features & IFF_VNET_HDR)) {
429 430
        VIR_INFO("Not enabling IFF_VNET_HDR; "
                 "TUNGETFEATURES ioctl() reports no IFF_VNET_HDR");
431 432 433 434 435 436 437
        return 0;
    }

    /* The kernel will always return -1 at this point.
     * If TUNGETIFF is not implemented then errno == EBADFD.
     */
    if (ioctl(tapfd, TUNGETIFF, &dummy) != -1 || errno != EBADFD) {
438 439
        VIR_INFO("Not enabling IFF_VNET_HDR; "
                 "TUNGETIFF ioctl() not implemented");
440 441 442
        return 0;
    }

443
    VIR_INFO("Enabling IFF_VNET_HDR");
444 445

    return 1;
446
#  else
447
    (void) tapfd;
448
    VIR_INFO("Not enabling IFF_VNET_HDR; disabled at build time");
449
    return 0;
450
#  endif
451
}
452
# endif
453

454 455 456 457 458
/**
 * brAddTap:
 * @ctl: bridge control pointer
 * @bridge: the bridge name
 * @ifname: the interface name (or name template)
459
 * @macaddr: desired MAC address (VIR_MAC_BUFLEN long)
460
 * @vnet_hdr: whether to try enabling IFF_VNET_HDR
461 462
 * @tapfd: file descriptor return value for the new tap device
 *
D
typo  
Daniel Veillard 已提交
463
 * This function creates a new tap device on a bridge. @ifname can be either
464
 * a fixed name or a name template with '%d' for dynamic name allocation.
465 466 467 468 469
 * in either case the final name for the bridge will be stored in @ifname.
 * If the @tapfd parameter is supplied, the open tap device file
 * descriptor will be returned, otherwise the TAP device will be made
 * persistent and closed. The caller must use brDeleteTap to remove
 * a persistent TAP devices when it is no longer needed.
470 471 472
 *
 * Returns 0 in case of success or an errno code in case of failure.
 */
473 474 475
int
brAddTap(brControl *ctl,
         const char *bridge,
476
         char **ifname,
477
         const unsigned char *macaddr,
478
         int vnet_hdr,
479
         bool up,
480 481
         int *tapfd)
{
482
    if (!ctl || !ctl->fd || !bridge || !ifname)
483 484
        return EINVAL;

485
    errno = brCreateTap(ctl, ifname, vnet_hdr, tapfd);
486

W
Wen Congyang 已提交
487 488
    /* fd has been closed in brCreateTap() when it failed. */
    if (errno)
C
Chris Lalancette 已提交
489 490
        goto error;

491 492 493 494 495 496
    /* We need to set the interface MAC before adding it
     * to the bridge, because the bridge assumes the lowest
     * MAC of all enslaved interfaces & we don't want it
     * seeing the kernel allocate random MAC for the TAP
     * device before we set our static MAC.
     */
497
    if ((errno = brSetInterfaceMac(ctl, *ifname, macaddr)))
W
Wen Congyang 已提交
498
        goto close_fd;
499 500 501 502
    /* We need to set the interface MTU before adding it
     * to the bridge, because the bridge will have its
     * MTU adjusted automatically when we add the new interface.
     */
503
    if ((errno = brSetInterfaceMtu(ctl, bridge, *ifname)))
W
Wen Congyang 已提交
504
        goto close_fd;
505
    if ((errno = brAddInterface(ctl, bridge, *ifname)))
W
Wen Congyang 已提交
506
        goto close_fd;
507
    if (up && ((errno = brSetInterfaceUp(ctl, *ifname, 1))))
W
Wen Congyang 已提交
508
        goto close_fd;
509
    return 0;
510

W
Wen Congyang 已提交
511 512 513 514
close_fd:
    if (tapfd)
        VIR_FORCE_CLOSE(*tapfd);
error:
515 516 517
    return errno;
}

518 519 520 521 522 523 524 525 526 527 528 529 530 531 532
int brDeleteTap(brControl *ctl,
                const char *ifname)
{
    struct ifreq try;
    int fd;

    if (!ctl || !ctl->fd || !ifname)
        return EINVAL;

    if ((fd = open("/dev/net/tun", O_RDWR)) < 0)
        return errno;

    memset(&try, 0, sizeof(struct ifreq));
    try.ifr_flags = IFF_TAP|IFF_NO_PI;

C
Chris Lalancette 已提交
533
    if (virStrcpyStatic(try.ifr_name, ifname) == NULL) {
534 535 536 537 538 539 540 541 542 543
        errno = EINVAL;
        goto error;
    }

    if (ioctl(fd, TUNSETIFF, &try) == 0) {
        if ((errno = ioctl(fd, TUNSETPERSIST, 0)))
            goto error;
    }

 error:
544
    VIR_FORCE_CLOSE(fd);
545 546 547 548 549

    return errno;
}


550 551 552 553 554 555 556 557 558 559
/**
 * brSetInterfaceUp:
 * @ctl: bridge control pointer
 * @ifname: the interface name
 * @up: 1 for up, 0 for down
 *
 * Function to control if an interface is activated (up, 1) or not (down, 0)
 *
 * Returns 0 in case of success or an errno code in case of failure.
 */
560 561 562 563 564 565
int
brSetInterfaceUp(brControl *ctl,
                 const char *ifname,
                 int up)
{
    struct ifreq ifr;
E
Eric Blake 已提交
566
    int ifflags;
567 568 569 570 571 572

    if (!ctl || !ifname)
        return EINVAL;

    memset(&ifr, 0, sizeof(struct ifreq));

C
Chris Lalancette 已提交
573 574
    if (virStrcpyStatic(ifr.ifr_name, ifname) == NULL)
        return EINVAL;
575 576 577 578

    if (ioctl(ctl->fd, SIOCGIFFLAGS, &ifr) < 0)
        return errno;

E
Eric Blake 已提交
579
    ifflags = up ? (ifr.ifr_flags | IFF_UP) : (ifr.ifr_flags & ~IFF_UP);
580

E
Eric Blake 已提交
581 582
    if (ifr.ifr_flags != ifflags) {
        ifr.ifr_flags = ifflags;
583 584 585 586 587 588 589 590

        if (ioctl(ctl->fd, SIOCSIFFLAGS, &ifr) < 0)
            return errno;
    }

    return 0;
}

591 592 593 594 595 596 597 598 599 600
/**
 * brGetInterfaceUp:
 * @ctl: bridge control pointer
 * @ifname: the interface name
 * @up: where to store the status
 *
 * Function to query if an interface is activated (1) or not (0)
 *
 * Returns 0 in case of success or an errno code in case of failure.
 */
601 602 603 604 605 606 607
int
brGetInterfaceUp(brControl *ctl,
                 const char *ifname,
                 int *up)
{
    struct ifreq ifr;

608
    if (!ctl || !ifname || !up)
609 610 611 612
        return EINVAL;

    memset(&ifr, 0, sizeof(struct ifreq));

C
Chris Lalancette 已提交
613 614
    if (virStrcpyStatic(ifr.ifr_name, ifname) == NULL)
        return EINVAL;
615 616 617 618 619 620 621 622 623

    if (ioctl(ctl->fd, SIOCGIFFLAGS, &ifr) < 0)
        return errno;

    *up = (ifr.ifr_flags & IFF_UP) ? 1 : 0;

    return 0;
}

624
/**
625
 * brAddInetAddress:
626 627
 * @ctl: bridge control pointer
 * @ifname: the interface name
628 629
 * @addr: the IP address (IPv4 or IPv6)
 * @prefix: number of 1 bits in the netmask
630
 *
631 632 633
 * Add an IP address to an interface. This function *does not* remove
 * any previously added IP addresses - that must be done separately with
 * brDelInetAddress.
634
 *
635
 * Returns 0 in case of success or -1 in case of error.
636 637
 */

638
int
639
brAddInetAddress(brControl *ctl ATTRIBUTE_UNUSED,
640
                 const char *ifname,
641 642
                 virSocketAddr *addr,
                 unsigned int prefix)
643
{
J
Jiri Denemark 已提交
644
    virCommandPtr cmd = NULL;
645 646
    char *addrstr = NULL, *bcaststr = NULL;
    virSocketAddr broadcast;
647 648 649 650
    int ret = -1;

    if (!(addrstr = virSocketFormatAddr(addr)))
        goto cleanup;
651 652 653 654 655 656
    /* format up a broadcast address if this is IPv4 */
    if ((VIR_SOCKET_IS_FAMILY(addr, AF_INET)) &&
        ((virSocketAddrBroadcastByPrefix(addr, prefix, &broadcast) < 0) ||
         !(bcaststr = virSocketFormatAddr(&broadcast)))) {
        goto cleanup;
    }
657 658 659
    cmd = virCommandNew(IP_PATH);
    virCommandAddArgList(cmd, "addr", "add", NULL);
    virCommandAddArgFormat(cmd, "%s/%u", addrstr, prefix);
660 661
    if (bcaststr)
        virCommandAddArgList(cmd, "broadcast", bcaststr, NULL);
662 663 664 665 666 667 668 669
    virCommandAddArgList(cmd, "dev", ifname, NULL);

    if (virCommandRun(cmd, NULL) < 0)
        goto cleanup;

    ret = 0;
cleanup:
    VIR_FREE(addrstr);
670
    VIR_FREE(bcaststr);
671 672
    virCommandFree(cmd);
    return ret;
673 674
}

675
/**
676
 * brDelInetAddress:
677 678
 * @ctl: bridge control pointer
 * @ifname: the interface name
679 680
 * @addr: the IP address (IPv4 or IPv6)
 * @prefix: number of 1 bits in the netmask
681
 *
682
 * Delete an IP address from an interface.
683
 *
684
 * Returns 0 in case of success or -1 in case of error.
685 686
 */

687
int
688
brDelInetAddress(brControl *ctl ATTRIBUTE_UNUSED,
689
                 const char *ifname,
690 691
                 virSocketAddr *addr,
                 unsigned int prefix)
692
{
J
Jiri Denemark 已提交
693
    virCommandPtr cmd = NULL;
694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711
    char *addrstr;
    int ret = -1;

    if (!(addrstr = virSocketFormatAddr(addr)))
        goto cleanup;
    cmd = virCommandNew(IP_PATH);
    virCommandAddArgList(cmd, "addr", "del", NULL);
    virCommandAddArgFormat(cmd, "%s/%u", addrstr, prefix);
    virCommandAddArgList(cmd, "dev", ifname, NULL);

    if (virCommandRun(cmd, NULL) < 0)
        goto cleanup;

    ret = 0;
cleanup:
    VIR_FREE(addrstr);
    virCommandFree(cmd);
    return ret;
712 713
}

714 715 716 717 718 719 720 721
/**
 * brSetForwardDelay:
 * @ctl: bridge control pointer
 * @bridge: the bridge name
 * @delay: delay in seconds
 *
 * Set the bridge forward delay
 *
722
 * Returns 0 in case of success or -1 on failure
723
 */
724

725
int
726
brSetForwardDelay(brControl *ctl ATTRIBUTE_UNUSED,
727 728 729
                  const char *bridge,
                  int delay)
{
730 731
    virCommandPtr cmd;
    int ret = -1;
732

733 734 735
    cmd = virCommandNew(BRCTL);
    virCommandAddArgList(cmd, "setfd", bridge, NULL);
    virCommandAddArgFormat(cmd, "%d", delay);
736

737 738
    if (virCommandRun(cmd, NULL) < 0)
        goto cleanup;
739

740 741 742 743
    ret = 0;
cleanup:
    virCommandFree(cmd);
    return ret;
744 745
}

746 747 748 749 750 751 752 753 754
/**
 * brSetEnableSTP:
 * @ctl: bridge control pointer
 * @bridge: the bridge name
 * @enable: 1 to enable, 0 to disable
 *
 * Control whether the bridge participates in the spanning tree protocol,
 * in general don't disable it without good reasons.
 *
755
 * Returns 0 in case of success or -1 on failure
756
 */
757
int
758
brSetEnableSTP(brControl *ctl ATTRIBUTE_UNUSED,
759 760 761
               const char *bridge,
               int enable)
{
762 763
    virCommandPtr cmd;
    int ret = -1;
764

765 766 767 768
    cmd = virCommandNew(BRCTL);
    virCommandAddArgList(cmd, "stp", bridge,
                         enable ? "on" : "off",
                         NULL);
769

770 771 772 773 774 775 776
    if (virCommandRun(cmd, NULL) < 0)
        goto cleanup;

    ret = 0;
cleanup:
    virCommandFree(cmd);
    return ret;
777 778
}

779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844
/**
 * brCreateTap:
 * @ctl: bridge control pointer
 * @ifname: the interface name
 * @vnet_hr: whether to try enabling IFF_VNET_HDR
 * @tapfd: file descriptor return value for the new tap device
 *
 * Creates a tap interface.
 * If the @tapfd parameter is supplied, the open tap device file
 * descriptor will be returned, otherwise the TAP device will be made
 * persistent and closed. The caller must use brDeleteTap to remove
 * a persistent TAP devices when it is no longer needed.
 *
 * Returns 0 in case of success or an errno code in case of failure.
 */

int
brCreateTap(brControl *ctl ATTRIBUTE_UNUSED,
            char **ifname,
            int vnet_hdr ATTRIBUTE_UNUSED,
            int *tapfd)
{
    int fd;
    struct ifreq ifr;

    if (!ifname)
        return EINVAL;

    if ((fd = open("/dev/net/tun", O_RDWR)) < 0)
        return errno;

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

    ifr.ifr_flags = IFF_TAP|IFF_NO_PI;

# ifdef IFF_VNET_HDR
    if (vnet_hdr && brProbeVnetHdr(fd))
        ifr.ifr_flags |= IFF_VNET_HDR;
# endif

    if (virStrcpyStatic(ifr.ifr_name, *ifname) == NULL) {
        errno = EINVAL;
        goto error;
    }

    if (ioctl(fd, TUNSETIFF, &ifr) < 0)
        goto error;

    if (!tapfd &&
        (errno = ioctl(fd, TUNSETPERSIST, 1)))
        goto error;
    VIR_FREE(*ifname);
    if (!(*ifname = strdup(ifr.ifr_name)))
        goto error;
    if(tapfd)
        *tapfd = fd;
    else
        VIR_FORCE_CLOSE(fd);
    return 0;

 error:
    VIR_FORCE_CLOSE(fd);

    return errno;
}

845
#endif /* WITH_BRIDGE */