2013-06-24 11:05:10 -07:00
|
|
|
|
/*
|
2014-01-14 14:35:48 -08:00
|
|
|
|
* Copyright (c) 2013, 2014 Nicira, Inc.
|
2013-06-24 11:05:10 -07:00
|
|
|
|
*
|
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
|
* You may obtain a copy of the License at:
|
|
|
|
|
*
|
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
*
|
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
|
* limitations under the License.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef OVS_THREAD_H
|
|
|
|
|
#define OVS_THREAD_H 1
|
|
|
|
|
|
|
|
|
|
#include <pthread.h>
|
2013-06-19 13:07:35 -07:00
|
|
|
|
#include <stddef.h>
|
|
|
|
|
#include <sys/types.h>
|
2013-06-19 11:21:47 -07:00
|
|
|
|
#include "ovs-atomic.h"
|
2021-09-08 11:47:25 +02:00
|
|
|
|
#include "ovs-rcu.h"
|
2014-12-15 14:10:38 +01:00
|
|
|
|
#include "openvswitch/thread.h"
|
2013-06-24 11:05:10 -07:00
|
|
|
|
#include "util.h"
|
|
|
|
|
|
2014-05-29 15:37:37 -07:00
|
|
|
|
struct seq;
|
2013-07-30 15:31:48 -07:00
|
|
|
|
|
2014-05-29 15:37:37 -07:00
|
|
|
|
/* Poll-block()-able barrier similar to pthread_barrier_t. */
|
2021-09-08 11:47:25 +02:00
|
|
|
|
struct ovs_barrier_impl;
|
2014-05-29 15:37:37 -07:00
|
|
|
|
struct ovs_barrier {
|
2021-09-08 11:47:25 +02:00
|
|
|
|
OVSRCU_TYPE(struct ovs_barrier_impl *) impl;
|
2014-05-29 15:37:37 -07:00
|
|
|
|
};
|
|
|
|
|
|
2013-07-30 15:31:48 -07:00
|
|
|
|
/* Wrappers for pthread_mutexattr_*() that abort the process on any error. */
|
2013-05-09 10:54:04 -07:00
|
|
|
|
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);
|
|
|
|
|
|
2014-02-21 10:53:49 -08:00
|
|
|
|
/* Read-write lock.
|
|
|
|
|
*
|
|
|
|
|
* An ovs_rwlock does not support recursive readers, because POSIX allows
|
|
|
|
|
* taking the reader lock recursively to deadlock when a thread is waiting on
|
|
|
|
|
* the write-lock. (NetBSD does deadlock.) glibc rwlocks in their default
|
|
|
|
|
* configuration do not deadlock, but ovs_rwlock_init() initializes rwlocks as
|
|
|
|
|
* non-recursive (which will deadlock) for two reasons:
|
|
|
|
|
*
|
|
|
|
|
* - glibc only provides fairness to writers in this mode.
|
|
|
|
|
*
|
|
|
|
|
* - It's better to find bugs in the primary Open vSwitch target rather
|
|
|
|
|
* than exposing them only to porters. */
|
2013-07-30 15:31:48 -07:00
|
|
|
|
struct OVS_LOCKABLE ovs_rwlock {
|
|
|
|
|
pthread_rwlock_t lock;
|
2014-04-24 16:49:05 -07:00
|
|
|
|
const char *where; /* NULL if and only if uninitialized. */
|
2013-07-30 15:31:48 -07:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/* Initializer. */
|
2014-02-21 10:53:49 -08:00
|
|
|
|
#ifdef PTHREAD_RWLOCK_WRITER_NONRECURSIVE_INITIALIZER_NP
|
|
|
|
|
#define OVS_RWLOCK_INITIALIZER \
|
2014-04-24 16:49:05 -07:00
|
|
|
|
{ PTHREAD_RWLOCK_WRITER_NONRECURSIVE_INITIALIZER_NP, "<unlocked>" }
|
2014-02-21 10:53:49 -08:00
|
|
|
|
#else
|
2014-04-24 16:49:05 -07:00
|
|
|
|
#define OVS_RWLOCK_INITIALIZER { PTHREAD_RWLOCK_INITIALIZER, "<unlocked>" }
|
2014-02-21 10:53:49 -08:00
|
|
|
|
#endif
|
2013-07-30 15:31:48 -07:00
|
|
|
|
|
|
|
|
|
/* ovs_rwlock functions analogous to pthread_rwlock_*() functions.
|
|
|
|
|
*
|
|
|
|
|
* Most of these functions abort the process with an error message on any
|
|
|
|
|
* error. The "trylock" functions are exception: they pass through a 0 or
|
|
|
|
|
* EBUSY return value to the caller and abort on any other error. */
|
|
|
|
|
void ovs_rwlock_init(const struct ovs_rwlock *);
|
|
|
|
|
void ovs_rwlock_destroy(const struct ovs_rwlock *);
|
|
|
|
|
void ovs_rwlock_unlock(const struct ovs_rwlock *rwlock) OVS_RELEASES(rwlock);
|
|
|
|
|
|
2014-02-21 10:53:49 -08:00
|
|
|
|
/* Wrappers for pthread_rwlockattr_*() that abort the process on any error. */
|
|
|
|
|
void xpthread_rwlockattr_init(pthread_rwlockattr_t *);
|
|
|
|
|
void xpthread_rwlockattr_destroy(pthread_rwlockattr_t *);
|
|
|
|
|
#ifdef PTHREAD_RWLOCK_WRITER_NONRECURSIVE_INITIALIZER_NP
|
|
|
|
|
void xpthread_rwlockattr_setkind_np(pthread_rwlockattr_t *, int kind);
|
|
|
|
|
#endif
|
|
|
|
|
|
2013-07-30 15:31:48 -07:00
|
|
|
|
void ovs_rwlock_wrlock_at(const struct ovs_rwlock *rwlock, const char *where)
|
|
|
|
|
OVS_ACQ_WRLOCK(rwlock);
|
|
|
|
|
#define ovs_rwlock_wrlock(rwlock) \
|
2014-12-15 14:10:38 +01:00
|
|
|
|
ovs_rwlock_wrlock_at(rwlock, OVS_SOURCE_LOCATOR)
|
2013-06-24 11:05:10 -07:00
|
|
|
|
|
2013-07-30 15:31:48 -07:00
|
|
|
|
int ovs_rwlock_trywrlock_at(const struct ovs_rwlock *rwlock, const char *where)
|
|
|
|
|
OVS_TRY_WRLOCK(0, rwlock);
|
|
|
|
|
#define ovs_rwlock_trywrlock(rwlock) \
|
2014-12-15 14:10:38 +01:00
|
|
|
|
ovs_rwlock_trywrlock_at(rwlock, OVS_SOURCE_LOCATOR)
|
2013-07-30 15:31:48 -07:00
|
|
|
|
|
|
|
|
|
void ovs_rwlock_rdlock_at(const struct ovs_rwlock *rwlock, const char *where)
|
|
|
|
|
OVS_ACQ_RDLOCK(rwlock);
|
|
|
|
|
#define ovs_rwlock_rdlock(rwlock) \
|
2014-12-15 14:10:38 +01:00
|
|
|
|
ovs_rwlock_rdlock_at(rwlock, OVS_SOURCE_LOCATOR)
|
2013-07-30 15:31:48 -07:00
|
|
|
|
|
|
|
|
|
int ovs_rwlock_tryrdlock_at(const struct ovs_rwlock *rwlock, const char *where)
|
|
|
|
|
OVS_TRY_RDLOCK(0, rwlock);
|
|
|
|
|
#define ovs_rwlock_tryrdlock(rwlock) \
|
2014-12-15 14:10:38 +01:00
|
|
|
|
ovs_rwlock_tryrdlock_at(rwlock, OVS_SOURCE_LOCATOR)
|
2013-07-30 15:31:48 -07:00
|
|
|
|
|
2014-05-29 15:37:37 -07:00
|
|
|
|
/* ovs_barrier functions analogous to pthread_barrier_*() functions. */
|
|
|
|
|
void ovs_barrier_init(struct ovs_barrier *, uint32_t count);
|
|
|
|
|
void ovs_barrier_destroy(struct ovs_barrier *);
|
|
|
|
|
void ovs_barrier_block(struct ovs_barrier *);
|
|
|
|
|
|
2013-07-30 15:31:48 -07:00
|
|
|
|
/* Wrappers for xpthread_cond_*() that abort the process on any error.
|
|
|
|
|
*
|
|
|
|
|
* Use ovs_mutex_cond_wait() to wait for a condition. */
|
2013-06-24 11:05:10 -07:00
|
|
|
|
void xpthread_cond_init(pthread_cond_t *, pthread_condattr_t *);
|
2013-07-22 15:24:36 -07:00
|
|
|
|
void xpthread_cond_destroy(pthread_cond_t *);
|
2013-06-24 11:05:10 -07:00
|
|
|
|
void xpthread_cond_signal(pthread_cond_t *);
|
|
|
|
|
void xpthread_cond_broadcast(pthread_cond_t *);
|
|
|
|
|
|
|
|
|
|
void xpthread_key_create(pthread_key_t *, void (*destructor)(void *));
|
2014-01-14 14:35:48 -08:00
|
|
|
|
void xpthread_key_delete(pthread_key_t);
|
2013-08-06 14:30:01 -07:00
|
|
|
|
void xpthread_setspecific(pthread_key_t, const void *);
|
2013-06-24 11:05:10 -07:00
|
|
|
|
|
2014-05-23 14:15:28 -07:00
|
|
|
|
#ifndef _WIN32
|
|
|
|
|
void xpthread_sigmask(int, const sigset_t *, sigset_t *);
|
|
|
|
|
#endif
|
|
|
|
|
|
ovs-thread: Make caller provide thread name when creating a thread.
Thread names are occasionally very useful for debugging, but from time to
time we've forgotten to set one. This commit adds the new thread's name
as a parameter to the function to start a thread, to make that mistake
impossible. This also simplifies code, since two function calls become
only one.
This makes a few other changes to the thread creation function:
* Since it is no longer a direct wrapper around a pthread function,
rename it to avoid giving that impression.
* Remove 'pthread_attr_t *' param that every caller supplied as NULL.
* Change 'pthread *' parameter into a return value, for convenience.
The system-stats code hadn't set a thread name, so this fixes that issue.
This patch is a prerequisite for making RCU report the name of a thread
that is blocking RCU synchronization, because the easiest way to do that is
for ovsrcu_quiesce_end() to record the current thread's name.
ovsrcu_quiesce_end() is called before the thread function is called, so it
won't get a name set within the thread function itself. Setting the thread
name earlier, as in this patch, avoids the problem.
Signed-off-by: Ben Pfaff <blp@nicira.com>
Acked-by: Alex Wang <alexw@nicira.com>
2014-04-25 17:46:21 -07:00
|
|
|
|
pthread_t ovs_thread_create(const char *name, void *(*)(void *), void *);
|
2013-08-06 16:47:43 -07:00
|
|
|
|
void xpthread_join(pthread_t, void **);
|
2013-06-25 13:50:26 -07:00
|
|
|
|
|
|
|
|
|
/* Per-thread data.
|
|
|
|
|
*
|
2014-01-14 14:35:48 -08:00
|
|
|
|
*
|
|
|
|
|
* Standard Forms
|
|
|
|
|
* ==============
|
|
|
|
|
*
|
|
|
|
|
* Multiple forms of standard per-thread data exist, each with its own pluses
|
|
|
|
|
* and minuses. In general, if one of these forms is appropriate, then it's a
|
|
|
|
|
* good idea to use it:
|
2013-06-25 13:50:26 -07:00
|
|
|
|
*
|
|
|
|
|
* - POSIX per-thread data via pthread_key_t is portable to any pthreads
|
|
|
|
|
* implementation, and allows a destructor function to be defined. It
|
|
|
|
|
* only (directly) supports per-thread pointers, which are always
|
|
|
|
|
* initialized to NULL. It requires once-only allocation of a
|
2014-01-14 14:35:48 -08:00
|
|
|
|
* pthread_key_t value. It is relatively slow. Typically few
|
|
|
|
|
* "pthread_key_t"s are available (POSIX requires only at least 128,
|
|
|
|
|
* glibc supplies only 1024).
|
2013-06-25 13:50:26 -07:00
|
|
|
|
*
|
|
|
|
|
* - The thread_local feature newly defined in C11 <threads.h> works with
|
|
|
|
|
* any data type and initializer, and it is fast. thread_local does not
|
|
|
|
|
* require once-only initialization like pthread_key_t. C11 does not
|
|
|
|
|
* define what happens if one attempts to access a thread_local object
|
|
|
|
|
* from a thread other than the one to which that object belongs. There
|
|
|
|
|
* is no provision to call a user-specified destructor when a thread
|
2014-01-14 14:35:48 -08:00
|
|
|
|
* ends. Typical implementations allow for an arbitrary amount of
|
|
|
|
|
* thread_local storage, but statically allocated only.
|
2013-06-25 13:50:26 -07:00
|
|
|
|
*
|
|
|
|
|
* - The __thread keyword is a GCC extension similar to thread_local but
|
|
|
|
|
* with a longer history. __thread is not portable to every GCC version
|
|
|
|
|
* or environment. __thread does not restrict the use of a thread-local
|
|
|
|
|
* object outside its own thread.
|
|
|
|
|
*
|
|
|
|
|
* Here's a handy summary:
|
|
|
|
|
*
|
|
|
|
|
* pthread_key_t thread_local __thread
|
|
|
|
|
* ------------- ------------ -------------
|
|
|
|
|
* portability high low medium
|
|
|
|
|
* speed low high high
|
|
|
|
|
* supports destructors? yes no no
|
|
|
|
|
* needs key allocation? yes no no
|
|
|
|
|
* arbitrary initializer? no yes yes
|
|
|
|
|
* cross-thread access? yes no yes
|
2014-01-14 14:35:48 -08:00
|
|
|
|
* amount available? few arbitrary arbitrary
|
|
|
|
|
* dynamically allocated? yes no no
|
|
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
* Extensions
|
|
|
|
|
* ==========
|
|
|
|
|
*
|
|
|
|
|
* OVS provides some extensions and wrappers:
|
|
|
|
|
*
|
|
|
|
|
* - In a situation where the performance of thread_local or __thread is
|
|
|
|
|
* desirable, but portability is required, DEFINE_STATIC_PER_THREAD_DATA
|
|
|
|
|
* and DECLARE_EXTERN_PER_THREAD_DATA/DEFINE_EXTERN_PER_THREAD_DATA may
|
|
|
|
|
* be appropriate (see below).
|
|
|
|
|
*
|
|
|
|
|
* - DEFINE_PER_THREAD_MALLOCED_DATA can be convenient for simple
|
|
|
|
|
* per-thread malloc()'d buffers.
|
|
|
|
|
*
|
|
|
|
|
* - struct ovs_tsd provides an alternative to pthread_key_t that isn't
|
|
|
|
|
* limited to a small number of keys.
|
2013-06-25 13:50:26 -07:00
|
|
|
|
*/
|
|
|
|
|
|
2013-08-06 14:40:25 -07:00
|
|
|
|
/* For static data, use this macro in a source file:
|
|
|
|
|
*
|
|
|
|
|
* DEFINE_STATIC_PER_THREAD_DATA(TYPE, NAME, INITIALIZER).
|
|
|
|
|
*
|
|
|
|
|
* For global data, "declare" the data in the header and "define" it in
|
|
|
|
|
* the source file, with:
|
|
|
|
|
*
|
|
|
|
|
* DECLARE_EXTERN_PER_THREAD_DATA(TYPE, NAME).
|
|
|
|
|
* DEFINE_EXTERN_PER_THREAD_DATA(NAME, INITIALIZER).
|
2013-06-25 13:50:26 -07:00
|
|
|
|
*
|
|
|
|
|
* One should prefer to use POSIX per-thread data, via pthread_key_t, when its
|
|
|
|
|
* performance is acceptable, because of its portability (see the table above).
|
|
|
|
|
* This macro is an alternatives that takes advantage of thread_local (and
|
|
|
|
|
* __thread), for its performance, when it is available, and falls back to
|
|
|
|
|
* POSIX per-thread data otherwise.
|
|
|
|
|
*
|
|
|
|
|
* Defines per-thread variable NAME with the given TYPE, initialized to
|
|
|
|
|
* INITIALIZER (which must be valid as an initializer for a variable with
|
|
|
|
|
* static lifetime).
|
|
|
|
|
*
|
|
|
|
|
* The public interface to the variable is:
|
|
|
|
|
*
|
|
|
|
|
* TYPE *NAME_get(void)
|
|
|
|
|
* TYPE *NAME_get_unsafe(void)
|
|
|
|
|
*
|
|
|
|
|
* Returns the address of this thread's instance of NAME.
|
|
|
|
|
*
|
|
|
|
|
* Use NAME_get() in a context where this might be the first use of the
|
|
|
|
|
* per-thread variable in the program. Use NAME_get_unsafe(), which
|
|
|
|
|
* avoids a conditional test and is thus slightly faster, in a context
|
|
|
|
|
* where one knows that NAME_get() has already been called previously.
|
|
|
|
|
*
|
|
|
|
|
* There is no "NAME_set()" (or "NAME_set_unsafe()") function. To set the
|
|
|
|
|
* value of the per-thread variable, dereference the pointer returned by
|
|
|
|
|
* TYPE_get() or TYPE_get_unsafe(), e.g. *TYPE_get() = 0.
|
|
|
|
|
*/
|
|
|
|
|
#if HAVE_THREAD_LOCAL || HAVE___THREAD
|
|
|
|
|
|
|
|
|
|
#if HAVE_THREAD_LOCAL
|
|
|
|
|
#include <threads.h>
|
|
|
|
|
#elif HAVE___THREAD
|
|
|
|
|
#define thread_local __thread
|
|
|
|
|
#else
|
|
|
|
|
#error
|
|
|
|
|
#endif
|
|
|
|
|
|
2013-08-06 14:40:25 -07:00
|
|
|
|
#define DEFINE_STATIC_PER_THREAD_DATA(TYPE, NAME, ...) \
|
|
|
|
|
typedef TYPE NAME##_type; \
|
|
|
|
|
\
|
|
|
|
|
static NAME##_type * \
|
|
|
|
|
NAME##_get_unsafe(void) \
|
|
|
|
|
{ \
|
|
|
|
|
static thread_local NAME##_type var = __VA_ARGS__; \
|
|
|
|
|
return &var; \
|
|
|
|
|
} \
|
|
|
|
|
\
|
|
|
|
|
static NAME##_type * \
|
|
|
|
|
NAME##_get(void) \
|
|
|
|
|
{ \
|
|
|
|
|
return NAME##_get_unsafe(); \
|
2013-06-25 13:50:26 -07:00
|
|
|
|
}
|
2013-08-06 14:40:25 -07:00
|
|
|
|
#define DECLARE_EXTERN_PER_THREAD_DATA(TYPE, NAME) \
|
|
|
|
|
typedef TYPE NAME##_type; \
|
|
|
|
|
extern thread_local NAME##_type NAME##_var; \
|
|
|
|
|
\
|
|
|
|
|
static inline NAME##_type * \
|
|
|
|
|
NAME##_get_unsafe(void) \
|
|
|
|
|
{ \
|
2017-12-15 16:58:57 -08:00
|
|
|
|
return (NAME##_type *)&NAME##_var; \
|
2013-08-06 14:40:25 -07:00
|
|
|
|
} \
|
|
|
|
|
\
|
|
|
|
|
static inline NAME##_type * \
|
|
|
|
|
NAME##_get(void) \
|
|
|
|
|
{ \
|
|
|
|
|
return NAME##_get_unsafe(); \
|
|
|
|
|
}
|
|
|
|
|
#define DEFINE_EXTERN_PER_THREAD_DATA(NAME, ...) \
|
|
|
|
|
thread_local NAME##_type NAME##_var = __VA_ARGS__;
|
2013-06-25 13:50:26 -07:00
|
|
|
|
#else /* no C implementation support for thread-local storage */
|
2013-08-06 14:40:25 -07:00
|
|
|
|
#define DEFINE_STATIC_PER_THREAD_DATA(TYPE, NAME, ...) \
|
2013-06-25 13:50:26 -07:00
|
|
|
|
typedef TYPE NAME##_type; \
|
|
|
|
|
static pthread_key_t NAME##_key; \
|
|
|
|
|
\
|
|
|
|
|
static NAME##_type * \
|
|
|
|
|
NAME##_get_unsafe(void) \
|
|
|
|
|
{ \
|
|
|
|
|
return pthread_getspecific(NAME##_key); \
|
|
|
|
|
} \
|
|
|
|
|
\
|
|
|
|
|
static void \
|
|
|
|
|
NAME##_once_init(void) \
|
|
|
|
|
{ \
|
|
|
|
|
if (pthread_key_create(&NAME##_key, free)) { \
|
|
|
|
|
abort(); \
|
|
|
|
|
} \
|
|
|
|
|
} \
|
|
|
|
|
\
|
|
|
|
|
static NAME##_type * \
|
|
|
|
|
NAME##_get(void) \
|
2013-08-06 14:40:25 -07:00
|
|
|
|
{ \
|
|
|
|
|
static pthread_once_t once = PTHREAD_ONCE_INIT; \
|
|
|
|
|
NAME##_type *value; \
|
|
|
|
|
\
|
|
|
|
|
pthread_once(&once, NAME##_once_init); \
|
|
|
|
|
value = NAME##_get_unsafe(); \
|
|
|
|
|
if (!value) { \
|
|
|
|
|
static const NAME##_type initial_value = __VA_ARGS__; \
|
|
|
|
|
\
|
2021-03-26 11:30:23 -07:00
|
|
|
|
value = xmalloc__(sizeof *value); \
|
2013-08-06 14:40:25 -07:00
|
|
|
|
*value = initial_value; \
|
|
|
|
|
xpthread_setspecific(NAME##_key, value); \
|
|
|
|
|
} \
|
|
|
|
|
return value; \
|
|
|
|
|
}
|
|
|
|
|
#define DECLARE_EXTERN_PER_THREAD_DATA(TYPE, NAME) \
|
|
|
|
|
typedef TYPE NAME##_type; \
|
|
|
|
|
static pthread_key_t NAME##_key; \
|
|
|
|
|
\
|
|
|
|
|
static inline NAME##_type * \
|
|
|
|
|
NAME##_get_unsafe(void) \
|
|
|
|
|
{ \
|
2017-12-15 16:58:57 -08:00
|
|
|
|
return (NAME##_type *)pthread_getspecific(NAME##_key); \
|
2013-08-06 14:40:25 -07:00
|
|
|
|
} \
|
|
|
|
|
\
|
|
|
|
|
NAME##_type *NAME##_get(void);
|
|
|
|
|
#define DEFINE_EXTERN_PER_THREAD_DATA(NAME, ...) \
|
|
|
|
|
static void \
|
|
|
|
|
NAME##_once_init(void) \
|
|
|
|
|
{ \
|
|
|
|
|
if (pthread_key_create(&NAME##_key, free)) { \
|
|
|
|
|
abort(); \
|
|
|
|
|
} \
|
|
|
|
|
} \
|
|
|
|
|
\
|
|
|
|
|
NAME##_type * \
|
|
|
|
|
NAME##_get(void) \
|
2013-06-25 13:50:26 -07:00
|
|
|
|
{ \
|
|
|
|
|
static pthread_once_t once = PTHREAD_ONCE_INIT; \
|
|
|
|
|
NAME##_type *value; \
|
|
|
|
|
\
|
|
|
|
|
pthread_once(&once, NAME##_once_init); \
|
|
|
|
|
value = NAME##_get_unsafe(); \
|
|
|
|
|
if (!value) { \
|
|
|
|
|
static const NAME##_type initial_value = __VA_ARGS__; \
|
|
|
|
|
\
|
2021-03-26 11:30:23 -07:00
|
|
|
|
value = xmalloc__(sizeof *value); \
|
2013-06-25 13:50:26 -07:00
|
|
|
|
*value = initial_value; \
|
2013-08-06 14:30:01 -07:00
|
|
|
|
xpthread_setspecific(NAME##_key, value); \
|
2013-06-25 13:50:26 -07:00
|
|
|
|
} \
|
|
|
|
|
return value; \
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
/* DEFINE_PER_THREAD_MALLOCED_DATA(TYPE, NAME).
|
|
|
|
|
*
|
|
|
|
|
* This is a simple wrapper around POSIX per-thread data primitives. It
|
|
|
|
|
* defines per-thread variable NAME with the given TYPE, which must be a
|
|
|
|
|
* pointer type. In each thread, the per-thread variable is initialized to
|
|
|
|
|
* NULL. When a thread terminates, the variable is freed with free().
|
|
|
|
|
*
|
|
|
|
|
* The public interface to the variable is:
|
|
|
|
|
*
|
|
|
|
|
* TYPE NAME_get(void)
|
|
|
|
|
* TYPE NAME_get_unsafe(void)
|
|
|
|
|
*
|
|
|
|
|
* Returns the value of per-thread variable NAME in this thread.
|
|
|
|
|
*
|
|
|
|
|
* Use NAME_get() in a context where this might be the first use of the
|
|
|
|
|
* per-thread variable in the program. Use NAME_get_unsafe(), which
|
|
|
|
|
* avoids a conditional test and is thus slightly faster, in a context
|
|
|
|
|
* where one knows that NAME_get() has already been called previously.
|
|
|
|
|
*
|
|
|
|
|
* TYPE NAME_set(TYPE new_value)
|
|
|
|
|
* TYPE NAME_set_unsafe(TYPE new_value)
|
|
|
|
|
*
|
|
|
|
|
* Sets the value of per-thread variable NAME to 'new_value' in this
|
|
|
|
|
* thread, and returns its previous value.
|
|
|
|
|
*
|
|
|
|
|
* Use NAME_set() in a context where this might be the first use of the
|
|
|
|
|
* per-thread variable in the program. Use NAME_set_unsafe(), which
|
|
|
|
|
* avoids a conditional test and is thus slightly faster, in a context
|
|
|
|
|
* where one knows that NAME_set() has already been called previously.
|
|
|
|
|
*/
|
|
|
|
|
#define DEFINE_PER_THREAD_MALLOCED_DATA(TYPE, NAME) \
|
|
|
|
|
static pthread_key_t NAME##_key; \
|
|
|
|
|
\
|
|
|
|
|
static void \
|
|
|
|
|
NAME##_once_init(void) \
|
|
|
|
|
{ \
|
|
|
|
|
if (pthread_key_create(&NAME##_key, free)) { \
|
|
|
|
|
abort(); \
|
|
|
|
|
} \
|
|
|
|
|
} \
|
|
|
|
|
\
|
|
|
|
|
static void \
|
|
|
|
|
NAME##_init(void) \
|
|
|
|
|
{ \
|
|
|
|
|
static pthread_once_t once = PTHREAD_ONCE_INIT; \
|
|
|
|
|
pthread_once(&once, NAME##_once_init); \
|
|
|
|
|
} \
|
|
|
|
|
\
|
|
|
|
|
static TYPE \
|
|
|
|
|
NAME##_get_unsafe(void) \
|
|
|
|
|
{ \
|
|
|
|
|
return pthread_getspecific(NAME##_key); \
|
|
|
|
|
} \
|
|
|
|
|
\
|
|
|
|
|
static OVS_UNUSED TYPE \
|
|
|
|
|
NAME##_get(void) \
|
|
|
|
|
{ \
|
|
|
|
|
NAME##_init(); \
|
|
|
|
|
return NAME##_get_unsafe(); \
|
|
|
|
|
} \
|
|
|
|
|
\
|
|
|
|
|
static TYPE \
|
|
|
|
|
NAME##_set_unsafe(TYPE value) \
|
|
|
|
|
{ \
|
|
|
|
|
TYPE old_value = NAME##_get_unsafe(); \
|
2013-08-06 14:30:01 -07:00
|
|
|
|
xpthread_setspecific(NAME##_key, value); \
|
2013-06-25 13:50:26 -07:00
|
|
|
|
return old_value; \
|
|
|
|
|
} \
|
|
|
|
|
\
|
|
|
|
|
static OVS_UNUSED TYPE \
|
|
|
|
|
NAME##_set(TYPE value) \
|
|
|
|
|
{ \
|
|
|
|
|
NAME##_init(); \
|
|
|
|
|
return NAME##_set_unsafe(value); \
|
|
|
|
|
}
|
2014-01-14 14:35:48 -08:00
|
|
|
|
|
|
|
|
|
/* Dynamically allocated thread-specific data with lots of slots.
|
|
|
|
|
*
|
|
|
|
|
* pthread_key_t can provide as few as 128 pieces of thread-specific data (even
|
|
|
|
|
* glibc is limited to 1,024). Thus, one must be careful to allocate only a
|
|
|
|
|
* few keys globally. One cannot, for example, allocate a key for every
|
|
|
|
|
* instance of a data structure if there might be an arbitrary number of those
|
|
|
|
|
* data structures.
|
|
|
|
|
*
|
|
|
|
|
* This API is similar to the pthread one (simply search and replace pthread_
|
|
|
|
|
* by ovsthread_) but it a much larger limit that can be raised if necessary
|
|
|
|
|
* (by recompiling). Thus, one may more freely use this form of
|
|
|
|
|
* thread-specific data.
|
|
|
|
|
*
|
2014-02-06 17:06:00 -08:00
|
|
|
|
* ovsthread_key_t also differs from pthread_key_t in the following ways:
|
2014-01-14 14:35:48 -08:00
|
|
|
|
*
|
|
|
|
|
* - Destructors must not access thread-specific data (via ovsthread_key).
|
2014-02-06 17:06:00 -08:00
|
|
|
|
*
|
|
|
|
|
* - The pthread_key_t API allows concurrently exiting threads to start
|
|
|
|
|
* executing the destructor after pthread_key_delete() returns. The
|
|
|
|
|
* ovsthread_key_t API guarantees that, when ovsthread_key_delete()
|
|
|
|
|
* returns, all destructors have returned and no new ones will start
|
|
|
|
|
* execution.
|
2014-01-14 14:35:48 -08:00
|
|
|
|
*/
|
|
|
|
|
typedef struct ovsthread_key *ovsthread_key_t;
|
|
|
|
|
|
|
|
|
|
void ovsthread_key_create(ovsthread_key_t *, void (*destructor)(void *));
|
|
|
|
|
void ovsthread_key_delete(ovsthread_key_t);
|
|
|
|
|
|
|
|
|
|
void ovsthread_setspecific(ovsthread_key_t, const void *);
|
|
|
|
|
void *ovsthread_getspecific(ovsthread_key_t);
|
2013-06-25 13:50:26 -07:00
|
|
|
|
|
2013-08-06 14:57:19 -07:00
|
|
|
|
/* Thread ID.
|
|
|
|
|
*
|
|
|
|
|
* pthread_t isn't so nice for some purposes. Its size and representation are
|
|
|
|
|
* implementation dependent, which means that there is no way to hash it.
|
|
|
|
|
* This thread ID avoids the problem.
|
|
|
|
|
*/
|
|
|
|
|
|
2018-06-04 10:07:36 +02:00
|
|
|
|
#define OVSTHREAD_ID_UNSET UINT_MAX
|
2013-08-06 14:57:19 -07:00
|
|
|
|
DECLARE_EXTERN_PER_THREAD_DATA(unsigned int, ovsthread_id);
|
|
|
|
|
|
2018-06-04 10:07:36 +02:00
|
|
|
|
/* Initializes the unique per thread identifier */
|
|
|
|
|
unsigned int ovsthread_id_init(void);
|
|
|
|
|
|
2013-08-06 14:57:19 -07:00
|
|
|
|
/* Returns a per-thread identifier unique within the lifetime of the
|
|
|
|
|
* process. */
|
|
|
|
|
static inline unsigned int
|
|
|
|
|
ovsthread_id_self(void)
|
|
|
|
|
{
|
2018-06-04 10:07:36 +02:00
|
|
|
|
unsigned int id = *ovsthread_id_get();
|
|
|
|
|
|
|
|
|
|
if (OVS_UNLIKELY(id == OVSTHREAD_ID_UNSET)) {
|
|
|
|
|
id = ovsthread_id_init();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return id;
|
2013-08-06 14:57:19 -07:00
|
|
|
|
}
|
|
|
|
|
|
2013-12-23 14:04:13 -08:00
|
|
|
|
/* Simulated global counter.
|
|
|
|
|
*
|
|
|
|
|
* Incrementing such a counter is meant to be cheaper than incrementing a
|
|
|
|
|
* global counter protected by a lock. It is probably more expensive than
|
|
|
|
|
* incrementing a truly thread-local variable, but such a variable has no
|
|
|
|
|
* straightforward way to get the sum.
|
|
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
* Thread-safety
|
|
|
|
|
* =============
|
|
|
|
|
*
|
|
|
|
|
* Fully thread-safe. */
|
|
|
|
|
|
2014-03-19 07:47:12 -07:00
|
|
|
|
struct ovsthread_stats {
|
|
|
|
|
struct ovs_mutex mutex;
|
|
|
|
|
void *volatile buckets[16];
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
void ovsthread_stats_init(struct ovsthread_stats *);
|
|
|
|
|
void ovsthread_stats_destroy(struct ovsthread_stats *);
|
|
|
|
|
|
|
|
|
|
void *ovsthread_stats_bucket_get(struct ovsthread_stats *,
|
|
|
|
|
void *(*new_bucket)(void));
|
|
|
|
|
|
|
|
|
|
#define OVSTHREAD_STATS_FOR_EACH_BUCKET(BUCKET, IDX, STATS) \
|
|
|
|
|
for ((IDX) = ovs_thread_stats_next_bucket(STATS, 0); \
|
|
|
|
|
((IDX) < ARRAY_SIZE((STATS)->buckets) \
|
|
|
|
|
? ((BUCKET) = (STATS)->buckets[IDX], true) \
|
|
|
|
|
: false); \
|
|
|
|
|
(IDX) = ovs_thread_stats_next_bucket(STATS, (IDX) + 1))
|
|
|
|
|
size_t ovs_thread_stats_next_bucket(const struct ovsthread_stats *, size_t);
|
2013-12-23 14:04:13 -08:00
|
|
|
|
|
2014-03-18 16:34:28 -07:00
|
|
|
|
bool single_threaded(void);
|
|
|
|
|
|
2013-07-29 15:24:45 -07:00
|
|
|
|
void assert_single_threaded_at(const char *where);
|
2014-12-15 14:10:38 +01:00
|
|
|
|
#define assert_single_threaded() assert_single_threaded_at(OVS_SOURCE_LOCATOR)
|
2013-06-19 13:07:35 -07:00
|
|
|
|
|
2014-03-12 10:32:59 -07:00
|
|
|
|
#ifndef _WIN32
|
2013-07-29 15:24:45 -07:00
|
|
|
|
pid_t xfork_at(const char *where);
|
2014-12-15 14:10:38 +01:00
|
|
|
|
#define xfork() xfork_at(OVS_SOURCE_LOCATOR)
|
2014-03-12 10:32:59 -07:00
|
|
|
|
#endif
|
2013-06-19 13:07:35 -07:00
|
|
|
|
|
|
|
|
|
void forbid_forking(const char *reason);
|
|
|
|
|
bool may_fork(void);
|
2013-12-06 07:42:20 +00:00
|
|
|
|
|
|
|
|
|
/* Useful functions related to threading. */
|
|
|
|
|
|
2013-12-13 14:31:27 -08:00
|
|
|
|
int count_cpu_cores(void);
|
2022-08-09 03:18:14 -04:00
|
|
|
|
int count_total_cores(void);
|
2015-12-22 17:26:47 +03:00
|
|
|
|
bool thread_is_pmd(void);
|
2013-06-24 11:05:10 -07:00
|
|
|
|
|
|
|
|
|
#endif /* ovs-thread.h */
|