xref: /freebsd/share/man/man9/atomic.9 (revision 1f474190)
1.\" Copyright (c) 2000-2001 John H. Baldwin <jhb@FreeBSD.org>
2.\"
3.\" Redistribution and use in source and binary forms, with or without
4.\" modification, are permitted provided that the following conditions
5.\" are met:
6.\" 1. Redistributions of source code must retain the above copyright
7.\"    notice, this list of conditions and the following disclaimer.
8.\" 2. Redistributions in binary form must reproduce the above copyright
9.\"    notice, this list of conditions and the following disclaimer in the
10.\"    documentation and/or other materials provided with the distribution.
11.\"
12.\" THIS SOFTWARE IS PROVIDED BY THE DEVELOPERS ``AS IS'' AND ANY EXPRESS OR
13.\" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
14.\" OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
15.\" IN NO EVENT SHALL THE DEVELOPERS BE LIABLE FOR ANY DIRECT, INDIRECT,
16.\" INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
17.\" NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
18.\" DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
19.\" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
20.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
21.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
22.\"
23.\" $FreeBSD$
24.\"
25.Dd August 18, 2019
26.Dt ATOMIC 9
27.Os
28.Sh NAME
29.Nm atomic_add ,
30.Nm atomic_clear ,
31.Nm atomic_cmpset ,
32.Nm atomic_fcmpset ,
33.Nm atomic_fetchadd ,
34.Nm atomic_load ,
35.Nm atomic_readandclear ,
36.Nm atomic_set ,
37.Nm atomic_subtract ,
38.Nm atomic_store ,
39.Nm atomic_thread_fence
40.Nd atomic operations
41.Sh SYNOPSIS
42.In sys/types.h
43.In machine/atomic.h
44.Ft void
45.Fn atomic_add_[acq_|rel_]<type> "volatile <type> *p" "<type> v"
46.Ft void
47.Fn atomic_clear_[acq_|rel_]<type> "volatile <type> *p" "<type> v"
48.Ft int
49.Fo atomic_cmpset_[acq_|rel_]<type>
50.Fa "volatile <type> *dst"
51.Fa "<type> old"
52.Fa "<type> new"
53.Fc
54.Ft int
55.Fo atomic_fcmpset_[acq_|rel_]<type>
56.Fa "volatile <type> *dst"
57.Fa "<type> *old"
58.Fa "<type> new"
59.Fc
60.Ft <type>
61.Fn atomic_fetchadd_<type> "volatile <type> *p" "<type> v"
62.Ft <type>
63.Fn atomic_load_[acq_]<type> "volatile <type> *p"
64.Ft <type>
65.Fn atomic_readandclear_<type> "volatile <type> *p"
66.Ft void
67.Fn atomic_set_[acq_|rel_]<type> "volatile <type> *p" "<type> v"
68.Ft void
69.Fn atomic_subtract_[acq_|rel_]<type> "volatile <type> *p" "<type> v"
70.Ft void
71.Fn atomic_store_[rel_]<type> "volatile <type> *p" "<type> v"
72.Ft <type>
73.Fn atomic_swap_<type> "volatile <type> *p" "<type> v"
74.Ft int
75.Fn atomic_testandclear_<type> "volatile <type> *p" "u_int v"
76.Ft int
77.Fn atomic_testandset_<type> "volatile <type> *p" "u_int v"
78.Ft void
79.Fn atomic_thread_fence_[acq|acq_rel|rel|seq_cst] "void"
80.Sh DESCRIPTION
81Atomic operations are commonly used to implement reference counts and as
82building blocks for synchronization primitives, such as mutexes.
83.Pp
84All of these operations are performed
85.Em atomically
86across multiple threads and in the presence of interrupts, meaning that they
87are performed in an indivisible manner from the perspective of concurrently
88running threads and interrupt handlers.
89.Pp
90On all architectures supported by
91.Fx ,
92ordinary loads and stores of integers in cache-coherent memory are
93inherently atomic if the integer is naturally aligned and its size does not
94exceed the processor's word size.
95However, such loads and stores may be elided from the program by
96the compiler, whereas atomic operations are always performed.
97.Pp
98When atomic operations are performed on cache-coherent memory, all
99operations on the same location are totally ordered.
100.Pp
101When an atomic load is performed on a location in cache-coherent memory,
102it reads the entire value that was defined by the last atomic store to
103each byte of the location.
104An atomic load will never return a value out of thin air.
105When an atomic store is performed on a location, no other thread or
106interrupt handler will observe a
107.Em torn write ,
108or partial modification of the location.
109.Pp
110Except as noted below, the semantics of these operations are almost
111identical to the semantics of similarly named C11 atomic operations.
112.Ss Types
113Most atomic operations act upon a specific
114.Fa type .
115That type is indicated in the function name.
116In contrast to C11 atomic operations,
117.Fx Ns 's
118atomic operations are performed on ordinary integer types.
119The available types are:
120.Pp
121.Bl -tag -offset indent -width short -compact
122.It Li int
123unsigned integer
124.It Li long
125unsigned long integer
126.It Li ptr
127unsigned integer the size of a pointer
128.It Li 32
129unsigned 32-bit integer
130.It Li 64
131unsigned 64-bit integer
132.El
133.Pp
134For example, the function to atomically add two integers is called
135.Fn atomic_add_int .
136.Pp
137Certain architectures also provide operations for types smaller than
138.Dq Li int .
139.Pp
140.Bl -tag -offset indent -width short -compact
141.It Li char
142unsigned character
143.It Li short
144unsigned short integer
145.It Li 8
146unsigned 8-bit integer
147.It Li 16
148unsigned 16-bit integer
149.El
150.Pp
151These types must not be used in machine-independent code.
152.Ss Acquire and Release Operations
153By default, a thread's accesses to different memory locations might not be
154performed in
155.Em program order ,
156that is, the order in which the accesses appear in the source code.
157To optimize the program's execution, both the compiler and processor might
158reorder the thread's accesses.
159However, both ensure that their reordering of the accesses is not visible to
160the thread.
161Otherwise, the traditional memory model that is expected by single-threaded
162programs would be violated.
163Nonetheless, other threads in a multithreaded program, such as the
164.Fx
165kernel, might observe the reordering.
166Moreover, in some cases, such as the implementation of synchronization between
167threads, arbitrary reordering might result in the incorrect execution of the
168program.
169To constrain the reordering that both the compiler and processor might perform
170on a thread's accesses, a programmer can use atomic operations with
171.Em acquire
172and
173.Em release
174semantics.
175.Pp
176Atomic operations on memory have up to three variants.
177The first, or
178.Em relaxed
179variant, performs the operation without imposing any ordering constraints on
180accesses to other memory locations.
181This variant is the default.
182The second variant has acquire semantics, and the third variant has release
183semantics.
184.Pp
185When an atomic operation has acquire semantics, the operation must have
186completed before any subsequent load or store (by program order) is
187performed.
188Conversely, acquire semantics do not require that prior loads or stores have
189completed before the atomic operation is performed.
190An atomic operation can only have acquire semantics if it performs a load
191from memory.
192To denote acquire semantics, the suffix
193.Dq Li _acq
194is inserted into the function name immediately prior to the
195.Dq Li _ Ns Aq Fa type
196suffix.
197For example, to subtract two integers ensuring that the subtraction is
198completed before any subsequent loads and stores are performed, use
199.Fn atomic_subtract_acq_int .
200.Pp
201When an atomic operation has release semantics, all prior loads or stores
202(by program order) must have completed before the operation is performed.
203Conversely, release semantics do not require that the atomic operation must
204have completed before any subsequent load or store is performed.
205An atomic operation can only have release semantics if it performs a store
206to memory.
207To denote release semantics, the suffix
208.Dq Li _rel
209is inserted into the function name immediately prior to the
210.Dq Li _ Ns Aq Fa type
211suffix.
212For example, to add two long integers ensuring that all prior loads and
213stores are completed before the addition is performed, use
214.Fn atomic_add_rel_long .
215.Pp
216When a release operation by one thread
217.Em synchronizes with
218an acquire operation by another thread, usually meaning that the acquire
219operation reads the value written by the release operation, then the effects
220of all prior stores by the releasing thread must become visible to
221subsequent loads by the acquiring thread.
222Moreover, the effects of all stores (by other threads) that were visible to
223the releasing thread must also become visible to the acquiring thread.
224These rules only apply to the synchronizing threads.
225Other threads might observe these stores in a different order.
226.Pp
227In effect, atomic operations with acquire and release semantics establish
228one-way barriers to reordering that enable the implementations of
229synchronization primitives to express their ordering requirements without
230also imposing unnecessary ordering.
231For example, for a critical section guarded by a mutex, an acquire operation
232when the mutex is locked and a release operation when the mutex is unlocked
233will prevent any loads or stores from moving outside of the critical
234section.
235However, they will not prevent the compiler or processor from moving loads
236or stores into the critical section, which does not violate the semantics of
237a mutex.
238.Ss Thread Fence Operations
239Alternatively, a programmer can use atomic thread fence operations to
240constrain the reordering of accesses.
241In contrast to other atomic operations, fences do not, themselves, access
242memory.
243.Pp
244When a fence has acquire semantics, all prior loads (by program order) must
245have completed before any subsequent load or store is performed.
246Thus, an acquire fence is a two-way barrier for load operations.
247To denote acquire semantics, the suffix
248.Dq Li _acq
249is appended to the function name, for example,
250.Fn atomic_thread_fence_acq .
251.Pp
252When a fence has release semantics, all prior loads or stores (by program
253order) must have completed before any subsequent store operation is
254performed.
255Thus, a release fence is a two-way barrier for store operations.
256To denote release semantics, the suffix
257.Dq Li _rel
258is appended to the function name, for example,
259.Fn atomic_thread_fence_rel .
260.Pp
261Although
262.Fn atomic_thread_fence_acq_rel
263implements both acquire and release semantics, it is not a full barrier.
264For example, a store prior to the fence (in program order) may be completed
265after a load subsequent to the fence.
266In contrast,
267.Fn atomic_thread_fence_seq_cst
268implements a full barrier.
269Neither loads nor stores may cross this barrier in either direction.
270.Pp
271In C11, a release fence by one thread synchronizes with an acquire fence by
272another thread when an atomic load that is prior to the acquire fence (by
273program order) reads the value written by an atomic store that is subsequent
274to the release fence.
275In constrast, in
276.Fx ,
277because of the atomicity of ordinary, naturally
278aligned loads and stores, fences can also be synchronized by ordinary loads
279and stores.
280This simplifies the implementation and use of some synchronization
281primitives in
282.Fx .
283.Pp
284Since neither a compiler nor a processor can foresee which (atomic) load
285will read the value written by an (atomic) store, the ordering constraints
286imposed by fences must be more restrictive than acquire loads and release
287stores.
288Essentially, this is why fences are two-way barriers.
289.Pp
290Although fences impose more restrictive ordering than acquire loads and
291release stores, by separating access from ordering, they can sometimes
292facilitate more efficient implementations of synchronization primitives.
293For example, they can be used to avoid executing a memory barrier until a
294memory access shows that some condition is satisfied.
295.Ss Multiple Processors
296In multiprocessor systems, the atomicity of the atomic operations on memory
297depends on support for cache coherence in the underlying architecture.
298In general, cache coherence on the default memory type,
299.Dv VM_MEMATTR_DEFAULT ,
300is guaranteed by all architectures that are supported by
301.Fx .
302For example, cache coherence is guaranteed on write-back memory by the
303.Tn amd64
304and
305.Tn i386
306architectures.
307However, on some architectures, cache coherence might not be enabled on all
308memory types.
309To determine if cache coherence is enabled for a non-default memory type,
310consult the architecture's documentation.
311.Ss Semantics
312This section describes the semantics of each operation using a C like notation.
313.Bl -hang
314.It Fn atomic_add p v
315.Bd -literal -compact
316*p += v;
317.Ed
318.It Fn atomic_clear p v
319.Bd -literal -compact
320*p &= ~v;
321.Ed
322.It Fn atomic_cmpset dst old new
323.Bd -literal -compact
324if (*dst == old) {
325	*dst = new;
326	return (1);
327} else
328	return (0);
329.Ed
330.El
331.Pp
332Some architectures do not implement the
333.Fn atomic_cmpset
334functions for the types
335.Dq Li char ,
336.Dq Li short ,
337.Dq Li 8 ,
338and
339.Dq Li 16 .
340.Bl -hang
341.It Fn atomic_fcmpset dst *old new
342.El
343.Pp
344On architectures implementing
345.Em Compare And Swap
346operation in hardware, the functionality can be described as
347.Bd -literal -offset indent -compact
348if (*dst == *old) {
349	*dst = new;
350	return (1);
351} else {
352	*old = *dst;
353	return (0);
354}
355.Ed
356On architectures which provide
357.Em Load Linked/Store Conditional
358primitive, the write to
359.Dv *dst
360might also fail for several reasons, most important of which
361is a parallel write to
362.Dv *dst
363cache line by other CPU.
364In this case
365.Fn atomic_fcmpset
366function also returns
367.Dv false ,
368despite
369.Dl *old == *dst .
370.Pp
371Some architectures do not implement the
372.Fn atomic_fcmpset
373functions for the types
374.Dq Li char ,
375.Dq Li short ,
376.Dq Li 8 ,
377and
378.Dq Li 16 .
379.Bl -hang
380.It Fn atomic_fetchadd p v
381.Bd -literal -compact
382tmp = *p;
383*p += v;
384return (tmp);
385.Ed
386.El
387.Pp
388The
389.Fn atomic_fetchadd
390functions are only implemented for the types
391.Dq Li int ,
392.Dq Li long
393and
394.Dq Li 32
395and do not have any variants with memory barriers at this time.
396.Bl -hang
397.It Fn atomic_load p
398.Bd -literal -compact
399return (*p);
400.Ed
401.It Fn atomic_readandclear p
402.Bd -literal -compact
403tmp = *p;
404*p = 0;
405return (tmp);
406.Ed
407.El
408.Pp
409The
410.Fn atomic_readandclear
411functions are not implemented for the types
412.Dq Li char ,
413.Dq Li short ,
414.Dq Li ptr ,
415.Dq Li 8 ,
416and
417.Dq Li 16
418and do not have any variants with memory barriers at this time.
419.Bl -hang
420.It Fn atomic_set p v
421.Bd -literal -compact
422*p |= v;
423.Ed
424.It Fn atomic_subtract p v
425.Bd -literal -compact
426*p -= v;
427.Ed
428.It Fn atomic_store p v
429.Bd -literal -compact
430*p = v;
431.Ed
432.It Fn atomic_swap p v
433.Bd -literal -compact
434tmp = *p;
435*p = v;
436return (tmp);
437.Ed
438.El
439.Pp
440The
441.Fn atomic_swap
442functions are not implemented for the types
443.Dq Li char ,
444.Dq Li short ,
445.Dq Li ptr ,
446.Dq Li 8 ,
447and
448.Dq Li 16
449and do not have any variants with memory barriers at this time.
450.Bl -hang
451.It Fn atomic_testandclear p v
452.Bd -literal -compact
453bit = 1 << (v % (sizeof(*p) * NBBY));
454tmp = (*p & bit) != 0;
455*p &= ~bit;
456return (tmp);
457.Ed
458.El
459.Bl -hang
460.It Fn atomic_testandset p v
461.Bd -literal -compact
462bit = 1 << (v % (sizeof(*p) * NBBY));
463tmp = (*p & bit) != 0;
464*p |= bit;
465return (tmp);
466.Ed
467.El
468.Pp
469The
470.Fn atomic_testandset
471and
472.Fn atomic_testandclear
473functions are only implemented for the types
474.Dq Li int ,
475.Dq Li long
476and
477.Dq Li 32
478and do not have any variants with memory barriers at this time.
479.Pp
480The type
481.Dq Li 64
482is currently not implemented for some of the atomic operations on the
483.Tn arm ,
484.Tn i386 ,
485and
486.Tn powerpc
487architectures.
488.Sh RETURN VALUES
489The
490.Fn atomic_cmpset
491function returns the result of the compare operation.
492The
493.Fn atomic_fcmpset
494function returns
495.Dv true
496if the operation succeeded.
497Otherwise it returns
498.Dv false
499and sets
500.Va *old
501to the found value.
502The
503.Fn atomic_fetchadd ,
504.Fn atomic_load ,
505.Fn atomic_readandclear ,
506and
507.Fn atomic_swap
508functions return the value at the specified address.
509The
510.Fn atomic_testandset
511and
512.Fn atomic_testandclear
513function returns the result of the test operation.
514.Sh EXAMPLES
515This example uses the
516.Fn atomic_cmpset_acq_ptr
517and
518.Fn atomic_set_ptr
519functions to obtain a sleep mutex and handle recursion.
520Since the
521.Va mtx_lock
522member of a
523.Vt "struct mtx"
524is a pointer, the
525.Dq Li ptr
526type is used.
527.Bd -literal
528/* Try to obtain mtx_lock once. */
529#define _obtain_lock(mp, tid)						\\
530	atomic_cmpset_acq_ptr(&(mp)->mtx_lock, MTX_UNOWNED, (tid))
531
532/* Get a sleep lock, deal with recursion inline. */
533#define _get_sleep_lock(mp, tid, opts, file, line) do {			\\
534	uintptr_t _tid = (uintptr_t)(tid);				\\
535									\\
536	if (!_obtain_lock(mp, tid)) {					\\
537		if (((mp)->mtx_lock & MTX_FLAGMASK) != _tid)		\\
538			_mtx_lock_sleep((mp), _tid, (opts), (file), (line));\\
539		else {							\\
540			atomic_set_ptr(&(mp)->mtx_lock, MTX_RECURSE);	\\
541			(mp)->mtx_recurse++;				\\
542		}							\\
543	}								\\
544} while (0)
545.Ed
546.Sh HISTORY
547The
548.Fn atomic_add ,
549.Fn atomic_clear ,
550.Fn atomic_set ,
551and
552.Fn atomic_subtract
553operations were introduced in
554.Fx 3.0 .
555Initially, these operations were defined on the types
556.Dq Li char ,
557.Dq Li short ,
558.Dq Li int ,
559and
560.Dq Li long .
561.Pp
562The
563.Fn atomic_cmpset ,
564.Fn atomic_load_acq ,
565.Fn atomic_readandclear ,
566and
567.Fn atomic_store_rel
568operations were added in
569.Fx 5.0 .
570Simultaneously, the acquire and release variants were introduced, and
571support was added for operation on the types
572.Dq Li 8 ,
573.Dq Li 16 ,
574.Dq Li 32 ,
575.Dq Li 64 ,
576and
577.Dq Li ptr .
578.Pp
579The
580.Fn atomic_fetchadd
581operation was added in
582.Fx 6.0 .
583.Pp
584The
585.Fn atomic_swap
586and
587.Fn atomic_testandset
588operations were added in
589.Fx 10.0 .
590.Pp
591The
592.Fn atomic_testandclear
593and
594.Fn atomic_thread_fence
595operations were added in
596.Fx 11.0 .
597.Pp
598The relaxed variants of
599.Fn atomic_load
600and
601.Fn atomic_store
602were added in
603.Fx 12.0 .
604