root/sys/sys/sx.h
/*-
 * SPDX-License-Identifier: BSD-2-Clause
 *
 * Copyright (c) 2007 Attilio Rao <attilio@freebsd.org>
 * Copyright (c) 2001 Jason Evans <jasone@freebsd.org>
 * 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(s), this list of conditions and the following disclaimer as
 *    the first lines of this file unmodified other than the possible 
 *    addition of one or more copyright notices.
 * 2. Redistributions in binary form must reproduce the above copyright
 *    notice(s), this list of conditions and the following disclaimer in the
 *    documentation and/or other materials provided with the distribution.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER(S) ``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 THE COPYRIGHT HOLDER(S) 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.
 */

#ifndef _SYS_SX_H_
#define _SYS_SX_H_

#include <sys/_lock.h>
#include <sys/_sx.h>

#ifdef  _KERNEL
#include <sys/pcpu.h>
#include <sys/lock_profile.h>
#include <sys/lockstat.h>
#include <machine/atomic.h>
#endif

/*
 * In general, the sx locks and rwlocks use very similar algorithms.
 * The main difference in the implementations is how threads are
 * blocked when a lock is unavailable.  For this, sx locks use sleep
 * queues which do not support priority propagation, and rwlocks use
 * turnstiles which do.
 *
 * The sx_lock field consists of several fields.  The low bit
 * indicates if the lock is locked with a shared or exclusive lock.  A
 * value of 0 indicates an exclusive lock, and a value of 1 indicates
 * a shared lock.  Bit 1 is a boolean indicating if there are any
 * threads waiting for a shared lock.  Bit 2 is a boolean indicating
 * if there are any threads waiting for an exclusive lock.  Bit 3 is a
 * boolean indicating if an exclusive lock is recursively held.  The
 * rest of the variable's definition is dependent on the value of the
 * first bit.  For an exclusive lock, it is a pointer to the thread
 * holding the lock, similar to the mtx_lock field of mutexes.  For
 * shared locks, it is a count of read locks that are held.
 *
 * When the lock is not locked by any thread, it is encoded as a
 * shared lock with zero waiters.
 */

#define SX_LOCK_SHARED                  0x01
#define SX_LOCK_SHARED_WAITERS          0x02
#define SX_LOCK_EXCLUSIVE_WAITERS       0x04
#define SX_LOCK_WRITE_SPINNER           0x08
#define SX_LOCK_RECURSED                0x10
#define SX_LOCK_FLAGMASK                                                \
        (SX_LOCK_SHARED | SX_LOCK_SHARED_WAITERS |                      \
        SX_LOCK_EXCLUSIVE_WAITERS | SX_LOCK_RECURSED | SX_LOCK_WRITE_SPINNER)
#define SX_LOCK_WAITERS                 (SX_LOCK_SHARED_WAITERS | SX_LOCK_EXCLUSIVE_WAITERS)

#define SX_OWNER(x)                     ((x) & ~SX_LOCK_FLAGMASK)
#define SX_SHARERS_SHIFT                5
#define SX_SHARERS(x)                   (SX_OWNER(x) >> SX_SHARERS_SHIFT)
#define SX_SHARERS_LOCK(x)                                              \
        ((x) << SX_SHARERS_SHIFT | SX_LOCK_SHARED)
#define SX_ONE_SHARER                   (1 << SX_SHARERS_SHIFT)

#define SX_LOCK_UNLOCKED                SX_SHARERS_LOCK(0)
#define SX_LOCK_DESTROYED                                               \
        (SX_LOCK_SHARED_WAITERS | SX_LOCK_EXCLUSIVE_WAITERS)

#ifdef _KERNEL

#define sx_recurse      lock_object.lo_data

#define SX_READ_VALUE(sx)       ((sx)->sx_lock)

#define lv_sx_owner(v) \
        ((v & SX_LOCK_SHARED) ? NULL : (struct thread *)SX_OWNER(v))

/*
 * Function prototipes.  Routines that start with an underscore are not part
 * of the public interface and are wrappered with a macro.
 */
