blob: ff23ca18ceb0020735df0234beab38195d19731a [file] [log] [blame]
Bernhard Reutner-Fischerb1629b12006-05-19 19:29:19 +00001/* vi: set sw=4 ts=4: */
Bernhard Reutner-Fischer86f5c992006-01-22 22:55:11 +00002/*
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) \
Denis Vlasenko9213a9e2006-09-17 16:28:10 +000014 ((__GNUC__ << 16) + __GNUC_MINOR__ >= ((maj) << 16) + (min))
Bernhard Reutner-Fischer86f5c992006-01-22 22:55:11 +000015#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
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +000036#undef inline
Denis Vlasenkoa7189f02006-11-17 20:29:00 +000037#if defined(__STDC_VERSION__) && __STDC_VERSION__ > 199901L
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +000038/* 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
Mike Frysingerf8855132006-03-28 02:35:56 +000051# define ATTRIBUTE_UNUSED __attribute__ ((__unused__))
Mike Frysingerf8855132006-03-28 02:35:56 +000052# define ATTRIBUTE_NORETURN __attribute__ ((__noreturn__))
Mike Frysingerf8855132006-03-28 02:35:56 +000053# define ATTRIBUTE_PACKED __attribute__ ((__packed__))
Mike Frysingerf8855132006-03-28 02:35:56 +000054# define ATTRIBUTE_ALIGNED(m) __attribute__ ((__aligned__(m)))
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +000055# if __GNUC_PREREQ (3,0)
Denis Vlasenko3ad5d0c2007-06-12 20:54:54 +000056# define ALWAYS_INLINE __attribute__ ((always_inline)) inline
Denis Vlasenko734e5eb2007-05-04 21:38:14 +000057# if !ENABLE_WERROR
58# define ATTRIBUTE_DEPRECATED __attribute__ ((__deprecated__))
Bernhard Reutner-Fischer9a337802007-06-21 10:39:20 +000059# define ATTRIBUTE_UNUSED_RESULT __attribute__ ((warn_unused_result))
Denis Vlasenko734e5eb2007-05-04 21:38:14 +000060# else
61# define ATTRIBUTE_DEPRECATED /* n/a */
Bernhard Reutner-Fischer9a337802007-06-21 10:39:20 +000062# define ATTRIBUTE_UNUSED_RESULT /* n/a */
Denis Vlasenko734e5eb2007-05-04 21:38:14 +000063# endif
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +000064# else
Denis Vlasenko3ad5d0c2007-06-12 20:54:54 +000065# define ALWAYS_INLINE inline
Bernhard Reutner-Fischer51f7ab62007-04-10 18:40:05 +000066# define ATTRIBUTE_DEPRECATED /* n/a */
Bernhard Reutner-Fischer9a337802007-06-21 10:39:20 +000067# define ATTRIBUTE_UNUSED_RESULT /* n/a */
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +000068# endif
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +000069
Bernhard Reutner-Fischer86f5c992006-01-22 22:55:11 +000070/* -fwhole-program makes all symbols local. The attribute externally_visible
71 forces a symbol global. */
Bernhard Reutner-Fischer86f5c992006-01-22 22:55:11 +000072# if __GNUC_PREREQ (4,1)
Mike Frysingerf8855132006-03-28 02:35:56 +000073# define ATTRIBUTE_EXTERNALLY_VISIBLE __attribute__ ((__externally_visible__))
Bernhard Reutner-Fischer86f5c992006-01-22 22:55:11 +000074# else
Mike Frysingerf8855132006-03-28 02:35:56 +000075# define ATTRIBUTE_EXTERNALLY_VISIBLE
Bernhard Reutner-Fischer86f5c992006-01-22 22:55:11 +000076# endif /* GNUC >= 4.1 */
Bernhard Reutner-Fischer86f5c992006-01-22 22:55:11 +000077
78/* We use __extension__ in some places to suppress -pedantic warnings
79 about GCC extensions. This feature didn't work properly before
80 gcc 2.8. */
81#if !__GNUC_PREREQ (2,8)
82# ifndef __extension__
83# define __extension__
84# endif
85#endif
86
Bernhard Reutner-Fischerb5f50ea2006-09-12 13:27:55 +000087/* gcc-2.95 had no va_copy but only __va_copy. */
88#if !__GNUC_PREREQ (3,0)
89# include <stdarg.h>
90# if !defined va_copy && defined __va_copy
91# define va_copy(d,s) __va_copy((d),(s))
92# endif
93#endif
94
Rob Landley5cf7c2d2006-02-21 06:44:43 +000095/* ---- Endian Detection ------------------------------------ */
Rob Landley5cf7c2d2006-02-21 06:44:43 +000096
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +000097#if (defined __digital__ && defined __unix__)
98# include <sex.h>
99# define __BIG_ENDIAN__ (BYTE_ORDER == BIG_ENDIAN)
100# define __BYTE_ORDER BYTE_ORDER
Rob Landley15d20a02006-05-29 05:00:44 +0000101#elif !defined __APPLE__
102# include <byteswap.h>
103# include <endian.h>
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +0000104#endif
105
Rob Landley5cf7c2d2006-02-21 06:44:43 +0000106#ifdef __BIG_ENDIAN__
Mike Frysingerf8855132006-03-28 02:35:56 +0000107# define BB_BIG_ENDIAN 1
108# define BB_LITTLE_ENDIAN 0
Rob Landley5cf7c2d2006-02-21 06:44:43 +0000109#elif __BYTE_ORDER == __BIG_ENDIAN
Mike Frysingerf8855132006-03-28 02:35:56 +0000110# define BB_BIG_ENDIAN 1
111# define BB_LITTLE_ENDIAN 0
Bernhard Reutner-Fischered7bb622006-02-23 14:25:15 +0000112#else
Mike Frysingerf8855132006-03-28 02:35:56 +0000113# define BB_BIG_ENDIAN 0
114# define BB_LITTLE_ENDIAN 1
Rob Landley5cf7c2d2006-02-21 06:44:43 +0000115#endif
116
Rob Landleybba7f082006-05-29 05:51:12 +0000117#if BB_BIG_ENDIAN
Rob Landley752f0a62006-05-30 06:28:03 +0000118#define SWAP_BE16(x) (x)
119#define SWAP_BE32(x) (x)
120#define SWAP_BE64(x) (x)
Rob Landleybba7f082006-05-29 05:51:12 +0000121#define SWAP_LE16(x) bswap_16(x)
122#define SWAP_LE32(x) bswap_32(x)
123#define SWAP_LE64(x) bswap_64(x)
124#else
125#define SWAP_BE16(x) bswap_16(x)
126#define SWAP_BE32(x) bswap_32(x)
127#define SWAP_BE64(x) bswap_64(x)
Rob Landley752f0a62006-05-30 06:28:03 +0000128#define SWAP_LE16(x) (x)
129#define SWAP_LE32(x) (x)
130#define SWAP_LE64(x) (x)
Rob Landleybba7f082006-05-29 05:51:12 +0000131#endif
132
Rob Landleydae6aa22006-03-09 22:39:08 +0000133/* ---- Networking ------------------------------------------ */
134#ifndef __APPLE__
Mike Frysingerf8855132006-03-28 02:35:56 +0000135# include <arpa/inet.h>
Rob Landleydae6aa22006-03-09 22:39:08 +0000136#else
Mike Frysingerf8855132006-03-28 02:35:56 +0000137# include <netinet/in.h>
Rob Landleydae6aa22006-03-09 22:39:08 +0000138#endif
139
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +0000140#ifndef __socklen_t_defined
141typedef int socklen_t;
142#endif
143
144/* ---- Compiler dependent settings ------------------------- */
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +0000145#if (defined __digital__ && defined __unix__)
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +0000146# undef HAVE_MNTENT_H
147#else
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +0000148# define HAVE_MNTENT_H 1
149#endif /* ___digital__ && __unix__ */
150
Bernhard Reutner-Fischerbe862092007-03-19 15:15:06 +0000151/* linux/loop.h relies on __u64. Make sure we have that as a proper type
152 * until userspace is widely fixed. */
153#ifndef __GNUC__
154#if defined __INTEL_COMPILER
155__extension__ typedef __signed__ long long __s64;
156__extension__ typedef unsigned long long __u64;
157#endif /* __INTEL_COMPILER */
158#endif /* ifndef __GNUC__ */
159
Bernhard Reutner-Fischere2e56c72006-05-19 11:54:02 +0000160/*----- Kernel versioning ------------------------------------*/
Bernhard Reutner-Fischere2e56c72006-05-19 11:54:02 +0000161#define KERNEL_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c))
Bernhard Reutner-Fischere2e56c72006-05-19 11:54:02 +0000162
Bernhard Reutner-Fischered7bb622006-02-23 14:25:15 +0000163/* ---- miscellaneous --------------------------------------- */
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +0000164
Mike Frysingerb16b5bb2006-06-06 06:00:20 +0000165#if defined(__GNU_LIBRARY__) && __GNU_LIBRARY__ < 5 && \
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +0000166 !defined(__dietlibc__) && \
167 !defined(_NEWLIB_VERSION) && \
168 !(defined __digital__ && defined __unix__)
Mike Frysingerb16b5bb2006-06-06 06:00:20 +0000169# error "Sorry, this libc version is not supported :("
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +0000170#endif
171
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000172/* Don't perpetuate e2fsck crap into the headers. Clean up e2fsck instead. */
Rob Landley18958e92006-06-13 18:28:33 +0000173
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +0000174#if defined __GLIBC__ || defined __UCLIBC__ \
175 || defined __dietlibc__ || defined _NEWLIB_VERSION
176#include <features.h>
177#define HAVE_FEATURES_H
178#include <stdint.h>
179#define HAVE_STDINT_H
180#else
181/* Largest integral types. */
182#if __BIG_ENDIAN__
Denis Vlasenko87468852007-04-13 23:22:00 +0000183typedef long intmax_t;
184typedef unsigned long uintmax_t;
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +0000185#else
186__extension__
Denis Vlasenko87468852007-04-13 23:22:00 +0000187typedef long long intmax_t;
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +0000188__extension__
Denis Vlasenko87468852007-04-13 23:22:00 +0000189typedef unsigned long long uintmax_t;
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +0000190#endif
191#endif
192
Bernhard Reutner-Fischerc966ba42007-01-18 10:32:09 +0000193/* Size-saving "small" ints (arch-dependent) */
194#if defined(i386) || defined(__x86_64__) || defined(__mips__) || defined(__cris__)
195/* add other arches which benefit from this... */
196typedef signed char smallint;
197typedef unsigned char smalluint;
198#else
199/* for arches where byte accesses generate larger code: */
200typedef int smallint;
201typedef unsigned smalluint;
202#endif
203
Bernhard Reutner-Fischera8e2e182007-01-20 21:27:18 +0000204/* ISO C Standard: 7.16 Boolean type and values <stdbool.h> */
205#if (defined __digital__ && defined __unix__)
206/* old system without (proper) C99 support */
207#define bool smalluint
208#else
209/* modern system, so use it */
210#include <stdbool.h>
211#endif
212
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000213/* Try to defeat gcc's alignment of "char message[]"-like data */
214#if 1 /* if needed: !defined(arch1) && !defined(arch2) */
215#define ALIGN1 __attribute__((aligned(1)))
216#define ALIGN2 __attribute__((aligned(2)))
217#else
218/* Arches which MUST have 2 or 4 byte alignment for everything are here */
219#define ALIGN1
220#define ALIGN2
221#endif
222
Bernhard Reutner-Fischera8e2e182007-01-20 21:27:18 +0000223
Mike Frysinger88407592006-07-20 19:31:07 +0000224/* uclibc does not implement daemon() for no-mmu systems.
Bernhard Reutner-Fischer507cd752006-05-31 10:04:03 +0000225 * For 0.9.29 and svn, __ARCH_USE_MMU__ indicates no-mmu reliably.
226 * For earlier versions there is no reliable way to check if we are building
Rob Landley1fa4a942006-06-22 22:05:00 +0000227 * for a mmu-less system; the user should pass EXTRA_CFLAGS="-DBB_NOMMU"
Bernhard Reutner-Fischer507cd752006-05-31 10:04:03 +0000228 * on his own.
229 */
230#if defined __UCLIBC__ && __UCLIBC_MAJOR__ >= 0 && __UCLIBC_MINOR__ >= 9 && \
231 __UCLIBC_SUBLEVEL__ > 28 && !defined __ARCH_USE_MMU__
Denis Vlasenko473dae02007-04-11 07:04:23 +0000232#define BB_MMU 0
233#define BB_NOMMU 1
234#define USE_FOR_NOMMU(...) __VA_ARGS__
235#define USE_FOR_MMU(...)
236#else
237#define BB_MMU 1
238/* BB_NOMMU is not defined in this case! */
239#define USE_FOR_NOMMU(...)
240#define USE_FOR_MMU(...) __VA_ARGS__
Bernhard Reutner-Fischer507cd752006-05-31 10:04:03 +0000241#endif
242
Rob Landley18958e92006-06-13 18:28:33 +0000243/* Platforms that haven't got dprintf need to implement fdprintf() in
244 * libbb. This would require a platform.c. It's not going to be cleaned
245 * out of the tree, so stop saying it should be. */
Denis Vlasenko7cfecc42006-12-18 22:32:45 +0000246#if !defined(__dietlibc__)
247/* Needed for: glibc */
248/* Not needed for: dietlibc */
249/* Others: ?? (add as needed) */
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +0000250#define fdprintf dprintf
Denis Vlasenko7cfecc42006-12-18 22:32:45 +0000251#endif
252
253#if defined(__dietlibc__)
Denis Vlasenko3ad5d0c2007-06-12 20:54:54 +0000254static ALWAYS_INLINE char* strchrnul(const char *s, char c)
Denis Vlasenkoac678ec2007-04-16 22:32:04 +0000255{
Denis Vlasenko7cfecc42006-12-18 22:32:45 +0000256 while (*s && *s != c) ++s;
257 return (char*)s;
258}
Denis Vlasenkoc8e6e352006-12-18 22:10:24 +0000259#endif
Rob Landleyc020f5f2006-05-21 18:28:13 +0000260
Denis Vlasenko473dae02007-04-11 07:04:23 +0000261/* Don't use lchown with glibc older than 2.1.x ... uClibc lacks it */
Mike Frysinger88407592006-07-20 19:31:07 +0000262#if (defined __GLIBC__ && __GLIBC__ <= 2 && __GLIBC_MINOR__ < 1) || \
263 defined __UC_LIBC__
264# define lchown chown
265#endif
266
Bernhard Reutner-Fischer4ed1f1d2006-05-26 13:34:25 +0000267/* THIS SHOULD BE CLEANED OUT OF THE TREE ENTIRELY */
268/* FIXME: fix tar.c! */
269#ifndef FNM_LEADING_DIR
270#define FNM_LEADING_DIR 0
271#endif
272
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +0000273#if (defined __digital__ && defined __unix__)
Rob Landley18958e92006-06-13 18:28:33 +0000274#include <standards.h>
275#define HAVE_STANDARDS_H
276#include <inttypes.h>
277#define HAVE_INTTYPES_H
278#define PRIu32 "u"
Rob Landley8fba99f2006-05-27 22:08:01 +0000279
Denis Vlasenko0de3c552007-04-12 12:31:02 +0000280/* use legacy setpgrp(pid_t,pid_t) for now. move to platform.c */
281#define bb_setpgrp() do { pid_t __me = getpid(); setpgrp(__me,__me); } while (0)
Rob Landley18958e92006-06-13 18:28:33 +0000282
Rob Landley8fba99f2006-05-27 22:08:01 +0000283#if !defined ADJ_OFFSET_SINGLESHOT && defined MOD_CLKA && defined MOD_OFFSET
284#define ADJ_OFFSET_SINGLESHOT (MOD_CLKA | MOD_OFFSET)
285#endif
286#if !defined ADJ_FREQUENCY && defined MOD_FREQUENCY
287#define ADJ_FREQUENCY MOD_FREQUENCY
288#endif
289#if !defined ADJ_TIMECONST && defined MOD_TIMECONST
290#define ADJ_TIMECONST MOD_TIMECONST
291#endif
292#if !defined ADJ_TICK && defined MOD_CLKB
293#define ADJ_TICK MOD_CLKB
294#endif
295
Rob Landley18958e92006-06-13 18:28:33 +0000296#else
Denis Vlasenko0de3c552007-04-12 12:31:02 +0000297#define bb_setpgrp() setpgrp()
Rob Landley18958e92006-06-13 18:28:33 +0000298#endif
299
Rob Landley22d26fc2006-06-15 15:49:36 +0000300#if defined(__linux__)
301#include <sys/mount.h>
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000302/* Make sure we have all the new mount flags we actually try to use. */
Rob Landleye3781b72006-08-08 01:39:49 +0000303#ifndef MS_BIND
304#define MS_BIND (1<<12)
305#endif
306#ifndef MS_MOVE
307#define MS_MOVE (1<<13)
308#endif
309#ifndef MS_RECURSIVE
310#define MS_RECURSIVE (1<<14)
311#endif
312#ifndef MS_SILENT
313#define MS_SILENT (1<<15)
314#endif
315
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000316/* The shared subtree stuff, which went in around 2.6.15. */
Rob Landleye3781b72006-08-08 01:39:49 +0000317#ifndef MS_UNBINDABLE
318#define MS_UNBINDABLE (1<<17)
319#endif
320#ifndef MS_PRIVATE
321#define MS_PRIVATE (1<<18)
322#endif
323#ifndef MS_SLAVE
324#define MS_SLAVE (1<<19)
325#endif
326#ifndef MS_SHARED
327#define MS_SHARED (1<<20)
328#endif
329
Denis Vlasenko9213a9e2006-09-17 16:28:10 +0000330
Rob Landley7077ea32006-06-29 19:00:12 +0000331#if !defined(BLKSSZGET)
332#define BLKSSZGET _IO(0x12, 104)
333#endif
Rob Landley22d26fc2006-06-15 15:49:36 +0000334#if !defined(BLKGETSIZE64)
Rob Landley18958e92006-06-13 18:28:33 +0000335#define BLKGETSIZE64 _IOR(0x12,114,size_t)
336#endif
Rob Landley22d26fc2006-06-15 15:49:36 +0000337#endif
Rob Landley18958e92006-06-13 18:28:33 +0000338
Bernhard Reutner-Fischer86f5c992006-01-22 22:55:11 +0000339#endif /* platform.h */