]> git.ipfire.org Git - thirdparty/man-pages.git/blame - man2/futex.2
man_show_fixme.sh: Tweak indent lines
[thirdparty/man-pages.git] / man2 / futex.2
CommitLineData
8f0aff2a 1.\" Page by b.hubert
1abce893
MK
2.\" and Copyright (C) 2015, Thomas Gleixner <tglx@linutronix.de>
3.\" and Copyright (C) 2015, Michael Kerrisk <mtk.manpages@gmail.com>
2297bf0e 4.\"
2e46a6e7 5.\" %%%LICENSE_START(FREELY_REDISTRIBUTABLE)
8f0aff2a 6.\" may be freely modified and distributed
8ff7380d 7.\" %%%LICENSE_END
fea681da
MK
8.\"
9.\" Niki A. Rahimi (LTC Security Development, narahimi@us.ibm.com)
10.\" added ERRORS section.
11.\"
12.\" Modified 2004-06-17 mtk
13.\" Modified 2004-10-07 aeb, added FUTEX_REQUEUE, FUTEX_CMP_REQUEUE
14.\"
47f5c4ba 15.\" FIXME Still to integrate are some points from Torvald Riegel's mail of
9915ea23 16.\" 2015-01-23:
47f5c4ba
MK
17.\" http://thread.gmane.org/gmane.linux.kernel/1703405/focus=7977
18.\"
78e85692 19.\" FIXME Do we need to add some text regarding Torvald Riegel's 2015-01-24 mail
9915ea23 20.\" http://thread.gmane.org/gmane.linux.kernel/1703405/focus=1873242
02182e7c 21.\"
3df541c0 22.TH FUTEX 2 2016-07-17 "Linux" "Linux Programmer's Manual"
fea681da 23.SH NAME
ce154705 24futex \- fast user-space locking
fea681da 25.SH SYNOPSIS
9d9dc1e8 26.nf
fea681da
MK
27.sp
28.B "#include <linux/futex.h>"
fea681da
MK
29.B "#include <sys/time.h>"
30.sp
d33602c4 31.BI "int futex(int *" uaddr ", int " futex_op ", int " val ,
768d3c23 32.BI " const struct timespec *" timeout , \
c6dc40a2 33" \fR /* or: \fBuint32_t \fIval2\fP */
9d9dc1e8 34.BI " int *" uaddr2 ", int " val3 );
9d9dc1e8 35.fi
409f08b0 36
b939d6e4
MK
37.IR Note :
38There is no glibc wrapper for this system call; see NOTES.
47297adb 39.SH DESCRIPTION
fea681da
MK
40.PP
41The
e511ffb6 42.BR futex ()
4b35dc5d 43system call provides a method for waiting until a certain condition becomes
077981d4
MK
44true.
45It is typically used as a blocking construct in the context of
d45f244c
MK
46shared-memory synchronization.
47When using futexes, the majority of
48the synchronization operations are performed in user space.
bc54ed38 49A user-space program employs the
d45f244c 50.BR futex ()
ca4e5b2b 51system call only when it is likely that the program has to block for
4c8cb0ff 52a longer time until the condition becomes true.
bc54ed38 53Other
d45f244c 54.BR futex ()
bc54ed38
MK
55operations can be used to wake any processes or threads waiting
56for a particular condition.
4b35dc5d 57
7e8dcabc
MK
58A futex is a 32-bit value\(emreferred to below as a
59.IR "futex word" \(emwhose
60address is supplied to the
4b35dc5d 61.BR futex ()
7e8dcabc 62system call.
c3f4c019 63(Futexes are 32 bits in size on all platforms, including 64-bit systems.)
7e8dcabc
MK
64All futex operations are governed by this value.
65In order to share a futex between processes,
66the futex is placed in a region of shared memory,
67created using (for example)
68.BR mmap (2)
69or
70.BR shmat (2).
c3f4c019 71(Thus, the futex word may have different
7e8dcabc
MK
72virtual addresses in different processes,
73but these addresses all refer to the same location in physical memory.)
ca4e5b2b
MK
74In a multithreaded program, it is sufficient to place the futex word
75in a global variable shared by all threads.
809ca3ae 76
0c3ec26b
MK
77When executing a futex operation that requests to block a thread,
78the kernel will block only if the futex word has the value that the
55f9e85e
MK
79calling thread supplied (as one of the arguments of the
80.BR futex ()
81call) as the expected value of the futex word.
9d32a39b
MK
82The loading of the futex word's value,
83the comparison of that value with the expected value,
bc54ed38 84and the actual blocking will happen atomically and will be totally ordered
da894b18 85with respect to concurrent operations performed by other threads
0fb87d16 86on the same futex word.
da894b18
MK
87.\" Notes from Darren Hart (Dec 2015):
88.\" Totally ordered with respect futex operations refers to semantics
89.\" of the ACQUIRE/RELEASE operations and how they impact ordering of
90.\" memory reads and writes. The kernel futex operations are protected
f6615c42 91.\" by spinlocks, which ensure that all operations are serialized
da894b18
MK
92.\" with respect to one another.
93.\"
94.\" This is a lot to attempt to define in this document. Perhaps a
95.\" reference to linux/Documentation/memory-barriers.txt as a footnote
96.\" would be sufficient? Or perhaps for this manual, "serialized" would
97.\" be sufficient, with a footnote regarding "totally ordered" and a
98.\" pointer to the memory-barrier documentation?
b80daba2 99Thus, the futex word is used to connect the synchronization in user space
9d32a39b 100with the implementation of blocking by the kernel.
55f9e85e 101Analogously to an atomic
4b35dc5d 102compare-and-exchange operation that potentially changes shared memory,
077981d4 103blocking via a futex is an atomic compare-and-block operation.
d6bb5a38
MK
104.\" FIXME(Torvald Riegel):
105.\" Eventually we want to have some text in NOTES to satisfy
106.\" the reference in the following sentence
107.\" See NOTES for
108.\" a detailed specification of the synchronization semantics.
4b35dc5d 109
ca4e5b2b 110One use of futexes is for implementing locks.
c0dc758e
MK
111The state of the lock (i.e., acquired or not acquired)
112can be represented as an atomically accessed flag in shared memory.
4c8cb0ff 113In the uncontended case,
c3f4c019 114a thread can access or modify the lock state with atomic instructions,
4c8cb0ff
MK
115for example atomically changing it from not acquired to acquired
116using an atomic compare-and-exchange instruction.
55f9e85e
MK
117(Such instructions are performed entirely in user mode,
118and the kernel maintains no information about the lock state.)
119On the other hand, a thread may be unable to acquire a lock because
8e754e12 120it is already acquired by another thread.
55f9e85e 121It then may pass the lock's flag as a futex word and the value
0c3ec26b 122representing the acquired state as the expected value to a
8e754e12
HS
123.BR futex ()
124wait operation.
55f9e85e 125This
8e754e12 126.BR futex ()
bc54ed38 127operation will block if and only if the lock is still acquired
f6615c42 128(i.e., the value in the futex word still matches the "acquired state").
077981d4 129When releasing the lock, a thread has to first reset the
0c3ec26b 130lock state to not acquired and then execute a futex
55f9e85e 131operation that wakes threads blocked on the lock flag used as a futex word
f6615c42 132(this can be further optimized to avoid unnecessary wake-ups).
077981d4 133See
4b35dc5d
TR
134.BR futex (7)
135for more detail on how to use futexes.
136
137Besides the basic wait and wake-up futex functionality, there are further
077981d4 138futex operations aimed at supporting more complex use cases.
ca4e5b2b
MK
139
140Note that
2af84f99 141no explicit initialization or destruction is necessary to use futexes;
4c8cb0ff
MK
142the kernel maintains a futex
143(i.e., the kernel-internal implementation artifact)
4b35dc5d
TR
144only while operations such as
145.BR FUTEX_WAIT ,
146described below, are being performed on a particular futex word.
a663ca5a
MK
147.\"
148.SS Arguments
fea681da
MK
149The
150.I uaddr
077981d4
MK
151argument points to the futex word.
152On all platforms, futexes are four-byte
4b35dc5d 153integers that must be aligned on a four-byte boundary.
f388ba70
MK
154The operation to perform on the futex is specified in the
155.I futex_op
156argument;
157.IR val
158is a value whose meaning and purpose depends on
159.IR futex_op .
36ab2074
MK
160
161The remaining arguments
162.RI ( timeout ,
163.IR uaddr2 ,
164and
165.IR val3 )
166are required only for certain of the futex operations described below.
167Where one of these arguments is not required, it is ignored.
768d3c23 168
36ab2074
MK
169For several blocking operations, the
170.I timeout
171argument is a pointer to a
172.IR timespec
173structure that specifies a timeout for the operation.
174However, notwithstanding the prototype shown above, for some operations,
10022b8e 175the least significant four bytes are used as an integer whose meaning
36ab2074 176is determined by the operation.
768d3c23
MK
177For these operations, the kernel casts the
178.I timeout
10022b8e
HS
179value first to
180.IR "unsigned long",
181then to
c6dc40a2 182.IR uint32_t ,
768d3c23
MK
183and in the remainder of this page, this argument is referred to as
184.I val2
185when interpreted in this fashion.
186
de5a3bb4 187Where it is required, the
36ab2074 188.IR uaddr2
4c8cb0ff
MK
189argument is a pointer to a second futex word that is employed
190by the operation.
b3d5bc4c 191
36ab2074
MK
192The interpretation of the final integer argument,
193.IR val3 ,
194depends on the operation.
a663ca5a
MK
195.\"
196.\""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
197.\"
198.SS Futex operations
6be4bad7 199The
d33602c4 200.I futex_op
6be4bad7
MK
201argument consists of two parts:
202a command that specifies the operation to be performed,
ed1819cf 203bit-wise ORed with zero or more options that
6be4bad7 204modify the behaviour of the operation.
fc30eb79 205The options that may be included in
d33602c4 206.I futex_op
fc30eb79
TG
207are as follows:
208.TP
209.BR FUTEX_PRIVATE_FLAG " (since Linux 2.6.22)"
210.\" commit 34f01cc1f512fa783302982776895c73714ebbc2
211This option bit can be employed with all futex operations.
e45f9735 212It tells the kernel that the futex is process-private and not shared
0c3ec26b
MK
213with another process (i.e., it is being used for synchronization
214only between threads of the same process).
943ccc52
MK
215This allows the kernel to make some additional performance optimizations.
216.\" I.e., It allows the kernel choose the fast path for validating
217.\" the user-space address and avoids expensive VMA lookups,
218.\" taking reference counts on file backing store, and so on.
ae2c1774
MK
219
220As a convenience,
221.IR <linux/futex.h>
222defines a set of constants with the suffix
223.BR _PRIVATE
224that are equivalents of all of the operations listed below,
dcdfde26 225.\" except the obsolete FUTEX_FD, for which the "private" flag was
ae2c1774
MK
226.\" meaningless
227but with the
228.BR FUTEX_PRIVATE_FLAG
229ORed into the constant value.
230Thus, there are
231.BR FUTEX_WAIT_PRIVATE ,
232.BR FUTEX_WAKE_PRIVATE ,
233and so on.
2e98bbc2
TG
234.TP
235.BR FUTEX_CLOCK_REALTIME " (since Linux 2.6.28)"
236.\" commit 1acdac104668a0834cfa267de9946fac7764d486
4a7e5b05 237This option bit can be employed only with the
949ceae3
MK
238.BR FUTEX_WAIT_BITSET ,
239.BR FUTEX_WAIT_REQUEUE_PI ,
2e98bbc2 240and
949ceae3
MK
241(since Linux 4.5)
242.\" commit 337f13046ff03717a9e99675284a817527440a49
6f19879d 243.BR FUTEX_WAIT
c84cf68c 244operations.
2e98bbc2 245
8064bfa5 246If this option is set, the kernel measures the
f2103b26 247.I timeout
8064bfa5
MK
248against the
249.BR CLOCK_REALTIME
250clock.
2e98bbc2 251
8064bfa5 252If this option is not set, the kernel measures the
f2103b26 253.I timeout
8064bfa5 254against the
1c952cf5
MK
255.BR CLOCK_MONOTONIC
256clock.
6be4bad7
MK
257.PP
258The operation specified in
d33602c4 259.I futex_op
6be4bad7 260is one of the following:
70b06b90
MK
261.\"
262.\""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
263.\"
fea681da 264.TP
81c9d87e
MK
265.BR FUTEX_WAIT " (since Linux 2.6.0)"
266.\" Strictly speaking, since some time in 2.5.x
f065673c 267This operation tests that the value at the
4b35dc5d 268futex word pointed to by the address
fea681da 269.I uaddr
4b35dc5d 270still contains the expected value
fea681da 271.IR val ,
fd105614 272and if so, then sleeps waiting for a
682edefb 273.B FUTEX_WAKE
fd105614 274operation on the futex word.
077981d4 275The load of the value of the futex word is an atomic memory
4b35dc5d 276access (i.e., using atomic machine instructions of the respective
077981d4
MK
277architecture).
278This load, the comparison with the expected value, and
fd105614 279starting to sleep are performed atomically
da56650a 280.\" FIXME: Torvald, I think we may need to add some explanation of
cd175805 281.\" "totally ordered" here.
fd105614
MK
282and totally ordered
283with respect to other futex operations on the same futex word.
c0dc758e
MK
284If the thread starts to sleep,
285it is considered a waiter on this futex word.
f065673c
MK
286If the futex value does not match
287.IR val ,
4710334a 288then the call fails immediately with the error
badbf70c 289.BR EAGAIN .
4b35dc5d
TR
290
291The purpose of the comparison with the expected value is to prevent lost
fd105614
MK
292wake-ups.
293If another thread changed the value of the futex word after the
c0dc758e
MK
294calling thread decided to block based on the prior value,
295and if the other thread executed a
4b35dc5d
TR
296.BR FUTEX_WAKE
297operation (or similar wake-up) after the value change and before this
f065673c 298.BR FUTEX_WAIT
bc54ed38
MK
299operation, then the calling thread will observe the
300value change and will not start to sleep.
1909e523 301
c13182ef 302If the
fea681da 303.I timeout
40d2dab9 304is not NULL, the structure it points to specifies a
40d2dab9 305timeout for the wait.
ac991a11
MK
306(This interval will be rounded up to the system clock granularity,
307and is guaranteed not to expire early.)
a6918f1d 308The timeout is by default measured according to the
1c952cf5 309.BR CLOCK_MONOTONIC
a01c3098
MK
310clock, but, since Linux 4.5, the
311.BR CLOCK_REALTIME
312clock can be selected by specifying
313.BR FUTEX_CLOCK_REALTIME
314in
315.IR futex_op .
82a6092b
MK
316If
317.I timeout
318is NULL, the call blocks indefinitely.
4798a7f3 319
4100abc5
MK
320.IR Note :
321for
322.BR FUTEX_WAIT ,
323.IR timeout
324is interpreted as a
325.IR relative
326value.
327This differs from other futex operations, where
328.I timeout
329is interpreted as an absolute value.
330To obtain the equivalent of
331.BR FUTEX_WAIT
332with an absolute timeout, employ
333.BR FUTEX_WAIT_BITSET
334with
335.IR val3
336specified as
337.BR FUTEX_BITSET_MATCH_ANY .
338
c13182ef 339The arguments
fea681da
MK
340.I uaddr2
341and
342.I val3
343are ignored.
9915ea23
MK
344.\" FIXME . (Torvald) I think we should remove this. Or maybe adapt to a
345.\" different example.
346.\"
347.\" For
348.\" .BR futex (7),
349.\" this call is executed if decrementing the count gave a negative value
350.\" (indicating contention),
351.\" and will sleep until another process or thread releases
352.\" the futex and executes the
353.\" .B FUTEX_WAKE
354.\" operation.
70b06b90
MK
355.\"
356.\""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
357.\"
fea681da 358.TP
81c9d87e
MK
359.BR FUTEX_WAKE " (since Linux 2.6.0)"
360.\" Strictly speaking, since Linux 2.5.x
f065673c
MK
361This operation wakes at most
362.I val
4b35dc5d 363of the waiters that are waiting (e.g., inside
f065673c 364.BR FUTEX_WAIT )
4b35dc5d 365on the futex word at the address
f065673c
MK
366.IR uaddr .
367Most commonly,
368.I val
369is specified as either 1 (wake up a single waiter) or
370.BR INT_MAX
371(wake up all waiters).
730bfbda
MK
372No guarantee is provided about which waiters are awoken
373(e.g., a waiter with a higher scheduling priority is not guaranteed
374to be awoken in preference to a waiter with a lower priority).
4798a7f3 375
fea681da
MK
376The arguments
377.IR timeout ,
c8b921bd 378.IR uaddr2 ,
fea681da
MK
379and
380.I val3
381are ignored.
9915ea23
MK
382.\" FIXME . (Torvald) I think we should remove this. Or maybe adapt to
383.\" a different example.
384.\"
4c8cb0ff
MK
385.\" For
386.\" .BR futex (7),
387.\" this is executed if incrementing the count showed that
388.\" there were waiters,
389.\" once the futex value has been set to 1
390.\" (indicating that it is available).
391.\"
9915ea23 392.\" How does "incrementing the count show that there were waiters"?
70b06b90
MK
393.\"
394.\""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
395.\"
a7c2bf45
MK
396.TP
397.BR FUTEX_FD " (from Linux 2.6.0 up to and including Linux 2.6.25)"
398.\" Strictly speaking, from Linux 2.5.x to 2.6.25
4c8cb0ff
MK
399This operation creates a file descriptor that is associated with
400the futex at
a7c2bf45 401.IR uaddr .
bdc5957a
MK
402The caller must close the returned file descriptor after use.
403When another process or thread performs a
a7c2bf45 404.BR FUTEX_WAKE
4b35dc5d 405on the futex word, the file descriptor indicates as being readable with
a7c2bf45
MK
406.BR select (2),
407.BR poll (2),
408and
409.BR epoll (7)
410
f1d2171d 411The file descriptor can be used to obtain asynchronous notifications: if
a7c2bf45 412.I val
ca4e5b2b 413is nonzero, then, when another process or thread executes a
a7c2bf45
MK
414.BR FUTEX_WAKE ,
415the caller will receive the signal number that was passed in
416.IR val .
417
418The arguments
419.IR timeout ,
420.I uaddr2
421and
422.I val3
423are ignored.
424
a7c2bf45
MK
425Because it was inherently racy,
426.B FUTEX_FD
427has been removed
428.\" commit 82af7aca56c67061420d618cc5a30f0fd4106b80
429from Linux 2.6.26 onward.
70b06b90
MK
430.\"
431.\""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
432.\"
a7c2bf45
MK
433.TP
434.BR FUTEX_REQUEUE " (since Linux 2.6.0)"
a7c2bf45 435This operation performs the same task as
27dd3a6e
MK
436.BR FUTEX_CMP_REQUEUE
437(see below), except that no check is made using the value in
a7c2bf45
MK
438.IR val3 .
439(The argument
440.I val3
441is ignored.)
70b06b90
MK
442.\"
443.\""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
444.\"
a7c2bf45
MK
445.TP
446.BR FUTEX_CMP_REQUEUE " (since Linux 2.6.7)"
4b35dc5d 447This operation first checks whether the location
a7c2bf45
MK
448.I uaddr
449still contains the value
450.IR val3 .
451If not, the operation fails with the error
452.BR EAGAIN .
4b35dc5d 453Otherwise, the operation wakes up a maximum of
a7c2bf45
MK
454.I val
455waiters that are waiting on the futex at
456.IR uaddr .
457If there are more than
458.I val
459waiters, then the remaining waiters are removed
460from the wait queue of the source futex at
461.I uaddr
462and added to the wait queue of the target futex at
463.IR uaddr2 .
464The
768d3c23 465.I val2
936876a9 466argument specifies an upper limit on the number of waiters
a7c2bf45 467that are requeued to the futex at
768d3c23 468.IR uaddr2 .
a7c2bf45 469
d6bb5a38
MK
470.\" FIXME(Torvald) Is the following correct? Or is just the decision
471.\" which threads to wake or requeue part of the atomic operation?
4b35dc5d
TR
472The load from
473.I uaddr
4c8cb0ff
MK
474is an atomic memory access (i.e., using atomic machine instructions of
475the respective architecture).
077981d4 476This load, the comparison with
4b35dc5d 477.IR val3 ,
4c8cb0ff
MK
478and the requeueing of any waiters are performed atomically and totally
479ordered with respect to other operations on the same futex word.
ee65b0e8
MK
480.\" Notes from a f2f conversation with Thomas Gleixner (Aug 2015): ###
481.\" The operation is serialized with respect to operations on both
482.\" source and target futex. No other waiter can enqueue itself
483.\" for waiting and no other waiter can dequeue itself because of
484.\" a timeout or signal.
4b35dc5d 485
a7c2bf45
MK
486Typical values to specify for
487.I val
ed1819cf 488are 0 or 1.
a7c2bf45
MK
489(Specifying
490.BR INT_MAX
491is not useful, because it would make the
492.BR FUTEX_CMP_REQUEUE
493operation equivalent to
494.BR FUTEX_WAKE .)
936876a9 495The limit value specified via
768d3c23
MK
496.I val2
497is typically either 1 or
a7c2bf45
MK
498.BR INT_MAX .
499(Specifying the argument as 0 is not useful, because it would make the
500.BR FUTEX_CMP_REQUEUE
501operation equivalent to
502.BR FUTEX_WAIT .)
627b50ce
MK
503
504The
505.B FUTEX_CMP_REQUEUE
506operation was added as a replacement for the earlier
507.BR FUTEX_REQUEUE .
508The difference is that the check of the value at
509.I uaddr
510can be used to ensure that requeueing happens only under certain
511conditions, which allows race conditions to be avoided in certain use cases.
dcb410c3 512.\" But, as Rich Felker points out, there remain valid use cases for
627b50ce
MK
513.\" FUTEX_REQUEUE, for example, when the calling thread is requeuing
514.\" the target(s) to a lock that the calling thread owns
515.\" From: Rich Felker <dalias@libc.org>
516.\" Date: Wed, 29 Oct 2014 22:43:17 -0400
517.\" To: Darren Hart <dvhart@infradead.org>
518.\" CC: libc-alpha@sourceware.org, ...
519.\" Subject: Re: Add futex wrapper to glibc?
520
521Both
522.BR FUTEX_REQUEUE
523and
524.BR FUTEX_CMP_REQUEUE
525can be used to avoid "thundering herd" wake-ups that could occur when using
526.B FUTEX_WAKE
527in cases where all of the waiters that are woken need to acquire
528another futex.
529Consider the following scenario,
530where multiple waiter threads are waiting on B,
531a wait queue implemented using a futex:
532
533.in +4n
534.nf
535lock(A)
536while (!check_value(V)) {
537 unlock(A);
538 block_on(B);
539 lock(A);
540};
541unlock(A);
542.fi
543.in
544
545If a waker thread used
546.BR FUTEX_WAKE ,
547then all waiters waiting on B would be woken up,
67c67ff2 548and they would all try to acquire lock A.
627b50ce
MK
549However, waking all of the threads in this manner would be pointless because
550all except one of the threads would immediately block on lock A again.
551By contrast, a requeue operation wakes just one waiter and moves
552the other waiters to lock A,
553and when the woken waiter unlocks A then the next waiter can proceed.
43d16602 554.\"
70b06b90
MK
555.\""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
556.\"
a5956430
MK
557.\" FIXME I added a lengthy piece of text on FUTEX_WAKE_OP text,
558.\" and I'd be happy if someone checked it.
fea681da 559.TP
d67e21f5
MK
560.BR FUTEX_WAKE_OP " (since Linux 2.6.14)"
561.\" commit 4732efbeb997189d9f9b04708dc26bf8613ed721
6bac3b85
MK
562.\" Author: Jakub Jelinek <jakub@redhat.com>
563.\" Date: Tue Sep 6 15:16:25 2005 -0700
9915ea23 564.\" FIXME. (Torvald) The glibc condvar implementation is currently being
4c8cb0ff
MK
565.\" revised (e.g., to not use an internal lock anymore).
566.\" It is probably more future-proof to remove this paragraph.
d6bb5a38 567.\" [Torvald, do you have an update here?]
6bac3b85
MK
568This operation was added to support some user-space use cases
569where more than one futex must be handled at the same time.
570The most notable example is the implementation of
571.BR pthread_cond_signal (3),
572which requires operations on two futexes,
573the one used to implement the mutex and the one used in the implementation
574of the wait queue associated with the condition variable.
575.BR FUTEX_WAKE_OP
576allows such cases to be implemented without leading to
577high rates of contention and context switching.
578
579The
57f2d48b 580.BR FUTEX_WAKE_OP
e61abc20 581operation is equivalent to executing the following code atomically
4c8cb0ff
MK
582and totally ordered with respect to other futex operations on
583any of the two supplied futex words:
6bac3b85
MK
584
585.in +4n
586.nf
587int oldval = *(int *) uaddr2;
588*(int *) uaddr2 = oldval \fIop\fP \fIoparg\fP;
589futex(uaddr, FUTEX_WAKE, val, 0, 0, 0);
590if (oldval \fIcmp\fP \fIcmparg\fP)
768d3c23 591 futex(uaddr2, FUTEX_WAKE, val2, 0, 0, 0);
6bac3b85
MK
592.fi
593.in
594
595In other words,
57f2d48b 596.BR FUTEX_WAKE_OP
6bac3b85
MK
597does the following:
598.RS
599.IP * 3
4b35dc5d
TR
600saves the original value of the futex word at
601.IR uaddr2
602and performs an operation to modify the value of the futex at
6bac3b85 603.IR uaddr2 ;
4c8cb0ff
MK
604this is an atomic read-modify-write memory access (i.e., using atomic
605machine instructions of the respective architecture)
6bac3b85
MK
606.IP *
607wakes up a maximum of
608.I val
4b35dc5d 609waiters on the futex for the futex word at
6bac3b85
MK
610.IR uaddr ;
611and
612.IP *
4c8cb0ff
MK
613dependent on the results of a test of the original value of the
614futex word at
6bac3b85
MK
615.IR uaddr2 ,
616wakes up a maximum of
768d3c23 617.I val2
4b35dc5d 618waiters on the futex for the futex word at
6bac3b85
MK
619.IR uaddr2 .
620.RE
621.IP
6bac3b85
MK
622The operation and comparison that are to be performed are encoded
623in the bits of the argument
624.IR val3 .
625Pictorially, the encoding is:
626
f6af90e7 627.in +8n
6bac3b85 628.nf
f6af90e7
MK
629+---+---+-----------+-----------+
630|op |cmp| oparg | cmparg |
631+---+---+-----------+-----------+
632 4 4 12 12 <== # of bits
6bac3b85
MK
633.fi
634.in
635
636Expressed in code, the encoding is:
637
638.in +4n
639.nf
640#define FUTEX_OP(op, oparg, cmp, cmparg) \\
641 (((op & 0xf) << 28) | \\
642 ((cmp & 0xf) << 24) | \\
643 ((oparg & 0xfff) << 12) | \\
644 (cmparg & 0xfff))
645.fi
646.in
647
648In the above,
649.I op
650and
651.I cmp
652are each one of the codes listed below.
653The
654.I oparg
655and
656.I cmparg
657components are literal numeric values, except as noted below.
658
659The
660.I op
661component has one of the following values:
662
663.in +4n
664.nf
665FUTEX_OP_SET 0 /* uaddr2 = oparg; */
666FUTEX_OP_ADD 1 /* uaddr2 += oparg; */
667FUTEX_OP_OR 2 /* uaddr2 |= oparg; */
668FUTEX_OP_ANDN 3 /* uaddr2 &= ~oparg; */
669FUTEX_OP_XOR 4 /* uaddr2 ^= oparg; */
670.fi
671.in
672
673In addition, bit-wise ORing the following value into
674.I op
675causes
676.IR "(1\ <<\ oparg)"
677to be used as the operand:
678
679.in +4n
680.nf
681FUTEX_OP_ARG_SHIFT 8 /* Use (1 << oparg) as operand */
682.fi
683.in
684
685The
686.I cmp
687field is one of the following:
688
689.in +4n
690.nf
691FUTEX_OP_CMP_EQ 0 /* if (oldval == cmparg) wake */
692FUTEX_OP_CMP_NE 1 /* if (oldval != cmparg) wake */
693FUTEX_OP_CMP_LT 2 /* if (oldval < cmparg) wake */
694FUTEX_OP_CMP_LE 3 /* if (oldval <= cmparg) wake */
695FUTEX_OP_CMP_GT 4 /* if (oldval > cmparg) wake */
696FUTEX_OP_CMP_GE 5 /* if (oldval >= cmparg) wake */
697.fi
698.in
699
700The return value of
701.BR FUTEX_WAKE_OP
702is the sum of the number of waiters woken on the futex
703.IR uaddr
704plus the number of waiters woken on the futex
705.IR uaddr2 .
70b06b90
MK
706.\"
707.\""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
708.\"
d67e21f5 709.TP
79c9b436
TG
710.BR FUTEX_WAIT_BITSET " (since Linux 2.6.25)"
711.\" commit cd689985cf49f6ff5c8eddc48d98b9d581d9475d
fd9e59d4 712This operation is like
79c9b436
TG
713.BR FUTEX_WAIT
714except that
715.I val3
84abf4ba 716is used to provide a 32-bit bit mask to the kernel.
2ae96e8a 717This bit mask, in which at least one bit must be set,
6c38ce7f 718is stored in the kernel-internal state of the waiter.
79c9b436
TG
719See the description of
720.BR FUTEX_WAKE_BITSET
721for further details.
722
8064bfa5
MK
723If
724.I timeout
725is not NULL, the structure it points to specifies
726an absolute timeout for the wait operation.
727If
728.I timeout
729is NULL, the operation can block indefinitely.
730
731
79c9b436
TG
732The
733.I uaddr2
734argument is ignored.
70b06b90
MK
735.\"
736.\""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
737.\"
79c9b436 738.TP
d67e21f5
MK
739.BR FUTEX_WAKE_BITSET " (since Linux 2.6.25)"
740.\" commit cd689985cf49f6ff5c8eddc48d98b9d581d9475d
55cc422d
TG
741This operation is the same as
742.BR FUTEX_WAKE
743except that the
e24fbf10 744.I val3
5e1456d4 745argument is used to provide a 32-bit bit mask to the kernel.
6c38ce7f
MK
746This bit mask, in which at least one bit must be set,
747is used to select which waiters should be woken up.
5e1456d4 748The selection is done by a bit-wise AND of the "wake" bit mask
98d769c0
MK
749(i.e., the value in
750.IR val3 )
5e1456d4
MK
751and the bit mask which is stored in the kernel-internal
752state of the waiter (the "wait" bit mask that is set using
98d769c0
MK
753.BR FUTEX_WAIT_BITSET ).
754All of the waiters for which the result of the AND is nonzero are woken up;
755the remaining waiters are left sleeping.
756
e9d4496b
MK
757The effect of
758.BR FUTEX_WAIT_BITSET
759and
760.BR FUTEX_WAKE_BITSET
9732dd8b
MK
761is to allow selective wake-ups among multiple waiters that are blocked
762on the same futex.
ac894879 763However, note that, depending on the use case,
5e1456d4 764employing this bit-mask multiplexing feature on a
ac894879 765futex can be less efficient than simply using multiple futexes,
5e1456d4 766because employing bit-mask multiplexing requires the kernel
e9d4496b
MK
767to check all waiters on a futex,
768including those that are not interested in being woken up
5e1456d4 769(i.e., they do not have the relevant bit set in their "wait" bit mask).
e9d4496b
MK
770.\" According to http://locklessinc.com/articles/futex_cheat_sheet/:
771.\"
772.\" "The original reason for the addition of these extensions
773.\" was to improve the performance of pthread read-write locks
774.\" in glibc. However, the pthreads library no longer uses the
775.\" same locking algorithm, and these extensions are not used
776.\" without the bitset parameter being all ones.
e24fbf10 777.\"
e9d4496b 778.\" The page goes on to note that the FUTEX_WAIT_BITSET operation
5e1456d4 779.\" is nevertheless used (with a bit mask of all ones) in order to
e9d4496b
MK
780.\" obtain the absolute timeout functionality that is useful
781.\" for efficiently implementing Pthreads APIs (which use absolute
782.\" timeouts); FUTEX_WAIT provides only relative timeouts.
783
678c9986
MK
784The constant
785.BR FUTEX_BITSET_MATCH_ANY ,
786which corresponds to all 32 bits set in the bit mask, can be used as the
787.I val3
788argument for
789.BR FUTEX_WAIT_BITSET
98d769c0 790and
678c9986
MK
791.BR FUTEX_WAKE_BITSET .
792Other than differences in the handling of the
98d769c0 793.I timeout
678c9986 794argument, the
9732dd8b 795.BR FUTEX_WAIT
678c9986 796operation is equivalent to
9732dd8b 797.BR FUTEX_WAIT_BITSET
678c9986
MK
798with
799.IR val3
800specified as
801.BR FUTEX_BITSET_MATCH_ANY ;
802that is, allow a wake-up by any waker.
803The
804.BR FUTEX_WAKE
805operation is equivalent to
9732dd8b 806.BR FUTEX_WAKE_BITSET
678c9986
MK
807with
808.IR val3
809specified as
810.BR FUTEX_BITSET_MATCH_ANY ;
811that is, wake up any waiter(s).
812
813The
814.I uaddr2
815and
816.I timeout
817arguments are ignored.
bd90a5f9 818.\"
70b06b90 819.\""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
bd90a5f9
MK
820.\"
821.SS Priority-inheritance futexes
b52e1cd4
MK
822Linux supports priority-inheritance (PI) futexes in order to handle
823priority-inversion problems that can be encountered with
824normal futex locks.
b565548b 825Priority inversion is the problem that occurs when a high-priority
bdc5957a
MK
826task is blocked waiting to acquire a lock held by a low-priority task,
827while tasks at an intermediate priority continuously preempt
828the low-priority task from the CPU.
829Consequently, the low-priority task makes no progress toward
830releasing the lock, and the high-priority task remains blocked.
7f315ae3 831
7d20efd7
MK
832Priority inheritance is a mechanism for dealing with
833the priority-inversion problem.
bdc5957a
MK
834With this mechanism, when a high-priority task becomes blocked
835by a lock held by a low-priority task,
9cee832c
MK
836the priority of the low-priority task is temporarily raised
837to that of the high-priority task,
bdc5957a 838so that it is not preempted by any intermediate level tasks,
7d20efd7
MK
839and can thus make progress toward releasing the lock.
840To be effective, priority inheritance must be transitive,
bdc5957a 841meaning that if a high-priority task blocks on a lock
ca4e5b2b 842held by a lower-priority task that is itself blocked by a lock
bdc5957a 843held by another intermediate-priority task
7d20efd7 844(and so on, for chains of arbitrary length),
b0f35fbb 845then both of those tasks
bdc5957a
MK
846(or more generally, all of the tasks in a lock chain)
847have their priorities raised to be the same as the high-priority task.
7d20efd7 848
9e2b90ee 849From a user-space perspective,
39e9b2e1
MK
850what makes a futex PI-aware is a policy agreement (described below)
851between user space and the kernel about the value of the futex word,
601399f3
MK
852coupled with the use of the PI-futex operations described below.
853(Unlike the other futex operations described above,
854the PI-futex operations are designed
855for the implementation of very specific IPC mechanisms.)
856.\"
9e2b90ee
MK
857.\" Quoting Darren Hart:
858.\" These opcodes paired with the PI futex value policy (described below)
859.\" defines a "futex" as PI aware. These were created very specifically
860.\" in support of PI pthread_mutexes, so it makes a lot more sense to
861.\" talk about a PI aware pthread_mutex, than a PI aware futex, since
862.\" there is a lot of policy and scaffolding that has to be built up
863.\" around it to use it properly (this is what a PI pthread_mutex is).
864
ac894879 865.\" mtk: The following text is drawn from the Hart/Guniguntala paper
1af427a4 866.\" (listed in SEE ALSO), but I have reworded some pieces
8d825152 867.\" significantly.
79d918c7 868.\"
f0a9e8f4 869The PI-futex operations described below differ from the other
4b35dc5d
TR
870futex operations in that they impose policy on the use of the value of the
871futex word:
79d918c7 872.IP * 3
4b35dc5d 873If the lock is not acquired, the futex word's value shall be 0.
79d918c7 874.IP *
4c8cb0ff
MK
875If the lock is acquired, the futex word's value shall
876be the thread ID (TID;
4b35dc5d 877see
79d918c7
MK
878.BR gettid (2))
879of the owning thread.
880.IP *
79d918c7
MK
881If the lock is owned and there are threads contending for the lock,
882then the
883.B FUTEX_WAITERS
4b35dc5d 884bit shall be set in the futex word's value; in other words, this value is:
79d918c7
MK
885
886 FUTEX_WAITERS | TID
601399f3
MK
887.IP
888(Note that is invalid for a PI futex word to have no owner and
889.BR FUTEX_WAITERS
890set.)
79d918c7
MK
891.PP
892With this policy in place,
fd105614 893a user-space application can acquire an unacquired
601399f3 894lock or release a lock using atomic instructions executed in user mode
fd105614 895(e.g., a compare-and-swap operation such as
b52e1cd4
MK
896.I cmpxchg
897on the x86 architecture).
4c8cb0ff
MK
898Acquiring a lock simply consists of using compare-and-swap to atomically
899set the futex word's value to the caller's TID if its previous value was 0.
4b35dc5d
TR
900Releasing a lock requires using compare-and-swap to set the futex word's
901value to 0 if the previous value was the expected TID.
b52e1cd4 902
4b35dc5d 903If a futex is already acquired (i.e., has a nonzero value),
b52e1cd4 904waiters must employ the
79d918c7
MK
905.B FUTEX_LOCK_PI
906operation to acquire the lock.
4b35dc5d 907If other threads are waiting for the lock, then the
79d918c7 908.B FUTEX_WAITERS
4c8cb0ff
MK
909bit is set in the futex value;
910in this case, the lock owner must employ the
79d918c7 911.B FUTEX_UNLOCK_PI
b52e1cd4
MK
912operation to release the lock.
913
79d918c7
MK
914In the cases where callers are forced into the kernel
915(i.e., required to perform a
916.BR futex ()
0c3ec26b 917call),
79d918c7
MK
918they then deal directly with a so-called RT-mutex,
919a kernel locking mechanism which implements the required
920priority-inheritance semantics.
921After the RT-mutex is acquired, the futex value is updated accordingly,
922before the calling thread returns to user space.
79d918c7 923
a59fca75 924It is important to note
ac894879 925.\" tglx (July 2015):
30239c10
MK
926.\" If there are multiple waiters on a pi futex then a wake pi operation
927.\" will wake the first waiter and hand over the lock to this waiter. This
928.\" includes handing over the rtmutex which represents the futex in the
929.\" kernel. The strict requirement is that the futex owner and the rtmutex
930.\" owner must be the same, except for the update period which is
931.\" serialized by the futex internal locking. That means the kernel must
1d09c150 932.\" update the user-space value prior to returning to user space
4b35dc5d 933that the kernel will update the futex word's value prior
79d918c7 934to returning to user space.
601399f3
MK
935(This prevents the possibility of the futex word's value ending
936up in an invalid state, such as having an owner but the value being 0,
937or having waiters but not having the
938.B FUTEX_WAITERS
939bit set.)
30239c10
MK
940
941If a futex has an associated RT-mutex in the kernel
942(i.e., there are blocked waiters)
943and the owner of the futex/RT-mutex dies unexpectedly,
944then the kernel cleans up the RT-mutex and hands it over to the next waiter.
945This in turn requires that the user-space value is updated accordingly.
946To indicate that this is required, the kernel sets the
947.B FUTEX_OWNER_DIED
948bit in the futex word along with the thread ID of the new owner.
8adaf0a7
MK
949User space can detect this situation via the presence of the
950.B FUTEX_OWNER_DIED
951bit and is then responsible for cleaning up the stale state left over by
1d09c150 952the dead owner.
30239c10
MK
953.\" tglx (July 2015):
954.\" The FUTEX_OWNER_DIED bit can also be set on uncontended futexes, where
955.\" the kernel has no state associated. This happens via the robust futex
956.\" mechanism. In that case the futex value will be set to
957.\" FUTEX_OWNER_DIED. The robust futex mechanism is also available for non
958.\" PI futexes.
bd90a5f9 959
601399f3
MK
960PI futexes are operated on by specifying one of the values listed below in
961.IR futex_op .
962Note that the PI futex operations must be used as paired operations
963and are subject to some additional requirements:
964.IP * 3
965.B FUTEX_LOCK_PI
966and
967.B FUTEX_TRYLOCK_PI
968pair with
969.BR FUTEX_UNLOCK_PI.
970.B FUTEX_UNLOCK_PI
971must be called only on a futex owned by the calling thread,
972as defined by the value policy, otherwise the error
973.B EPERM
974results.
975.IP *
976.B FUTEX_WAIT_REQUEUE_PI
977pairs with
978.BR FUTEX_CMP_REQUEUE_PI .
979This must be performed from a non-PI futex to a distinct PI futex
980(or the error
981.B EINVAL
982results).
983Additionally,
984.I val
985(the number of waiters to be woken) must be 1
986(or the error
987.B EINVAL
988results).
989.P
990The PI futex operations are as follows:
70b06b90
MK
991.\"
992.\""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
993.\"
d67e21f5
MK
994.TP
995.BR FUTEX_LOCK_PI " (since Linux 2.6.18)"
996.\" commit c87e2837be82df479a6bae9f155c43516d2feebc
bc54ed38 997This operation is used after an attempt to acquire
fd105614 998the lock via an atomic user-mode instruction failed
4b35dc5d 999because the futex word has a nonzero value\(emspecifically,
8297383e 1000because it contained the (PID-namespace-specific) TID of the lock owner.
67833bec 1001
4b35dc5d 1002The operation checks the value of the futex word at the address
67833bec 1003.IR uaddr .
70b06b90
MK
1004If the value is 0, then the kernel tries to atomically set
1005the futex value to the caller's TID.
c3875d1d 1006If the futex word's value is nonzero,
67833bec 1007the kernel atomically sets the
e0547e70 1008.B FUTEX_WAITERS
67833bec
MK
1009bit, which signals the futex owner that it cannot unlock the futex in
1010user space atomically by setting the futex value to 0.
c3875d1d
MK
1011.\" tglx (July 2015):
1012.\" The operation here is similar to the FUTEX_WAIT logic. When the user
1013.\" space atomic acquire does not succeed because the futex value was non
1014.\" zero, then the waiter goes into the kernel, takes the kernel internal
1015.\" lock and retries the acquisition under the lock. If the acquisition
1016.\" does not succeed either, then it sets the FUTEX_WAITERS bit, to signal
1017.\" the lock owner that it needs to go into the kernel. Here is the pseudo
1018.\" code:
1019.\"
1020.\" lock(kernel_lock);
1021.\" retry:
1022.\"
1023.\" /*
1024.\" * Owner might have unlocked in userspace before we
1025.\" * were able to set the waiter bit.
1026.\" */
1027.\" if (atomic_acquire(futex) == SUCCESS) {
1028.\" unlock(kernel_lock());
1029.\" return 0;
1030.\" }
1031.\"
1032.\" /*
1033.\" * Owner might have unlocked after the above atomic_acquire()
1034.\" * attempt.
1035.\" */
1036.\" if (atomic_set_waiters_bit(futex) != SUCCESS)
1037.\" goto retry;
1038.\"
1039.\" queue_waiter();
1040.\" unlock(kernel_lock);
1041.\" block();
1042.\"
1043After that, the kernel:
1044.RS
1045.IP 1. 3
1046Tries to find the thread which is associated with the owner TID.
1047.IP 2.
1048Creates or reuses kernel state on behalf of the owner.
1049(If this is the first waiter, there is no kernel state for this
1050futex, so kernel state is created by locking the RT-mutex
1051and the futex owner is made the owner of the RT-mutex.
1052If there are existing waiters, then the existing state is reused.)
1053.IP 3.
ca4e5b2b 1054Attaches the waiter to the futex
c3875d1d
MK
1055(i.e., the waiter is enqueued on the RT-mutex waiter list).
1056.RE
1057.IP
ac894879
MK
1058If more than one waiter exists,
1059the enqueueing of the waiter is in descending priority order.
1060(For information on priority ordering, see the discussion of the
1061.BR SCHED_DEADLINE ,
1062.BR SCHED_FIFO ,
1063and
1064.BR SCHED_RR
1065scheduling policies in
1066.BR sched (7).)
1067The owner inherits either the waiter's CPU bandwidth
1068(if the waiter is scheduled under the
1069.BR SCHED_DEADLINE
1070policy) or the waiter's priority (if the waiter is scheduled under the
1071.BR SCHED_RR
1072or
1073.BR SCHED_FIFO
1074policy).
1d09c150
MK
1075.\" August 2015:
1076.\" mtk: If the realm is restricted purely to SCHED_OTHER (SCHED_NORMAL)
1077.\" processes, does the nice value come into play also?
1078.\"
1079.\" tglx: No. SCHED_OTHER/NORMAL tasks are handled in FIFO order
c3875d1d 1080This inheritance follows the lock chain in the case of nested locking
ca4e5b2b
MK
1081.\" (i.e., task 1 blocks on lock A, held by task 2,
1082.\" while task 2 blocks on lock B, held by task 3)
c3875d1d
MK
1083and performs deadlock detection.
1084
e0547e70
TG
1085The
1086.I timeout
9ce19cf1 1087argument provides a timeout for the lock attempt.
8064bfa5
MK
1088If
1089.I timeout
1090is not NULL, the structure it points to specifies
1091an absolute timeout, measured against the
9ce19cf1
MK
1092.BR CLOCK_REALTIME
1093clock.
c082f385
MK
1094.\" 2016-07-07 response from Thomas Gleixner on LKML:
1095.\" From: Thomas Gleixner <tglx@linutronix.de>
1096.\" Date: 6 July 2016 at 20:57
1097.\" Subject: Re: futex: Allow FUTEX_CLOCK_REALTIME with FUTEX_WAIT op
2ae96e8a 1098.\"
c082f385
MK
1099.\" On Thu, 23 Jun 2016, Michael Kerrisk (man-pages) wrote:
1100.\" > On 06/23/2016 08:28 PM, Darren Hart wrote:
1101.\" > > And as a follow-on, what is the reason for FUTEX_LOCK_PI only using
1102.\" > > CLOCK_REALTIME? It seems reasonable to me that a user may want to wait a
1103.\" > > specific amount of time, regardless of wall time.
1104.\" >
1105.\" > Yes, that's another weird inconsistency.
2ae96e8a 1106.\"
c082f385
MK
1107.\" The reason is that phtread_mutex_timedlock() uses absolute timeouts based on
1108.\" CLOCK_REALTIME. glibc folks asked to make that the default behaviour back
1109.\" then when we added LOCK_PI.
9ce19cf1
MK
1110If
1111.I timeout
1112is NULL, the operation will block indefinitely.
e0547e70 1113
a449c634 1114The
e0547e70
TG
1115.IR uaddr2 ,
1116.IR val ,
1117and
1118.IR val3
a449c634 1119arguments are ignored.
67833bec 1120.\"
70b06b90
MK
1121.\""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
1122.\"
d67e21f5 1123.TP
12fdbe23 1124.BR FUTEX_TRYLOCK_PI " (since Linux 2.6.18)"
d67e21f5 1125.\" commit c87e2837be82df479a6bae9f155c43516d2feebc
3fbb1be1 1126This operation tries to acquire the lock at
12fdbe23 1127.IR uaddr .
c3875d1d
MK
1128It is invoked when a user-space atomic acquire did not
1129succeed because the futex word was not 0.
1130
8adaf0a7
MK
1131Because the kernel has access to more state information than user space,
1132acquisition of the lock might succeed if performed by the
1133kernel in cases where the futex word
1134(i.e., the state information accessible to use-space) contains stale state
c3875d1d
MK
1135.RB ( FUTEX_WAITERS
1136and/or
1137.BR FUTEX_OWNER_DIED ).
1138This can happen when the owner of the futex died.
1d09c150
MK
1139User space cannot handle this condition in a race-free manner,
1140but the kernel can fix this up and acquire the futex.
ee65b0e8
MK
1141.\" Paraphrasing a f2f conversation with Thomas Gleixner about the
1142.\" above point (Aug 2015): ###
1143.\" There is a rare possibility of a race condition involving an
1144.\" uncontended futex with no owner, but with waiters. The
1145.\" kernel-user-space contract is that if a futex is nonzero, you must
1146.\" go into kernel. The futex was owned by a task, and that task dies
1147.\" but there are no waiters, so the futex value is non zero.
1148.\" Therefore, the next locker has to go into the kernel,
1149.\" so that the kernel has a chance to clean up. (CMXCH on zero
1150.\" in user space would fail, so kernel has to clean up.)
8adaf0a7
MK
1151.\" Darren Hart (Oct 2015):
1152.\" The trylock in the kernel has more state, so it can independently
1153.\" verify the flags that userspace must trust implicitly.
084744ef
MK
1154
1155The
1156.IR uaddr2 ,
1157.IR val ,
1158.IR timeout ,
1159and
1160.IR val3
1161arguments are ignored.
70b06b90
MK
1162.\"
1163.\""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
1164.\"
d67e21f5 1165.TP
12fdbe23 1166.BR FUTEX_UNLOCK_PI " (since Linux 2.6.18)"
d67e21f5 1167.\" commit c87e2837be82df479a6bae9f155c43516d2feebc
d4ba4328 1168This operation wakes the top priority waiter that is waiting in
ecae2099
TG
1169.B FUTEX_LOCK_PI
1170on the futex address provided by the
1171.I uaddr
1172argument.
1173
1d09c150 1174This is called when the user-space value at
ecae2099
TG
1175.I uaddr
1176cannot be changed atomically from a TID (of the owner) to 0.
1177
1178The
1179.IR uaddr2 ,
1180.IR val ,
1181.IR timeout ,
1182and
1183.IR val3
11a194bf 1184arguments are ignored.
70b06b90
MK
1185.\"
1186.\""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
1187.\"
d67e21f5 1188.TP
d67e21f5
MK
1189.BR FUTEX_CMP_REQUEUE_PI " (since Linux 2.6.31)"
1190.\" commit 52400ba946759af28442dee6265c5c0180ac7122
f812a08b
DH
1191This operation is a PI-aware variant of
1192.BR FUTEX_CMP_REQUEUE .
1193It requeues waiters that are blocked via
1194.B FUTEX_WAIT_REQUEUE_PI
1195on
1196.I uaddr
1197from a non-PI source futex
1198.RI ( uaddr )
1199to a PI target futex
1200.RI ( uaddr2 ).
1201
9e54d26d
MK
1202As with
1203.BR FUTEX_CMP_REQUEUE ,
1204this operation wakes up a maximum of
1205.I val
1206waiters that are waiting on the futex at
1207.IR uaddr .
1208However, for
1209.BR FUTEX_CMP_REQUEUE_PI ,
1210.I val
6fbeb8f4 1211is required to be 1
939ca89f 1212(since the main point is to avoid a thundering herd).
9e54d26d
MK
1213The remaining waiters are removed from the wait queue of the source futex at
1214.I uaddr
1215and added to the wait queue of the target futex at
1216.IR uaddr2 .
f812a08b 1217
9e54d26d 1218The
768d3c23 1219.I val2
c6d8cf21
MK
1220.\" val2 is the cap on the number of requeued waiters.
1221.\" In the glibc pthread_cond_broadcast() implementation, this argument
1222.\" is specified as INT_MAX, and for pthread_cond_signal() it is 0.
9e54d26d 1223and
768d3c23 1224.I val3
9e54d26d
MK
1225arguments serve the same purposes as for
1226.BR FUTEX_CMP_REQUEUE .
70b06b90 1227.\"
8297383e 1228.\" The page at http://locklessinc.com/articles/futex_cheat_sheet/
be376673 1229.\" notes that "priority-inheritance Futex to priority-inheritance
8297383e
MK
1230.\" Futex requeues are currently unsupported". However, probably
1231.\" the page does not need to say nothing about this, since
1232.\" Thomas Gleixner commented (July 2015): "they never will be
1233.\" supported because they make no sense at all"
70b06b90
MK
1234.\"
1235.\""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
1236.\"
d67e21f5
MK
1237.TP
1238.BR FUTEX_WAIT_REQUEUE_PI " (since Linux 2.6.31)"
1239.\" commit 52400ba946759af28442dee6265c5c0180ac7122
70b06b90 1240.\"
c3875d1d 1241Wait on a non-PI futex at
6ff1b4c0 1242.I uaddr
c3875d1d
MK
1243and potentially be requeued (via a
1244.BR FUTEX_CMP_REQUEUE_PI
1245operation in another task) onto a PI futex at
6ff1b4c0
TG
1246.IR uaddr2 .
1247The wait operation on
1248.I uaddr
c3875d1d 1249is the same as for
6ff1b4c0 1250.BR FUTEX_WAIT .
c3875d1d 1251
6ff1b4c0
TG
1252The waiter can be removed from the wait on
1253.I uaddr
6ff1b4c0 1254without requeueing on
c3875d1d
MK
1255.IR uaddr2
1256via a
1d09c150 1257.BR FUTEX_WAKE
c3875d1d
MK
1258operation in another task.
1259In this case, the
1260.BR FUTEX_WAIT_REQUEUE_PI
3fbb1be1
MK
1261operation fails with the error
1262.BR EAGAIN .
a4e69912 1263
63bea7dc
MK
1264If
1265.I timeout
8064bfa5
MK
1266is not NULL, the structure it points to specifies
1267an absolute timeout for the wait operation.
63bea7dc
MK
1268If
1269.I timeout
1270is NULL, the operation can block indefinitely.
1271
a4e69912
MK
1272The
1273.I val3
1274argument is ignored.
abb571e8
MK
1275
1276The
1277.BR FUTEX_WAIT_REQUEUE_PI
1278and
1279.BR FUTEX_CMP_REQUEUE_PI
1280were added to support a fairly specific use case:
1281support for priority-inheritance-aware POSIX threads condition variables.
1282The idea is that these operations should always be paired,
1283in order to ensure that user space and the kernel remain in sync.
1284Thus, in the
1285.BR FUTEX_WAIT_REQUEUE_PI
1286operation, the user-space application pre-specifies the target
1287of the requeue that takes place in the
1288.BR FUTEX_CMP_REQUEUE_PI
1289operation.
1290.\"
1291.\" Darren Hart notes that a patch to allow glibc to fully support
1af427a4 1292.\" PI-aware pthreads condition variables has not yet been accepted into
abb571e8
MK
1293.\" glibc. The story is complex, and can be found at
1294.\" https://sourceware.org/bugzilla/show_bug.cgi?id=11588
1295.\" Darren notes that in the meantime, the patch is shipped with various
1af427a4 1296.\" PREEMPT_RT-enabled Linux systems.
abb571e8
MK
1297.\"
1298.\" Related to the preceding, Darren proposed that somewhere, man-pages
1299.\" should document the following point:
1af427a4 1300.\"
4c8cb0ff
MK
1301.\" While the Linux kernel, since 2.6.31, supports requeueing of
1302.\" priority-inheritance (PI) aware mutexes via the
1303.\" FUTEX_WAIT_REQUEUE_PI and FUTEX_CMP_REQUEUE_PI futex operations,
1304.\" the glibc implementation does not yet take full advantage of this.
1305.\" Specifically, the condvar internal data lock remains a non-PI aware
1306.\" mutex, regardless of the type of the pthread_mutex associated with
1307.\" the condvar. This can lead to an unbounded priority inversion on
1308.\" the internal data lock even when associating a PI aware
1309.\" pthread_mutex with a condvar during a pthread_cond*_wait
1310.\" operation. For this reason, it is not recommended to rely on
1311.\" priority inheritance when using pthread condition variables.
1af427a4
MK
1312.\"
1313.\" The problem is that the obvious location for this text is
1314.\" the pthread_cond*wait(3) man page. However, such a man page
abb571e8 1315.\" does not currently exist.
70b06b90 1316.\"
6700de24 1317.\""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
70b06b90 1318.\"
47297adb 1319.SH RETURN VALUE
fea681da 1320.PP
a5c5a06a
MK
1321In the event of an error (and assuming that
1322.BR futex ()
1323was invoked via
1324.BR syscall (2)),
1325all operations return \-1 and set
e808bba0 1326.I errno
6f147f79 1327to indicate the cause of the error.
adc89a97 1328
e808bba0
MK
1329The return value on success depends on the operation,
1330as described in the following list:
fea681da
MK
1331.TP
1332.B FUTEX_WAIT
077981d4 1333Returns 0 if the caller was woken up.
4c8cb0ff
MK
1334Note that a wake-up can also be caused by common futex usage patterns
1335in unrelated code that happened to have previously used the futex word's
1336memory location (e.g., typical futex-based implementations of
1337Pthreads mutexes can cause this under some conditions).
1338Therefore, callers should always conservatively assume that a return
1339value of 0 can mean a spurious wake-up, and use the futex word's value
bc54ed38
MK
1340(i.e., the user-space synchronization scheme)
1341to decide whether to continue to block or not.
fea681da
MK
1342.TP
1343.B FUTEX_WAKE
bdc5957a 1344Returns the number of waiters that were woken up.
fea681da
MK
1345.TP
1346.B FUTEX_FD
1347Returns the new file descriptor associated with the futex.
1348.TP
1349.B FUTEX_REQUEUE
bdc5957a 1350Returns the number of waiters that were woken up.
fea681da
MK
1351.TP
1352.B FUTEX_CMP_REQUEUE
bdc5957a 1353Returns the total number of waiters that were woken up or
4b35dc5d 1354requeued to the futex for the futex word at
3dfcc11d
MK
1355.IR uaddr2 .
1356If this value is greater than
1357.IR val ,
fd105614 1358then the difference is the number of waiters requeued to the futex for the
4c8cb0ff 1359futex word at
3dfcc11d 1360.IR uaddr2 .
dcad19c0
MK
1361.TP
1362.B FUTEX_WAKE_OP
a8b5b324 1363Returns the total number of waiters that were woken up.
4c8cb0ff
MK
1364This is the sum of the woken waiters on the two futexes for
1365the futex words at
a8b5b324
MK
1366.I uaddr
1367and
1368.IR uaddr2 .
dcad19c0
MK
1369.TP
1370.B FUTEX_WAIT_BITSET
077981d4
MK
1371Returns 0 if the caller was woken up.
1372See
4b35dc5d
TR
1373.B FUTEX_WAIT
1374for how to interpret this correctly in practice.
dcad19c0
MK
1375.TP
1376.B FUTEX_WAKE_BITSET
bdc5957a 1377Returns the number of waiters that were woken up.
dcad19c0
MK
1378.TP
1379.B FUTEX_LOCK_PI
bf02a260 1380Returns 0 if the futex was successfully locked.
dcad19c0
MK
1381.TP
1382.B FUTEX_TRYLOCK_PI
5c716eef 1383Returns 0 if the futex was successfully locked.
dcad19c0
MK
1384.TP
1385.B FUTEX_UNLOCK_PI
52bb928f 1386Returns 0 if the futex was successfully unlocked.
dcad19c0
MK
1387.TP
1388.B FUTEX_CMP_REQUEUE_PI
bdc5957a 1389Returns the total number of waiters that were woken up or
4b35dc5d 1390requeued to the futex for the futex word at
dddd395a
MK
1391.IR uaddr2 .
1392If this value is greater than
1393.IR val ,
4c8cb0ff
MK
1394then difference is the number of waiters requeued to the futex for
1395the futex word at
dddd395a 1396.IR uaddr2 .
dcad19c0
MK
1397.TP
1398.B FUTEX_WAIT_REQUEUE_PI
4c8cb0ff
MK
1399Returns 0 if the caller was successfully requeued to the futex for
1400the futex word at
22c15de9 1401.IR uaddr2 .
70b06b90
MK
1402.\"
1403.\""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
1404.\"
fea681da
MK
1405.SH ERRORS
1406.TP
1407.B EACCES
4b35dc5d 1408No read access to the memory of a futex word.
fea681da
MK
1409.TP
1410.B EAGAIN
f48516d1 1411.RB ( FUTEX_WAIT ,
4b35dc5d 1412.BR FUTEX_WAIT_BITSET ,
f48516d1 1413.BR FUTEX_WAIT_REQUEUE_PI )
badbf70c
MK
1414The value pointed to by
1415.I uaddr
1416was not equal to the expected value
1417.I val
1418at the time of the call.
9732dd8b
MK
1419
1420.BR Note :
1421on Linux, the symbolic names
1422.B EAGAIN
1423and
1424.B EWOULDBLOCK
77da5feb 1425(both of which appear in different parts of the kernel futex code)
9732dd8b 1426have the same value.
badbf70c
MK
1427.TP
1428.B EAGAIN
8f2068bb
MK
1429.RB ( FUTEX_CMP_REQUEUE ,
1430.BR FUTEX_CMP_REQUEUE_PI )
ce5602fd 1431The value pointed to by
9f6c40c0
МК
1432.I uaddr
1433is not equal to the expected value
1434.IR val3 .
fea681da 1435.TP
5662f56a
MK
1436.BR EAGAIN
1437.RB ( FUTEX_LOCK_PI ,
aaec9032
MK
1438.BR FUTEX_TRYLOCK_PI ,
1439.BR FUTEX_CMP_REQUEUE_PI )
1440The futex owner thread ID of
1441.I uaddr
1442(for
1443.BR FUTEX_CMP_REQUEUE_PI :
1444.IR uaddr2 )
1445is about to exit,
5662f56a
MK
1446but has not yet handled the internal state cleanup.
1447Try again.
1448.TP
7a39e745
MK
1449.BR EDEADLK
1450.RB ( FUTEX_LOCK_PI ,
9732dd8b
MK
1451.BR FUTEX_TRYLOCK_PI ,
1452.BR FUTEX_CMP_REQUEUE_PI )
4b35dc5d 1453The futex word at
7a39e745
MK
1454.I uaddr
1455is already locked by the caller.
1456.TP
662c0da8 1457.BR EDEADLK
c3875d1d 1458.\" FIXME . I see that kernel/locking/rtmutex.c uses EDEADLK in some
d6bb5a38 1459.\" places, and EDEADLOCK in others. On almost all architectures
4c8cb0ff
MK
1460.\" these constants are synonymous. Is there a reason that both
1461.\" names are used?
8297383e
MK
1462.\"
1463.\" tglx (July 2015): "No. We should probably fix that."
1464.\"
662c0da8 1465.RB ( FUTEX_CMP_REQUEUE_PI )
4b35dc5d 1466While requeueing a waiter to the PI futex for the futex word at
662c0da8
MK
1467.IR uaddr2 ,
1468the kernel detected a deadlock.
1469.TP
fea681da 1470.B EFAULT
1ea901e8
MK
1471A required pointer argument (i.e.,
1472.IR uaddr ,
1473.IR uaddr2 ,
1474or
1475.IR timeout )
496df304 1476did not point to a valid user-space address.
fea681da 1477.TP
9f6c40c0 1478.B EINTR
e808bba0 1479A
9f6c40c0 1480.B FUTEX_WAIT
2674f781
MK
1481or
1482.B FUTEX_WAIT_BITSET
e808bba0 1483operation was interrupted by a signal (see
f529fd20
MK
1484.BR signal (7)).
1485In kernels before Linux 2.6.22, this error could also be returned for
1486on a spurious wakeup; since Linux 2.6.22, this no longer happens.
9f6c40c0 1487.TP
fea681da 1488.B EINVAL
180f97b7
MK
1489The operation in
1490.IR futex_op
1491is one of those that employs a timeout, but the supplied
fb2f4c27
MK
1492.I timeout
1493argument was invalid
1494.RI ( tv_sec
1495was less than zero, or
1496.IR tv_nsec
cabee29d 1497was not less than 1,000,000,000).
fb2f4c27
MK
1498.TP
1499.B EINVAL
0c74df0b 1500The operation specified in
025e1374 1501.IR futex_op
0c74df0b 1502employs one or both of the pointers
51ee94be 1503.I uaddr
a1f47699 1504and
0c74df0b
MK
1505.IR uaddr2 ,
1506but one of these does not point to a valid object\(emthat is,
1507the address is not four-byte-aligned.
51ee94be
MK
1508.TP
1509.B EINVAL
55cc422d
TG
1510.RB ( FUTEX_WAIT_BITSET ,
1511.BR FUTEX_WAKE_BITSET )
5e1456d4 1512The bit mask supplied in
79c9b436
TG
1513.IR val3
1514is zero.
1515.TP
1516.B EINVAL
2abcba67 1517.RB ( FUTEX_CMP_REQUEUE_PI )
add875c0
MK
1518.I uaddr
1519equals
1520.IR uaddr2
1521(i.e., an attempt was made to requeue to the same futex).
1522.TP
ff597681
MK
1523.BR EINVAL
1524.RB ( FUTEX_FD )
1525The signal number supplied in
1526.I val
1527is invalid.
1528.TP
6bac3b85 1529.B EINVAL
476debd7
MK
1530.RB ( FUTEX_WAKE ,
1531.BR FUTEX_WAKE_OP ,
1532.BR FUTEX_WAKE_BITSET ,
1533.BR FUTEX_REQUEUE ,
1534.BR FUTEX_CMP_REQUEUE )
1535The kernel detected an inconsistency between the user-space state at
1536.I uaddr
1537and the kernel state\(emthat is, it detected a waiter which waits in
1538.BR FUTEX_LOCK_PI
1539on
1540.IR uaddr .
1541.TP
1542.B EINVAL
a218ef20 1543.RB ( FUTEX_LOCK_PI ,
ce022f18
MK
1544.BR FUTEX_TRYLOCK_PI ,
1545.BR FUTEX_UNLOCK_PI )
a218ef20
MK
1546The kernel detected an inconsistency between the user-space state at
1547.I uaddr
1548and the kernel state.
ce022f18 1549This indicates either state corruption
ce022f18 1550or that the kernel found a waiter on
a218ef20
MK
1551.I uaddr
1552which is waiting via
1553.BR FUTEX_WAIT
1554or
1555.BR FUTEX_WAIT_BITSET .
1556.TP
1557.B EINVAL
f9250b1a
MK
1558.RB ( FUTEX_CMP_REQUEUE_PI )
1559The kernel detected an inconsistency between the user-space state at
99c0041d
MK
1560.I uaddr2
1561and the kernel state;
ee65b0e8
MK
1562.\" From a conversation with Thomas Gleixner (Aug 2015): ###
1563.\" The kernel sees: I have non PI state for a futex you tried to
1564.\" tell me was PI
99c0041d
MK
1565that is, the kernel detected a waiter which waits via
1566.BR FUTEX_WAIT
8297383e
MK
1567or
1568.BR FUTEX_WAIT_BITSET
99c0041d
MK
1569on
1570.IR uaddr2 .
1571.TP
1572.B EINVAL
1573.RB ( FUTEX_CMP_REQUEUE_PI )
1574The kernel detected an inconsistency between the user-space state at
f9250b1a
MK
1575.I uaddr
1576and the kernel state;
1577that is, the kernel detected a waiter which waits via
75299c8d 1578.BR FUTEX_WAIT
99c0041d 1579or
75299c8d 1580.BR FUTEX_WAIT_BITESET
f9250b1a
MK
1581on
1582.IR uaddr .
1583.TP
1584.B EINVAL
99c0041d 1585.RB ( FUTEX_CMP_REQUEUE_PI )
75299c8d
MK
1586The kernel detected an inconsistency between the user-space state at
1587.I uaddr
1588and the kernel state;
1589that is, the kernel detected a waiter which waits on
1590.I uaddr
1591via
1592.BR FUTEX_LOCK_PI
1593(instead of
1594.BR FUTEX_WAIT_REQUEUE_PI ).
99c0041d
MK
1595.TP
1596.B EINVAL
9786b3ca 1597.RB ( FUTEX_CMP_REQUEUE_PI )
8297383e
MK
1598.\" This deals with the case:
1599.\" wait_requeue_pi(A, B);
1600.\" requeue_pi(A, C);
9786b3ca
MK
1601An attempt was made to requeue a waiter to a futex other than that
1602specified by the matching
1603.B FUTEX_WAIT_REQUEUE_PI
1604call for that waiter.
1605.TP
1606.B EINVAL
f0c0d61c
MK
1607.RB ( FUTEX_CMP_REQUEUE_PI )
1608The
1609.I val
1610argument is not 1.
1611.TP
1612.B EINVAL
4832b48a 1613Invalid argument.
fea681da 1614.TP
d07d4ef3
MK
1615.B ENFILE
1616.RB ( FUTEX_FD )
1617The system-wide limit on the total number of open files has been reached.
1618.TP
a449c634
MK
1619.BR ENOMEM
1620.RB ( FUTEX_LOCK_PI ,
e34a8fb6
MK
1621.BR FUTEX_TRYLOCK_PI ,
1622.BR FUTEX_CMP_REQUEUE_PI )
a449c634
MK
1623The kernel could not allocate memory to hold state information.
1624.TP
4701fc28
MK
1625.B ENOSYS
1626Invalid operation specified in
d33602c4 1627.IR futex_op .
9f6c40c0 1628.TP
4a7e5b05
MK
1629.B ENOSYS
1630The
1631.BR FUTEX_CLOCK_REALTIME
1632option was specified in
1afcee7c 1633.IR futex_op ,
4a7e5b05 1634but the accompanying operation was neither
017d194b
MK
1635.BR FUTEX_WAIT ,
1636.BR FUTEX_WAIT_BITSET ,
4a7e5b05
MK
1637nor
1638.BR FUTEX_WAIT_REQUEUE_PI .
1639.TP
a9dcb4d1
MK
1640.BR ENOSYS
1641.RB ( FUTEX_LOCK_PI ,
f2424fae 1642.BR FUTEX_TRYLOCK_PI ,
4945ff19 1643.BR FUTEX_UNLOCK_PI ,
4cf92894 1644.BR FUTEX_CMP_REQUEUE_PI ,
794bb106 1645.BR FUTEX_WAIT_REQUEUE_PI )
4b35dc5d 1646A run-time check determined that the operation is not available.
f0a9e8f4 1647The PI-futex operations are not implemented on all architectures and
077981d4 1648are not supported on some CPU variants.
a9dcb4d1 1649.TP
c7589177
MK
1650.BR EPERM
1651.RB ( FUTEX_LOCK_PI ,
dc2742a8
MK
1652.BR FUTEX_TRYLOCK_PI ,
1653.BR FUTEX_CMP_REQUEUE_PI )
04331c3f 1654The caller is not allowed to attach itself to the futex at
dc2742a8
MK
1655.I uaddr
1656(for
1657.BR FUTEX_CMP_REQUEUE_PI :
1658the futex at
1659.IR uaddr2 ).
c7589177
MK
1660(This may be caused by a state corruption in user space.)
1661.TP
76f347ba 1662.BR EPERM
87276709 1663.RB ( FUTEX_UNLOCK_PI )
4b35dc5d 1664The caller does not own the lock represented by the futex word.
76f347ba 1665.TP
0b0e4934
MK
1666.BR ESRCH
1667.RB ( FUTEX_LOCK_PI ,
9732dd8b
MK
1668.BR FUTEX_TRYLOCK_PI ,
1669.BR FUTEX_CMP_REQUEUE_PI )
4b35dc5d 1670The thread ID in the futex word at
0b0e4934
MK
1671.I uaddr
1672does not exist.
1673.TP
360f773c
MK
1674.BR ESRCH
1675.RB ( FUTEX_CMP_REQUEUE_PI )
4b35dc5d 1676The thread ID in the futex word at
360f773c
MK
1677.I uaddr2
1678does not exist.
1679.TP
9f6c40c0 1680.B ETIMEDOUT
4d85047f
MK
1681The operation in
1682.IR futex_op
1683employed the timeout specified in
1684.IR timeout ,
1685and the timeout expired before the operation completed.
70b06b90
MK
1686.\"
1687.\""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
1688.\"
47297adb 1689.SH VERSIONS
a1d5f77c 1690.PP
81c9d87e
MK
1691Futexes were first made available in a stable kernel release
1692with Linux 2.6.0.
1693
4c8cb0ff
MK
1694Initial futex support was merged in Linux 2.5.7 but with different
1695semantics from what was described above.
52dee70e 1696A four-argument system call with the semantics
fd3fa7ef 1697described in this page was introduced in Linux 2.5.40.
d0442d14
MK
1698A fifth argument was added in Linux 2.5.70,
1699and a sixth argument was added in Linux 2.6.7.
47297adb 1700.SH CONFORMING TO
8382f16d 1701This system call is Linux-specific.
47297adb 1702.SH NOTES
baf0f1f4
MK
1703Glibc does not provide a wrapper for this system call; call it using
1704.BR syscall (2).
cf44281c 1705
02f7b623 1706Several higher-level programming abstractions are implemented via futexes,
e24fbf10 1707including POSIX semaphores and
02f7b623
MK
1708various POSIX threads synchronization mechanisms
1709(mutexes, condition variables, read-write locks, and barriers).
74f58a64
MK
1710.\" TODO FIXME(Torvald) Above, we cite this section and claim it contains
1711.\" details on the synchronization semantics; add the C11 equivalents
1712.\" here (or whatever we find consensus for).
305cc415
MK
1713.\"
1714.\""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
1715.\"
1716.SH EXAMPLE
bc54ed38
MK
1717The program below demonstrates use of futexes in a program where a parent
1718process and a child process use a pair of futexes located inside a
305cc415
MK
1719shared anonymous mapping to synchronize access to a shared resource:
1720the terminal.
1721The two processes each write
1722.IR nloops
1723(a command-line argument that defaults to 5 if omitted)
1724messages to the terminal and employ a synchronization protocol
1725that ensures that they alternate in writing messages.
1726Upon running this program we see output such as the following:
1727
1728.in +4n
1729.nf
1730$ \fB./futex_demo\fP
1731Parent (18534) 0
1732Child (18535) 0
1733Parent (18534) 1
1734Child (18535) 1
1735Parent (18534) 2
1736Child (18535) 2
1737Parent (18534) 3
1738Child (18535) 3
1739Parent (18534) 4
1740Child (18535) 4
1741.fi
1742.in
1743.SS Program source
1744\&
1745.nf
1746/* futex_demo.c
1747
1748 Usage: futex_demo [nloops]
1749 (Default: 5)
1750
1751 Demonstrate the use of futexes in a program where parent and child
1752 use a pair of futexes located inside a shared anonymous mapping to
1753 synchronize access to a shared resource: the terminal. The two
1754 processes each write \(aqnum\-loops\(aq messages to the terminal and employ
1755 a synchronization protocol that ensures that they alternate in
1756 writing messages.
1757*/
1758#define _GNU_SOURCE
1759#include <stdio.h>
1760#include <errno.h>
1761#include <stdlib.h>
1762#include <unistd.h>
1763#include <sys/wait.h>
1764#include <sys/mman.h>
1765#include <sys/syscall.h>
1766#include <linux/futex.h>
1767#include <sys/time.h>
1768
1769#define errExit(msg) do { perror(msg); exit(EXIT_FAILURE); \\
1770 } while (0)
1771
1772static int *futex1, *futex2, *iaddr;
1773
1774static int
1775futex(int *uaddr, int futex_op, int val,
1776 const struct timespec *timeout, int *uaddr2, int val3)
1777{
1778 return syscall(SYS_futex, uaddr, futex_op, val,
1779 timeout, uaddr, val3);
1780}
1781
1782/* Acquire the futex pointed to by \(aqfutexp\(aq: wait for its value to
1783 become 1, and then set the value to 0. */
1784
1785static void
1786fwait(int *futexp)
1787{
1788 int s;
1789
1790 /* __sync_bool_compare_and_swap(ptr, oldval, newval) is a gcc
1791 built\-in function. It atomically performs the equivalent of:
1792
1793 if (*ptr == oldval)
1794 *ptr = newval;
1795
1796 It returns true if the test yielded true and *ptr was updated.
1797 The alternative here would be to employ the equivalent atomic
1798 machine\-language instructions. For further information, see
1799 the GCC Manual. */
1800
305cc415 1801 while (1) {
83e80dda 1802
63ad44cb 1803 /* Is the futex available? */
83e80dda 1804
305cc415
MK
1805 if (__sync_bool_compare_and_swap(futexp, 1, 0))
1806 break; /* Yes */
1807
63ad44cb 1808 /* Futex is not available; wait */
83e80dda 1809
63ad44cb
HS
1810 s = futex(futexp, FUTEX_WAIT, 0, NULL, NULL, 0);
1811 if (s == \-1 && errno != EAGAIN)
1812 errExit("futex\-FUTEX_WAIT");
305cc415
MK
1813 }
1814}
1815
1816/* Release the futex pointed to by \(aqfutexp\(aq: if the futex currently
1817 has the value 0, set its value to 1 and the wake any futex waiters,
1818 so that if the peer is blocked in fpost(), it can proceed. */
1819
1820static void
1821fpost(int *futexp)
1822{
1823 int s;
1824
1825 /* __sync_bool_compare_and_swap() was described in comments above */
1826
1827 if (__sync_bool_compare_and_swap(futexp, 0, 1)) {
1828
1829 s = futex(futexp, FUTEX_WAKE, 1, NULL, NULL, 0);
1830 if (s == \-1)
1831 errExit("futex\-FUTEX_WAKE");
1832 }
1833}
1834
1835int
1836main(int argc, char *argv[])
1837{
1838 pid_t childPid;
1839 int j, nloops;
1840
1841 setbuf(stdout, NULL);
1842
1843 nloops = (argc > 1) ? atoi(argv[1]) : 5;
1844
1845 /* Create a shared anonymous mapping that will hold the futexes.
1846 Since the futexes are being shared between processes, we
1847 subsequently use the "shared" futex operations (i.e., not the
1848 ones suffixed "_PRIVATE") */
1849
1850 iaddr = mmap(NULL, sizeof(int) * 2, PROT_READ | PROT_WRITE,
1851 MAP_ANONYMOUS | MAP_SHARED, \-1, 0);
1852 if (iaddr == MAP_FAILED)
1853 errExit("mmap");
1854
1855 futex1 = &iaddr[0];
1856 futex2 = &iaddr[1];
1857
1858 *futex1 = 0; /* State: unavailable */
1859 *futex2 = 1; /* State: available */
1860
1861 /* Create a child process that inherits the shared anonymous
35764662 1862 mapping */
305cc415
MK
1863
1864 childPid = fork();
92a46690 1865 if (childPid == \-1)
305cc415
MK
1866 errExit("fork");
1867
1868 if (childPid == 0) { /* Child */
1869 for (j = 0; j < nloops; j++) {
1870 fwait(futex1);
1871 printf("Child (%ld) %d\\n", (long) getpid(), j);
1872 fpost(futex2);
1873 }
1874
1875 exit(EXIT_SUCCESS);
1876 }
1877
1878 /* Parent falls through to here */
1879
1880 for (j = 0; j < nloops; j++) {
1881 fwait(futex2);
1882 printf("Parent (%ld) %d\\n", (long) getpid(), j);
1883 fpost(futex1);
1884 }
1885
1886 wait(NULL);
1887
1888 exit(EXIT_SUCCESS);
1889}
1890.fi
47297adb 1891.SH SEE ALSO
4c222281 1892.ad l
9913033c 1893.BR get_robust_list (2),
d806bc05 1894.BR restart_syscall (2),
e0074751 1895.BR pthread_mutexattr_getprotocol (3),
ac894879
MK
1896.BR futex (7),
1897.BR sched (7)
fea681da 1898.PP
f5ad572f
MK
1899The following kernel source files:
1900.IP * 2
1901.I Documentation/pi-futex.txt
1902.IP *
1903.I Documentation/futex-requeue-pi.txt
1904.IP *
1905.I Documentation/locking/rt-mutex.txt
1906.IP *
1907.I Documentation/locking/rt-mutex-design.txt
8fe019c7
MK
1908.IP *
1909.I Documentation/robust-futex-ABI.txt
43b99089 1910.PP
4c222281 1911Franke, H., Russell, R., and Kirwood, M., 2002.
52087dd3 1912\fIFuss, Futexes and Furwocks: Fast Userlevel Locking in Linux\fP
4c222281 1913(from proceedings of the Ottawa Linux Symposium 2002),
9b936e9e 1914.br
608bf950
SK
1915.UR http://kernel.org\:/doc\:/ols\:/2002\:/ols2002-pages-479-495.pdf
1916.UE
f42eb21b 1917
4c222281 1918Hart, D., 2009. \fIA futex overview and update\fP,
2ed26199
MK
1919.UR http://lwn.net/Articles/360699/
1920.UE
1921
4c222281 1922Hart, D. and Guniguntala, D., 2009.
0483b6cc 1923\fIRequeue-PI: Making Glibc Condvars PI-Aware\fP
4c222281 1924(from proceedings of the 2009 Real-Time Linux Workshop),
0483b6cc
MK
1925.UR http://lwn.net/images/conf/rtlws11/papers/proc/p10.pdf
1926.UE
1927
4c222281 1928Drepper, U., 2011. \fIFutexes Are Tricky\fP,
f42eb21b
MK
1929.UR http://www.akkadia.org/drepper/futex.pdf
1930.UE
9b936e9e
MK
1931.PP
1932Futex example library, futex-*.tar.bz2 at
1933.br
a605264d 1934.UR ftp://ftp.kernel.org\:/pub\:/linux\:/kernel\:/people\:/rusty/
608bf950 1935.UE
34f14794
MK
1936.\"
1937.\" FIXME Are there any other resources that should be listed
9915ea23
MK
1938.\" in the SEE ALSO section?
1939.\"
74f58a64 1940.\" FIXME(Torvald) We should probably refer to the glibc code here, in
9915ea23
MK
1941.\" particular the glibc-internal futex wrapper functions that are
1942.\" WIP, and the generic pthread_mutex_t and perhaps condvar
1943.\" implementations.