virnetlink.c 35.6 KB
Newer Older
1
/*
L
Leno Hou 已提交
2 3
 * Copyright (C) 2010-2016 Red Hat, Inc.
 * Copyright (C) 2010-2012, 2016 IBM Corporation
4 5 6 7 8 9 10 11 12 13 14 15
 *
 * 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
16
 * License along with this library.  If not, see
O
Osier Yang 已提交
17
 * <http://www.gnu.org/licenses/>.
18 19 20
 *
 * Authors:
 *     Stefan Berger <stefanb@us.ibm.com>
21
 *     Dirk Herrendoerfer <herrend[at]de[dot]ibm[dot]com>
22 23 24 25 26
 *
 * Notes:
 * netlink: http://lovezutto.googlepages.com/netlink.pdf
 *          iproute2 package
 *
27 28
 * 2012/02: Renamed from netlink.[ch] to virnetlink.[ch]
 *
29 30 31 32 33 34 35
 */

#include <config.h>

#include <errno.h>
#include <unistd.h>
#include <sys/types.h>
36
#include <sys/socket.h>
37

38
#include "virnetlink.h"
39
#include "virnetdev.h"
40
#include "virlog.h"
41
#include "viralloc.h"
42
#include "virthread.h"
43
#include "virmacaddr.h"
44
#include "virerror.h"
45 46 47

#define VIR_FROM_THIS VIR_FROM_NET

48 49
VIR_LOG_INIT("util.netlink");

50
#define NETLINK_ACK_TIMEOUT_S  (2*1000)
51

52 53 54 55 56 57 58
#if defined(__linux__) && defined(HAVE_LIBNL)
/* State for a single netlink event handle */
struct virNetlinkEventHandle {
    int watch;
    virNetlinkEventHandleCallback handleCB;
    virNetlinkEventRemoveCallback removeCB;
    void *opaque;
59
    virMacAddr macaddr;
60 61 62
    int deleted;
};

S
Serge Hallyn 已提交
63 64
# ifdef HAVE_LIBNL1
#  define virNetlinkAlloc nl_handle_alloc
L
Leno Hou 已提交
65
#  define virNetlinkSetBufferSize nl_set_buffer_size
S
Serge Hallyn 已提交
66 67 68 69
#  define virNetlinkFree nl_handle_destroy
typedef struct nl_handle virNetlinkHandle;
# else
#  define virNetlinkAlloc nl_socket_alloc
L
Leno Hou 已提交
70
#  define virNetlinkSetBufferSize nl_socket_set_buffer_size
S
Serge Hallyn 已提交
71 72 73 74
#  define virNetlinkFree nl_socket_free
typedef struct nl_sock virNetlinkHandle;
# endif

75 76
VIR_DEFINE_AUTOPTR_FUNC(virNetlinkHandle, virNetlinkFree)

77 78 79 80 81 82 83
typedef struct _virNetlinkEventSrvPrivate virNetlinkEventSrvPrivate;
typedef virNetlinkEventSrvPrivate *virNetlinkEventSrvPrivatePtr;
struct _virNetlinkEventSrvPrivate {
    /*Server*/
    virMutex lock;
    int eventwatch;
    int netlinkfd;
S
Serge Hallyn 已提交
84
    virNetlinkHandle *netlinknh;
85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103
    /*Events*/
    int handled;
    size_t handlesCount;
    size_t handlesAlloc;
    struct virNetlinkEventHandle *handles;
};

enum virNetlinkDeleteMode {
    VIR_NETLINK_HANDLE_VALID,
    VIR_NETLINK_HANDLE_DELETED,
};

/* Unique ID for the next netlink watch to be registered */
static int nextWatch = 1;

/* Allocate extra slots for virEventPollHandle/virEventPollTimeout
 records in this multiple */
# define NETLINK_EVENT_ALLOC_EXTENT 10

104 105 106
/* Linux kernel supports up to MAX_LINKS (32 at the time) individual
 * netlink protocols. */
static virNetlinkEventSrvPrivatePtr server[MAX_LINKS] = {NULL};
107
static virNetlinkHandle *placeholder_nlhandle;
108 109 110

/* Function definitions */

111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138
/**
 * virNetlinkStartup:
 *
 * Perform any initialization that needs to take place before the
 * program starts up worker threads. This is currently used to assure
 * that an nl_handle is allocated prior to any attempts to bind a
 * netlink socket. For a discussion of why this is necessary, please
 * see the following email message:
 *
 *   https://www.redhat.com/archives/libvir-list/2012-May/msg00202.html
 *
 * The short version is that, without this placeholder allocation of
 * an nl_handle that is never used, it is possible for nl_connect() in
 * one thread to collide with a direct bind() of a netlink socket in
 * another thread, leading to failure of the operation (which could
 * lead to failure of libvirtd to start). Since getaddrinfo() (used by
 * libvirtd in virSocketAddrParse, which is called quite frequently
 * during startup) directly calls bind() on a netlink socket, this is
 * actually a very common occurrence (15-20% failure rate on some
 * hardware).
 *
 * Returns 0 on success, -1 on failure.
 */
int
virNetlinkStartup(void)
{
    if (placeholder_nlhandle)
        return 0;
139
    VIR_DEBUG("Running global netlink initialization");
J
Jiri Denemark 已提交
140
    placeholder_nlhandle = virNetlinkAlloc();
141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158
    if (!placeholder_nlhandle) {
        virReportSystemError(errno, "%s",
                             _("cannot allocate placeholder nlhandle for netlink"));
        return -1;
    }
    return 0;
}

/**
 * virNetlinkShutdown:
 *
 * Undo any initialization done by virNetlinkStartup. This currently
 * destroys the placeholder nl_handle.
 */
