2022-11-30 10:04:34 +00:00
|
|
|
.. _atomics-ref:
|
|
|
|
|
2020-04-06 08:30:05 +00:00
|
|
|
=========================
|
|
|
|
Atomic operations in QEMU
|
|
|
|
=========================
|
|
|
|
|
|
|
|
CPUs perform independent memory operations effectively in random order.
|
|
|
|
but this can be a problem for CPU-CPU interaction (including interactions
|
|
|
|
between QEMU and the guest). Multi-threaded programs use various tools
|
|
|
|
to instruct the compiler and the CPU to restrict the order to something
|
|
|
|
that is consistent with the expectations of the programmer.
|
|
|
|
|
|
|
|
The most basic tool is locking. Mutexes, condition variables and
|
|
|
|
semaphores are used in QEMU, and should be the default approach to
|
|
|
|
synchronization. Anything else is considerably harder, but it's
|
2020-04-06 09:34:12 +00:00
|
|
|
also justified more often than one would like;
|
|
|
|
the most performance-critical parts of QEMU in particular require
|
|
|
|
a very low level approach to concurrency, involving memory barriers
|
|
|
|
and atomic operations. The semantics of concurrent memory accesses are governed
|
|
|
|
by the C11 memory model.
|
2020-04-06 08:30:05 +00:00
|
|
|
|
2020-04-06 09:34:12 +00:00
|
|
|
QEMU provides a header, ``qemu/atomic.h``, which wraps C11 atomics to
|
|
|
|
provide better portability and a less verbose syntax. ``qemu/atomic.h``
|
|
|
|
provides macros that fall in three camps:
|
2020-04-06 08:30:05 +00:00
|
|
|
|
|
|
|
- compiler barriers: ``barrier()``;
|
|
|
|
|
2020-09-23 10:56:46 +00:00
|
|
|
- weak atomic access and manual memory barriers: ``qatomic_read()``,
|
|
|
|
``qatomic_set()``, ``smp_rmb()``, ``smp_wmb()``, ``smp_mb()``,
|
qatomic: add smp_mb__before/after_rmw()
On ARM, seqcst loads and stores (which QEMU does not use) are compiled
respectively as LDAR and STLR instructions. Even though LDAR is
also used for load-acquire operations, it also waits for all STLRs to
leave the store buffer. Thus, LDAR and STLR alone are load-acquire
and store-release operations, but LDAR also provides store-against-load
ordering as long as the previous store is a STLR.
Compare this to ARMv7, where store-release is DMB+STR and load-acquire
is LDR+DMB, but an additional DMB is needed between store-seqcst and
load-seqcst (e.g. DMB+STR+DMB+LDR+DMB); or with x86, where MOV provides
load-acquire and store-release semantics and the two can be reordered.
Likewise, on ARM sequentially consistent read-modify-write operations only
need to use LDAXR and STLXR respectively for the load and the store, while
on x86 they need to use the stronger LOCK prefix.
In a strange twist of events, however, the _stronger_ semantics
of the ARM instructions can end up causing bugs on ARM, not on x86.
The problems occur when seqcst atomics are mixed with relaxed atomics.
QEMU's atomics try to bridge the Linux API (that most of the developers
are familiar with) and the C11 API, and the two have a substantial
difference:
- in Linux, strongly-ordered atomics such as atomic_add_return() affect
the global ordering of _all_ memory operations, including for example
READ_ONCE()/WRITE_ONCE()
- in C11, sequentially consistent atomics (except for seq-cst fences)
only affect the ordering of sequentially consistent operations.
In particular, since relaxed loads are done with LDR on ARM, they are
not ordered against seqcst stores (which are done with STLR).
QEMU implements high-level synchronization primitives with the idea that
the primitives contain the necessary memory barriers, and the callers can
use relaxed atomics (qatomic_read/qatomic_set) or even regular accesses.
This is very much incompatible with the C11 view that seqcst accesses
are only ordered against other seqcst accesses, and requires using seqcst
fences as in the following example:
qatomic_set(&y, 1); qatomic_set(&x, 1);
smp_mb(); smp_mb();
... qatomic_read(&x) ... ... qatomic_read(&y) ...
When a qatomic_*() read-modify write operation is used instead of one
or both stores, developers that are more familiar with the Linux API may
be tempted to omit the smp_mb(), which will work on x86 but not on ARM.
This nasty difference between Linux and C11 read-modify-write operations
has already caused issues in util/async.c and more are being found.
Provide something similar to Linux smp_mb__before/after_atomic(); this
has the double function of documenting clearly why there is a memory
barrier, and avoiding a double barrier on x86 and s390x systems.
The new macro can already be put to use in qatomic_mb_set().
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Reviewed-by: David Hildenbrand <david@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
2023-03-02 10:10:56 +00:00
|
|
|
``smp_mb_acquire()``, ``smp_mb_release()``, ``smp_read_barrier_depends()``,
|
|
|
|
``smp_mb__before_rmw()``, ``smp_mb__after_rmw()``;
|
2020-04-06 08:30:05 +00:00
|
|
|
|
|
|
|
- sequentially consistent atomic access: everything else.
|
|
|
|
|
2020-04-06 09:34:12 +00:00
|
|
|
In general, use of ``qemu/atomic.h`` should be wrapped with more easily
|
|
|
|
used data structures (e.g. the lock-free singly-linked list operations
|
|
|
|
``QSLIST_INSERT_HEAD_ATOMIC`` and ``QSLIST_MOVE_ATOMIC``) or synchronization
|
|
|
|
primitives (such as RCU, ``QemuEvent`` or ``QemuLockCnt``). Bare use of
|
|
|
|
atomic operations and memory barriers should be limited to inter-thread
|
|
|
|
checking of flags and documented thoroughly.
|
|
|
|
|
|
|
|
|
2020-04-06 08:30:05 +00:00
|
|
|
|
|
|
|
Compiler memory barrier
|
|
|
|
=======================
|
|
|
|
|
2020-04-06 09:34:12 +00:00
|
|
|
``barrier()`` prevents the compiler from moving the memory accesses on
|
|
|
|
either side of it to the other side. The compiler barrier has no direct
|
|
|
|
effect on the CPU, which may then reorder things however it wishes.
|
2020-04-06 08:30:05 +00:00
|
|
|
|
|
|
|
``barrier()`` is mostly used within ``qemu/atomic.h`` itself. On some
|
|
|
|
architectures, CPU guarantees are strong enough that blocking compiler
|
|
|
|
optimizations already ensures the correct order of execution. In this
|
|
|
|
case, ``qemu/atomic.h`` will reduce stronger memory barriers to simple
|
|
|
|
compiler barriers.
|
|
|
|
|
|
|
|
Still, ``barrier()`` can be useful when writing code that can be interrupted
|
|
|
|
by signal handlers.
|
|
|
|
|
|
|
|
|
|
|
|
Sequentially consistent atomic access
|
|
|
|
=====================================
|
|
|
|
|
|
|
|
Most of the operations in the ``qemu/atomic.h`` header ensure *sequential
|
|
|
|
consistency*, where "the result of any execution is the same as if the
|
|
|
|
operations of all the processors were executed in some sequential order,
|
|
|
|
and the operations of each individual processor appear in this sequence
|
|
|
|
in the order specified by its program".
|
|
|
|
|
|
|
|
``qemu/atomic.h`` provides the following set of atomic read-modify-write
|
|
|
|
operations::
|
|
|
|
|
2020-09-23 10:56:46 +00:00
|
|
|
void qatomic_inc(ptr)
|
|
|
|
void qatomic_dec(ptr)
|
|
|
|
void qatomic_add(ptr, val)
|
|
|
|
void qatomic_sub(ptr, val)
|
|
|
|
void qatomic_and(ptr, val)
|
|
|
|
void qatomic_or(ptr, val)
|
|
|
|
|
|
|
|
typeof(*ptr) qatomic_fetch_inc(ptr)
|
|
|
|
typeof(*ptr) qatomic_fetch_dec(ptr)
|
|
|
|
typeof(*ptr) qatomic_fetch_add(ptr, val)
|
|
|
|
typeof(*ptr) qatomic_fetch_sub(ptr, val)
|
|
|
|
typeof(*ptr) qatomic_fetch_and(ptr, val)
|
|
|
|
typeof(*ptr) qatomic_fetch_or(ptr, val)
|
|
|
|
typeof(*ptr) qatomic_fetch_xor(ptr, val)
|
|
|
|
typeof(*ptr) qatomic_fetch_inc_nonzero(ptr)
|
|
|
|
typeof(*ptr) qatomic_xchg(ptr, val)
|
|
|
|
typeof(*ptr) qatomic_cmpxchg(ptr, old, new)
|
2020-04-06 08:30:05 +00:00
|
|
|
|
|
|
|
all of which return the old value of ``*ptr``. These operations are
|
2020-04-06 09:34:12 +00:00
|
|
|
polymorphic; they operate on any type that is as wide as a pointer or
|
|
|
|
smaller.
|
2020-04-06 08:30:05 +00:00
|
|
|
|
|
|
|
Similar operations return the new value of ``*ptr``::
|
|
|
|
|
2020-09-23 10:56:46 +00:00
|
|
|
typeof(*ptr) qatomic_inc_fetch(ptr)
|
|
|
|
typeof(*ptr) qatomic_dec_fetch(ptr)
|
|
|
|
typeof(*ptr) qatomic_add_fetch(ptr, val)
|
|
|
|
typeof(*ptr) qatomic_sub_fetch(ptr, val)
|
|
|
|
typeof(*ptr) qatomic_and_fetch(ptr, val)
|
|
|
|
typeof(*ptr) qatomic_or_fetch(ptr, val)
|
|
|
|
typeof(*ptr) qatomic_xor_fetch(ptr, val)
|
2020-04-06 08:30:05 +00:00
|
|
|
|
2020-04-06 09:34:12 +00:00
|
|
|
``qemu/atomic.h`` also provides loads and stores that cannot be reordered
|
|
|
|
with each other::
|
2020-04-06 08:30:05 +00:00
|
|
|
|
2020-09-23 10:56:46 +00:00
|
|
|
typeof(*ptr) qatomic_mb_read(ptr)
|
|
|
|
void qatomic_mb_set(ptr, val)
|
2020-04-06 08:30:05 +00:00
|
|
|
|
2020-04-06 09:34:12 +00:00
|
|
|
However these do not provide sequential consistency and, in particular,
|
|
|
|
they do not participate in the total ordering enforced by
|
|
|
|
sequentially-consistent operations. For this reason they are deprecated.
|
|
|
|
They should instead be replaced with any of the following (ordered from
|
|
|
|
easiest to hardest):
|
2020-04-06 08:30:05 +00:00
|
|
|
|
2020-04-06 09:34:12 +00:00
|
|
|
- accesses inside a mutex or spinlock
|
2020-04-06 08:30:05 +00:00
|
|
|
|
2020-04-06 09:34:12 +00:00
|
|
|
- lightweight synchronization primitives such as ``QemuEvent``
|
2020-04-06 08:30:05 +00:00
|
|
|
|
2020-09-23 10:56:46 +00:00
|
|
|
- RCU operations (``qatomic_rcu_read``, ``qatomic_rcu_set``) when publishing
|
2020-04-06 09:34:12 +00:00
|
|
|
or accessing a new version of a data structure
|
2020-04-06 08:30:05 +00:00
|
|
|
|
2020-09-23 10:56:46 +00:00
|
|
|
- other atomic accesses: ``qatomic_read`` and ``qatomic_load_acquire`` for
|
|
|
|
loads, ``qatomic_set`` and ``qatomic_store_release`` for stores, ``smp_mb``
|
2020-04-06 09:34:12 +00:00
|
|
|
to forbid reordering subsequent loads before a store.
|
2020-04-06 08:30:05 +00:00
|
|
|
|
|
|
|
|
|
|
|
Weak atomic access and manual memory barriers
|
|
|
|
=============================================
|
|
|
|
|
|
|
|
Compared to sequentially consistent atomic access, programming with
|
|
|
|
weaker consistency models can be considerably more complicated.
|
2020-04-06 09:34:12 +00:00
|
|
|
The only guarantees that you can rely upon in this case are:
|
|
|
|
|
|
|
|
- atomic accesses will not cause data races (and hence undefined behavior);
|
|
|
|
ordinary accesses instead cause data races if they are concurrent with
|
|
|
|
other accesses of which at least one is a write. In order to ensure this,
|
|
|
|
the compiler will not optimize accesses out of existence, create unsolicited
|
|
|
|
accesses, or perform other similar optimzations.
|
|
|
|
|
|
|
|
- acquire operations will appear to happen, with respect to the other
|
|
|
|
components of the system, before all the LOAD or STORE operations
|
|
|
|
specified afterwards.
|
|
|
|
|
|
|
|
- release operations will appear to happen, with respect to the other
|
|
|
|
components of the system, after all the LOAD or STORE operations
|
|
|
|
specified before.
|
|
|
|
|
|
|
|
- release operations will *synchronize with* acquire operations;
|
|
|
|
see :ref:`acqrel` for a detailed explanation.
|
2020-04-06 08:30:05 +00:00
|
|
|
|
|
|
|
When using this model, variables are accessed with:
|
|
|
|
|
2020-09-23 10:56:46 +00:00
|
|
|
- ``qatomic_read()`` and ``qatomic_set()``; these prevent the compiler from
|
2020-04-06 08:30:05 +00:00
|
|
|
optimizing accesses out of existence and creating unsolicited
|
|
|
|
accesses, but do not otherwise impose any ordering on loads and
|
|
|
|
stores: both the compiler and the processor are free to reorder
|
|
|
|
them.
|
|
|
|
|
2020-09-23 10:56:46 +00:00
|
|
|
- ``qatomic_load_acquire()``, which guarantees the LOAD to appear to
|
2020-04-06 08:30:05 +00:00
|
|
|
happen, with respect to the other components of the system,
|
|
|
|
before all the LOAD or STORE operations specified afterwards.
|
2020-09-23 10:56:46 +00:00
|
|
|
Operations coming before ``qatomic_load_acquire()`` can still be
|
2020-04-06 08:30:05 +00:00
|
|
|
reordered after it.
|
|
|
|
|
2020-09-23 10:56:46 +00:00
|
|
|
- ``qatomic_store_release()``, which guarantees the STORE to appear to
|
2020-04-06 08:30:05 +00:00
|
|
|
happen, with respect to the other components of the system,
|
2020-04-06 09:34:12 +00:00
|
|
|
after all the LOAD or STORE operations specified before.
|
2020-09-23 10:56:46 +00:00
|
|
|
Operations coming after ``qatomic_store_release()`` can still be
|
2020-04-06 09:34:12 +00:00
|
|
|
reordered before it.
|
2020-04-06 08:30:05 +00:00
|
|
|
|
|
|
|
Restrictions to the ordering of accesses can also be specified
|
|
|
|
using the memory barrier macros: ``smp_rmb()``, ``smp_wmb()``, ``smp_mb()``,
|
|
|
|
``smp_mb_acquire()``, ``smp_mb_release()``, ``smp_read_barrier_depends()``.
|
|
|
|
|
|
|
|
Memory barriers control the order of references to shared memory.
|
|
|
|
They come in six kinds:
|
|
|
|
|
|
|
|
- ``smp_rmb()`` guarantees that all the LOAD operations specified before
|
|
|
|
the barrier will appear to happen before all the LOAD operations
|
|
|
|
specified after the barrier with respect to the other components of
|
|
|
|
the system.
|
|
|
|
|
|
|
|
In other words, ``smp_rmb()`` puts a partial ordering on loads, but is not
|
|
|
|
required to have any effect on stores.
|
|
|
|
|
|
|
|
- ``smp_wmb()`` guarantees that all the STORE operations specified before
|
|
|
|
the barrier will appear to happen before all the STORE operations
|
|
|
|
specified after the barrier with respect to the other components of
|
|
|
|
the system.
|
|
|
|
|
|
|
|
In other words, ``smp_wmb()`` puts a partial ordering on stores, but is not
|
|
|
|
required to have any effect on loads.
|
|
|
|
|
|
|
|
- ``smp_mb_acquire()`` guarantees that all the LOAD operations specified before
|
|
|
|
the barrier will appear to happen before all the LOAD or STORE operations
|
|
|
|
specified after the barrier with respect to the other components of
|
|
|
|
the system.
|
|
|
|
|
|
|
|
- ``smp_mb_release()`` guarantees that all the STORE operations specified *after*
|
|
|
|
the barrier will appear to happen after all the LOAD or STORE operations
|
|
|
|
specified *before* the barrier with respect to the other components of
|
|
|
|
the system.
|
|
|
|
|
|
|
|
- ``smp_mb()`` guarantees that all the LOAD and STORE operations specified
|
|
|
|
before the barrier will appear to happen before all the LOAD and
|
|
|
|
STORE operations specified after the barrier with respect to the other
|
|
|
|
components of the system.
|
|
|
|
|
|
|
|
``smp_mb()`` puts a partial ordering on both loads and stores. It is
|
|
|
|
stronger than both a read and a write memory barrier; it implies both
|
|
|
|
``smp_mb_acquire()`` and ``smp_mb_release()``, but it also prevents STOREs
|
|
|
|
coming before the barrier from overtaking LOADs coming after the
|
|
|
|
barrier and vice versa.
|
|
|
|
|
|
|
|
- ``smp_read_barrier_depends()`` is a weaker kind of read barrier. On
|
|
|
|
most processors, whenever two loads are performed such that the
|
|
|
|
second depends on the result of the first (e.g., the first load
|
|
|
|
retrieves the address to which the second load will be directed),
|
|
|
|
the processor will guarantee that the first LOAD will appear to happen
|
|
|
|
before the second with respect to the other components of the system.
|
2023-04-07 13:40:15 +00:00
|
|
|
Therefore, unlike ``smp_rmb()`` or ``qatomic_load_acquire()``,
|
|
|
|
``smp_read_barrier_depends()`` can be just a compiler barrier on
|
|
|
|
weakly-ordered architectures such as Arm or PPC[#]_.
|
2020-04-06 08:30:05 +00:00
|
|
|
|
|
|
|
Note that the first load really has to have a _data_ dependency and not
|
|
|
|
a control dependency. If the address for the second load is dependent
|
|
|
|
on the first load, but the dependency is through a conditional rather
|
|
|
|
than actually loading the address itself, then it's a _control_
|
|
|
|
dependency and a full read barrier or better is required.
|
|
|
|
|
2023-04-07 13:40:15 +00:00
|
|
|
.. [#] The DEC Alpha is an exception, because ``smp_read_barrier_depends()``
|
|
|
|
needs a processor barrier. On strongly-ordered architectures such
|
|
|
|
as x86 or s390, ``smp_rmb()`` and ``qatomic_load_acquire()`` can
|
|
|
|
also be compiler barriers only.
|
2020-04-06 08:30:05 +00:00
|
|
|
|
2020-09-23 10:56:46 +00:00
|
|
|
Memory barriers and ``qatomic_load_acquire``/``qatomic_store_release`` are
|
2020-04-06 09:34:12 +00:00
|
|
|
mostly used when a data structure has one thread that is always a writer
|
|
|
|
and one thread that is always a reader:
|
|
|
|
|
|
|
|
+----------------------------------+----------------------------------+
|
|
|
|
| thread 1 | thread 2 |
|
|
|
|
+==================================+==================================+
|
|
|
|
| :: | :: |
|
|
|
|
| | |
|
2020-09-23 10:56:46 +00:00
|
|
|
| qatomic_store_release(&a, x); | y = qatomic_load_acquire(&b); |
|
|
|
|
| qatomic_store_release(&b, y); | x = qatomic_load_acquire(&a); |
|
2020-04-06 09:34:12 +00:00
|
|
|
+----------------------------------+----------------------------------+
|
|
|
|
|
|
|
|
In this case, correctness is easy to check for using the "pairing"
|
|
|
|
trick that is explained below.
|
|
|
|
|
|
|
|
Sometimes, a thread is accessing many variables that are otherwise
|
|
|
|
unrelated to each other (for example because, apart from the current
|
|
|
|
thread, exactly one other thread will read or write each of these
|
|
|
|
variables). In this case, it is possible to "hoist" the barriers
|
|
|
|
outside a loop. For example:
|
|
|
|
|
|
|
|
+------------------------------------------+----------------------------------+
|
|
|
|
| before | after |
|
|
|
|
+==========================================+==================================+
|
|
|
|
| :: | :: |
|
|
|
|
| | |
|
|
|
|
| n = 0; | n = 0; |
|
|
|
|
| for (i = 0; i < 10; i++) | for (i = 0; i < 10; i++) |
|
2020-09-23 10:56:46 +00:00
|
|
|
| n += qatomic_load_acquire(&a[i]); | n += qatomic_read(&a[i]); |
|
2020-04-06 09:34:12 +00:00
|
|
|
| | smp_mb_acquire(); |
|
|
|
|
+------------------------------------------+----------------------------------+
|
|
|
|
| :: | :: |
|
|
|
|
| | |
|
|
|
|
| | smp_mb_release(); |
|
|
|
|
| for (i = 0; i < 10; i++) | for (i = 0; i < 10; i++) |
|
2020-09-23 10:56:46 +00:00
|
|
|
| qatomic_store_release(&a[i], false); | qatomic_set(&a[i], false); |
|
2020-04-06 09:34:12 +00:00
|
|
|
+------------------------------------------+----------------------------------+
|
|
|
|
|
|
|
|
Splitting a loop can also be useful to reduce the number of barriers:
|
|
|
|
|
|
|
|
+------------------------------------------+----------------------------------+
|
|
|
|
| before | after |
|
|
|
|
+==========================================+==================================+
|
|
|
|
| :: | :: |
|
|
|
|
| | |
|
|
|
|
| n = 0; | smp_mb_release(); |
|
|
|
|
| for (i = 0; i < 10; i++) { | for (i = 0; i < 10; i++) |
|
2020-09-23 10:56:46 +00:00
|
|
|
| qatomic_store_release(&a[i], false); | qatomic_set(&a[i], false); |
|
2020-04-06 09:34:12 +00:00
|
|
|
| smp_mb(); | smb_mb(); |
|
2020-09-23 10:56:46 +00:00
|
|
|
| n += qatomic_read(&b[i]); | n = 0; |
|
2020-04-06 09:34:12 +00:00
|
|
|
| } | for (i = 0; i < 10; i++) |
|
2020-09-23 10:56:46 +00:00
|
|
|
| | n += qatomic_read(&b[i]); |
|
2020-04-06 09:34:12 +00:00
|
|
|
+------------------------------------------+----------------------------------+
|
|
|
|
|
|
|
|
In this case, a ``smp_mb_release()`` is also replaced with a (possibly cheaper, and clearer
|
|
|
|
as well) ``smp_wmb()``:
|
|
|
|
|
|
|
|
+------------------------------------------+----------------------------------+
|
|
|
|
| before | after |
|
|
|
|
+==========================================+==================================+
|
|
|
|
| :: | :: |
|
|
|
|
| | |
|
|
|
|
| | smp_mb_release(); |
|
|
|
|
| for (i = 0; i < 10; i++) { | for (i = 0; i < 10; i++) |
|
2020-09-23 10:56:46 +00:00
|
|
|
| qatomic_store_release(&a[i], false); | qatomic_set(&a[i], false); |
|
|
|
|
| qatomic_store_release(&b[i], false); | smb_wmb(); |
|
2020-04-06 09:34:12 +00:00
|
|
|
| } | for (i = 0; i < 10; i++) |
|
2020-09-23 10:56:46 +00:00
|
|
|
| | qatomic_set(&b[i], false); |
|
2020-04-06 09:34:12 +00:00
|
|
|
+------------------------------------------+----------------------------------+
|
|
|
|
|
|
|
|
|
|
|
|
.. _acqrel:
|
|
|
|
|
|
|
|
Acquire/release pairing and the *synchronizes-with* relation
|
|
|
|
------------------------------------------------------------
|
|
|
|
|
2020-09-23 10:56:46 +00:00
|
|
|
Atomic operations other than ``qatomic_set()`` and ``qatomic_read()`` have
|
2020-04-06 09:34:12 +00:00
|
|
|
either *acquire* or *release* semantics [#rmw]_. This has two effects:
|
|
|
|
|
|
|
|
.. [#rmw] Read-modify-write operations can have both---acquire applies to the
|
|
|
|
read part, and release to the write.
|
|
|
|
|
|
|
|
- within a thread, they are ordered either before subsequent operations
|
|
|
|
(for acquire) or after previous operations (for release).
|
|
|
|
|
|
|
|
- if a release operation in one thread *synchronizes with* an acquire operation
|
|
|
|
in another thread, the ordering constraints propagates from the first to the
|
|
|
|
second thread. That is, everything before the release operation in the
|
|
|
|
first thread is guaranteed to *happen before* everything after the
|
|
|
|
acquire operation in the second thread.
|
|
|
|
|
|
|
|
The concept of acquire and release semantics is not exclusive to atomic
|
|
|
|
operations; almost all higher-level synchronization primitives also have
|
|
|
|
acquire or release semantics. For example:
|
|
|
|
|
|
|
|
- ``pthread_mutex_lock`` has acquire semantics, ``pthread_mutex_unlock`` has
|
|
|
|
release semantics and synchronizes with a ``pthread_mutex_lock`` for the
|
|
|
|
same mutex.
|
|
|
|
|
|
|
|
- ``pthread_cond_signal`` and ``pthread_cond_broadcast`` have release semantics;
|
|
|
|
``pthread_cond_wait`` has both release semantics (synchronizing with
|
|
|
|
``pthread_mutex_lock``) and acquire semantics (synchronizing with
|
|
|
|
``pthread_mutex_unlock`` and signaling of the condition variable).
|
|
|
|
|
|
|
|
- ``pthread_create`` has release semantics and synchronizes with the start
|
|
|
|
of the new thread; ``pthread_join`` has acquire semantics and synchronizes
|
|
|
|
with the exiting of the thread.
|
|
|
|
|
|
|
|
- ``qemu_event_set`` has release semantics, ``qemu_event_wait`` has
|
|
|
|
acquire semantics.
|
|
|
|
|
|
|
|
For example, in the following example there are no atomic accesses, but still
|
|
|
|
thread 2 is relying on the *synchronizes-with* relation between ``pthread_exit``
|
|
|
|
(release) and ``pthread_join`` (acquire):
|
|
|
|
|
|
|
|
+----------------------+-------------------------------+
|
|
|
|
| thread 1 | thread 2 |
|
|
|
|
+======================+===============================+
|
|
|
|
| :: | :: |
|
|
|
|
| | |
|
|
|
|
| *a = 1; | |
|
|
|
|
| pthread_exit(a); | pthread_join(thread1, &a); |
|
|
|
|
| | x = *a; |
|
|
|
|
+----------------------+-------------------------------+
|
|
|
|
|
|
|
|
Synchronization between threads basically descends from this pairing of
|
|
|
|
a release operation and an acquire operation. Therefore, atomic operations
|
2020-09-23 10:56:46 +00:00
|
|
|
other than ``qatomic_set()`` and ``qatomic_read()`` will almost always be
|
2020-04-06 09:34:12 +00:00
|
|
|
paired with another operation of the opposite kind: an acquire operation
|
|
|
|
will pair with a release operation and vice versa. This rule of thumb is
|
|
|
|
extremely useful; in the case of QEMU, however, note that the other
|
|
|
|
operation may actually be in a driver that runs in the guest!
|
|
|
|
|
|
|
|
``smp_read_barrier_depends()``, ``smp_rmb()``, ``smp_mb_acquire()``,
|
2020-09-23 10:56:46 +00:00
|
|
|
``qatomic_load_acquire()`` and ``qatomic_rcu_read()`` all count
|
2020-04-06 09:34:12 +00:00
|
|
|
as acquire operations. ``smp_wmb()``, ``smp_mb_release()``,
|
2020-09-23 10:56:46 +00:00
|
|
|
``qatomic_store_release()`` and ``qatomic_rcu_set()`` all count as release
|
2020-04-06 09:34:12 +00:00
|
|
|
operations. ``smp_mb()`` counts as both acquire and release, therefore
|
|
|
|
it can pair with any other atomic operation. Here is an example:
|
|
|
|
|
|
|
|
+----------------------+------------------------------+
|
|
|
|
| thread 1 | thread 2 |
|
|
|
|
+======================+==============================+
|
|
|
|
| :: | :: |
|
|
|
|
| | |
|
2020-09-23 10:56:46 +00:00
|
|
|
| qatomic_set(&a, 1);| |
|
2020-04-06 09:34:12 +00:00
|
|
|
| smp_wmb(); | |
|
2020-09-23 10:56:46 +00:00
|
|
|
| qatomic_set(&b, 2);| x = qatomic_read(&b); |
|
2020-04-06 09:34:12 +00:00
|
|
|
| | smp_rmb(); |
|
2020-09-23 10:56:46 +00:00
|
|
|
| | y = qatomic_read(&a); |
|
2020-04-06 09:34:12 +00:00
|
|
|
+----------------------+------------------------------+
|
|
|
|
|
|
|
|
Note that a load-store pair only counts if the two operations access the
|
|
|
|
same variable: that is, a store-release on a variable ``x`` *synchronizes
|
|
|
|
with* a load-acquire on a variable ``x``, while a release barrier
|
|
|
|
synchronizes with any acquire operation. The following example shows
|
|
|
|
correct synchronization:
|
|
|
|
|
|
|
|
+--------------------------------+--------------------------------+
|
|
|
|
| thread 1 | thread 2 |
|
|
|
|
+================================+================================+
|
|
|
|
| :: | :: |
|
|
|
|
| | |
|
2020-09-23 10:56:46 +00:00
|
|
|
| qatomic_set(&a, 1); | |
|
|
|
|
| qatomic_store_release(&b, 2);| x = qatomic_load_acquire(&b);|
|
|
|
|
| | y = qatomic_read(&a); |
|
2020-04-06 09:34:12 +00:00
|
|
|
+--------------------------------+--------------------------------+
|
|
|
|
|
|
|
|
Acquire and release semantics of higher-level primitives can also be
|
|
|
|
relied upon for the purpose of establishing the *synchronizes with*
|
|
|
|
relation.
|
2020-04-06 08:30:05 +00:00
|
|
|
|
|
|
|
Note that the "writing" thread is accessing the variables in the
|
|
|
|
opposite order as the "reading" thread. This is expected: stores
|
2020-04-06 09:34:12 +00:00
|
|
|
before a release operation will normally match the loads after
|
|
|
|
the acquire operation, and vice versa. In fact, this happened already
|
|
|
|
in the ``pthread_exit``/``pthread_join`` example above.
|
|
|
|
|
|
|
|
Finally, this more complex example has more than two accesses and data
|
|
|
|
dependency barriers. It also does not use atomic accesses whenever there
|
|
|
|
cannot be a data race:
|
2020-04-06 08:30:05 +00:00
|
|
|
|
|
|
|
+----------------------+------------------------------+
|
|
|
|
| thread 1 | thread 2 |
|
|
|
|
+======================+==============================+
|
|
|
|
| :: | :: |
|
|
|
|
| | |
|
|
|
|
| b[2] = 1; | |
|
|
|
|
| smp_wmb(); | |
|
|
|
|
| x->i = 2; | |
|
|
|
|
| smp_wmb(); | |
|
2020-09-23 10:56:46 +00:00
|
|
|
| qatomic_set(&a, x);| x = qatomic_read(&a); |
|
2020-04-06 08:30:05 +00:00
|
|
|
| | smp_read_barrier_depends(); |
|
|
|
|
| | y = x->i; |
|
|
|
|
| | smp_read_barrier_depends(); |
|
|
|
|
| | z = b[y]; |
|
|
|
|
+----------------------+------------------------------+
|
|
|
|
|
2020-04-06 09:34:12 +00:00
|
|
|
Comparison with Linux kernel primitives
|
|
|
|
=======================================
|
2020-04-06 08:30:05 +00:00
|
|
|
|
|
|
|
Here is a list of differences between Linux kernel atomic operations
|
|
|
|
and memory barriers, and the equivalents in QEMU:
|
|
|
|
|
|
|
|
- atomic operations in Linux are always on a 32-bit int type and
|
|
|
|
use a boxed ``atomic_t`` type; atomic operations in QEMU are polymorphic
|
|
|
|
and use normal C types.
|
|
|
|
|
|
|
|
- Originally, ``atomic_read`` and ``atomic_set`` in Linux gave no guarantee
|
|
|
|
at all. Linux 4.1 updated them to implement volatile
|
|
|
|
semantics via ``ACCESS_ONCE`` (or the more recent ``READ``/``WRITE_ONCE``).
|
|
|
|
|
2020-09-23 10:56:46 +00:00
|
|
|
QEMU's ``qatomic_read`` and ``qatomic_set`` implement C11 atomic relaxed
|
2020-04-06 08:30:05 +00:00
|
|
|
semantics if the compiler supports it, and volatile semantics otherwise.
|
|
|
|
Both semantics prevent the compiler from doing certain transformations;
|
|
|
|
the difference is that atomic accesses are guaranteed to be atomic,
|
|
|
|
while volatile accesses aren't. Thus, in the volatile case we just cross
|
|
|
|
our fingers hoping that the compiler will generate atomic accesses,
|
|
|
|
since we assume the variables passed are machine-word sized and
|
|
|
|
properly aligned.
|
|
|
|
|
2020-09-23 10:56:46 +00:00
|
|
|
No barriers are implied by ``qatomic_read`` and ``qatomic_set`` in either
|
|
|
|
Linux or QEMU.
|
2020-04-06 08:30:05 +00:00
|
|
|
|
|
|
|
- atomic read-modify-write operations in Linux are of three kinds:
|
|
|
|
|
|
|
|
===================== =========================================
|
|
|
|
``atomic_OP`` returns void
|
|
|
|
``atomic_OP_return`` returns new value of the variable
|
|
|
|
``atomic_fetch_OP`` returns the old value of the variable
|
|
|
|
``atomic_cmpxchg`` returns the old value of the variable
|
|
|
|
===================== =========================================
|
|
|
|
|
2020-04-06 09:34:12 +00:00
|
|
|
In QEMU, the second kind is named ``atomic_OP_fetch``.
|
2020-04-06 08:30:05 +00:00
|
|
|
|
|
|
|
- different atomic read-modify-write operations in Linux imply
|
2023-03-09 11:42:38 +00:00
|
|
|
a different set of memory barriers. In QEMU, all of them enforce
|
|
|
|
sequential consistency: there is a single order in which the
|
|
|
|
program sees them happen.
|
|
|
|
|
|
|
|
- however, according to the C11 memory model that QEMU uses, this order
|
|
|
|
does not propagate to other memory accesses on either side of the
|
|
|
|
read-modify-write operation. As far as those are concerned, the
|
|
|
|
operation consist of just a load-acquire followed by a store-release.
|
|
|
|
Stores that precede the RMW operation, and loads that follow it, can
|
|
|
|
still be reordered and will happen *in the middle* of the read-modify-write
|
|
|
|
operation!
|
|
|
|
|
|
|
|
Therefore, the following example is correct in Linux but not in QEMU:
|
2020-04-06 09:34:12 +00:00
|
|
|
|
|
|
|
+----------------------------------+--------------------------------+
|
|
|
|
| Linux (correct) | QEMU (incorrect) |
|
|
|
|
+==================================+================================+
|
|
|
|
| :: | :: |
|
|
|
|
| | |
|
2020-09-23 10:56:46 +00:00
|
|
|
| a = atomic_fetch_add(&x, 2); | a = qatomic_fetch_add(&x, 2);|
|
|
|
|
| b = READ_ONCE(&y); | b = qatomic_read(&y); |
|
2020-04-06 09:34:12 +00:00
|
|
|
+----------------------------------+--------------------------------+
|
|
|
|
|
|
|
|
because the read of ``y`` can be moved (by either the processor or the
|
|
|
|
compiler) before the write of ``x``.
|
|
|
|
|
qatomic: add smp_mb__before/after_rmw()
On ARM, seqcst loads and stores (which QEMU does not use) are compiled
respectively as LDAR and STLR instructions. Even though LDAR is
also used for load-acquire operations, it also waits for all STLRs to
leave the store buffer. Thus, LDAR and STLR alone are load-acquire
and store-release operations, but LDAR also provides store-against-load
ordering as long as the previous store is a STLR.
Compare this to ARMv7, where store-release is DMB+STR and load-acquire
is LDR+DMB, but an additional DMB is needed between store-seqcst and
load-seqcst (e.g. DMB+STR+DMB+LDR+DMB); or with x86, where MOV provides
load-acquire and store-release semantics and the two can be reordered.
Likewise, on ARM sequentially consistent read-modify-write operations only
need to use LDAXR and STLXR respectively for the load and the store, while
on x86 they need to use the stronger LOCK prefix.
In a strange twist of events, however, the _stronger_ semantics
of the ARM instructions can end up causing bugs on ARM, not on x86.
The problems occur when seqcst atomics are mixed with relaxed atomics.
QEMU's atomics try to bridge the Linux API (that most of the developers
are familiar with) and the C11 API, and the two have a substantial
difference:
- in Linux, strongly-ordered atomics such as atomic_add_return() affect
the global ordering of _all_ memory operations, including for example
READ_ONCE()/WRITE_ONCE()
- in C11, sequentially consistent atomics (except for seq-cst fences)
only affect the ordering of sequentially consistent operations.
In particular, since relaxed loads are done with LDR on ARM, they are
not ordered against seqcst stores (which are done with STLR).
QEMU implements high-level synchronization primitives with the idea that
the primitives contain the necessary memory barriers, and the callers can
use relaxed atomics (qatomic_read/qatomic_set) or even regular accesses.
This is very much incompatible with the C11 view that seqcst accesses
are only ordered against other seqcst accesses, and requires using seqcst
fences as in the following example:
qatomic_set(&y, 1); qatomic_set(&x, 1);
smp_mb(); smp_mb();
... qatomic_read(&x) ... ... qatomic_read(&y) ...
When a qatomic_*() read-modify write operation is used instead of one
or both stores, developers that are more familiar with the Linux API may
be tempted to omit the smp_mb(), which will work on x86 but not on ARM.
This nasty difference between Linux and C11 read-modify-write operations
has already caused issues in util/async.c and more are being found.
Provide something similar to Linux smp_mb__before/after_atomic(); this
has the double function of documenting clearly why there is a memory
barrier, and avoiding a double barrier on x86 and s390x systems.
The new macro can already be put to use in qatomic_mb_set().
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Reviewed-by: David Hildenbrand <david@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
2023-03-02 10:10:56 +00:00
|
|
|
Fixing this requires a full memory barrier between the write of ``x`` and
|
|
|
|
the read of ``y``. QEMU provides ``smp_mb__before_rmw()`` and
|
|
|
|
``smp_mb__after_rmw()``; they act both as an optimization,
|
|
|
|
avoiding the memory barrier on processors where it is unnecessary,
|
|
|
|
and as a clarification of this corner case of the C11 memory model:
|
|
|
|
|
|
|
|
+--------------------------------+
|
|
|
|
| QEMU (correct) |
|
|
|
|
+================================+
|
|
|
|
| :: |
|
|
|
|
| |
|
|
|
|
| a = qatomic_fetch_add(&x, 2);|
|
|
|
|
| smp_mb__after_rmw(); |
|
|
|
|
| b = qatomic_read(&y); |
|
|
|
|
+--------------------------------+
|
|
|
|
|
|
|
|
In the common case where only one thread writes ``x``, it is also possible
|
|
|
|
to write it like this:
|
2020-04-06 09:34:12 +00:00
|
|
|
|
|
|
|
+--------------------------------+
|
|
|
|
| QEMU (correct) |
|
|
|
|
+================================+
|
|
|
|
| :: |
|
|
|
|
| |
|
2020-09-23 10:56:46 +00:00
|
|
|
| a = qatomic_read(&x); |
|
|
|
|
| qatomic_set(&x, a + 2); |
|
2020-04-06 09:34:12 +00:00
|
|
|
| smp_mb(); |
|
2020-09-23 10:56:46 +00:00
|
|
|
| b = qatomic_read(&y); |
|
2020-04-06 09:34:12 +00:00
|
|
|
+--------------------------------+
|
2020-04-06 08:30:05 +00:00
|
|
|
|
|
|
|
Sources
|
|
|
|
=======
|
|
|
|
|
|
|
|
- ``Documentation/memory-barriers.txt`` from the Linux kernel
|