2000-12-29 01:29:56 +00:00
|
|
|
/*
|
2015-02-03 23:46:29 +00:00
|
|
|
* Copyright (C) 2004, 2005, 2007, 2008, 2011, 2012, 2014, 2015 Internet Systems Consortium, Inc. ("ISC")
|
2004-03-05 05:14:21 +00:00
|
|
|
* Copyright (C) 2000-2002 Internet Software Consortium.
|
2000-12-29 01:29:56 +00:00
|
|
|
*
|
2007-06-18 23:47:57 +00:00
|
|
|
* Permission to use, copy, modify, and/or distribute this software for any
|
2000-12-29 01:29:56 +00:00
|
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
|
|
* copyright notice and this permission notice appear in all copies.
|
|
|
|
*
|
2004-03-05 05:14:21 +00:00
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
|
|
|
|
* REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
|
|
|
* AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
|
|
* INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
|
|
|
* LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
|
|
|
|
* OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
|
|
* PERFORMANCE OF THIS SOFTWARE.
|
2000-12-29 01:29:56 +00:00
|
|
|
*/
|
|
|
|
|
2011-01-04 23:47:14 +00:00
|
|
|
/* $Id: mutex.c,v 1.18 2011/01/04 23:47:14 tbox Exp $ */
|
2005-04-27 04:57:32 +00:00
|
|
|
|
|
|
|
/*! \file */
|
2000-12-29 01:29:56 +00:00
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
#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>
|
2005-07-12 01:00:20 +00:00
|
|
|
#include <isc/strerror.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;
|
2001-01-04 22:37:37 +00:00
|
|
|
static isc_boolean_t stats_init = ISC_FALSE;
|
|
|
|
static pthread_mutex_t statslock = PTHREAD_MUTEX_INITIALIZER;
|
|
|
|
|
|
|
|
|
|
|
|
isc_result_t
|
|
|
|
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);
|
|
|
|
if (err == ENOMEM)
|
|
|
|
return (ISC_R_NOMEMORY);
|
|
|
|
if (err != 0)
|
|
|
|
return (ISC_R_UNEXPECTED);
|
2001-01-04 22:37:37 +00:00
|
|
|
|
|
|
|
RUNTIME_CHECK(pthread_mutex_lock(&statslock) == 0);
|
|
|
|
|
2008-04-04 01:49:09 +00:00
|
|
|
if (stats_init == ISC_FALSE)
|
2001-01-04 22:37:37 +00:00
|
|
|
stats_init = ISC_TRUE;
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
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_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)
|
|
|
|
|
2015-02-26 14:43:45 +05:30
|
|
|
static isc_boolean_t errcheck_initialized = ISC_FALSE;
|
|
|
|
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);
|
|
|
|
errcheck_initialized = ISC_TRUE;
|
|
|
|
}
|
2008-04-04 23:47:01 +00:00
|
|
|
|
2015-02-26 14:43:45 +05:30
|
|
|
isc_result_t
|
|
|
|
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);
|
2005-07-12 01:00:20 +00:00
|
|
|
if (err == ENOMEM)
|
|
|
|
return (ISC_R_NOMEMORY);
|
|
|
|
return ((err == 0) ? ISC_R_SUCCESS : ISC_R_UNEXPECTED);
|
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
|
|
|
|
|
|
|
static isc_boolean_t attr_initialized = ISC_FALSE;
|
|
|
|
static pthread_mutexattr_t attr;
|
|
|
|
static isc_once_t once_attr = ISC_ONCE_INIT;
|
|
|
|
|
|
|
|
#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);
|
|
|
|
attr_initialized = ISC_TRUE;
|
|
|
|
}
|
|
|
|
#endif /* HAVE_PTHREAD_MUTEX_ADAPTIVE_NP */
|
|
|
|
|
2005-07-12 01:00:20 +00:00
|
|
|
isc_result_t
|
|
|
|
isc__mutex_init(isc_mutex_t *mp, const char *file, unsigned int line) {
|
|
|
|
char strbuf[ISC_STRERRORSIZE];
|
|
|
|
isc_result_t result = ISC_R_SUCCESS;
|
|
|
|
int err;
|
2015-02-26 14:43:45 +05:30
|
|
|
|
2014-03-10 12:14:35 -07:00
|
|
|
#ifdef HAVE_PTHREAD_MUTEX_ADAPTIVE_NP
|
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 == ENOMEM)
|
|
|
|
return (ISC_R_NOMEMORY);
|
|
|
|
if (err != 0) {
|
2015-02-03 11:42:06 +05:30
|
|
|
isc__strerror(err, strbuf, sizeof(strbuf));
|
2005-07-12 01:00:20 +00:00
|
|
|
UNEXPECTED_ERROR(file, line, "isc_mutex_init() failed: %s",
|
|
|
|
strbuf);
|
|
|
|
result = ISC_R_UNEXPECTED;
|
|
|
|
}
|
|
|
|
return (result);
|
|
|
|
}
|
2008-04-04 01:49:09 +00:00
|
|
|
#endif
|