2
0
mirror of https://github.com/openvswitch/ovs synced 2025-10-29 15:28:56 +00:00

fatal-signal: Make thread-safe.

Signed-off-by: Ben Pfaff <blp@nicira.com>
This commit is contained in:
Ben Pfaff
2013-05-09 10:54:04 -07:00
parent 8fb88e772f
commit b847adc620
4 changed files with 60 additions and 10 deletions

View File

@@ -23,6 +23,7 @@
#include <stdlib.h> #include <stdlib.h>
#include <string.h> #include <string.h>
#include <unistd.h> #include <unistd.h>
#include "ovs-thread.h"
#include "poll-loop.h" #include "poll-loop.h"
#include "shash.h" #include "shash.h"
#include "sset.h" #include "sset.h"
@@ -56,20 +57,32 @@ static size_t n_hooks;
static int signal_fds[2]; static int signal_fds[2];
static volatile sig_atomic_t stored_sig_nr = SIG_ATOMIC_MAX; static volatile sig_atomic_t stored_sig_nr = SIG_ATOMIC_MAX;
static void fatal_signal_init(void); static pthread_mutex_t mutex;
static void atexit_handler(void); static void atexit_handler(void);
static void call_hooks(int sig_nr); static void call_hooks(int sig_nr);
static void /* Initializes the fatal signal handling module. Calling this function is
* optional, because calling any other function in the module will also
* initialize it. However, in a multithreaded program, the module must be
* initialized while the process is still single-threaded. */
void
fatal_signal_init(void) fatal_signal_init(void)
{ {
static bool inited = false; static bool inited = false;
if (!inited) { if (!inited) {
pthread_mutexattr_t attr;
size_t i; size_t i;
assert_single_threaded();
inited = true; inited = true;
xpthread_mutexattr_init(&attr);
xpthread_mutexattr_settype(&attr, PTHREAD_MUTEX_RECURSIVE);
xpthread_mutex_init(&mutex, &attr);
xpthread_mutexattr_destroy(&attr);
xpipe_nonblocking(signal_fds); xpipe_nonblocking(signal_fds);
for (i = 0; i < ARRAY_SIZE(fatal_signals); i++) { for (i = 0; i < ARRAY_SIZE(fatal_signals); i++) {
@@ -86,13 +99,13 @@ fatal_signal_init(void)
} }
} }
/* Registers 'hook_cb' to be called when a process termination signal is /* Registers 'hook_cb' to be called from inside poll_block() following a fatal
* raised. If 'run_at_exit' is true, 'hook_cb' is also called during normal * signal. 'hook_cb' does not need to be async-signal-safe. In a
* process termination, e.g. when exit() is called or when main() returns. * multithreaded program 'hook_cb' might be called from any thread, with
* threads other than the one running 'hook_cb' in unknown states.
* *
* 'hook_cb' is not called immediately from the signal handler but rather the * If 'run_at_exit' is true, 'hook_cb' is also called during normal process
* next time the poll loop iterates, so it is freed from the usual restrictions * termination, e.g. when exit() is called or when main() returns.
* on signal handler functions.
* *
* If the current process forks, fatal_signal_fork() may be called to clear the * If the current process forks, fatal_signal_fork() may be called to clear the
* parent process's fatal signal hooks, so that 'hook_cb' is only called when * parent process's fatal signal hooks, so that 'hook_cb' is only called when
@@ -106,12 +119,14 @@ fatal_signal_add_hook(void (*hook_cb)(void *aux), void (*cancel_cb)(void *aux),
{ {
fatal_signal_init(); fatal_signal_init();
xpthread_mutex_lock(&mutex);
ovs_assert(n_hooks < MAX_HOOKS); ovs_assert(n_hooks < MAX_HOOKS);
hooks[n_hooks].hook_cb = hook_cb; hooks[n_hooks].hook_cb = hook_cb;
hooks[n_hooks].cancel_cb = cancel_cb; hooks[n_hooks].cancel_cb = cancel_cb;
hooks[n_hooks].aux = aux; hooks[n_hooks].aux = aux;
hooks[n_hooks].run_at_exit = run_at_exit; hooks[n_hooks].run_at_exit = run_at_exit;
n_hooks++; n_hooks++;
xpthread_mutex_unlock(&mutex);
} }
/* Handles fatal signal number 'sig_nr'. /* Handles fatal signal number 'sig_nr'.
@@ -152,6 +167,8 @@ fatal_signal_run(void)
if (sig_nr != SIG_ATOMIC_MAX) { if (sig_nr != SIG_ATOMIC_MAX) {
char namebuf[SIGNAL_NAME_BUFSIZE]; char namebuf[SIGNAL_NAME_BUFSIZE];
xpthread_mutex_lock(&mutex);
VLOG_WARN("terminating with signal %d (%s)", VLOG_WARN("terminating with signal %d (%s)",
(int)sig_nr, signal_name(sig_nr, namebuf, sizeof namebuf)); (int)sig_nr, signal_name(sig_nr, namebuf, sizeof namebuf));
call_hooks(sig_nr); call_hooks(sig_nr);
@@ -160,6 +177,9 @@ fatal_signal_run(void)
* termination status reflects that we were killed by this signal */ * termination status reflects that we were killed by this signal */
signal(sig_nr, SIG_DFL); signal(sig_nr, SIG_DFL);
raise(sig_nr); raise(sig_nr);
xpthread_mutex_unlock(&mutex);
NOT_REACHED();
} }
} }
@@ -210,12 +230,16 @@ static void do_unlink_files(void);
void void
fatal_signal_add_file_to_unlink(const char *file) fatal_signal_add_file_to_unlink(const char *file)
{ {
fatal_signal_init();
xpthread_mutex_lock(&mutex);
if (!added_hook) { if (!added_hook) {
added_hook = true; added_hook = true;
fatal_signal_add_hook(unlink_files, cancel_files, NULL, true); fatal_signal_add_hook(unlink_files, cancel_files, NULL, true);
} }
sset_add(&files, file); sset_add(&files, file);
xpthread_mutex_unlock(&mutex);
} }
/* Unregisters 'file' from being unlinked when the program terminates via /* Unregisters 'file' from being unlinked when the program terminates via
@@ -223,7 +247,11 @@ fatal_signal_add_file_to_unlink(const char *file)
void void
fatal_signal_remove_file_to_unlink(const char *file) fatal_signal_remove_file_to_unlink(const char *file)
{ {
fatal_signal_init();
xpthread_mutex_lock(&mutex);
sset_find_and_delete(&files, file); sset_find_and_delete(&files, file);
xpthread_mutex_unlock(&mutex);
} }
/* Like fatal_signal_remove_file_to_unlink(), but also unlinks 'file'. /* Like fatal_signal_remove_file_to_unlink(), but also unlinks 'file'.
@@ -231,13 +259,21 @@ fatal_signal_remove_file_to_unlink(const char *file)
int int
fatal_signal_unlink_file_now(const char *file) fatal_signal_unlink_file_now(const char *file)
{ {
int error = unlink(file) ? errno : 0; int error;
fatal_signal_init();
xpthread_mutex_lock(&mutex);
error = unlink(file) ? errno : 0;
if (error) { if (error) {
VLOG_WARN("could not unlink \"%s\" (%s)", file, ovs_strerror(error)); VLOG_WARN("could not unlink \"%s\" (%s)", file, ovs_strerror(error));
} }
fatal_signal_remove_file_to_unlink(file); fatal_signal_remove_file_to_unlink(file);
xpthread_mutex_unlock(&mutex);
return error; return error;
} }
@@ -277,6 +313,8 @@ fatal_signal_fork(void)
{ {
size_t i; size_t i;
assert_single_threaded();
for (i = 0; i < n_hooks; i++) { for (i = 0; i < n_hooks; i++) {
struct hook *h = &hooks[i]; struct hook *h = &hooks[i];
if (h->cancel_cb) { if (h->cancel_cb) {

View File

@@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2008, 2009, 2010 Nicira, Inc. * Copyright (c) 2008, 2009, 2010, 2013 Nicira, Inc.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
@@ -20,6 +20,7 @@
#include <stdbool.h> #include <stdbool.h>
/* Basic interface. */ /* Basic interface. */
void fatal_signal_init(void);
void fatal_signal_add_hook(void (*hook_cb)(void *aux), void fatal_signal_add_hook(void (*hook_cb)(void *aux),
void (*cancel_cb)(void *aux), void *aux, void (*cancel_cb)(void *aux), void *aux,
bool run_at_exit); bool run_at_exit);