void
virNetlinkShutdown(void)
{
    if (placeholder_nlhandle) {
J
Jiri Denemark 已提交
159
        virNetlinkFree(placeholder_nlhandle);
160 161 162 163
        placeholder_nlhandle = NULL;
    }
}

L
Leno Hou 已提交
164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213

/**
 * virNetLinkCreateSocket:
 *
 * @protocol: which protocol to connect to (e.g. NETLINK_ROUTE,
 *
 * Create a netlink socket, set its buffer size, and turn on message
 * peeking (so the buffer size can be dynamically increased if
 * needed).
 *
 * Returns a handle to the new netlink socket, or 0 if there was a failure.
 *
 */
static virNetlinkHandle *
virNetlinkCreateSocket(int protocol)
{
    virNetlinkHandle *nlhandle = NULL;

    if (!(nlhandle = virNetlinkAlloc())) {
        virReportSystemError(errno, "%s",
                             _("cannot allocate nlhandle for netlink"));
        goto error;
    }
    if (nl_connect(nlhandle, protocol) < 0) {
        virReportSystemError(errno,
                             _("cannot connect to netlink socket "
                               "with protocol %d"), protocol);
        goto error;
    }

    if (virNetlinkSetBufferSize(nlhandle, 131702, 0) < 0) {
        virReportSystemError(errno, "%s",
                             _("cannot set netlink socket buffer "
                               "size to 128k"));
        goto error;
    }
    nl_socket_enable_msg_peek(nlhandle);

 cleanup:
    return nlhandle;

 error:
    if (nlhandle) {
        nl_close(nlhandle);
        virNetlinkFree(nlhandle);
        nlhandle = NULL;
    }
    goto cleanup;
}

214 215 216
static virNetlinkHandle *
virNetlinkSendRequest(struct nl_msg *nl_msg, uint32_t src_pid,
                      struct sockaddr_nl nladdr,
217
                      unsigned int protocol, unsigned int groups)
218 219 220 221
{
    ssize_t nbytes;
    int fd;
    int n;
222
    virNetlinkHandle *nlhandle = NULL;
223 224
    struct pollfd fds[1];
    struct nlmsghdr *nlmsg = nlmsg_hdr(nl_msg);
225 226 227 228

    if (protocol >= MAX_LINKS) {
        virReportSystemError(EINVAL,
                             _("invalid protocol argument: %d"), protocol);
229
        goto error;
230
    }
231

L
Leno Hou 已提交
232
    if (!(nlhandle = virNetlinkCreateSocket(protocol)))
233
        goto error;
234 235 236 237 238

    fd = nl_socket_get_fd(nlhandle);
    if (fd < 0) {
        virReportSystemError(errno,
                             "%s", _("cannot get netlink socket fd"));
239
        goto error;
240 241 242
    }

    if (groups && nl_socket_add_membership(nlhandle, groups) < 0) {
243
        virReportSystemError(errno,
244
                             "%s", _("cannot add netlink membership"));
245
        goto error;
246 247 248 249
    }

    nlmsg_set_dst(nl_msg, &nladdr);

250
    nlmsg->nlmsg_pid = src_pid ? src_pid : getpid();
251 252 253 254 255

    nbytes = nl_send_auto_complete(nlhandle, nl_msg);
    if (nbytes < 0) {
        virReportSystemError(errno,
                             "%s", _("cannot send to netlink socket"));
256
        goto error;
257 258
    }

259
    memset(fds, 0, sizeof(fds));
260

261 262
    fds[0].fd = fd;
    fds[0].events = POLLIN;
263

264
    n = poll(fds, ARRAY_CARDINALITY(fds), NETLINK_ACK_TIMEOUT_S);
265 266 267
    if (n <= 0) {
        if (n < 0)
            virReportSystemError(errno, "%s",
268
                                 _("error in poll call"));
269 270 271 272 273
        if (n == 0)
            virReportSystemError(ETIMEDOUT, "%s",
                                 _("no valid netlink response was received"));
    }

274 275 276 277 278 279 280 281 282
    return nlhandle;

 error:
    virNetlinkFree(nlhandle);
    return NULL;
}

/**
 * virNetlinkCommand:
283 284
 * @nl_msg:     pointer to netlink message
 * @resp:       pointer to pointer where response buffer will be allocated
285
 * @respbuflen: pointer to integer holding the size of the response buffer
286 287 288 289 290
 *              on return of the function.
 * @src_pid:    the pid of the process to send a message
 * @dst_pid:    the pid of the process to talk to, i.e., pid = 0 for kernel
 * @protocol:   netlink protocol
 * @groups:     the group identifier
291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316
 *
 * Send the given message to the netlink layer and receive response.
 * Returns 0 on success, -1 on error. In case of error, no response
 * buffer will be returned.
 */
int virNetlinkCommand(struct nl_msg *nl_msg,
                      struct nlmsghdr **resp, unsigned int *respbuflen,
                      uint32_t src_pid, uint32_t dst_pid,
                      unsigned int protocol, unsigned int groups)
{
    int ret = -1;
    struct sockaddr_nl nladdr = {
            .nl_family = AF_NETLINK,
            .nl_pid    = dst_pid,
            .nl_groups = 0,
    };
    struct pollfd fds[1];
    virNetlinkHandle *nlhandle = NULL;
    int len = 0;

    memset(fds, 0, sizeof(fds));

    if (!(nlhandle = virNetlinkSendRequest(nl_msg, src_pid, nladdr,
                                           protocol, groups)))
        goto cleanup;

317 318 319 320 321
    len = nl_recv(nlhandle, &nladdr, (unsigned char **)resp, NULL);
    if (len == 0) {
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("nl_recv failed - returned 0 bytes"));
        goto cleanup;
322
    }