void    sx_sysinit(const void *arg);
#define sx_init(sx, desc)       sx_init_flags((sx), (desc), 0)
void    sx_init_flags(struct sx *sx, const char *description, int opts);
void    sx_destroy(struct sx *sx);
int     sx_try_slock_int(struct sx *sx LOCK_FILE_LINE_ARG_DEF);
int     sx_try_slock_(struct sx *sx, const char *file, int line);
int     sx_try_xlock_int(struct sx *sx LOCK_FILE_LINE_ARG_DEF);
int     sx_try_xlock_(struct sx *sx, const char *file, int line);
int     sx_try_upgrade_int(struct sx *sx LOCK_FILE_LINE_ARG_DEF);
int     sx_try_upgrade_(struct sx *sx, const char *file, int line);
void    sx_downgrade_int(struct sx *sx LOCK_FILE_LINE_ARG_DEF);
void    sx_downgrade_(struct sx *sx, const char *file, int line);
int     _sx_slock_int(struct sx *sx, int opts LOCK_FILE_LINE_ARG_DEF);
int     _sx_slock(struct sx *sx, int opts, const char *file, int line);
int     _sx_xlock(struct sx *sx, int opts, const char *file, int line);
void    _sx_sunlock_int(struct sx *sx LOCK_FILE_LINE_ARG_DEF);
void    _sx_sunlock(struct sx *sx, const char *file, int line);
void    _sx_xunlock(struct sx *sx, const char *file, int line);
int     _sx_xlock_hard(struct sx *sx, uintptr_t x, int opts LOCK_FILE_LINE_ARG_DEF);
void    _sx_xunlock_hard(struct sx *sx, uintptr_t x LOCK_FILE_LINE_ARG_DEF);
#if defined(INVARIANTS) || defined(INVARIANT_SUPPORT)
void    _sx_assert(const struct sx *sx, int what, const char *file, int line);
#endif
#ifdef DDB
int     sx_chain(struct thread *td, struct thread **ownerp);
#endif

struct sx_args {
        struct sx       *sa_sx;
        const char      *sa_desc;
        int             sa_flags;
};

#define SX_SYSINIT_FLAGS(name, sxa, desc, flags)                        \
        static struct sx_args name##_args = {                           \
                (sxa),                                                  \
                (desc),                                                 \
                (flags)                                                 \
        };                                                              \
        SYSINIT(name##_sx_sysinit, SI_SUB_LOCK, SI_ORDER_MIDDLE,        \
            sx_sysinit, &name##_args);                                  \
        SYSUNINIT(name##_sx_sysuninit, SI_SUB_LOCK, SI_ORDER_MIDDLE,    \
            sx_destroy, (sxa))

#define SX_SYSINIT(name, sxa, desc)     SX_SYSINIT_FLAGS(name, sxa, desc, 0)

/*
 * Full lock operations that are suitable to be inlined in non-debug kernels.
 * If the lock can't be acquired or released trivially then the work is
 * deferred to 'tougher' functions.
 */

#if     (LOCK_DEBUG == 0)
/* Acquire an exclusive lock. */
static __inline int
__sx_xlock(struct sx *sx, struct thread *td, int opts, const char *file,
    int line)
{
        uintptr_t tid = (uintptr_t)td;
        uintptr_t v = SX_LOCK_UNLOCKED;
        int error = 0;

        if (__predict_false(LOCKSTAT_PROFILE_ENABLED(sx__acquire) ||
            !atomic_fcmpset_acq_ptr(&sx->sx_lock, &v, tid)))
                error = _sx_xlock_hard(sx, v, opts);

        return (error);
}

/* Release an exclusive lock. */
static __inline void
__sx_xunlock(struct sx *sx, struct thread *td, const char *file, int line)
{
        uintptr_t x = (uintptr_t)td;

        if (__predict_false(LOCKSTAT_PROFILE_ENABLED(sx__release) ||
            !atomic_fcmpset_rel_ptr(&sx->sx_lock, &x, SX_LOCK_UNLOCKED)))
                _sx_xunlock_hard(sx, x);
}
#endif

/*
 * Public interface for lock operations.
 */
#ifndef LOCK_DEBUG
#error  "LOCK_DEBUG not defined, include <sys/lock.h> before <sys/sx.h>"
#endif
#if     (LOCK_DEBUG > 0) || defined(SX_NOINLINE)
#define sx_xlock_(sx, file, line)                                       \
        (void)_sx_xlock((sx), 0, (file), (line))
#define sx_xlock_sig_(sx, file, line)                                   \
        _sx_xlock((sx), SX_INTERRUPTIBLE, (file), (line))
#define sx_xunlock_(sx, file, line)                                     \
        _sx_xunlock((sx), (file), (line))
#else
#define sx_xlock_(sx, file, line)                                       \
        (void)__sx_xlock((sx), curthread, 0, (file), (line))
#define sx_xlock_sig_(sx, file, line)                                   \
        __sx_xlock((sx), curthread, SX_INTERRUPTIBLE, (file), (line))
#define sx_xunlock_(sx, file, line)                                     \
        __sx_xunlock((sx), curthread, (file), (line))
#endif  /* LOCK_DEBUG > 0 || SX_NOINLINE */
#if     (LOCK_DEBUG > 0)
#define sx_slock_(sx, file, line)                                       \
        (void)_sx_slock((sx), 0, (file), (line))
#define sx_slock_sig_(sx, file, line)                                   \
        _sx_slock((sx), SX_INTERRUPTIBLE, (file) , (line))
#define sx_sunlock_(sx, file, line)                                     \
        _sx_sunlock((sx), (file), (line))
#define sx_try_slock(sx)        sx_try_slock_((sx), LOCK_FILE, LOCK_LINE)
#define sx_try_xlock(sx)        sx_try_xlock_((sx), LOCK_FILE, LOCK_LINE)
#define sx_try_upgrade(sx)      sx_try_upgrade_((sx), LOCK_FILE, LOCK_LINE)
#define sx_downgrade(sx)        sx_downgrade_((sx), LOCK_FILE, LOCK_LINE)
#else
#define sx_slock_(sx, file, line)                                       \
        (void)_sx_slock_int((sx), 0)
#define sx_slock_sig_(sx, file, line)                                   \
        _sx_slock_int((sx), SX_INTERRUPTIBLE)
#define sx_sunlock_(sx, file, line)                                     \
        _sx_sunlock_int((sx))
#define sx_try_slock(sx)        sx_try_slock_int((sx))
#define sx_try_xlock(sx)        sx_try_xlock_int((sx))
#define sx_try_upgrade(sx)      sx_try_upgrade_int((sx))
#define sx_downgrade(sx)        sx_downgrade_int((sx))
#endif
#ifdef INVARIANTS
#define sx_assert_(sx, what, file, line)                                \
        _sx_assert((sx), (what), (file), (line))
#else
#define sx_assert_(sx, what, file, line)        (void)0
#endif

#define sx_xlock(sx)            sx_xlock_((sx), LOCK_FILE, LOCK_LINE)
#define sx_xlock_sig(sx)        sx_xlock_sig_((sx), LOCK_FILE, LOCK_LINE)
#define sx_xunlock(sx)          sx_xunlock_((sx), LOCK_FILE, LOCK_LINE)
#define sx_slock(sx)            sx_slock_((sx), LOCK_FILE, LOCK_LINE)
#define sx_slock_sig(sx)        sx_slock_sig_((sx), LOCK_FILE, LOCK_LINE)
#define sx_sunlock(sx)          sx_sunlock_((sx), LOCK_FILE, LOCK_LINE)
#define sx_assert(sx, what)     sx_assert_((sx), (what), __FILE__, __LINE__)

/*
 * Return a pointer to the owning thread if the lock is exclusively
 * locked.
 */
#define sx_xholder(sx)                                                  \
        ((sx)->sx_lock & SX_LOCK_SHARED ? NULL :                        \
        (struct thread *)SX_OWNER((sx)->sx_lock))

#define sx_xlocked(sx)                                                  \
        (((sx)->sx_lock & ~(SX_LOCK_FLAGMASK & ~SX_LOCK_SHARED)) ==     \
            (uintptr_t)curthread)

#define sx_unlock_(sx, file, line) __extension__ ({                     \
        if (sx_xlocked(sx))                                             \
                sx_xunlock_(sx, file, line);                            \
        else                                                            \
                sx_sunlock_(sx, file, line);                            \
        (void)0; /* ensure void type for expression */                  \
})

