libc-internal.h 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417
  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. # include <stddef.h>
  163. # include <bits/types.h>
  164. # ifndef __ssize_t_defined
  165. typedef __ssize_t ssize_t;
  166. # define __ssize_t_defined
  167. # endif
  168. # include <bits/sigset.h>
  169. /* prototypes for internal use, please keep these in sync w/ updated headers */
  170. /* #include <fcntl.h> */
  171. #ifndef __USE_FILE_OFFSET64
  172. extern int __open (__const char *__file, int __oflag, ...) __nonnull ((1)) attribute_hidden;
  173. extern int __fcntl (int __fd, int __cmd, ...) attribute_hidden;
  174. #else
  175. # ifdef __REDIRECT
  176. extern int __REDIRECT (__open, (__const char *__file, int __oflag, ...), __open64)
  177. __nonnull ((1)) attribute_hidden;
  178. extern int __REDIRECT (__fcntl, (int __fd, int __cmd, ...), __fcntl64) attribute_hidden;
  179. # else
  180. # define __open __open64
  181. # define __fcntl __fcntl64
  182. # endif
  183. #endif
  184. #ifdef __USE_LARGEFILE64
  185. extern int __open64 (__const char *__file, int __oflag, ...) __nonnull ((1)) attribute_hidden;
  186. extern int __fcntl64 (int __fd, int __cmd, ...) attribute_hidden;
  187. #endif
  188. /* #include <string.h> */
  189. extern int __memcmp (__const void *__s1, __const void *__s2, size_t __n) attribute_hidden;
  190. extern void *__memcpy (void *__restrict __dest,
  191. __const void *__restrict __src, size_t __n) attribute_hidden;
  192. extern void *__memmove (void *__dest, __const void *__src, size_t __n) attribute_hidden;
  193. extern void *__memset (void *__s, int __c, size_t __n) attribute_hidden;
  194. extern char *__strcpy (char *__restrict __dest, __const char *__restrict __src) attribute_hidden;
  195. extern size_t __strlen (__const char *__s) attribute_hidden;
  196. extern int __strcmp (__const char *__s1, __const char *__s2) attribute_hidden;
  197. extern char *__strcat (char *__restrict __dest, __const char *__restrict __src) attribute_hidden;
  198. extern char *__strncpy (char *__restrict __dest,
  199. __const char *__restrict __src, size_t __n) attribute_hidden;
  200. extern char *__strchr (__const char *__s, int __c) attribute_hidden;
  201. extern char *__strrchr (__const char *__s, int __c) attribute_hidden;
  202. extern int __strncmp (__const char *__s1, __const char *__s2, size_t __n) attribute_hidden;
  203. extern char *__strdup (__const char *__s) attribute_hidden;
  204. extern int __strcasecmp (__const char *__s1, __const char *__s2) attribute_hidden;
  205. extern int __strncasecmp (__const char *__s1, __const char *__s2, size_t __n) attribute_hidden;
  206. /* sources are built w/ _GNU_SOURCE, this gets undefined */
  207. extern int __xpg_strerror_r_internal (int __errnum, char *__buf, size_t __buflen) attribute_hidden;
  208. extern char *__glibc_strerror_r_internal (int __errnum, char *__buf, size_t __buflen) attribute_hidden;
  209. /* #include <unistd.h> */
  210. extern ssize_t __read(int __fd, void *__buf, size_t __nbytes) attribute_hidden;
  211. extern ssize_t __write(int __fd, __const void *__buf, size_t __n) attribute_hidden;
  212. extern int __close(int __fd) attribute_hidden;
  213. extern __pid_t __getpid (void) attribute_hidden;
  214. extern void _exit_internal (int __status) __attribute__ ((__noreturn__)) attribute_hidden;
  215. #ifndef __USE_FILE_OFFSET64
  216. extern int __lockf (int __fd, int __cmd, __off_t __len) attribute_hidden;
  217. extern __off_t __lseek (int __fd, __off_t __offset, int __whence) __THROW attribute_hidden;
  218. #else
  219. # ifdef __REDIRECT
  220. extern int __REDIRECT (__lockf, (int __fd, int __cmd, __off64_t __len),
  221. __lockf64) attribute_hidden;
  222. extern __off64_t __REDIRECT (__lseek,
  223. (int __fd, __off64_t __offset, int __whence),
  224. __lseek64) attribute_hidden;
  225. # else
  226. # define __lockf __lockf64
  227. # define __lseek __lseek64
  228. # endif
  229. #endif
  230. #ifdef __USE_LARGEFILE64
  231. extern int __lockf64 (int __fd, int __cmd, __off64_t __len) attribute_hidden;
  232. extern __off64_t __lseek64 (int __fd, __off64_t __offset, int __whence) __THROW attribute_hidden;
  233. #endif
  234. /* #include <stdio.h> */
  235. extern void __perror (__const char *__s) attribute_hidden;
  236. extern int __printf (__const char *__restrict __format, ...) attribute_hidden;
  237. extern int __sprintf (char *__restrict __s,
  238. __const char *__restrict __format, ...) attribute_hidden;
  239. /* hack */
  240. #define abort __abort
  241. #define fprintf __fprintf
  242. #define fclose __fclose
  243. #ifndef __USE_FILE_OFFSET64
  244. #define fopen __fopen
  245. #else
  246. #define fopen __fopen64
  247. #endif
  248. #ifdef __USE_LARGEFILE64
  249. #define fopen64 __fopen64
  250. #endif
  251. /* #include <stdlib.h> */
  252. extern char *__getenv (__const char *__name) attribute_hidden;
  253. extern void __exit (int __status) __THROW __attribute__ ((__noreturn__)) attribute_hidden;
  254. /* #include <signal.h> */
  255. extern int __sigprocmask (int __how, __const __sigset_t *__restrict __set,
  256. __sigset_t *__restrict __oset) attribute_hidden;
  257. /* #include <sys/ioctl.h> */
  258. extern int __ioctl (int __fd, unsigned long int __request, ...) attribute_hidden;
  259. /* #include <sys/socket.h> */
  260. extern int __socket (int __domain, int __type, int __protocol) attribute_hidden;
  261. /* #include <sys/stat.h> */
  262. #ifndef __USE_FILE_OFFSET64
  263. struct stat;
  264. extern int __stat (__const char *__restrict __file,
  265. struct stat *__restrict __buf) __THROW __nonnull ((1, 2)) attribute_hidden;
  266. extern int __fstat (int __fd, struct stat *__buf) __THROW __nonnull ((2)) attribute_hidden;
  267. extern int __lstat (__const char *__restrict __file,
  268. struct stat *__restrict __buf) __THROW __nonnull ((1, 2)) attribute_hidden;
  269. #else
  270. # ifdef __REDIRECT_NTH
  271. extern int __REDIRECT_NTH (__stat, (__const char *__restrict __file,
  272. struct stat *__restrict __buf), __stat64)
  273. __nonnull ((1, 2)) attribute_hidden;
  274. extern int __REDIRECT_NTH (__fstat, (int __fd, struct stat *__buf), __fstat64)
  275. __nonnull ((2)) attribute_hidden;
  276. extern int __REDIRECT_NTH (__lstat,
  277. (__const char *__restrict __file,
  278. struct stat *__restrict __buf), __lstat64)
  279. __nonnull ((1, 2)) attribute_hidden;
  280. # else
  281. # define __stat __stat64
  282. # define __fstat __fstat64
  283. # define __lstat __lstat64
  284. # endif
  285. #endif
  286. #ifdef __USE_LARGEFILE64
  287. struct stat64;
  288. extern int __stat64 (__const char *__restrict __file,
  289. struct stat64 *__restrict __buf) __THROW __nonnull ((1, 2)) attribute_hidden;
  290. extern int __fstat64 (int __fd, struct stat64 *__buf) __THROW __nonnull ((2)) attribute_hidden;
  291. extern int __lstat64 (__const char *__restrict __file,
  292. struct stat64 *__restrict __buf)
  293. __THROW __nonnull ((1, 2)) attribute_hidden;
  294. #endif
  295. /* #include <sys/statfs.h> */
  296. #ifndef __USE_FILE_OFFSET64
  297. struct statfs;
  298. extern int __statfs (__const char *__file, struct statfs *__buf)
  299. __THROW __nonnull ((1, 2)) attribute_hidden;
  300. extern int __fstatfs (int __fildes, struct statfs *__buf)
  301. __THROW __nonnull ((2)) attribute_hidden;
  302. #else
  303. # ifdef __REDIRECT
  304. extern int __REDIRECT (__statfs,
  305. (__const char *__file, struct statfs *__buf),
  306. __statfs64) __nonnull ((1, 2)) attribute_hidden;
  307. extern int __REDIRECT (__fstatfs, (int __fildes, struct statfs *__buf),
  308. __fstatfs64) __nonnull ((2)) attribute_hidden;
  309. # else
  310. # define __statfs __statfs64
  311. # endif
  312. #endif
  313. #ifdef __USE_LARGEFILE64
  314. struct statfs64;
  315. extern int __statfs64 (__const char *__file, struct statfs64 *__buf)
  316. __THROW __nonnull ((1, 2)) attribute_hidden;
  317. extern int __fstatfs64 (int __fildes, struct statfs64 *__buf)
  318. __THROW __nonnull ((2)) attribute_hidden;
  319. #endif
  320. # if 0 /* undoable here */
  321. /* #include <dirent.h> */
  322. typedef struct __dirstream DIR;
  323. extern DIR *__opendir (__const char *__name) attribute_hidden;
  324. extern int __closedir (DIR *__dirp) attribute_hidden;
  325. /* #include <stdio.h> */
  326. extern int __vfprintf (FILE *__restrict __s, __const char *__restrict __format,
  327. __gnuc_va_list __arg) attribute_hidden;
  328. extern int __fprintf (FILE *__restrict __stream,
  329. __const char *__restrict __format, ...) attribute_hidden;
  330. extern int __fclose (FILE *__stream) attribute_hidden;
  331. #ifndef __USE_FILE_OFFSET64
  332. extern FILE *__fopen (__const char *__restrict __filename,
  333. __const char *__restrict __modes) attribute_hidden;
  334. #else
  335. # ifdef __REDIRECT
  336. extern FILE *__REDIRECT (__fopen, (__const char *__restrict __filename,
  337. __const char *__restrict __modes), __fopen64) attribute_hidden;
  338. # else
  339. # define __fopen __fopen64
  340. # endif
  341. #endif
  342. #ifdef __USE_LARGEFILE64
  343. extern FILE *__fopen64 (__const char *__restrict __filename,
  344. __const char *__restrict __modes) attribute_hidden;
  345. #endif
  346. /* #include <sys/time.h> */
  347. # define __need_timeval
  348. # include <bits/time.h>
  349. extern int __gettimeofday(struct timeval *__restrict __tv, *__restrict __timezone__ptr_t __tz) attribute_hidden;
  350. # endif
  351. /* #include <pthread.h> */
  352. # ifndef __UCLIBC_HAS_THREADS__
  353. # define __pthread_mutex_init(mutex, mutexattr) ((void)0)
  354. # define __pthread_mutex_lock(mutex) ((void)0)
  355. # define __pthread_mutex_trylock(mutex) ((void)0)
  356. # define __pthread_mutex_unlock(mutex) ((void)0)
  357. # endif
  358. # endif /* IS_IN_libc */
  359. #endif /* __ASSEMBLER__ */
  360. #endif /* _LIBC_INTERNAL_H */