libc-internal.h 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483
  1. /* Copyright (C) 1991,92,93,95,96,97,98,99,2000,2001 Free Software Foundation, Inc.
  2. This file is part of the GNU C Library.
  3. The GNU C Library is free software; you can redistribute it and/or
  4. modify it under the terms of the GNU Lesser General Public
  5. License as published by the Free Software Foundation; either
  6. version 2.1 of the License, or (at your option) any later version.
  7. The GNU C Library is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  10. Lesser General Public License for more details.
  11. You should have received a copy of the GNU Lesser General Public
  12. License along with the GNU C Library; if not, write to the Free
  13. Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
  14. 02111-1307 USA. */
  15. #ifndef _LIBC_INTERNAL_H
  16. #define _LIBC_INTERNAL_H 1
  17. #include <features.h>
  18. #ifndef __ASSEMBLER__
  19. /* GCC understands weak symbols and aliases; use its interface where
  20. possible, instead of embedded assembly language. */
  21. /* Define ALIASNAME as a strong alias for NAME. */
  22. # define strong_alias(name, aliasname) _strong_alias(name, aliasname)
  23. # define _strong_alias(name, aliasname) \
  24. extern __typeof (name) aliasname __attribute__ ((alias (#name)));
  25. /* This comes between the return type and function name in
  26. a function definition to make that definition weak. */
  27. # define weak_function __attribute__ ((weak))
  28. # define weak_const_function __attribute__ ((weak, __const__))
  29. /* Define ALIASNAME as a weak alias for NAME.
  30. If weak aliases are not available, this defines a strong alias. */
  31. # define weak_alias(name, aliasname) _weak_alias (name, aliasname)
  32. # define _weak_alias(name, aliasname) \
  33. extern __typeof (name) aliasname __attribute__ ((weak, alias (#name)));
  34. /* Declare SYMBOL as weak undefined symbol (resolved to 0 if not defined). */
  35. # define weak_extern(symbol) _weak_extern (weak symbol)
  36. # define _weak_extern(expr) _Pragma (#expr)
  37. #else /* __ASSEMBLER__ */
  38. #ifdef __SYMBOL_PREFIX
  39. # define C_SYMBOL_NAME(name) _##name
  40. #else
  41. # define C_SYMBOL_NAME(name) name
  42. #endif
  43. # define strong_alias(name, aliasname) \
  44. .global C_SYMBOL_NAME (aliasname) ; \
  45. .set C_SYMBOL_NAME(aliasname),C_SYMBOL_NAME(name)
  46. # define weak_alias(name, aliasname) \
  47. .weak C_SYMBOL_NAME(aliasname) ; \
  48. C_SYMBOL_NAME(aliasname) = C_SYMBOL_NAME(name)
  49. # define weak_extern(symbol) \
  50. .weak C_SYMBOL_NAME(symbol)
  51. #endif /* __ASSEMBLER__ */
  52. /* When a reference to SYMBOL is encountered, the linker will emit a
  53. warning message MSG. */
  54. #ifdef __HAVE_ELF__
  55. /* We want the .gnu.warning.SYMBOL section to be unallocated. */
  56. # define __make_section_unallocated(section_string) \
  57. asm (".section " section_string "\n\t.previous");
  58. /* Tacking on "\n\t#" to the section name makes gcc put it's bogus
  59. section attributes on what looks like a comment to the assembler. */
  60. # define __sec_comment "\n\t#"
  61. # ifdef __cris__
  62. # define link_warning(symbol, msg)
  63. # else
  64. # define link_warning(symbol, msg) \
  65. __make_section_unallocated (".gnu.warning." #symbol) \
  66. static const char __evoke_link_warning_##symbol[] \
  67. __attribute__ ((used, section (".gnu.warning." #symbol __sec_comment))) \
  68. = msg;
  69. # endif
  70. #else /* __HAVE_ELF__ */
  71. # define link_warning(symbol, msg) \
  72. asm (".stabs \"" msg "\",30,0,0,0\n\t" \
  73. ".stabs \"" __C_SYMBOL_PREFIX__ #symbol "\",1,0,0,0\n");
  74. #endif /* __HAVE_ELF__ */
  75. #ifndef weak_function
  76. /* If we do not have the __attribute__ ((weak)) syntax, there is no way we
  77. can define functions as weak symbols. The compiler will emit a `.globl'
  78. directive for the function symbol, and a `.weak' directive in addition
  79. will produce an error from the assembler. */
  80. # define weak_function /* empty */
  81. # define weak_const_function /* empty */
  82. #endif
  83. /* On some platforms we can make internal function calls (i.e., calls of
  84. functions not exported) a bit faster by using a different calling
  85. convention. */
  86. #if 0 /*def __i386__*/
  87. # define internal_function __attribute__ ((regparm (3), stdcall))
  88. #endif
  89. #ifndef internal_function
  90. # define internal_function /* empty */
  91. #endif
  92. #ifndef NOT_IN_libc
  93. # define IS_IN_libc 1
  94. #endif
  95. /* Prepare for the case that `__builtin_expect' is not available. */
  96. #if __GNUC__ == 2 && __GNUC_MINOR__ < 96
  97. # define __builtin_expect(x, expected_value) (x)
  98. #endif
  99. #ifndef likely
  100. # define likely(x) __builtin_expect((!!(x)),1)
  101. #endif
  102. #ifndef unlikely
  103. # define unlikely(x) __builtin_expect((!!(x)),0)
  104. #endif
  105. #ifndef __LINUX_COMPILER_H
  106. # define __LINUX_COMPILER_H
  107. #endif
  108. #ifndef __cast__
  109. # define __cast__(_to)
  110. #endif
  111. #define attribute_unused __attribute__ ((unused))
  112. /* Arrange to hide uClibc internals */
  113. #if __GNUC_PREREQ (3, 3)
  114. # define attribute_hidden __attribute__ ((visibility ("hidden")))
  115. #else
  116. # define attribute_hidden
  117. #endif
  118. #ifndef __ASSEMBLER__
  119. # define hidden_strong_alias(name, aliasname) _hidden_strong_alias(name, aliasname)
  120. # define _hidden_strong_alias(name, aliasname) \
  121. extern __typeof (name) aliasname __attribute__ ((alias (#name))) attribute_hidden;
  122. # define hidden_weak_alias(name, aliasname) _hidden_weak_alias (name, aliasname)
  123. # define _hidden_weak_alias(name, aliasname) \
  124. extern __typeof (name) aliasname __attribute__ ((weak, alias (#name))) attribute_hidden;
  125. #else /* __ASSEMBLER__ */
  126. # define hidden_strong_alias(name, aliasname) \
  127. .global C_SYMBOL_NAME (aliasname) ; \
  128. .hidden C_SYMBOL_NAME (aliasname) ; \
  129. .set C_SYMBOL_NAME(aliasname),C_SYMBOL_NAME(name)
  130. # define hidden_weak_alias(name, aliasname) \
  131. .weak C_SYMBOL_NAME(aliasname) ; \
  132. .hidden C_SYMBOL_NAME(aliasname) ; \
  133. C_SYMBOL_NAME(aliasname) = C_SYMBOL_NAME(name)
  134. #endif /* __ASSEMBLER__ */
  135. #ifdef __UCLIBC_BUILD_RELRO__
  136. # define attribute_relro __attribute__ ((section (".data.rel.ro")))
  137. #else
  138. # define attribute_relro
  139. #endif
  140. #ifdef __GNUC__
  141. # define attribute_noreturn __attribute__ ((__noreturn__))
  142. #else
  143. # define attribute_noreturn
  144. #endif
  145. #ifdef __UCLIBC_HAS_THREADS_NATIVE__
  146. # define attribute_tls_model_ie __attribute__ ((tls_model ("initial-exec")))
  147. #endif
  148. /* Pull in things like __attribute_used__ */
  149. #include <sys/cdefs.h>
  150. /* --- this is added to integrate linuxthreads */
  151. #define __USE_UNIX98 1
  152. #ifndef __ASSEMBLER__
  153. # ifdef IS_IN_libc
  154. # define __UC(N) __ ## N
  155. # define __UC_ALIAS(N) strong_alias( __ ## N , N )
  156. # if defined __UCLIBC_HAS_XLOCALE__ && defined __UCLIBC_DO_XLOCALE
  157. # define __UCXL(N) __ ## N ## _l
  158. # define __UCXL_ALIAS(N) strong_alias ( __ ## N ## _l , N ## _l )
  159. # else
  160. # define __UCXL(N) __UC(N)
  161. # define __UCXL_ALIAS(N) __UC_ALIAS(N)
  162. # endif
  163. # define __need_size_t
  164. # ifdef __UCLIBC_HAS_WCHAR__
  165. # define __need_wchar_t
  166. # define __need_wint_t
  167. # endif
  168. # include <stddef.h>
  169. # include <bits/types.h>
  170. # ifndef __ssize_t_defined
  171. typedef __ssize_t ssize_t;
  172. # define __ssize_t_defined
  173. # endif
  174. # include <bits/sigset.h>
  175. /* prototypes for internal use, please keep these in sync w/ updated headers */
  176. /* #include <fcntl.h> */
  177. #ifndef __USE_FILE_OFFSET64
  178. extern int __open (__const char *__file, int __oflag, ...) __nonnull ((1)) attribute_hidden;
  179. extern int __fcntl (int __fd, int __cmd, ...) attribute_hidden;
  180. #else
  181. # ifdef __REDIRECT
  182. extern int __REDIRECT (__open, (__const char *__file, int __oflag, ...), __open64)
  183. __nonnull ((1)) attribute_hidden;
  184. extern int __REDIRECT (__fcntl, (int __fd, int __cmd, ...), __fcntl64) attribute_hidden;
  185. # else
  186. # define __open __open64
  187. # define __fcntl __fcntl64
  188. # endif
  189. #endif
  190. #ifdef __USE_LARGEFILE64
  191. extern int __open64 (__const char *__file, int __oflag, ...) __nonnull ((1)) attribute_hidden;
  192. extern int __fcntl64 (int __fd, int __cmd, ...) attribute_hidden;
  193. #endif
  194. /* #include <string.h> */
  195. extern int __memcmp (__const void *__s1, __const void *__s2, size_t __n) attribute_hidden;
  196. extern void *__memcpy (void *__restrict __dest,
  197. __const void *__restrict __src, size_t __n) attribute_hidden;
  198. extern void *__memmove (void *__dest, __const void *__src, size_t __n) attribute_hidden;
  199. extern void *__memset (void *__s, int __c, size_t __n) attribute_hidden;
  200. extern char *__strcpy (char *__restrict __dest, __const char *__restrict __src) attribute_hidden;
  201. extern size_t __strlen (__const char *__s) attribute_hidden;
  202. extern int __strcmp (__const char *__s1, __const char *__s2) attribute_hidden;
  203. extern char *__strcat (char *__restrict __dest, __const char *__restrict __src) attribute_hidden;
  204. extern char *__strncpy (char *__restrict __dest,
  205. __const char *__restrict __src, size_t __n) attribute_hidden;
  206. extern char *__strchr (__const char *__s, int __c) attribute_hidden;
  207. extern char *__strrchr (__const char *__s, int __c) attribute_hidden;
  208. extern int __strncmp (__const char *__s1, __const char *__s2, size_t __n) attribute_hidden;
  209. extern char *__strdup (__const char *__s) attribute_hidden;
  210. extern int __strcasecmp (__const char *__s1, __const char *__s2) attribute_hidden;
  211. extern int __strncasecmp (__const char *__s1, __const char *__s2, size_t __n) attribute_hidden;
  212. extern void *__rawmemchr (__const void *__s, int __c) __THROW __attribute_pure__ __nonnull ((1)) attribute_hidden;
  213. extern size_t __strspn (__const char *__s, __const char *__accept)
  214. __THROW __attribute_pure__ __nonnull ((1, 2)) attribute_hidden;
  215. extern char *__strpbrk (__const char *__s, __const char *__accept)
  216. __THROW __attribute_pure__ __nonnull ((1, 2)) attribute_hidden;
  217. extern size_t __strnlen (__const char *__string, size_t __maxlen)
  218. __THROW __attribute_pure__ __nonnull ((1)) attribute_hidden;
  219. extern char *__strtok_r (char *__restrict __s, __const char *__restrict __delim,
  220. char **__restrict __save_ptr) __THROW __nonnull ((2, 3)) attribute_hidden;
  221. /* sources are built w/ _GNU_SOURCE, this gets undefined */
  222. extern int __xpg_strerror_r_internal (int __errnum, char *__buf, size_t __buflen) attribute_hidden;
  223. extern char *__glibc_strerror_r_internal (int __errnum, char *__buf, size_t __buflen) attribute_hidden;
  224. /* ctype.h */
  225. extern int __tolower (int __c) __THROW attribute_hidden;
  226. extern int __toupper (int __c) __THROW attribute_hidden;
  227. #ifdef __UCLIBC_HAS_WCHAR__
  228. /* wchar.h */
  229. extern size_t __wcslen (__const wchar_t *__s) __THROW __attribute_pure__ attribute_hidden;
  230. extern wchar_t *__wcscpy (wchar_t *__restrict __dest, __const wchar_t *__restrict __src) __THROW attribute_hidden;
  231. extern size_t __wcsspn (__const wchar_t *__wcs, __const wchar_t *__accept)
  232. __THROW __attribute_pure__ attribute_hidden;
  233. extern wchar_t *__wcspbrk (__const wchar_t *__wcs, __const wchar_t *__accept)
  234. __THROW __attribute_pure__ attribute_hidden;
  235. /* wctype.h */
  236. extern wint_t __towlower (wint_t __wc) __THROW attribute_hidden;
  237. #endif
  238. /* #include <unistd.h> */
  239. extern ssize_t __read(int __fd, void *__buf, size_t __nbytes) attribute_hidden;
  240. extern ssize_t __write(int __fd, __const void *__buf, size_t __n) attribute_hidden;
  241. extern int __close(int __fd) attribute_hidden;
  242. extern __pid_t __getpid (void) attribute_hidden;
  243. extern void _exit_internal (int __status) __attribute__ ((__noreturn__)) attribute_hidden;
  244. #ifndef __USE_FILE_OFFSET64
  245. extern int __lockf (int __fd, int __cmd, __off_t __len) attribute_hidden;
  246. extern __off_t __lseek (int __fd, __off_t __offset, int __whence) __THROW attribute_hidden;
  247. #else
  248. # ifdef __REDIRECT
  249. extern int __REDIRECT (__lockf, (int __fd, int __cmd, __off64_t __len),
  250. __lockf64) attribute_hidden;
  251. extern __off64_t __REDIRECT (__lseek,
  252. (int __fd, __off64_t __offset, int __whence),
  253. __lseek64) attribute_hidden;
  254. # else
  255. # define __lockf __lockf64
  256. # define __lseek __lseek64
  257. # endif
  258. #endif
  259. #ifdef __USE_LARGEFILE64
  260. extern int __lockf64 (int __fd, int __cmd, __off64_t __len) attribute_hidden;
  261. extern __off64_t __lseek64 (int __fd, __off64_t __offset, int __whence) __THROW attribute_hidden;
  262. #endif
  263. /* #include <stdio.h> */
  264. extern void __perror (__const char *__s) attribute_hidden;
  265. extern int __printf (__const char *__restrict __format, ...) attribute_hidden;
  266. extern int __sprintf (char *__restrict __s,
  267. __const char *__restrict __format, ...) attribute_hidden;
  268. /* hack */
  269. #define abort __abort
  270. #define fprintf __fprintf
  271. #define fclose __fclose
  272. #ifndef __USE_FILE_OFFSET64
  273. #define fopen __fopen
  274. #else
  275. #define fopen __fopen64
  276. #endif
  277. #ifdef __USE_LARGEFILE64
  278. #define fopen64 __fopen64
  279. #endif
  280. /* #include <stdlib.h> */
  281. extern char *__getenv (__const char *__name) attribute_hidden;
  282. extern void __exit (int __status) __THROW __attribute__ ((__noreturn__)) attribute_hidden;
  283. /* #include <signal.h> */
  284. extern int __sigprocmask (int __how, __const __sigset_t *__restrict __set,
  285. __sigset_t *__restrict __oset) attribute_hidden;
  286. /* #include <sys/ioctl.h> */
  287. extern int __ioctl (int __fd, unsigned long int __request, ...) attribute_hidden;
  288. /* #include <sys/socket.h> */
  289. extern int __socket (int __domain, int __type, int __protocol) attribute_hidden;
  290. /* #include <sys/stat.h> */
  291. #ifndef __USE_FILE_OFFSET64
  292. struct stat;
  293. extern int __stat (__const char *__restrict __file,
  294. struct stat *__restrict __buf) __THROW __nonnull ((1, 2)) attribute_hidden;
  295. extern int __fstat (int __fd, struct stat *__buf) __THROW __nonnull ((2)) attribute_hidden;
  296. extern int __lstat (__const char *__restrict __file,
  297. struct stat *__restrict __buf) __THROW __nonnull ((1, 2)) attribute_hidden;
  298. #else
  299. # ifdef __REDIRECT_NTH
  300. extern int __REDIRECT_NTH (__stat, (__const char *__restrict __file,
  301. struct stat *__restrict __buf), __stat64)
  302. __nonnull ((1, 2)) attribute_hidden;
  303. extern int __REDIRECT_NTH (__fstat, (int __fd, struct stat *__buf), __fstat64)
  304. __nonnull ((2)) attribute_hidden;
  305. extern int __REDIRECT_NTH (__lstat,
  306. (__const char *__restrict __file,
  307. struct stat *__restrict __buf), __lstat64)
  308. __nonnull ((1, 2)) attribute_hidden;
  309. # else
  310. # define __stat __stat64
  311. # define __fstat __fstat64
  312. # define __lstat __lstat64
  313. # endif
  314. #endif
  315. #ifdef __USE_LARGEFILE64
  316. struct stat64;
  317. extern int __stat64 (__const char *__restrict __file,
  318. struct stat64 *__restrict __buf) __THROW __nonnull ((1, 2)) attribute_hidden;
  319. extern int __fstat64 (int __fd, struct stat64 *__buf) __THROW __nonnull ((2)) attribute_hidden;
  320. extern int __lstat64 (__const char *__restrict __file,
  321. struct stat64 *__restrict __buf)
  322. __THROW __nonnull ((1, 2)) attribute_hidden;
  323. #endif
  324. /* #include <sys/statfs.h> */
  325. #ifndef __USE_FILE_OFFSET64
  326. struct statfs;
  327. extern int __statfs (__const char *__file, struct statfs *__buf)
  328. __THROW __nonnull ((1, 2)) attribute_hidden;
  329. extern int __fstatfs (int __fildes, struct statfs *__buf)
  330. __THROW __nonnull ((2)) attribute_hidden;
  331. #else
  332. # ifdef __REDIRECT
  333. extern int __REDIRECT (__statfs,
  334. (__const char *__file, struct statfs *__buf),
  335. __statfs64) __nonnull ((1, 2)) attribute_hidden;
  336. extern int __REDIRECT (__fstatfs, (int __fildes, struct statfs *__buf),
  337. __fstatfs64) __nonnull ((2)) attribute_hidden;
  338. # else
  339. # define __statfs __statfs64
  340. # endif
  341. #endif
  342. #ifdef __USE_LARGEFILE64
  343. struct statfs64;
  344. extern int __statfs64 (__const char *__file, struct statfs64 *__buf)
  345. __THROW __nonnull ((1, 2)) attribute_hidden;
  346. extern int __fstatfs64 (int __fildes, struct statfs64 *__buf)
  347. __THROW __nonnull ((2)) attribute_hidden;
  348. #endif
  349. # if 0 /* undoable here */
  350. /* #include <dirent.h> */
  351. typedef struct __dirstream DIR;
  352. extern DIR *__opendir (__const char *__name) attribute_hidden;
  353. extern int __closedir (DIR *__dirp) attribute_hidden;
  354. /* #include <stdio.h> */
  355. extern int __vfprintf (FILE *__restrict __s, __const char *__restrict __format,
  356. __gnuc_va_list __arg) attribute_hidden;
  357. extern int __fprintf (FILE *__restrict __stream,
  358. __const char *__restrict __format, ...) attribute_hidden;
  359. extern int __fclose (FILE *__stream) attribute_hidden;
  360. #ifndef __USE_FILE_OFFSET64
  361. extern FILE *__fopen (__const char *__restrict __filename,
  362. __const char *__restrict __modes) attribute_hidden;
  363. #else
  364. # ifdef __REDIRECT
  365. extern FILE *__REDIRECT (__fopen, (__const char *__restrict __filename,
  366. __const char *__restrict __modes), __fopen64) attribute_hidden;
  367. # else
  368. # define __fopen __fopen64
  369. # endif
  370. #endif
  371. #ifdef __USE_LARGEFILE64
  372. extern FILE *__fopen64 (__const char *__restrict __filename,
  373. __const char *__restrict __modes) attribute_hidden;
  374. #endif
  375. /* #include <sys/time.h> */
  376. # define __need_timeval
  377. # include <bits/time.h>
  378. extern int __gettimeofday(struct timeval *__restrict __tv, *__restrict __timezone__ptr_t __tz) attribute_hidden;
  379. # endif
  380. /* #include <pthread.h> */
  381. # ifndef __UCLIBC_HAS_THREADS__
  382. # define __pthread_mutex_init(mutex, mutexattr) ((void)0)
  383. # define __pthread_mutex_lock(mutex) ((void)0)
  384. # define __pthread_mutex_trylock(mutex) ((void)0)
  385. # define __pthread_mutex_unlock(mutex) ((void)0)
  386. # endif
  387. /* internal access to program name */
  388. extern const char *__uclibc_progname attribute_hidden;
  389. # endif /* IS_IN_libc */
  390. /* #include <alloca.h> */
  391. #include <bits/stackinfo.h>
  392. #if _STACK_GROWS_DOWN
  393. # define extend_alloca(buf, len, newlen) \
  394. (__typeof (buf)) ({ size_t __newlen = (newlen); \
  395. char *__newbuf = alloca (__newlen); \
  396. if (__newbuf + __newlen == (char *) buf) \
  397. len += __newlen; \
  398. else \
  399. len = __newlen; \
  400. __newbuf; })
  401. #elif _STACK_GROWS_UP
  402. # define extend_alloca(buf, len, newlen) \
  403. (__typeof (buf)) ({ size_t __newlen = (newlen); \
  404. char *__newbuf = alloca (__newlen); \
  405. char *__buf = (buf); \
  406. if (__buf + __newlen == __newbuf) \
  407. { \
  408. len += __newlen; \
  409. __newbuf = __buf; \
  410. } \
  411. else \
  412. len = __newlen; \
  413. __newbuf; })
  414. #else
  415. # warning unknown stack
  416. # define extend_alloca(buf, len, newlen) \
  417. alloca (((len) = (newlen)))
  418. #endif
  419. #endif /* __ASSEMBLER__ */
  420. #endif /* _LIBC_INTERNAL_H */