OSDN Git Service

(split) LDP: Update original to v3.37.
[linuxjm/LDP_man-pages.git] / original / man7 / feature_test_macros.7
1 .\" Hey Emacs! This file is -*- nroff -*- source.
2 .\"
3 .\" This manpage is Copyright (C) 2006, Michael Kerrisk
4 .\"
5 .\" Permission is granted to make and distribute verbatim copies of this
6 .\" manual provided the copyright notice and this permission notice are
7 .\" preserved on all copies.
8 .\"
9 .\" Permission is granted to copy and distribute modified versions of this
10 .\" manual under the conditions for verbatim copying, provided that the
11 .\" entire resulting derived work is distributed under the terms of a
12 .\" permission notice identical to this one.
13 .\"
14 .\" Since the Linux kernel and libraries are constantly changing, this
15 .\" manual page may be incorrect or out-of-date.  The author(s) assume no
16 .\" responsibility for errors or omissions, or for damages resulting from
17 .\" the use of the information contained herein.  The author(s) may not
18 .\" have taken the same level of care in the production of this manual,
19 .\" which is licensed free of charge, as they might when working
20 .\" professionally.
21 .\"
22 .\" Formatted or processed versions of this manual, if unaccompanied by
23 .\" the source, must acknowledge the copyright and authors of this work.
24 .\"
25 .TH FEATURE_TEST_MACROS 7 2012-01-18 "Linux" "Linux Programmer's Manual"
26 .SH NAME
27 feature_test_macros \- feature test macros
28 .SH SYNOPSIS
29 .nf
30 .B #include <features.h>
31 .fi
32 .SH DESCRIPTION
33 Feature test macros allow the programmer to control the definitions that
34 are exposed by system header files when a program is compiled.
35
36 .B NOTE:
37 In order to be effective, a feature test macro
38 .IR "must be defined before including any header files" .
39 This can be done either in the compilation command
40 .RI ( "cc \-DMACRO=value" )
41 or by defining the macro within the source code before
42 including any headers.
43
44 Some feature test macros are useful for creating portable applications,
45 by preventing nonstandard definitions from being exposed.
46 Other macros can be used to expose nonstandard definitions that
47 are not exposed by default.
48 The precise effects of each of the feature test macros described below
49 can be ascertained by inspecting the
50 .I <features.h>
51 header file.
52 .SS Specification of feature test macro requirements in manual pages
53 When a function requires that a feature test macro is defined,
54 the manual page SYNOPSIS typically includes a note of the following form
55 (this example from the
56 .BR acct (2)
57 manual page):
58 .RS 8
59 .sp
60 .B #include <unistd.h>
61 .sp
62 .BI "int acct(const char *" filename );
63 .sp
64 .nf
65 .in -4n
66 Feature Test Macro Requirements for glibc (see
67 .BR feature_test_macros (7)):
68 .fi
69 .in
70 .sp
71 .BR acct ():
72 _BSD_SOURCE || (_XOPEN_SOURCE && _XOPEN_SOURCE\ <\ 500)
73 .RE
74 .PP
75 The \fB||\fP means that in order to obtain the declaration of
76 .BR acct (2)
77 from
78 .IR <unistd.h> ,
79 \fIeither\fP of the following macro
80 definitions must be made before including any header files:
81 .RS
82 .nf
83
84 #define _BSD_SOURCE
85 #define _XOPEN_SOURCE        /* or any value < 500 */
86 .fi
87 .RE
88 .PP
89 Alternatively, equivalent definitions can be included in the
90 compilation command:
91 .RS
92 .nf
93
94 cc \-D_BSD_SOURCE
95 cc \-D_XOPEN_SOURCE           # Or any value < 500
96 .fi
97 .RE
98 .PP
99 Note that, as described below,
100 .BR "some feature test macros are defined by default" ,
101 so that it may not always be necessary to
102 explicitly specify the feature test macro(s) shown in the
103 SYNOPSIS.
104
105 In a few cases, manual pages use a shorthand for expressing the
106 feature test macro requirements (this example from
107 .BR readahead (2)):
108 .RS
109 .nf
110
111 .B #define _GNU_SOURCE
112 .B #include <fcntl.h>
113 .sp
114 .BI "ssize_t readahead(int " fd ", off64_t *" offset ", size_t " count );
115 .fi
116 .RE
117 .PP
118 This format is employed in cases where only a single
119 feature test macro can be used to expose the function
120 declaration, and that macro is not defined by default.
121 .SS Feature test macros understood by glibc
122 The following paragraphs explain how feature test macros are handled
123 in Linux glibc 2.\fIx\fP, \fIx\fP > 0.
124 .\" The details in glibc 2.0 are simpler, but combining a
125 .\" a description of them with the details in later glibc versions
126 .\" would make for a complicated description.
127
128 Linux glibc understands the following feature test macros:
129 .TP
130 .B __STRICT_ANSI__
131 ISO Standard C.
132 This macro is implicitly defined by
133 .BR gcc (1)
134 when invoked with, for example, the
135 .I -std=c99
136 or
137 .I -ansi
138 flag.
139 .TP
140 .B _POSIX_C_SOURCE
141 Defining this macro causes header files to expose definitions as follows:
142 .RS
143 .IP \(bu 3
144 The value 1 exposes definitions conforming to POSIX.1-1990 and
145 ISO C (1990).
146 .IP \(bu
147 The value 2 or greater additionally exposes
148 definitions for POSIX.2-1992.
149 .IP \(bu
150 The value 199309L or greater additionally exposes
151 definitions for POSIX.1b (real-time extensions).
152 .\" 199506L functionality is only available since glibc 2.1
153 .IP \(bu
154 The value 199506L or greater additionally exposes
155 definitions for POSIX.1c (threads).
156 .IP \(bu
157 (Since glibc 2.3.3)
158 The value 200112L or greater exposes definitions corresponding
159 to the POSIX.1-2001 base specification (excluding the XSI extension).
160 .IP \(bu
161 (Since glibc 2.10)
162 The value 200809L or greater exposes definitions corresponding
163 to the POSIX.1-2008 base specification (excluding the XSI extension).
164 .RE
165 .TP
166 .B _POSIX_SOURCE
167 Defining this obsolete macro with any value is equivalent to defining
168 .B _POSIX_C_SOURCE
169 with the value 1.
170 .TP
171 .B _XOPEN_SOURCE
172 Defining this macro causes header files to expose definitions as follows:
173 .RS
174 .IP \(bu 3
175 Defining with any value exposes
176 definitions conforming to POSIX.1, POSIX.2, and XPG4.
177 .IP \(bu
178 The value 500 or greater additionally exposes
179 definitions for SUSv2 (UNIX 98).
180 .IP \(bu
181 (Since glibc 2.2) The value 600 or greater additionally exposes
182 definitions for SUSv3 (UNIX 03; i.e., the POSIX.1-2001 base specification
183 plus the XSI extension) and C99 definitions.
184 .IP \(bu
185 (Since glibc 2.10) The value 700 or greater additionally exposes
186 definitions for SUSv4 (i.e., the POSIX.1-2008 base specification
187 plus the XSI extension).
188 .RE
189 .TP
190 .B _XOPEN_SOURCE_EXTENDED
191 If this macro is defined, and
192 .B _XOPEN_SOURCE
193 is defined, then expose definitions corresponding to the XPG4v2
194 (SUSv1) UNIX extensions (UNIX 95).
195 This macro is also implicitly defined if
196 .B _XOPEN_SOURCE
197 is defined with a value of 500 or more.
198 .TP
199 .B _ISOC95_SOURCE
200 Exposes ISO C (1990) Amendment 1 definitions (also known as C95).
201 This macro is recognized since glibc 2.12.
202 The primary change in C95 was support for international character sets.
203 The C95 changes were included in the subsequent C99 standard
204 (in other words,
205 .B _ISOC99_SOURCE
206 implies
207 .BR _ISOC95_SOURCE ).
208 .TP
209 .B _ISOC99_SOURCE
210 Exposes C99 extensions to ISO C (1990).
211 This macro is recognized since glibc 2.1.3;
212 earlier glibc 2.1.x versions recognized an equivalent macro named
213 .B _ISOC9X_SOURCE
214 (because the C99 standard had not then been finalized).
215 Although the use of the latter macro is obsolete, glibc continues
216 to recognize it for backward compatibility.
217 .TP
218 .B _ISOC11_SOURCE
219 Exposes declarations consistent with the ISO C11 standard.
220 This macro is recognized since glibc 2.16.
221 .TP
222 .B _LARGEFILE64_SOURCE
223 Expose definitions for the alternative API specified by the
224 LFS (Large File Summit) as a "transitional extension" to the
225 Single UNIX Specification.
226 (See http://opengroup.org/platform/lfs.html.)
227 The alternative API consists of a set of new objects
228 (i.e., functions and types) whose names are suffixed with "64"
229 (e.g.,
230 .I off64_t
231 versus
232 .IR off_t ,
233 .BR lseek64 ()
234 versus
235 .BR lseek (),
236 etc.).
237 New programs should not employ this interface; instead
238 .I _FILE_OFFSET_BITS=64
239 should be employed.
240 .TP
241 .B _FILE_OFFSET_BITS
242 Defining this macro with the value 64
243 automatically converts references to 32-bit functions and data types
244 related to file I/O and file system operations into references to
245 their 64-bit counterparts.
246 This is useful for performing I/O on large files (> 2 Gigabytes)
247 on 32-bit systems.
248 (Defining this macro permits correctly written programs to use
249 large files with only a recompilation being required.)
250 64-bit systems naturally permit file sizes greater than 2 Gigabytes,
251 and on those systems this macro has no effect.
252 .TP
253 .B _BSD_SOURCE
254 Defining this macro with any value causes header files to expose
255 BSD-derived definitions.
256 Defining this macro also causes BSD definitions to be preferred in
257 some situations where standards conflict, unless one or more of
258 .BR _SVID_SOURCE ,
259 .BR _POSIX_SOURCE ,
260 .BR _POSIX_C_SOURCE ,
261 .BR _XOPEN_SOURCE ,
262 .BR _XOPEN_SOURCE_EXTENDED ,
263 or
264 .B _GNU_SOURCE
265 is defined, in which case BSD definitions are disfavored.
266 .TP
267 .B _SVID_SOURCE
268 Defining this macro with any value causes header files to expose
269 System V-derived definitions.
270 (SVID == System V Interface Definition; see
271 .BR standards (7).)
272 .TP
273 .BR _ATFILE_SOURCE " (since glibc 2.4)"
274 Defining this macro with any value causes header files to expose
275 declarations of a range of functions with the suffix "at";
276 see
277 .BR openat (2).
278 Since glibc 2.10, this macro is also implicitly defined if
279 .BR _POSIX_C_SOURCE
280 is defined with a value greater than or equal to 200809L.
281 .TP
282 .B _GNU_SOURCE
283 Defining this macro (with any value) is equivalent to defining
284 .BR _BSD_SOURCE ,
285 .BR _SVID_SOURCE ,
286 .BR _ATFILE_SOURCE ,
287 .BR _LARGEFILE64_SOURCE ,
288 .BR _ISOC99_SOURCE ,
289 .BR _XOPEN_SOURCE_EXTENDED ,
290 .BR _POSIX_SOURCE ,
291 .B _POSIX_C_SOURCE
292 with the value 200809L
293 (200112L in glibc versions before 2.10;
294 199506L in glibc versions before 2.5;
295 199309L in glibc versions before 2.1)
296 and
297 .B _XOPEN_SOURCE
298 with the value 700
299 (600 in glibc versions before 2.10;
300 500 in glibc versions before 2.2).
301 In addition, various GNU-specific extensions are also exposed.
302 Where standards conflict, BSD definitions are disfavored.
303 .TP
304 .B _REENTRANT
305 Defining this macro exposes definitions of certain reentrant functions.
306 For multithreaded programs, use
307 .I "cc\ \-pthread"
308 instead.
309 .TP
310 .B _THREAD_SAFE
311 Synonym for
312 .BR _REENTRANT ,
313 provided for compatibility with some other implementations.
314 .TP
315 .BR _FORTIFY_SOURCE " (since glibc 2.3.4)"
316 .\" For more detail, see:
317 .\" http://gcc.gnu.org/ml/gcc-patches/2004-09/msg02055.html
318 .\" [PATCH] Object size checking to prevent (some) buffer overflows
319 .\" * From: Jakub Jelinek <jakub at redhat dot com>
320 .\" * To: gcc-patches at gcc dot gnu dot org
321 .\" * Date: Tue, 21 Sep 2004 04:16:40 -0400
322 Defining this macro causes some lightweight checks to be performed
323 to detect some buffer overflow errors when employing
324 various string and memory manipulation functions.
325 Not all buffer overflows are detected, just some common cases.
326 In the current implementation checks are added for
327 calls to
328 .BR memcpy (3),
329 .BR mempcpy (3),
330 .BR memmove (3),
331 .BR memset (3),
332 .BR stpcpy (3),
333 .BR strcpy (3),
334 .BR strncpy (3),
335 .BR strcat (3),
336 .BR strncat (3),
337 .BR sprintf (3),
338 .BR snprintf (3),
339 .BR vsprintf (3),
340 .BR vsnprintf (3),
341 and
342 .BR gets (3).
343 If
344 .B _FORTIFY_SOURCE
345 is set to 1, with compiler optimization level 1
346 .RI ( "gcc\ \-O1" )
347 and above, checks that shouldn't change the behavior of
348 conforming programs are performed.
349 With
350 .B _FORTIFY_SOURCE
351 set to 2 some more checking is added, but
352 some conforming programs might fail.
353 Some of the checks can be performed at compile time,
354 and result in compiler warnings;
355 other checks take place at run time,
356 and result in a run-time error if the check fails.
357 Use of this macro requires compiler support, available with
358 .BR gcc (1)
359 since version 4.0.
360 .SS Default definitions, implicit definitions, and combining definitions
361 .PP
362 If no feature test macros are explicitly defined,
363 then the following feature test macros are defined by default:
364 .BR _BSD_SOURCE ,
365 .BR _SVID_SOURCE ,
366 .BR _POSIX_SOURCE ,
367 and
368 .BR _POSIX_C_SOURCE =200809L
369 (200112L in glibc versions before 2.10;
370 199506L in glibc versions before 2.4;
371 199309L in glibc versions before 2.1).
372 .PP
373 If any of
374 .BR __STRICT_ANSI__ ,
375 .BR _ISOC99_SOURCE ,
376 .BR _POSIX_SOURCE ,
377 .BR _POSIX_C_SOURCE  ,
378 .BR _XOPEN_SOURCE ,
379 .BR _XOPEN_SOURCE_EXTENDED ,
380 .BR _BSD_SOURCE ,
381 or
382 .B _SVID_SOURCE
383 is explicitly defined, then
384 .BR _BSD_SOURCE ,
385 and
386 .B _SVID_SOURCE
387 are not defined by default.
388
389 If
390 .B _POSIX_SOURCE
391 and
392 .B _POSIX_C_SOURCE
393 are not explicitly defined,
394 and either
395 .B __STRICT_ANSI__
396 is not defined or
397 .B _XOPEN_SOURCE
398 is defined with a value of 500 or more, then
399 .RS 3
400 .IP * 3
401 .B _POSIX_SOURCE
402 is defined with the value 1; and
403 .IP *
404 .B _POSIX_C_SOURCE
405 is defined with one of the following values:
406 .RS 6
407 .IP \(bu 3
408 2,
409 if
410 .B XOPEN_SOURCE
411 is defined with a value less than 500;
412 .IP \(bu
413 199506L,
414 if
415 .B XOPEN_SOURCE
416 is defined with a value greater than or equal to 500 and less than 600;
417 or
418 .IP \(bu
419 (since glibc 2.4) 200112L,
420 if
421 .B XOPEN_SOURCE
422 is defined with a value greater than or equal to 600 and less than 700.
423 .IP \(bu
424 (Since glibc 2.10)
425 200809L,
426 if
427 .B XOPEN_SOURCE
428 is defined with a value greater than or equal to 700.
429 .IP \(bu
430 Older versions of glibc do not know about the values
431 200112L and 200809L for
432 .BR _POSIX_C_SOURCE ,
433 and the setting of this macro will depend on the glibc version.
434 .IP \(bu
435 If
436 .B _XOPEN_SOURCE
437 is undefined, then the setting of
438 .B _POSIX_C_SOURCE
439 depends on the glibc version:
440 199506L, in glibc versions before 2.4;
441 200112L, in glibc 2.4 to 2.9; and
442 200809L, since glibc 2.10.
443 .RE
444 .RE
445 .PP
446 Multiple macros can be defined; the results are additive.
447 .SH CONFORMING TO
448 POSIX.1 specifies
449 .BR _POSIX_C_SOURCE ,
450 .BR _POSIX_SOURCE ,
451 and
452 .BR _XOPEN_SOURCE .
453 .B _XOPEN_SOURCE_EXTENDED
454 was specified by XPG4v2 (aka SUSv1).
455
456 .B _FILE_OFFSET_BITS
457 is not specified by any standard,
458 but is employed on some other implementations.
459
460 .BR _BSD_SOURCE ,
461 .BR _SVID_SOURCE ,
462 .BR _ATFILE_SOURCE ,
463 .BR _GNU_SOURCE ,
464 .BR _FORTIFY_SOURCE ,
465 .BR _REENTRANT ,
466 and
467 .B _THREAD_SAFE
468 are specific to Linux (glibc).
469 .SH NOTES
470 .I <features.h>
471 is a Linux/glibc-specific header file.
472 Other systems have an analogous file, but typically with a different name.
473 This header file is automatically included by other header files as
474 required: it is not necessary to explicitly include it in order to
475 employ feature test macros.
476
477 According to which of the above feature test macros are defined,
478 .I <features.h>
479 internally defines various other macros that are checked by
480 other glibc header files.
481 These macros have names prefixed by two underscores (e.g.,
482 .BR __USE_MISC ).
483 Programs should \fInever\fP define these macros directly:
484 instead, the appropriate feature test macro(s) from the
485 list above should be employed.
486 .SH EXAMPLE
487 The program below can be used to explore how the various
488 feature test macros are set depending on the glibc version
489 and what feature test macros are explicitly set.
490 The following shell session, on a system with glibc 2.10,
491 shows some examples of what we would see:
492 .in +4n
493 .nf
494
495 $ \fBcc ftm.c\fP
496 $ \fB./a.out\fP
497 _POSIX_SOURCE defined
498 _POSIX_C_SOURCE defined: 200809L
499 _BSD_SOURCE defined
500 _SVID_SOURCE defined
501 _ATFILE_SOURCE defined
502 $ \fBcc \-D_XOPEN_SOURCE=500 ftm.c\fP
503 $ \fB./a.out\fP
504 _POSIX_SOURCE defined
505 _POSIX_C_SOURCE defined: 199506L
506 _XOPEN_SOURCE defined: 500
507 $ \fBcc \-D_GNU_SOURCE ftm.c\fP
508 $ \fB./a.out\fP
509 _POSIX_SOURCE defined
510 _POSIX_C_SOURCE defined: 200809L
511 _ISOC99_SOURCE defined
512 _XOPEN_SOURCE defined: 700
513 _XOPEN_SOURCE_EXTENDED defined
514 _LARGEFILE64_SOURCE defined
515 _BSD_SOURCE defined
516 _SVID_SOURCE defined
517 _ATFILE_SOURCE defined
518 _GNU_SOURCE defined
519 .fi
520 .in
521 .SS Program source
522 \&
523 .nf
524 /* ftm.c */
525
526 #include <stdio.h>
527 #include <unistd.h>
528 #include <stdlib.h>
529
530 int
531 main(int argc, char *argv[])
532 {
533 #ifdef _POSIX_SOURCE
534     printf("_POSIX_SOURCE defined\\n");
535 #endif
536
537 #ifdef _POSIX_C_SOURCE
538     printf("_POSIX_C_SOURCE defined: %ldL\\n", (long) _POSIX_C_SOURCE);
539 #endif
540
541 #ifdef _ISOC99_SOURCE
542     printf("_ISOC99_SOURCE defined\\n");
543 #endif
544
545 #ifdef _XOPEN_SOURCE
546     printf("_XOPEN_SOURCE defined: %d\\n", _XOPEN_SOURCE);
547 #endif
548
549 #ifdef _XOPEN_SOURCE_EXTENDED
550     printf("_XOPEN_SOURCE_EXTENDED defined\\n");
551 #endif
552
553 #ifdef _LARGEFILE64_SOURCE
554     printf("_LARGEFILE64_SOURCE defined\\n");
555 #endif
556
557 #ifdef _FILE_OFFSET_BITS
558     printf("_FILE_OFFSET_BITS defined: %d\\n", _FILE_OFFSET_BITS);
559 #endif
560
561 #ifdef _BSD_SOURCE
562     printf("_BSD_SOURCE defined\\n");
563 #endif
564
565 #ifdef _SVID_SOURCE
566     printf("_SVID_SOURCE defined\\n");
567 #endif
568
569 #ifdef _ATFILE_SOURCE
570     printf("_ATFILE_SOURCE defined\\n");
571 #endif
572
573 #ifdef _GNU_SOURCE
574     printf("_GNU_SOURCE defined\\n");
575 #endif
576
577 #ifdef _REENTRANT
578     printf("_REENTRANT defined\\n");
579 #endif
580
581 #ifdef _THREAD_SAFE
582     printf("_THREAD_SAFE defined\\n");
583 #endif
584
585 #ifdef _FORTIFY_SOURCE
586     printf("_FORTIFY_SOURCE defined\\n");
587 #endif
588
589     exit(EXIT_SUCCESS);
590 }
591 .fi
592 .SH SEE ALSO
593 .BR libc (7),
594 .BR standards (7)
595 .sp
596 The section "Feature Test Macros" under
597 .IR "info libc" .
598 .\" But beware: the info libc document is out of date (Jul 07, mtk)
599 .sp
600 .I /usr/include/features.h