View File

@@ -77,6 +77,11 @@ XPTHREAD_FUNC1(pthread_mutex_lock, pthread_mutex_t *);
XPTHREAD_FUNC1(pthread_mutex_unlock, pthread_mutex_t *); XPTHREAD_FUNC1(pthread_mutex_unlock, pthread_mutex_t *);
XPTHREAD_TRY_FUNC1(pthread_mutex_trylock, pthread_mutex_t *); XPTHREAD_TRY_FUNC1(pthread_mutex_trylock, pthread_mutex_t *);
XPTHREAD_FUNC1(pthread_mutexattr_init, pthread_mutexattr_t *);
XPTHREAD_FUNC1(pthread_mutexattr_destroy, pthread_mutexattr_t *);
XPTHREAD_FUNC2(pthread_mutexattr_settype, pthread_mutexattr_t *, int);
XPTHREAD_FUNC2(pthread_mutexattr_gettype, pthread_mutexattr_t *, int *);
XPTHREAD_FUNC2(pthread_rwlock_init, XPTHREAD_FUNC2(pthread_rwlock_init,
pthread_rwlock_t *, pthread_rwlockattr_t *); pthread_rwlock_t *, pthread_rwlockattr_t *);
XPTHREAD_FUNC1(pthread_rwlock_rdlock, pthread_rwlock_t *); XPTHREAD_FUNC1(pthread_rwlock_rdlock, pthread_rwlock_t *);

