]> git.ipfire.org Git - thirdparty/man-pages.git/blame - man2/futex.2
sched_setattr.2: tfix
[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.\"
6b621d05 22.TH FUTEX 2 2020-02-09 "Linux" "Linux Programmer's Manual"
fea681da 23.SH NAME
ce154705 24futex \- fast user-space locking
fea681da 25.SH SYNOPSIS
9d9dc1e8 26.nf
68e4db0a 27.PP
fea681da 28.B "#include <linux/futex.h>"
fea681da 29.B "#include <sys/time.h>"
68e4db0a 30.PP
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
dbfe9c70 36.PP
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.
efeece04 57.PP
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.
efeece04 76.PP
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 104.\" FIXME(Torvald Riegel):
61066e14
MK
105.\" Eventually we want to have some text in NOTES to satisfy
106.\" the reference in the following sentence
107.\" See NOTES for a detailed specification of
108.\" the synchronization semantics.
efeece04 109.PP
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.
efeece04 136.PP
4b35dc5d 137Besides the basic wait and wake-up futex functionality, there are further
077981d4 138futex operations aimed at supporting more complex use cases.
efeece04 139.PP
ca4e5b2b 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 .
efeece04 160.PP
36ab2074
MK
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.
efeece04 168.PP
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,
eb4aa521
MK
175the least significant four bytes of this argument are instead
176used as an integer whose meaning is 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.
efeece04 186.PP
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.
efeece04 191.PP
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.
efeece04 219.IP
ae2c1774
MK
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.
efeece04 245.IP
8064bfa5 246If this option is set, the kernel measures the
f2103b26 247.I timeout
8064bfa5
MK
248against the
249.BR CLOCK_REALTIME
250clock.
efeece04 251.IP
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
61066e14 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 .
efeece04 290.IP
4b35dc5d 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.
efeece04 301.IP
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.
efeece04 319.IP
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 .
efeece04 338.IP
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).
efeece04 375.IP
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)
efeece04 410.IP
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 .
efeece04 417.IP
a7c2bf45
MK
418The arguments
419.IR timeout ,
420.I uaddr2
421and
422.I val3
423are ignored.
efeece04 424.IP
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 .
efeece04 469.IP
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.
efeece04 485.IP
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 .)
efeece04 503.IP
627b50ce
MK
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?
efeece04 520.IP
627b50ce
MK
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:
efeece04 532.IP
627b50ce 533.in +4n
b76974c1 534.EX
627b50ce
MK
535lock(A)
536while (!check_value(V)) {
537 unlock(A);
538 block_on(B);
539 lock(A);
540};
541unlock(A);
b76974c1 542.EE
627b50ce 543.in
efeece04 544.IP
627b50ce
MK
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.\"
fea681da 557.TP
d67e21f5
MK
558.BR FUTEX_WAKE_OP " (since Linux 2.6.14)"
559.\" commit 4732efbeb997189d9f9b04708dc26bf8613ed721
6bac3b85
MK
560.\" Author: Jakub Jelinek <jakub@redhat.com>
561.\" Date: Tue Sep 6 15:16:25 2005 -0700
9915ea23 562.\" FIXME. (Torvald) The glibc condvar implementation is currently being
4c8cb0ff
MK
563.\" revised (e.g., to not use an internal lock anymore).
564.\" It is probably more future-proof to remove this paragraph.
d6bb5a38 565.\" [Torvald, do you have an update here?]
6bac3b85
MK
566This operation was added to support some user-space use cases
567where more than one futex must be handled at the same time.
568The most notable example is the implementation of
569.BR pthread_cond_signal (3),
570which requires operations on two futexes,
571the one used to implement the mutex and the one used in the implementation
572of the wait queue associated with the condition variable.
573.BR FUTEX_WAKE_OP
574allows such cases to be implemented without leading to
575high rates of contention and context switching.
efeece04 576.IP
6bac3b85 577The
57f2d48b 578.BR FUTEX_WAKE_OP
e61abc20 579operation is equivalent to executing the following code atomically
4c8cb0ff
MK
580and totally ordered with respect to other futex operations on
581any of the two supplied futex words:
efeece04 582.IP
6bac3b85 583.in +4n
b76974c1 584.EX
6bac3b85
MK
585int oldval = *(int *) uaddr2;
586*(int *) uaddr2 = oldval \fIop\fP \fIoparg\fP;
587futex(uaddr, FUTEX_WAKE, val, 0, 0, 0);
588if (oldval \fIcmp\fP \fIcmparg\fP)
768d3c23 589 futex(uaddr2, FUTEX_WAKE, val2, 0, 0, 0);
b76974c1 590.EE
6bac3b85 591.in
efeece04 592.IP
6bac3b85 593In other words,
57f2d48b 594.BR FUTEX_WAKE_OP
6bac3b85
MK
595does the following:
596.RS
597.IP * 3
4b35dc5d
TR
598saves the original value of the futex word at
599.IR uaddr2
600and performs an operation to modify the value of the futex at
6bac3b85 601.IR uaddr2 ;
4c8cb0ff
MK
602this is an atomic read-modify-write memory access (i.e., using atomic
603machine instructions of the respective architecture)
6bac3b85
MK
604.IP *
605wakes up a maximum of
606.I val
4b35dc5d 607waiters on the futex for the futex word at
6bac3b85
MK
608.IR uaddr ;
609and
610.IP *
4c8cb0ff
MK
611dependent on the results of a test of the original value of the
612futex word at
6bac3b85
MK
613.IR uaddr2 ,
614wakes up a maximum of
768d3c23 615.I val2
4b35dc5d 616waiters on the futex for the futex word at
6bac3b85
MK
617.IR uaddr2 .
618.RE
619.IP
6bac3b85
MK
620The operation and comparison that are to be performed are encoded
621in the bits of the argument
622.IR val3 .
623Pictorially, the encoding is:
efeece04 624.IP
f6af90e7 625.in +8n
b76974c1 626.EX
f6af90e7
MK
627+---+---+-----------+-----------+
628|op |cmp| oparg | cmparg |
629+---+---+-----------+-----------+
630 4 4 12 12 <== # of bits
b76974c1 631.EE
6bac3b85 632.in
efeece04 633.IP
6bac3b85 634Expressed in code, the encoding is:
efeece04 635.IP
6bac3b85 636.in +4n
b76974c1 637.EX
d1a71985
MK
638#define FUTEX_OP(op, oparg, cmp, cmparg) \e
639 (((op & 0xf) << 28) | \e
640 ((cmp & 0xf) << 24) | \e
641 ((oparg & 0xfff) << 12) | \e
6bac3b85 642 (cmparg & 0xfff))
b76974c1 643.EE
6bac3b85 644.in
efeece04 645.IP
6bac3b85
MK
646In the above,
647.I op
648and
649.I cmp
650are each one of the codes listed below.
651The
652.I oparg
653and
654.I cmparg
655components are literal numeric values, except as noted below.
efeece04 656.IP
6bac3b85
MK
657The
658.I op
659component has one of the following values:
efeece04 660.IP
6bac3b85 661.in +4n
b76974c1 662.EX
6bac3b85
MK
663FUTEX_OP_SET 0 /* uaddr2 = oparg; */
664FUTEX_OP_ADD 1 /* uaddr2 += oparg; */
665FUTEX_OP_OR 2 /* uaddr2 |= oparg; */
666FUTEX_OP_ANDN 3 /* uaddr2 &= ~oparg; */
667FUTEX_OP_XOR 4 /* uaddr2 ^= oparg; */
b76974c1 668.EE
6bac3b85 669.in
efeece04 670.IP
6bac3b85
MK
671In addition, bit-wise ORing the following value into
672.I op
673causes
674.IR "(1\ <<\ oparg)"
675to be used as the operand:
efeece04 676.IP
6bac3b85 677.in +4n
b76974c1 678.EX
6bac3b85 679FUTEX_OP_ARG_SHIFT 8 /* Use (1 << oparg) as operand */
b76974c1 680.EE
6bac3b85 681.in
efeece04 682.IP
6bac3b85
MK
683The
684.I cmp
685field is one of the following:
efeece04 686.IP
6bac3b85 687.in +4n
b76974c1 688.EX
6bac3b85
MK
689FUTEX_OP_CMP_EQ 0 /* if (oldval == cmparg) wake */
690FUTEX_OP_CMP_NE 1 /* if (oldval != cmparg) wake */
691FUTEX_OP_CMP_LT 2 /* if (oldval < cmparg) wake */
692FUTEX_OP_CMP_LE 3 /* if (oldval <= cmparg) wake */
693FUTEX_OP_CMP_GT 4 /* if (oldval > cmparg) wake */
694FUTEX_OP_CMP_GE 5 /* if (oldval >= cmparg) wake */
b76974c1 695.EE
6bac3b85 696.in
efeece04 697.IP
6bac3b85
MK
698The return value of
699.BR FUTEX_WAKE_OP
700is the sum of the number of waiters woken on the futex
701.IR uaddr
702plus the number of waiters woken on the futex
703.IR uaddr2 .
70b06b90
MK
704.\"
705.\""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
706.\"
d67e21f5 707.TP
79c9b436
TG
708.BR FUTEX_WAIT_BITSET " (since Linux 2.6.25)"
709.\" commit cd689985cf49f6ff5c8eddc48d98b9d581d9475d
fd9e59d4 710This operation is like
79c9b436
TG
711.BR FUTEX_WAIT
712except that
713.I val3
84abf4ba 714is used to provide a 32-bit bit mask to the kernel.
2ae96e8a 715This bit mask, in which at least one bit must be set,
6c38ce7f 716is stored in the kernel-internal state of the waiter.
79c9b436
TG
717See the description of
718.BR FUTEX_WAKE_BITSET
719for further details.
efeece04 720.IP
8064bfa5
MK
721If
722.I timeout
723is not NULL, the structure it points to specifies
724an absolute timeout for the wait operation.
725If
726.I timeout
727is NULL, the operation can block indefinitely.
efeece04
MK
728.IP
729.IP
79c9b436
TG
730The
731.I uaddr2
732argument is ignored.
70b06b90
MK
733.\"
734.\""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
735.\"
79c9b436 736.TP
d67e21f5
MK
737.BR FUTEX_WAKE_BITSET " (since Linux 2.6.25)"
738.\" commit cd689985cf49f6ff5c8eddc48d98b9d581d9475d
55cc422d
TG
739This operation is the same as
740.BR FUTEX_WAKE
741except that the
e24fbf10 742.I val3
5e1456d4 743argument is used to provide a 32-bit bit mask to the kernel.
6c38ce7f
MK
744This bit mask, in which at least one bit must be set,
745is used to select which waiters should be woken up.
5e1456d4 746The selection is done by a bit-wise AND of the "wake" bit mask
98d769c0
MK
747(i.e., the value in
748.IR val3 )
5e1456d4
MK
749and the bit mask which is stored in the kernel-internal
750state of the waiter (the "wait" bit mask that is set using
98d769c0
MK
751.BR FUTEX_WAIT_BITSET ).
752All of the waiters for which the result of the AND is nonzero are woken up;
753the remaining waiters are left sleeping.
efeece04 754.IP
e9d4496b
MK
755The effect of
756.BR FUTEX_WAIT_BITSET
757and
758.BR FUTEX_WAKE_BITSET
9732dd8b
MK
759is to allow selective wake-ups among multiple waiters that are blocked
760on the same futex.
ac894879 761However, note that, depending on the use case,
5e1456d4 762employing this bit-mask multiplexing feature on a
ac894879 763futex can be less efficient than simply using multiple futexes,
5e1456d4 764because employing bit-mask multiplexing requires the kernel
e9d4496b
MK
765to check all waiters on a futex,
766including those that are not interested in being woken up
5e1456d4 767(i.e., they do not have the relevant bit set in their "wait" bit mask).
e9d4496b
MK
768.\" According to http://locklessinc.com/articles/futex_cheat_sheet/:
769.\"
770.\" "The original reason for the addition of these extensions
771.\" was to improve the performance of pthread read-write locks
772.\" in glibc. However, the pthreads library no longer uses the
773.\" same locking algorithm, and these extensions are not used
774.\" without the bitset parameter being all ones.
e24fbf10 775.\"
e9d4496b 776.\" The page goes on to note that the FUTEX_WAIT_BITSET operation
5e1456d4 777.\" is nevertheless used (with a bit mask of all ones) in order to
e9d4496b
MK
778.\" obtain the absolute timeout functionality that is useful
779.\" for efficiently implementing Pthreads APIs (which use absolute
780.\" timeouts); FUTEX_WAIT provides only relative timeouts.
efeece04 781.IP
678c9986
MK
782The constant
783.BR FUTEX_BITSET_MATCH_ANY ,
784which corresponds to all 32 bits set in the bit mask, can be used as the
785.I val3
786argument for
787.BR FUTEX_WAIT_BITSET
98d769c0 788and
678c9986
MK
789.BR FUTEX_WAKE_BITSET .
790Other than differences in the handling of the
98d769c0 791.I timeout
678c9986 792argument, the
9732dd8b 793.BR FUTEX_WAIT
678c9986 794operation is equivalent to
9732dd8b 795.BR FUTEX_WAIT_BITSET
678c9986
MK
796with
797.IR val3
798specified as
799.BR FUTEX_BITSET_MATCH_ANY ;
800that is, allow a wake-up by any waker.
801The
802.BR FUTEX_WAKE
803operation is equivalent to
9732dd8b 804.BR FUTEX_WAKE_BITSET
678c9986
MK
805with
806.IR val3
807specified as
808.BR FUTEX_BITSET_MATCH_ANY ;
809that is, wake up any waiter(s).
efeece04 810.IP
678c9986
MK
811The
812.I uaddr2
813and
814.I timeout
815arguments are ignored.
bd90a5f9 816.\"
70b06b90 817.\""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
bd90a5f9
MK
818.\"
819.SS Priority-inheritance futexes
b52e1cd4
MK
820Linux supports priority-inheritance (PI) futexes in order to handle
821priority-inversion problems that can be encountered with
822normal futex locks.
b565548b 823Priority inversion is the problem that occurs when a high-priority
bdc5957a
MK
824task is blocked waiting to acquire a lock held by a low-priority task,
825while tasks at an intermediate priority continuously preempt
826the low-priority task from the CPU.
827Consequently, the low-priority task makes no progress toward
828releasing the lock, and the high-priority task remains blocked.
efeece04 829.PP
7d20efd7
MK
830Priority inheritance is a mechanism for dealing with
831the priority-inversion problem.
bdc5957a
MK
832With this mechanism, when a high-priority task becomes blocked
833by a lock held by a low-priority task,
9cee832c
MK
834the priority of the low-priority task is temporarily raised
835to that of the high-priority task,
bdc5957a 836so that it is not preempted by any intermediate level tasks,
7d20efd7
MK
837and can thus make progress toward releasing the lock.
838To be effective, priority inheritance must be transitive,
bdc5957a 839meaning that if a high-priority task blocks on a lock
ca4e5b2b 840held by a lower-priority task that is itself blocked by a lock
bdc5957a 841held by another intermediate-priority task
7d20efd7 842(and so on, for chains of arbitrary length),
b0f35fbb 843then both of those tasks
bdc5957a
MK
844(or more generally, all of the tasks in a lock chain)
845have their priorities raised to be the same as the high-priority task.
efeece04 846.PP
9e2b90ee 847From a user-space perspective,
39e9b2e1
MK
848what makes a futex PI-aware is a policy agreement (described below)
849between user space and the kernel about the value of the futex word,
601399f3
MK
850coupled with the use of the PI-futex operations described below.
851(Unlike the other futex operations described above,
852the PI-futex operations are designed
853for the implementation of very specific IPC mechanisms.)
854.\"
9e2b90ee
MK
855.\" Quoting Darren Hart:
856.\" These opcodes paired with the PI futex value policy (described below)
857.\" defines a "futex" as PI aware. These were created very specifically
858.\" in support of PI pthread_mutexes, so it makes a lot more sense to
859.\" talk about a PI aware pthread_mutex, than a PI aware futex, since
860.\" there is a lot of policy and scaffolding that has to be built up
861.\" around it to use it properly (this is what a PI pthread_mutex is).
efeece04 862.PP
ac894879 863.\" mtk: The following text is drawn from the Hart/Guniguntala paper
1af427a4 864.\" (listed in SEE ALSO), but I have reworded some pieces
8d825152 865.\" significantly.
79d918c7 866.\"
f0a9e8f4 867The PI-futex operations described below differ from the other
4b35dc5d
TR
868futex operations in that they impose policy on the use of the value of the
869futex word:
79d918c7 870.IP * 3
4b35dc5d 871If the lock is not acquired, the futex word's value shall be 0.
79d918c7 872.IP *
4c8cb0ff
MK
873If the lock is acquired, the futex word's value shall
874be the thread ID (TID;
4b35dc5d 875see
79d918c7
MK
876.BR gettid (2))
877of the owning thread.
878.IP *
79d918c7
MK
879If the lock is owned and there are threads contending for the lock,
880then the
881.B FUTEX_WAITERS
4b35dc5d 882bit shall be set in the futex word's value; in other words, this value is:
efeece04 883.IP
79d918c7 884 FUTEX_WAITERS | TID
601399f3
MK
885.IP
886(Note that is invalid for a PI futex word to have no owner and
887.BR FUTEX_WAITERS
888set.)
79d918c7
MK
889.PP
890With this policy in place,
fd105614 891a user-space application can acquire an unacquired
601399f3 892lock or release a lock using atomic instructions executed in user mode
fd105614 893(e.g., a compare-and-swap operation such as
b52e1cd4
MK
894.I cmpxchg
895on the x86 architecture).
4c8cb0ff
MK
896Acquiring a lock simply consists of using compare-and-swap to atomically
897set the futex word's value to the caller's TID if its previous value was 0.
4b35dc5d
TR
898Releasing a lock requires using compare-and-swap to set the futex word's
899value to 0 if the previous value was the expected TID.
efeece04 900.PP
4b35dc5d 901If a futex is already acquired (i.e., has a nonzero value),
b52e1cd4 902waiters must employ the
79d918c7
MK
903.B FUTEX_LOCK_PI
904operation to acquire the lock.
4b35dc5d 905If other threads are waiting for the lock, then the
79d918c7 906.B FUTEX_WAITERS
4c8cb0ff
MK
907bit is set in the futex value;
908in this case, the lock owner must employ the
79d918c7 909.B FUTEX_UNLOCK_PI
b52e1cd4 910operation to release the lock.
efeece04 911.PP
79d918c7
MK
912In the cases where callers are forced into the kernel
913(i.e., required to perform a
914.BR futex ()
0c3ec26b 915call),
79d918c7
MK
916they then deal directly with a so-called RT-mutex,
917a kernel locking mechanism which implements the required
918priority-inheritance semantics.
919After the RT-mutex is acquired, the futex value is updated accordingly,
920before the calling thread returns to user space.
efeece04 921.PP
a59fca75 922It is important to note
ac894879 923.\" tglx (July 2015):
30239c10
MK
924.\" If there are multiple waiters on a pi futex then a wake pi operation
925.\" will wake the first waiter and hand over the lock to this waiter. This
926.\" includes handing over the rtmutex which represents the futex in the
927.\" kernel. The strict requirement is that the futex owner and the rtmutex
928.\" owner must be the same, except for the update period which is
929.\" serialized by the futex internal locking. That means the kernel must
1d09c150 930.\" update the user-space value prior to returning to user space
4b35dc5d 931that the kernel will update the futex word's value prior
79d918c7 932to returning to user space.
601399f3
MK
933(This prevents the possibility of the futex word's value ending
934up in an invalid state, such as having an owner but the value being 0,
935or having waiters but not having the
936.B FUTEX_WAITERS
937bit set.)
efeece04 938.PP
30239c10
MK
939If a futex has an associated RT-mutex in the kernel
940(i.e., there are blocked waiters)
941and the owner of the futex/RT-mutex dies unexpectedly,
942then the kernel cleans up the RT-mutex and hands it over to the next waiter.
943This in turn requires that the user-space value is updated accordingly.
944To indicate that this is required, the kernel sets the
945.B FUTEX_OWNER_DIED
946bit in the futex word along with the thread ID of the new owner.
8adaf0a7
MK
947User space can detect this situation via the presence of the
948.B FUTEX_OWNER_DIED
949bit and is then responsible for cleaning up the stale state left over by
1d09c150 950the dead owner.
30239c10
MK
951.\" tglx (July 2015):
952.\" The FUTEX_OWNER_DIED bit can also be set on uncontended futexes, where
953.\" the kernel has no state associated. This happens via the robust futex
954.\" mechanism. In that case the futex value will be set to
955.\" FUTEX_OWNER_DIED. The robust futex mechanism is also available for non
956.\" PI futexes.
efeece04 957.PP
601399f3
MK
958PI futexes are operated on by specifying one of the values listed below in
959.IR futex_op .
960Note that the PI futex operations must be used as paired operations
961and are subject to some additional requirements:
962.IP * 3
963.B FUTEX_LOCK_PI
964and
965.B FUTEX_TRYLOCK_PI
966pair with
d8012462 967.BR FUTEX_UNLOCK_PI .
601399f3
MK
968.B FUTEX_UNLOCK_PI
969must be called only on a futex owned by the calling thread,
970as defined by the value policy, otherwise the error
971.B EPERM
972results.
973.IP *
974.B FUTEX_WAIT_REQUEUE_PI
975pairs with
976.BR FUTEX_CMP_REQUEUE_PI .
977This must be performed from a non-PI futex to a distinct PI futex
978(or the error
979.B EINVAL
980results).
981Additionally,
982.I val
983(the number of waiters to be woken) must be 1
984(or the error
985.B EINVAL
986results).
11ac5b51 987.PP
601399f3 988The PI futex operations are as follows:
70b06b90
MK
989.\"
990.\""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
991.\"
d67e21f5
MK
992.TP
993.BR FUTEX_LOCK_PI " (since Linux 2.6.18)"
994.\" commit c87e2837be82df479a6bae9f155c43516d2feebc
bc54ed38 995This operation is used after an attempt to acquire
fd105614 996the lock via an atomic user-mode instruction failed
4b35dc5d 997because the futex word has a nonzero value\(emspecifically,
8297383e 998because it contained the (PID-namespace-specific) TID of the lock owner.
efeece04 999.IP
4b35dc5d 1000The operation checks the value of the futex word at the address
67833bec 1001.IR uaddr .
70b06b90
MK
1002If the value is 0, then the kernel tries to atomically set
1003the futex value to the caller's TID.
c3875d1d 1004If the futex word's value is nonzero,
67833bec 1005the kernel atomically sets the
e0547e70 1006.B FUTEX_WAITERS
67833bec
MK
1007bit, which signals the futex owner that it cannot unlock the futex in
1008user space atomically by setting the futex value to 0.
c3875d1d
MK
1009.\" tglx (July 2015):
1010.\" The operation here is similar to the FUTEX_WAIT logic. When the user
1011.\" space atomic acquire does not succeed because the futex value was non
1012.\" zero, then the waiter goes into the kernel, takes the kernel internal
1013.\" lock and retries the acquisition under the lock. If the acquisition
1014.\" does not succeed either, then it sets the FUTEX_WAITERS bit, to signal
1015.\" the lock owner that it needs to go into the kernel. Here is the pseudo
1016.\" code:
1017.\"
1018.\" lock(kernel_lock);
1019.\" retry:
1020.\"
1021.\" /*
1022.\" * Owner might have unlocked in userspace before we
1023.\" * were able to set the waiter bit.
1024.\" */
1025.\" if (atomic_acquire(futex) == SUCCESS) {
1026.\" unlock(kernel_lock());
1027.\" return 0;
1028.\" }
1029.\"
1030.\" /*
1031.\" * Owner might have unlocked after the above atomic_acquire()
1032.\" * attempt.
1033.\" */
1034.\" if (atomic_set_waiters_bit(futex) != SUCCESS)
1035.\" goto retry;
1036.\"
1037.\" queue_waiter();
1038.\" unlock(kernel_lock);
1039.\" block();
1040.\"
1041After that, the kernel:
1042.RS
1043.IP 1. 3
1044Tries to find the thread which is associated with the owner TID.
1045.IP 2.
1046Creates or reuses kernel state on behalf of the owner.
1047(If this is the first waiter, there is no kernel state for this
1048futex, so kernel state is created by locking the RT-mutex
1049and the futex owner is made the owner of the RT-mutex.
1050If there are existing waiters, then the existing state is reused.)
1051.IP 3.
ca4e5b2b 1052Attaches the waiter to the futex
c3875d1d
MK
1053(i.e., the waiter is enqueued on the RT-mutex waiter list).
1054.RE
1055.IP
ac894879
MK
1056If more than one waiter exists,
1057the enqueueing of the waiter is in descending priority order.
1058(For information on priority ordering, see the discussion of the
1059.BR SCHED_DEADLINE ,
1060.BR SCHED_FIFO ,
1061and
1062.BR SCHED_RR
1063scheduling policies in
1064.BR sched (7).)
1065The owner inherits either the waiter's CPU bandwidth
1066(if the waiter is scheduled under the
1067.BR SCHED_DEADLINE
1068policy) or the waiter's priority (if the waiter is scheduled under the
1069.BR SCHED_RR
1070or
1071.BR SCHED_FIFO
1072policy).
1d09c150
MK
1073.\" August 2015:
1074.\" mtk: If the realm is restricted purely to SCHED_OTHER (SCHED_NORMAL)
1075.\" processes, does the nice value come into play also?
1076.\"
1077.\" tglx: No. SCHED_OTHER/NORMAL tasks are handled in FIFO order
c3875d1d 1078This inheritance follows the lock chain in the case of nested locking
ca4e5b2b
MK
1079.\" (i.e., task 1 blocks on lock A, held by task 2,
1080.\" while task 2 blocks on lock B, held by task 3)
c3875d1d 1081and performs deadlock detection.
efeece04 1082.IP
e0547e70
TG
1083The
1084.I timeout
9ce19cf1 1085argument provides a timeout for the lock attempt.
8064bfa5
MK
1086If
1087.I timeout
1088is not NULL, the structure it points to specifies
1089an absolute timeout, measured against the
9ce19cf1
MK
1090.BR CLOCK_REALTIME
1091clock.
c082f385
MK
1092.\" 2016-07-07 response from Thomas Gleixner on LKML:
1093.\" From: Thomas Gleixner <tglx@linutronix.de>
1094.\" Date: 6 July 2016 at 20:57
1095.\" Subject: Re: futex: Allow FUTEX_CLOCK_REALTIME with FUTEX_WAIT op
2ae96e8a 1096.\"
c082f385
MK
1097.\" On Thu, 23 Jun 2016, Michael Kerrisk (man-pages) wrote:
1098.\" > On 06/23/2016 08:28 PM, Darren Hart wrote:
1099.\" > > And as a follow-on, what is the reason for FUTEX_LOCK_PI only using
1100.\" > > CLOCK_REALTIME? It seems reasonable to me that a user may want to wait a
1101.\" > > specific amount of time, regardless of wall time.
1102.\" >
1103.\" > Yes, that's another weird inconsistency.
2ae96e8a 1104.\"
c082f385
MK
1105.\" The reason is that phtread_mutex_timedlock() uses absolute timeouts based on
1106.\" CLOCK_REALTIME. glibc folks asked to make that the default behaviour back
1107.\" then when we added LOCK_PI.
9ce19cf1
MK
1108If
1109.I timeout
1110is NULL, the operation will block indefinitely.
efeece04 1111.IP
a449c634 1112The
e0547e70
TG
1113.IR uaddr2 ,
1114.IR val ,
1115and
1116.IR val3
a449c634 1117arguments are ignored.
67833bec 1118.\"
70b06b90
MK
1119.\""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
1120.\"
d67e21f5 1121.TP
12fdbe23 1122.BR FUTEX_TRYLOCK_PI " (since Linux 2.6.18)"
d67e21f5 1123.\" commit c87e2837be82df479a6bae9f155c43516d2feebc
3fbb1be1 1124This operation tries to acquire the lock at
12fdbe23 1125.IR uaddr .
c3875d1d
MK
1126It is invoked when a user-space atomic acquire did not
1127succeed because the futex word was not 0.
efeece04 1128.IP
8adaf0a7
MK
1129Because the kernel has access to more state information than user space,
1130acquisition of the lock might succeed if performed by the
1131kernel in cases where the futex word
1132(i.e., the state information accessible to use-space) contains stale state
c3875d1d
MK
1133.RB ( FUTEX_WAITERS
1134and/or
1135.BR FUTEX_OWNER_DIED ).
1136This can happen when the owner of the futex died.
1d09c150
MK
1137User space cannot handle this condition in a race-free manner,
1138but the kernel can fix this up and acquire the futex.
ee65b0e8
MK
1139.\" Paraphrasing a f2f conversation with Thomas Gleixner about the
1140.\" above point (Aug 2015): ###
1141.\" There is a rare possibility of a race condition involving an
1142.\" uncontended futex with no owner, but with waiters. The
1143.\" kernel-user-space contract is that if a futex is nonzero, you must
1144.\" go into kernel. The futex was owned by a task, and that task dies
1145.\" but there are no waiters, so the futex value is non zero.
1146.\" Therefore, the next locker has to go into the kernel,
1147.\" so that the kernel has a chance to clean up. (CMXCH on zero
1148.\" in user space would fail, so kernel has to clean up.)
8adaf0a7
MK
1149.\" Darren Hart (Oct 2015):
1150.\" The trylock in the kernel has more state, so it can independently
1151.\" verify the flags that userspace must trust implicitly.
efeece04 1152.IP
084744ef
MK
1153The
1154.IR uaddr2 ,
1155.IR val ,
1156.IR timeout ,
1157and
1158.IR val3
1159arguments are ignored.
70b06b90
MK
1160.\"
1161.\""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
1162.\"
d67e21f5 1163.TP
12fdbe23 1164.BR FUTEX_UNLOCK_PI " (since Linux 2.6.18)"
d67e21f5 1165.\" commit c87e2837be82df479a6bae9f155c43516d2feebc
d4ba4328 1166This operation wakes the top priority waiter that is waiting in
ecae2099
TG
1167.B FUTEX_LOCK_PI
1168on the futex address provided by the
1169.I uaddr
1170argument.
efeece04 1171.IP
1d09c150 1172This is called when the user-space value at
ecae2099
TG
1173.I uaddr
1174cannot be changed atomically from a TID (of the owner) to 0.
efeece04 1175.IP
ecae2099
TG
1176The
1177.IR uaddr2 ,
1178.IR val ,
1179.IR timeout ,
1180and
1181.IR val3
11a194bf 1182arguments are ignored.
70b06b90
MK
1183.\"
1184.\""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
1185.\"
d67e21f5 1186.TP
d67e21f5
MK
1187.BR FUTEX_CMP_REQUEUE_PI " (since Linux 2.6.31)"
1188.\" commit 52400ba946759af28442dee6265c5c0180ac7122
f812a08b
DH
1189This operation is a PI-aware variant of
1190.BR FUTEX_CMP_REQUEUE .
1191It requeues waiters that are blocked via
1192.B FUTEX_WAIT_REQUEUE_PI
1193on
1194.I uaddr
1195from a non-PI source futex
1196.RI ( uaddr )
1197to a PI target futex
1198.RI ( uaddr2 ).
efeece04 1199.IP
9e54d26d
MK
1200As with
1201.BR FUTEX_CMP_REQUEUE ,
1202this operation wakes up a maximum of
1203.I val
1204waiters that are waiting on the futex at
1205.IR uaddr .
1206However, for
1207.BR FUTEX_CMP_REQUEUE_PI ,
1208.I val
6fbeb8f4 1209is required to be 1
939ca89f 1210(since the main point is to avoid a thundering herd).
9e54d26d
MK
1211The remaining waiters are removed from the wait queue of the source futex at
1212.I uaddr
1213and added to the wait queue of the target futex at
1214.IR uaddr2 .
efeece04 1215.IP
9e54d26d 1216The
768d3c23 1217.I val2
c6d8cf21
MK
1218.\" val2 is the cap on the number of requeued waiters.
1219.\" In the glibc pthread_cond_broadcast() implementation, this argument
1220.\" is specified as INT_MAX, and for pthread_cond_signal() it is 0.
9e54d26d 1221and
768d3c23 1222.I val3
9e54d26d
MK
1223arguments serve the same purposes as for
1224.BR FUTEX_CMP_REQUEUE .
70b06b90 1225.\"
8297383e 1226.\" The page at http://locklessinc.com/articles/futex_cheat_sheet/
be376673 1227.\" notes that "priority-inheritance Futex to priority-inheritance
8297383e
MK
1228.\" Futex requeues are currently unsupported". However, probably
1229.\" the page does not need to say nothing about this, since
1230.\" Thomas Gleixner commented (July 2015): "they never will be
1231.\" supported because they make no sense at all"
70b06b90
MK
1232.\"
1233.\""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
1234.\"
d67e21f5
MK
1235.TP
1236.BR FUTEX_WAIT_REQUEUE_PI " (since Linux 2.6.31)"
1237.\" commit 52400ba946759af28442dee6265c5c0180ac7122
70b06b90 1238.\"
c3875d1d 1239Wait on a non-PI futex at
6ff1b4c0 1240.I uaddr
c3875d1d
MK
1241and potentially be requeued (via a
1242.BR FUTEX_CMP_REQUEUE_PI
1243operation in another task) onto a PI futex at
6ff1b4c0
TG
1244.IR uaddr2 .
1245The wait operation on
1246.I uaddr
c3875d1d 1247is the same as for
6ff1b4c0 1248.BR FUTEX_WAIT .
efeece04 1249.IP
6ff1b4c0
TG
1250The waiter can be removed from the wait on
1251.I uaddr
6ff1b4c0 1252without requeueing on
c3875d1d
MK
1253.IR uaddr2
1254via a
1d09c150 1255.BR FUTEX_WAKE
c3875d1d
MK
1256operation in another task.
1257In this case, the
1258.BR FUTEX_WAIT_REQUEUE_PI
3fbb1be1
MK
1259operation fails with the error
1260.BR EAGAIN .
efeece04 1261.IP
63bea7dc
MK
1262If
1263.I timeout
8064bfa5
MK
1264is not NULL, the structure it points to specifies
1265an absolute timeout for the wait operation.
63bea7dc
MK
1266If
1267.I timeout
1268is NULL, the operation can block indefinitely.
efeece04 1269.IP
a4e69912
MK
1270The
1271.I val3
1272argument is ignored.
efeece04 1273.IP
abb571e8
MK
1274The
1275.BR FUTEX_WAIT_REQUEUE_PI
1276and
1277.BR FUTEX_CMP_REQUEUE_PI
1278were added to support a fairly specific use case:
1279support for priority-inheritance-aware POSIX threads condition variables.
1280The idea is that these operations should always be paired,
1281in order to ensure that user space and the kernel remain in sync.
1282Thus, in the
1283.BR FUTEX_WAIT_REQUEUE_PI
1284operation, the user-space application pre-specifies the target
1285of the requeue that takes place in the
1286.BR FUTEX_CMP_REQUEUE_PI
1287operation.
1288.\"
1289.\" Darren Hart notes that a patch to allow glibc to fully support
1af427a4 1290.\" PI-aware pthreads condition variables has not yet been accepted into
abb571e8
MK
1291.\" glibc. The story is complex, and can be found at
1292.\" https://sourceware.org/bugzilla/show_bug.cgi?id=11588
1293.\" Darren notes that in the meantime, the patch is shipped with various
1af427a4 1294.\" PREEMPT_RT-enabled Linux systems.
abb571e8
MK
1295.\"
1296.\" Related to the preceding, Darren proposed that somewhere, man-pages
1297.\" should document the following point:
1af427a4 1298.\"
4c8cb0ff
MK
1299.\" While the Linux kernel, since 2.6.31, supports requeueing of
1300.\" priority-inheritance (PI) aware mutexes via the
1301.\" FUTEX_WAIT_REQUEUE_PI and FUTEX_CMP_REQUEUE_PI futex operations,
1302.\" the glibc implementation does not yet take full advantage of this.
1303.\" Specifically, the condvar internal data lock remains a non-PI aware
1304.\" mutex, regardless of the type of the pthread_mutex associated with
1305.\" the condvar. This can lead to an unbounded priority inversion on
1306.\" the internal data lock even when associating a PI aware
1307.\" pthread_mutex with a condvar during a pthread_cond*_wait
1308.\" operation. For this reason, it is not recommended to rely on
1309.\" priority inheritance when using pthread condition variables.
1af427a4
MK
1310.\"
1311.\" The problem is that the obvious location for this text is
1312.\" the pthread_cond*wait(3) man page. However, such a man page
abb571e8 1313.\" does not currently exist.
70b06b90 1314.\"
6700de24 1315.\""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
70b06b90 1316.\"
47297adb 1317.SH RETURN VALUE
fea681da 1318.PP
a5c5a06a
MK
1319In the event of an error (and assuming that
1320.BR futex ()
1321was invoked via
1322.BR syscall (2)),
1323all operations return \-1 and set
e808bba0 1324.I errno
6f147f79 1325to indicate the cause of the error.
efeece04 1326.PP
e808bba0
MK
1327The return value on success depends on the operation,
1328as described in the following list:
fea681da
MK
1329.TP
1330.B FUTEX_WAIT
077981d4 1331Returns 0 if the caller was woken up.
4c8cb0ff
MK
1332Note that a wake-up can also be caused by common futex usage patterns
1333in unrelated code that happened to have previously used the futex word's
1334memory location (e.g., typical futex-based implementations of
1335Pthreads mutexes can cause this under some conditions).
1336Therefore, callers should always conservatively assume that a return
1337value of 0 can mean a spurious wake-up, and use the futex word's value
bc54ed38
MK
1338(i.e., the user-space synchronization scheme)
1339to decide whether to continue to block or not.
fea681da
MK
1340.TP
1341.B FUTEX_WAKE
bdc5957a 1342Returns the number of waiters that were woken up.
fea681da
MK
1343.TP
1344.B FUTEX_FD
1345Returns the new file descriptor associated with the futex.
1346.TP
1347.B FUTEX_REQUEUE
bdc5957a 1348Returns the number of waiters that were woken up.
fea681da
MK
1349.TP
1350.B FUTEX_CMP_REQUEUE
bdc5957a 1351Returns the total number of waiters that were woken up or
4b35dc5d 1352requeued to the futex for the futex word at
3dfcc11d
MK
1353.IR uaddr2 .
1354If this value is greater than
1355.IR val ,
fd105614 1356then the difference is the number of waiters requeued to the futex for the
4c8cb0ff 1357futex word at
3dfcc11d 1358.IR uaddr2 .
dcad19c0
MK
1359.TP
1360.B FUTEX_WAKE_OP
a8b5b324 1361Returns the total number of waiters that were woken up.
4c8cb0ff
MK
1362This is the sum of the woken waiters on the two futexes for
1363the futex words at
a8b5b324
MK
1364.I uaddr
1365and
1366.IR uaddr2 .
dcad19c0
MK
1367.TP
1368.B FUTEX_WAIT_BITSET
077981d4
MK
1369Returns 0 if the caller was woken up.
1370See
4b35dc5d
TR
1371.B FUTEX_WAIT
1372for how to interpret this correctly in practice.
dcad19c0
MK
1373.TP
1374.B FUTEX_WAKE_BITSET
bdc5957a 1375Returns the number of waiters that were woken up.
dcad19c0
MK
1376.TP
1377.B FUTEX_LOCK_PI
bf02a260 1378Returns 0 if the futex was successfully locked.
dcad19c0
MK
1379.TP
1380.B FUTEX_TRYLOCK_PI
5c716eef 1381Returns 0 if the futex was successfully locked.
dcad19c0
MK
1382.TP
1383.B FUTEX_UNLOCK_PI
52bb928f 1384Returns 0 if the futex was successfully unlocked.
dcad19c0
MK
1385.TP
1386.B FUTEX_CMP_REQUEUE_PI
bdc5957a 1387Returns the total number of waiters that were woken up or
4b35dc5d 1388requeued to the futex for the futex word at
dddd395a
MK
1389.IR uaddr2 .
1390If this value is greater than
1391.IR val ,
4c8cb0ff
MK
1392then difference is the number of waiters requeued to the futex for
1393the futex word at
dddd395a 1394.IR uaddr2 .
dcad19c0
MK
1395.TP
1396.B FUTEX_WAIT_REQUEUE_PI
4c8cb0ff
MK
1397Returns 0 if the caller was successfully requeued to the futex for
1398the futex word at
22c15de9 1399.IR uaddr2 .
70b06b90
MK
1400.\"
1401.\""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
1402.\"
fea681da
MK
1403.SH ERRORS
1404.TP
1405.B EACCES
4b35dc5d 1406No read access to the memory of a futex word.
fea681da
MK
1407.TP
1408.B EAGAIN
f48516d1 1409.RB ( FUTEX_WAIT ,
4b35dc5d 1410.BR FUTEX_WAIT_BITSET ,
f48516d1 1411.BR FUTEX_WAIT_REQUEUE_PI )
badbf70c
MK
1412The value pointed to by
1413.I uaddr
1414was not equal to the expected value
1415.I val
1416at the time of the call.
efeece04 1417.IP
9732dd8b
MK
1418.BR Note :
1419on Linux, the symbolic names
1420.B EAGAIN
1421and
1422.B EWOULDBLOCK
77da5feb 1423(both of which appear in different parts of the kernel futex code)
9732dd8b 1424have the same value.
badbf70c
MK
1425.TP
1426.B EAGAIN
8f2068bb
MK
1427.RB ( FUTEX_CMP_REQUEUE ,
1428.BR FUTEX_CMP_REQUEUE_PI )
ce5602fd 1429The value pointed to by
9f6c40c0
МК
1430.I uaddr
1431is not equal to the expected value
1432.IR val3 .
fea681da 1433.TP
5662f56a
MK
1434.BR EAGAIN
1435.RB ( FUTEX_LOCK_PI ,
aaec9032
MK
1436.BR FUTEX_TRYLOCK_PI ,
1437.BR FUTEX_CMP_REQUEUE_PI )
1438The futex owner thread ID of
1439.I uaddr
1440(for
1441.BR FUTEX_CMP_REQUEUE_PI :
1442.IR uaddr2 )
1443is about to exit,
5662f56a
MK
1444but has not yet handled the internal state cleanup.
1445Try again.
1446.TP
7a39e745
MK
1447.BR EDEADLK
1448.RB ( FUTEX_LOCK_PI ,
9732dd8b
MK
1449.BR FUTEX_TRYLOCK_PI ,
1450.BR FUTEX_CMP_REQUEUE_PI )
4b35dc5d 1451The futex word at
7a39e745
MK
1452.I uaddr
1453is already locked by the caller.
1454.TP
662c0da8 1455.BR EDEADLK
c3875d1d 1456.\" FIXME . I see that kernel/locking/rtmutex.c uses EDEADLK in some
d6bb5a38 1457.\" places, and EDEADLOCK in others. On almost all architectures
4c8cb0ff
MK
1458.\" these constants are synonymous. Is there a reason that both
1459.\" names are used?
8297383e
MK
1460.\"
1461.\" tglx (July 2015): "No. We should probably fix that."
1462.\"
662c0da8 1463.RB ( FUTEX_CMP_REQUEUE_PI )
4b35dc5d 1464While requeueing a waiter to the PI futex for the futex word at
662c0da8
MK
1465.IR uaddr2 ,
1466the kernel detected a deadlock.
1467.TP
fea681da 1468.B EFAULT
1ea901e8
MK
1469A required pointer argument (i.e.,
1470.IR uaddr ,
1471.IR uaddr2 ,
1472or
1473.IR timeout )
496df304 1474did not point to a valid user-space address.
fea681da 1475.TP
9f6c40c0 1476.B EINTR
e808bba0 1477A
9f6c40c0 1478.B FUTEX_WAIT
2674f781
MK
1479or
1480.B FUTEX_WAIT_BITSET
e808bba0 1481operation was interrupted by a signal (see
f529fd20
MK
1482.BR signal (7)).
1483In kernels before Linux 2.6.22, this error could also be returned for
b5fff4ea 1484a spurious wakeup; since Linux 2.6.22, this no longer happens.
9f6c40c0 1485.TP
fea681da 1486.B EINVAL
180f97b7
MK
1487The operation in
1488.IR futex_op
1489is one of those that employs a timeout, but the supplied
fb2f4c27
MK
1490.I timeout
1491argument was invalid
1492.RI ( tv_sec
1493was less than zero, or
1494.IR tv_nsec
cabee29d 1495was not less than 1,000,000,000).
fb2f4c27
MK
1496.TP
1497.B EINVAL
0c74df0b 1498The operation specified in
025e1374 1499.IR futex_op
0c74df0b 1500employs one or both of the pointers
51ee94be 1501.I uaddr
a1f47699 1502and
0c74df0b
MK
1503.IR uaddr2 ,
1504but one of these does not point to a valid object\(emthat is,
1505the address is not four-byte-aligned.
51ee94be
MK
1506.TP
1507.B EINVAL
55cc422d
TG
1508.RB ( FUTEX_WAIT_BITSET ,
1509.BR FUTEX_WAKE_BITSET )
5e1456d4 1510The bit mask supplied in
79c9b436
TG
1511.IR val3
1512is zero.
1513.TP
1514.B EINVAL
2abcba67 1515.RB ( FUTEX_CMP_REQUEUE_PI )
add875c0
MK
1516.I uaddr
1517equals
1518.IR uaddr2
1519(i.e., an attempt was made to requeue to the same futex).
1520.TP
ff597681
MK
1521.BR EINVAL
1522.RB ( FUTEX_FD )
1523The signal number supplied in
1524.I val
1525is invalid.
1526.TP
6bac3b85 1527.B EINVAL
476debd7
MK
1528.RB ( FUTEX_WAKE ,
1529.BR FUTEX_WAKE_OP ,
1530.BR FUTEX_WAKE_BITSET ,
1531.BR FUTEX_REQUEUE ,
1532.BR FUTEX_CMP_REQUEUE )
1533The kernel detected an inconsistency between the user-space state at
1534.I uaddr
1535and the kernel state\(emthat is, it detected a waiter which waits in
1536.BR FUTEX_LOCK_PI
1537on
1538.IR uaddr .
1539.TP
1540.B EINVAL
a218ef20 1541.RB ( FUTEX_LOCK_PI ,
ce022f18
MK
1542.BR FUTEX_TRYLOCK_PI ,
1543.BR FUTEX_UNLOCK_PI )
a218ef20
MK
1544The kernel detected an inconsistency between the user-space state at
1545.I uaddr
1546and the kernel state.
ce022f18 1547This indicates either state corruption
ce022f18 1548or that the kernel found a waiter on
a218ef20
MK
1549.I uaddr
1550which is waiting via
1551.BR FUTEX_WAIT
1552or
1553.BR FUTEX_WAIT_BITSET .
1554.TP
1555.B EINVAL
f9250b1a
MK
1556.RB ( FUTEX_CMP_REQUEUE_PI )
1557The kernel detected an inconsistency between the user-space state at
99c0041d
MK
1558.I uaddr2
1559and the kernel state;
ee65b0e8
MK
1560.\" From a conversation with Thomas Gleixner (Aug 2015): ###
1561.\" The kernel sees: I have non PI state for a futex you tried to
1562.\" tell me was PI
99c0041d
MK
1563that is, the kernel detected a waiter which waits via
1564.BR FUTEX_WAIT
8297383e
MK
1565or
1566.BR FUTEX_WAIT_BITSET
99c0041d
MK
1567on
1568.IR uaddr2 .
1569.TP
1570.B EINVAL
1571.RB ( FUTEX_CMP_REQUEUE_PI )
1572The kernel detected an inconsistency between the user-space state at
f9250b1a
MK
1573.I uaddr
1574and the kernel state;
1575that is, the kernel detected a waiter which waits via
75299c8d 1576.BR FUTEX_WAIT
99c0041d 1577or
75299c8d 1578.BR FUTEX_WAIT_BITESET
f9250b1a
MK
1579on
1580.IR uaddr .
1581.TP
1582.B EINVAL
99c0041d 1583.RB ( FUTEX_CMP_REQUEUE_PI )
75299c8d
MK
1584The kernel detected an inconsistency between the user-space state at
1585.I uaddr
1586and the kernel state;
1587that is, the kernel detected a waiter which waits on
1588.I uaddr
1589via
1590.BR FUTEX_LOCK_PI
1591(instead of
1592.BR FUTEX_WAIT_REQUEUE_PI ).
99c0041d
MK
1593.TP
1594.B EINVAL
9786b3ca 1595.RB ( FUTEX_CMP_REQUEUE_PI )
8297383e
MK
1596.\" This deals with the case:
1597.\" wait_requeue_pi(A, B);
1598.\" requeue_pi(A, C);
9786b3ca
MK
1599An attempt was made to requeue a waiter to a futex other than that
1600specified by the matching
1601.B FUTEX_WAIT_REQUEUE_PI
1602call for that waiter.
1603.TP
1604.B EINVAL
f0c0d61c
MK
1605.RB ( FUTEX_CMP_REQUEUE_PI )
1606The
1607.I val
1608argument is not 1.
1609.TP
1610.B EINVAL
4832b48a 1611Invalid argument.
fea681da 1612.TP
d07d4ef3
MK
1613.B ENFILE
1614.RB ( FUTEX_FD )
1615The system-wide limit on the total number of open files has been reached.
1616.TP
a449c634
MK
1617.BR ENOMEM
1618.RB ( FUTEX_LOCK_PI ,
e34a8fb6
MK
1619.BR FUTEX_TRYLOCK_PI ,
1620.BR FUTEX_CMP_REQUEUE_PI )
a449c634
MK
1621The kernel could not allocate memory to hold state information.
1622.TP
4701fc28
MK
1623.B ENOSYS
1624Invalid operation specified in
d33602c4 1625.IR futex_op .
9f6c40c0 1626.TP
4a7e5b05
MK
1627.B ENOSYS
1628The
1629.BR FUTEX_CLOCK_REALTIME
1630option was specified in
1afcee7c 1631.IR futex_op ,
4a7e5b05 1632but the accompanying operation was neither
017d194b
MK
1633.BR FUTEX_WAIT ,
1634.BR FUTEX_WAIT_BITSET ,
4a7e5b05
MK
1635nor
1636.BR FUTEX_WAIT_REQUEUE_PI .
1637.TP
a9dcb4d1
MK
1638.BR ENOSYS
1639.RB ( FUTEX_LOCK_PI ,
f2424fae 1640.BR FUTEX_TRYLOCK_PI ,
4945ff19 1641.BR FUTEX_UNLOCK_PI ,
4cf92894 1642.BR FUTEX_CMP_REQUEUE_PI ,
794bb106 1643.BR FUTEX_WAIT_REQUEUE_PI )
4b35dc5d 1644A run-time check determined that the operation is not available.
f0a9e8f4 1645The PI-futex operations are not implemented on all architectures and
077981d4 1646are not supported on some CPU variants.
a9dcb4d1 1647.TP
c7589177
MK
1648.BR EPERM
1649.RB ( FUTEX_LOCK_PI ,
dc2742a8
MK
1650.BR FUTEX_TRYLOCK_PI ,
1651.BR FUTEX_CMP_REQUEUE_PI )
04331c3f 1652The caller is not allowed to attach itself to the futex at
dc2742a8
MK
1653.I uaddr
1654(for
1655.BR FUTEX_CMP_REQUEUE_PI :
1656the futex at
1657.IR uaddr2 ).
c7589177
MK
1658(This may be caused by a state corruption in user space.)
1659.TP
76f347ba 1660.BR EPERM
87276709 1661.RB ( FUTEX_UNLOCK_PI )
4b35dc5d 1662The caller does not own the lock represented by the futex word.
76f347ba 1663.TP
0b0e4934
MK
1664.BR ESRCH
1665.RB ( FUTEX_LOCK_PI ,
9732dd8b
MK
1666.BR FUTEX_TRYLOCK_PI ,
1667.BR FUTEX_CMP_REQUEUE_PI )
4b35dc5d 1668The thread ID in the futex word at
0b0e4934
MK
1669.I uaddr
1670does not exist.
1671.TP
360f773c
MK
1672.BR ESRCH
1673.RB ( FUTEX_CMP_REQUEUE_PI )
4b35dc5d 1674The thread ID in the futex word at
360f773c
MK
1675.I uaddr2
1676does not exist.
1677.TP
9f6c40c0 1678.B ETIMEDOUT
4d85047f
MK
1679The operation in
1680.IR futex_op
1681employed the timeout specified in
1682.IR timeout ,
1683and the timeout expired before the operation completed.
70b06b90
MK
1684.\"
1685.\""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
1686.\"
47297adb 1687.SH VERSIONS
a1d5f77c 1688.PP
81c9d87e
MK
1689Futexes were first made available in a stable kernel release
1690with Linux 2.6.0.
efeece04 1691.PP
4c8cb0ff
MK
1692Initial futex support was merged in Linux 2.5.7 but with different
1693semantics from what was described above.
52dee70e 1694A four-argument system call with the semantics
fd3fa7ef 1695described in this page was introduced in Linux 2.5.40.
d0442d14
MK
1696A fifth argument was added in Linux 2.5.70,
1697and a sixth argument was added in Linux 2.6.7.
47297adb 1698.SH CONFORMING TO
8382f16d 1699This system call is Linux-specific.
47297adb 1700.SH NOTES
baf0f1f4
MK
1701Glibc does not provide a wrapper for this system call; call it using
1702.BR syscall (2).
efeece04 1703.PP
02f7b623 1704Several higher-level programming abstractions are implemented via futexes,
e24fbf10 1705including POSIX semaphores and
02f7b623
MK
1706various POSIX threads synchronization mechanisms
1707(mutexes, condition variables, read-write locks, and barriers).
74f58a64
MK
1708.\" TODO FIXME(Torvald) Above, we cite this section and claim it contains
1709.\" details on the synchronization semantics; add the C11 equivalents
1710.\" here (or whatever we find consensus for).
305cc415
MK
1711.\"
1712.\""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
1713.\"
1714.SH EXAMPLE
bc54ed38
MK
1715The program below demonstrates use of futexes in a program where a parent
1716process and a child process use a pair of futexes located inside a
305cc415
MK
1717shared anonymous mapping to synchronize access to a shared resource:
1718the terminal.
1719The two processes each write
1720.IR nloops
1721(a command-line argument that defaults to 5 if omitted)
1722messages to the terminal and employ a synchronization protocol
1723that ensures that they alternate in writing messages.
1724Upon running this program we see output such as the following:
efeece04 1725.PP
305cc415 1726.in +4n
b76974c1 1727.EX
305cc415
MK
1728$ \fB./futex_demo\fP
1729Parent (18534) 0
1730Child (18535) 0
1731Parent (18534) 1
1732Child (18535) 1
1733Parent (18534) 2
1734Child (18535) 2
1735Parent (18534) 3
1736Child (18535) 3
1737Parent (18534) 4
1738Child (18535) 4
b76974c1 1739.EE
305cc415
MK
1740.in
1741.SS Program source
1742\&
e7d0bb47 1743.EX
305cc415
MK
1744/* futex_demo.c
1745
1746 Usage: futex_demo [nloops]
1747 (Default: 5)
1748
1749 Demonstrate the use of futexes in a program where parent and child
1750 use a pair of futexes located inside a shared anonymous mapping to
1751 synchronize access to a shared resource: the terminal. The two
1752 processes each write \(aqnum\-loops\(aq messages to the terminal and employ
1753 a synchronization protocol that ensures that they alternate in
1754 writing messages.
1755*/
1756#define _GNU_SOURCE
1757#include <stdio.h>
1758#include <errno.h>
915c4ba3 1759#include <stdatomic.h>
305cc415
MK
1760#include <stdlib.h>
1761#include <unistd.h>
1762#include <sys/wait.h>
1763#include <sys/mman.h>
1764#include <sys/syscall.h>
1765#include <linux/futex.h>
1766#include <sys/time.h>
1767
d1a71985 1768#define errExit(msg) do { perror(msg); exit(EXIT_FAILURE); \e
305cc415
MK
1769 } while (0)
1770
1771static int *futex1, *futex2, *iaddr;
1772
1773static int
1774futex(int *uaddr, int futex_op, int val,
1775 const struct timespec *timeout, int *uaddr2, int val3)
1776{
1777 return syscall(SYS_futex, uaddr, futex_op, val,
c1e04f01 1778 timeout, uaddr2, val3);
305cc415
MK
1779}
1780
1781/* Acquire the futex pointed to by \(aqfutexp\(aq: wait for its value to
1782 become 1, and then set the value to 0. */
1783
1784static void
1785fwait(int *futexp)
1786{
1787 int s;
1788
915c4ba3
BP
1789 /* atomic_compare_exchange_strong(ptr, oldval, newval)
1790 atomically performs the equivalent of:
305cc415 1791
915c4ba3 1792 if (*ptr == *oldval)
305cc415
MK
1793 *ptr = newval;
1794
915c4ba3 1795 It returns true if the test yielded true and *ptr was updated. */
305cc415 1796
305cc415 1797 while (1) {
83e80dda 1798
63ad44cb 1799 /* Is the futex available? */
09e456c2
PP
1800 const int one = 1;
1801 if (atomic_compare_exchange_strong(futexp, &one, 0))
305cc415
MK
1802 break; /* Yes */
1803
63ad44cb 1804 /* Futex is not available; wait */
83e80dda 1805
63ad44cb
HS
1806 s = futex(futexp, FUTEX_WAIT, 0, NULL, NULL, 0);
1807 if (s == \-1 && errno != EAGAIN)
1808 errExit("futex\-FUTEX_WAIT");
305cc415
MK
1809 }
1810}
1811
1812/* Release the futex pointed to by \(aqfutexp\(aq: if the futex currently
1813 has the value 0, set its value to 1 and the wake any futex waiters,
1814 so that if the peer is blocked in fpost(), it can proceed. */
1815
1816static void
1817fpost(int *futexp)
1818{
1819 int s;
1820
915c4ba3 1821 /* atomic_compare_exchange_strong() was described in comments above */
305cc415 1822
09e456c2
PP
1823 const int zero = 0;
1824 if (atomic_compare_exchange_strong(futexp, &zero, 1)) {
305cc415
MK
1825 s = futex(futexp, FUTEX_WAKE, 1, NULL, NULL, 0);
1826 if (s == \-1)
1827 errExit("futex\-FUTEX_WAKE");
1828 }
1829}
1830
1831int
1832main(int argc, char *argv[])
1833{
1834 pid_t childPid;
1835 int j, nloops;
1836
1837 setbuf(stdout, NULL);
1838
1839 nloops = (argc > 1) ? atoi(argv[1]) : 5;
1840
1841 /* Create a shared anonymous mapping that will hold the futexes.
1842 Since the futexes are being shared between processes, we
1843 subsequently use the "shared" futex operations (i.e., not the
1844 ones suffixed "_PRIVATE") */
1845
1846 iaddr = mmap(NULL, sizeof(int) * 2, PROT_READ | PROT_WRITE,
1847 MAP_ANONYMOUS | MAP_SHARED, \-1, 0);
1848 if (iaddr == MAP_FAILED)
1849 errExit("mmap");
1850
1851 futex1 = &iaddr[0];
1852 futex2 = &iaddr[1];
1853
1854 *futex1 = 0; /* State: unavailable */
1855 *futex2 = 1; /* State: available */
1856
1857 /* Create a child process that inherits the shared anonymous
35764662 1858 mapping */
305cc415
MK
1859
1860 childPid = fork();
92a46690 1861 if (childPid == \-1)
305cc415
MK
1862 errExit("fork");
1863
1864 if (childPid == 0) { /* Child */
1865 for (j = 0; j < nloops; j++) {
1866 fwait(futex1);
d1a71985 1867 printf("Child (%ld) %d\en", (long) getpid(), j);
305cc415
MK
1868 fpost(futex2);
1869 }
1870
1871 exit(EXIT_SUCCESS);
1872 }
1873
1874 /* Parent falls through to here */
1875
1876 for (j = 0; j < nloops; j++) {
1877 fwait(futex2);
d1a71985 1878 printf("Parent (%ld) %d\en", (long) getpid(), j);
305cc415
MK
1879 fpost(futex1);
1880 }
1881
1882 wait(NULL);
1883
1884 exit(EXIT_SUCCESS);
1885}
e7d0bb47 1886.EE
47297adb 1887.SH SEE ALSO
4c222281 1888.ad l
9913033c 1889.BR get_robust_list (2),
d806bc05 1890.BR restart_syscall (2),
e0074751 1891.BR pthread_mutexattr_getprotocol (3),
ac894879
MK
1892.BR futex (7),
1893.BR sched (7)
fea681da 1894.PP
f5ad572f
MK
1895The following kernel source files:
1896.IP * 2
1897.I Documentation/pi-futex.txt
1898.IP *
1899.I Documentation/futex-requeue-pi.txt
1900.IP *
1901.I Documentation/locking/rt-mutex.txt
1902.IP *
1903.I Documentation/locking/rt-mutex-design.txt
8fe019c7
MK
1904.IP *
1905.I Documentation/robust-futex-ABI.txt
43b99089 1906.PP
4c222281 1907Franke, H., Russell, R., and Kirwood, M., 2002.
52087dd3 1908\fIFuss, Futexes and Furwocks: Fast Userlevel Locking in Linux\fP
4c222281 1909(from proceedings of the Ottawa Linux Symposium 2002),
9b936e9e 1910.br
5465ae95 1911.UR http://kernel.org\:/doc\:/ols\:/2002\:/ols2002\-pages\-479\-495.pdf
608bf950 1912.UE
efeece04 1913.PP
4c222281 1914Hart, D., 2009. \fIA futex overview and update\fP,
2ed26199
MK
1915.UR http://lwn.net/Articles/360699/
1916.UE
efeece04 1917.PP
8fb01fde 1918Hart, D.\& and Guniguntala, D., 2009.
0483b6cc 1919\fIRequeue-PI: Making Glibc Condvars PI-Aware\fP
4c222281 1920(from proceedings of the 2009 Real-Time Linux Workshop),
0483b6cc
MK
1921.UR http://lwn.net/images/conf/rtlws11/papers/proc/p10.pdf
1922.UE
efeece04 1923.PP
4c222281 1924Drepper, U., 2011. \fIFutexes Are Tricky\fP,
f42eb21b
MK
1925.UR http://www.akkadia.org/drepper/futex.pdf
1926.UE
9b936e9e
MK
1927.PP
1928Futex example library, futex-*.tar.bz2 at
1929.br
a605264d 1930.UR ftp://ftp.kernel.org\:/pub\:/linux\:/kernel\:/people\:/rusty/
608bf950 1931.UE
34f14794 1932.\"
74f58a64 1933.\" FIXME(Torvald) We should probably refer to the glibc code here, in
9915ea23
MK
1934.\" particular the glibc-internal futex wrapper functions that are
1935.\" WIP, and the generic pthread_mutex_t and perhaps condvar
1936.\" implementations.