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