Bernhard Reutner-Fischer | b1629b1 | 2006-05-19 19:29:19 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
Bernhard Reutner-Fischer | 86f5c99 | 2006-01-22 22:55:11 +0000 | [diff] [blame] | 2 | /* |
Denys Vlasenko | 0ef64bd | 2010-08-16 20:14:46 +0200 | [diff] [blame] | 3 | * Copyright 2006, Bernhard Reutner-Fischer |
Denys Vlasenko | 867ffb9 | 2010-08-16 03:24:40 +0200 | [diff] [blame] | 4 | * |
Denys Vlasenko | 0ef64bd | 2010-08-16 20:14:46 +0200 | [diff] [blame] | 5 | * Licensed under GPLv2 or later, see file LICENSE in this source tree. |
Denys Vlasenko | 867ffb9 | 2010-08-16 03:24:40 +0200 | [diff] [blame] | 6 | */ |
Denys Vlasenko | e4dcba1 | 2010-10-28 18:57:19 +0200 | [diff] [blame] | 7 | #ifndef BB_PLATFORM_H |
Denis Vlasenko | f81e8db | 2009-04-09 12:35:13 +0000 | [diff] [blame] | 8 | #define BB_PLATFORM_H 1 |
Bernhard Reutner-Fischer | 86f5c99 | 2006-01-22 22:55:11 +0000 | [diff] [blame] | 9 | |
Dan Fandrich | 21a542d | 2009-10-27 11:05:00 +0100 | [diff] [blame] | 10 | /* Assume all these functions exist by default. Platforms where it is not |
| 11 | * true will #undef them below. |
| 12 | */ |
Chris Rees | e3c127d | 2011-01-24 17:03:36 +0100 | [diff] [blame] | 13 | #define HAVE_CLEARENV 1 |
| 14 | #define HAVE_FDATASYNC 1 |
Dan Fandrich | 21a542d | 2009-10-27 11:05:00 +0100 | [diff] [blame] | 15 | #define HAVE_FDPRINTF 1 |
Dan Fandrich | fe4e23f | 2009-11-01 04:01:30 +0100 | [diff] [blame] | 16 | #define HAVE_MEMRCHR 1 |
| 17 | #define HAVE_MKDTEMP 1 |
Chris Rees | e3c127d | 2011-01-24 17:03:36 +0100 | [diff] [blame] | 18 | #define HAVE_PTSNAME_R 1 |
Dan Fandrich | fe4e23f | 2009-11-01 04:01:30 +0100 | [diff] [blame] | 19 | #define HAVE_SETBIT 1 |
Chris Rees | 9ad97d5 | 2011-01-20 00:51:52 +0100 | [diff] [blame] | 20 | #define HAVE_SIGHANDLER_T 1 |
Dan Fandrich | fe4e23f | 2009-11-01 04:01:30 +0100 | [diff] [blame] | 21 | #define HAVE_STRCASESTR 1 |
Dan Fandrich | 21a542d | 2009-10-27 11:05:00 +0100 | [diff] [blame] | 22 | #define HAVE_STRCHRNUL 1 |
Dan Fandrich | 0635ddd | 2010-06-18 22:36:45 -0700 | [diff] [blame] | 23 | #define HAVE_STRSEP 1 |
Dan Fandrich | fe4e23f | 2009-11-01 04:01:30 +0100 | [diff] [blame] | 24 | #define HAVE_STRSIGNAL 1 |
Dan Fandrich | 21a542d | 2009-10-27 11:05:00 +0100 | [diff] [blame] | 25 | #define HAVE_VASPRINTF 1 |
| 26 | |
Bernhard Reutner-Fischer | 86f5c99 | 2006-01-22 22:55:11 +0000 | [diff] [blame] | 27 | /* Convenience macros to test the version of gcc. */ |
| 28 | #undef __GNUC_PREREQ |
| 29 | #if defined __GNUC__ && defined __GNUC_MINOR__ |
| 30 | # define __GNUC_PREREQ(maj, min) \ |
Denis Vlasenko | 9213a9e | 2006-09-17 16:28:10 +0000 | [diff] [blame] | 31 | ((__GNUC__ << 16) + __GNUC_MINOR__ >= ((maj) << 16) + (min)) |
Bernhard Reutner-Fischer | 86f5c99 | 2006-01-22 22:55:11 +0000 | [diff] [blame] | 32 | #else |
| 33 | # define __GNUC_PREREQ(maj, min) 0 |
| 34 | #endif |
| 35 | |
| 36 | /* __restrict is known in EGCS 1.2 and above. */ |
Denis Vlasenko | 98636eb | 2008-05-09 17:59:34 +0000 | [diff] [blame] | 37 | #if !__GNUC_PREREQ(2,92) |
Bernhard Reutner-Fischer | 86f5c99 | 2006-01-22 22:55:11 +0000 | [diff] [blame] | 38 | # ifndef __restrict |
Denys Vlasenko | 5a49d28 | 2009-05-19 13:18:45 +0200 | [diff] [blame] | 39 | # define __restrict |
Bernhard Reutner-Fischer | 86f5c99 | 2006-01-22 22:55:11 +0000 | [diff] [blame] | 40 | # endif |
| 41 | #endif |
| 42 | |
| 43 | /* Define macros for some gcc attributes. This permits us to use the |
| 44 | macros freely, and know that they will come into play for the |
| 45 | version of gcc in which they are supported. */ |
| 46 | |
Denis Vlasenko | 98636eb | 2008-05-09 17:59:34 +0000 | [diff] [blame] | 47 | #if !__GNUC_PREREQ(2,7) |
Bernhard Reutner-Fischer | 86f5c99 | 2006-01-22 22:55:11 +0000 | [diff] [blame] | 48 | # ifndef __attribute__ |
| 49 | # define __attribute__(x) |
| 50 | # endif |
| 51 | #endif |
| 52 | |
Bernhard Reutner-Fischer | e00fc16 | 2006-05-26 13:10:10 +0000 | [diff] [blame] | 53 | #undef inline |
Denis Vlasenko | a7189f0 | 2006-11-17 20:29:00 +0000 | [diff] [blame] | 54 | #if defined(__STDC_VERSION__) && __STDC_VERSION__ > 199901L |
Bernhard Reutner-Fischer | e00fc16 | 2006-05-26 13:10:10 +0000 | [diff] [blame] | 55 | /* it's a keyword */ |
Denys Vlasenko | 9b1b62a | 2009-07-05 03:34:12 +0200 | [diff] [blame] | 56 | #elif __GNUC_PREREQ(2,7) |
| 57 | # define inline __inline__ |
Bernhard Reutner-Fischer | e00fc16 | 2006-05-26 13:10:10 +0000 | [diff] [blame] | 58 | #else |
Denys Vlasenko | 9b1b62a | 2009-07-05 03:34:12 +0200 | [diff] [blame] | 59 | # define inline |
Bernhard Reutner-Fischer | e00fc16 | 2006-05-26 13:10:10 +0000 | [diff] [blame] | 60 | #endif |
| 61 | |
| 62 | #ifndef __const |
| 63 | # define __const const |
| 64 | #endif |
| 65 | |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 66 | #define UNUSED_PARAM __attribute__ ((__unused__)) |
| 67 | #define NORETURN __attribute__ ((__noreturn__)) |
Denys Vlasenko | 53283ad | 2009-11-02 14:20:34 +0100 | [diff] [blame] | 68 | /* "The malloc attribute is used to tell the compiler that a function |
| 69 | * may be treated as if any non-NULL pointer it returns cannot alias |
| 70 | * any other pointer valid when the function returns. This will often |
| 71 | * improve optimization. Standard functions with this property include |
| 72 | * malloc and calloc. realloc-like functions have this property as long |
| 73 | * as the old pointer is never referred to (including comparing it |
| 74 | * to the new pointer) after the function returns a non-NULL value." |
| 75 | */ |
| 76 | #define RETURNS_MALLOC __attribute__ ((malloc)) |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 77 | #define PACKED __attribute__ ((__packed__)) |
| 78 | #define ALIGNED(m) __attribute__ ((__aligned__(m))) |
Denys Vlasenko | 9b1b62a | 2009-07-05 03:34:12 +0200 | [diff] [blame] | 79 | |
Denis Vlasenko | 0f3a580 | 2008-03-20 13:13:09 +0000 | [diff] [blame] | 80 | /* __NO_INLINE__: some gcc's do not honor inlining! :( */ |
Denis Vlasenko | 98636eb | 2008-05-09 17:59:34 +0000 | [diff] [blame] | 81 | #if __GNUC_PREREQ(3,0) && !defined(__NO_INLINE__) |
| 82 | # define ALWAYS_INLINE __attribute__ ((always_inline)) inline |
Denis Vlasenko | 77f1ec1 | 2007-10-13 03:36:03 +0000 | [diff] [blame] | 83 | /* I've seen a toolchain where I needed __noinline__ instead of noinline */ |
Denis Vlasenko | 98636eb | 2008-05-09 17:59:34 +0000 | [diff] [blame] | 84 | # define NOINLINE __attribute__((__noinline__)) |
| 85 | # if !ENABLE_WERROR |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 86 | # define DEPRECATED __attribute__ ((__deprecated__)) |
| 87 | # define UNUSED_PARAM_RESULT __attribute__ ((warn_unused_result)) |
Bernhard Reutner-Fischer | e00fc16 | 2006-05-26 13:10:10 +0000 | [diff] [blame] | 88 | # else |
Denys Vlasenko | 5a49d28 | 2009-05-19 13:18:45 +0200 | [diff] [blame] | 89 | # define DEPRECATED |
| 90 | # define UNUSED_PARAM_RESULT |
Bernhard Reutner-Fischer | e00fc16 | 2006-05-26 13:10:10 +0000 | [diff] [blame] | 91 | # endif |
Denis Vlasenko | 98636eb | 2008-05-09 17:59:34 +0000 | [diff] [blame] | 92 | #else |
Denys Vlasenko | 5a49d28 | 2009-05-19 13:18:45 +0200 | [diff] [blame] | 93 | # define ALWAYS_INLINE inline |
| 94 | # define NOINLINE |
| 95 | # define DEPRECATED |
| 96 | # define UNUSED_PARAM_RESULT |
Denis Vlasenko | 98636eb | 2008-05-09 17:59:34 +0000 | [diff] [blame] | 97 | #endif |
Bernhard Reutner-Fischer | e00fc16 | 2006-05-26 13:10:10 +0000 | [diff] [blame] | 98 | |
Bernhard Reutner-Fischer | 86f5c99 | 2006-01-22 22:55:11 +0000 | [diff] [blame] | 99 | /* -fwhole-program makes all symbols local. The attribute externally_visible |
| 100 | forces a symbol global. */ |
Denis Vlasenko | 98636eb | 2008-05-09 17:59:34 +0000 | [diff] [blame] | 101 | #if __GNUC_PREREQ(4,1) |
| 102 | # define EXTERNALLY_VISIBLE __attribute__(( visibility("default") )) |
Denis Vlasenko | 9b49a5e | 2007-10-11 10:05:36 +0000 | [diff] [blame] | 103 | //__attribute__ ((__externally_visible__)) |
Denis Vlasenko | 98636eb | 2008-05-09 17:59:34 +0000 | [diff] [blame] | 104 | #else |
| 105 | # define EXTERNALLY_VISIBLE |
Denis Vlasenko | 6ebb2f5 | 2008-12-03 10:46:12 +0000 | [diff] [blame] | 106 | #endif |
Bernhard Reutner-Fischer | 86f5c99 | 2006-01-22 22:55:11 +0000 | [diff] [blame] | 107 | |
Denys Vlasenko | 98a4c7c | 2010-02-04 15:00:15 +0100 | [diff] [blame] | 108 | /* At 4.4 gcc become much more anal about this, need to use "aliased" types */ |
| 109 | #if __GNUC_PREREQ(4,4) |
| 110 | # define FIX_ALIASING __attribute__((__may_alias__)) |
| 111 | #else |
| 112 | # define FIX_ALIASING |
| 113 | #endif |
| 114 | |
Bernhard Reutner-Fischer | 86f5c99 | 2006-01-22 22:55:11 +0000 | [diff] [blame] | 115 | /* We use __extension__ in some places to suppress -pedantic warnings |
| 116 | about GCC extensions. This feature didn't work properly before |
| 117 | gcc 2.8. */ |
Denis Vlasenko | 98636eb | 2008-05-09 17:59:34 +0000 | [diff] [blame] | 118 | #if !__GNUC_PREREQ(2,8) |
Bernhard Reutner-Fischer | 86f5c99 | 2006-01-22 22:55:11 +0000 | [diff] [blame] | 119 | # ifndef __extension__ |
| 120 | # define __extension__ |
| 121 | # endif |
| 122 | #endif |
| 123 | |
Bernhard Reutner-Fischer | b5f50ea | 2006-09-12 13:27:55 +0000 | [diff] [blame] | 124 | /* gcc-2.95 had no va_copy but only __va_copy. */ |
Denis Vlasenko | 98636eb | 2008-05-09 17:59:34 +0000 | [diff] [blame] | 125 | #if !__GNUC_PREREQ(3,0) |
Bernhard Reutner-Fischer | b5f50ea | 2006-09-12 13:27:55 +0000 | [diff] [blame] | 126 | # include <stdarg.h> |
| 127 | # if !defined va_copy && defined __va_copy |
| 128 | # define va_copy(d,s) __va_copy((d),(s)) |
| 129 | # endif |
| 130 | #endif |
| 131 | |
Denis Vlasenko | 42b8daf | 2008-06-27 03:55:18 +0000 | [diff] [blame] | 132 | /* FAST_FUNC is a qualifier which (possibly) makes function call faster |
| 133 | * and/or smaller by using modified ABI. It is usually only needed |
| 134 | * on non-static, busybox internal functions. Recent versions of gcc |
| 135 | * optimize statics automatically. FAST_FUNC on static is required |
| 136 | * only if you need to match a function pointer's type */ |
Denis Vlasenko | ac2b50e | 2008-06-27 04:30:48 +0000 | [diff] [blame] | 137 | #if __GNUC_PREREQ(3,0) && defined(i386) /* || defined(__x86_64__)? */ |
| 138 | /* stdcall makes callee to pop arguments from stack, not caller */ |
| 139 | # define FAST_FUNC __attribute__((regparm(3),stdcall)) |
Denis Vlasenko | 42b8daf | 2008-06-27 03:55:18 +0000 | [diff] [blame] | 140 | /* #elif ... - add your favorite arch today! */ |
Denis Vlasenko | defc1ea | 2008-06-27 02:52:20 +0000 | [diff] [blame] | 141 | #else |
| 142 | # define FAST_FUNC |
| 143 | #endif |
| 144 | |
Denis Vlasenko | f81e8db | 2009-04-09 12:35:13 +0000 | [diff] [blame] | 145 | /* Make all declarations hidden (-fvisibility flag only affects definitions) */ |
| 146 | /* (don't include system headers after this until corresponding pop!) */ |
| 147 | #if __GNUC_PREREQ(4,1) |
| 148 | # define PUSH_AND_SET_FUNCTION_VISIBILITY_TO_HIDDEN _Pragma("GCC visibility push(hidden)") |
| 149 | # define POP_SAVED_FUNCTION_VISIBILITY _Pragma("GCC visibility pop") |
| 150 | #else |
| 151 | # define PUSH_AND_SET_FUNCTION_VISIBILITY_TO_HIDDEN |
| 152 | # define POP_SAVED_FUNCTION_VISIBILITY |
| 153 | #endif |
| 154 | |
Rob Landley | 5cf7c2d | 2006-02-21 06:44:43 +0000 | [diff] [blame] | 155 | /* ---- Endian Detection ------------------------------------ */ |
Rob Landley | 5cf7c2d | 2006-02-21 06:44:43 +0000 | [diff] [blame] | 156 | |
Denys Vlasenko | 9ff50b8 | 2010-10-18 11:40:26 +0200 | [diff] [blame] | 157 | #include <limits.h> |
Denys Vlasenko | 9b1b62a | 2009-07-05 03:34:12 +0200 | [diff] [blame] | 158 | #if defined(__digital__) && defined(__unix__) |
Bernhard Reutner-Fischer | e00fc16 | 2006-05-26 13:10:10 +0000 | [diff] [blame] | 159 | # include <sex.h> |
Denys Vlasenko | 867ffb9 | 2010-08-16 03:24:40 +0200 | [diff] [blame] | 160 | #elif defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__NetBSD__) \ |
| 161 | || defined(__APPLE__) |
Denys Vlasenko | fb132e4 | 2010-10-29 11:46:52 +0200 | [diff] [blame] | 162 | # include <sys/resource.h> /* rlimit */ |
Denys Vlasenko | 9b1b62a | 2009-07-05 03:34:12 +0200 | [diff] [blame] | 163 | # include <machine/endian.h> |
| 164 | # define bswap_64 __bswap64 |
| 165 | # define bswap_32 __bswap32 |
| 166 | # define bswap_16 __bswap16 |
Denys Vlasenko | 867ffb9 | 2010-08-16 03:24:40 +0200 | [diff] [blame] | 167 | #else |
Rob Landley | 15d20a0 | 2006-05-29 05:00:44 +0000 | [diff] [blame] | 168 | # include <byteswap.h> |
| 169 | # include <endian.h> |
Bernhard Reutner-Fischer | e00fc16 | 2006-05-26 13:10:10 +0000 | [diff] [blame] | 170 | #endif |
| 171 | |
Denys Vlasenko | 867ffb9 | 2010-08-16 03:24:40 +0200 | [diff] [blame] | 172 | #if defined(__BYTE_ORDER) && __BYTE_ORDER == __BIG_ENDIAN |
Mike Frysinger | f885513 | 2006-03-28 02:35:56 +0000 | [diff] [blame] | 173 | # define BB_BIG_ENDIAN 1 |
| 174 | # define BB_LITTLE_ENDIAN 0 |
Denys Vlasenko | 867ffb9 | 2010-08-16 03:24:40 +0200 | [diff] [blame] | 175 | #elif defined(__BYTE_ORDER) && __BYTE_ORDER == __LITTLE_ENDIAN |
| 176 | # define BB_BIG_ENDIAN 0 |
| 177 | # define BB_LITTLE_ENDIAN 1 |
Waldemar Brodkorb | 95b83ba | 2010-08-06 09:17:26 +0200 | [diff] [blame] | 178 | #elif defined(_BYTE_ORDER) && _BYTE_ORDER == _BIG_ENDIAN |
| 179 | # define BB_BIG_ENDIAN 1 |
| 180 | # define BB_LITTLE_ENDIAN 0 |
Denys Vlasenko | 867ffb9 | 2010-08-16 03:24:40 +0200 | [diff] [blame] | 181 | #elif defined(_BYTE_ORDER) && _BYTE_ORDER == _LITTLE_ENDIAN |
Mike Frysinger | f885513 | 2006-03-28 02:35:56 +0000 | [diff] [blame] | 182 | # define BB_BIG_ENDIAN 0 |
| 183 | # define BB_LITTLE_ENDIAN 1 |
Denys Vlasenko | 867ffb9 | 2010-08-16 03:24:40 +0200 | [diff] [blame] | 184 | #elif defined(BYTE_ORDER) && BYTE_ORDER == BIG_ENDIAN |
| 185 | # define BB_BIG_ENDIAN 1 |
| 186 | # define BB_LITTLE_ENDIAN 0 |
| 187 | #elif defined(BYTE_ORDER) && BYTE_ORDER == LITTLE_ENDIAN |
| 188 | # define BB_BIG_ENDIAN 0 |
| 189 | # define BB_LITTLE_ENDIAN 1 |
| 190 | #elif defined(__386__) |
Waldemar Brodkorb | 95b83ba | 2010-08-06 09:17:26 +0200 | [diff] [blame] | 191 | # define BB_BIG_ENDIAN 0 |
| 192 | # define BB_LITTLE_ENDIAN 1 |
Denys Vlasenko | 9b1b62a | 2009-07-05 03:34:12 +0200 | [diff] [blame] | 193 | #else |
Dan Fandrich | 21a542d | 2009-10-27 11:05:00 +0100 | [diff] [blame] | 194 | # error "Can't determine endianness" |
Rob Landley | 5cf7c2d | 2006-02-21 06:44:43 +0000 | [diff] [blame] | 195 | #endif |
| 196 | |
Denys Vlasenko | 9ff50b8 | 2010-10-18 11:40:26 +0200 | [diff] [blame] | 197 | #if ULONG_MAX > 0xffffffff |
| 198 | # define bb_bswap_64(x) bswap_64(x) |
| 199 | #endif |
| 200 | |
Denis Vlasenko | 9b0f6e1 | 2008-11-01 13:40:32 +0000 | [diff] [blame] | 201 | /* SWAP_LEnn means "convert CPU<->little_endian by swapping bytes" */ |
Rob Landley | bba7f08 | 2006-05-29 05:51:12 +0000 | [diff] [blame] | 202 | #if BB_BIG_ENDIAN |
Denys Vlasenko | 5a49d28 | 2009-05-19 13:18:45 +0200 | [diff] [blame] | 203 | # define SWAP_BE16(x) (x) |
| 204 | # define SWAP_BE32(x) (x) |
| 205 | # define SWAP_BE64(x) (x) |
| 206 | # define SWAP_LE16(x) bswap_16(x) |
| 207 | # define SWAP_LE32(x) bswap_32(x) |
Denys Vlasenko | 9ff50b8 | 2010-10-18 11:40:26 +0200 | [diff] [blame] | 208 | # define SWAP_LE64(x) bb_bswap_64(x) |
Denys Vlasenko | bcccad3 | 2010-10-16 20:46:35 +0200 | [diff] [blame] | 209 | # define IF_BIG_ENDIAN(...) __VA_ARGS__ |
| 210 | # define IF_LITTLE_ENDIAN(...) |
Rob Landley | bba7f08 | 2006-05-29 05:51:12 +0000 | [diff] [blame] | 211 | #else |
Denys Vlasenko | 5a49d28 | 2009-05-19 13:18:45 +0200 | [diff] [blame] | 212 | # define SWAP_BE16(x) bswap_16(x) |
| 213 | # define SWAP_BE32(x) bswap_32(x) |
Denys Vlasenko | 9ff50b8 | 2010-10-18 11:40:26 +0200 | [diff] [blame] | 214 | # define SWAP_BE64(x) bb_bswap_64(x) |
Denys Vlasenko | 5a49d28 | 2009-05-19 13:18:45 +0200 | [diff] [blame] | 215 | # define SWAP_LE16(x) (x) |
| 216 | # define SWAP_LE32(x) (x) |
| 217 | # define SWAP_LE64(x) (x) |
Denys Vlasenko | bcccad3 | 2010-10-16 20:46:35 +0200 | [diff] [blame] | 218 | # define IF_BIG_ENDIAN(...) |
| 219 | # define IF_LITTLE_ENDIAN(...) __VA_ARGS__ |
Rob Landley | bba7f08 | 2006-05-29 05:51:12 +0000 | [diff] [blame] | 220 | #endif |
| 221 | |
Denis Vlasenko | fc9e108 | 2008-05-26 17:32:35 +0000 | [diff] [blame] | 222 | /* ---- Unaligned access ------------------------------------ */ |
| 223 | |
Denys Vlasenko | 1f4a987 | 2011-01-22 17:31:35 +0100 | [diff] [blame] | 224 | #include <stdint.h> |
Denys Vlasenko | b40da22 | 2011-01-21 01:16:09 +0100 | [diff] [blame] | 225 | typedef int bb__aliased_int FIX_ALIASING; |
| 226 | typedef uint16_t bb__aliased_uint16_t FIX_ALIASING; |
| 227 | typedef uint32_t bb__aliased_uint32_t FIX_ALIASING; |
| 228 | |
Denis Vlasenko | efb545b | 2008-12-08 22:56:18 +0000 | [diff] [blame] | 229 | /* NB: unaligned parameter should be a pointer, aligned one - |
| 230 | * a lvalue. This makes it more likely to not swap them by mistake |
| 231 | */ |
Joakim Tjernlund | 80f4275 | 2010-02-11 08:48:15 +0100 | [diff] [blame] | 232 | #if defined(i386) || defined(__x86_64__) || defined(__powerpc__) |
Denys Vlasenko | 12ca080 | 2010-02-04 18:41:18 +0100 | [diff] [blame] | 233 | # define move_from_unaligned_int(v, intp) ((v) = *(bb__aliased_int*)(intp)) |
| 234 | # define move_from_unaligned16(v, u16p) ((v) = *(bb__aliased_uint16_t*)(u16p)) |
| 235 | # define move_from_unaligned32(v, u32p) ((v) = *(bb__aliased_uint32_t*)(u32p)) |
Denys Vlasenko | 5fb3849 | 2010-02-06 22:48:10 +0100 | [diff] [blame] | 236 | # define move_to_unaligned16(u16p, v) (*(bb__aliased_uint16_t*)(u16p) = (v)) |
Denys Vlasenko | 12ca080 | 2010-02-04 18:41:18 +0100 | [diff] [blame] | 237 | # define move_to_unaligned32(u32p, v) (*(bb__aliased_uint32_t*)(u32p) = (v)) |
Denis Vlasenko | 42b8daf | 2008-06-27 03:55:18 +0000 | [diff] [blame] | 238 | /* #elif ... - add your favorite arch today! */ |
Denis Vlasenko | fc9e108 | 2008-05-26 17:32:35 +0000 | [diff] [blame] | 239 | #else |
| 240 | /* performs reasonably well (gcc usually inlines memcpy here) */ |
Denys Vlasenko | 57be1ee | 2009-11-26 15:26:31 +0100 | [diff] [blame] | 241 | # define move_from_unaligned_int(v, intp) (memcpy(&(v), (intp), sizeof(int))) |
Denys Vlasenko | 5a49d28 | 2009-05-19 13:18:45 +0200 | [diff] [blame] | 242 | # define move_from_unaligned16(v, u16p) (memcpy(&(v), (u16p), 2)) |
| 243 | # define move_from_unaligned32(v, u32p) (memcpy(&(v), (u32p), 4)) |
Denys Vlasenko | 5fb3849 | 2010-02-06 22:48:10 +0100 | [diff] [blame] | 244 | # define move_to_unaligned16(u16p, v) do { \ |
| 245 | uint16_t __t = (v); \ |
| 246 | memcpy((u16p), &__t, 4); \ |
| 247 | } while (0) |
Denys Vlasenko | 5a49d28 | 2009-05-19 13:18:45 +0200 | [diff] [blame] | 248 | # define move_to_unaligned32(u32p, v) do { \ |
Denis Vlasenko | 3be2308 | 2009-04-17 22:20:44 +0000 | [diff] [blame] | 249 | uint32_t __t = (v); \ |
| 250 | memcpy((u32p), &__t, 4); \ |
| 251 | } while (0) |
Denis Vlasenko | fc9e108 | 2008-05-26 17:32:35 +0000 | [diff] [blame] | 252 | #endif |
| 253 | |
Bernhard Reutner-Fischer | e00fc16 | 2006-05-26 13:10:10 +0000 | [diff] [blame] | 254 | /* ---- Compiler dependent settings ------------------------- */ |
Denis Vlasenko | fc9e108 | 2008-05-26 17:32:35 +0000 | [diff] [blame] | 255 | |
Denys Vlasenko | 9b1b62a | 2009-07-05 03:34:12 +0200 | [diff] [blame] | 256 | #if (defined __digital__ && defined __unix__) \ |
Denys Vlasenko | 867ffb9 | 2010-08-16 03:24:40 +0200 | [diff] [blame] | 257 | || defined __APPLE__ \ |
| 258 | || defined __FreeBSD__ || defined __OpenBSD__ || defined __NetBSD__ |
Chris Rees | e3c127d | 2011-01-24 17:03:36 +0100 | [diff] [blame] | 259 | # undef HAVE_CLEARENV |
| 260 | # undef HAVE_FDATASYNC |
Bernhard Reutner-Fischer | e00fc16 | 2006-05-26 13:10:10 +0000 | [diff] [blame] | 261 | # undef HAVE_MNTENT_H |
Chris Rees | e3c127d | 2011-01-24 17:03:36 +0100 | [diff] [blame] | 262 | # undef HAVE_PTSNAME_R |
Mike Frysinger | 9412ec7 | 2008-02-07 22:41:33 +0000 | [diff] [blame] | 263 | # undef HAVE_SYS_STATFS_H |
Chris Rees | 9ad97d5 | 2011-01-20 00:51:52 +0100 | [diff] [blame] | 264 | # undef HAVE_SIGHANDLER_T |
Chris Rees | 330718e | 2011-01-24 17:07:06 +0100 | [diff] [blame] | 265 | # undef HAVE_XTABS |
| 266 | # undef HAVE_FDPRINTF |
Bernhard Reutner-Fischer | e00fc16 | 2006-05-26 13:10:10 +0000 | [diff] [blame] | 267 | #else |
Bernhard Reutner-Fischer | e00fc16 | 2006-05-26 13:10:10 +0000 | [diff] [blame] | 268 | # define HAVE_MNTENT_H 1 |
Mike Frysinger | 9412ec7 | 2008-02-07 22:41:33 +0000 | [diff] [blame] | 269 | # define HAVE_SYS_STATFS_H 1 |
Chris Rees | 330718e | 2011-01-24 17:07:06 +0100 | [diff] [blame] | 270 | # define HAVE_XTABS 1 |
Bernhard Reutner-Fischer | 8c69afd | 2008-01-29 10:33:34 +0000 | [diff] [blame] | 271 | #endif |
Bernhard Reutner-Fischer | be86209 | 2007-03-19 15:15:06 +0000 | [diff] [blame] | 272 | |
Bernhard Reutner-Fischer | e2e56c7 | 2006-05-19 11:54:02 +0000 | [diff] [blame] | 273 | /*----- Kernel versioning ------------------------------------*/ |
Denis Vlasenko | fc9e108 | 2008-05-26 17:32:35 +0000 | [diff] [blame] | 274 | |
Bernhard Reutner-Fischer | e2e56c7 | 2006-05-19 11:54:02 +0000 | [diff] [blame] | 275 | #define KERNEL_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c)) |
Bernhard Reutner-Fischer | e2e56c7 | 2006-05-19 11:54:02 +0000 | [diff] [blame] | 276 | |
Denis Vlasenko | fc9e108 | 2008-05-26 17:32:35 +0000 | [diff] [blame] | 277 | /* ---- Miscellaneous --------------------------------------- */ |
Bernhard Reutner-Fischer | e00fc16 | 2006-05-26 13:10:10 +0000 | [diff] [blame] | 278 | |
Bernhard Reutner-Fischer | e00fc16 | 2006-05-26 13:10:10 +0000 | [diff] [blame] | 279 | #if defined __GLIBC__ || defined __UCLIBC__ \ |
Denys Vlasenko | 9b1b62a | 2009-07-05 03:34:12 +0200 | [diff] [blame] | 280 | || defined __dietlibc__ || defined _NEWLIB_VERSION |
Denys Vlasenko | 5a49d28 | 2009-05-19 13:18:45 +0200 | [diff] [blame] | 281 | # include <features.h> |
Bernhard Reutner-Fischer | e00fc16 | 2006-05-26 13:10:10 +0000 | [diff] [blame] | 282 | #endif |
| 283 | |
Bernhard Reutner-Fischer | c966ba4 | 2007-01-18 10:32:09 +0000 | [diff] [blame] | 284 | /* Size-saving "small" ints (arch-dependent) */ |
| 285 | #if defined(i386) || defined(__x86_64__) || defined(__mips__) || defined(__cris__) |
| 286 | /* add other arches which benefit from this... */ |
| 287 | typedef signed char smallint; |
| 288 | typedef unsigned char smalluint; |
| 289 | #else |
| 290 | /* for arches where byte accesses generate larger code: */ |
| 291 | typedef int smallint; |
| 292 | typedef unsigned smalluint; |
| 293 | #endif |
| 294 | |
Bernhard Reutner-Fischer | a8e2e18 | 2007-01-20 21:27:18 +0000 | [diff] [blame] | 295 | /* ISO C Standard: 7.16 Boolean type and values <stdbool.h> */ |
| 296 | #if (defined __digital__ && defined __unix__) |
| 297 | /* old system without (proper) C99 support */ |
Denys Vlasenko | 5a49d28 | 2009-05-19 13:18:45 +0200 | [diff] [blame] | 298 | # define bool smalluint |
Bernhard Reutner-Fischer | a8e2e18 | 2007-01-20 21:27:18 +0000 | [diff] [blame] | 299 | #else |
| 300 | /* modern system, so use it */ |
Denys Vlasenko | 5a49d28 | 2009-05-19 13:18:45 +0200 | [diff] [blame] | 301 | # include <stdbool.h> |
Bernhard Reutner-Fischer | a8e2e18 | 2007-01-20 21:27:18 +0000 | [diff] [blame] | 302 | #endif |
| 303 | |
Denis Vlasenko | 6ca409e | 2007-08-12 20:58:27 +0000 | [diff] [blame] | 304 | /* Try to defeat gcc's alignment of "char message[]"-like data */ |
| 305 | #if 1 /* if needed: !defined(arch1) && !defined(arch2) */ |
Denys Vlasenko | 5a49d28 | 2009-05-19 13:18:45 +0200 | [diff] [blame] | 306 | # define ALIGN1 __attribute__((aligned(1))) |
| 307 | # define ALIGN2 __attribute__((aligned(2))) |
Denys Vlasenko | 0ecc116 | 2010-04-14 10:14:25 -0700 | [diff] [blame] | 308 | # define ALIGN4 __attribute__((aligned(4))) |
Denis Vlasenko | 6ca409e | 2007-08-12 20:58:27 +0000 | [diff] [blame] | 309 | #else |
| 310 | /* Arches which MUST have 2 or 4 byte alignment for everything are here */ |
Denys Vlasenko | 5a49d28 | 2009-05-19 13:18:45 +0200 | [diff] [blame] | 311 | # define ALIGN1 |
| 312 | # define ALIGN2 |
Denys Vlasenko | 0ecc116 | 2010-04-14 10:14:25 -0700 | [diff] [blame] | 313 | # define ALIGN4 |
Denis Vlasenko | 6ca409e | 2007-08-12 20:58:27 +0000 | [diff] [blame] | 314 | #endif |
| 315 | |
Bernhard Reutner-Fischer | a8e2e18 | 2007-01-20 21:27:18 +0000 | [diff] [blame] | 316 | |
Mike Frysinger | 8840759 | 2006-07-20 19:31:07 +0000 | [diff] [blame] | 317 | /* uclibc does not implement daemon() for no-mmu systems. |
Bernhard Reutner-Fischer | 507cd75 | 2006-05-31 10:04:03 +0000 | [diff] [blame] | 318 | * For 0.9.29 and svn, __ARCH_USE_MMU__ indicates no-mmu reliably. |
| 319 | * For earlier versions there is no reliable way to check if we are building |
Denis Vlasenko | 9e58921 | 2008-01-24 01:33:42 +0000 | [diff] [blame] | 320 | * for a mmu-less system. |
Bernhard Reutner-Fischer | 507cd75 | 2006-05-31 10:04:03 +0000 | [diff] [blame] | 321 | */ |
Denis Vlasenko | d2c450c | 2008-01-08 20:32:12 +0000 | [diff] [blame] | 322 | #if ENABLE_NOMMU || \ |
| 323 | (defined __UCLIBC__ && __UCLIBC_MAJOR__ >= 0 && __UCLIBC_MINOR__ >= 9 && \ |
| 324 | __UCLIBC_SUBLEVEL__ > 28 && !defined __ARCH_USE_MMU__) |
Denys Vlasenko | 5a49d28 | 2009-05-19 13:18:45 +0200 | [diff] [blame] | 325 | # define BB_MMU 0 |
| 326 | # define USE_FOR_NOMMU(...) __VA_ARGS__ |
| 327 | # define USE_FOR_MMU(...) |
Denis Vlasenko | 473dae0 | 2007-04-11 07:04:23 +0000 | [diff] [blame] | 328 | #else |
Denys Vlasenko | 5a49d28 | 2009-05-19 13:18:45 +0200 | [diff] [blame] | 329 | # define BB_MMU 1 |
| 330 | # define USE_FOR_NOMMU(...) |
| 331 | # define USE_FOR_MMU(...) __VA_ARGS__ |
Bernhard Reutner-Fischer | 507cd75 | 2006-05-31 10:04:03 +0000 | [diff] [blame] | 332 | #endif |
| 333 | |
Denys Vlasenko | 9b1b62a | 2009-07-05 03:34:12 +0200 | [diff] [blame] | 334 | /* Don't use lchown with glibc older than 2.1.x */ |
| 335 | #if defined(__GLIBC__) && __GLIBC__ <= 2 && __GLIBC_MINOR__ < 1 |
Mike Frysinger | 8840759 | 2006-07-20 19:31:07 +0000 | [diff] [blame] | 336 | # define lchown chown |
| 337 | #endif |
| 338 | |
Denys Vlasenko | 9b1b62a | 2009-07-05 03:34:12 +0200 | [diff] [blame] | 339 | #if defined(__digital__) && defined(__unix__) |
Rob Landley | 8fba99f | 2006-05-27 22:08:01 +0000 | [diff] [blame] | 340 | |
Denis Vlasenko | 6ebb2f5 | 2008-12-03 10:46:12 +0000 | [diff] [blame] | 341 | # include <standards.h> |
Denis Vlasenko | 6ebb2f5 | 2008-12-03 10:46:12 +0000 | [diff] [blame] | 342 | # include <inttypes.h> |
Denis Vlasenko | 6ebb2f5 | 2008-12-03 10:46:12 +0000 | [diff] [blame] | 343 | # define PRIu32 "u" |
Denis Vlasenko | 0de3c55 | 2007-04-12 12:31:02 +0000 | [diff] [blame] | 344 | /* use legacy setpgrp(pid_t,pid_t) for now. move to platform.c */ |
Denys Vlasenko | 245a4f8 | 2009-11-07 01:31:14 +0100 | [diff] [blame] | 345 | # define bb_setpgrp() do { pid_t __me = getpid(); setpgrp(__me, __me); } while (0) |
Denis Vlasenko | 6ebb2f5 | 2008-12-03 10:46:12 +0000 | [diff] [blame] | 346 | # if !defined ADJ_OFFSET_SINGLESHOT && defined MOD_CLKA && defined MOD_OFFSET |
| 347 | # define ADJ_OFFSET_SINGLESHOT (MOD_CLKA | MOD_OFFSET) |
| 348 | # endif |
| 349 | # if !defined ADJ_FREQUENCY && defined MOD_FREQUENCY |
| 350 | # define ADJ_FREQUENCY MOD_FREQUENCY |
| 351 | # endif |
| 352 | # if !defined ADJ_TIMECONST && defined MOD_TIMECONST |
| 353 | # define ADJ_TIMECONST MOD_TIMECONST |
| 354 | # endif |
| 355 | # if !defined ADJ_TICK && defined MOD_CLKB |
| 356 | # define ADJ_TICK MOD_CLKB |
| 357 | # endif |
Rob Landley | 8fba99f | 2006-05-27 22:08:01 +0000 | [diff] [blame] | 358 | |
Denys Vlasenko | 9b1b62a | 2009-07-05 03:34:12 +0200 | [diff] [blame] | 359 | #else |
Denis Vlasenko | 6ebb2f5 | 2008-12-03 10:46:12 +0000 | [diff] [blame] | 360 | |
| 361 | # define bb_setpgrp() setpgrp() |
| 362 | |
Rob Landley | 18958e9 | 2006-06-13 18:28:33 +0000 | [diff] [blame] | 363 | #endif |
| 364 | |
Denys Vlasenko | 698e809 | 2011-02-08 05:35:04 +0100 | [diff] [blame] | 365 | #include <unistd.h> |
Denys Vlasenko | dd807c1 | 2011-02-07 14:58:57 +0100 | [diff] [blame] | 366 | #if (defined(_POSIX_VERSION) && _POSIX_VERSION >= 200809L) || defined(__GLIBC__) |
Dan Fandrich | 21a542d | 2009-10-27 11:05:00 +0100 | [diff] [blame] | 367 | # define fdprintf dprintf |
| 368 | #endif |
| 369 | |
| 370 | #if defined(__dietlibc__) |
Dan Fandrich | fe4e23f | 2009-11-01 04:01:30 +0100 | [diff] [blame] | 371 | # undef HAVE_STRCHRNUL |
Dan Fandrich | 21a542d | 2009-10-27 11:05:00 +0100 | [diff] [blame] | 372 | #endif |
| 373 | |
| 374 | #if defined(__WATCOMC__) |
Dan Fandrich | fe4e23f | 2009-11-01 04:01:30 +0100 | [diff] [blame] | 375 | # undef HAVE_FDPRINTF |
| 376 | # undef HAVE_MEMRCHR |
| 377 | # undef HAVE_MKDTEMP |
| 378 | # undef HAVE_SETBIT |
| 379 | # undef HAVE_STRCASESTR |
| 380 | # undef HAVE_STRCHRNUL |
Dan Fandrich | 0635ddd | 2010-06-18 22:36:45 -0700 | [diff] [blame] | 381 | # undef HAVE_STRSEP |
Dan Fandrich | fe4e23f | 2009-11-01 04:01:30 +0100 | [diff] [blame] | 382 | # undef HAVE_STRSIGNAL |
| 383 | # undef HAVE_VASPRINTF |
Dan Fandrich | 21a542d | 2009-10-27 11:05:00 +0100 | [diff] [blame] | 384 | #endif |
| 385 | |
| 386 | #if defined(__FreeBSD__) |
Dan Fandrich | fe4e23f | 2009-11-01 04:01:30 +0100 | [diff] [blame] | 387 | # undef HAVE_STRCHRNUL |
Dan Fandrich | 21a542d | 2009-10-27 11:05:00 +0100 | [diff] [blame] | 388 | #endif |
| 389 | |
| 390 | /* |
| 391 | * Now, define prototypes for all the functions defined in platform.c |
| 392 | * These must come after all the HAVE_* macros are defined (or not) |
| 393 | */ |
| 394 | |
Dan Fandrich | fe4e23f | 2009-11-01 04:01:30 +0100 | [diff] [blame] | 395 | #ifndef HAVE_FDPRINTF |
| 396 | extern int fdprintf(int fd, const char *format, ...); |
| 397 | #endif |
| 398 | |
| 399 | #ifndef HAVE_MEMRCHR |
| 400 | extern void *memrchr(const void *s, int c, size_t n) FAST_FUNC; |
| 401 | #endif |
| 402 | |
| 403 | #ifndef HAVE_MKDTEMP |
| 404 | extern char *mkdtemp(char *template) FAST_FUNC; |
| 405 | #endif |
| 406 | |
| 407 | #ifndef HAVE_SETBIT |
| 408 | # define setbit(a, b) ((a)[(b) >> 3] |= 1 << ((b) & 7)) |
| 409 | # define clrbit(a, b) ((a)[(b) >> 3] &= ~(1 << ((b) & 7))) |
| 410 | #endif |
| 411 | |
Chris Rees | 9ad97d5 | 2011-01-20 00:51:52 +0100 | [diff] [blame] | 412 | #ifndef HAVE_SIGHANDLER_T |
| 413 | typedef void (*sighandler_t)(int); |
| 414 | #endif |
| 415 | |
Dan Fandrich | fe4e23f | 2009-11-01 04:01:30 +0100 | [diff] [blame] | 416 | #ifndef HAVE_STRCASESTR |
| 417 | extern char *strcasestr(const char *s, const char *pattern) FAST_FUNC; |
| 418 | #endif |
| 419 | |
Dan Fandrich | 21a542d | 2009-10-27 11:05:00 +0100 | [diff] [blame] | 420 | #ifndef HAVE_STRCHRNUL |
| 421 | extern char *strchrnul(const char *s, int c) FAST_FUNC; |
| 422 | #endif |
| 423 | |
Dan Fandrich | 0635ddd | 2010-06-18 22:36:45 -0700 | [diff] [blame] | 424 | #ifndef HAVE_STRSEP |
| 425 | extern char *strsep(char **stringp, const char *delim) FAST_FUNC; |
| 426 | #endif |
| 427 | |
Dan Fandrich | fe4e23f | 2009-11-01 04:01:30 +0100 | [diff] [blame] | 428 | #ifndef HAVE_STRSIGNAL |
| 429 | /* Not exactly the same: instead of "Stopped" it shows "STOP" etc */ |
| 430 | # define strsignal(sig) get_signame(sig) |
Dan Fandrich | 21a542d | 2009-10-27 11:05:00 +0100 | [diff] [blame] | 431 | #endif |
| 432 | |
Dan Fandrich | fe4e23f | 2009-11-01 04:01:30 +0100 | [diff] [blame] | 433 | #ifndef HAVE_VASPRINTF |
| 434 | extern int vasprintf(char **string_ptr, const char *format, va_list p) FAST_FUNC; |
Dan Fandrich | 21a542d | 2009-10-27 11:05:00 +0100 | [diff] [blame] | 435 | #endif |
Denys Vlasenko | 5a49d28 | 2009-05-19 13:18:45 +0200 | [diff] [blame] | 436 | |
Denis Vlasenko | f81e8db | 2009-04-09 12:35:13 +0000 | [diff] [blame] | 437 | #endif |