1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127
|
// SPDX-License-Identifier: GPL-2.0-only
/*
* Copyright 2023 Red Hat
*/
#include <errno.h>
#include <stdlib.h>
#include "permassert.h"
#include "string-utils.h"
#include "thread-utils.h"
static enum mutex_kind {
fast_adaptive,
error_checking
} hidden_mutex_kind = error_checking;
const bool UDS_DO_ASSERTIONS = true;
/**********************************************************************/
static void initialize_mutex_kind(void)
{
static const char UDS_MUTEX_KIND_ENV[] = "UDS_MUTEX_KIND";
const char *mutex_kind_string = getenv(UDS_MUTEX_KIND_ENV);
#ifdef NDEBUG
/*
* Enabling error checking on mutexes enables a great performance loss,
* so we only enable it in certain circumstances.
*/
hidden_mutex_kind = fast_adaptive;
#endif
if (mutex_kind_string != NULL) {
if (strcmp(mutex_kind_string, "error-checking") == 0)
hidden_mutex_kind = error_checking;
else if (strcmp(mutex_kind_string, "fast-adaptive") == 0)
hidden_mutex_kind = fast_adaptive;
else
VDO_ASSERT_LOG_ONLY(false,
"environment variable %s had unexpected value '%s'",
UDS_MUTEX_KIND_ENV,
mutex_kind_string);
}
}
/**********************************************************************/
static enum mutex_kind get_mutex_kind(void)
{
static atomic_t once_state = ATOMIC_INIT(0);
vdo_perform_once(&once_state, initialize_mutex_kind);
return hidden_mutex_kind;
}
/*
* This function should only be called directly in places where making
* assertions is not safe.
*/
int uds_initialize_mutex(struct mutex *mutex, bool assert_on_error)
{
pthread_mutexattr_t attr;
int result;
int result2;
result = pthread_mutexattr_init(&attr);
if (result != 0) {
VDO_ASSERT_LOG_ONLY((result == 0), "pthread_mutexattr_init error");
return result;
}
if (get_mutex_kind() == error_checking)
pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_ERRORCHECK);
result = pthread_mutex_init(&mutex->mutex, &attr);
if ((result != 0) && assert_on_error)
VDO_ASSERT_LOG_ONLY((result == 0), "pthread_mutex_init error");
result2 = pthread_mutexattr_destroy(&attr);
if (result2 != 0) {
VDO_ASSERT_LOG_ONLY((result2 == 0),
"pthread_mutexattr_destroy error");
if (result == UDS_SUCCESS)
result = result2;
}
return result;
}
/**********************************************************************/
int uds_init_mutex(struct mutex *mutex)
{
return uds_initialize_mutex(mutex, UDS_DO_ASSERTIONS);
}
/**********************************************************************/
int uds_destroy_mutex(struct mutex *mutex)
{
int result;
result = pthread_mutex_destroy(&mutex->mutex);
VDO_ASSERT_LOG_ONLY((result == 0), "pthread_mutex_destroy error");
return result;
}
/**********************************************************************/
void uds_lock_mutex(struct mutex *mutex)
{
int result __attribute__((unused));
result = pthread_mutex_lock(&mutex->mutex);
#ifndef NDEBUG
VDO_ASSERT_LOG_ONLY((result == 0),
"pthread_mutex_lock error %d", result);
#endif
}
/**********************************************************************/
void uds_unlock_mutex(struct mutex *mutex)
{
int result __attribute__((unused));
result = pthread_mutex_unlock(&mutex->mutex);
#ifndef NDEBUG
VDO_ASSERT_LOG_ONLY((result == 0),
"pthread_mutex_unlock error %d", result);
#endif
}
|