]> git.ipfire.org Git - thirdparty/man-pages.git/blame - man7/attributes.7
attributes.7: Comment out AS-Unsafe and AC-Unsafe headings
[thirdparty/man-pages.git] / man7 / attributes.7
CommitLineData
d95411aa
MK
1.\" Copyright (c) 2014, Red Hat, Inc.
2.\"
3.\" %%%LICENSE_START(GPLv2+_DOC_FULL)
4.\" This is free documentation; you can redistribute it and/or
5.\" modify it under the terms of the GNU General Public License as
6.\" published by the Free Software Foundation; either version 2 of
7.\" the License, or (at your option) any later version.
8.\"
9.\" The GNU General Public License's references to "object code"
10.\" and "executables" are to be interpreted as the output of any
11.\" document formatting or typesetting system, including
12.\" intermediate and printed output.
13.\"
14.\" This manual is distributed in the hope that it will be useful,
15.\" but WITHOUT ANY WARRANTY; without even the implied warranty of
16.\" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17.\" GNU General Public License for more details.
18.\"
19.\" You should have received a copy of the GNU General Public
20.\" License along with this manual; if not, see
21.\" <http://www.gnu.org/licenses/>.
22.\" %%%LICENSE_END
23.TH ATTRIBUTES 7 2014-10-16 "Linux" "Linux Programmer's Manual"
24.SH NAME
25attributes \- POSIX safety concepts
26.SH DESCRIPTION
27.\"
28.\"
29.SS POSIX safety concepts
30This manual documents various safety properties of GNU C Library
31functions, in lines that follow their prototypes and look like:
32
33@sampsafety{@prelim{}@mtsafe{}@assafe{}@acsafe{}}
34
35The properties are assessed according to the criteria set forth in the
36POSIX standard for such safety contexts as
37Thread-Safety, Async-Signal-Safety and Async-Cancel-Safety.
38Intuitive definitions of these properties,
39attempting to capture the meaning of the standard definitions, follow.
40.TP
41.I MT-Safe
42.I MT-Safe
43or
44Thread-Safe functions are safe to call in the presence
45of other threads.
46MT, in MT-Safe, stands for Multi Thread.
47
48Being MT-Safe does not imply a function is atomic, nor that it uses any
49of the memory synchronization mechanisms POSIX exposes to users.
743c01ad
MK
50It is even possible that calling MT-Safe functions in sequence
51does not yield an MT-Safe combination.
d95411aa
MK
52For example, having a thread call two MT-Safe
53functions one right after the other does not guarantee behavior
54equivalent to atomic execution of a combination of both functions,
55since concurrent calls in other threads may interfere in a destructive way.
56
57Whole-program optimizations that could inline functions across library
58interfaces may expose unsafe reordering, and so performing inlining
59across the GNU C Library interface is not recommended.
60The documented
61MT-Safety status is not guaranteed under whole-program optimization.
62However, functions defined in user-visible headers are designed to be
63safe for inlining.
6761fb0c
MK
64.\" .TP
65.\" .I AS-Safe
66.\" .I AS-Safe
67.\" or Async-Signal-Safe functions are safe to call from
68.\" asynchronous signal handlers.
69.\" AS, in AS-Safe, stands for Asynchronous Signal.
70.\"
71.\" Many functions that are AS-Safe may set
72.\" .IR errno ,
73.\" or modify the floating-point environment,
74.\" because their doing so does not make them
75.\" unsuitable for use in signal handlers.
76.\" However, programs could misbehave should asynchronous signal handlers
77.\" modify this thread-local state,
78.\" and the signal handling machinery cannot be counted on to
79.\" preserve it.
80.\" Therefore, signal handlers that call functions that may set
81.\" .I errno
82.\" or modify the floating-point environment
83.\" .I must
84.\" save their original values, and restore them before returning.
85.\" .TP
86.\" .I AC-Safe
87.\" .I AC-Safe
88.\" or Async-Cancel-Safe functions are safe to call when
89.\" asynchronous cancellation is enabled.
90.\" AC in AC-Safe stands for Asynchronous Cancellation.
91.\"
92.\" The POSIX standard defines only three functions to be AC-Safe, namely
93.\" .BR pthread_cancel (3),
94.\" .BR pthread_setcancelstate (3),
95.\" and
96.\" .BR pthread_setcanceltype (3).
97.\" At present the GNU C Library provides no
98.\" guarantees beyond these three functions,
99.\" but does document which functions are presently AC-Safe.
100.\" This documentation is provided for use
101.\" by the GNU C Library developers.
d95411aa 102
6761fb0c
MK
103.\" Just like signal handlers, cancellation cleanup routines must configure
104.\" the floating point environment they require.
105.\" The routines cannot assume a floating point environment,
106.\" particularly when asynchronous cancellation is enabled.
107.\" If the configuration of the floating point
108.\" environment cannot be performed atomically then it is also possible that
109.\" the environment encountered is internally inconsistent.
d95411aa 110.TP
0b0b0e6c
MK
111.IR MT-Unsafe \" ", " AS-Unsafe ", " AC-Unsafe
112.IR MT-Unsafe \" ", " AS-Unsafe ", " AC-Unsafe
d95411aa
MK
113functions are not
114safe to call within the safety contexts described above.
115Calling them
116within such contexts invokes undefined behavior.
117
118Functions not explicitly documented as safe in a safety context should
119be regarded as Unsafe.
120.TP
121.I Preliminary
122.I Preliminary
123safety properties are documented, indicating these
124properties may
125.I not
126be counted on in future releases of
127the GNU C Library.
128
129Such preliminary properties are the result of an assessment of the
130properties of our current implementation,
743c01ad
MK
131rather than of what is mandated and permitted
132by current and future standards.
d95411aa
MK
133
134Although we strive to abide by the standards, in some cases our
135implementation is safe even when the standard does not demand safety,
136and in other cases our implementation does not meet the standard safety
137requirements.
138The latter are most likely bugs; the former, when marked
139as
140.IR Preliminary ,
141should not be counted on: future standards may
142require changes that are not compatible with the additional safety
143properties afforded by the current implementation.
144
145Furthermore,
146the POSIX standard does not offer a detailed definition of safety.
147We assume that, by "safe to call", POSIX means that,
148as long as the program does not invoke undefined behavior,
149the "safe to call" function behaves as specified,
150and does not cause other functions to deviate from their specified behavior.
151We have chosen to use its loose
152definitions of safety, not because they are the best definitions to use,
153but because choosing them harmonizes this manual with POSIX.
154
155Please keep in mind that these are preliminary definitions and annotations,
156and certain aspects of the definitions are still under
157discussion and might be subject to clarification or change.
158
159Over time,
160we envision evolving the preliminary safety notes into stable commitments,
161as stable as those of our interfaces.
162As we do, we will remove the
163.I Preliminary
164keyword from safety notes.
165As long as the keyword remains, however,
166they are not to be regarded as a promise of future behavior.
167.PP
168Other keywords that appear in safety notes are defined in subsequent sections.
169.\"
170.\"
e7b42ec6
MK
171.\" .SS Unsafe features
172.\" Functions that are unsafe to call in certain contexts are annotated with
173.\" keywords that document their features that make them unsafe to call.
174.\" AS-Unsafe features in this section indicate the functions are never safe
175.\" to call when asynchronous signals are enabled.
176.\" AC-Unsafe features
177.\" indicate they are never safe to call when asynchronous cancellation is
178.\" .\" enabled.
179.\" There are no MT-Unsafe marks in this section.
180.\" .TP
181.\" .\" .I code
182.\" Functions marked with
183.\" .I lock
184.\" as an AS-Unsafe feature may be
185.\" .\" interrupted by a signal while holding a non-recursive lock.
186.\" If the signal handler calls another such function that takes the same lock,
187.\" the result is a deadlock.
188.\"
189.\" Functions annotated with
190.\" .I lock
191.\" as an AC-Unsafe feature may, if canceled asynchronously,
192.\" fail to release a lock that would have been released if their execution
193.\" had not been interrupted by asynchronous thread cancellation.
8fd8d7d7
MK
194.\" Once a lock is left taken,
195.\" attempts to take that lock will block indefinitely.
e7b42ec6
MK
196.\" .TP
197.\" .I corrupt
198.\" Functions marked with
199.\" .\" .I corrupt
200.\" as an AS-Unsafe feature may corrupt
201.\" data structures and misbehave when they interrupt,
202.\" or are interrupted by, another such function.
203.\" Unlike functions marked with
204.\" .IR lock ,
205.\" these take recursive locks to avoid MT-Safety problems,
206.\" but this is not enough to stop a signal handler from observing
207.\" a partially-updated data structure.
208.\" Further corruption may arise from the interrupted function's
209.\" failure to notice updates made by signal handlers.
210.\"
211.\" Functions marked with
212.\" .I corrupt
213.\" as an AC-Unsafe feature may leave
214.\" data structures in a corrupt, partially updated state.
215.\" Subsequent uses of the data structure may misbehave.
216.\"
217.\" .\" A special case, probably not worth documenting separately, involves
218.\" .\" reallocing, or even freeing pointers. Any case involving free could
219.\" .\" be easily turned into an ac-safe leak by resetting the pointer before
220.\" .\" releasing it; I don't think we have any case that calls for this sort
221.\" .\" of fixing. Fixing the realloc cases would require a new interface:
222.\" .\" instead of @code{ptr=realloc(ptr,size)} we'd have to introduce
223.\" .\" @code{acsafe_realloc(&ptr,size)} that would modify ptr before
224.\" .\" releasing the old memory. The ac-unsafe realloc could be implemented
225.\" .\" in terms of an internal interface with this semantics (say
226.\" .\" __acsafe_realloc), but since realloc can be overridden, the function
227.\" .\" we call to implement realloc should not be this internal interface,
228.\" .\" but another internal interface that calls __acsafe_realloc if realloc
229.\" .\" was not overridden, and calls the overridden realloc with async
230.\" .\" cancel disabled. --lxoliva
231.\" .TP
232.\" .I heap
233.\" Functions marked with
234.\" .I heap
235.\" may call heap memory management functions from the
236.\" .BR malloc (3)/ free (3)
237.\" family of functions and are only as safe as those functions.
238.\" This note is thus equivalent to:
239.\"
240.\" | AS-Unsafe lock | AC-Unsafe lock fd mem |
241.\" .\" @sampsafety{@asunsafe{@asulock{}}@acunsafe{@aculock{} @acsfd{} @acsmem{}}}
242.\" .\"
243.\" .\" Check for cases that should have used plugin instead of or in
244.\" .\" addition to this. Then, after rechecking gettext, adjust i18n if
245.\" .\" needed.
246.\" .TP
247.\" .I dlopen
248.\" Functions marked with
249.\" .I dlopen
250.\" use the dynamic loader to load
251.\" shared libraries into the current execution image.
252.\" This involves opening files, mapping them into memory,
253.\" allocating additional memory, resolving symbols,
254.\" applying relocations and more,
255.\" all of this while holding internal dynamic loader locks.
256.\"
46992f64 257.\" The locks are enough for these functions to be AS-Unsafe and AC-Unsafe,
e7b42ec6
MK
258.\" but other issues may arise.
259.\" At present this is a placeholder for all
260.\" potential safety issues raised by
261.\" .BR dlopen (3).
262.\"
263.\" .\" dlopen runs init and fini sections of the module; does this mean
264.\" .\" dlopen always implies plugin?
265.\" .TP
266.\" .I plugin
267.\" Functions annotated with
268.\" .I plugin
269.\" may run code from plugins that
270.\" may be external to the GNU C Library.
271.\" Such plugin functions are assumed to be
272.\" MT-Safe, AS-Unsafe and AC-Unsafe.
273.\" Examples of such plugins are stack unwinding libraries,
274.\" name service switch (NSS) and character set conversion (iconv) back-ends.
275.\"
276.\" Although the plugins mentioned as examples are all brought in by means
277.\" of dlopen, the
278.\" .I plugin
279.\" keyword does not imply any direct
280.\" involvement of the dynamic loader or the
281.\" .I libdl
282.\" interfaces,
283.\" those are covered by
284.\" .IR dlopen .
285.\" For example, if one function loads a module and finds the addresses
286.\" of some of its functions,
287.\" while another just calls those already-resolved functions,
288.\" the former will be marked with
289.\" .IR dlopen ,
290.\" whereas the latter will get the
291.\" .IR plugin .
292.\" When a single function takes all of these actions, then it gets both marks.
293.\" .TP
294.\" .I i18n
295.\" Functions marked with
296.\" .I i18n
297.\" may call internationalization
298.\" functions of the
299.\" .BR gettext (3)
300.\" family and will be only as safe as those
301.\" functions.
302.\" This note is thus equivalent to:
303.\"
304.\" | MT-Safe env | AS-Unsafe corrupt heap dlopen | AC-Unsafe corrupt |
305.\"
306.\" .\" @sampsafety{@mtsafe{@mtsenv{}}@asunsafe{@asucorrupt{} @ascuheap{} @ascudlopen{}}@acunsafe{@acucorrupt{}}}
307.\" .TP
308.\" .I timer
309.\" Functions marked with
310.\" .I timer
311.\" use the
312.\" .BR alarm (3)
313.\" function or
314.\" similar to set a time-out for a system call or a long-running operation.
315.\" In a multi-threaded program, there is a risk that the time-out signal
316.\" will be delivered to a different thread,
317.\" thus failing to interrupt the intended thread.
318.\" Besides being MT-Unsafe, such functions are always
319.\" AS-Unsafe, because calling them in signal handlers may interfere with
320.\" timers set in the interrupted code, and AC-Unsafe,
321.\" because there is no safe way to guarantee an earlier timer
322.\" will be reset in case of asynchronous cancellation.
d95411aa
MK
323.\"
324.\"
325.SS Conditionally safe features
326For some features that make functions unsafe to call in certain contexts,
327there are known ways to avoid the safety problem other than
328refraining from calling the function altogether.
329The keywords that follow refer to such features,
330and each of their definitions indicate
331how the whole program needs to be constrained in order to remove the
332safety problem indicated by the keyword.
333Only when all the reasons that
334make a function unsafe are observed and addressed,
335by applying the documented constraints,
336does the function become safe to call in a context.
337.TP
338.I init
339Functions marked with
340.I init
341as an MT-Unsafe feature perform
342MT-Unsafe initialization when they are first called.
343
344Calling such a function at least once in single-threaded mode removes
345this specific cause for the function to be regarded as MT-Unsafe.
346If no other cause for that remains,
347the function can then be safely called after other threads are started.
348
bbc1f04e
MK
349.\" Functions marked with
350.\" .I init
351.\" as an AS-Unsafe or AC-Unsafe feature use the GNU C Library internal
352.\" .I libc_once
353.\" machinery or similar to initialize internal data structures.
354.\"
355.\" If a signal handler interrupts such an initializer,
356.\" and calls any function that also performs
357.\" .I libc_once
358.\" initialization, it will deadlock if the thread library has been loaded.
359.\"
360.\" Furthermore, if an initializer is partially complete before it is canceled
361.\" or interrupted by a signal whose handler requires the same initialization,
362.\" some or all of the initialization may be performed more than once,
363.\" leaking resources or even resulting in corrupt internal data.
364.\"
365.\" Applications that need to call functions marked with
366.\" .I init
367.\" as an AS-Safety or AC-Unsafe feature should ensure
368.\" the initialization is performed
369.\" before configuring signal handlers or enabling cancellation,
370.\" so that the AS-Safety and AC-Safety issues related with
371.\" .I libc_once
372.\" do not arise.
373.\"
374.\" .\" We may have to extend the annotations to cover conditions in which
375.\" .\" initialization may or may not occur, since an initial call in a safe
376.\" .\" context is no use if the initialization doesn't take place at that
377.\" .\" time: it doesn't remove the risk for later calls.
d95411aa
MK
378.TP
379.I race
380Functions annotated with
381.I race
382as an MT-Safety issue operate on
383objects in ways that may cause data races or similar forms of
384destructive interference out of concurrent execution.
385In some cases,
386the objects are passed to the functions by users;
387in others, they are used by the functions to return values to users;
388in others, they are not even exposed to users.
389
3df3ed82
MK
390.\" We consider access to objects passed as (indirect) arguments to
391.\" functions to be data race free.
392.\" The assurance of data race free objects
393.\" is the caller's responsibility.
394.\" We will not mark a function as MT-Unsafe or AS-Unsafe
395.\" if it misbehaves when users fail to take the measures required by
396.\" POSIX to avoid data races when dealing with such objects.
397.\" As a general rule, if a function is documented as reading from
398.\" an object passed (by reference) to it, or modifying it,
399.\" users ought to use memory synchronization primitives
400.\" to avoid data races just as they would should they perform
401.\" the accesses themselves rather than by calling the library function.
402.\" Standard I/O
403.\" .RI ( "FILE *" )
404.\" streams are the exception to the general rule,
405.\" in that POSIX mandates the library to guard against data races
406.\" in many functions that manipulate objects of this specific opaque type.
407.\" We regard this as a convenience provided to users,
408.\" rather than as a general requirement whose expectations
409.\" should extend to other types.
410.\"
411.\" In order to remind users that guarding certain arguments is their
412.\" responsibility, we will annotate functions that take objects of certain
413.\" types as arguments.
414.\" We draw the line for objects passed by users as follows:
415.\" objects whose types are exposed to users,
416.\" and that users are expected to access directly,
417.\" such as memory buffers, strings,
418.\" and various user-visible structured types, do
419.\" .I not
420.\" give reason for functions to be annotated with
421.\" .IR race .
422.\" It would be noisy and redundant with the general requirement,
423.\" and not many would be surprised by the library's lack of internal
424.\" guards when accessing objects that can be accessed directly by users.
425.\"
426.\" As for objects that are opaque or opaque-like,
427.\" in that they are to be manipulated only by passing them
428.\" to library functions (e.g.,
429.\" .IR FILE ,
430.\" .IR DIR ,
431.\" .IR obstack ,
432.\" .IR iconv_t ),
433.\" there might be additional expectations as to internal coordination
434.\" of access by the library.
435.\" We will annotate, with
436.\" .I race
437.\" followed by a colon and the argument name,
438.\" functions that take such objects but that do not take
439.\" care of synchronizing access to them by default.
440.\" For example,
441.\" .I FILE
442.\" stream
443.\" .I unlocked
444.\" functions
445.\" .RB ( unlocked_stdio (3))
446.\" will be annotated,
447.\" but those that perform implicit locking on
448.\" .I FILE
449.\" streams by default will not,
450.\" even though the implicit locking may be disabled on a per-stream basis.
451.\"
452.\" In either case, we will not regard as MT-Unsafe functions that may
453.\" access user-supplied objects in unsafe ways should users fail to ensure
454.\" the accesses are well defined.
455.\" The notion prevails that users are expected to safeguard against
456.\" data races any user-supplied objects that the library accesses
457.\" on their behalf.
458.\"
459.\" .\" The above describes @mtsrace; @mtasurace is described below.
460.\"
461.\" This user responsibility does not apply, however,
462.\" to objects controlled by the library itself,
463.\" such as internal objects and static buffers used
464.\" to return values from certain calls.
465.\" When the library doesn't guard them against concurrent uses,
466.\" these cases are regarded as MT-Unsafe and AS-Unsafe (although the
467.\" .I race
468.\" mark under AS-Unsafe will be omitted
469.\" as redundant with the one under MT-Unsafe).
470.\" As in the case of user-exposed objects,
471.\" the mark may be followed by a colon and an identifier.
472.\" The identifier groups all functions that operate on a
473.\" certain unguarded object; users may avoid the MT-Safety issues related
474.\" with unguarded concurrent access to such internal objects by creating a
475.\" non-recursive mutex related with the identifier,
476.\" and always holding the mutex when calling any function marked
477.\" as racy on that identifier,
478.\" as they would have to should the identifier be
479.\" an object under user control.
480.\" The non-recursive mutex avoids the MT-Safety issue,
481.\" but it trades one AS-Safety issue for another,
482.\" so use in asynchronous signals remains undefined.
483.\"
484.\" When the identifier relates to a static buffer used to hold return values,
485.\" the mutex must be held for as long as the buffer remains in use
486.\" by the caller.
487.\" Many functions that return pointers to static buffers offer reentrant
488.\" variants that store return values in caller-supplied buffers instead.
489.\" In some cases, such as
490.\" .BR tmpname (3),
491.\" the variant is chosen not by calling an alternate entry point,
492.\" but by passing a non-NULL pointer to the buffer in which the
493.\" returned values are to be stored.
494.\" These variants are generally preferable in multi-threaded programs,
495.\" although some of them are not MT-Safe because of other internal buffers,
496.\" also documented with
497.\" .I race
498.\" notes.
d95411aa
MK
499.TP
500.I const
501Functions marked with
502.I const
503as an MT-Safety issue non-atomically
504modify internal objects that are better regarded as constant,
505because a substantial portion of the GNU C Library accesses them without
506synchronization.
507Unlike
508.IR race ,
1b1372b4 509which causes both readers and
d95411aa
MK
510writers of internal objects to be regarded as MT-Unsafe and AS-Unsafe,
511this mark is applied to writers only.
512Writers remain equally MT-Unsafe and AS-Unsafe to call,
513but the then-mandatory constness of objects they
514modify enables readers to be regarded as MT-Safe and AS-Safe (as long as
515no other reasons for them to be unsafe remain),
516since the lack of synchronization is not a problem when the
517objects are effectively constant.
518
519The identifier that follows the
520.I const
521mark will appear by itself as a safety note in readers.
522Programs that wish to work around this safety issue,
a6f8ea6a 523so as to call writers, may use a non-recursive
d95411aa
MK
524.I rwlock
525associated with the identifier, and guard
526.I all
527calls to functions marked with
528.I const
529followed by the identifier with a write lock, and
530.I all
531calls to functions marked with the identifier
532by itself with a read lock.
533The non-recursive locking removes the MT-Safety problem,
534but it trades one AS-Safety problem for another,
535so use in asynchronous signals remains undefined.
536
537.\" But what if, instead of marking modifiers with const:id and readers
538.\" with just id, we marked writers with race:id and readers with ro:id?
539.\" Instead of having to define each instance of 'id', we'd have a
540.\" general pattern governing all such 'id's, wherein race:id would
541.\" suggest the need for an exclusive/write lock to make the function
542.\" safe, whereas ro:id would indicate 'id' is expected to be read-only,
543.\" but if any modifiers are called (while holding an exclusive lock),
544.\" then ro:id-marked functions ought to be guarded with a read lock for
545.\" safe operation. ro:env or ro:locale, for example, seems to convey
546.\" more clearly the expectations and the meaning, than just env or
547.\" locale.
548.TP
549.I sig
550Functions marked with
551.I sig
552as a MT-Safety issue
553(that implies an identical AS-Safety issue, omitted for brevity)
554may temporarily install a signal handler for internal purposes,
743c01ad
MK
555which may interfere with other uses of the signal,
556identified after a colon.
d95411aa
MK
557
558This safety problem can be worked around by ensuring that no other uses
559of the signal will take place for the duration of the call.
560Holding a non-recursive mutex while calling all functions that use the same
561temporary signal;
562blocking that signal before the call and resetting its
563handler afterwards is recommended.
564
565There is no safe way to guarantee the original signal handler is
566restored in case of asynchronous cancellation,
567therefore so-marked functions are also AC-Unsafe.
568
569.\" fixme: at least deferred cancellation should get it right, and would
570.\" obviate the restoring bit below, and the qualifier above.
571
572Besides the measures recommended to work around the
573MT-Safety and AS-Safety problem,
574in order to avert the cancellation problem,
575disabling asynchronous cancellation
576.I and
577installing a cleanup handler to restore the signal to the desired state
578and to release the mutex are recommended.
579.TP
580.I term
581Functions marked with
582.I term
583as an MT-Safety issue may change the
584terminal settings in the recommended way, namely: call
585.BR tcgetattr (3),
586modify some flags, and then call
587.BR tcsetattr (3),
588this creates a window in which changes made by other threads are lost.
589Thus, functions marked with
590.I term
591are MT-Unsafe.
592The same window enables changes made by asynchronous signals to be lost.
593These functions are also AS-Unsafe,
594but the corresponding mark is omitted as redundant.
595
596It is thus advisable for applications using the terminal to avoid
597concurrent and reentrant interactions with it,
598by not using it in signal handlers or blocking signals that might use it,
599and holding a lock while calling these functions and interacting
600with the terminal.
743c01ad
MK
601This lock should also be used for mutual exclusion with
602functions marked with
d95411aa
MK
603.IR race:tcattr(fd) ,
604where
605.I fd
606is a file descriptor for the controlling terminal.
607The caller may use a single mutex for simplicity,
608or use one mutex per terminal,
609even if referenced by different file descriptors.
610
611Functions marked with
612.I term
613as an AC-Safety issue are supposed to
614restore terminal settings to their original state,
a6f8ea6a 615after temporarily changing them, but they may fail to do so if canceled.
d95411aa
MK
616
617.\" fixme: at least deferred cancellation should get it right, and would
618.\" obviate the restoring bit below, and the qualifier above.
619
620Besides the measures recommended to work around the
621MT-Safety and AS-Safety problem,
622in order to avert the cancellation problem,
623disabling asynchronous cancellation
624.I and
625installing a cleanup handler to
626restore the terminal settings to the original state and to release the
627mutex are recommended.
628.\"
629.\"
630.SS Other safety remarks
631Additional keywords may be attached to functions,
632indicating features that do not make a function unsafe to call,
633but that may need to be taken into account in certain classes of programs:
634.TP
635.I locale
636Functions annotated with
637.I locale
638as an MT-Safety issue read from
639the locale object without any form of synchronization.
640Functions
641annotated with
642.I locale
643called concurrently with locale changes may
644behave in ways that do not correspond to any of the locales active
645during their execution, but an unpredictable mix thereof.
646
647We do not mark these functions as MT-Unsafe or AS-Unsafe, however,
648because functions that modify the locale object are marked with
649.I const:locale
650and regarded as unsafe.
651Being unsafe, the latter are not to be called when multiple threads
652are running or asynchronous signals are enabled,
743c01ad
MK
653and so the locale can be considered effectively constant
654in these contexts,
d95411aa
MK
655which makes the former safe.
656
657.\" Should the locking strategy suggested under @code{const} be used,
658.\" failure to guard locale uses is not as fatal as data races in
659.\" general: unguarded uses will @emph{not} follow dangling pointers or
660.\" access uninitialized, unmapped or recycled memory. Each access will
661.\" read from a consistent locale object that is or was active at some
662.\" point during its execution. Without synchronization, however, it
663.\" cannot even be assumed that, after a change in locale, earlier
664.\" locales will no longer be used, even after the newly-chosen one is
665.\" used in the thread. Nevertheless, even though unguarded reads from
666.\" the locale will not violate type safety, functions that access the
667.\" locale multiple times may invoke all sorts of undefined behavior
668.\" because of the unexpected locale changes.
669.TP
670.I env
671Functions marked with
672.I env
673as an MT-Safety issue access the
674environment with
675.BR getenv (3)
676or similar, without any guards to ensure
677safety in the presence of concurrent modifications.
678
46992f64 679We do not mark these functions as MT-Unsafe or AS-Unsafe, however,
d95411aa
MK
680because functions that modify the environment are all marked with
681.I const:env
682and regarded as unsafe.
683Being unsafe, the latter are not to be called when multiple threads
684are running or asynchronous signals are enabled,
685and so the environment can be considered
686effectively constant in these contexts,
687which makes the former safe.
688.TP
689.I hostid
690The function marked with
691.I hostid
692as an MT-Safety issue reads from the system-wide data structures that
693hold the "host ID" of the machine.
694These data structures cannot generally be modified atomically.
695Since it is expected that the "host ID" will not normally change,
696the function that reads from it
697.RB ( gethostid (3))
698is regarded as safe,
699whereas the function that modifies it
700.RB ( sethostid (3))
701is marked with
702.IR const:hostid ,
703indicating it may require special care if it is to be called.
704In this specific case,
705the special care amounts to system-wide
706(not merely intra-process) coordination.
707.TP
708.I sigintr
709Functions marked with
710.I sigintr
711as an MT-Safety issue access the
712GNU C Library
713.I _sigintr
714internal data structure without any guards to ensure
715safety in the presence of concurrent modifications.
716
717We do not mark these functions as MT-Unsafe or AS-Unsafe, however,
718because functions that modify the this data structure are all marked with
719.I const:sigintr
720and regarded as unsafe.
721Being unsafe,
722the latter are not to be called when multiple threads are
723running or asynchronous signals are enabled,
724and so the data structure can be considered
725effectively constant in these contexts,
726which makes the former safe.
727.TP
728.I fd
729Functions annotated with
730.I fd
731as an AC-Safety issue may leak file
732descriptors if asynchronous thread cancellation interrupts their
733execution.
734
735Functions that allocate or deallocate file descriptors will generally be
736marked as such.
737Even if they attempted to protect the file descriptor
738allocation and deallocation with cleanup regions,
739allocating a new descriptor and storing its number where the cleanup region
740could release it cannot be performed as a single atomic operation.
741Similarly,
742releasing the descriptor and taking it out of the data structure
743normally responsible for releasing it cannot be performed atomically.
744There will always be a window in which the descriptor cannot be released
745because it was not stored in the cleanup handler argument yet,
746or it was already taken out before releasing it.
747It cannot be taken out after release:
748an open descriptor could mean either that the descriptor still
749has to be closed,
750or that it already did so but the descriptor was
751reallocated by another thread or signal handler.
752
753Such leaks could be internally avoided, with some performance penalty,
754by temporarily disabling asynchronous thread cancellation.
755However,
756since callers of allocation or deallocation functions would have to do
757this themselves, to avoid the same sort of leak in their own layer,
758it makes more sense for the library to assume they are taking care of it
759than to impose a performance penalty that is redundant when the problem
760is solved in upper layers, and insufficient when it is not.
761
762This remark by itself does not cause a function to be regarded as
763AC-Unsafe.
764However, cumulative effects of such leaks may pose a
765problem for some programs.
766If this is the case,
767suspending asynchronous cancellation for the duration of calls
768to such functions is recommended.
769.TP
770.I mem
771Functions annotated with
772.I mem
773as an AC-Safety issue may leak
774memory if asynchronous thread cancellation interrupts their execution.
775
776The problem is similar to that of file descriptors: there is no atomic
777interface to allocate memory and store its address in the argument to a
778cleanup handler,
779or to release it and remove its address from that argument,
780without at least temporarily disabling asynchronous cancellation,
781which these functions do not do.
782
783This remark does not by itself cause a function to be regarded as
784generally AC-Unsafe.
785However, cumulative effects of such leaks may be
786severe enough for some programs that disabling asynchronous cancellation
787for the duration of calls to such functions may be required.
788.TP
789.I cwd
790Functions marked with
791.I cwd
792as an MT-Safety issue may temporarily
793change the current working directory during their execution,
743c01ad
MK
794which may cause relative pathnames to be resolved in unexpected ways in
795other threads or within asynchronous signal or cancellation handlers.
d95411aa
MK
796
797This is not enough of a reason to mark so-marked functions as MT-Unsafe or
798AS-Unsafe, but when this behavior is optional (e.g.,
799.BR nftw (3)
800with
801.BR FTW_CHDIR ),
802avoiding the option may be a good alternative to
803using full pathnames or file descriptor-relative (e.g.,
804.BR openat (2))
805system calls.
806.TP
807.I !posix
808This remark, as an MT-Safety, AS-Safety or AC-Safety note to a function,
809indicates the safety status of the function is known to differ
810from the specified status in the POSIX standard.
811For example, POSIX does not require a function to be Safe,
812but our implementation is, or vice-versa.
813
814For the time being, the absence of this remark does not imply the safety
815properties we documented are identical to those mandated by POSIX for
816the corresponding functions.
817.TP
818.I :identifier
819Annotations may sometimes be followed by identifiers,
820intended to group several functions that, for example,
821access the data structures in an unsafe way, as in
822.I race
823and
824.IR const ,
825or to provide more specific information,
826such as naming a signal in a function marked with
827.IR sig .
828It is envisioned that it may be applied to
829.I lock
830and
831.I corrupt
832as well in the future.
833
834In most cases, the identifier will name a set of functions,
835but it may name global objects or function arguments,
836or identifiable properties or logical components associated with them,
837with a notation such as, for example,
838.I :buf(arg)
839to denote a buffer associated with the argument
840.IR arg ,
841or
842.I :tcattr(fd)
843to denote the terminal attributes of a file descriptor
844.IR fd .
845
846The most common use for identifiers is to provide logical groups of
847functions and arguments that need to be protected by the same
848synchronization primitive in order to ensure safe operation in a given
849context.
850.TP
851.I /condition
852Some safety annotations may be conditional,
853in that they only apply if a boolean expression involving arguments,
854global variables or even the underlying kernel evaluates evaluates to true.
855Such conditions as
856.I /hurd
857or
858.I /!linux!bsd
859indicate the preceding marker only
860applies when the underlying kernel is the HURD,
861or when it is neither Linux nor a BSD kernel, respectively.
862.I !ps
863and
864.I /one_per_line
865indicate the preceding marker only applies when argument
866.I ps
867is NULL, or global variable
868.I one_per_line
869is nonzero.
870
743c01ad
MK
871When all marks that render a function unsafe are
872adorned with such conditions,
d95411aa
MK
873and none of the named conditions hold,
874then the function can be regarded as safe.