2000-12-29 01:29:56 +00:00
|
|
|
/*
|
2018-02-23 09:53:12 +01:00
|
|
|
* Copyright (C) Internet Systems Consortium, Inc. ("ISC")
|
2000-12-29 01:29:56 +00:00
|
|
|
*
|
2016-06-27 14:56:38 +10:00
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
2018-02-23 09:53:12 +01:00
|
|
|
*
|
|
|
|
* See the COPYRIGHT file distributed with this work for additional
|
|
|
|
* information regarding copyright ownership.
|
2000-12-29 01:29:56 +00:00
|
|
|
*/
|
|
|
|
|
2005-04-27 04:57:32 +00:00
|
|
|
|
|
|
|
/*! \file */
|
2000-12-29 01:29:56 +00:00
|
|
|
|
2018-04-17 08:29:14 -07:00
|
|
|
#include <stdbool.h>
|
2000-12-29 01:29:56 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <time.h>
|
|
|
|
#include <sys/time.h>
|
2005-07-12 01:00:20 +00:00
|
|
|
#include <errno.h>
|
2000-12-29 01:29:56 +00:00
|
|
|
|
|
|
|
#include <isc/mutex.h>
|
|
|
|
#include <isc/util.h>
|
2015-05-23 14:21:51 +02:00
|
|
|
#include <isc/print.h>
|
2018-08-28 15:43:44 -07:00
|
|
|
#include <isc/strerr.h>
|
|
|
|
#include <isc/string.h>
|
2015-02-26 14:43:45 +05:30
|
|
|
#include <isc/once.h>
|
2000-12-29 01:29:56 +00:00
|
|
|
|
|
|
|
#if ISC_MUTEX_PROFILE
|
|
|
|
|
2005-04-27 04:57:32 +00:00
|
|
|
/*@{*/
|
|
|
|
/*% Operations on timevals; adapted from FreeBSD's sys/time.h */
|
2001-01-04 23:32:15 +00:00
|
|
|
#define timevalclear(tvp) ((tvp)->tv_sec = (tvp)->tv_usec = 0)
|
2015-02-26 14:43:45 +05:30
|
|
|
#define timevaladd(vvp, uvp) \
|
|
|
|
do { \
|
|
|
|
(vvp)->tv_sec += (uvp)->tv_sec; \
|
|
|
|
(vvp)->tv_usec += (uvp)->tv_usec; \
|
|
|
|
if ((vvp)->tv_usec >= 1000000) { \
|
|
|
|
(vvp)->tv_sec++; \
|
|
|
|
(vvp)->tv_usec -= 1000000; \
|
|
|
|
} \
|
2008-04-04 23:47:01 +00:00
|
|
|
} while (0)
|
2015-02-26 14:43:45 +05:30
|
|
|
#define timevalsub(vvp, uvp) \
|
|
|
|
do { \
|
|
|
|
(vvp)->tv_sec -= (uvp)->tv_sec; \
|
|
|
|
(vvp)->tv_usec -= (uvp)->tv_usec; \
|
|
|
|
if ((vvp)->tv_usec < 0) { \
|
|
|
|
(vvp)->tv_sec--; \
|
|
|
|
(vvp)->tv_usec += 1000000; \
|
|
|
|
} \
|
2008-04-04 23:47:01 +00:00
|
|
|
} while (0)
|
2001-01-04 22:37:37 +00:00
|
|
|
|
2005-04-27 04:57:32 +00:00
|
|
|
/*@}*/
|
|
|
|
|
2001-01-04 22:37:37 +00:00
|
|
|
#define ISC_MUTEX_MAX_LOCKERS 32
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
const char * file;
|
|
|
|
int line;
|
|
|
|
unsigned count;
|
2001-01-04 23:32:15 +00:00
|
|
|
struct timeval locked_total;
|
|
|
|
struct timeval wait_total;
|
|
|
|
} isc_mutexlocker_t;
|
2001-01-04 22:37:37 +00:00
|
|
|
|
2001-01-04 23:32:15 +00:00
|
|
|
struct isc_mutexstats {
|
2005-04-27 04:57:32 +00:00
|
|
|
const char * file; /*%< File mutex was created in. */
|
2015-02-26 14:43:45 +05:30
|
|
|
int line; /*%< Line mutex was created on. */
|
2001-01-04 22:37:37 +00:00
|
|
|
unsigned count;
|
2001-01-04 23:32:15 +00:00
|
|
|
struct timeval lock_t;
|
|
|
|
struct timeval locked_total;
|
|
|
|
struct timeval wait_total;
|
|
|
|
isc_mutexlocker_t * cur_locker;
|
|
|
|
isc_mutexlocker_t lockers[ISC_MUTEX_MAX_LOCKERS];
|
2001-01-04 22:37:37 +00:00
|
|
|
};
|
|
|
|
|
2008-04-04 01:49:09 +00:00
|
|
|
#ifndef ISC_MUTEX_PROFTABLESIZE
|
2012-04-24 16:52:12 -07:00
|
|
|
#define ISC_MUTEX_PROFTABLESIZE (1024 * 1024)
|
2008-04-04 01:49:09 +00:00
|
|
|
#endif
|
|
|
|
static isc_mutexstats_t stats[ISC_MUTEX_PROFTABLESIZE];
|
|
|
|
static int stats_next = 0;
|
2018-04-17 08:29:14 -07:00
|
|
|
static bool stats_init = false;
|
2001-01-04 22:37:37 +00:00
|
|
|
static pthread_mutex_t statslock = PTHREAD_MUTEX_INITIALIZER;
|
|
|
|
|
|
|
|
|
2018-11-16 15:33:22 +01:00
|
|
|
void
|
2001-01-04 22:37:37 +00:00
|
|
|
isc_mutex_init_profile(isc_mutex_t *mp, const char *file, int line) {
|
2005-07-12 01:00:20 +00:00
|
|
|
int i, err;
|
2001-01-04 22:37:37 +00:00
|
|
|
|
2005-07-12 01:00:20 +00:00
|
|
|
err = pthread_mutex_init(&mp->mutex, NULL);
|
2018-11-14 08:42:20 +00:00
|
|
|
if (err != 0) {
|
|
|
|
strerror_r(err, strbuf, sizeof(strbuf));
|
|
|
|
isc_error_fatal(file, line, "pthread_mutex_init failed: %s", strbuf);
|
|
|
|
}
|
2001-01-04 22:37:37 +00:00
|
|
|
|
|
|
|
RUNTIME_CHECK(pthread_mutex_lock(&statslock) == 0);
|
|
|
|
|
2018-04-17 08:29:14 -07:00
|
|
|
if (stats_init == false)
|
|
|
|
stats_init = true;
|
2001-01-04 22:37:37 +00:00
|
|
|
|
2008-04-04 01:49:09 +00:00
|
|
|
/*
|
|
|
|
* If all statistics entries have been used, give up and trigger an
|
|
|
|
* assertion failure. There would be no other way to deal with this
|
|
|
|
* because we'd like to keep record of all locks for the purpose of
|
|
|
|
* debugging and the number of necessary locks is unpredictable.
|
|
|
|
* If this failure is triggered while debugging, named should be
|
|
|
|
* rebuilt with an increased ISC_MUTEX_PROFTABLESIZE.
|
|
|
|
*/
|
|
|
|
RUNTIME_CHECK(stats_next < ISC_MUTEX_PROFTABLESIZE);
|
|
|
|
mp->stats = &stats[stats_next++];
|
2001-01-04 22:37:37 +00:00
|
|
|
|
|
|
|
RUNTIME_CHECK(pthread_mutex_unlock(&statslock) == 0);
|
|
|
|
|
|
|
|
mp->stats->file = file;
|
|
|
|
mp->stats->line = line;
|
|
|
|
mp->stats->count = 0;
|
2001-01-04 23:32:15 +00:00
|
|
|
timevalclear(&mp->stats->locked_total);
|
|
|
|
timevalclear(&mp->stats->wait_total);
|
2001-01-04 22:37:37 +00:00
|
|
|
for (i = 0; i < ISC_MUTEX_MAX_LOCKERS; i++) {
|
|
|
|
mp->stats->lockers[i].file = NULL;
|
|
|
|
mp->stats->lockers[i].line = 0;
|
|
|
|
mp->stats->lockers[i].count = 0;
|
2001-01-04 23:32:15 +00:00
|
|
|
timevalclear(&mp->stats->lockers[i].locked_total);
|
|
|
|
timevalclear(&mp->stats->lockers[i].wait_total);
|
2001-01-04 22:37:37 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
isc_result_t
|
|
|
|
isc_mutex_lock_profile(isc_mutex_t *mp, const char *file, int line) {
|
2001-01-04 23:32:15 +00:00
|
|
|
struct timeval prelock_t;
|
|
|
|
struct timeval postlock_t;
|
|
|
|
isc_mutexlocker_t *locker = NULL;
|
2001-01-04 22:37:37 +00:00
|
|
|
int i;
|
|
|
|
|
2001-01-04 23:32:15 +00:00
|
|
|
gettimeofday(&prelock_t, NULL);
|
2001-01-04 22:37:37 +00:00
|
|
|
|
|
|
|
if (pthread_mutex_lock(&mp->mutex) != 0)
|
|
|
|
return (ISC_R_UNEXPECTED);
|
|
|
|
|
2001-01-04 23:32:15 +00:00
|
|
|
gettimeofday(&postlock_t, NULL);
|
2001-01-04 22:37:37 +00:00
|
|
|
mp->stats->lock_t = postlock_t;
|
|
|
|
|
2001-01-04 23:32:15 +00:00
|
|
|
timevalsub(&postlock_t, &prelock_t);
|
2001-01-04 22:37:37 +00:00
|
|
|
|
|
|
|
mp->stats->count++;
|
2001-01-04 23:32:15 +00:00
|
|
|
timevaladd(&mp->stats->wait_total, &postlock_t);
|
2001-01-04 22:37:37 +00:00
|
|
|
|
2005-03-16 01:56:17 +00:00
|
|
|
for (i = 0; i < ISC_MUTEX_MAX_LOCKERS; i++) {
|
|
|
|
if (mp->stats->lockers[i].file == NULL) {
|
|
|
|
locker = &mp->stats->lockers[i];
|
|
|
|
locker->file = file;
|
|
|
|
locker->line = line;
|
|
|
|
break;
|
|
|
|
} else if (mp->stats->lockers[i].file == file &&
|
|
|
|
mp->stats->lockers[i].line == line) {
|
|
|
|
locker = &mp->stats->lockers[i];
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-01-04 22:37:37 +00:00
|
|
|
if (locker != NULL) {
|
|
|
|
locker->count++;
|
2001-01-04 23:32:15 +00:00
|
|
|
timevaladd(&locker->wait_total, &postlock_t);
|
2001-01-04 22:37:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
mp->stats->cur_locker = locker;
|
|
|
|
|
2005-07-12 01:00:20 +00:00
|
|
|
return (ISC_R_SUCCESS);
|
2001-01-04 22:37:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
isc_result_t
|
|
|
|
isc_mutex_unlock_profile(isc_mutex_t *mp, const char *file, int line) {
|
2001-01-04 23:32:15 +00:00
|
|
|
struct timeval unlock_t;
|
2001-01-04 22:37:37 +00:00
|
|
|
|
|
|
|
UNUSED(file);
|
|
|
|
UNUSED(line);
|
|
|
|
|
|
|
|
if (mp->stats->cur_locker != NULL) {
|
2001-01-04 23:32:15 +00:00
|
|
|
gettimeofday(&unlock_t, NULL);
|
|
|
|
timevalsub(&unlock_t, &mp->stats->lock_t);
|
|
|
|
timevaladd(&mp->stats->locked_total, &unlock_t);
|
|
|
|
timevaladd(&mp->stats->cur_locker->locked_total, &unlock_t);
|
2001-01-04 22:37:37 +00:00
|
|
|
mp->stats->cur_locker = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ((pthread_mutex_unlock((&mp->mutex)) == 0) ? \
|
|
|
|
ISC_R_SUCCESS : ISC_R_UNEXPECTED);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
isc_mutex_statsprofile(FILE *fp) {
|
2001-01-04 23:32:15 +00:00
|
|
|
isc_mutexlocker_t *locker;
|
2001-01-04 22:37:37 +00:00
|
|
|
int i, j;
|
2008-04-04 01:49:09 +00:00
|
|
|
|
2001-01-04 22:37:37 +00:00
|
|
|
fprintf(fp, "Mutex stats (in us)\n");
|
2008-04-04 01:49:09 +00:00
|
|
|
for (i = 0; i < stats_next; i++) {
|
2012-04-24 16:52:12 -07:00
|
|
|
fprintf(fp, "%-12s %4d: %10u %lu.%06lu %lu.%06lu %5d\n",
|
2001-01-04 22:37:37 +00:00
|
|
|
stats[i].file, stats[i].line, stats[i].count,
|
|
|
|
stats[i].locked_total.tv_sec,
|
2001-01-04 23:32:15 +00:00
|
|
|
stats[i].locked_total.tv_usec,
|
2001-01-04 22:37:37 +00:00
|
|
|
stats[i].wait_total.tv_sec,
|
2012-04-24 16:52:12 -07:00
|
|
|
stats[i].wait_total.tv_usec,
|
|
|
|
i);
|
2001-01-04 22:37:37 +00:00
|
|
|
for (j = 0; j < ISC_MUTEX_MAX_LOCKERS; j++) {
|
|
|
|
locker = &stats[i].lockers[j];
|
|
|
|
if (locker->file == NULL)
|
|
|
|
continue;
|
2012-04-24 16:52:12 -07:00
|
|
|
fprintf(fp, " %-11s %4d: %10u %lu.%06lu %lu.%06lu %5d\n",
|
2001-01-04 22:37:37 +00:00
|
|
|
locker->file, locker->line, locker->count,
|
|
|
|
locker->locked_total.tv_sec,
|
2001-01-04 23:32:15 +00:00
|
|
|
locker->locked_total.tv_usec,
|
2001-01-04 22:37:37 +00:00
|
|
|
locker->wait_total.tv_sec,
|
2012-04-24 16:52:12 -07:00
|
|
|
locker->wait_total.tv_usec,
|
|
|
|
i);
|
2001-01-04 22:37:37 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2000-12-29 01:29:56 +00:00
|
|
|
#endif /* ISC_MUTEX_PROFILE */
|
2001-01-06 01:26:36 +00:00
|
|
|
|
2002-09-08 18:32:38 +00:00
|
|
|
#if ISC_MUTEX_DEBUG && defined(PTHREAD_MUTEX_ERRORCHECK)
|
|
|
|
|
2018-04-17 08:29:14 -07:00
|
|
|
static bool errcheck_initialized = false;
|
2015-02-26 14:43:45 +05:30
|
|
|
static pthread_mutexattr_t errcheck;
|
|
|
|
static isc_once_t once_errcheck = ISC_ONCE_INIT;
|
2002-09-08 18:32:38 +00:00
|
|
|
|
2015-02-26 14:43:45 +05:30
|
|
|
static void
|
|
|
|
initialize_errcheck(void) {
|
|
|
|
RUNTIME_CHECK(pthread_mutexattr_init(&errcheck) == 0);
|
|
|
|
RUNTIME_CHECK(pthread_mutexattr_settype
|
|
|
|
(&errcheck, PTHREAD_MUTEX_ERRORCHECK) == 0);
|
2018-04-17 08:29:14 -07:00
|
|
|
errcheck_initialized = true;
|
2015-02-26 14:43:45 +05:30
|
|
|
}
|
2008-04-04 23:47:01 +00:00
|
|
|
|
2018-11-16 15:33:22 +01:00
|
|
|
void
|
2015-02-26 14:43:45 +05:30
|
|
|
isc_mutex_init_errcheck(isc_mutex_t *mp) {
|
|
|
|
isc_result_t result;
|
|
|
|
int err;
|
|
|
|
|
|
|
|
result = isc_once_do(&once_errcheck, initialize_errcheck);
|
|
|
|
RUNTIME_CHECK(result == ISC_R_SUCCESS);
|
|
|
|
|
|
|
|
err = pthread_mutex_init(mp, &errcheck);
|
2018-11-16 15:33:22 +01:00
|
|
|
if (err != 0) {
|
|
|
|
strerror_r(err, strbuf, sizeof(strbuf));
|
|
|
|
isc_error_fatal(file, line, "pthread_mutex_init failed: %s", strbuf);
|
|
|
|
}
|
2002-09-08 18:32:38 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2001-01-08 19:47:30 +00:00
|
|
|
#if ISC_MUTEX_DEBUG && defined(__NetBSD__) && defined(PTHREAD_MUTEX_ERRORCHECK)
|
2001-01-06 01:26:36 +00:00
|
|
|
pthread_mutexattr_t isc__mutex_attrs = {
|
|
|
|
PTHREAD_MUTEX_ERRORCHECK, /* m_type */
|
|
|
|
0 /* m_flags, which appears to be unused. */
|
|
|
|
};
|
|
|
|
#endif
|
2005-07-12 01:00:20 +00:00
|
|
|
|
2008-04-04 01:49:09 +00:00
|
|
|
#if !(ISC_MUTEX_DEBUG && defined(PTHREAD_MUTEX_ERRORCHECK)) && !ISC_MUTEX_PROFILE
|
2015-02-26 14:43:45 +05:30
|
|
|
|
2015-02-27 11:36:39 +11:00
|
|
|
#ifdef HAVE_PTHREAD_MUTEX_ADAPTIVE_NP
|
2018-04-17 08:29:14 -07:00
|
|
|
static bool attr_initialized = false;
|
2015-02-26 14:43:45 +05:30
|
|
|
static pthread_mutexattr_t attr;
|
|
|
|
static isc_once_t once_attr = ISC_ONCE_INIT;
|
2015-02-27 11:36:39 +11:00
|
|
|
#endif /* HAVE_PTHREAD_MUTEX_ADAPTIVE_NP */
|
2015-02-26 14:43:45 +05:30
|
|
|
|
|
|
|
#ifdef HAVE_PTHREAD_MUTEX_ADAPTIVE_NP
|
|
|
|
static void
|
|
|
|
initialize_attr(void) {
|
|
|
|
RUNTIME_CHECK(pthread_mutexattr_init(&attr) == 0);
|
|
|
|
RUNTIME_CHECK(pthread_mutexattr_settype
|
|
|
|
(&attr, PTHREAD_MUTEX_ADAPTIVE_NP) == 0);
|
2018-04-17 08:29:14 -07:00
|
|
|
attr_initialized = true;
|
2015-02-26 14:43:45 +05:30
|
|
|
}
|
|
|
|
#endif /* HAVE_PTHREAD_MUTEX_ADAPTIVE_NP */
|
|
|
|
|
2018-11-16 15:33:22 +01:00
|
|
|
void
|
2005-07-12 01:00:20 +00:00
|
|
|
isc__mutex_init(isc_mutex_t *mp, const char *file, unsigned int line) {
|
|
|
|
int err;
|
2015-02-26 14:43:45 +05:30
|
|
|
|
2014-03-10 12:14:35 -07:00
|
|
|
#ifdef HAVE_PTHREAD_MUTEX_ADAPTIVE_NP
|
2018-11-16 15:33:22 +01:00
|
|
|
isc_result_t result = ISC_R_SUCCESS;
|
2015-02-26 14:43:45 +05:30
|
|
|
result = isc_once_do(&once_attr, initialize_attr);
|
|
|
|
RUNTIME_CHECK(result == ISC_R_SUCCESS);
|
2005-07-12 01:00:20 +00:00
|
|
|
|
2014-03-10 12:14:35 -07:00
|
|
|
err = pthread_mutex_init(mp, &attr);
|
|
|
|
#else /* HAVE_PTHREAD_MUTEX_ADAPTIVE_NP */
|
2005-07-12 01:00:20 +00:00
|
|
|
err = pthread_mutex_init(mp, ISC__MUTEX_ATTRS);
|
2014-03-10 12:14:35 -07:00
|
|
|
#endif /* HAVE_PTHREAD_MUTEX_ADAPTIVE_NP */
|
2005-07-12 01:00:20 +00:00
|
|
|
if (err != 0) {
|
2018-11-16 15:33:22 +01:00
|
|
|
char strbuf[ISC_STRERRORSIZE];
|
2018-08-21 15:27:42 +02:00
|
|
|
strerror_r(err, strbuf, sizeof(strbuf));
|
2018-11-14 08:42:20 +00:00
|
|
|
isc_error_fatal(file, line, "pthread_mutex_init failed: %s", strbuf);
|
2005-07-12 01:00:20 +00:00
|
|
|
}
|
|
|
|
}
|
2008-04-04 01:49:09 +00:00
|
|
|
#endif
|