Split mutex.c and .h each into three files
[fio.git] / mutex.c
diff --git a/mutex.c b/mutex.c
index 414e5532d1385f3b9ceda3b6e316907b5a978376..03291c7faf9392a62d373ea0cc5e55763fbba728 100644 (file)
--- a/mutex.c
+++ b/mutex.c
-#include <stdio.h>
 #include <string.h>
-#include <unistd.h>
-#include <stdlib.h>
-#include <fcntl.h>
-#include <pthread.h>
 #include <sys/mman.h>
+#include <assert.h>
 
+#include "log.h"
 #include "mutex.h"
-#include "arch/arch.h"
+#include "pshared.h"
+#include "os/os.h"
+#include "fio_time.h"
+#include "gettime.h"
+
+void __fio_mutex_remove(struct fio_mutex *mutex)
+{
+       assert(mutex->magic == FIO_MUTEX_MAGIC);
+       pthread_cond_destroy(&mutex->cond);
+
+       /*
+        * Ensure any subsequent attempt to grab this mutex will fail
+        * with an assert, instead of just silently hanging.
+        */
+       memset(mutex, 0, sizeof(*mutex));
+}
 
 void fio_mutex_remove(struct fio_mutex *mutex)
 {
-       close(mutex->mutex_fd);
+       __fio_mutex_remove(mutex);
        munmap((void *) mutex, sizeof(*mutex));
 }
 
-struct fio_mutex *fio_mutex_init(int value)
+int __fio_mutex_init(struct fio_mutex *mutex, int value)
 {
-       char mutex_name[] = "/tmp/.fio_mutex.XXXXXX";
-       struct fio_mutex *mutex = NULL;
-       pthread_mutexattr_t attr;
-       pthread_condattr_t cond;
-       int fd;
+       int ret;
 
-       fd = mkstemp(mutex_name);
-       if (fd < 0) {
-               perror("open mutex");
-               return NULL;
-       }
+       mutex->value = value;
+       mutex->magic = FIO_MUTEX_MAGIC;
 
-       if (ftruncate(fd, sizeof(struct fio_mutex)) < 0) {
-               perror("ftruncate mutex");
-               goto err;
-       }
+       ret = mutex_cond_init_pshared(&mutex->lock, &mutex->cond);
+       if (ret)
+               return ret;
+
+       return 0;
+}
+
+struct fio_mutex *fio_mutex_init(int value)
+{
+       struct fio_mutex *mutex = NULL;
 
        mutex = (void *) mmap(NULL, sizeof(struct fio_mutex),
-                               PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0);
+                               PROT_READ | PROT_WRITE,
+                               OS_MAP_ANON | MAP_SHARED, -1, 0);
        if (mutex == MAP_FAILED) {
                perror("mmap mutex");
-               close(fd);
-               mutex = NULL;
-               goto err;
+               return NULL;
        }
 
-       unlink(mutex_name);
-       mutex->mutex_fd = fd;
-       mutex->value = value;
+       if (!__fio_mutex_init(mutex, value))
+               return mutex;
 
-       if (pthread_mutexattr_init(&attr)) {
-               perror("pthread_mutexattr_init");
-               goto err;
-       }
-       if (pthread_mutexattr_setpshared(&attr, PTHREAD_PROCESS_SHARED)) {
-               perror("pthread_mutexattr_setpshared");
-               goto err;
-       }
-
-       pthread_condattr_init(&cond);
-       pthread_condattr_setpshared(&cond, PTHREAD_PROCESS_SHARED);
-       pthread_cond_init(&mutex->cond, &cond);
+       fio_mutex_remove(mutex);
+       return NULL;
+}
 
-       if (pthread_mutex_init(&mutex->lock, &attr)) {
-               perror("pthread_mutex_init");
-               goto err;
-       }
+static bool mutex_timed_out(struct timespec *t, unsigned int msecs)
+{
+       struct timeval tv;
+       struct timespec now;
 
-       return mutex;
-err:
-       if (mutex)
-               fio_mutex_remove(mutex);
+       gettimeofday(&tv, NULL);
+       now.tv_sec = tv.tv_sec;
+       now.tv_nsec = tv.tv_usec * 1000;
 
-       unlink(mutex_name);
-       return NULL;
+       return mtime_since(t, &now) >= msecs;
 }
 