323 324 325 326 327 328 329 330 331
    if (len < 0) {
        virReportSystemError(errno, "%s", _("nl_recv failed"));
        goto cleanup;
    }

    ret = 0;
    *respbuflen = len;
 cleanup:
    if (ret < 0) {
332
        *resp = NULL;
333 334 335
        *respbuflen = 0;
    }

S
Serge Hallyn 已提交
336
    virNetlinkFree(nlhandle);
337
    return ret;
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
int
virNetlinkDumpCommand(struct nl_msg *nl_msg,
                      virNetlinkDumpCallback callback,
                      uint32_t src_pid, uint32_t dst_pid,
                      unsigned int protocol, unsigned int groups,
                      void *opaque)
{
    int ret = -1;
    bool end = false;
    int len = 0;
    struct nlmsghdr *resp = NULL;
    struct nlmsghdr *msg = NULL;

    struct sockaddr_nl nladdr = {
            .nl_family = AF_NETLINK,
            .nl_pid    = dst_pid,
            .nl_groups = 0,
    };
    virNetlinkHandle *nlhandle = NULL;

    if (!(nlhandle = virNetlinkSendRequest(nl_msg, src_pid, nladdr,
                                           protocol, groups)))
        goto cleanup;

    while (!end) {
        len = nl_recv(nlhandle, &nladdr, (unsigned char **)&resp, NULL);
366
        VIR_WARNINGS_NO_CAST_ALIGN
367
        for (msg = resp; NLMSG_OK(msg, len); msg = NLMSG_NEXT(msg, len)) {
368
            VIR_WARNINGS_RESET
369 370 371 372 373 374 375 376 377
            if (msg->nlmsg_type == NLMSG_DONE)
                end = true;

            if (virNetlinkGetErrorCode(msg, len) < 0)
                goto cleanup;

            if (callback(msg, opaque) < 0)
                goto cleanup;
        }
378
        VIR_FREE(resp);
379 380 381 382 383
    }

    ret = 0;

 cleanup:
384
    VIR_FREE(resp);
385 386 387 388
    virNetlinkFree(nlhandle);
    return ret;
}

389 390 391 392 393
/**
 * virNetlinkDumpLink:
 *
 * @ifname:  The name of the interface; only use if ifindex <= 0
 * @ifindex: The interface index; may be <= 0 if ifname is given
394
 * @nlData:  Gets a pointer to the raw data from netlink.
395
             MUST BE FREED BY CALLER!
396
 * @tb:      Pointer to a pointer of netlink attributes that will contain
397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 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 445 446 447 448 449 450 451 452 453 454 455 456 457 458 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
 *           the results
 * @src_pid: pid used for nl_pid of the local end of the netlink message
 *           (0 == "use getpid()")
 * @dst_pid: pid of destination nl_pid if the kernel
 *           is not the target of the netlink message but it is to be
 *           sent to another process (0 if sending to the kernel)
 *
 * Get information from netlink about an interface given its name or index.
 *
 * Returns 0 on success, -1 on fatal error.
 */
int
virNetlinkDumpLink(const char *ifname, int ifindex,
                   void **nlData, struct nlattr **tb,
                   uint32_t src_pid, uint32_t dst_pid)
{
    int rc = -1;
    struct nlmsghdr *resp = NULL;
    struct nlmsgerr *err;
    struct ifinfomsg ifinfo = {
        .ifi_family = AF_UNSPEC,
        .ifi_index  = ifindex
    };
    unsigned int recvbuflen;
    struct nl_msg *nl_msg;

    if (ifname && ifindex <= 0 && virNetDevGetIndex(ifname, &ifindex) < 0)
        return -1;

    ifinfo.ifi_index = ifindex;

    nl_msg = nlmsg_alloc_simple(RTM_GETLINK, NLM_F_REQUEST);
    if (!nl_msg) {
        virReportOOMError();
        return -1;
    }

    if (nlmsg_append(nl_msg,  &ifinfo, sizeof(ifinfo), NLMSG_ALIGNTO) < 0)
        goto buffer_too_small;

    if (ifname) {
        if (nla_put(nl_msg, IFLA_IFNAME, strlen(ifname)+1, ifname) < 0)
            goto buffer_too_small;
    }

# ifdef RTEXT_FILTER_VF
    /* if this filter exists in the kernel's netlink implementation,
     * we need to set it, otherwise the response message will not
     * contain the IFLA_VFINFO_LIST that we're looking for.
     */
    {
        uint32_t ifla_ext_mask = RTEXT_FILTER_VF;

        if (nla_put(nl_msg, IFLA_EXT_MASK,
                    sizeof(ifla_ext_mask), &ifla_ext_mask) < 0) {
            goto buffer_too_small;
        }
    }
# endif

    if (virNetlinkCommand(nl_msg, &resp, &recvbuflen,
                          src_pid, dst_pid, NETLINK_ROUTE, 0) < 0)
        goto cleanup;

    if (recvbuflen < NLMSG_LENGTH(0) || resp == NULL)
        goto malformed_resp;

    switch (resp->nlmsg_type) {
    case NLMSG_ERROR:
        err = (struct nlmsgerr *)NLMSG_DATA(resp);
        if (resp->nlmsg_len < NLMSG_LENGTH(sizeof(*err)))
            goto malformed_resp;

        if (err->error) {
            virReportSystemError(-err->error,
                                 _("error dumping %s (%d) interface"),
                                 ifname, ifindex);
            goto cleanup;
        }
        break;

    case GENL_ID_CTRL:
    case NLMSG_DONE:
        rc = nlmsg_parse(resp, sizeof(struct ifinfomsg),
                         tb, IFLA_MAX, NULL);
        if (rc < 0)
            goto malformed_resp;
        break;

    default:
        goto malformed_resp;
    }
    rc = 0;
 cleanup:
    nlmsg_free(nl_msg);
    if (rc < 0)
       VIR_FREE(resp);
    *nlData = resp;
    return rc;

 malformed_resp:
    virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                   _("malformed netlink response message"));
    goto cleanup;

 buffer_too_small:
    virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                   _("allocated netlink buffer is too small"));
    goto cleanup;
}


