setsebool: new applet (Yuichi Nakamura <ynakam@hitachisoft.jp>)
[oweals/busybox.git] / include / platform.h
1 /* vi: set sw=4 ts=4: */
2 /*
3    Copyright 2006, Bernhard Fischer
4
5    Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
6 */
7 #ifndef __PLATFORM_H
8 #define __PLATFORM_H    1
9
10 /* Convenience macros to test the version of gcc. */
11 #undef __GNUC_PREREQ
12 #if defined __GNUC__ && defined __GNUC_MINOR__
13 # define __GNUC_PREREQ(maj, min) \
14                 ((__GNUC__ << 16) + __GNUC_MINOR__ >= ((maj) << 16) + (min))
15 #else
16 # define __GNUC_PREREQ(maj, min) 0
17 #endif
18
19 /* __restrict is known in EGCS 1.2 and above. */
20 #if !__GNUC_PREREQ (2,92)
21 # ifndef __restrict
22 #  define __restrict     /* Ignore */
23 # endif
24 #endif
25
26 /* Define macros for some gcc attributes.  This permits us to use the
27    macros freely, and know that they will come into play for the
28    version of gcc in which they are supported.  */
29
30 #if !__GNUC_PREREQ (2,7)
31 # ifndef __attribute__
32 #  define __attribute__(x)
33 # endif
34 #endif
35
36 #undef inline
37 #if defined(__STDC_VERSION__) && __STDC_VERSION__ > 199901L
38 /* it's a keyword */
39 #else
40 # if __GNUC_PREREQ (2,7)
41 #  define inline __inline__
42 # else
43 #  define inline
44 # endif
45 #endif
46
47 #ifndef __const
48 # define __const const
49 #endif
50
51 # define ATTRIBUTE_UNUSED __attribute__ ((__unused__))
52 # define ATTRIBUTE_NORETURN __attribute__ ((__noreturn__))
53 # define ATTRIBUTE_PACKED __attribute__ ((__packed__))
54 # define ATTRIBUTE_ALIGNED(m) __attribute__ ((__aligned__(m)))
55 # if __GNUC_PREREQ (3,0)
56 #  define ALWAYS_INLINE __attribute__ ((always_inline)) inline
57 /* I've seen a toolchain where I needed __noinline__ instead of noinline */
58 #  define NOINLINE      __attribute__((__noinline__))
59 #  if !ENABLE_WERROR
60 #   define ATTRIBUTE_DEPRECATED __attribute__ ((__deprecated__))
61 #   define ATTRIBUTE_UNUSED_RESULT __attribute__ ((warn_unused_result))
62 #  else
63 #   define ATTRIBUTE_DEPRECATED /* n/a */
64 #   define ATTRIBUTE_UNUSED_RESULT /* n/a */
65 #  endif
66 # else
67 #  define ALWAYS_INLINE inline /* n/a */
68 #  define NOINLINE /* n/a */
69 #  define ATTRIBUTE_DEPRECATED /* n/a */
70 #  define ATTRIBUTE_UNUSED_RESULT /* n/a */
71 # endif
72
73 /* -fwhole-program makes all symbols local. The attribute externally_visible
74    forces a symbol global.  */
75 # if __GNUC_PREREQ (4,1)
76 #  define EXTERNALLY_VISIBLE __attribute__(( visibility("default") ));
77 //__attribute__ ((__externally_visible__))
78 # else
79 #  define EXTERNALLY_VISIBLE
80 # endif /* GNUC >= 4.1 */
81
82 /* We use __extension__ in some places to suppress -pedantic warnings
83    about GCC extensions.  This feature didn't work properly before
84    gcc 2.8.  */
85 #if !__GNUC_PREREQ (2,8)
86 # ifndef __extension__
87 #  define __extension__
88 # endif
89 #endif
90
91 /* gcc-2.95 had no va_copy but only __va_copy. */
92 #if !__GNUC_PREREQ (3,0)
93 # include <stdarg.h>
94 # if !defined va_copy && defined __va_copy
95 #  define va_copy(d,s) __va_copy((d),(s))
96 # endif
97 #endif
98
99 /* ---- Endian Detection ------------------------------------ */
100
101 #if (defined __digital__ && defined __unix__)
102 # include <sex.h>
103 # define __BIG_ENDIAN__ (BYTE_ORDER == BIG_ENDIAN)
104 # define __BYTE_ORDER BYTE_ORDER
105 #elif !defined __APPLE__
106 # include <byteswap.h>
107 # include <endian.h>
108 #endif
109
110 #ifdef __BIG_ENDIAN__
111 # define BB_BIG_ENDIAN 1
112 # define BB_LITTLE_ENDIAN 0
113 #elif __BYTE_ORDER == __BIG_ENDIAN
114 # define BB_BIG_ENDIAN 1
115 # define BB_LITTLE_ENDIAN 0
116 #else
117 # define BB_BIG_ENDIAN 0
118 # define BB_LITTLE_ENDIAN 1
119 #endif
120
121 #if BB_BIG_ENDIAN
122 #define SWAP_BE16(x) (x)
123 #define SWAP_BE32(x) (x)
124 #define SWAP_BE64(x) (x)
125 #define SWAP_LE16(x) bswap_16(x)
126 #define SWAP_LE32(x) bswap_32(x)
127 #define SWAP_LE64(x) bswap_64(x)
128 #else
129 #define SWAP_BE16(x) bswap_16(x)
130 #define SWAP_BE32(x) bswap_32(x)
131 #define SWAP_BE64(x) bswap_64(x)
132 #define SWAP_LE16(x) (x)
133 #define SWAP_LE32(x) (x)
134 #define SWAP_LE64(x) (x)
135 #endif
136
137 /* ---- Networking ------------------------------------------ */
138 #ifndef __APPLE__
139 # include <arpa/inet.h>
140 #else
141 # include <netinet/in.h>
142 #endif
143
144 #ifndef __socklen_t_defined
145 typedef int socklen_t;
146 #endif
147
148 /* ---- Compiler dependent settings ------------------------- */
149 #if (defined __digital__ && defined __unix__)
150 # undef HAVE_MNTENT_H
151 #else
152 # define HAVE_MNTENT_H 1
153 #endif /* ___digital__ && __unix__ */
154
155 /* linux/loop.h relies on __u64. Make sure we have that as a proper type
156  * until userspace is widely fixed.  */
157 #ifndef __GNUC__
158 #if defined __INTEL_COMPILER
159 __extension__ typedef __signed__ long long __s64;
160 __extension__ typedef unsigned long long __u64;
161 #endif /* __INTEL_COMPILER */
162 #endif /* ifndef __GNUC__ */
163
164 /*----- Kernel versioning ------------------------------------*/
165 #define KERNEL_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c))
166
167 /* ---- miscellaneous --------------------------------------- */
168
169 #if defined(__GNU_LIBRARY__) && __GNU_LIBRARY__ < 5 && \
170         !defined(__dietlibc__) && \
171         !defined(_NEWLIB_VERSION) && \
172         !(defined __digital__ && defined __unix__)
173 # error "Sorry, this libc version is not supported :("
174 #endif
175
176 /* Don't perpetuate e2fsck crap into the headers.  Clean up e2fsck instead. */
177
178 #if defined __GLIBC__ || defined __UCLIBC__ \
179         || defined __dietlibc__ || defined _NEWLIB_VERSION
180 #include <features.h>
181 #define HAVE_FEATURES_H
182 #include <stdint.h>
183 #define HAVE_STDINT_H
184 #else
185 /* Largest integral types.  */
186 #if __BIG_ENDIAN__
187 typedef long                intmax_t;
188 typedef unsigned long       uintmax_t;
189 #else
190 __extension__
191 typedef long long           intmax_t;
192 __extension__
193 typedef unsigned long long  uintmax_t;
194 #endif
195 #endif
196
197 /* Size-saving "small" ints (arch-dependent) */
198 #if defined(i386) || defined(__x86_64__) || defined(__mips__) || defined(__cris__)
199 /* add other arches which benefit from this... */
200 typedef signed char smallint;
201 typedef unsigned char smalluint;
202 #else
203 /* for arches where byte accesses generate larger code: */
204 typedef int smallint;
205 typedef unsigned smalluint;
206 #endif
207
208 /* ISO C Standard:  7.16  Boolean type and values  <stdbool.h> */
209 #if (defined __digital__ && defined __unix__)
210 /* old system without (proper) C99 support */
211 #define bool smalluint
212 #else
213 /* modern system, so use it */
214 #include <stdbool.h>
215 #endif
216
217 /* Try to defeat gcc's alignment of "char message[]"-like data */
218 #if 1 /* if needed: !defined(arch1) && !defined(arch2) */
219 #define ALIGN1 __attribute__((aligned(1)))
220 #define ALIGN2 __attribute__((aligned(2)))
221 #else
222 /* Arches which MUST have 2 or 4 byte alignment for everything are here */
223 #define ALIGN1
224 #define ALIGN2
225 #endif
226
227
228 /* uclibc does not implement daemon() for no-mmu systems.
229  * For 0.9.29 and svn, __ARCH_USE_MMU__ indicates no-mmu reliably.
230  * For earlier versions there is no reliable way to check if we are building
231  * for a mmu-less system; the user should pass EXTRA_CFLAGS="-DBB_NOMMU"
232  * on his own.
233  */
234 #if defined __UCLIBC__ && __UCLIBC_MAJOR__ >= 0 && __UCLIBC_MINOR__ >= 9 && \
235     __UCLIBC_SUBLEVEL__ > 28 && !defined __ARCH_USE_MMU__
236 #define BB_MMU 0
237 #define BB_NOMMU 1
238 #define USE_FOR_NOMMU(...) __VA_ARGS__
239 #define USE_FOR_MMU(...)
240 #else
241 #define BB_MMU 1
242 /* BB_NOMMU is not defined in this case! */
243 #define USE_FOR_NOMMU(...)
244 #define USE_FOR_MMU(...) __VA_ARGS__
245 #endif
246
247 /* Platforms that haven't got dprintf need to implement fdprintf() in
248  * libbb.  This would require a platform.c.  It's not going to be cleaned
249  * out of the tree, so stop saying it should be. */
250 #if !defined(__dietlibc__)
251 /* Needed for: glibc */
252 /* Not needed for: dietlibc */
253 /* Others: ?? (add as needed) */
254 #define fdprintf dprintf
255 #endif
256
257 #if defined(__dietlibc__)
258 static ALWAYS_INLINE char* strchrnul(const char *s, char c)
259 {
260         while (*s && *s != c) ++s;
261         return (char*)s;
262 }
263 #endif
264
265 /* Don't use lchown with glibc older than 2.1.x ... uClibc lacks it */
266 #if (defined __GLIBC__ && __GLIBC__ <= 2 && __GLIBC_MINOR__ < 1) || \
267     defined __UC_LIBC__
268 # define lchown chown
269 #endif
270
271 /* THIS SHOULD BE CLEANED OUT OF THE TREE ENTIRELY */
272 /* FIXME: fix tar.c! */
273 #ifndef FNM_LEADING_DIR
274 #define FNM_LEADING_DIR 0
275 #endif
276
277 #if (defined __digital__ && defined __unix__)
278 #include <standards.h>
279 #define HAVE_STANDARDS_H
280 #include <inttypes.h>
281 #define HAVE_INTTYPES_H
282 #define PRIu32 "u"
283
284 /* use legacy setpgrp(pid_t,pid_t) for now.  move to platform.c */
285 #define bb_setpgrp() do { pid_t __me = getpid(); setpgrp(__me,__me); } while (0)
286
287 #if !defined ADJ_OFFSET_SINGLESHOT && defined MOD_CLKA && defined MOD_OFFSET
288 #define ADJ_OFFSET_SINGLESHOT (MOD_CLKA | MOD_OFFSET)
289 #endif
290 #if !defined ADJ_FREQUENCY && defined MOD_FREQUENCY
291 #define ADJ_FREQUENCY MOD_FREQUENCY
292 #endif
293 #if !defined ADJ_TIMECONST && defined MOD_TIMECONST
294 #define ADJ_TIMECONST MOD_TIMECONST
295 #endif
296 #if !defined ADJ_TICK && defined MOD_CLKB
297 #define ADJ_TICK MOD_CLKB
298 #endif
299
300 #else
301 #define bb_setpgrp() setpgrp()
302 #endif
303
304 #if defined(__linux__)
305 #include <sys/mount.h>
306 /* Make sure we have all the new mount flags we actually try to use. */
307 #ifndef MS_BIND
308 #define MS_BIND        (1<<12)
309 #endif
310 #ifndef MS_MOVE
311 #define MS_MOVE        (1<<13)
312 #endif
313 #ifndef MS_RECURSIVE
314 #define MS_RECURSIVE   (1<<14)
315 #endif
316 #ifndef MS_SILENT
317 #define MS_SILENT      (1<<15)
318 #endif
319
320 /* The shared subtree stuff, which went in around 2.6.15. */
321 #ifndef MS_UNBINDABLE
322 #define MS_UNBINDABLE  (1<<17)
323 #endif
324 #ifndef MS_PRIVATE
325 #define MS_PRIVATE     (1<<18)
326 #endif
327 #ifndef MS_SLAVE
328 #define MS_SLAVE       (1<<19)
329 #endif
330 #ifndef MS_SHARED
331 #define MS_SHARED      (1<<20)
332 #endif
333
334
335 #if !defined(BLKSSZGET)
336 #define BLKSSZGET _IO(0x12, 104)
337 #endif
338 #if !defined(BLKGETSIZE64)
339 #define BLKGETSIZE64 _IOR(0x12,114,size_t)
340 #endif
341 #endif
342
343 #endif  /* platform.h   */