View File

@@ -56,11 +56,17 @@
* process with an error message on any error. The *_trylock() functions are * process with an error message on any error. The *_trylock() functions are
* exceptions: they pass through a 0 or EBUSY return value to the caller and * exceptions: they pass through a 0 or EBUSY return value to the caller and
* abort on any other error. */ * abort on any other error. */
void xpthread_mutex_init(pthread_mutex_t *, pthread_mutexattr_t *); void xpthread_mutex_init(pthread_mutex_t *, pthread_mutexattr_t *);
void xpthread_mutex_lock(pthread_mutex_t *mutex) OVS_ACQUIRES(mutex); void xpthread_mutex_lock(pthread_mutex_t *mutex) OVS_ACQUIRES(mutex);
void xpthread_mutex_unlock(pthread_mutex_t *mutex) OVS_RELEASES(mutex); void xpthread_mutex_unlock(pthread_mutex_t *mutex) OVS_RELEASES(mutex);
int xpthread_mutex_trylock(pthread_mutex_t *); int xpthread_mutex_trylock(pthread_mutex_t *);
void xpthread_mutexattr_init(pthread_mutexattr_t *);
void xpthread_mutexattr_destroy(pthread_mutexattr_t *);
void xpthread_mutexattr_settype(pthread_mutexattr_t *, int type);
void xpthread_mutexattr_gettype(pthread_mutexattr_t *, int *typep);
void xpthread_rwlock_init(pthread_rwlock_t *, pthread_rwlockattr_t *); void xpthread_rwlock_init(pthread_rwlock_t *, pthread_rwlockattr_t *);
void xpthread_rwlock_rdlock(pthread_rwlock_t *rwlock) OVS_ACQUIRES(rwlock); void xpthread_rwlock_rdlock(pthread_rwlock_t *rwlock) OVS_ACQUIRES(rwlock);
void xpthread_rwlock_wrlock(pthread_rwlock_t *rwlock) OVS_ACQUIRES(rwlock); void xpthread_rwlock_wrlock(pthread_rwlock_t *rwlock) OVS_ACQUIRES(rwlock);