509 510 511
/**
 * virNetlinkDelLink:
 *
512
 * @ifname:   Name of the link
513 514 515 516
 * @fallback: pointer to an alternate function that will
 *            be called to perform the delete if RTM_DELLINK fails
 *            with EOPNOTSUPP (any other error will simply be treated
 *            as an error).
517 518 519 520 521 522 523 524
 *
 * delete a network "link" (aka interface aka device) with the given
 * name. This works for many different types of network devices,
 * including macvtap and bridges.
 *
 * Returns 0 on success, -1 on fatal error.
 */
int
525
virNetlinkDelLink(const char *ifname, virNetlinkDelLinkFallback fallback)
526 527 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
{
    int rc = -1;
    struct nlmsghdr *resp = NULL;
    struct nlmsgerr *err;
    struct ifinfomsg ifinfo = { .ifi_family = AF_UNSPEC };
    unsigned int recvbuflen;
    struct nl_msg *nl_msg;

    nl_msg = nlmsg_alloc_simple(RTM_DELLINK,
                                NLM_F_REQUEST | NLM_F_CREATE | NLM_F_EXCL);
    if (!nl_msg) {
        virReportOOMError();
        return -1;
    }

    if (nlmsg_append(nl_msg,  &ifinfo, sizeof(ifinfo), NLMSG_ALIGNTO) < 0)
        goto buffer_too_small;

    if (nla_put(nl_msg, IFLA_IFNAME, strlen(ifname)+1, ifname) < 0)
        goto buffer_too_small;

    if (virNetlinkCommand(nl_msg, &resp, &recvbuflen, 0, 0,
                          NETLINK_ROUTE, 0) < 0) {
        goto cleanup;
    }

    if (recvbuflen < NLMSG_LENGTH(0) || resp == NULL)
        goto malformed_resp;

    switch (resp->nlmsg_type) {
    case NLMSG_ERROR:
        err = (struct nlmsgerr *)NLMSG_DATA(resp);
        if (resp->nlmsg_len < NLMSG_LENGTH(sizeof(*err)))
            goto malformed_resp;

561 562 563 564
        if (-err->error == EOPNOTSUPP && fallback) {
            rc = fallback(ifname);
            goto cleanup;
        }
565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596
        if (err->error) {
            virReportSystemError(-err->error,
                                 _("error destroying network device %s"),
                                 ifname);
            goto cleanup;
        }
        break;

    case NLMSG_DONE:
        break;

    default:
        goto malformed_resp;
    }

    rc = 0;
 cleanup:
    nlmsg_free(nl_msg);
    VIR_FREE(resp);
    return rc;

 malformed_resp:
    virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                   _("malformed netlink response message"));
    goto cleanup;

 buffer_too_small:
    virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                   _("allocated netlink buffer is too small"));
    goto cleanup;
}

597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 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
/**
 * virNetlinkGetNeighbor:
 *
 * @nlData:  Gets a pointer to the raw data from netlink.
             MUST BE FREED BY CALLER!
 * @src_pid: pid used for nl_pid of the local end of the netlink message
 *           (0 == "use getpid()")
 * @dst_pid: pid of destination nl_pid if the kernel
 *           is not the target of the netlink message but it is to be
 *           sent to another process (0 if sending to the kernel)
 *
 * Get neighbor table entry from netlink.
 *
 * Returns 0 on success, -1 on fatal error.
 */
int
virNetlinkGetNeighbor(void **nlData, uint32_t src_pid, uint32_t dst_pid)
{
    int rc = -1;
    struct nlmsghdr *resp = NULL;
    struct nlmsgerr *err;
    struct ndmsg ndinfo = {
        .ndm_family = AF_UNSPEC,
    };
    unsigned int recvbuflen;
    struct nl_msg *nl_msg;

    nl_msg = nlmsg_alloc_simple(RTM_GETNEIGH, NLM_F_DUMP | NLM_F_REQUEST);
    if (!nl_msg) {
        virReportOOMError();
        return -1;
    }

    if (nlmsg_append(nl_msg, &ndinfo, sizeof(ndinfo), NLMSG_ALIGNTO) < 0)
        goto buffer_too_small;


    if (virNetlinkCommand(nl_msg, &resp, &recvbuflen,
                          src_pid, dst_pid, NETLINK_ROUTE, 0) < 0)
        goto cleanup;

    if (recvbuflen < NLMSG_LENGTH(0) || resp == NULL)
        goto malformed_resp;

    switch (resp->nlmsg_type) {
    case NLMSG_ERROR:
        err = (struct nlmsgerr *)NLMSG_DATA(resp);
        if (resp->nlmsg_len < NLMSG_LENGTH(sizeof(*err)))
            goto malformed_resp;

        if (err->error) {
            virReportSystemError(-err->error,
                                 "%s", _("error dumping"));
            goto cleanup;
        }
        break;

    case RTM_NEWNEIGH:
        break;

    default:
        goto malformed_resp;
    }
    rc = recvbuflen;

 cleanup:
    nlmsg_free(nl_msg);
    if (rc < 0)
       VIR_FREE(resp);
    *nlData = resp;
    return rc;

 malformed_resp:
    virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                   _("malformed netlink response message"));
    goto cleanup;

 buffer_too_small:
    virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                   _("allocated netlink buffer is too small"));
    goto cleanup;
}
679

