2009-01-15 19:56:05 +00:00
|
|
|
/*
|
2012-12-13 15:49:48 +00:00
|
|
|
* virthread.h: basic thread synchronization primitives
|
2009-01-15 19:56:05 +00:00
|
|
|
*
|
2014-10-28 18:38:04 +00:00
|
|
|
* Copyright (C) 2009-2011, 2013-2014 Red Hat, Inc.
|
2009-01-15 19:56:05 +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
|
2012-09-20 22:30:55 +00:00
|
|
|
* License along with this library. If not, see
|
2012-07-21 10:06:23 +00:00
|
|
|
* <http://www.gnu.org/licenses/>.
|
2009-01-15 19:56:05 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2019-06-18 16:12:44 +00:00
|
|
|
#pragma once
|
2009-01-15 19:56:05 +00:00
|
|
|
|
2019-06-18 16:12:44 +00:00
|
|
|
#include "internal.h"
|
|
|
|
#include "virerror.h"
|
2009-01-15 19:56:05 +00:00
|
|
|
|
2019-06-18 16:12:44 +00:00
|
|
|
#include <pthread.h>
|
2014-01-22 16:17:10 +00:00
|
|
|
|
2009-01-15 19:56:05 +00:00
|
|
|
typedef struct virMutex virMutex;
|
|
|
|
typedef virMutex *virMutexPtr;
|
|
|
|
|
2014-01-22 16:17:10 +00:00
|
|
|
struct virMutex {
|
|
|
|
pthread_mutex_t lock;
|
|
|
|
};
|
|
|
|
|
2014-01-22 15:26:21 +00:00
|
|
|
typedef struct virRWLock virRWLock;
|
|
|
|
typedef virRWLock *virRWLockPtr;
|
|
|
|
|
2014-01-22 16:17:10 +00:00
|
|
|
struct virRWLock {
|
|
|
|
pthread_rwlock_t lock;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2009-01-15 19:56:05 +00:00
|
|
|
typedef struct virCond virCond;
|
|
|
|
typedef virCond *virCondPtr;
|
|
|
|
|
2014-01-22 16:17:10 +00:00
|
|
|
struct virCond {
|
|
|
|
pthread_cond_t cond;
|
|
|
|
};
|
|
|
|
|
2009-01-15 19:56:05 +00:00
|
|
|
typedef struct virThreadLocal virThreadLocal;
|
|
|
|
typedef virThreadLocal *virThreadLocalPtr;
|
|
|
|
|
2014-01-22 16:17:10 +00:00
|
|
|
struct virThreadLocal {
|
|
|
|
pthread_key_t key;
|
|
|
|
};
|
|
|
|
|
2010-11-02 17:17:47 +00:00
|
|
|
typedef struct virThread virThread;
|
|
|
|
typedef virThread *virThreadPtr;
|
|
|
|
|
2014-01-22 16:17:10 +00:00
|
|
|
struct virThread {
|
|
|
|
pthread_t thread;
|
|
|
|
};
|
|
|
|
|
2011-04-20 22:26:00 +00:00
|
|
|
typedef struct virOnceControl virOnceControl;
|
|
|
|
typedef virOnceControl *virOnceControlPtr;
|
|
|
|
|
2014-01-22 16:17:10 +00:00
|
|
|
struct virOnceControl {
|
|
|
|
pthread_once_t once;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2019-06-18 16:12:44 +00:00
|
|
|
#define VIR_MUTEX_INITIALIZER \
|
2017-11-03 12:09:47 +00:00
|
|
|
{ \
|
2014-03-25 14:54:44 +00:00
|
|
|
.lock = PTHREAD_MUTEX_INITIALIZER \
|
|
|
|
}
|
|
|
|
|
2019-06-18 16:12:44 +00:00
|
|
|
#define VIR_ONCE_CONTROL_INITIALIZER \
|
2017-11-03 12:09:47 +00:00
|
|
|
{ \
|
|
|
|
.once = PTHREAD_ONCE_INIT \
|
2014-01-22 16:17:10 +00:00
|
|
|
}
|
|
|
|
|
2011-04-20 22:26:00 +00:00
|
|
|
typedef void (*virOnceFunc)(void);
|
2009-01-15 19:56:05 +00:00
|
|
|
|
2010-11-02 17:17:47 +00:00
|
|
|
typedef void (*virThreadFunc)(void *opaque);
|
|
|
|
|
2019-06-18 16:12:44 +00:00
|
|
|
#define virThreadCreate(thread, joinable, func, opaque) \
|
2015-03-20 16:43:55 +00:00
|
|
|
virThreadCreateFull(thread, joinable, func, #func, false, opaque)
|
|
|
|
|
|
|
|
int virThreadCreateFull(virThreadPtr thread,
|
|
|
|
bool joinable,
|
|
|
|
virThreadFunc func,
|
2020-02-14 10:44:01 +00:00
|
|
|
const char *name,
|
2015-03-20 16:43:55 +00:00
|
|
|
bool worker,
|
2019-10-14 12:25:14 +00:00
|
|
|
void *opaque) G_GNUC_WARN_UNUSED_RESULT;
|
2010-11-02 17:17:47 +00:00
|
|
|
void virThreadSelf(virThreadPtr thread);
|
|
|
|
bool virThreadIsSelf(virThreadPtr thread);
|
|
|
|
void virThreadJoin(virThreadPtr thread);
|
2010-12-04 21:33:23 +00:00
|
|
|
|
2020-02-14 10:44:01 +00:00
|
|
|
size_t virThreadMaxName(void);
|
|
|
|
|
2012-01-23 14:58:13 +00:00
|
|
|
/* This API is *NOT* for general use. It exists solely as a stub
|
|
|
|
* for integration with libselinux AVC callbacks */
|
|
|
|
void virThreadCancel(virThreadPtr thread);
|
|
|
|
|
2010-12-04 21:33:23 +00:00
|
|
|
/* These next two functions are for debugging only, since they are not
|
|
|
|
* guaranteed to give unique values for distinct threads on all
|
|
|
|
* architectures, nor are the two functions guaranteed to give the same
|
|
|
|
* value for the same thread. */
|
build: avoid non-portable cast of pthread_t
POSIX says pthread_t is opaque. We can't guarantee if it is scaler
or a pointer, nor what size it is; and BSD differs from Linux.
We've also had reports of gcc complaining on attempts to cast it,
if we use a cast to the wrong type (for example, pointers have to be
cast to void* or intptr_t before being narrowed; while casting a
function return of scalar pthread_t to void* triggers a different
warning).
Give up on casts, and use unions to get at decent bits instead. And
rather than futz around with figuring which 32 bits of a potentially
64-bit pointer are most likely to be unique, convert the rest of
the code base to use 64-bit values when using a debug id.
Based on a report by Guido Günther against kFreeBSD, but with a
fix that doesn't regress commit 4d970fd29 for FreeBSD.
* src/util/virthreadpthread.c (virThreadSelfID, virThreadID): Use
union to get at a decent bit representation of thread_t bits.
* src/util/virthread.h (virThreadSelfID, virThreadID): Alter
signature.
* src/util/virthreadwin32.c (virThreadSelfID, virThreadID):
Likewise.
* src/qemu/qemu_domain.h (qemuDomainJobObj): Alter type of owner.
* src/qemu/qemu_domain.c (qemuDomainObjTransferJob)
(qemuDomainObjSetJobPhase, qemuDomainObjReleaseAsyncJob)
(qemuDomainObjBeginNestedJob, qemuDomainObjBeginJobInternal): Fix
clients.
* src/util/virlog.c (virLogFormatString): Likewise.
* src/util/vireventpoll.c (virEventPollInterruptLocked):
Likewise.
Signed-off-by: Eric Blake <eblake@redhat.com>
2013-05-02 20:23:02 +00:00
|
|
|
unsigned long long virThreadSelfID(void);
|
|
|
|
unsigned long long virThreadID(virThreadPtr thread);
|
2010-11-02 17:17:47 +00:00
|
|
|
|
2011-04-20 22:26:00 +00:00
|
|
|
/* Static initialization of mutexes is not possible, so we instead
|
|
|
|
* provide for guaranteed one-time initialization via a callback
|
|
|
|
* function. Usage:
|
|
|
|
* static virOnceControl once = VIR_ONCE_CONTROL_INITIALIZER;
|
|
|
|
* static void initializer(void) { ... }
|
|
|
|
* void myfunc()
|
|
|
|
* {
|
|
|
|
* if (virOnce(&once, initializer) < 0)
|
|
|
|
* goto error;
|
|
|
|
* ...now guaranteed that initializer has completed exactly once
|
|
|
|
* }
|
|
|
|
*/
|
|
|
|
int virOnce(virOnceControlPtr once, virOnceFunc init)
|
2019-10-14 12:25:14 +00:00
|
|
|
ATTRIBUTE_NONNULL(1) ATTRIBUTE_NONNULL(2) G_GNUC_WARN_UNUSED_RESULT;
|
2011-04-20 22:26:00 +00:00
|
|
|
|
2019-10-14 12:25:14 +00:00
|
|
|
int virMutexInit(virMutexPtr m) G_GNUC_WARN_UNUSED_RESULT;
|
|
|
|
int virMutexInitRecursive(virMutexPtr m) G_GNUC_WARN_UNUSED_RESULT;
|
2009-01-15 19:56:05 +00:00
|
|
|
void virMutexDestroy(virMutexPtr m);
|
|
|
|
|
|
|
|
void virMutexLock(virMutexPtr m);
|
|
|
|
void virMutexUnlock(virMutexPtr m);
|
|
|
|
|
|
|
|
|
2019-10-14 12:25:14 +00:00
|
|
|
int virRWLockInit(virRWLockPtr m) G_GNUC_WARN_UNUSED_RESULT;
|
2014-01-22 15:26:21 +00:00
|
|
|
void virRWLockDestroy(virRWLockPtr m);
|
|
|
|
|
|
|
|
void virRWLockRead(virRWLockPtr m);
|
|
|
|
void virRWLockWrite(virRWLockPtr m);
|
|
|
|
void virRWLockUnlock(virRWLockPtr m);
|
|
|
|
|
2009-01-15 19:56:05 +00:00
|
|
|
|
2019-10-14 12:25:14 +00:00
|
|
|
int virCondInit(virCondPtr c) G_GNUC_WARN_UNUSED_RESULT;
|
2013-02-07 14:03:17 +00:00
|
|
|
int virCondDestroy(virCondPtr c);
|
2009-01-15 19:56:05 +00:00
|
|
|
|
2011-12-09 16:14:15 +00:00
|
|
|
/* virCondWait, virCondWaitUntil:
|
|
|
|
* These functions can return without the associated predicate
|
|
|
|
* changing value. Therefore in nearly all cases they
|
|
|
|
* should be enclosed in a while loop that checks the predicate.
|
|
|
|
*/
|
2019-10-14 12:25:14 +00:00
|
|
|
int virCondWait(virCondPtr c, virMutexPtr m) G_GNUC_WARN_UNUSED_RESULT;
|
|
|
|
int virCondWaitUntil(virCondPtr c, virMutexPtr m, unsigned long long whenms) G_GNUC_WARN_UNUSED_RESULT;
|
2011-12-09 16:14:15 +00:00
|
|
|
|
2009-01-15 19:56:05 +00:00
|
|
|
void virCondSignal(virCondPtr c);
|
|
|
|
void virCondBroadcast(virCondPtr c);
|
|
|
|
|
|
|
|
|
|
|
|
typedef void (*virThreadLocalCleanup)(void *);
|
|
|
|
int virThreadLocalInit(virThreadLocalPtr l,
|
2019-10-14 12:25:14 +00:00
|
|
|
virThreadLocalCleanup c) G_GNUC_WARN_UNUSED_RESULT;
|
2009-01-15 19:56:05 +00:00
|
|
|
void *virThreadLocalGet(virThreadLocalPtr l);
|
2019-10-14 12:25:14 +00:00
|
|
|
int virThreadLocalSet(virThreadLocalPtr l, void*) G_GNUC_WARN_UNUSED_RESULT;
|
2009-01-15 19:56:05 +00:00
|
|
|
|
2012-07-20 14:03:39 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* VIR_ONCE_GLOBAL_INIT:
|
|
|
|
* classname: base classname
|
|
|
|
*
|
|
|
|
* This macro simplifies the setup of a one-time only
|
|
|
|
* global file initializer.
|
|
|
|
*
|
|
|
|
* Assuming a class called "virMyObject", and a method
|
|
|
|
* implemented like:
|
|
|
|
*
|
|
|
|
* int virMyObjectOnceInit(void) {
|
|
|
|
* ...do init tasks...
|
|
|
|
* }
|
|
|
|
*
|
|
|
|
* Then invoking the macro:
|
|
|
|
*
|
2019-01-20 17:23:29 +00:00
|
|
|
* VIR_ONCE_GLOBAL_INIT(virMyObject);
|
2012-07-20 14:03:39 +00:00
|
|
|
*
|
|
|
|
* Will create a method
|
|
|
|
*
|
|
|
|
* int virMyObjectInitialize(void);
|
|
|
|
*
|
|
|
|
* Which will ensure that 'virMyObjectOnceInit' is
|
|
|
|
* guaranteed to be invoked exactly once.
|
|
|
|
*/
|
2019-06-18 16:12:44 +00:00
|
|
|
#define VIR_ONCE_GLOBAL_INIT(classname) \
|
2012-07-20 14:03:39 +00:00
|
|
|
static virOnceControl classname ## OnceControl = VIR_ONCE_CONTROL_INITIALIZER; \
|
2017-11-03 12:09:47 +00:00
|
|
|
static virErrorPtr classname ## OnceError; \
|
|
|
|
\
|
|
|
|
static void classname ## Once(void) \
|
|
|
|
{ \
|
|
|
|
if (classname ## OnceInit() < 0) \
|
|
|
|
classname ## OnceError = virSaveLastError(); \
|
|
|
|
} \
|
|
|
|
\
|
|
|
|
static int classname ## Initialize(void) \
|
|
|
|
{ \
|
|
|
|
if (virOnce(&classname ## OnceControl, classname ## Once) < 0) \
|
|
|
|
return -1; \
|
|
|
|
\
|
|
|
|
if (classname ## OnceError) { \
|
|
|
|
virSetError(classname ## OnceError); \
|
|
|
|
return -1; \
|
|
|
|
} \
|
|
|
|
\
|
|
|
|
return 0; \
|
2019-01-20 17:23:29 +00:00
|
|
|
} \
|
|
|
|
struct classname ## EatSemicolon
|