-void fio_mutex_down(struct fio_mutex *mutex)
+int fio_mutex_down_timeout(struct fio_mutex *mutex, unsigned int msecs)
 {
+       struct timeval tv_s;
+       struct timespec base;
+       struct timespec t;
+       int ret = 0;
+
+       assert(mutex->magic == FIO_MUTEX_MAGIC);
+
+       gettimeofday(&tv_s, NULL);
+       base.tv_sec = t.tv_sec = tv_s.tv_sec;
+       base.tv_nsec = t.tv_nsec = tv_s.tv_usec * 1000;
+
+       t.tv_sec += msecs / 1000;
+       t.tv_nsec += ((msecs * 1000000ULL) % 1000000000);
+       if (t.tv_nsec >= 1000000000) {
+               t.tv_nsec -= 1000000000;
+               t.tv_sec++;
+       }
+
        pthread_mutex_lock(&mutex->lock);
 
-       while (!mutex->value) {
-               mutex->waiters++;
-               pthread_cond_wait(&mutex->cond, &mutex->lock);
-               mutex->waiters--;
+       mutex->waiters++;
+       while (!mutex->value && !ret) {
+               /*
+                * Some platforms (FreeBSD 9?) seems to return timed out
+                * way too early, double check.
+                */
+               ret = pthread_cond_timedwait(&mutex->cond, &mutex->lock, &t);
+               if (ret == ETIMEDOUT && !mutex_timed_out(&base, msecs))
+                       ret = 0;
+       }
+       mutex->waiters--;
+
+       if (!ret) {
+               mutex->value--;
+               pthread_mutex_unlock(&mutex->lock);
+               return 0;
        }
 
-       mutex->value--;
        pthread_mutex_unlock(&mutex->lock);
+       return ret;
 }
 
-void fio_mutex_up(struct fio_mutex *mutex)
+bool fio_mutex_down_trylock(struct fio_mutex *mutex)
 {
+       bool ret = true;
+
+       assert(mutex->magic == FIO_MUTEX_MAGIC);
+
        pthread_mutex_lock(&mutex->lock);
-       read_barrier();
-       if (!mutex->value && mutex->waiters)
-               pthread_cond_signal(&mutex->cond);
-       mutex->value++;
+       if (mutex->value) {
+               mutex->value--;
+               ret = false;
+       }
        pthread_mutex_unlock(&mutex->lock);
+
+       return ret;
 }
 
-void fio_mutex_down_write(struct fio_mutex *mutex)
+void fio_mutex_down(struct fio_mutex *mutex)
 {
+       assert(mutex->magic == FIO_MUTEX_MAGIC);
+
        pthread_mutex_lock(&mutex->lock);
 
-       while (mutex->value != 0) {
+       while (!mutex->value) {
                mutex->waiters++;
                pthread_cond_wait(&mutex->cond, &mutex->lock);
                mutex->waiters--;
@@ -112,36 +148,20 @@ void fio_mutex_down_write(struct fio_mutex *mutex)
        pthread_mutex_unlock(&mutex->lock);
 }
 
-void fio_mutex_down_read(struct fio_mutex *mutex)
+void fio_mutex_up(struct fio_mutex *mutex)
 {
-       pthread_mutex_lock(&mutex->lock);
-
-       while (mutex->value < 0) {
-               mutex->waiters++;
-               pthread_cond_wait(&mutex->cond, &mutex->lock);
-               mutex->waiters--;
-       }
+       int do_wake = 0;
 
-       mutex->value++;
-       pthread_mutex_unlock(&mutex->lock);
-}
+       assert(mutex->magic == FIO_MUTEX_MAGIC);
 
-void fio_mutex_up_read(struct fio_mutex *mutex)
-{
        pthread_mutex_lock(&mutex->lock);
-       mutex->value--;
        read_barrier();
-       if (mutex->value >= 0 && mutex->waiters)
-               pthread_cond_signal(&mutex->cond);
-       pthread_mutex_unlock(&mutex->lock);
-}
-
-void fio_mutex_up_write(struct fio_mutex *mutex)
-{
-       pthread_mutex_lock(&mutex->lock);
+       if (!mutex->value && mutex->waiters)
+               do_wake = 1;
        mutex->value++;
-       read_barrier();
-       if (mutex->value >= 0 && mutex->waiters)
+
+       if (do_wake)
                pthread_cond_signal(&mutex->cond);
+
        pthread_mutex_unlock(&mutex->lock);
 }