libvirt/src/util/vireventglib.c

516 lines
12 KiB
C
Raw Normal View History

/*
* vireventglib.c: GMainContext based event loop
*
* Copyright (C) 2008 Daniel P. Berrange
* Copyright (C) 2010-2019 Red Hat, Inc.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library. If not, see
* <http://www.gnu.org/licenses/>.
*/
#include <config.h>
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include "vireventglib.h"
#include "vireventglibwatch.h"
#include "virerror.h"
#include "virlog.h"
#include "virprobe.h"
#ifdef G_OS_WIN32
# include <io.h>
#endif
#define VIR_FROM_THIS VIR_FROM_EVENT
VIR_LOG_INIT("util.eventglib");
struct virEventGLibHandle
{
int watch;
int fd;
int events;
int removed;
GSource *source;
virEventHandleCallback cb;
void *opaque;
virFreeCallback ff;
};
struct virEventGLibTimeout
{
int timer;
int interval;
int removed;
GSource *source;
virEventTimeoutCallback cb;
void *opaque;
virFreeCallback ff;
};
static GMutex *eventlock;
static int nextwatch = 1;
static GPtrArray *handles;
static int nexttimer = 1;
static GPtrArray *timeouts;
static GIOCondition
virEventGLibEventsToCondition(int events)
{
GIOCondition cond = 0;
if (events & VIR_EVENT_HANDLE_READABLE)
cond |= G_IO_IN;
if (events & VIR_EVENT_HANDLE_WRITABLE)
cond |= G_IO_OUT;
if (events & VIR_EVENT_HANDLE_ERROR)
cond |= G_IO_ERR;
if (events & VIR_EVENT_HANDLE_HANGUP)
cond |= G_IO_HUP;
return cond;
}
static int
virEventGLibConditionToEvents(GIOCondition cond)
{
int events = 0;
if (cond & G_IO_IN)
events |= VIR_EVENT_HANDLE_READABLE;
if (cond & G_IO_OUT)
events |= VIR_EVENT_HANDLE_WRITABLE;
if (cond & G_IO_ERR)
events |= VIR_EVENT_HANDLE_ERROR;
if (cond & G_IO_NVAL) /* Treat NVAL as error, since libvirt doesn't distinguish */
events |= VIR_EVENT_HANDLE_ERROR;
if (cond & G_IO_HUP)
events |= VIR_EVENT_HANDLE_HANGUP;
return events;
}
static gboolean
virEventGLibHandleDispatch(int fd G_GNUC_UNUSED,
GIOCondition condition,
gpointer opaque)
{
struct virEventGLibHandle *data = opaque;
int events = virEventGLibConditionToEvents(condition);
VIR_DEBUG("Dispatch handler data=%p watch=%d fd=%d events=%d opaque=%p",
data, data->watch, data->fd, events, data->opaque);
PROBE(EVENT_GLIB_DISPATCH_HANDLE,
"watch=%d events=%d cb=%p opaque=%p",
data->watch, events, data->cb, data->opaque);
(data->cb)(data->watch, data->fd, events, data->opaque);
return TRUE;
}
static int
virEventGLibHandleAdd(int fd,
int events,
virEventHandleCallback cb,
void *opaque,
virFreeCallback ff)
{
struct virEventGLibHandle *data;
GIOCondition cond = virEventGLibEventsToCondition(events);
int ret;
g_mutex_lock(eventlock);
data = g_new0(struct virEventGLibHandle, 1);
data->watch = nextwatch++;
data->fd = fd;
data->events = events;
data->cb = cb;
data->opaque = opaque;
data->ff = ff;
VIR_DEBUG("Add handle data=%p watch=%d fd=%d events=%d opaque=%p",
data, data->watch, data->fd, events, data->opaque);
if (events != 0) {
data->source = virEventGLibAddSocketWatch(
fd, cond, NULL, virEventGLibHandleDispatch, data, NULL);
}
g_ptr_array_add(handles, data);
ret = data->watch;
PROBE(EVENT_GLIB_ADD_HANDLE,
"watch=%d fd=%d events=%d cb=%p opaque=%p ff=%p",
ret, fd, events, cb, opaque, ff);
g_mutex_unlock(eventlock);
return ret;
}
static struct virEventGLibHandle *
virEventGLibHandleFind(int watch)
{
guint i;
for (i = 0; i < handles->len; i++) {
struct virEventGLibHandle *h = g_ptr_array_index(handles, i);
if (h == NULL) {
g_warn_if_reached();
continue;
}
if ((h->watch == watch) && !h->removed)
return h;
}
return NULL;
}
static void
virEventGLibHandleUpdate(int watch,
int events)
{
struct virEventGLibHandle *data;
PROBE(EVENT_GLIB_UPDATE_HANDLE,
"watch=%d events=%d",
watch, events);
g_mutex_lock(eventlock);
data = virEventGLibHandleFind(watch);
if (!data) {
VIR_DEBUG("Update for missing handle watch=%d", watch);
goto cleanup;
}
VIR_DEBUG("Update handle data=%p watch=%d fd=%d events=%d",
data, watch, data->fd, events);
if (events != 0) {
GIOCondition cond = virEventGLibEventsToCondition(events);
if (events == data->events)
goto cleanup;
if (data->source != NULL) {
VIR_DEBUG("Removed old handle source=%p", data->source);
g_source_destroy(data->source);
vir_g_source_unref(data->source, NULL);
}
data->source = virEventGLibAddSocketWatch(
data->fd, cond, NULL, virEventGLibHandleDispatch, data, NULL);
data->events = events;
VIR_DEBUG("Added new handle source=%p", data->source);
} else {
if (data->source == NULL)
goto cleanup;
VIR_DEBUG("Removed old handle source=%p", data->source);
g_source_destroy(data->source);
g_clear_pointer(&data->source, g_source_destroy);
data->events = 0;
}
cleanup:
g_mutex_unlock(eventlock);
}
static gboolean
virEventGLibHandleRemoveIdle(gpointer data)
{
struct virEventGLibHandle *h = data;
PROBE(EVENT_GLIB_REMOVE_HANDLE_IDLE,
"watch=%d ff=%p opaque=%p",
h->watch, h->ff, h->opaque);
if (h->ff)
(h->ff)(h->opaque);
g_mutex_lock(eventlock);
g_ptr_array_remove_fast(handles, h);
g_mutex_unlock(eventlock);
return FALSE;
}
static int
virEventGLibHandleRemove(int watch)
{
struct virEventGLibHandle *data;
int ret = -1;
PROBE(EVENT_GLIB_REMOVE_HANDLE,
"watch=%d",
watch);
g_mutex_lock(eventlock);
data = virEventGLibHandleFind(watch);
if (!data) {
VIR_DEBUG("Remove of missing handle watch=%d", watch);
goto cleanup;
}
VIR_DEBUG("Remove handle data=%p watch=%d fd=%d",
data, watch, data->fd);
if (data->source != NULL) {
vir_g_source_unref(data->source, NULL);
g_clear_pointer(&data->source, g_source_destroy);
data->events = 0;
}
/* since the actual watch deletion is done asynchronously, a handleUpdate call may
* reschedule the watch before it's fully deleted, that's why we need to mark it as
* 'removed' to prevent reuse
*/
data->removed = TRUE;
vireventglib: Remove handles with the highest priority When a server decides to close a client, the virNetServerClientCloseLocked() is called. In here various cleanup steps are taken, but the most important part (from this commit's POV at least) is the way that the socket is closed. Firstly, removal of the socket associated with the client from the event loop is signalized and then the socket is unrefed. The socket is not closed just yet though, because the event loop holds a reference to it. This reference will be freed as soon as the event loop wakes up and starts issuing callbacks (in this case virNetSocketEventFree()). So far, this is how things usually work. But if the daemon reaches the number of opened files limit, things start to work differently. If the RLIMIT_NOFILE limit is reached and there's a client that wants to connect then the event loop wakes up, sees POLLIN on the socket and calls virNetServerServiceAccept() which in turn calls virNetSocketAccept(). But because of the limit, accept() fails with EMFILE leaving the POLLIN event unhandled. The dispatch then continues to next FDs with events on them. BUT, it will NOT call the socket removal callback (virNetSocketEventFree()) because it has low priority (G_PRIORITY_DEFAULT_IDLE). Per glib's documentation: * Each event source is assigned a priority. The default priority, * %G_PRIORITY_DEFAULT, is 0. Values less than 0 denote higher priorities. * Values greater than 0 denote lower priorities. Events from high priority * sources are always processed before events from lower priority sources. and per g_idle_add() documentation: * Adds a function to be called whenever there are no higher priority * events pending to the default main loop. The function is given the * default idle priority, %G_PRIORITY_DEFAULT_IDLE. Now, because we did not accept() the client we are constantly seeing POLLIN on the main socket and thus the removal of the client socket won't ever happen. The fix is to set at least the same priority as other sources, but since we want to just close an FD, let's give it the highest priority and call it before handling other events. This issue can be easily reproduced, for instance: # ulimit -S -n 40 (tweak this number if needed) # ./src/libvirtd from another terminal: # for ((i=0; i<100; i++)); do virsh list & done; virsh list The last `virsh list` must not get stuck. Resolves: https://bugzilla.redhat.com/show_bug.cgi?id=2007168 Signed-off-by: Michal Privoznik <mprivozn@redhat.com> Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
2021-10-07 11:46:43 +00:00
g_idle_add_full(G_PRIORITY_HIGH, virEventGLibHandleRemoveIdle, data, NULL);
ret = 0;
cleanup:
g_mutex_unlock(eventlock);
return ret;
}
static gboolean
virEventGLibTimeoutDispatch(void *opaque)
{
struct virEventGLibTimeout *data = opaque;
VIR_DEBUG("Dispatch timeout data=%p cb=%p timer=%d opaque=%p",
data, data->cb, data->timer, data->opaque);
PROBE(EVENT_GLIB_DISPATCH_TIMEOUT,
"timer=%d cb=%p opaque=%p",
data->timer, data->cb, data->opaque);
(data->cb)(data->timer, data->opaque);
return TRUE;
}
static GSource *
virEventGLibTimeoutCreate(int interval,
struct virEventGLibTimeout *data)
{
GSource *source = g_timeout_source_new(interval);
g_source_set_callback(source,
virEventGLibTimeoutDispatch,
data, NULL);
g_source_attach(source, NULL);
return source;
}
static int
virEventGLibTimeoutAdd(int interval,
virEventTimeoutCallback cb,
void *opaque,
virFreeCallback ff)
{
struct virEventGLibTimeout *data;
int ret;
g_mutex_lock(eventlock);
data = g_new0(struct virEventGLibTimeout, 1);
data->timer = nexttimer++;
data->interval = interval;
data->cb = cb;
data->opaque = opaque;
data->ff = ff;
if (interval >= 0)
data->source = virEventGLibTimeoutCreate(interval, data);
g_ptr_array_add(timeouts, data);
VIR_DEBUG("Add timeout data=%p interval=%d ms cb=%p opaque=%p timer=%d",
data, interval, cb, opaque, data->timer);
ret = data->timer;
PROBE(EVENT_GLIB_ADD_TIMEOUT,
"timer=%d interval=%d cb=%p opaque=%p ff=%p",
ret, interval, cb, opaque, ff);
g_mutex_unlock(eventlock);
return ret;
}
static struct virEventGLibTimeout *
virEventGLibTimeoutFind(int timer)
{
guint i;
g_return_val_if_fail(timeouts != NULL, NULL);
for (i = 0; i < timeouts->len; i++) {
struct virEventGLibTimeout *t = g_ptr_array_index(timeouts, i);
if (t == NULL) {
g_warn_if_reached();
continue;
}
if ((t->timer == timer) && !t->removed)
return t;
}
return NULL;
}
static void
virEventGLibTimeoutUpdate(int timer,
int interval)
{
struct virEventGLibTimeout *data;
PROBE(EVENT_GLIB_UPDATE_TIMEOUT,
"timer=%d interval=%d",
timer, interval);
g_mutex_lock(eventlock);
data = virEventGLibTimeoutFind(timer);
if (!data) {
VIR_DEBUG("Update of missing timeout timer=%d", timer);
goto cleanup;
}
VIR_DEBUG("Update timeout data=%p timer=%d interval=%d ms", data, timer, interval);
if (interval >= 0) {
if (data->source != NULL) {
g_source_destroy(data->source);
vir_g_source_unref(data->source, NULL);
}
data->interval = interval;
data->source = virEventGLibTimeoutCreate(interval, data);
} else {
if (data->source == NULL)
goto cleanup;
vir_g_source_unref(data->source, NULL);
g_clear_pointer(&data->source, g_source_destroy);
}
cleanup:
g_mutex_unlock(eventlock);
}
static gboolean
virEventGLibTimeoutRemoveIdle(gpointer data)
{
struct virEventGLibTimeout *t = data;
PROBE(EVENT_GLIB_REMOVE_TIMEOUT_IDLE,
"timer=%d ff=%p opaque=%p",
t->timer, t->ff, t->opaque);
if (t->ff)
(t->ff)(t->opaque);
g_mutex_lock(eventlock);
g_ptr_array_remove_fast(timeouts, t);
g_mutex_unlock(eventlock);
return FALSE;
}
static int
virEventGLibTimeoutRemove(int timer)
{
struct virEventGLibTimeout *data;
int ret = -1;
PROBE(EVENT_GLIB_REMOVE_TIMEOUT,
"timer=%d",
timer);
g_mutex_lock(eventlock);
data = virEventGLibTimeoutFind(timer);
if (!data) {
VIR_DEBUG("Remove of missing timeout timer=%d", timer);
goto cleanup;
}
VIR_DEBUG("Remove timeout data=%p timer=%d",
data, timer);
if (data->source != NULL) {
vir_g_source_unref(data->source, NULL);
g_clear_pointer(&data->source, g_source_destroy);
}
/* since the actual timeout deletion is done asynchronously, a timeoutUpdate call may
* reschedule the timeout before it's fully deleted, that's why we need to mark it as
* 'removed' to prevent reuse
*/
data->removed = TRUE;
g_idle_add(virEventGLibTimeoutRemoveIdle, data);
ret = 0;
cleanup:
g_mutex_unlock(eventlock);
return ret;
}
static gpointer virEventGLibRegisterOnce(gpointer data G_GNUC_UNUSED)
{
eventlock = g_new0(GMutex, 1);
timeouts = g_ptr_array_new_with_free_func(g_free);
handles = g_ptr_array_new_with_free_func(g_free);
virEventRegisterImpl(virEventGLibHandleAdd,
virEventGLibHandleUpdate,
virEventGLibHandleRemove,
virEventGLibTimeoutAdd,
virEventGLibTimeoutUpdate,
virEventGLibTimeoutRemove);
return NULL;
}
void virEventGLibRegister(void)
{
static GOnce once = G_ONCE_INIT;
g_once(&once, virEventGLibRegisterOnce, NULL);
}
int virEventGLibRunOnce(void)
{
g_main_context_iteration(NULL, TRUE);
return 0;
}