E
Eric Blake 已提交
680 681
int
virNetlinkGetErrorCode(struct nlmsghdr *resp, unsigned int recvbuflen)
682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707
{
    struct nlmsgerr *err;
    int result = 0;

    if (recvbuflen < NLMSG_LENGTH(0) || resp == NULL)
        goto malformed_resp;

    switch (resp->nlmsg_type) {
    case NLMSG_ERROR:
        err = (struct nlmsgerr *)NLMSG_DATA(resp);
        if (resp->nlmsg_len < NLMSG_LENGTH(sizeof(*err)))
            goto malformed_resp;

        switch (err->error) {
        case 0: /* ACK */
            break;

        default:
            result = err->error;
        }
        break;

    case NLMSG_DONE:
        break;

    default:
708 709 710
        /* We allow multipart messages. */
        if (!(resp->nlmsg_flags & NLM_F_MULTI))
            goto malformed_resp;
711 712 713 714 715 716 717 718 719 720
    }

    return result;

 malformed_resp:
    virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                   _("malformed netlink response message"));
    return -EINVAL;
}

E
Eric Blake 已提交
721

722 723 724 725 726 727 728 729 730 731 732 733 734 735 736
static void
virNetlinkEventServerLock(virNetlinkEventSrvPrivatePtr driver)
{
    virMutexLock(&driver->lock);
}

static void
virNetlinkEventServerUnlock(virNetlinkEventSrvPrivatePtr driver)
{
    virMutexUnlock(&driver->lock);
}

/**
 * virNetlinkEventRemoveClientPrimitive:
 *
737
 * @i:        index of the client to remove from the table
738
 * @protocol: netlink protocol
739 740 741 742 743 744 745 746 747
 *
 * This static function does the low level removal of a client from
 * the table once its index is known, including calling the remove
 * callback (which usually will free resources required by the
 * handler). The event server lock *must* be locked before calling
 * this function.
 *
 * assumes success, returns nothing.
 */
748 749
static int
virNetlinkEventRemoveClientPrimitive(size_t i, unsigned int protocol)
750
{
751 752 753 754
    if (protocol >= MAX_LINKS)
        return -EINVAL;

    virNetlinkEventRemoveCallback removeCB = server[protocol]->handles[i].removeCB;
755 756

    if (removeCB) {
757 758 759
        (removeCB)(server[protocol]->handles[i].watch,
                   &server[protocol]->handles[i].macaddr,
                   server[protocol]->handles[i].opaque);
760
    }
761 762
    server[protocol]->handles[i].deleted = VIR_NETLINK_HANDLE_DELETED;
    return 0;
763 764 765 766 767 768 769 770 771
}

static void
virNetlinkEventCallback(int watch,
                        int fd ATTRIBUTE_UNUSED,
                        int events ATTRIBUTE_UNUSED,
                        void *opaque)
{
    virNetlinkEventSrvPrivatePtr srv = opaque;
772
    struct nlmsghdr *msg;
773 774
    struct sockaddr_nl peer;
    struct ucred *creds = NULL;
775 776
    size_t i;
    int length;
777 778
    bool handled = false;

779 780
    length = nl_recv(srv->netlinknh, &peer,
                     (unsigned char **)&msg, &creds);
781 782 783 784

    if (length == 0)
        return;
    if (length < 0) {
785 786
        virReportSystemError(errno,
                             "%s", _("nl_recv returned with error"));
787 788 789 790 791 792 793 794 795 796 797 798
        return;
    }

    virNetlinkEventServerLock(srv);

    VIR_DEBUG("dispatching to max %d clients, called from event watch %d",
            (int)srv->handlesCount, watch);

    for (i = 0; i < srv->handlesCount; i++) {
        if (srv->handles[i].deleted != VIR_NETLINK_HANDLE_VALID)
            continue;

799
        VIR_DEBUG("dispatching client %zu.", i);
800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816

        (srv->handles[i].handleCB)(msg, length, &peer, &handled,
                                   srv->handles[i].opaque);
    }

    if (!handled)
        VIR_DEBUG("event not handled.");
    VIR_FREE(msg);
    virNetlinkEventServerUnlock(srv);
}

/**
 * virNetlinkEventServiceStop:
 *
 * stop the monitor to receive netlink messages for libvirtd.
 * This removes the netlink socket fd from the event handler.
 *
817 818
 * @protocol: netlink protocol
 *
819
 * Returns -1 if the monitor cannot be unregistered, 0 upon success
820 821
 */
int
822
virNetlinkEventServiceStop(unsigned int protocol)
823
{
824 825 826 827
    if (protocol >= MAX_LINKS)
        return -EINVAL;

    virNetlinkEventSrvPrivatePtr srv = server[protocol];
828
    size_t i;
829 830 831

    VIR_INFO("stopping netlink event service");

832
    if (!server[protocol])
833 834 835 836
        return 0;

    virNetlinkEventServerLock(srv);
    nl_close(srv->netlinknh);
S
Serge Hallyn 已提交
837
    virNetlinkFree(srv->netlinknh);
838 839 840 841 842
    virEventRemoveHandle(srv->eventwatch);

    /* free any remaining clients on the list */
    for (i = 0; i < srv->handlesCount; i++) {
        if (srv->handles[i].deleted == VIR_NETLINK_HANDLE_VALID)
843
            virNetlinkEventRemoveClientPrimitive(i, protocol);
844 845
    }

846
    server[protocol] = NULL;
847
    VIR_FREE(srv->handles);
848 849 850 851 852 853 854
    virNetlinkEventServerUnlock(srv);

    virMutexDestroy(&srv->lock);
    VIR_FREE(srv);
    return 0;
}

