1 /* vi: set sw=4 ts=4: */
3 Copyright 2006, Bernhard Reutner-Fischer
5 Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
10 /* Convenience macros to test the version of gcc. */
12 #if defined __GNUC__ && defined __GNUC_MINOR__
13 # define __GNUC_PREREQ(maj, min) \
14 ((__GNUC__ << 16) + __GNUC_MINOR__ >= ((maj) << 16) + (min))
16 # define __GNUC_PREREQ(maj, min) 0
19 /* __restrict is known in EGCS 1.2 and above. */
20 #if !__GNUC_PREREQ(2,92)
22 # define __restrict /* Ignore */
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. */
30 #if !__GNUC_PREREQ(2,7)
31 # ifndef __attribute__
32 # define __attribute__(x)
37 #if defined(__STDC_VERSION__) && __STDC_VERSION__ > 199901L
40 # if __GNUC_PREREQ(2,7)
41 # define inline __inline__
48 # define __const const
51 #define UNUSED_PARAM __attribute__ ((__unused__))
52 #define NORETURN __attribute__ ((__noreturn__))
53 #define PACKED __attribute__ ((__packed__))
54 #define ALIGNED(m) __attribute__ ((__aligned__(m)))
55 /* __NO_INLINE__: some gcc's do not honor inlining! :( */
56 #if __GNUC_PREREQ(3,0) && !defined(__NO_INLINE__)
57 # define ALWAYS_INLINE __attribute__ ((always_inline)) inline
58 /* I've seen a toolchain where I needed __noinline__ instead of noinline */
59 # define NOINLINE __attribute__((__noinline__))
61 # define DEPRECATED __attribute__ ((__deprecated__))
62 # define UNUSED_PARAM_RESULT __attribute__ ((warn_unused_result))
64 # define DEPRECATED /* n/a */
65 # define UNUSED_PARAM_RESULT /* n/a */
68 # define ALWAYS_INLINE inline /* n/a */
69 # define NOINLINE /* n/a */
70 # define DEPRECATED /* n/a */
71 # define UNUSED_PARAM_RESULT /* n/a */
74 /* -fwhole-program makes all symbols local. The attribute externally_visible
75 forces a symbol global. */
76 #if __GNUC_PREREQ(4,1)
77 # define EXTERNALLY_VISIBLE __attribute__(( visibility("default") ))
78 //__attribute__ ((__externally_visible__))
80 # define EXTERNALLY_VISIBLE
83 /* We use __extension__ in some places to suppress -pedantic warnings
84 about GCC extensions. This feature didn't work properly before
86 #if !__GNUC_PREREQ(2,8)
87 # ifndef __extension__
88 # define __extension__
92 /* gcc-2.95 had no va_copy but only __va_copy. */
93 #if !__GNUC_PREREQ(3,0)
95 # if !defined va_copy && defined __va_copy
96 # define va_copy(d,s) __va_copy((d),(s))
100 /* FAST_FUNC is a qualifier which (possibly) makes function call faster
101 * and/or smaller by using modified ABI. It is usually only needed
102 * on non-static, busybox internal functions. Recent versions of gcc
103 * optimize statics automatically. FAST_FUNC on static is required
104 * only if you need to match a function pointer's type */
105 #if __GNUC_PREREQ(3,0) && defined(i386) /* || defined(__x86_64__)? */
106 /* stdcall makes callee to pop arguments from stack, not caller */
107 # define FAST_FUNC __attribute__((regparm(3),stdcall))
108 /* #elif ... - add your favorite arch today! */
113 /* ---- Endian Detection ------------------------------------ */
115 #if (defined __digital__ && defined __unix__)
117 # define __BIG_ENDIAN__ (BYTE_ORDER == BIG_ENDIAN)
118 # define __BYTE_ORDER BYTE_ORDER
119 #elif !defined __APPLE__
120 # include <byteswap.h>
124 #ifdef __BIG_ENDIAN__
125 # define BB_BIG_ENDIAN 1
126 # define BB_LITTLE_ENDIAN 0
127 #elif __BYTE_ORDER == __BIG_ENDIAN
128 # define BB_BIG_ENDIAN 1
129 # define BB_LITTLE_ENDIAN 0
131 # define BB_BIG_ENDIAN 0
132 # define BB_LITTLE_ENDIAN 1
135 /* SWAP_LEnn means "convert CPU<->little_endian by swapping bytes" */
137 #define SWAP_BE16(x) (x)
138 #define SWAP_BE32(x) (x)
139 #define SWAP_BE64(x) (x)
140 #define SWAP_LE16(x) bswap_16(x)
141 #define SWAP_LE32(x) bswap_32(x)
142 #define SWAP_LE64(x) bswap_64(x)
144 #define SWAP_BE16(x) bswap_16(x)
145 #define SWAP_BE32(x) bswap_32(x)
146 #define SWAP_BE64(x) bswap_64(x)
147 #define SWAP_LE16(x) (x)
148 #define SWAP_LE32(x) (x)
149 #define SWAP_LE64(x) (x)
152 /* ---- Unaligned access ------------------------------------ */
154 /* NB: unaligned parameter should be a pointer, aligned one -
155 * a lvalue. This makes it more likely to not swap them by mistake
157 #if defined(i386) || defined(__x86_64__)
158 #define move_from_unaligned16(v, u16p) ((v) = *(uint16_t*)(u16p))
159 #define move_from_unaligned32(v, u32p) ((v) = *(uint32_t*)(u32p))
160 #define move_to_unaligned32(u32p, v) (*(uint32_t*)(u32p) = (v))
161 /* #elif ... - add your favorite arch today! */
163 /* performs reasonably well (gcc usually inlines memcpy here) */
164 #define move_from_unaligned16(v, u16p) (memcpy(&(v), (u16p), 2))
165 #define move_from_unaligned32(v, u32p) (memcpy(&(v), (u32p), 4))
166 #define move_to_unaligned32(u32p, v) (memcpy((u32p), &(v), 4))
169 /* ---- Networking ------------------------------------------ */
172 # include <arpa/inet.h>
173 # ifndef __socklen_t_defined
174 typedef int socklen_t;
177 # include <netinet/in.h>
180 /* ---- Compiler dependent settings ------------------------- */
182 #if (defined __digital__ && defined __unix__) || defined __APPLE__
183 # undef HAVE_MNTENT_H
184 # undef HAVE_SYS_STATFS_H
186 # define HAVE_MNTENT_H 1
187 # define HAVE_SYS_STATFS_H 1
188 #endif /* ___digital__ && __unix__ */
190 /* linux/loop.h relies on __u64. Make sure we have that as a proper type
191 * until userspace is widely fixed. */
192 #if (defined __INTEL_COMPILER && !defined __GNUC__) || \
193 (defined __GNUC__ && defined __STRICT_ANSI__)
194 __extension__ typedef long long __s64;
195 __extension__ typedef unsigned long long __u64;
198 /*----- Kernel versioning ------------------------------------*/
200 #define KERNEL_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c))
202 /* ---- Miscellaneous --------------------------------------- */
204 #if defined(__GNU_LIBRARY__) && __GNU_LIBRARY__ < 5 && \
205 !defined(__dietlibc__) && \
206 !defined(_NEWLIB_VERSION) && \
207 !(defined __digital__ && defined __unix__)
208 # error "Sorry, this libc version is not supported :("
211 /* Don't perpetuate e2fsck crap into the headers. Clean up e2fsck instead. */
213 #if defined __GLIBC__ || defined __UCLIBC__ \
214 || defined __dietlibc__ || defined _NEWLIB_VERSION
215 #include <features.h>
216 #define HAVE_FEATURES_H
218 #define HAVE_STDINT_H
219 #elif !defined __APPLE__
220 /* Largest integral types. */
222 typedef long intmax_t;
223 typedef unsigned long uintmax_t;
226 typedef long long intmax_t;
228 typedef unsigned long long uintmax_t;
232 /* Size-saving "small" ints (arch-dependent) */
233 #if defined(i386) || defined(__x86_64__) || defined(__mips__) || defined(__cris__)
234 /* add other arches which benefit from this... */
235 typedef signed char smallint;
236 typedef unsigned char smalluint;
238 /* for arches where byte accesses generate larger code: */
239 typedef int smallint;
240 typedef unsigned smalluint;
243 /* ISO C Standard: 7.16 Boolean type and values <stdbool.h> */
244 #if (defined __digital__ && defined __unix__)
245 /* old system without (proper) C99 support */
246 #define bool smalluint
248 /* modern system, so use it */
252 /* Try to defeat gcc's alignment of "char message[]"-like data */
253 #if 1 /* if needed: !defined(arch1) && !defined(arch2) */
254 #define ALIGN1 __attribute__((aligned(1)))
255 #define ALIGN2 __attribute__((aligned(2)))
257 /* Arches which MUST have 2 or 4 byte alignment for everything are here */
263 /* uclibc does not implement daemon() for no-mmu systems.
264 * For 0.9.29 and svn, __ARCH_USE_MMU__ indicates no-mmu reliably.
265 * For earlier versions there is no reliable way to check if we are building
266 * for a mmu-less system.
268 #if ENABLE_NOMMU || \
269 (defined __UCLIBC__ && __UCLIBC_MAJOR__ >= 0 && __UCLIBC_MINOR__ >= 9 && \
270 __UCLIBC_SUBLEVEL__ > 28 && !defined __ARCH_USE_MMU__)
272 #define USE_FOR_NOMMU(...) __VA_ARGS__
273 #define USE_FOR_MMU(...)
276 #define USE_FOR_NOMMU(...)
277 #define USE_FOR_MMU(...) __VA_ARGS__
280 /* Platforms that haven't got dprintf need to implement fdprintf() in
281 * libbb. This would require a platform.c. It's not going to be cleaned
282 * out of the tree, so stop saying it should be. */
283 #if !defined(__dietlibc__)
284 /* Needed for: glibc */
285 /* Not needed for: dietlibc */
286 /* Others: ?? (add as needed) */
287 #define fdprintf dprintf
290 #if defined(__dietlibc__)
291 static ALWAYS_INLINE char* strchrnul(const char *s, char c)
293 while (*s && *s != c) ++s;
298 /* Don't use lchown with glibc older than 2.1.x ... uClibc lacks it */
299 #if (defined __GLIBC__ && __GLIBC__ <= 2 && __GLIBC_MINOR__ < 1) || \
301 # define lchown chown
304 #if (defined __digital__ && defined __unix__)
306 # include <standards.h>
307 # define HAVE_STANDARDS_H
308 # include <inttypes.h>
309 # define HAVE_INTTYPES_H
311 /* use legacy setpgrp(pid_t,pid_t) for now. move to platform.c */
312 # define bb_setpgrp() do { pid_t __me = getpid(); setpgrp(__me,__me); } while (0)
314 # if !defined ADJ_OFFSET_SINGLESHOT && defined MOD_CLKA && defined MOD_OFFSET
315 # define ADJ_OFFSET_SINGLESHOT (MOD_CLKA | MOD_OFFSET)
317 # if !defined ADJ_FREQUENCY && defined MOD_FREQUENCY
318 # define ADJ_FREQUENCY MOD_FREQUENCY
320 # if !defined ADJ_TIMECONST && defined MOD_TIMECONST
321 # define ADJ_TIMECONST MOD_TIMECONST
323 # if !defined ADJ_TICK && defined MOD_CLKB
324 # define ADJ_TICK MOD_CLKB
327 #else /* !__digital__ */
329 # define bb_setpgrp() setpgrp()
333 #if defined(__linux__)
334 #include <sys/mount.h>
335 /* Make sure we have all the new mount flags we actually try to use. */
337 #define MS_BIND (1<<12)
340 #define MS_MOVE (1<<13)
343 #define MS_RECURSIVE (1<<14)
346 #define MS_SILENT (1<<15)
349 /* The shared subtree stuff, which went in around 2.6.15. */
350 #ifndef MS_UNBINDABLE
351 #define MS_UNBINDABLE (1<<17)
354 #define MS_PRIVATE (1<<18)
357 #define MS_SLAVE (1<<19)
360 #define MS_SHARED (1<<20)
363 #define MS_RELATIME (1 << 21)
366 #if !defined(BLKSSZGET)
367 #define BLKSSZGET _IO(0x12, 104)
369 #if !defined(BLKGETSIZE64)
370 #define BLKGETSIZE64 _IOR(0x12,114,size_t)
374 #endif /* platform.h */