#define sx_unlock(sx)   sx_unlock_((sx), LOCK_FILE, LOCK_LINE)

#define sx_sleep(chan, sx, pri, wmesg, timo)                            \
        _sleep((chan), &(sx)->lock_object, (pri), (wmesg),              \
            tick_sbt * (timo), 0,  C_HARDCLOCK)

/*
 * Options passed to sx_init_flags().
 */
#define SX_DUPOK                0x01
#define SX_NOPROFILE            0x02
#define SX_NOWITNESS            0x04
#define SX_QUIET                0x08
#define SX_RECURSE              0x20
#define SX_NEW                  0x40

/*
 * Options passed to sx_*lock_hard().
 */
#define SX_INTERRUPTIBLE        0x40

#if defined(INVARIANTS) || defined(INVARIANT_SUPPORT)
#define SA_LOCKED               LA_LOCKED
#define SA_SLOCKED              LA_SLOCKED
#define SA_XLOCKED              LA_XLOCKED
#define SA_UNLOCKED             LA_UNLOCKED
#define SA_RECURSED             LA_RECURSED
#define SA_NOTRECURSED          LA_NOTRECURSED

/* Backwards compatibility. */
#define SX_LOCKED               LA_LOCKED
#define SX_SLOCKED              LA_SLOCKED
#define SX_XLOCKED              LA_XLOCKED
#define SX_UNLOCKED             LA_UNLOCKED
#define SX_RECURSED             LA_RECURSED
#define SX_NOTRECURSED          LA_NOTRECURSED
#endif

#endif /* _KERNEL */

#ifdef _STANDALONE
/* since we have no threads in the boot loader, trivially implement no-op version */
#define sx_xlock(s)     do {} while (0)
#define sx_try_xlock(s) (1)
#define sx_xunlock(s)   do {} while (0)
#define SX_DUPOK        0
#define SX_NEW          0
#define SX_NOWITNESS    0

static __inline void
sx_init_flags(struct sx *sx, const char *description, int opts)
{

}

static __inline void
sx_destroy(struct sx *sx)
{

}
#endif /* _STANDALONE */

#endif /* !_SYS_SX_H_ */