2011-06-22 18:17:36 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2010-2011 Red Hat, Inc.
|
2012-02-03 14:13:19 +00:00
|
|
|
* Copyright (C) 2010-2012 IBM Corporation
|
2011-06-22 18:17:36 +00:00
|
|
|
*
|
|
|
|
* 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:
|
|
|
|
* Stefan Berger <stefanb@us.ibm.com>
|
2012-02-03 14:13:19 +00:00
|
|
|
* Dirk Herrendoerfer <herrend[at]de[dot]ibm[dot]com>
|
2011-06-22 18:17:36 +00:00
|
|
|
*
|
|
|
|
* Notes:
|
|
|
|
* netlink: http://lovezutto.googlepages.com/netlink.pdf
|
|
|
|
* iproute2 package
|
|
|
|
*
|
2012-02-03 14:13:19 +00:00
|
|
|
* 2012/02: Renamed from netlink.[ch] to virnetlink.[ch]
|
|
|
|
*
|
2011-06-22 18:17:36 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
#include <errno.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
|
2012-02-03 14:13:19 +00:00
|
|
|
#include "virnetlink.h"
|
2012-02-22 13:17:13 +00:00
|
|
|
#include "logging.h"
|
2011-06-22 18:17:36 +00:00
|
|
|
#include "memory.h"
|
2012-02-22 13:17:13 +00:00
|
|
|
#include "threads.h"
|
|
|
|
#include "virmacaddr.h"
|
2011-06-22 18:17:36 +00:00
|
|
|
#include "virterror_internal.h"
|
|
|
|
|
|
|
|
#define VIR_FROM_THIS VIR_FROM_NET
|
|
|
|
|
|
|
|
#define netlinkError(code, ...) \
|
|
|
|
virReportErrorHelper(VIR_FROM_NET, code, __FILE__, \
|
|
|
|
__FUNCTION__, __LINE__, __VA_ARGS__)
|
|
|
|
|
|
|
|
#define NETLINK_ACK_TIMEOUT_S 2
|
|
|
|
|
2012-02-22 13:17:13 +00:00
|
|
|
#if defined(__linux__) && defined(HAVE_LIBNL)
|
|
|
|
/* State for a single netlink event handle */
|
|
|
|
struct virNetlinkEventHandle {
|
|
|
|
int watch;
|
|
|
|
virNetlinkEventHandleCallback handleCB;
|
|
|
|
virNetlinkEventRemoveCallback removeCB;
|
|
|
|
void *opaque;
|
|
|
|
unsigned char macaddr[VIR_MAC_BUFLEN];
|
|
|
|
int deleted;
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef struct _virNetlinkEventSrvPrivate virNetlinkEventSrvPrivate;
|
|
|
|
typedef virNetlinkEventSrvPrivate *virNetlinkEventSrvPrivatePtr;
|
|
|
|
struct _virNetlinkEventSrvPrivate {
|
|
|
|
/*Server*/
|
|
|
|
virMutex lock;
|
|
|
|
int eventwatch;
|
|
|
|
int netlinkfd;
|
|
|
|
struct nl_handle *netlinknh;
|
|
|
|
/*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
|
|
|
|
|
|
|
|
static virNetlinkEventSrvPrivatePtr server = NULL;
|
|
|
|
|
|
|
|
/* Function definitions */
|
|
|
|
|
2011-06-22 18:17:36 +00:00
|
|
|
/**
|
2012-02-03 14:13:19 +00:00
|
|
|
* virNetlinkCommand:
|
2011-06-22 18:17:36 +00:00
|
|
|
* @nlmsg: pointer to netlink message
|
|
|
|
* @respbuf: pointer to pointer where response buffer will be allocated
|
|
|
|
* @respbuflen: pointer to integer holding the size of the response buffer
|
|
|
|
* on return of the function.
|
|
|
|
* @nl_pid: the pid of the process to talk to, i.e., pid = 0 for kernel
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
2012-02-03 14:13:19 +00:00
|
|
|
int virNetlinkCommand(struct nl_msg *nl_msg,
|
|
|
|
unsigned char **respbuf, unsigned int *respbuflen,
|
|
|
|
int nl_pid)
|
2011-06-22 18:17:36 +00:00
|
|
|
{
|
|
|
|
int rc = 0;
|
|
|
|
struct sockaddr_nl nladdr = {
|
|
|
|
.nl_family = AF_NETLINK,
|
|
|
|
.nl_pid = nl_pid,
|
|
|
|
.nl_groups = 0,
|
|
|
|
};
|
|
|
|
ssize_t nbytes;
|
|
|
|
struct timeval tv = {
|
|
|
|
.tv_sec = NETLINK_ACK_TIMEOUT_S,
|
|
|
|
};
|
|
|
|
fd_set readfds;
|
|
|
|
int fd;
|
|
|
|
int n;
|
|
|
|
struct nlmsghdr *nlmsg = nlmsg_hdr(nl_msg);
|
|
|
|
struct nl_handle *nlhandle = nl_handle_alloc();
|
|
|
|
|
|
|
|
if (!nlhandle) {
|
|
|
|
virReportSystemError(errno,
|
|
|
|
"%s", _("cannot allocate nlhandle for netlink"));
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (nl_connect(nlhandle, NETLINK_ROUTE) < 0) {
|
|
|
|
virReportSystemError(errno,
|
|
|
|
"%s", _("cannot connect to netlink socket"));
|
|
|
|
rc = -1;
|
2012-02-22 13:17:13 +00:00
|
|
|
goto error;
|
2011-06-22 18:17:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
nlmsg_set_dst(nl_msg, &nladdr);
|
|
|
|
|
|
|
|
nlmsg->nlmsg_pid = getpid();
|
|
|
|
|
|
|
|
nbytes = nl_send_auto_complete(nlhandle, nl_msg);
|
|
|
|
if (nbytes < 0) {
|
|
|
|
virReportSystemError(errno,
|
|
|
|
"%s", _("cannot send to netlink socket"));
|
|
|
|
rc = -1;
|
2012-02-22 13:17:13 +00:00
|
|
|
goto error;
|
2011-06-22 18:17:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fd = nl_socket_get_fd(nlhandle);
|
|
|
|
|
|
|
|
FD_ZERO(&readfds);
|
|
|
|
FD_SET(fd, &readfds);
|
|
|
|
|
|
|
|
n = select(fd + 1, &readfds, NULL, NULL, &tv);
|
|
|
|
if (n <= 0) {
|
|
|
|
if (n < 0)
|
|
|
|
virReportSystemError(errno, "%s",
|
|
|
|
_("error in select call"));
|
|
|
|
if (n == 0)
|
|
|
|
virReportSystemError(ETIMEDOUT, "%s",
|
|
|
|
_("no valid netlink response was received"));
|
|
|
|
rc = -1;
|
2012-02-22 13:17:13 +00:00
|
|
|
goto error;
|
2011-06-22 18:17:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
*respbuflen = nl_recv(nlhandle, &nladdr, respbuf, NULL);
|
|
|
|
if (*respbuflen <= 0) {
|
|
|
|
virReportSystemError(errno,
|
|
|
|
"%s", _("nl_recv failed"));
|
|
|
|
rc = -1;
|
|
|
|
}
|
2012-02-22 13:17:13 +00:00
|
|
|
error:
|
2011-06-22 18:17:36 +00:00
|
|
|
if (rc == -1) {
|
|
|
|
VIR_FREE(*respbuf);
|
|
|
|
*respbuf = NULL;
|
|
|
|
*respbuflen = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
nl_handle_destroy(nlhandle);
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2012-02-22 13:17:13 +00:00
|
|
|
static void
|
|
|
|
virNetlinkEventServerLock(virNetlinkEventSrvPrivatePtr driver)
|
|
|
|
{
|
|
|
|
virMutexLock(&driver->lock);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
virNetlinkEventServerUnlock(virNetlinkEventSrvPrivatePtr driver)
|
|
|
|
{
|
|
|
|
virMutexUnlock(&driver->lock);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* virNetlinkEventRemoveClientPrimitive:
|
|
|
|
*
|
|
|
|
* @i: index of the client to remove from the table
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
virNetlinkEventRemoveClientPrimitive(size_t i)
|
|
|
|
{
|
|
|
|
virNetlinkEventRemoveCallback removeCB = server->handles[i].removeCB;
|
|
|
|
|
|
|
|
if (removeCB) {
|
|
|
|
(removeCB)(server->handles[i].watch,
|
|
|
|
server->handles[i].macaddr,
|
|
|
|
server->handles[i].opaque);
|
|
|
|
}
|
|
|
|
server->handles[i].deleted = VIR_NETLINK_HANDLE_DELETED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
virNetlinkEventCallback(int watch,
|
|
|
|
int fd ATTRIBUTE_UNUSED,
|
|
|
|
int events ATTRIBUTE_UNUSED,
|
|
|
|
void *opaque)
|
|
|
|
{
|
|
|
|
virNetlinkEventSrvPrivatePtr srv = opaque;
|
|
|
|
unsigned char *msg;
|
|
|
|
struct sockaddr_nl peer;
|
|
|
|
struct ucred *creds = NULL;
|
|
|
|
int i, length;
|
|
|
|
bool handled = false;
|
|
|
|
|
|
|
|
length = nl_recv(srv->netlinknh, &peer, &msg, &creds);
|
|
|
|
|
|
|
|
if (length == 0)
|
|
|
|
return;
|
|
|
|
if (length < 0) {
|
|
|
|
netlinkError(errno,
|
|
|
|
"%s", _("nl_recv returned with error"));
|
|
|
|
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;
|
|
|
|
|
|
|
|
VIR_DEBUG("dispatching client %d.", i);
|
|
|
|
|
|
|
|
(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.
|
|
|
|
*
|
2012-02-29 20:21:27 +00:00
|
|
|
* Returns -1 if the monitor cannot be unregistered, 0 upon success
|
2012-02-22 13:17:13 +00:00
|
|
|
*/
|
|
|
|
int
|
|
|
|
virNetlinkEventServiceStop(void)
|
|
|
|
{
|
|
|
|
virNetlinkEventSrvPrivatePtr srv = server;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
VIR_INFO("stopping netlink event service");
|
|
|
|
|
|
|
|
if (!server)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
virNetlinkEventServerLock(srv);
|
|
|
|
nl_close(srv->netlinknh);
|
|
|
|
nl_handle_destroy(srv->netlinknh);
|
|
|
|
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)
|
|
|
|
virNetlinkEventRemoveClientPrimitive(i);
|
|
|
|
}
|
|
|
|
|
|
|
|
server = 0;
|
|
|
|
virNetlinkEventServerUnlock(srv);
|
|
|
|
|
|
|
|
virMutexDestroy(&srv->lock);
|
|
|
|
VIR_FREE(srv);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* virNetlinkEventServiceIsRunning:
|
|
|
|
*
|
2012-02-29 20:21:27 +00:00
|
|
|
* Returns if the netlink event service is running.
|
2012-02-22 13:17:13 +00:00
|
|
|
*
|
2012-02-29 20:21:27 +00:00
|
|
|
* Returns 'true' if the service is running, 'false' if stopped.
|
2012-02-22 13:17:13 +00:00
|
|
|
*/
|
|
|
|
bool
|
|
|
|
virNetlinkEventServiceIsRunning(void)
|
|
|
|
{
|
|
|
|
return (server != NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* virNetlinkEventServiceStart:
|
|
|
|
*
|
|
|
|
* start a monitor to receive netlink messages for libvirtd.
|
|
|
|
* This registers a netlink socket with the event interface.
|
|
|
|
*
|
2012-02-29 20:21:27 +00:00
|
|
|
* Returns -1 if the monitor cannot be registered, 0 upon success
|
2012-02-22 13:17:13 +00:00
|
|
|
*/
|
|
|
|
int
|
|
|
|
virNetlinkEventServiceStart(void)
|
|
|
|
{
|
|
|
|
virNetlinkEventSrvPrivatePtr srv;
|
|
|
|
int fd;
|
|
|
|
int ret = -1;
|
|
|
|
|
|
|
|
if (server)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
VIR_INFO("starting netlink event service");
|
|
|
|
|
|
|
|
if (VIR_ALLOC(srv) < 0) {
|
|
|
|
virReportOOMError();
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (virMutexInit(&srv->lock) < 0)
|
|
|
|
goto error;
|
|
|
|
|
|
|
|
virNetlinkEventServerLock(srv);
|
|
|
|
|
|
|
|
/* Allocate a new socket and get fd */
|
|
|
|
srv->netlinknh = nl_handle_alloc();
|
|
|
|
|
|
|
|
if (!srv->netlinknh) {
|
|
|
|
netlinkError(errno,
|
|
|
|
"%s", _("cannot allocate nlhandle for virNetlinkEvent server"));
|
|
|
|
goto error_locked;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (nl_connect(srv->netlinknh, NETLINK_ROUTE) < 0) {
|
|
|
|
netlinkError(errno,
|
|
|
|
"%s", _("cannot connect to netlink socket"));
|
|
|
|
goto error_server;
|
|
|
|
}
|
|
|
|
|
|
|
|
fd = nl_socket_get_fd(srv->netlinknh);
|
|
|
|
|
|
|
|
if (fd < 0) {
|
|
|
|
netlinkError(errno,
|
|
|
|
"%s", _("cannot get netlink socket fd"));
|
|
|
|
goto error_server;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (nl_socket_set_nonblocking(srv->netlinknh)) {
|
|
|
|
netlinkError(errno, "%s",
|
|
|
|
_("cannot set netlink socket nonblocking"));
|
|
|
|
goto error_server;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((srv->eventwatch = virEventAddHandle(fd,
|
|
|
|
VIR_EVENT_HANDLE_READABLE,
|
|
|
|
virNetlinkEventCallback,
|
|
|
|
srv, NULL)) < 0) {
|
|
|
|
netlinkError(VIR_ERR_INTERNAL_ERROR, "%s",
|
|
|
|
_("Failed to add netlink event handle watch"));
|
|
|
|
goto error_server;
|
|
|
|
}
|
|
|
|
|
|
|
|
srv->netlinkfd = fd;
|
|
|
|
VIR_DEBUG("netlink event listener on fd: %i running", fd);
|
|
|
|
|
|
|
|
ret = 0;
|
|
|
|
server = srv;
|
|
|
|
|
|
|
|
error_server:
|
|
|
|
if (ret < 0) {
|
|
|
|
nl_close(srv->netlinknh);
|
|
|
|
nl_handle_destroy(srv->netlinknh);
|
|
|
|
}
|
|
|
|
error_locked:
|
|
|
|
virNetlinkEventServerUnlock(srv);
|
|
|
|
if (ret < 0) {
|
|
|
|
virMutexDestroy(&srv->lock);
|
|
|
|
VIR_FREE(srv);
|
|
|
|
}
|
|
|
|
error:
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* virNetlinkEventAddClient:
|
|
|
|
*
|
|
|
|
* @handleCB: callback to invoke when an event occurs
|
|
|
|
* @removeCB: callback to invoke when removing a client
|
|
|
|
* @opaque: user data to pass to callback
|
2012-02-29 20:21:27 +00:00
|
|
|
* @macaddr: macaddr to store with the data. Used to identify callers.
|
|
|
|
* May be null.
|
2012-02-22 13:17:13 +00:00
|
|
|
*
|
|
|
|
* register a callback for handling of netlink messages. The
|
|
|
|
* registered function receives the entire netlink message and
|
|
|
|
* may choose to act upon it.
|
|
|
|
*
|
2012-02-29 20:21:27 +00:00
|
|
|
* Returns -1 if the file handle cannot be registered, number of
|
|
|
|
* monitor upon success.
|
2012-02-22 13:17:13 +00:00
|
|
|
*/
|
|
|
|
int
|
|
|
|
virNetlinkEventAddClient(virNetlinkEventHandleCallback handleCB,
|
|
|
|
virNetlinkEventRemoveCallback removeCB,
|
|
|
|
void *opaque, const unsigned char *macaddr)
|
|
|
|
{
|
|
|
|
int i, r, ret = -1;
|
|
|
|
virNetlinkEventSrvPrivatePtr srv = server;
|
|
|
|
|
|
|
|
if (handleCB == NULL)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
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,
|
|
|
|
srv->handlesCount, NETLINK_EVENT_ALLOC_EXTENT) < 0) {
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
r = srv->handlesCount++;
|
|
|
|
|
|
|
|
addentry:
|
|
|
|
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)
|
|
|
|
memcpy(srv->handles[r].macaddr, macaddr, VIR_MAC_BUFLEN);
|
|
|
|
else
|
|
|
|
memset(srv->handles[r].macaddr, 0, VIR_MAC_BUFLEN);
|
|
|
|
|
|
|
|
VIR_DEBUG("added client to loop slot: %d. with macaddr ptr=%p", r, macaddr);
|
|
|
|
|
|
|
|
ret = nextWatch++;
|
|
|
|
error:
|
|
|
|
virNetlinkEventServerUnlock(srv);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* virNetlinkEventRemoveClient:
|
|
|
|
*
|
|
|
|
* @watch: watch whose handle to remove
|
|
|
|
* @macaddr: macaddr whose handle to remove
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
2012-02-29 20:21:27 +00:00
|
|
|
* Returns -1 if the file handle was not registered, 0 upon success
|
2012-02-22 13:17:13 +00:00
|
|
|
*/
|
|
|
|
int
|
|
|
|
virNetlinkEventRemoveClient(int watch, const unsigned char *macaddr)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
int ret = -1;
|
|
|
|
virNetlinkEventSrvPrivatePtr srv = server;
|
|
|
|
|
|
|
|
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 &&
|
|
|
|
memcmp(macaddr, srv->handles[i].macaddr, VIR_MAC_BUFLEN) == 0)) {
|
|
|
|
|
|
|
|
VIR_DEBUG("removed client: %d by %s.",
|
|
|
|
srv->handles[i].watch, watch ? "index" : "mac");
|
|
|
|
virNetlinkEventRemoveClientPrimitive(i);
|
|
|
|
ret = 0;
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
VIR_DEBUG("no client found to remove.");
|
|
|
|
|
|
|
|
cleanup:
|
|
|
|
virNetlinkEventServerUnlock(srv);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2011-06-22 18:17:36 +00:00
|
|
|
#else
|
|
|
|
|
2012-03-06 17:21:21 +00:00
|
|
|
# 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
|
|
|
|
|
2012-02-03 14:13:19 +00:00
|
|
|
int virNetlinkCommand(struct nl_msg *nl_msg ATTRIBUTE_UNUSED,
|
2011-06-22 18:17:36 +00:00
|
|
|
unsigned char **respbuf ATTRIBUTE_UNUSED,
|
|
|
|
unsigned int *respbuflen ATTRIBUTE_UNUSED,
|
|
|
|
int nl_pid ATTRIBUTE_UNUSED)
|
|
|
|
{
|
2012-03-06 17:21:21 +00:00
|
|
|
netlinkError(VIR_ERR_INTERNAL_ERROR, "%s", _(unsupported));
|
2011-06-22 18:17:36 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2012-02-22 13:17:13 +00:00
|
|
|
/**
|
2012-02-29 20:21:27 +00:00
|
|
|
* stopNetlinkEventServer: stop the monitor to receive netlink
|
|
|
|
* messages for libvirtd
|
2012-02-22 13:17:13 +00:00
|
|
|
*/
|
|
|
|
int virNetlinkEventServiceStop(void)
|
|
|
|
{
|
2012-03-06 17:21:21 +00:00
|
|
|
netlinkError(VIR_ERR_INTERNAL_ERROR, "%s", _(unsupported));
|
2012-02-22 13:17:13 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2012-02-29 20:21:27 +00:00
|
|
|
* startNetlinkEventServer: start a monitor to receive netlink
|
|
|
|
* messages for libvirtd
|
2012-02-22 13:17:13 +00:00
|
|
|
*/
|
|
|
|
int virNetlinkEventServiceStart(void)
|
|
|
|
{
|
2012-03-06 17:21:21 +00:00
|
|
|
netlinkError(VIR_ERR_INTERNAL_ERROR, "%s", _(unsupported));
|
2012-02-22 13:17:13 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2012-02-29 20:21:27 +00:00
|
|
|
* virNetlinkEventServiceIsRunning: returns if the netlink event
|
|
|
|
* service is running.
|
2012-02-22 13:17:13 +00:00
|
|
|
*/
|
2012-03-05 19:08:54 +00:00
|
|
|
bool virNetlinkEventServiceIsRunning(void)
|
2012-02-22 13:17:13 +00:00
|
|
|
{
|
2012-03-06 17:21:21 +00:00
|
|
|
netlinkError(VIR_ERR_INTERNAL_ERROR, "%s", _(unsupported));
|
2012-02-22 13:17:13 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2012-02-29 20:21:27 +00:00
|
|
|
* virNetlinkEventAddClient: register a callback for handling of
|
|
|
|
* netlink messages
|
2012-02-22 13:17:13 +00:00
|
|
|
*/
|
2012-03-05 19:08:54 +00:00
|
|
|
int virNetlinkEventAddClient(virNetlinkEventHandleCallback handleCB ATTRIBUTE_UNUSED,
|
|
|
|
virNetlinkEventRemoveCallback removeCB ATTRIBUTE_UNUSED,
|
|
|
|
void *opaque ATTRIBUTE_UNUSED,
|
|
|
|
const unsigned char *macaddr ATTRIBUTE_UNUSED)
|
2012-02-22 13:17:13 +00:00
|
|
|
{
|
2012-03-06 17:21:21 +00:00
|
|
|
netlinkError(VIR_ERR_INTERNAL_ERROR, "%s", _(unsupported));
|
2012-02-22 13:17:13 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* virNetlinkEventRemoveClient: unregister a callback from a netlink monitor
|
|
|
|
*/
|
2012-03-05 19:08:54 +00:00
|
|
|
int virNetlinkEventRemoveClient(int watch ATTRIBUTE_UNUSED,
|
|
|
|
const unsigned char *macaddr ATTRIBUTE_UNUSED)
|
2012-02-22 13:17:13 +00:00
|
|
|
{
|
2012-03-06 17:21:21 +00:00
|
|
|
netlinkError(VIR_ERR_INTERNAL_ERROR, "%s", _(unsupported));
|
2012-02-22 13:17:13 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2011-06-22 18:17:36 +00:00
|
|
|
#endif /* __linux__ */
|