summaryrefslogtreecommitdiffstats
path: root/freebsd/sys/mutex.h
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@oarcorp.com>2012-03-08 07:25:21 -0600
committerJoel Sherrill <joel.sherrill@oarcorp.com>2012-03-08 07:25:21 -0600
commite2d2bf579b8d9ac67c1fdf0ad419b22860b93b35 (patch)
tree4f285040086226090aa9f664e011ffd8ced0a03a /freebsd/sys/mutex.h
parentAdd wish list for freebsd-to-rtems.py (diff)
downloadrtems-libbsd-e2d2bf579b8d9ac67c1fdf0ad419b22860b93b35.tar.bz2
Move rtems/freebsd to freebsd and contrib to freebsd/contrib
Diffstat (limited to 'freebsd/sys/mutex.h')
-rw-r--r--freebsd/sys/mutex.h463
1 files changed, 463 insertions, 0 deletions
diff --git a/freebsd/sys/mutex.h b/freebsd/sys/mutex.h
new file mode 100644
index 00000000..2961ae4e
--- /dev/null
+++ b/freebsd/sys/mutex.h
@@ -0,0 +1,463 @@
+/*-
+ * Copyright (c) 1997 Berkeley Software Design, Inc. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ * notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ * notice, this list of conditions and the following disclaimer in the
+ * documentation and/or other materials provided with the distribution.
+ * 3. Berkeley Software Design Inc's name may not be used to endorse or
+ * promote products derived from this software without specific prior
+ * written permission.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BERKELEY SOFTWARE DESIGN INC ``AS IS'' AND
+ * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+ * ARE DISCLAIMED. IN NO EVENT SHALL BERKELEY SOFTWARE DESIGN INC BE LIABLE
+ * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+ * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
+ * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+ * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
+ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+ * SUCH DAMAGE.
+ *
+ * from BSDI $Id: mutex.h,v 2.7.2.35 2000/04/27 03:10:26 cp Exp $
+ * $FreeBSD$
+ */
+
+#ifndef _SYS_MUTEX_HH_
+#define _SYS_MUTEX_HH_
+
+#ifndef LOCORE
+#include <rtems/freebsd/sys/queue.h>
+#include <rtems/freebsd/sys/_lock.h>
+#include <rtems/freebsd/sys/_mutex.h>
+
+#ifdef _KERNEL
+#include <rtems/freebsd/sys/pcpu.h>
+#include <rtems/freebsd/sys/lock_profile.h>
+#include <rtems/freebsd/sys/lockstat.h>
+#include <rtems/freebsd/machine/atomic.h>
+#include <rtems/freebsd/machine/cpufunc.h>
+#endif /* _KERNEL_ */
+#endif /* !LOCORE */
+
+#include <rtems/freebsd/machine/mutex.h>
+
+#ifdef _KERNEL
+
+#ifdef __rtems__
+#define MUTEX_NOINLINE 1
+#endif /* __rtems__ */
+/*
+ * Mutex types and options passed to mtx_init(). MTX_QUIET and MTX_DUPOK
+ * can also be passed in.
+ */
+#define MTX_DEF 0x00000000 /* DEFAULT (sleep) lock */
+#define MTX_SPIN 0x00000001 /* Spin lock (disables interrupts) */
+#define MTX_RECURSE 0x00000004 /* Option: lock allowed to recurse */
+#define MTX_NOWITNESS 0x00000008 /* Don't do any witness checking. */
+#define MTX_NOPROFILE 0x00000020 /* Don't profile this lock */
+
+/*
+ * Option flags passed to certain lock/unlock routines, through the use
+ * of corresponding mtx_{lock,unlock}_flags() interface macros.
+ */
+#define MTX_QUIET LOP_QUIET /* Don't log a mutex event */
+#define MTX_DUPOK LOP_DUPOK /* Don't log a duplicate acquire */
+
+/*
+ * State bits kept in mutex->mtx_lock, for the DEFAULT lock type. None of this,
+ * with the exception of MTX_UNOWNED, applies to spin locks.
+ */
+#define MTX_RECURSED 0x00000001 /* lock recursed (for MTX_DEF only) */
+#define MTX_CONTESTED 0x00000002 /* lock contested (for MTX_DEF only) */
+#define MTX_UNOWNED 0x00000004 /* Cookie for free mutex */
+#define MTX_FLAGMASK (MTX_RECURSED | MTX_CONTESTED | MTX_UNOWNED)
+
+/*
+ * Value stored in mutex->mtx_lock to denote a destroyed mutex.
+ */
+#define MTX_DESTROYED (MTX_CONTESTED | MTX_UNOWNED)
+
+#endif /* _KERNEL */
+
+#ifndef LOCORE
+
+/*
+ * XXX: Friendly reminder to fix things in MP code that is presently being
+ * XXX: worked on.
+ */
+#define mp_fixme(string)
+
+#ifdef _KERNEL
+
+/*
+ * Prototypes
+ *
+ * NOTE: Functions prepended with `_' (underscore) are exported to other parts
+ * of the kernel via macros, thus allowing us to use the cpp LOCK_FILE
+ * and LOCK_LINE. These functions should not be called directly by any
+ * code using the API. Their macros cover their functionality.
+ *
+ * [See below for descriptions]
+ *
+ */
+void mtx_init(struct mtx *m, const char *name, const char *type, int opts);
+void mtx_destroy(struct mtx *m);
+void mtx_sysinit(void *arg);
+void mutex_init(void);
+void _mtx_lock_sleep(struct mtx *m, uintptr_t tid, int opts,
+ const char *file, int line);
+void _mtx_unlock_sleep(struct mtx *m, int opts, const char *file, int line);
+#ifdef SMP
+void _mtx_lock_spin(struct mtx *m, uintptr_t tid, int opts,
+ const char *file, int line);
+#endif
+void _mtx_unlock_spin(struct mtx *m, int opts, const char *file, int line);
+int _mtx_trylock(struct mtx *m, int opts, const char *file, int line);
+void _mtx_lock_flags(struct mtx *m, int opts, const char *file, int line);
+void _mtx_unlock_flags(struct mtx *m, int opts, const char *file, int line);
+void _mtx_lock_spin_flags(struct mtx *m, int opts, const char *file,
+ int line);
+void _mtx_unlock_spin_flags(struct mtx *m, int opts, const char *file,
+ int line);
+#if defined(INVARIANTS) || defined(INVARIANT_SUPPORT)
+void _mtx_assert(struct mtx *m, int what, const char *file, int line);
+#endif
+void _thread_lock_flags(struct thread *, int, const char *, int);
+
+#define thread_lock(tdp) \
+ _thread_lock_flags((tdp), 0, __FILE__, __LINE__)
+#define thread_lock_flags(tdp, opt) \
+ _thread_lock_flags((tdp), (opt), __FILE__, __LINE__)
+#define thread_unlock(tdp) \
+ mtx_unlock_spin((tdp)->td_lock)
+
+#define mtx_recurse lock_object.lo_data
+
+/*
+ * We define our machine-independent (unoptimized) mutex micro-operations
+ * here, if they are not already defined in the machine-dependent mutex.h
+ */
+
+/* Try to obtain mtx_lock once. */
+#ifndef _obtain_lock
+#define _obtain_lock(mp, tid) \
+ atomic_cmpset_acq_ptr(&(mp)->mtx_lock, MTX_UNOWNED, (tid))
+#endif
+
+/* Try to release mtx_lock if it is unrecursed and uncontested. */
+#ifndef _release_lock
+#define _release_lock(mp, tid) \
+ atomic_cmpset_rel_ptr(&(mp)->mtx_lock, (tid), MTX_UNOWNED)
+#endif
+
+/* Release mtx_lock quickly, assuming we own it. */
+#ifndef _release_lock_quick
+#define _release_lock_quick(mp) \
+ atomic_store_rel_ptr(&(mp)->mtx_lock, MTX_UNOWNED)
+#endif
+
+/*
+ * Obtain a sleep lock inline, or call the "hard" function if we can't get it
+ * easy.
+ */
+#ifndef _get_sleep_lock
+#define _get_sleep_lock(mp, tid, opts, file, line) do { \
+ uintptr_t _tid = (uintptr_t)(tid); \
+ if (!_obtain_lock((mp), _tid)) \
+ _mtx_lock_sleep((mp), _tid, (opts), (file), (line)); \
+ else \
+ LOCKSTAT_PROFILE_OBTAIN_LOCK_SUCCESS(LS_MTX_LOCK_ACQUIRE, \
+ mp, 0, 0, (file), (line)); \
+} while (0)
+#endif
+
+/*
+ * Obtain a spin lock inline, or call the "hard" function if we can't get it
+ * easy. For spinlocks, we handle recursion inline (it turns out that function
+ * calls can be significantly expensive on some architectures).
+ * Since spin locks are not _too_ common, inlining this code is not too big
+ * a deal.
+ */
+#ifndef _get_spin_lock
+#ifdef SMP
+#define _get_spin_lock(mp, tid, opts, file, line) do { \
+ uintptr_t _tid = (uintptr_t)(tid); \
+ spinlock_enter(); \
+ if (!_obtain_lock((mp), _tid)) { \
+ if ((mp)->mtx_lock == _tid) \
+ (mp)->mtx_recurse++; \
+ else { \
+ _mtx_lock_spin((mp), _tid, (opts), (file), (line)); \
+ } \
+ } else \
+ LOCKSTAT_PROFILE_OBTAIN_LOCK_SUCCESS(LS_MTX_SPIN_LOCK_ACQUIRE, \
+ mp, 0, 0, (file), (line)); \
+} while (0)
+#else /* SMP */
+#define _get_spin_lock(mp, tid, opts, file, line) do { \
+ uintptr_t _tid = (uintptr_t)(tid); \
+ \
+ spinlock_enter(); \
+ if ((mp)->mtx_lock == _tid) \
+ (mp)->mtx_recurse++; \
+ else { \
+ KASSERT((mp)->mtx_lock == MTX_UNOWNED, ("corrupt spinlock")); \
+ (mp)->mtx_lock = _tid; \
+ } \
+} while (0)
+#endif /* SMP */
+#endif
+
+/*
+ * Release a sleep lock inline, or call the "hard" function if we can't do it
+ * easy.
+ */
+#ifndef _rel_sleep_lock
+#define _rel_sleep_lock(mp, tid, opts, file, line) do { \
+ uintptr_t _tid = (uintptr_t)(tid); \
+ \
+ if (!_release_lock((mp), _tid)) \
+ _mtx_unlock_sleep((mp), (opts), (file), (line)); \
+} while (0)
+#endif
+
+/*
+ * For spinlocks, we can handle everything inline, as it's pretty simple and
+ * a function call would be too expensive (at least on some architectures).
+ * Since spin locks are not _too_ common, inlining this code is not too big
+ * a deal.
+ *
+ * Since we always perform a spinlock_enter() when attempting to acquire a
+ * spin lock, we need to always perform a matching spinlock_exit() when
+ * releasing a spin lock. This includes the recursion cases.
+ */
+#ifndef _rel_spin_lock
+#ifdef SMP
+#define _rel_spin_lock(mp) do { \
+ if (mtx_recursed((mp))) \
+ (mp)->mtx_recurse--; \
+ else { \
+ LOCKSTAT_PROFILE_RELEASE_LOCK(LS_MTX_SPIN_UNLOCK_RELEASE, \
+ mp); \
+ _release_lock_quick((mp)); \
+ } \
+ spinlock_exit(); \
+} while (0)
+#else /* SMP */
+#define _rel_spin_lock(mp) do { \
+ if (mtx_recursed((mp))) \
+ (mp)->mtx_recurse--; \
+ else { \
+ LOCKSTAT_PROFILE_RELEASE_LOCK(LS_MTX_SPIN_UNLOCK_RELEASE, \
+ mp); \
+ (mp)->mtx_lock = MTX_UNOWNED; \
+ } \
+ spinlock_exit(); \
+} while (0)
+#endif /* SMP */
+#endif
+
+/*
+ * Exported lock manipulation interface.
+ *
+ * mtx_lock(m) locks MTX_DEF mutex `m'
+ *
+ * mtx_lock_spin(m) locks MTX_SPIN mutex `m'
+ *
+ * mtx_unlock(m) unlocks MTX_DEF mutex `m'
+ *
+ * mtx_unlock_spin(m) unlocks MTX_SPIN mutex `m'
+ *
+ * mtx_lock_spin_flags(m, opts) and mtx_lock_flags(m, opts) locks mutex `m'
+ * and passes option flags `opts' to the "hard" function, if required.
+ * With these routines, it is possible to pass flags such as MTX_QUIET
+ * to the appropriate lock manipulation routines.
+ *
+ * mtx_trylock(m) attempts to acquire MTX_DEF mutex `m' but doesn't sleep if
+ * it cannot. Rather, it returns 0 on failure and non-zero on success.
+ * It does NOT handle recursion as we assume that if a caller is properly
+ * using this part of the interface, he will know that the lock in question
+ * is _not_ recursed.
+ *
+ * mtx_trylock_flags(m, opts) is used the same way as mtx_trylock() but accepts
+ * relevant option flags `opts.'
+ *
+ * mtx_initialized(m) returns non-zero if the lock `m' has been initialized.
+ *
+ * mtx_owned(m) returns non-zero if the current thread owns the lock `m'
+ *
+ * mtx_recursed(m) returns non-zero if the lock `m' is presently recursed.
+ */
+#define mtx_lock(m) mtx_lock_flags((m), 0)
+#define mtx_lock_spin(m) mtx_lock_spin_flags((m), 0)
+#define mtx_trylock(m) mtx_trylock_flags((m), 0)
+#define mtx_unlock(m) mtx_unlock_flags((m), 0)
+#define mtx_unlock_spin(m) mtx_unlock_spin_flags((m), 0)
+
+struct mtx_pool;
+
+struct mtx_pool *mtx_pool_create(const char *mtx_name, int pool_size, int opts);
+void mtx_pool_destroy(struct mtx_pool **poolp);
+struct mtx *mtx_pool_find(struct mtx_pool *pool, void *ptr);
+struct mtx *mtx_pool_alloc(struct mtx_pool *pool);
+#define mtx_pool_lock(pool, ptr) \
+ mtx_lock(mtx_pool_find((pool), (ptr)))
+#define mtx_pool_lock_spin(pool, ptr) \
+ mtx_lock_spin(mtx_pool_find((pool), (ptr)))
+#define mtx_pool_unlock(pool, ptr) \
+ mtx_unlock(mtx_pool_find((pool), (ptr)))
+#define mtx_pool_unlock_spin(pool, ptr) \
+ mtx_unlock_spin(mtx_pool_find((pool), (ptr)))
+
+/*
+ * mtxpool_lockbuilder is a pool of sleep locks that is not witness
+ * checked and should only be used for building higher level locks.
+ *
+ * mtxpool_sleep is a general purpose pool of sleep mutexes.
+ */
+extern struct mtx_pool *mtxpool_lockbuilder;
+extern struct mtx_pool *mtxpool_sleep;
+
+#ifndef LOCK_DEBUG
+#error LOCK_DEBUG not defined, include <sys/lock.h> before <sys/mutex.h>
+#endif
+#if LOCK_DEBUG > 0 || defined(MUTEX_NOINLINE)
+#define mtx_lock_flags(m, opts) \
+ _mtx_lock_flags((m), (opts), LOCK_FILE, LOCK_LINE)
+#define mtx_unlock_flags(m, opts) \
+ _mtx_unlock_flags((m), (opts), LOCK_FILE, LOCK_LINE)
+#define mtx_lock_spin_flags(m, opts) \
+ _mtx_lock_spin_flags((m), (opts), LOCK_FILE, LOCK_LINE)
+#define mtx_unlock_spin_flags(m, opts) \
+ _mtx_unlock_spin_flags((m), (opts), LOCK_FILE, LOCK_LINE)
+#else /* LOCK_DEBUG == 0 && !MUTEX_NOINLINE */
+#define mtx_lock_flags(m, opts) \
+ _get_sleep_lock((m), curthread, (opts), LOCK_FILE, LOCK_LINE)
+#define mtx_unlock_flags(m, opts) \
+ _rel_sleep_lock((m), curthread, (opts), LOCK_FILE, LOCK_LINE)
+#define mtx_lock_spin_flags(m, opts) \
+ _get_spin_lock((m), curthread, (opts), LOCK_FILE, LOCK_LINE)
+#define mtx_unlock_spin_flags(m, opts) \
+ _rel_spin_lock((m))
+#endif /* LOCK_DEBUG > 0 || MUTEX_NOINLINE */
+
+#define mtx_trylock_flags(m, opts) \
+ _mtx_trylock((m), (opts), LOCK_FILE, LOCK_LINE)
+
+#define mtx_sleep(chan, mtx, pri, wmesg, timo) \
+ _sleep((chan), &(mtx)->lock_object, (pri), (wmesg), (timo))
+
+#define mtx_initialized(m) lock_initalized(&(m)->lock_object)
+
+#ifndef __rtems__
+#define mtx_owned(m) (((m)->mtx_lock & ~MTX_FLAGMASK) == (uintptr_t)curthread)
+
+#define mtx_recursed(m) ((m)->mtx_recurse != 0)
+#else /* __rtems__ */
+int mtx_owned(struct mtx *m);
+int mtx_recursed(struct mtx *m);
+#endif /* __rtems__ */
+
+#define mtx_name(m) ((m)->lock_object.lo_name)
+
+/*
+ * Global locks.
+ */
+extern struct mtx Giant;
+extern struct mtx blocked_lock;
+
+/*
+ * Giant lock manipulation and clean exit macros.
+ * Used to replace return with an exit Giant and return.
+ *
+ * Note that DROP_GIANT*() needs to be paired with PICKUP_GIANT()
+ * The #ifndef is to allow lint-like tools to redefine DROP_GIANT.
+ */
+#ifndef DROP_GIANT
+#define DROP_GIANT() \
+do { \
+ int _giantcnt = 0; \
+ WITNESS_SAVE_DECL(Giant); \
+ \
+ if (mtx_owned(&Giant)) { \
+ WITNESS_SAVE(&Giant.lock_object, Giant); \
+ for (_giantcnt = 0; mtx_owned(&Giant); _giantcnt++) \
+ mtx_unlock(&Giant); \
+ }
+
+#define PICKUP_GIANT() \
+ PARTIAL_PICKUP_GIANT(); \
+} while (0)
+
+#define PARTIAL_PICKUP_GIANT() \
+ mtx_assert(&Giant, MA_NOTOWNED); \
+ if (_giantcnt > 0) { \
+ while (_giantcnt--) \
+ mtx_lock(&Giant); \
+ WITNESS_RESTORE(&Giant.lock_object, Giant); \
+ }
+#endif
+
+#define UGAR(rval) do { \
+ int _val = (rval); \
+ mtx_unlock(&Giant); \
+ return (_val); \
+} while (0)
+
+struct mtx_args {
+ struct mtx *ma_mtx;
+ const char *ma_desc;
+ int ma_opts;
+};
+
+#define MTX_SYSINIT(name, mtx, desc, opts) \
+ static struct mtx_args name##_args = { \
+ (mtx), \
+ (desc), \
+ (opts) \
+ }; \
+ SYSINIT(name##_mtx_sysinit, SI_SUB_LOCK, SI_ORDER_MIDDLE, \
+ mtx_sysinit, &name##_args); \
+ SYSUNINIT(name##_mtx_sysuninit, SI_SUB_LOCK, SI_ORDER_MIDDLE, \
+ mtx_destroy, (mtx))
+
+/*
+ * The INVARIANTS-enabled mtx_assert() functionality.
+ *
+ * The constants need to be defined for INVARIANT_SUPPORT infrastructure
+ * support as _mtx_assert() itself uses them and the latter implies that
+ * _mtx_assert() must build.
+ */
+#if defined(INVARIANTS) || defined(INVARIANT_SUPPORT)
+#define MA_OWNED LA_XLOCKED
+#define MA_NOTOWNED LA_UNLOCKED
+#define MA_RECURSED LA_RECURSED
+#define MA_NOTRECURSED LA_NOTRECURSED
+#endif
+
+#ifdef INVARIANTS
+#define mtx_assert(m, what) \
+ _mtx_assert((m), (what), __FILE__, __LINE__)
+
+#define GIANT_REQUIRED mtx_assert(&Giant, MA_OWNED)
+
+#else /* INVARIANTS */
+#define mtx_assert(m, what) (void)0
+#define GIANT_REQUIRED
+#endif /* INVARIANTS */
+
+/*
+ * Common lock type names.
+ */
+#define MTX_NETWORK_LOCK "network driver"
+
+#endif /* _KERNEL */
+#endif /* !LOCORE */
+#endif /* _SYS_MUTEX_HH_ */