libc-internal.h 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449
  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. #define hidden_def(name) extern __typeof (name) name attribute_hidden;
  119. #ifndef __ASSEMBLER__
  120. # define hidden_strong_alias(name, aliasname) _hidden_strong_alias(name, aliasname)
  121. # define _hidden_strong_alias(name, aliasname) \
  122. extern __typeof (name) aliasname __attribute__ ((alias (#name))) attribute_hidden;
  123. # define hidden_weak_alias(name, aliasname) _hidden_weak_alias (name, aliasname)
  124. # define _hidden_weak_alias(name, aliasname) \
  125. extern __typeof (name) aliasname __attribute__ ((weak, alias (#name))) attribute_hidden;
  126. #else /* __ASSEMBLER__ */
  127. # define hidden_strong_alias(name, aliasname) \
  128. .global C_SYMBOL_NAME (aliasname) ; \
  129. .hidden C_SYMBOL_NAME (aliasname) ; \
  130. .set C_SYMBOL_NAME(aliasname),C_SYMBOL_NAME(name)
  131. # define hidden_weak_alias(name, aliasname) \
  132. .weak C_SYMBOL_NAME(aliasname) ; \
  133. .hidden C_SYMBOL_NAME(aliasname) ; \
  134. C_SYMBOL_NAME(aliasname) = C_SYMBOL_NAME(name)
  135. #endif /* __ASSEMBLER__ */
  136. #ifdef __UCLIBC_BUILD_RELRO__
  137. # define attribute_relro __attribute__ ((section (".data.rel.ro")))
  138. #else
  139. # define attribute_relro
  140. #endif
  141. #ifdef __GNUC__
  142. # define attribute_noreturn __attribute__ ((__noreturn__))
  143. #else
  144. # define attribute_noreturn
  145. #endif
  146. /* Pull in things like __attribute_used__ */
  147. #include <sys/cdefs.h>
  148. /* --- this is added to integrate linuxthreads */
  149. #define __USE_UNIX98 1
  150. #ifndef __ASSEMBLER__
  151. # ifdef IS_IN_libc
  152. # define __UC(N) __ ## N
  153. # define __UC_ALIAS(N) strong_alias( __ ## N , N )
  154. # if defined __UCLIBC_HAS_XLOCALE__ && defined __UCLIBC_DO_XLOCALE
  155. # define __UCXL(N) __ ## N ## _l
  156. # define __UCXL_ALIAS(N) strong_alias ( __ ## N ## _l , N ## _l )
  157. # else
  158. # define __UCXL(N) __UC(N)
  159. # define __UCXL_ALIAS(N) __UC_ALIAS(N)
  160. # endif
  161. # define __need_size_t
  162. # ifdef __UCLIBC_HAS_WCHAR__
  163. # define __need_wchar_t
  164. # define __need_wint_t
  165. # endif
  166. # include <stddef.h>
  167. # include <bits/types.h>
  168. # ifndef __ssize_t_defined
  169. typedef __ssize_t ssize_t;
  170. # define __ssize_t_defined
  171. # endif
  172. # include <bits/sigset.h>
  173. /* prototypes for internal use, please keep these in sync w/ updated headers */
  174. /* #include <fcntl.h> */
  175. #ifndef __USE_FILE_OFFSET64
  176. extern int __open (__const char *__file, int __oflag, ...) __nonnull ((1)) attribute_hidden;
  177. extern int __fcntl (int __fd, int __cmd, ...) attribute_hidden;
  178. #else
  179. # ifdef __REDIRECT
  180. extern int __REDIRECT (__open, (__const char *__file, int __oflag, ...), __open64)
  181. __nonnull ((1)) attribute_hidden;
  182. extern int __REDIRECT (__fcntl, (int __fd, int __cmd, ...), __fcntl64) attribute_hidden;
  183. # else
  184. # define __open __open64
  185. # define __fcntl __fcntl64
  186. # endif
  187. #endif
  188. #ifdef __USE_LARGEFILE64
  189. extern int __open64 (__const char *__file, int __oflag, ...) __nonnull ((1)) attribute_hidden;
  190. extern int __fcntl64 (int __fd, int __cmd, ...) attribute_hidden;
  191. #endif
  192. /* #include <string.h> */
  193. extern int __memcmp (__const void *__s1, __const void *__s2, size_t __n) attribute_hidden;
  194. extern void *__memcpy (void *__restrict __dest,
  195. __const void *__restrict __src, size_t __n) attribute_hidden;
  196. extern void *__memmove (void *__dest, __const void *__src, size_t __n) attribute_hidden;
  197. extern void *__memset (void *__s, int __c, size_t __n) attribute_hidden;
  198. extern char *__strcpy (char *__restrict __dest, __const char *__restrict __src) attribute_hidden;
  199. extern size_t __strlen (__const char *__s) attribute_hidden;
  200. extern int __strcmp (__const char *__s1, __const char *__s2) attribute_hidden;
  201. extern char *__strcat (char *__restrict __dest, __const char *__restrict __src) attribute_hidden;
  202. extern char *__strncpy (char *__restrict __dest,
  203. __const char *__restrict __src, size_t __n) attribute_hidden;
  204. extern char *__strchr (__const char *__s, int __c) attribute_hidden;
  205. extern char *__strrchr (__const char *__s, int __c) attribute_hidden;
  206. extern int __strncmp (__const char *__s1, __const char *__s2, size_t __n) attribute_hidden;
  207. extern char *__strdup (__const char *__s) attribute_hidden;
  208. extern int __strcasecmp (__const char *__s1, __const char *__s2) attribute_hidden;
  209. extern int __strncasecmp (__const char *__s1, __const char *__s2, size_t __n) attribute_hidden;
  210. extern void *__rawmemchr (__const void *__s, int __c) __THROW __attribute_pure__ __nonnull ((1)) attribute_hidden;
  211. extern size_t __strspn (__const char *__s, __const char *__accept)
  212. __THROW __attribute_pure__ __nonnull ((1, 2)) attribute_hidden;
  213. extern char *__strpbrk (__const char *__s, __const char *__accept)
  214. __THROW __attribute_pure__ __nonnull ((1, 2)) attribute_hidden;
  215. extern size_t __strnlen (__const char *__string, size_t __maxlen)
  216. __THROW __attribute_pure__ __nonnull ((1)) attribute_hidden;
  217. extern char *__strtok_r (char *__restrict __s, __const char *__restrict __delim,
  218. char **__restrict __save_ptr) __THROW __nonnull ((2, 3)) attribute_hidden;
  219. /* sources are built w/ _GNU_SOURCE, this gets undefined */
  220. extern int __xpg_strerror_r_internal (int __errnum, char *__buf, size_t __buflen) attribute_hidden;
  221. extern char *__glibc_strerror_r_internal (int __errnum, char *__buf, size_t __buflen) attribute_hidden;
  222. /* ctype.h */
  223. extern int __tolower (int __c) __THROW attribute_hidden;
  224. extern int __toupper (int __c) __THROW attribute_hidden;
  225. #ifdef __UCLIBC_HAS_WCHAR__
  226. /* wchar.h */
  227. extern size_t __wcslen (__const wchar_t *__s) __THROW __attribute_pure__ attribute_hidden;
  228. extern wchar_t *__wcscpy (wchar_t *__restrict __dest, __const wchar_t *__restrict __src) __THROW attribute_hidden;
  229. extern size_t __wcsspn (__const wchar_t *__wcs, __const wchar_t *__accept)
  230. __THROW __attribute_pure__ attribute_hidden;
  231. extern wchar_t *__wcspbrk (__const wchar_t *__wcs, __const wchar_t *__accept)
  232. __THROW __attribute_pure__ attribute_hidden;
  233. /* wctype.h */
  234. extern wint_t __towlower (wint_t __wc) __THROW attribute_hidden;
  235. #endif
  236. /* #include <unistd.h> */
  237. extern ssize_t __read(int __fd, void *__buf, size_t __nbytes) attribute_hidden;
  238. extern ssize_t __write(int __fd, __const void *__buf, size_t __n) attribute_hidden;
  239. extern int __close(int __fd) attribute_hidden;
  240. extern __pid_t __getpid (void) attribute_hidden;
  241. extern void _exit_internal (int __status) __attribute__ ((__noreturn__)) attribute_hidden;
  242. #ifndef __USE_FILE_OFFSET64
  243. extern int __lockf (int __fd, int __cmd, __off_t __len) attribute_hidden;
  244. extern __off_t __lseek (int __fd, __off_t __offset, int __whence) __THROW attribute_hidden;
  245. #else
  246. # ifdef __REDIRECT
  247. extern int __REDIRECT (__lockf, (int __fd, int __cmd, __off64_t __len),
  248. __lockf64) attribute_hidden;
  249. extern __off64_t __REDIRECT (__lseek,
  250. (int __fd, __off64_t __offset, int __whence),
  251. __lseek64) attribute_hidden;
  252. # else
  253. # define __lockf __lockf64
  254. # define __lseek __lseek64
  255. # endif
  256. #endif
  257. #ifdef __USE_LARGEFILE64
  258. extern int __lockf64 (int __fd, int __cmd, __off64_t __len) attribute_hidden;
  259. extern __off64_t __lseek64 (int __fd, __off64_t __offset, int __whence) __THROW attribute_hidden;
  260. #endif
  261. /* #include <stdio.h> */
  262. extern void __perror (__const char *__s) attribute_hidden;
  263. extern int __printf (__const char *__restrict __format, ...) attribute_hidden;
  264. extern int __sprintf (char *__restrict __s,
  265. __const char *__restrict __format, ...) attribute_hidden;
  266. /* hack */
  267. #define abort __abort
  268. #define fprintf __fprintf
  269. #define fclose __fclose
  270. #ifndef __USE_FILE_OFFSET64
  271. #define fopen __fopen
  272. #else
  273. #define fopen __fopen64
  274. #endif
  275. #ifdef __USE_LARGEFILE64
  276. #define fopen64 __fopen64
  277. #endif
  278. /* #include <stdlib.h> */
  279. extern char *__getenv (__const char *__name) attribute_hidden;
  280. extern void __exit (int __status) __THROW __attribute__ ((__noreturn__)) attribute_hidden;
  281. /* #include <signal.h> */
  282. extern int __sigprocmask (int __how, __const __sigset_t *__restrict __set,
  283. __sigset_t *__restrict __oset) attribute_hidden;
  284. /* #include <sys/ioctl.h> */
  285. extern int __ioctl (int __fd, unsigned long int __request, ...) attribute_hidden;
  286. /* #include <sys/socket.h> */
  287. extern int __socket (int __domain, int __type, int __protocol) attribute_hidden;
  288. /* #include <sys/stat.h> */
  289. #ifndef __USE_FILE_OFFSET64
  290. struct stat;
  291. extern int __stat (__const char *__restrict __file,
  292. struct stat *__restrict __buf) __THROW __nonnull ((1, 2)) attribute_hidden;
  293. extern int __fstat (int __fd, struct stat *__buf) __THROW __nonnull ((2)) attribute_hidden;
  294. extern int __lstat (__const char *__restrict __file,
  295. struct stat *__restrict __buf) __THROW __nonnull ((1, 2)) attribute_hidden;
  296. #else
  297. # ifdef __REDIRECT_NTH
  298. extern int __REDIRECT_NTH (__stat, (__const char *__restrict __file,
  299. struct stat *__restrict __buf), __stat64)
  300. __nonnull ((1, 2)) attribute_hidden;
  301. extern int __REDIRECT_NTH (__fstat, (int __fd, struct stat *__buf), __fstat64)
  302. __nonnull ((2)) attribute_hidden;
  303. extern int __REDIRECT_NTH (__lstat,
  304. (__const char *__restrict __file,
  305. struct stat *__restrict __buf), __lstat64)
  306. __nonnull ((1, 2)) attribute_hidden;
  307. # else
  308. # define __stat __stat64
  309. # define __fstat __fstat64
  310. # define __lstat __lstat64
  311. # endif
  312. #endif
  313. #ifdef __USE_LARGEFILE64
  314. struct stat64;
  315. extern int __stat64 (__const char *__restrict __file,
  316. struct stat64 *__restrict __buf) __THROW __nonnull ((1, 2)) attribute_hidden;
  317. extern int __fstat64 (int __fd, struct stat64 *__buf) __THROW __nonnull ((2)) attribute_hidden;
  318. extern int __lstat64 (__const char *__restrict __file,
  319. struct stat64 *__restrict __buf)
  320. __THROW __nonnull ((1, 2)) attribute_hidden;
  321. #endif
  322. /* #include <sys/statfs.h> */
  323. #ifndef __USE_FILE_OFFSET64
  324. struct statfs;
  325. extern int __statfs (__const char *__file, struct statfs *__buf)
  326. __THROW __nonnull ((1, 2)) attribute_hidden;
  327. extern int __fstatfs (int __fildes, struct statfs *__buf)
  328. __THROW __nonnull ((2)) attribute_hidden;
  329. #else
  330. # ifdef __REDIRECT
  331. extern int __REDIRECT (__statfs,
  332. (__const char *__file, struct statfs *__buf),
  333. __statfs64) __nonnull ((1, 2)) attribute_hidden;
  334. extern int __REDIRECT (__fstatfs, (int __fildes, struct statfs *__buf),
  335. __fstatfs64) __nonnull ((2)) attribute_hidden;
  336. # else
  337. # define __statfs __statfs64
  338. # endif
  339. #endif
  340. #ifdef __USE_LARGEFILE64
  341. struct statfs64;
  342. extern int __statfs64 (__const char *__file, struct statfs64 *__buf)
  343. __THROW __nonnull ((1, 2)) attribute_hidden;
  344. extern int __fstatfs64 (int __fildes, struct statfs64 *__buf)
  345. __THROW __nonnull ((2)) attribute_hidden;
  346. #endif
  347. # if 0 /* undoable here */
  348. /* #include <dirent.h> */
  349. typedef struct __dirstream DIR;
  350. extern DIR *__opendir (__const char *__name) attribute_hidden;
  351. extern int __closedir (DIR *__dirp) attribute_hidden;
  352. /* #include <stdio.h> */
  353. extern int __vfprintf (FILE *__restrict __s, __const char *__restrict __format,
  354. __gnuc_va_list __arg) attribute_hidden;
  355. extern int __fprintf (FILE *__restrict __stream,
  356. __const char *__restrict __format, ...) attribute_hidden;
  357. extern int __fclose (FILE *__stream) attribute_hidden;
  358. #ifndef __USE_FILE_OFFSET64
  359. extern FILE *__fopen (__const char *__restrict __filename,
  360. __const char *__restrict __modes) attribute_hidden;
  361. #else
  362. # ifdef __REDIRECT
  363. extern FILE *__REDIRECT (__fopen, (__const char *__restrict __filename,
  364. __const char *__restrict __modes), __fopen64) attribute_hidden;
  365. # else
  366. # define __fopen __fopen64
  367. # endif
  368. #endif
  369. #ifdef __USE_LARGEFILE64
  370. extern FILE *__fopen64 (__const char *__restrict __filename,
  371. __const char *__restrict __modes) attribute_hidden;
  372. #endif
  373. /* #include <sys/time.h> */
  374. # define __need_timeval
  375. # include <bits/time.h>
  376. extern int __gettimeofday(struct timeval *__restrict __tv, *__restrict __timezone__ptr_t __tz) attribute_hidden;
  377. # endif
  378. /* #include <pthread.h> */
  379. # ifndef __UCLIBC_HAS_THREADS__
  380. # define __pthread_mutex_init(mutex, mutexattr) ((void)0)
  381. # define __pthread_mutex_lock(mutex) ((void)0)
  382. # define __pthread_mutex_trylock(mutex) ((void)0)
  383. # define __pthread_mutex_unlock(mutex) ((void)0)
  384. # endif
  385. /* internal access to program name */
  386. extern const char *__uclibc_progname attribute_hidden;
  387. # endif /* IS_IN_libc */
  388. #endif /* __ASSEMBLER__ */
  389. #endif /* _LIBC_INTERNAL_H */