855 856 857 858 859 860 861 862 863 864
/**
 * virNetlinkEventServiceStopAll:
 *
 * Stop all the monitors to receive netlink messages for libvirtd.
 *
 * Returns -1 if any monitor cannot be unregistered, 0 upon success
 */
int
virNetlinkEventServiceStopAll(void)
{
865
    size_t i;
866 867 868

    VIR_INFO("stopping all netlink event services");

869 870
    for (i = 0; i < MAX_LINKS; i++)
        virNetlinkEventServiceStop(i);
871 872 873 874

    return 0;
}

875 876 877
/**
 * virNetlinkEventServiceIsRunning:
 *
878
 * Returns if the netlink event service is running.
879
 *
880 881
 * @protocol: netlink protocol
 *
882
 * Returns 'true' if the service is running, 'false' if stopped.
883 884
 */
bool
885
virNetlinkEventServiceIsRunning(unsigned int protocol)
886
{
887 888 889 890 891 892 893
    if (protocol >= MAX_LINKS) {
        virReportSystemError(EINVAL,
                             _("invalid protocol argument: %d"), protocol);
        return false;
    }

    return server[protocol] != NULL;
894 895
}

896 897 898
/**
 * virNetlinkEventServiceLocalPid:
 *
899 900
 * @protocol: netlink protocol
 *
901 902 903 904
 * Returns the nl_pid value that was used to bind() the netlink socket
 * used by the netlink event service, or -1 on error (netlink
 * guarantees that this value will always be > 0).
 */
905
int virNetlinkEventServiceLocalPid(unsigned int protocol)
906
{
907 908 909 910
    if (protocol >= MAX_LINKS)
        return -EINVAL;

    if (!(server[protocol] && server[protocol]->netlinknh)) {
911 912
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("netlink event service not running"));
913 914
        return -1;
    }
915
    return (int)nl_socket_get_local_port(server[protocol]->netlinknh);
916 917 918
}


919 920 921 922 923 924
/**
 * virNetlinkEventServiceStart:
 *
 * start a monitor to receive netlink messages for libvirtd.
 * This registers a netlink socket with the event interface.
 *
925
 * @protocol: netlink protocol
926 927
 * @groups:   broadcast groups to join in
 *
928
 * Returns -1 if the monitor cannot be registered, 0 upon success
929 930
 */
int
931
virNetlinkEventServiceStart(unsigned int protocol, unsigned int groups)
932 933 934 935 936
{
    virNetlinkEventSrvPrivatePtr srv;
    int fd;
    int ret = -1;

937 938 939 940 941 942 943
    if (protocol >= MAX_LINKS) {
        virReportSystemError(EINVAL,
                             _("invalid protocol argument: %d"), protocol);
        return -EINVAL;
    }

    if (server[protocol])
944 945
        return 0;

946
    VIR_INFO("starting netlink event service with protocol %d", protocol);
947

948
    if (VIR_ALLOC(srv) < 0)
949
        return -1;
950

951 952 953 954
    if (virMutexInit(&srv->lock) < 0) {
        VIR_FREE(srv);
        return -1;
    }
955 956 957 958

    virNetlinkEventServerLock(srv);

    /* Allocate a new socket and get fd */
L
Leno Hou 已提交
959
    if (!(srv->netlinknh = virNetlinkCreateSocket(protocol)))
960 961 962 963
        goto error_locked;

    fd = nl_socket_get_fd(srv->netlinknh);
    if (fd < 0) {
964 965
        virReportSystemError(errno,
                             "%s", _("cannot get netlink socket fd"));
966 967 968
        goto error_server;
    }

969 970 971 972 973 974
    if (groups && nl_socket_add_membership(srv->netlinknh, groups) < 0) {
        virReportSystemError(errno,
                             "%s", _("cannot add netlink membership"));
        goto error_server;
    }

975
    if (nl_socket_set_nonblocking(srv->netlinknh)) {
976 977
        virReportSystemError(errno, "%s",
                             _("cannot set netlink socket nonblocking"));
978 979 980 981 982 983 984
        goto error_server;
    }

    if ((srv->eventwatch = virEventAddHandle(fd,
                                             VIR_EVENT_HANDLE_READABLE,
                                             virNetlinkEventCallback,
                                             srv, NULL)) < 0) {
985 986
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("Failed to add netlink event handle watch"));
987 988 989 990 991 992 993
        goto error_server;
    }

    srv->netlinkfd = fd;
    VIR_DEBUG("netlink event listener on fd: %i running", fd);

    ret = 0;
994
    server[protocol] = srv;
995

996
 error_server:
997 998
    if (ret < 0) {
        nl_close(srv->netlinknh);
S
Serge Hallyn 已提交
999
        virNetlinkFree(srv->netlinknh);
1000
    }
1001
 error_locked:
1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014
    virNetlinkEventServerUnlock(srv);
    if (ret < 0) {
        virMutexDestroy(&srv->lock);
        VIR_FREE(srv);
    }
    return ret;
}

/**
 * virNetlinkEventAddClient:
 *
 * @handleCB: callback to invoke when an event occurs
 * @removeCB: callback to invoke when removing a client
1015 1016 1017
 * @opaque:   user data to pass to callback
 * @macaddr:  macaddr to store with the data. Used to identify callers.
 *            May be null.
1018
 * @protocol: netlink protocol
1019 1020 1021 1022 1023
 *
 * register a callback for handling of netlink messages. The
 * registered function receives the entire netlink message and
 * may choose to act upon it.
 *
1024 1025
 * Returns -1 if the file handle cannot be registered, number of
 * monitor upon success.
1026 1027 1028 1029
 */
