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 | /* |
Bernhard Reutner-Fischer | 6c4dade | 2008-09-25 12:13:34 +0000 | [diff] [blame] | 3 | Copyright 2006, Bernhard Reutner-Fischer |
Bernhard Reutner-Fischer | 86f5c99 | 2006-01-22 22:55:11 +0000 | [diff] [blame] | 4 | |
| 5 | Licensed under the GPL v2 or later, see the file LICENSE in this tarball. |
| 6 | */ |
Denis Vlasenko | f81e8db | 2009-04-09 12:35:13 +0000 | [diff] [blame] | 7 | #ifndef BB_PLATFORM_H |
| 8 | #define BB_PLATFORM_H 1 |
Bernhard Reutner-Fischer | 86f5c99 | 2006-01-22 22:55:11 +0000 | [diff] [blame] | 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 Vlasenko | 9213a9e | 2006-09-17 16:28:10 +0000 | [diff] [blame] | 14 | ((__GNUC__ << 16) + __GNUC_MINOR__ >= ((maj) << 16) + (min)) |
Bernhard Reutner-Fischer | 86f5c99 | 2006-01-22 22:55:11 +0000 | [diff] [blame] | 15 | #else |
| 16 | # define __GNUC_PREREQ(maj, min) 0 |
| 17 | #endif |
| 18 | |
| 19 | /* __restrict is known in EGCS 1.2 and above. */ |
Denis Vlasenko | 98636eb | 2008-05-09 17:59:34 +0000 | [diff] [blame] | 20 | #if !__GNUC_PREREQ(2,92) |
Bernhard Reutner-Fischer | 86f5c99 | 2006-01-22 22:55:11 +0000 | [diff] [blame] | 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 | |
Denis Vlasenko | 98636eb | 2008-05-09 17:59:34 +0000 | [diff] [blame] | 30 | #if !__GNUC_PREREQ(2,7) |
Bernhard Reutner-Fischer | 86f5c99 | 2006-01-22 22:55:11 +0000 | [diff] [blame] | 31 | # ifndef __attribute__ |
| 32 | # define __attribute__(x) |
| 33 | # endif |
| 34 | #endif |
| 35 | |
Bernhard Reutner-Fischer | e00fc16 | 2006-05-26 13:10:10 +0000 | [diff] [blame] | 36 | #undef inline |
Denis Vlasenko | a7189f0 | 2006-11-17 20:29:00 +0000 | [diff] [blame] | 37 | #if defined(__STDC_VERSION__) && __STDC_VERSION__ > 199901L |
Bernhard Reutner-Fischer | e00fc16 | 2006-05-26 13:10:10 +0000 | [diff] [blame] | 38 | /* it's a keyword */ |
| 39 | #else |
Denis Vlasenko | 98636eb | 2008-05-09 17:59:34 +0000 | [diff] [blame] | 40 | # if __GNUC_PREREQ(2,7) |
Bernhard Reutner-Fischer | e00fc16 | 2006-05-26 13:10:10 +0000 | [diff] [blame] | 41 | # define inline __inline__ |
| 42 | # else |
| 43 | # define inline |
| 44 | # endif |
| 45 | #endif |
| 46 | |
| 47 | #ifndef __const |
| 48 | # define __const const |
| 49 | #endif |
| 50 | |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 51 | #define UNUSED_PARAM __attribute__ ((__unused__)) |
| 52 | #define NORETURN __attribute__ ((__noreturn__)) |
| 53 | #define PACKED __attribute__ ((__packed__)) |
| 54 | #define ALIGNED(m) __attribute__ ((__aligned__(m))) |
Denis Vlasenko | 0f3a580 | 2008-03-20 13:13:09 +0000 | [diff] [blame] | 55 | /* __NO_INLINE__: some gcc's do not honor inlining! :( */ |
Denis Vlasenko | 98636eb | 2008-05-09 17:59:34 +0000 | [diff] [blame] | 56 | #if __GNUC_PREREQ(3,0) && !defined(__NO_INLINE__) |
| 57 | # define ALWAYS_INLINE __attribute__ ((always_inline)) inline |
Denis Vlasenko | 77f1ec1 | 2007-10-13 03:36:03 +0000 | [diff] [blame] | 58 | /* I've seen a toolchain where I needed __noinline__ instead of noinline */ |
Denis Vlasenko | 98636eb | 2008-05-09 17:59:34 +0000 | [diff] [blame] | 59 | # define NOINLINE __attribute__((__noinline__)) |
| 60 | # if !ENABLE_WERROR |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 61 | # define DEPRECATED __attribute__ ((__deprecated__)) |
| 62 | # define UNUSED_PARAM_RESULT __attribute__ ((warn_unused_result)) |
Bernhard Reutner-Fischer | e00fc16 | 2006-05-26 13:10:10 +0000 | [diff] [blame] | 63 | # else |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 64 | # define DEPRECATED /* n/a */ |
| 65 | # define UNUSED_PARAM_RESULT /* n/a */ |
Bernhard Reutner-Fischer | e00fc16 | 2006-05-26 13:10:10 +0000 | [diff] [blame] | 66 | # endif |
Denis Vlasenko | 98636eb | 2008-05-09 17:59:34 +0000 | [diff] [blame] | 67 | #else |
| 68 | # define ALWAYS_INLINE inline /* n/a */ |
| 69 | # define NOINLINE /* n/a */ |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 70 | # define DEPRECATED /* n/a */ |
| 71 | # define UNUSED_PARAM_RESULT /* n/a */ |
Denis Vlasenko | 98636eb | 2008-05-09 17:59:34 +0000 | [diff] [blame] | 72 | #endif |
Bernhard Reutner-Fischer | e00fc16 | 2006-05-26 13:10:10 +0000 | [diff] [blame] | 73 | |
Bernhard Reutner-Fischer | 86f5c99 | 2006-01-22 22:55:11 +0000 | [diff] [blame] | 74 | /* -fwhole-program makes all symbols local. The attribute externally_visible |
| 75 | forces a symbol global. */ |
Denis Vlasenko | 98636eb | 2008-05-09 17:59:34 +0000 | [diff] [blame] | 76 | #if __GNUC_PREREQ(4,1) |
| 77 | # define EXTERNALLY_VISIBLE __attribute__(( visibility("default") )) |
Denis Vlasenko | 9b49a5e | 2007-10-11 10:05:36 +0000 | [diff] [blame] | 78 | //__attribute__ ((__externally_visible__)) |
Denis Vlasenko | 98636eb | 2008-05-09 17:59:34 +0000 | [diff] [blame] | 79 | #else |
| 80 | # define EXTERNALLY_VISIBLE |
Denis Vlasenko | 6ebb2f5 | 2008-12-03 10:46:12 +0000 | [diff] [blame] | 81 | #endif |
Bernhard Reutner-Fischer | 86f5c99 | 2006-01-22 22:55:11 +0000 | [diff] [blame] | 82 | |
| 83 | /* We use __extension__ in some places to suppress -pedantic warnings |
| 84 | about GCC extensions. This feature didn't work properly before |
| 85 | gcc 2.8. */ |
Denis Vlasenko | 98636eb | 2008-05-09 17:59:34 +0000 | [diff] [blame] | 86 | #if !__GNUC_PREREQ(2,8) |
Bernhard Reutner-Fischer | 86f5c99 | 2006-01-22 22:55:11 +0000 | [diff] [blame] | 87 | # ifndef __extension__ |
| 88 | # define __extension__ |
| 89 | # endif |
| 90 | #endif |
| 91 | |
Bernhard Reutner-Fischer | b5f50ea | 2006-09-12 13:27:55 +0000 | [diff] [blame] | 92 | /* gcc-2.95 had no va_copy but only __va_copy. */ |
Denis Vlasenko | 98636eb | 2008-05-09 17:59:34 +0000 | [diff] [blame] | 93 | #if !__GNUC_PREREQ(3,0) |
Bernhard Reutner-Fischer | b5f50ea | 2006-09-12 13:27:55 +0000 | [diff] [blame] | 94 | # include <stdarg.h> |
| 95 | # if !defined va_copy && defined __va_copy |
| 96 | # define va_copy(d,s) __va_copy((d),(s)) |
| 97 | # endif |
| 98 | #endif |
| 99 | |
Denis Vlasenko | 42b8daf | 2008-06-27 03:55:18 +0000 | [diff] [blame] | 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 */ |
Denis Vlasenko | ac2b50e | 2008-06-27 04:30:48 +0000 | [diff] [blame] | 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)) |
Denis Vlasenko | 42b8daf | 2008-06-27 03:55:18 +0000 | [diff] [blame] | 108 | /* #elif ... - add your favorite arch today! */ |
Denis Vlasenko | defc1ea | 2008-06-27 02:52:20 +0000 | [diff] [blame] | 109 | #else |
| 110 | # define FAST_FUNC |
| 111 | #endif |
| 112 | |
Denis Vlasenko | f81e8db | 2009-04-09 12:35:13 +0000 | [diff] [blame] | 113 | /* Make all declarations hidden (-fvisibility flag only affects definitions) */ |
| 114 | /* (don't include system headers after this until corresponding pop!) */ |
| 115 | #if __GNUC_PREREQ(4,1) |
| 116 | # define PUSH_AND_SET_FUNCTION_VISIBILITY_TO_HIDDEN _Pragma("GCC visibility push(hidden)") |
| 117 | # define POP_SAVED_FUNCTION_VISIBILITY _Pragma("GCC visibility pop") |
| 118 | #else |
| 119 | # define PUSH_AND_SET_FUNCTION_VISIBILITY_TO_HIDDEN |
| 120 | # define POP_SAVED_FUNCTION_VISIBILITY |
| 121 | #endif |
| 122 | |
Rob Landley | 5cf7c2d | 2006-02-21 06:44:43 +0000 | [diff] [blame] | 123 | /* ---- Endian Detection ------------------------------------ */ |
Rob Landley | 5cf7c2d | 2006-02-21 06:44:43 +0000 | [diff] [blame] | 124 | |
Bernhard Reutner-Fischer | e00fc16 | 2006-05-26 13:10:10 +0000 | [diff] [blame] | 125 | #if (defined __digital__ && defined __unix__) |
| 126 | # include <sex.h> |
| 127 | # define __BIG_ENDIAN__ (BYTE_ORDER == BIG_ENDIAN) |
| 128 | # define __BYTE_ORDER BYTE_ORDER |
Rob Landley | 15d20a0 | 2006-05-29 05:00:44 +0000 | [diff] [blame] | 129 | #elif !defined __APPLE__ |
| 130 | # include <byteswap.h> |
| 131 | # include <endian.h> |
Bernhard Reutner-Fischer | e00fc16 | 2006-05-26 13:10:10 +0000 | [diff] [blame] | 132 | #endif |
| 133 | |
Rob Landley | 5cf7c2d | 2006-02-21 06:44:43 +0000 | [diff] [blame] | 134 | #ifdef __BIG_ENDIAN__ |
Mike Frysinger | f885513 | 2006-03-28 02:35:56 +0000 | [diff] [blame] | 135 | # define BB_BIG_ENDIAN 1 |
| 136 | # define BB_LITTLE_ENDIAN 0 |
Rob Landley | 5cf7c2d | 2006-02-21 06:44:43 +0000 | [diff] [blame] | 137 | #elif __BYTE_ORDER == __BIG_ENDIAN |
Mike Frysinger | f885513 | 2006-03-28 02:35:56 +0000 | [diff] [blame] | 138 | # define BB_BIG_ENDIAN 1 |
| 139 | # define BB_LITTLE_ENDIAN 0 |
Bernhard Reutner-Fischer | ed7bb62 | 2006-02-23 14:25:15 +0000 | [diff] [blame] | 140 | #else |
Mike Frysinger | f885513 | 2006-03-28 02:35:56 +0000 | [diff] [blame] | 141 | # define BB_BIG_ENDIAN 0 |
| 142 | # define BB_LITTLE_ENDIAN 1 |
Rob Landley | 5cf7c2d | 2006-02-21 06:44:43 +0000 | [diff] [blame] | 143 | #endif |
| 144 | |
Denis Vlasenko | 9b0f6e1 | 2008-11-01 13:40:32 +0000 | [diff] [blame] | 145 | /* SWAP_LEnn means "convert CPU<->little_endian by swapping bytes" */ |
Rob Landley | bba7f08 | 2006-05-29 05:51:12 +0000 | [diff] [blame] | 146 | #if BB_BIG_ENDIAN |
Rob Landley | 752f0a6 | 2006-05-30 06:28:03 +0000 | [diff] [blame] | 147 | #define SWAP_BE16(x) (x) |
| 148 | #define SWAP_BE32(x) (x) |
| 149 | #define SWAP_BE64(x) (x) |
Rob Landley | bba7f08 | 2006-05-29 05:51:12 +0000 | [diff] [blame] | 150 | #define SWAP_LE16(x) bswap_16(x) |
| 151 | #define SWAP_LE32(x) bswap_32(x) |
| 152 | #define SWAP_LE64(x) bswap_64(x) |
| 153 | #else |
| 154 | #define SWAP_BE16(x) bswap_16(x) |
| 155 | #define SWAP_BE32(x) bswap_32(x) |
| 156 | #define SWAP_BE64(x) bswap_64(x) |
Rob Landley | 752f0a6 | 2006-05-30 06:28:03 +0000 | [diff] [blame] | 157 | #define SWAP_LE16(x) (x) |
| 158 | #define SWAP_LE32(x) (x) |
| 159 | #define SWAP_LE64(x) (x) |
Rob Landley | bba7f08 | 2006-05-29 05:51:12 +0000 | [diff] [blame] | 160 | #endif |
| 161 | |
Denis Vlasenko | fc9e108 | 2008-05-26 17:32:35 +0000 | [diff] [blame] | 162 | /* ---- Unaligned access ------------------------------------ */ |
| 163 | |
Denis Vlasenko | efb545b | 2008-12-08 22:56:18 +0000 | [diff] [blame] | 164 | /* NB: unaligned parameter should be a pointer, aligned one - |
| 165 | * a lvalue. This makes it more likely to not swap them by mistake |
| 166 | */ |
Denis Vlasenko | 42b8daf | 2008-06-27 03:55:18 +0000 | [diff] [blame] | 167 | #if defined(i386) || defined(__x86_64__) |
Denis Vlasenko | efb545b | 2008-12-08 22:56:18 +0000 | [diff] [blame] | 168 | #define move_from_unaligned16(v, u16p) ((v) = *(uint16_t*)(u16p)) |
| 169 | #define move_from_unaligned32(v, u32p) ((v) = *(uint32_t*)(u32p)) |
| 170 | #define move_to_unaligned32(u32p, v) (*(uint32_t*)(u32p) = (v)) |
Denis Vlasenko | 42b8daf | 2008-06-27 03:55:18 +0000 | [diff] [blame] | 171 | /* #elif ... - add your favorite arch today! */ |
Denis Vlasenko | fc9e108 | 2008-05-26 17:32:35 +0000 | [diff] [blame] | 172 | #else |
| 173 | /* performs reasonably well (gcc usually inlines memcpy here) */ |
Denis Vlasenko | efb545b | 2008-12-08 22:56:18 +0000 | [diff] [blame] | 174 | #define move_from_unaligned16(v, u16p) (memcpy(&(v), (u16p), 2)) |
| 175 | #define move_from_unaligned32(v, u32p) (memcpy(&(v), (u32p), 4)) |
Denis Vlasenko | 3be2308 | 2009-04-17 22:20:44 +0000 | [diff] [blame] | 176 | #define move_to_unaligned32(u32p, v) do { \ |
| 177 | uint32_t __t = (v); \ |
| 178 | memcpy((u32p), &__t, 4); \ |
| 179 | } while (0) |
Denis Vlasenko | fc9e108 | 2008-05-26 17:32:35 +0000 | [diff] [blame] | 180 | #endif |
| 181 | |
Rob Landley | dae6aa2 | 2006-03-09 22:39:08 +0000 | [diff] [blame] | 182 | /* ---- Networking ------------------------------------------ */ |
Denis Vlasenko | fc9e108 | 2008-05-26 17:32:35 +0000 | [diff] [blame] | 183 | |
Rob Landley | dae6aa2 | 2006-03-09 22:39:08 +0000 | [diff] [blame] | 184 | #ifndef __APPLE__ |
Mike Frysinger | f885513 | 2006-03-28 02:35:56 +0000 | [diff] [blame] | 185 | # include <arpa/inet.h> |
Mike Frysinger | 9412ec7 | 2008-02-07 22:41:33 +0000 | [diff] [blame] | 186 | # ifndef __socklen_t_defined |
| 187 | typedef int socklen_t; |
| 188 | # endif |
Rob Landley | dae6aa2 | 2006-03-09 22:39:08 +0000 | [diff] [blame] | 189 | #else |
Mike Frysinger | f885513 | 2006-03-28 02:35:56 +0000 | [diff] [blame] | 190 | # include <netinet/in.h> |
Rob Landley | dae6aa2 | 2006-03-09 22:39:08 +0000 | [diff] [blame] | 191 | #endif |
| 192 | |
Bernhard Reutner-Fischer | e00fc16 | 2006-05-26 13:10:10 +0000 | [diff] [blame] | 193 | /* ---- Compiler dependent settings ------------------------- */ |
Denis Vlasenko | fc9e108 | 2008-05-26 17:32:35 +0000 | [diff] [blame] | 194 | |
Mike Frysinger | 22876c7 | 2008-02-07 22:10:07 +0000 | [diff] [blame] | 195 | #if (defined __digital__ && defined __unix__) || defined __APPLE__ |
Bernhard Reutner-Fischer | e00fc16 | 2006-05-26 13:10:10 +0000 | [diff] [blame] | 196 | # undef HAVE_MNTENT_H |
Mike Frysinger | 9412ec7 | 2008-02-07 22:41:33 +0000 | [diff] [blame] | 197 | # undef HAVE_SYS_STATFS_H |
Bernhard Reutner-Fischer | e00fc16 | 2006-05-26 13:10:10 +0000 | [diff] [blame] | 198 | #else |
Bernhard Reutner-Fischer | e00fc16 | 2006-05-26 13:10:10 +0000 | [diff] [blame] | 199 | # define HAVE_MNTENT_H 1 |
Mike Frysinger | 9412ec7 | 2008-02-07 22:41:33 +0000 | [diff] [blame] | 200 | # define HAVE_SYS_STATFS_H 1 |
Bernhard Reutner-Fischer | e00fc16 | 2006-05-26 13:10:10 +0000 | [diff] [blame] | 201 | #endif /* ___digital__ && __unix__ */ |
| 202 | |
Bernhard Reutner-Fischer | be86209 | 2007-03-19 15:15:06 +0000 | [diff] [blame] | 203 | /* linux/loop.h relies on __u64. Make sure we have that as a proper type |
| 204 | * until userspace is widely fixed. */ |
Bernhard Reutner-Fischer | 8c69afd | 2008-01-29 10:33:34 +0000 | [diff] [blame] | 205 | #if (defined __INTEL_COMPILER && !defined __GNUC__) || \ |
| 206 | (defined __GNUC__ && defined __STRICT_ANSI__) |
Denis Vlasenko | 6ebb2f5 | 2008-12-03 10:46:12 +0000 | [diff] [blame] | 207 | __extension__ typedef long long __s64; |
Bernhard Reutner-Fischer | be86209 | 2007-03-19 15:15:06 +0000 | [diff] [blame] | 208 | __extension__ typedef unsigned long long __u64; |
Bernhard Reutner-Fischer | 8c69afd | 2008-01-29 10:33:34 +0000 | [diff] [blame] | 209 | #endif |
Bernhard Reutner-Fischer | be86209 | 2007-03-19 15:15:06 +0000 | [diff] [blame] | 210 | |
Bernhard Reutner-Fischer | e2e56c7 | 2006-05-19 11:54:02 +0000 | [diff] [blame] | 211 | /*----- Kernel versioning ------------------------------------*/ |
Denis Vlasenko | fc9e108 | 2008-05-26 17:32:35 +0000 | [diff] [blame] | 212 | |
Bernhard Reutner-Fischer | e2e56c7 | 2006-05-19 11:54:02 +0000 | [diff] [blame] | 213 | #define KERNEL_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c)) |
Bernhard Reutner-Fischer | e2e56c7 | 2006-05-19 11:54:02 +0000 | [diff] [blame] | 214 | |
Denis Vlasenko | fc9e108 | 2008-05-26 17:32:35 +0000 | [diff] [blame] | 215 | /* ---- Miscellaneous --------------------------------------- */ |
Bernhard Reutner-Fischer | e00fc16 | 2006-05-26 13:10:10 +0000 | [diff] [blame] | 216 | |
Mike Frysinger | b16b5bb | 2006-06-06 06:00:20 +0000 | [diff] [blame] | 217 | #if defined(__GNU_LIBRARY__) && __GNU_LIBRARY__ < 5 && \ |
Bernhard Reutner-Fischer | e00fc16 | 2006-05-26 13:10:10 +0000 | [diff] [blame] | 218 | !defined(__dietlibc__) && \ |
| 219 | !defined(_NEWLIB_VERSION) && \ |
| 220 | !(defined __digital__ && defined __unix__) |
Mike Frysinger | b16b5bb | 2006-06-06 06:00:20 +0000 | [diff] [blame] | 221 | # error "Sorry, this libc version is not supported :(" |
Bernhard Reutner-Fischer | e00fc16 | 2006-05-26 13:10:10 +0000 | [diff] [blame] | 222 | #endif |
| 223 | |
Denis Vlasenko | 6ca409e | 2007-08-12 20:58:27 +0000 | [diff] [blame] | 224 | /* Don't perpetuate e2fsck crap into the headers. Clean up e2fsck instead. */ |
Rob Landley | 18958e9 | 2006-06-13 18:28:33 +0000 | [diff] [blame] | 225 | |
Bernhard Reutner-Fischer | e00fc16 | 2006-05-26 13:10:10 +0000 | [diff] [blame] | 226 | #if defined __GLIBC__ || defined __UCLIBC__ \ |
| 227 | || defined __dietlibc__ || defined _NEWLIB_VERSION |
| 228 | #include <features.h> |
| 229 | #define HAVE_FEATURES_H |
| 230 | #include <stdint.h> |
| 231 | #define HAVE_STDINT_H |
Mike Frysinger | 9412ec7 | 2008-02-07 22:41:33 +0000 | [diff] [blame] | 232 | #elif !defined __APPLE__ |
Bernhard Reutner-Fischer | e00fc16 | 2006-05-26 13:10:10 +0000 | [diff] [blame] | 233 | /* Largest integral types. */ |
| 234 | #if __BIG_ENDIAN__ |
Denis Vlasenko | 8746885 | 2007-04-13 23:22:00 +0000 | [diff] [blame] | 235 | typedef long intmax_t; |
| 236 | typedef unsigned long uintmax_t; |
Bernhard Reutner-Fischer | e00fc16 | 2006-05-26 13:10:10 +0000 | [diff] [blame] | 237 | #else |
| 238 | __extension__ |
Denis Vlasenko | 8746885 | 2007-04-13 23:22:00 +0000 | [diff] [blame] | 239 | typedef long long intmax_t; |
Bernhard Reutner-Fischer | e00fc16 | 2006-05-26 13:10:10 +0000 | [diff] [blame] | 240 | __extension__ |
Denis Vlasenko | 8746885 | 2007-04-13 23:22:00 +0000 | [diff] [blame] | 241 | typedef unsigned long long uintmax_t; |
Bernhard Reutner-Fischer | e00fc16 | 2006-05-26 13:10:10 +0000 | [diff] [blame] | 242 | #endif |
| 243 | #endif |
| 244 | |
Bernhard Reutner-Fischer | c966ba4 | 2007-01-18 10:32:09 +0000 | [diff] [blame] | 245 | /* Size-saving "small" ints (arch-dependent) */ |
| 246 | #if defined(i386) || defined(__x86_64__) || defined(__mips__) || defined(__cris__) |
| 247 | /* add other arches which benefit from this... */ |
| 248 | typedef signed char smallint; |
| 249 | typedef unsigned char smalluint; |
| 250 | #else |
| 251 | /* for arches where byte accesses generate larger code: */ |
| 252 | typedef int smallint; |
| 253 | typedef unsigned smalluint; |
| 254 | #endif |
| 255 | |
Bernhard Reutner-Fischer | a8e2e18 | 2007-01-20 21:27:18 +0000 | [diff] [blame] | 256 | /* ISO C Standard: 7.16 Boolean type and values <stdbool.h> */ |
| 257 | #if (defined __digital__ && defined __unix__) |
| 258 | /* old system without (proper) C99 support */ |
| 259 | #define bool smalluint |
| 260 | #else |
| 261 | /* modern system, so use it */ |
| 262 | #include <stdbool.h> |
| 263 | #endif |
| 264 | |
Denis Vlasenko | 6ca409e | 2007-08-12 20:58:27 +0000 | [diff] [blame] | 265 | /* Try to defeat gcc's alignment of "char message[]"-like data */ |
| 266 | #if 1 /* if needed: !defined(arch1) && !defined(arch2) */ |
| 267 | #define ALIGN1 __attribute__((aligned(1))) |
| 268 | #define ALIGN2 __attribute__((aligned(2))) |
| 269 | #else |
| 270 | /* Arches which MUST have 2 or 4 byte alignment for everything are here */ |
| 271 | #define ALIGN1 |
| 272 | #define ALIGN2 |
| 273 | #endif |
| 274 | |
Bernhard Reutner-Fischer | a8e2e18 | 2007-01-20 21:27:18 +0000 | [diff] [blame] | 275 | |
Mike Frysinger | 8840759 | 2006-07-20 19:31:07 +0000 | [diff] [blame] | 276 | /* uclibc does not implement daemon() for no-mmu systems. |
Bernhard Reutner-Fischer | 507cd75 | 2006-05-31 10:04:03 +0000 | [diff] [blame] | 277 | * For 0.9.29 and svn, __ARCH_USE_MMU__ indicates no-mmu reliably. |
| 278 | * 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] | 279 | * for a mmu-less system. |
Bernhard Reutner-Fischer | 507cd75 | 2006-05-31 10:04:03 +0000 | [diff] [blame] | 280 | */ |
Denis Vlasenko | d2c450c | 2008-01-08 20:32:12 +0000 | [diff] [blame] | 281 | #if ENABLE_NOMMU || \ |
| 282 | (defined __UCLIBC__ && __UCLIBC_MAJOR__ >= 0 && __UCLIBC_MINOR__ >= 9 && \ |
| 283 | __UCLIBC_SUBLEVEL__ > 28 && !defined __ARCH_USE_MMU__) |
Denis Vlasenko | 473dae0 | 2007-04-11 07:04:23 +0000 | [diff] [blame] | 284 | #define BB_MMU 0 |
Denis Vlasenko | 473dae0 | 2007-04-11 07:04:23 +0000 | [diff] [blame] | 285 | #define USE_FOR_NOMMU(...) __VA_ARGS__ |
| 286 | #define USE_FOR_MMU(...) |
| 287 | #else |
| 288 | #define BB_MMU 1 |
Denis Vlasenko | 473dae0 | 2007-04-11 07:04:23 +0000 | [diff] [blame] | 289 | #define USE_FOR_NOMMU(...) |
| 290 | #define USE_FOR_MMU(...) __VA_ARGS__ |
Bernhard Reutner-Fischer | 507cd75 | 2006-05-31 10:04:03 +0000 | [diff] [blame] | 291 | #endif |
| 292 | |
Rob Landley | 18958e9 | 2006-06-13 18:28:33 +0000 | [diff] [blame] | 293 | /* Platforms that haven't got dprintf need to implement fdprintf() in |
| 294 | * libbb. This would require a platform.c. It's not going to be cleaned |
| 295 | * out of the tree, so stop saying it should be. */ |
Denis Vlasenko | 7cfecc4 | 2006-12-18 22:32:45 +0000 | [diff] [blame] | 296 | #if !defined(__dietlibc__) |
| 297 | /* Needed for: glibc */ |
| 298 | /* Not needed for: dietlibc */ |
| 299 | /* Others: ?? (add as needed) */ |
Bernhard Reutner-Fischer | e00fc16 | 2006-05-26 13:10:10 +0000 | [diff] [blame] | 300 | #define fdprintf dprintf |
Denis Vlasenko | 7cfecc4 | 2006-12-18 22:32:45 +0000 | [diff] [blame] | 301 | #endif |
| 302 | |
| 303 | #if defined(__dietlibc__) |
Denis Vlasenko | 3ad5d0c | 2007-06-12 20:54:54 +0000 | [diff] [blame] | 304 | static ALWAYS_INLINE char* strchrnul(const char *s, char c) |
Denis Vlasenko | ac678ec | 2007-04-16 22:32:04 +0000 | [diff] [blame] | 305 | { |
Denis Vlasenko | 7cfecc4 | 2006-12-18 22:32:45 +0000 | [diff] [blame] | 306 | while (*s && *s != c) ++s; |
| 307 | return (char*)s; |
| 308 | } |
Denis Vlasenko | c8e6e35 | 2006-12-18 22:10:24 +0000 | [diff] [blame] | 309 | #endif |
Rob Landley | c020f5f | 2006-05-21 18:28:13 +0000 | [diff] [blame] | 310 | |
Denis Vlasenko | 473dae0 | 2007-04-11 07:04:23 +0000 | [diff] [blame] | 311 | /* Don't use lchown with glibc older than 2.1.x ... uClibc lacks it */ |
Mike Frysinger | 8840759 | 2006-07-20 19:31:07 +0000 | [diff] [blame] | 312 | #if (defined __GLIBC__ && __GLIBC__ <= 2 && __GLIBC_MINOR__ < 1) || \ |
| 313 | defined __UC_LIBC__ |
| 314 | # define lchown chown |
| 315 | #endif |
| 316 | |
Bernhard Reutner-Fischer | e00fc16 | 2006-05-26 13:10:10 +0000 | [diff] [blame] | 317 | #if (defined __digital__ && defined __unix__) |
Rob Landley | 8fba99f | 2006-05-27 22:08:01 +0000 | [diff] [blame] | 318 | |
Denis Vlasenko | 6ebb2f5 | 2008-12-03 10:46:12 +0000 | [diff] [blame] | 319 | # include <standards.h> |
| 320 | # define HAVE_STANDARDS_H |
| 321 | # include <inttypes.h> |
| 322 | # define HAVE_INTTYPES_H |
| 323 | # define PRIu32 "u" |
Denis Vlasenko | 0de3c55 | 2007-04-12 12:31:02 +0000 | [diff] [blame] | 324 | /* use legacy setpgrp(pid_t,pid_t) for now. move to platform.c */ |
Denis Vlasenko | 6ebb2f5 | 2008-12-03 10:46:12 +0000 | [diff] [blame] | 325 | # define bb_setpgrp() do { pid_t __me = getpid(); setpgrp(__me,__me); } while (0) |
Rob Landley | 18958e9 | 2006-06-13 18:28:33 +0000 | [diff] [blame] | 326 | |
Denis Vlasenko | 6ebb2f5 | 2008-12-03 10:46:12 +0000 | [diff] [blame] | 327 | # if !defined ADJ_OFFSET_SINGLESHOT && defined MOD_CLKA && defined MOD_OFFSET |
| 328 | # define ADJ_OFFSET_SINGLESHOT (MOD_CLKA | MOD_OFFSET) |
| 329 | # endif |
| 330 | # if !defined ADJ_FREQUENCY && defined MOD_FREQUENCY |
| 331 | # define ADJ_FREQUENCY MOD_FREQUENCY |
| 332 | # endif |
| 333 | # if !defined ADJ_TIMECONST && defined MOD_TIMECONST |
| 334 | # define ADJ_TIMECONST MOD_TIMECONST |
| 335 | # endif |
| 336 | # if !defined ADJ_TICK && defined MOD_CLKB |
| 337 | # define ADJ_TICK MOD_CLKB |
| 338 | # endif |
Rob Landley | 8fba99f | 2006-05-27 22:08:01 +0000 | [diff] [blame] | 339 | |
Denis Vlasenko | 6ebb2f5 | 2008-12-03 10:46:12 +0000 | [diff] [blame] | 340 | #else /* !__digital__ */ |
| 341 | |
| 342 | # define bb_setpgrp() setpgrp() |
| 343 | |
Rob Landley | 18958e9 | 2006-06-13 18:28:33 +0000 | [diff] [blame] | 344 | #endif |
| 345 | |
Rob Landley | 22d26fc | 2006-06-15 15:49:36 +0000 | [diff] [blame] | 346 | #if defined(__linux__) |
| 347 | #include <sys/mount.h> |
Denis Vlasenko | 6ca409e | 2007-08-12 20:58:27 +0000 | [diff] [blame] | 348 | /* Make sure we have all the new mount flags we actually try to use. */ |
Rob Landley | e3781b7 | 2006-08-08 01:39:49 +0000 | [diff] [blame] | 349 | #ifndef MS_BIND |
| 350 | #define MS_BIND (1<<12) |
| 351 | #endif |
| 352 | #ifndef MS_MOVE |
| 353 | #define MS_MOVE (1<<13) |
| 354 | #endif |
| 355 | #ifndef MS_RECURSIVE |
| 356 | #define MS_RECURSIVE (1<<14) |
| 357 | #endif |
| 358 | #ifndef MS_SILENT |
| 359 | #define MS_SILENT (1<<15) |
| 360 | #endif |
| 361 | |
Denis Vlasenko | 6ca409e | 2007-08-12 20:58:27 +0000 | [diff] [blame] | 362 | /* The shared subtree stuff, which went in around 2.6.15. */ |
Rob Landley | e3781b7 | 2006-08-08 01:39:49 +0000 | [diff] [blame] | 363 | #ifndef MS_UNBINDABLE |
| 364 | #define MS_UNBINDABLE (1<<17) |
| 365 | #endif |
| 366 | #ifndef MS_PRIVATE |
| 367 | #define MS_PRIVATE (1<<18) |
| 368 | #endif |
| 369 | #ifndef MS_SLAVE |
| 370 | #define MS_SLAVE (1<<19) |
| 371 | #endif |
| 372 | #ifndef MS_SHARED |
| 373 | #define MS_SHARED (1<<20) |
| 374 | #endif |
Bernhard Reutner-Fischer | fb5902c | 2008-08-06 18:14:38 +0000 | [diff] [blame] | 375 | #ifndef MS_RELATIME |
| 376 | #define MS_RELATIME (1 << 21) |
| 377 | #endif |
Denis Vlasenko | 9213a9e | 2006-09-17 16:28:10 +0000 | [diff] [blame] | 378 | |
Rob Landley | 7077ea3 | 2006-06-29 19:00:12 +0000 | [diff] [blame] | 379 | #if !defined(BLKSSZGET) |
| 380 | #define BLKSSZGET _IO(0x12, 104) |
| 381 | #endif |
Rob Landley | 22d26fc | 2006-06-15 15:49:36 +0000 | [diff] [blame] | 382 | #if !defined(BLKGETSIZE64) |
Rob Landley | 18958e9 | 2006-06-13 18:28:33 +0000 | [diff] [blame] | 383 | #define BLKGETSIZE64 _IOR(0x12,114,size_t) |
| 384 | #endif |
Rob Landley | 22d26fc | 2006-06-15 15:49:36 +0000 | [diff] [blame] | 385 | #endif |
Rob Landley | 18958e9 | 2006-06-13 18:28:33 +0000 | [diff] [blame] | 386 | |
Denis Vlasenko | f81e8db | 2009-04-09 12:35:13 +0000 | [diff] [blame] | 387 | #endif |