blob: 2b57cd5a2b1f623d5970bad76874cff5879756ec [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/*
Denys Vlasenko0ef64bd2010-08-16 20:14:46 +02003 * Copyright 2006, Bernhard Reutner-Fischer
Denys Vlasenko867ffb92010-08-16 03:24:40 +02004 *
Denys Vlasenko0ef64bd2010-08-16 20:14:46 +02005 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
Denys Vlasenko867ffb92010-08-16 03:24:40 +02006 */
Denys Vlasenkoe4dcba12010-10-28 18:57:19 +02007#ifndef BB_PLATFORM_H
Denis Vlasenkof81e8db2009-04-09 12:35:13 +00008#define BB_PLATFORM_H 1
Bernhard Reutner-Fischer86f5c992006-01-22 22:55:11 +00009
Dan Fandrich21a542d2009-10-27 11:05:00 +010010/* Assume all these functions exist by default. Platforms where it is not
11 * true will #undef them below.
12 */
Chris Reese3c127d2011-01-24 17:03:36 +010013#define HAVE_CLEARENV 1
14#define HAVE_FDATASYNC 1
Denys Vlasenko47061b42011-04-17 23:14:19 +020015#define HAVE_DPRINTF 1
Dan Fandrichfe4e23f2009-11-01 04:01:30 +010016#define HAVE_MEMRCHR 1
17#define HAVE_MKDTEMP 1
Chris Reese3c127d2011-01-24 17:03:36 +010018#define HAVE_PTSNAME_R 1
Dan Fandrichfe4e23f2009-11-01 04:01:30 +010019#define HAVE_SETBIT 1
Chris Rees9ad97d52011-01-20 00:51:52 +010020#define HAVE_SIGHANDLER_T 1
Dan Fandrichdc506762011-02-12 22:26:57 -080021#define HAVE_STPCPY 1
Dan Fandrichfe4e23f2009-11-01 04:01:30 +010022#define HAVE_STRCASESTR 1
Dan Fandrich21a542d2009-10-27 11:05:00 +010023#define HAVE_STRCHRNUL 1
Dan Fandrich0635ddd2010-06-18 22:36:45 -070024#define HAVE_STRSEP 1
Dan Fandrichfe4e23f2009-11-01 04:01:30 +010025#define HAVE_STRSIGNAL 1
Dan Fandrich21a542d2009-10-27 11:05:00 +010026#define HAVE_VASPRINTF 1
27
Bernhard Reutner-Fischer86f5c992006-01-22 22:55:11 +000028/* Convenience macros to test the version of gcc. */
29#undef __GNUC_PREREQ
30#if defined __GNUC__ && defined __GNUC_MINOR__
31# define __GNUC_PREREQ(maj, min) \
Denis Vlasenko9213a9e2006-09-17 16:28:10 +000032 ((__GNUC__ << 16) + __GNUC_MINOR__ >= ((maj) << 16) + (min))
Bernhard Reutner-Fischer86f5c992006-01-22 22:55:11 +000033#else
34# define __GNUC_PREREQ(maj, min) 0
35#endif
36
37/* __restrict is known in EGCS 1.2 and above. */
Denis Vlasenko98636eb2008-05-09 17:59:34 +000038#if !__GNUC_PREREQ(2,92)
Bernhard Reutner-Fischer86f5c992006-01-22 22:55:11 +000039# ifndef __restrict
Denys Vlasenko5a49d282009-05-19 13:18:45 +020040# define __restrict
Bernhard Reutner-Fischer86f5c992006-01-22 22:55:11 +000041# endif
42#endif
43
44/* Define macros for some gcc attributes. This permits us to use the
45 macros freely, and know that they will come into play for the
46 version of gcc in which they are supported. */
47
Denis Vlasenko98636eb2008-05-09 17:59:34 +000048#if !__GNUC_PREREQ(2,7)
Bernhard Reutner-Fischer86f5c992006-01-22 22:55:11 +000049# ifndef __attribute__
50# define __attribute__(x)
51# endif
52#endif
53
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +000054#undef inline
Denis Vlasenkoa7189f02006-11-17 20:29:00 +000055#if defined(__STDC_VERSION__) && __STDC_VERSION__ > 199901L
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +000056/* it's a keyword */
Denys Vlasenko9b1b62a2009-07-05 03:34:12 +020057#elif __GNUC_PREREQ(2,7)
58# define inline __inline__
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +000059#else
Denys Vlasenko9b1b62a2009-07-05 03:34:12 +020060# define inline
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +000061#endif
62
63#ifndef __const
64# define __const const
65#endif
66
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +000067#define UNUSED_PARAM __attribute__ ((__unused__))
68#define NORETURN __attribute__ ((__noreturn__))
Denys Vlasenko53283ad2009-11-02 14:20:34 +010069/* "The malloc attribute is used to tell the compiler that a function
70 * may be treated as if any non-NULL pointer it returns cannot alias
71 * any other pointer valid when the function returns. This will often
72 * improve optimization. Standard functions with this property include
73 * malloc and calloc. realloc-like functions have this property as long
74 * as the old pointer is never referred to (including comparing it
75 * to the new pointer) after the function returns a non-NULL value."
76 */
77#define RETURNS_MALLOC __attribute__ ((malloc))
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +000078#define PACKED __attribute__ ((__packed__))
79#define ALIGNED(m) __attribute__ ((__aligned__(m)))
Denys Vlasenko9b1b62a2009-07-05 03:34:12 +020080
Denis Vlasenko0f3a5802008-03-20 13:13:09 +000081/* __NO_INLINE__: some gcc's do not honor inlining! :( */
Denis Vlasenko98636eb2008-05-09 17:59:34 +000082#if __GNUC_PREREQ(3,0) && !defined(__NO_INLINE__)
83# define ALWAYS_INLINE __attribute__ ((always_inline)) inline
Denis Vlasenko77f1ec12007-10-13 03:36:03 +000084/* I've seen a toolchain where I needed __noinline__ instead of noinline */
Denis Vlasenko98636eb2008-05-09 17:59:34 +000085# define NOINLINE __attribute__((__noinline__))
86# if !ENABLE_WERROR
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +000087# define DEPRECATED __attribute__ ((__deprecated__))
88# define UNUSED_PARAM_RESULT __attribute__ ((warn_unused_result))
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +000089# else
Denys Vlasenko5a49d282009-05-19 13:18:45 +020090# define DEPRECATED
91# define UNUSED_PARAM_RESULT
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +000092# endif
Denis Vlasenko98636eb2008-05-09 17:59:34 +000093#else
Denys Vlasenko5a49d282009-05-19 13:18:45 +020094# define ALWAYS_INLINE inline
95# define NOINLINE
96# define DEPRECATED
97# define UNUSED_PARAM_RESULT
Denis Vlasenko98636eb2008-05-09 17:59:34 +000098#endif
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +000099
Bernhard Reutner-Fischer86f5c992006-01-22 22:55:11 +0000100/* -fwhole-program makes all symbols local. The attribute externally_visible
101 forces a symbol global. */
Denis Vlasenko98636eb2008-05-09 17:59:34 +0000102#if __GNUC_PREREQ(4,1)
103# define EXTERNALLY_VISIBLE __attribute__(( visibility("default") ))
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +0000104//__attribute__ ((__externally_visible__))
Denis Vlasenko98636eb2008-05-09 17:59:34 +0000105#else
106# define EXTERNALLY_VISIBLE
Denis Vlasenko6ebb2f52008-12-03 10:46:12 +0000107#endif
Bernhard Reutner-Fischer86f5c992006-01-22 22:55:11 +0000108
Denys Vlasenko98a4c7c2010-02-04 15:00:15 +0100109/* At 4.4 gcc become much more anal about this, need to use "aliased" types */
110#if __GNUC_PREREQ(4,4)
111# define FIX_ALIASING __attribute__((__may_alias__))
112#else
113# define FIX_ALIASING
114#endif
115
Bernhard Reutner-Fischer86f5c992006-01-22 22:55:11 +0000116/* We use __extension__ in some places to suppress -pedantic warnings
117 about GCC extensions. This feature didn't work properly before
118 gcc 2.8. */
Denis Vlasenko98636eb2008-05-09 17:59:34 +0000119#if !__GNUC_PREREQ(2,8)
Bernhard Reutner-Fischer86f5c992006-01-22 22:55:11 +0000120# ifndef __extension__
121# define __extension__
122# endif
123#endif
124
Bernhard Reutner-Fischerb5f50ea2006-09-12 13:27:55 +0000125/* gcc-2.95 had no va_copy but only __va_copy. */
Denis Vlasenko98636eb2008-05-09 17:59:34 +0000126#if !__GNUC_PREREQ(3,0)
Bernhard Reutner-Fischerb5f50ea2006-09-12 13:27:55 +0000127# include <stdarg.h>
128# if !defined va_copy && defined __va_copy
129# define va_copy(d,s) __va_copy((d),(s))
130# endif
131#endif
132
Denis Vlasenko42b8daf2008-06-27 03:55:18 +0000133/* FAST_FUNC is a qualifier which (possibly) makes function call faster
134 * and/or smaller by using modified ABI. It is usually only needed
135 * on non-static, busybox internal functions. Recent versions of gcc
136 * optimize statics automatically. FAST_FUNC on static is required
137 * only if you need to match a function pointer's type */
Denis Vlasenkoac2b50e2008-06-27 04:30:48 +0000138#if __GNUC_PREREQ(3,0) && defined(i386) /* || defined(__x86_64__)? */
139/* stdcall makes callee to pop arguments from stack, not caller */
140# define FAST_FUNC __attribute__((regparm(3),stdcall))
Denis Vlasenko42b8daf2008-06-27 03:55:18 +0000141/* #elif ... - add your favorite arch today! */
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +0000142#else
143# define FAST_FUNC
144#endif
145
Denis Vlasenkof81e8db2009-04-09 12:35:13 +0000146/* Make all declarations hidden (-fvisibility flag only affects definitions) */
147/* (don't include system headers after this until corresponding pop!) */
148#if __GNUC_PREREQ(4,1)
149# define PUSH_AND_SET_FUNCTION_VISIBILITY_TO_HIDDEN _Pragma("GCC visibility push(hidden)")
150# define POP_SAVED_FUNCTION_VISIBILITY _Pragma("GCC visibility pop")
151#else
152# define PUSH_AND_SET_FUNCTION_VISIBILITY_TO_HIDDEN
153# define POP_SAVED_FUNCTION_VISIBILITY
154#endif
155
Rob Landley5cf7c2d2006-02-21 06:44:43 +0000156/* ---- Endian Detection ------------------------------------ */
Rob Landley5cf7c2d2006-02-21 06:44:43 +0000157
Denys Vlasenko9ff50b82010-10-18 11:40:26 +0200158#include <limits.h>
Denys Vlasenko9b1b62a2009-07-05 03:34:12 +0200159#if defined(__digital__) && defined(__unix__)
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +0000160# include <sex.h>
Denys Vlasenko867ffb92010-08-16 03:24:40 +0200161#elif defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__NetBSD__) \
162 || defined(__APPLE__)
Denys Vlasenkofb132e42010-10-29 11:46:52 +0200163# include <sys/resource.h> /* rlimit */
Denys Vlasenko9b1b62a2009-07-05 03:34:12 +0200164# include <machine/endian.h>
165# define bswap_64 __bswap64
166# define bswap_32 __bswap32
167# define bswap_16 __bswap16
Denys Vlasenko867ffb92010-08-16 03:24:40 +0200168#else
Rob Landley15d20a02006-05-29 05:00:44 +0000169# include <byteswap.h>
170# include <endian.h>
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +0000171#endif
172
Denys Vlasenko867ffb92010-08-16 03:24:40 +0200173#if defined(__BYTE_ORDER) && __BYTE_ORDER == __BIG_ENDIAN
Mike Frysingerf8855132006-03-28 02:35:56 +0000174# define BB_BIG_ENDIAN 1
175# define BB_LITTLE_ENDIAN 0
Denys Vlasenko867ffb92010-08-16 03:24:40 +0200176#elif defined(__BYTE_ORDER) && __BYTE_ORDER == __LITTLE_ENDIAN
177# define BB_BIG_ENDIAN 0
178# define BB_LITTLE_ENDIAN 1
Waldemar Brodkorb95b83ba2010-08-06 09:17:26 +0200179#elif defined(_BYTE_ORDER) && _BYTE_ORDER == _BIG_ENDIAN
180# define BB_BIG_ENDIAN 1
181# define BB_LITTLE_ENDIAN 0
Denys Vlasenko867ffb92010-08-16 03:24:40 +0200182#elif defined(_BYTE_ORDER) && _BYTE_ORDER == _LITTLE_ENDIAN
Mike Frysingerf8855132006-03-28 02:35:56 +0000183# define BB_BIG_ENDIAN 0
184# define BB_LITTLE_ENDIAN 1
Denys Vlasenko867ffb92010-08-16 03:24:40 +0200185#elif defined(BYTE_ORDER) && BYTE_ORDER == BIG_ENDIAN
186# define BB_BIG_ENDIAN 1
187# define BB_LITTLE_ENDIAN 0
188#elif defined(BYTE_ORDER) && BYTE_ORDER == LITTLE_ENDIAN
189# define BB_BIG_ENDIAN 0
190# define BB_LITTLE_ENDIAN 1
191#elif defined(__386__)
Waldemar Brodkorb95b83ba2010-08-06 09:17:26 +0200192# define BB_BIG_ENDIAN 0
193# define BB_LITTLE_ENDIAN 1
Denys Vlasenko9b1b62a2009-07-05 03:34:12 +0200194#else
Dan Fandrich21a542d2009-10-27 11:05:00 +0100195# error "Can't determine endianness"
Rob Landley5cf7c2d2006-02-21 06:44:43 +0000196#endif
197
Denys Vlasenko9ff50b82010-10-18 11:40:26 +0200198#if ULONG_MAX > 0xffffffff
199# define bb_bswap_64(x) bswap_64(x)
200#endif
201
Denis Vlasenko9b0f6e12008-11-01 13:40:32 +0000202/* SWAP_LEnn means "convert CPU<->little_endian by swapping bytes" */
Rob Landleybba7f082006-05-29 05:51:12 +0000203#if BB_BIG_ENDIAN
Denys Vlasenko5a49d282009-05-19 13:18:45 +0200204# define SWAP_BE16(x) (x)
205# define SWAP_BE32(x) (x)
206# define SWAP_BE64(x) (x)
207# define SWAP_LE16(x) bswap_16(x)
208# define SWAP_LE32(x) bswap_32(x)
Denys Vlasenko9ff50b82010-10-18 11:40:26 +0200209# define SWAP_LE64(x) bb_bswap_64(x)
Denys Vlasenkobcccad32010-10-16 20:46:35 +0200210# define IF_BIG_ENDIAN(...) __VA_ARGS__
211# define IF_LITTLE_ENDIAN(...)
Rob Landleybba7f082006-05-29 05:51:12 +0000212#else
Denys Vlasenko5a49d282009-05-19 13:18:45 +0200213# define SWAP_BE16(x) bswap_16(x)
214# define SWAP_BE32(x) bswap_32(x)
Denys Vlasenko9ff50b82010-10-18 11:40:26 +0200215# define SWAP_BE64(x) bb_bswap_64(x)
Denys Vlasenko5a49d282009-05-19 13:18:45 +0200216# define SWAP_LE16(x) (x)
217# define SWAP_LE32(x) (x)
218# define SWAP_LE64(x) (x)
Denys Vlasenkobcccad32010-10-16 20:46:35 +0200219# define IF_BIG_ENDIAN(...)
220# define IF_LITTLE_ENDIAN(...) __VA_ARGS__
Rob Landleybba7f082006-05-29 05:51:12 +0000221#endif
222
Denis Vlasenkofc9e1082008-05-26 17:32:35 +0000223/* ---- Unaligned access ------------------------------------ */
224
Denys Vlasenko1f4a9872011-01-22 17:31:35 +0100225#include <stdint.h>
Denys Vlasenkob40da222011-01-21 01:16:09 +0100226typedef int bb__aliased_int FIX_ALIASING;
227typedef uint16_t bb__aliased_uint16_t FIX_ALIASING;
228typedef uint32_t bb__aliased_uint32_t FIX_ALIASING;
229
Denis Vlasenkoefb545b2008-12-08 22:56:18 +0000230/* NB: unaligned parameter should be a pointer, aligned one -
231 * a lvalue. This makes it more likely to not swap them by mistake
232 */
Joakim Tjernlund80f42752010-02-11 08:48:15 +0100233#if defined(i386) || defined(__x86_64__) || defined(__powerpc__)
Denys Vlasenko12ca0802010-02-04 18:41:18 +0100234# define move_from_unaligned_int(v, intp) ((v) = *(bb__aliased_int*)(intp))
235# define move_from_unaligned16(v, u16p) ((v) = *(bb__aliased_uint16_t*)(u16p))
236# define move_from_unaligned32(v, u32p) ((v) = *(bb__aliased_uint32_t*)(u32p))
Denys Vlasenko5fb38492010-02-06 22:48:10 +0100237# define move_to_unaligned16(u16p, v) (*(bb__aliased_uint16_t*)(u16p) = (v))
Denys Vlasenko12ca0802010-02-04 18:41:18 +0100238# define move_to_unaligned32(u32p, v) (*(bb__aliased_uint32_t*)(u32p) = (v))
Denis Vlasenko42b8daf2008-06-27 03:55:18 +0000239/* #elif ... - add your favorite arch today! */
Denis Vlasenkofc9e1082008-05-26 17:32:35 +0000240#else
241/* performs reasonably well (gcc usually inlines memcpy here) */
Denys Vlasenko57be1ee2009-11-26 15:26:31 +0100242# define move_from_unaligned_int(v, intp) (memcpy(&(v), (intp), sizeof(int)))
Denys Vlasenko5a49d282009-05-19 13:18:45 +0200243# define move_from_unaligned16(v, u16p) (memcpy(&(v), (u16p), 2))
244# define move_from_unaligned32(v, u32p) (memcpy(&(v), (u32p), 4))
Denys Vlasenko5fb38492010-02-06 22:48:10 +0100245# define move_to_unaligned16(u16p, v) do { \
246 uint16_t __t = (v); \
247 memcpy((u16p), &__t, 4); \
248} while (0)
Denys Vlasenko5a49d282009-05-19 13:18:45 +0200249# define move_to_unaligned32(u32p, v) do { \
Denis Vlasenko3be23082009-04-17 22:20:44 +0000250 uint32_t __t = (v); \
251 memcpy((u32p), &__t, 4); \
252} while (0)
Denis Vlasenkofc9e1082008-05-26 17:32:35 +0000253#endif
254
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +0000255/* ---- Compiler dependent settings ------------------------- */
Denis Vlasenkofc9e1082008-05-26 17:32:35 +0000256
Denys Vlasenko9b1b62a2009-07-05 03:34:12 +0200257#if (defined __digital__ && defined __unix__) \
Denys Vlasenko867ffb92010-08-16 03:24:40 +0200258 || defined __APPLE__ \
259 || defined __FreeBSD__ || defined __OpenBSD__ || defined __NetBSD__
Chris Reese3c127d2011-01-24 17:03:36 +0100260# undef HAVE_CLEARENV
261# undef HAVE_FDATASYNC
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +0000262# undef HAVE_MNTENT_H
Chris Reese3c127d2011-01-24 17:03:36 +0100263# undef HAVE_PTSNAME_R
Mike Frysinger9412ec72008-02-07 22:41:33 +0000264# undef HAVE_SYS_STATFS_H
Chris Rees9ad97d52011-01-20 00:51:52 +0100265# undef HAVE_SIGHANDLER_T
Chris Rees330718e2011-01-24 17:07:06 +0100266# undef HAVE_XTABS
Denys Vlasenko47061b42011-04-17 23:14:19 +0200267# undef HAVE_DPRINTF
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +0000268#else
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +0000269# define HAVE_MNTENT_H 1
Mike Frysinger9412ec72008-02-07 22:41:33 +0000270# define HAVE_SYS_STATFS_H 1
Chris Rees330718e2011-01-24 17:07:06 +0100271# define HAVE_XTABS 1
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +0000272#endif
Bernhard Reutner-Fischerbe862092007-03-19 15:15:06 +0000273
Bernhard Reutner-Fischere2e56c72006-05-19 11:54:02 +0000274/*----- Kernel versioning ------------------------------------*/
Denis Vlasenkofc9e1082008-05-26 17:32:35 +0000275
Bernhard Reutner-Fischere2e56c72006-05-19 11:54:02 +0000276#define KERNEL_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c))
Bernhard Reutner-Fischere2e56c72006-05-19 11:54:02 +0000277
Denis Vlasenkofc9e1082008-05-26 17:32:35 +0000278/* ---- Miscellaneous --------------------------------------- */
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +0000279
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +0000280#if defined __GLIBC__ || defined __UCLIBC__ \
Denys Vlasenko9b1b62a2009-07-05 03:34:12 +0200281 || defined __dietlibc__ || defined _NEWLIB_VERSION
Denys Vlasenko5a49d282009-05-19 13:18:45 +0200282# include <features.h>
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +0000283#endif
284
Bernhard Reutner-Fischerc966ba42007-01-18 10:32:09 +0000285/* Size-saving "small" ints (arch-dependent) */
286#if defined(i386) || defined(__x86_64__) || defined(__mips__) || defined(__cris__)
287/* add other arches which benefit from this... */
288typedef signed char smallint;
289typedef unsigned char smalluint;
290#else
291/* for arches where byte accesses generate larger code: */
292typedef int smallint;
293typedef unsigned smalluint;
294#endif
295
Bernhard Reutner-Fischera8e2e182007-01-20 21:27:18 +0000296/* ISO C Standard: 7.16 Boolean type and values <stdbool.h> */
297#if (defined __digital__ && defined __unix__)
298/* old system without (proper) C99 support */
Denys Vlasenko5a49d282009-05-19 13:18:45 +0200299# define bool smalluint
Bernhard Reutner-Fischera8e2e182007-01-20 21:27:18 +0000300#else
301/* modern system, so use it */
Denys Vlasenko5a49d282009-05-19 13:18:45 +0200302# include <stdbool.h>
Bernhard Reutner-Fischera8e2e182007-01-20 21:27:18 +0000303#endif
304
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000305/* Try to defeat gcc's alignment of "char message[]"-like data */
306#if 1 /* if needed: !defined(arch1) && !defined(arch2) */
Denys Vlasenko5a49d282009-05-19 13:18:45 +0200307# define ALIGN1 __attribute__((aligned(1)))
308# define ALIGN2 __attribute__((aligned(2)))
Denys Vlasenko0ecc1162010-04-14 10:14:25 -0700309# define ALIGN4 __attribute__((aligned(4)))
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000310#else
311/* Arches which MUST have 2 or 4 byte alignment for everything are here */
Denys Vlasenko5a49d282009-05-19 13:18:45 +0200312# define ALIGN1
313# define ALIGN2
Denys Vlasenko0ecc1162010-04-14 10:14:25 -0700314# define ALIGN4
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000315#endif
316
Bernhard Reutner-Fischera8e2e182007-01-20 21:27:18 +0000317
Mike Frysinger88407592006-07-20 19:31:07 +0000318/* uclibc does not implement daemon() for no-mmu systems.
Bernhard Reutner-Fischer507cd752006-05-31 10:04:03 +0000319 * For 0.9.29 and svn, __ARCH_USE_MMU__ indicates no-mmu reliably.
320 * For earlier versions there is no reliable way to check if we are building
Denis Vlasenko9e589212008-01-24 01:33:42 +0000321 * for a mmu-less system.
Bernhard Reutner-Fischer507cd752006-05-31 10:04:03 +0000322 */
Denis Vlasenkod2c450c2008-01-08 20:32:12 +0000323#if ENABLE_NOMMU || \
324 (defined __UCLIBC__ && __UCLIBC_MAJOR__ >= 0 && __UCLIBC_MINOR__ >= 9 && \
325 __UCLIBC_SUBLEVEL__ > 28 && !defined __ARCH_USE_MMU__)
Denys Vlasenko5a49d282009-05-19 13:18:45 +0200326# define BB_MMU 0
327# define USE_FOR_NOMMU(...) __VA_ARGS__
328# define USE_FOR_MMU(...)
Denis Vlasenko473dae02007-04-11 07:04:23 +0000329#else
Denys Vlasenko5a49d282009-05-19 13:18:45 +0200330# define BB_MMU 1
331# define USE_FOR_NOMMU(...)
332# define USE_FOR_MMU(...) __VA_ARGS__
Bernhard Reutner-Fischer507cd752006-05-31 10:04:03 +0000333#endif
334
Denys Vlasenko9b1b62a2009-07-05 03:34:12 +0200335#if defined(__digital__) && defined(__unix__)
Rob Landley8fba99f2006-05-27 22:08:01 +0000336
Denis Vlasenko6ebb2f52008-12-03 10:46:12 +0000337# include <standards.h>
Denis Vlasenko6ebb2f52008-12-03 10:46:12 +0000338# include <inttypes.h>
Denis Vlasenko6ebb2f52008-12-03 10:46:12 +0000339# define PRIu32 "u"
Denis Vlasenko0de3c552007-04-12 12:31:02 +0000340/* use legacy setpgrp(pid_t,pid_t) for now. move to platform.c */
Denys Vlasenko245a4f82009-11-07 01:31:14 +0100341# define bb_setpgrp() do { pid_t __me = getpid(); setpgrp(__me, __me); } while (0)
Denis Vlasenko6ebb2f52008-12-03 10:46:12 +0000342# if !defined ADJ_OFFSET_SINGLESHOT && defined MOD_CLKA && defined MOD_OFFSET
343# define ADJ_OFFSET_SINGLESHOT (MOD_CLKA | MOD_OFFSET)
344# endif
345# if !defined ADJ_FREQUENCY && defined MOD_FREQUENCY
346# define ADJ_FREQUENCY MOD_FREQUENCY
347# endif
348# if !defined ADJ_TIMECONST && defined MOD_TIMECONST
349# define ADJ_TIMECONST MOD_TIMECONST
350# endif
351# if !defined ADJ_TICK && defined MOD_CLKB
352# define ADJ_TICK MOD_CLKB
353# endif
Rob Landley8fba99f2006-05-27 22:08:01 +0000354
Dan Fandrichdc506762011-02-12 22:26:57 -0800355# undef HAVE_STPCPY
356
Denys Vlasenko9b1b62a2009-07-05 03:34:12 +0200357#else
Denis Vlasenko6ebb2f52008-12-03 10:46:12 +0000358
359# define bb_setpgrp() setpgrp()
360
Rob Landley18958e92006-06-13 18:28:33 +0000361#endif
362
Denys Vlasenko698e8092011-02-08 05:35:04 +0100363#include <unistd.h>
Denys Vlasenko47061b42011-04-17 23:14:19 +0200364#define fdprintf dprintf
Dan Fandrich21a542d2009-10-27 11:05:00 +0100365
366#if defined(__dietlibc__)
Dan Fandrichfe4e23f2009-11-01 04:01:30 +0100367# undef HAVE_STRCHRNUL
Dan Fandrich21a542d2009-10-27 11:05:00 +0100368#endif
369
370#if defined(__WATCOMC__)
Denys Vlasenko47061b42011-04-17 23:14:19 +0200371# undef HAVE_DPRINTF
Dan Fandrichfe4e23f2009-11-01 04:01:30 +0100372# undef HAVE_MEMRCHR
373# undef HAVE_MKDTEMP
374# undef HAVE_SETBIT
Dan Fandrichdc506762011-02-12 22:26:57 -0800375# undef HAVE_STPCPY
Dan Fandrichfe4e23f2009-11-01 04:01:30 +0100376# undef HAVE_STRCASESTR
377# undef HAVE_STRCHRNUL
Dan Fandrich0635ddd2010-06-18 22:36:45 -0700378# undef HAVE_STRSEP
Dan Fandrichfe4e23f2009-11-01 04:01:30 +0100379# undef HAVE_STRSIGNAL
380# undef HAVE_VASPRINTF
Dan Fandrich21a542d2009-10-27 11:05:00 +0100381#endif
382
383#if defined(__FreeBSD__)
Dan Fandrichfe4e23f2009-11-01 04:01:30 +0100384# undef HAVE_STRCHRNUL
Dan Fandrich21a542d2009-10-27 11:05:00 +0100385#endif
386
387/*
388 * Now, define prototypes for all the functions defined in platform.c
389 * These must come after all the HAVE_* macros are defined (or not)
390 */
391
Denys Vlasenko47061b42011-04-17 23:14:19 +0200392#ifndef HAVE_DPRINTF
393extern int dprintf(int fd, const char *format, ...);
Dan Fandrichfe4e23f2009-11-01 04:01:30 +0100394#endif
395
396#ifndef HAVE_MEMRCHR
397extern void *memrchr(const void *s, int c, size_t n) FAST_FUNC;
398#endif
399
400#ifndef HAVE_MKDTEMP
401extern char *mkdtemp(char *template) FAST_FUNC;
402#endif
403
404#ifndef HAVE_SETBIT
405# define setbit(a, b) ((a)[(b) >> 3] |= 1 << ((b) & 7))
406# define clrbit(a, b) ((a)[(b) >> 3] &= ~(1 << ((b) & 7)))
407#endif
408
Chris Rees9ad97d52011-01-20 00:51:52 +0100409#ifndef HAVE_SIGHANDLER_T
410typedef void (*sighandler_t)(int);
411#endif
412
Dan Fandrichdc506762011-02-12 22:26:57 -0800413#ifndef HAVE_STPCPY
414extern char *stpcpy(char *p, const char *to_add) FAST_FUNC;
415#endif
416
Dan Fandrichfe4e23f2009-11-01 04:01:30 +0100417#ifndef HAVE_STRCASESTR
418extern char *strcasestr(const char *s, const char *pattern) FAST_FUNC;
419#endif
420
Dan Fandrich21a542d2009-10-27 11:05:00 +0100421#ifndef HAVE_STRCHRNUL
422extern char *strchrnul(const char *s, int c) FAST_FUNC;
423#endif
424
Dan Fandrich0635ddd2010-06-18 22:36:45 -0700425#ifndef HAVE_STRSEP
426extern char *strsep(char **stringp, const char *delim) FAST_FUNC;
427#endif
428
Dan Fandrichfe4e23f2009-11-01 04:01:30 +0100429#ifndef HAVE_STRSIGNAL
430/* Not exactly the same: instead of "Stopped" it shows "STOP" etc */
431# define strsignal(sig) get_signame(sig)
Dan Fandrich21a542d2009-10-27 11:05:00 +0100432#endif
433
Dan Fandrichfe4e23f2009-11-01 04:01:30 +0100434#ifndef HAVE_VASPRINTF
435extern int vasprintf(char **string_ptr, const char *format, va_list p) FAST_FUNC;
Dan Fandrich21a542d2009-10-27 11:05:00 +0100436#endif
Denys Vlasenko5a49d282009-05-19 13:18:45 +0200437
Denis Vlasenkof81e8db2009-04-09 12:35:13 +0000438#endif