int
virNetlinkEventAddClient(virNetlinkEventHandleCallback handleCB,
                         virNetlinkEventRemoveCallback removeCB,
1030
                         void *opaque, const virMacAddr *macaddr,
1031
                         unsigned int protocol)
1032
{
1033 1034
    size_t i;
    int r, ret = -1;
1035 1036 1037 1038 1039 1040
    virNetlinkEventSrvPrivatePtr srv = NULL;

    if (protocol >= MAX_LINKS)
        return -EINVAL;

    srv = server[protocol];
1041

1042
    if (handleCB == NULL) {
1043 1044
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("Invalid NULL callback provided"));
1045
        return -1;
1046
    }
1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064

    virNetlinkEventServerLock(srv);

    VIR_DEBUG("adding client: %d.", nextWatch);

    r = 0;
    /* first try to re-use deleted free slots */
    for (i = 0; i < srv->handlesCount; i++) {
        if (srv->handles[i].deleted == VIR_NETLINK_HANDLE_DELETED) {
            r = i;
            goto addentry;
        }
    }
    /* Resize the eventLoop array if needed */
    if (srv->handlesCount == srv->handlesAlloc) {
        VIR_DEBUG("Used %zu handle slots, adding at least %d more",
                  srv->handlesAlloc, NETLINK_EVENT_ALLOC_EXTENT);
        if (VIR_RESIZE_N(srv->handles, srv->handlesAlloc,
1065
                        srv->handlesCount, NETLINK_EVENT_ALLOC_EXTENT) < 0)
1066 1067 1068 1069
            goto error;
    }
    r = srv->handlesCount++;

1070
 addentry:
1071 1072 1073 1074 1075 1076
    srv->handles[r].watch    = nextWatch;
    srv->handles[r].handleCB = handleCB;
    srv->handles[r].removeCB = removeCB;
    srv->handles[r].opaque   = opaque;
    srv->handles[r].deleted  = VIR_NETLINK_HANDLE_VALID;
    if (macaddr)
1077
        virMacAddrSet(&srv->handles[r].macaddr, macaddr);
1078
    else
1079
        virMacAddrSetRaw(&srv->handles[r].macaddr,
E
Eric Blake 已提交
1080
                         (unsigned char[VIR_MAC_BUFLEN]){0, 0, 0, 0, 0, 0});
1081 1082 1083 1084

    VIR_DEBUG("added client to loop slot: %d. with macaddr ptr=%p", r, macaddr);

    ret = nextWatch++;
1085
 error:
1086 1087 1088 1089 1090 1091 1092
    virNetlinkEventServerUnlock(srv);
    return ret;
}

/**
 * virNetlinkEventRemoveClient:
 *
1093 1094
 * @watch:    watch whose handle to remove
 * @macaddr:  macaddr whose handle to remove
1095
 * @protocol: netlink protocol
1096 1097 1098 1099 1100
 *
 * Unregister a callback from a netlink monitor.
 * The handler function referenced will no longer receive netlink messages.
 * Either watch or macaddr may be used, the other should be null.
 *
1101
 * Returns -1 if the file handle was not registered, 0 upon success
1102 1103
 */
int
1104
virNetlinkEventRemoveClient(int watch, const virMacAddr *macaddr,
1105
                            unsigned int protocol)
1106
{
1107
    size_t i;
1108
    int ret = -1;
1109 1110 1111 1112 1113 1114
    virNetlinkEventSrvPrivatePtr srv = NULL;

    if (protocol >= MAX_LINKS)
        return -EINVAL;

    srv = server[protocol];
1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130

    VIR_DEBUG("removing client watch=%d, mac=%p.", watch, macaddr);

    if (watch <= 0 && !macaddr) {
        VIR_WARN("Ignoring invalid netlink client id: %d", watch);
        return -1;
    }

    virNetlinkEventServerLock(srv);

    for (i = 0; i < srv->handlesCount; i++) {
        if (srv->handles[i].deleted != VIR_NETLINK_HANDLE_VALID)
            continue;

        if ((watch && srv->handles[i].watch == watch) ||
            (!watch &&
1131
             virMacAddrCmp(macaddr, &srv->handles[i].macaddr) == 0)) {
1132 1133 1134

            VIR_DEBUG("removed client: %d by %s.",
                      srv->handles[i].watch, watch ? "index" : "mac");
1135
            virNetlinkEventRemoveClientPrimitive(i, protocol);
1136 1137 1138 1139 1140 1141
            ret = 0;
            goto cleanup;
        }
    }
    VIR_DEBUG("no client found to remove.");

1142
 cleanup:
1143 1144 1145 1146
    virNetlinkEventServerUnlock(srv);
    return ret;
}

1147 1148
#else

1149 1150 1151 1152 1153 1154
# if defined(__linux)
static const char *unsupported = N_("libnl was not available at build time");
# else
static const char *unsupported = N_("not supported on non-linux platforms");
# endif

1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166
int
virNetlinkStartup(void)
{
    return 0;
}

void
virNetlinkShutdown(void)
{
    return;
}

1167
int virNetlinkCommand(struct nl_msg *nl_msg ATTRIBUTE_UNUSED,
1168
                      struct nlmsghdr **resp ATTRIBUTE_UNUSED,
1169 1170
                      unsigned int *respbuflen ATTRIBUTE_UNUSED,
                      uint32_t src_pid ATTRIBUTE_UNUSED,
1171 1172 1173
                      uint32_t dst_pid ATTRIBUTE_UNUSED,
                      unsigned int protocol ATTRIBUTE_UNUSED,
                      unsigned int groups ATTRIBUTE_UNUSED)
1174
{
1175
    virReportError(VIR_ERR_INTERNAL_ERROR, "%s", _(unsupported));
1176 1177 1178
    return -1;
}

1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190
int
virNetlinkDumpCommand(struct nl_msg *nl_msg ATTRIBUTE_UNUSED,
                      virNetlinkDumpCallback callback ATTRIBUTE_UNUSED,
                      uint32_t src_pid ATTRIBUTE_UNUSED,
                      uint32_t dst_pid ATTRIBUTE_UNUSED,
                      unsigned int protocol ATTRIBUTE_UNUSED,
                      unsigned int groups ATTRIBUTE_UNUSED,
                      void *opaque ATTRIBUTE_UNUSED)
{
    virReportError(VIR_ERR_INTERNAL_ERROR, "%s", _(unsupported));
    return -1;
}
1191

1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205
int
virNetlinkDumpLink(const char *ifname ATTRIBUTE_UNUSED,
                   int ifindex ATTRIBUTE_UNUSED,
                   void **nlData ATTRIBUTE_UNUSED,
                   struct nlattr **tb ATTRIBUTE_UNUSED,
                   uint32_t src_pid ATTRIBUTE_UNUSED,
                   uint32_t dst_pid ATTRIBUTE_UNUSED)
{
    virReportSystemError(ENOSYS, "%s",
                         _("Unable to dump link info on this platform"));
    return -1;
}


1206
int
1207 1208
virNetlinkDelLink(const char *ifname ATTRIBUTE_UNUSED,
                  virNetlinkDelLinkFallback fallback ATTRIBUTE_UNUSED)
1209 1210 1211 1212 1213
{
    virReportError(VIR_ERR_INTERNAL_ERROR, "%s", _(unsupported));
    return -1;
}

1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224

int
virNetlinkGetNeighbor(void **nlData ATTRIBUTE_UNUSED,
                      uint32_t src_pid ATTRIBUTE_UNUSED,
                      uint32_t dst_pid ATTRIBUTE_UNUSED)
{
    virReportError(VIR_ERR_INTERNAL_ERROR, "%s", _(unsupported));
    return -1;
}


1225
/**
1226 1227
 * stopNetlinkEventServer: stop the monitor to receive netlink
 * messages for libvirtd
1228
 */
1229
int virNetlinkEventServiceStop(unsigned int protocol ATTRIBUTE_UNUSED)
1230
{
1231
    VIR_DEBUG("%s", _(unsupported));
1232 1233 1234
    return 0;
}

1235 1236 1237 1238 1239 1240 1241 1242 1243 1244
/**
 * stopNetlinkEventServerAll: stop all the monitors to receive netlink
 * messages for libvirtd
 */
int virNetlinkEventServiceStopAll(void)
{
    VIR_DEBUG("%s", _(unsupported));
    return 0;
}

1245
/**
1246 1247
 * startNetlinkEventServer: start a monitor to receive netlink
 * messages for libvirtd
1248
 */
1249 1250
int virNetlinkEventServiceStart(unsigned int protocol ATTRIBUTE_UNUSED,
                                unsigned int groups ATTRIBUTE_UNUSED)
1251
{
1252
    VIR_DEBUG("%s", _(unsupported));
1253 1254 1255 1256
    return 0;
}

/**
1257 1258
 * virNetlinkEventServiceIsRunning: returns if the netlink event
 * service is running.
1259
 */
1260
bool virNetlinkEventServiceIsRunning(unsigned int protocol ATTRIBUTE_UNUSED)
1261
{
1262
    virReportError(VIR_ERR_INTERNAL_ERROR, "%s", _(unsupported));
1263 1264 1265
    return 0;
}

1266
int virNetlinkEventServiceLocalPid(unsigned int protocol ATTRIBUTE_UNUSED)
1267
{
1268
    virReportError(VIR_ERR_INTERNAL_ERROR, "%s", _(unsupported));
1269 1270 1271
    return -1;
}

1272
/**
1273 1274
 * virNetlinkEventAddClient: register a callback for handling of
 * netlink messages
1275
 */
J
Jim Fehlig 已提交
1276 1277 1278
int virNetlinkEventAddClient(virNetlinkEventHandleCallback handleCB ATTRIBUTE_UNUSED,
                             virNetlinkEventRemoveCallback removeCB ATTRIBUTE_UNUSED,
                             void *opaque ATTRIBUTE_UNUSED,
1279
                             const virMacAddr *macaddr ATTRIBUTE_UNUSED,
1280
                             unsigned int protocol ATTRIBUTE_UNUSED)
1281
{
1282
    virReportError(VIR_ERR_INTERNAL_ERROR, "%s", _(unsupported));
1283 1284 1285 1286 1287 1288
    return -1;
}

/**
 * virNetlinkEventRemoveClient: unregister a callback from a netlink monitor
 */
J
Jim Fehlig 已提交
1289
int virNetlinkEventRemoveClient(int watch ATTRIBUTE_UNUSED,
1290
                                const virMacAddr *macaddr ATTRIBUTE_UNUSED,
1291
                                unsigned int protocol ATTRIBUTE_UNUSED)
1292
{
1293
    virReportError(VIR_ERR_INTERNAL_ERROR, "%s", _(unsupported));
1294 1295 1296
    return -1;
}

E
Eric Blake 已提交
1297 1298 1299 1300 1301 1302 1303 1304 1305

int
virNetlinkGetErrorCode(struct nlmsghdr *resp ATTRIBUTE_UNUSED,
                       unsigned int recvbuflen ATTRIBUTE_UNUSED)
{
    virReportError(VIR_ERR_INTERNAL_ERROR, "%s", _(unsupported));
    return -EINVAL;
}

1306
#endif /* __linux__ */