dl-syscall.h 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207
  1. /* vi: set sw=4 ts=4: */
  2. /*
  3. * Copyright (C) 2000-2005 by Erik Andersen <andersen@codepoet.org>
  4. *
  5. * GNU Lesser General Public License version 2.1 or later.
  6. */
  7. #ifndef _LD_SYSCALL_H_
  8. #define _LD_SYSCALL_H_
  9. /* Pull in the arch specific syscall implementation */
  10. #include <dl-syscalls.h>
  11. /* For MAP_ANONYMOUS -- differs between platforms */
  12. #define _SYS_MMAN_H 1
  13. #include <bits/mman.h>
  14. /* Pull in whatever this particular arch's kernel thinks the kernel version of
  15. * struct stat should look like. It turns out that each arch has a different
  16. * opinion on the subject, and different kernel revs use different names... */
  17. #if defined(__sparc_v9__) && (__WORDSIZE == 64)
  18. #define kernel_stat64 stat
  19. #else
  20. #define kernel_stat stat
  21. #endif
  22. #include <bits/kernel_stat.h>
  23. #include <bits/kernel_types.h>
  24. /* _dl_open() parameters */
  25. #define O_RDONLY 00
  26. #define O_WRONLY 01
  27. #define O_RDWR 02
  28. #define O_CREAT 0100
  29. /* Encoding of the file mode. */
  30. #define S_IFMT 0170000 /* These bits determine file type. */
  31. /* File types. */
  32. #define S_IFDIR 0040000 /* Directory. */
  33. #define S_IFCHR 0020000 /* Character device. */
  34. #define S_IFBLK 0060000 /* Block device. */
  35. #define S_IFREG 0100000 /* Regular file. */
  36. #define S_IFIFO 0010000 /* FIFO. */
  37. #define S_IFLNK 0120000 /* Symbolic link. */
  38. #define S_IFSOCK 0140000 /* Socket. */
  39. /* Protection bits. */
  40. #define S_ISUID 04000 /* Set user ID on execution. */
  41. #define S_ISGID 02000 /* Set group ID on execution. */
  42. #define S_ISVTX 01000 /* Save swapped text after use (sticky). */
  43. #define S_IREAD 0400 /* Read by owner. */
  44. #define S_IWRITE 0200 /* Write by owner. */
  45. #define S_IEXEC 0100 /* Execute by owner. */
  46. /* Here are the definitions for some syscalls that are used
  47. by the dynamic linker. The idea is that we want to be able
  48. to call these before the errno symbol is dynamicly linked, so
  49. we use our own version here. Note that we cannot assume any
  50. dynamic linking at all, so we cannot return any error codes.
  51. We just punt if there is an error. */
  52. #define __NR__dl_exit __NR_exit
  53. static __always_inline attribute_noreturn void _dl_exit(int status)
  54. {
  55. while (1)
  56. INLINE_SYSCALL(exit, 1, status);
  57. }
  58. #define __NR__dl_close __NR_close
  59. static __always_inline _syscall1(int, _dl_close, int, fd);
  60. #define __NR__dl_open __NR_open
  61. static __always_inline _syscall3(int, _dl_open, const char *, fn, int, flags,
  62. __kernel_mode_t, mode);
  63. #define __NR__dl_write __NR_write
  64. static __always_inline _syscall3(unsigned long, _dl_write, int, fd,
  65. const void *, buf, unsigned long, count);
  66. #define __NR__dl_read __NR_read
  67. static __always_inline _syscall3(unsigned long, _dl_read, int, fd,
  68. const void *, buf, unsigned long, count);
  69. #define __NR__dl_mprotect __NR_mprotect
  70. static __always_inline _syscall3(int, _dl_mprotect, const void *, addr,
  71. unsigned long, len, int, prot);
  72. #define __NR__dl_stat __NR_stat
  73. static __always_inline _syscall2(int, _dl_stat, const char *, file_name,
  74. struct stat *, buf);
  75. #define __NR__dl_fstat __NR_fstat
  76. static __always_inline _syscall2(int, _dl_fstat, int, fd, struct stat *, buf);
  77. #define __NR__dl_munmap __NR_munmap
  78. static __always_inline _syscall2(int, _dl_munmap, void *, start, unsigned long, length);
  79. #ifdef __NR_getxuid
  80. # define __NR_getuid __NR_getxuid
  81. #endif
  82. #define __NR__dl_getuid __NR_getuid
  83. static __always_inline _syscall0(uid_t, _dl_getuid);
  84. #ifndef __NR_geteuid
  85. # define __NR_geteuid __NR_getuid
  86. #endif
  87. #define __NR__dl_geteuid __NR_geteuid
  88. static __always_inline _syscall0(uid_t, _dl_geteuid);
  89. #ifdef __NR_getxgid
  90. # define __NR_getgid __NR_getxgid
  91. #endif
  92. #define __NR__dl_getgid __NR_getgid
  93. static __always_inline _syscall0(gid_t, _dl_getgid);
  94. #ifndef __NR_getegid
  95. # define __NR_getegid __NR_getgid
  96. #endif
  97. #define __NR__dl_getegid __NR_getegid
  98. static __always_inline _syscall0(gid_t, _dl_getegid);
  99. #ifdef __NR_getxpid
  100. # define __NR_getpid __NR_getxpid
  101. #endif
  102. #define __NR__dl_getpid __NR_getpid
  103. static __always_inline _syscall0(gid_t, _dl_getpid);
  104. #define __NR__dl_readlink __NR_readlink
  105. static __always_inline _syscall3(int, _dl_readlink, const char *, path, char *, buf,
  106. size_t, bufsiz);
  107. #ifdef __UCLIBC_HAS_SSP__
  108. # include <sys/time.h>
  109. # define __NR__dl_gettimeofday __NR_gettimeofday
  110. static inline _syscall2(int, _dl_gettimeofday, struct timeval *, tv,
  111. # ifdef __USE_BSD
  112. struct timezone *, tz);
  113. # else
  114. void *, tz);
  115. # endif
  116. #endif
  117. /* handle all the fun mmap intricacies */
  118. #if (defined(__UCLIBC_MMAP_HAS_6_ARGS__) && defined(__NR_mmap)) || !defined(__NR_mmap2)
  119. # define _dl_MAX_ERRNO 4096
  120. # define _dl_mmap_check_error(__res) \
  121. (((long)__res) < 0 && ((long)__res) >= -_dl_MAX_ERRNO)
  122. #else
  123. # define MAP_FAILED ((void *) -1)
  124. # define _dl_mmap_check_error(X) (((void *)X) == MAP_FAILED)
  125. #endif
  126. /* first try mmap(), syscall6() style */
  127. #if defined(__UCLIBC_MMAP_HAS_6_ARGS__) && defined(__NR_mmap)
  128. # define __NR__dl_mmap __NR_mmap
  129. static __always_inline _syscall6(void *, _dl_mmap, void *, start, size_t, length,
  130. int, prot, int, flags, int, fd, off_t, offset);
  131. /* then try mmap2() */
  132. #elif defined(__NR_mmap2)
  133. # define __NR___syscall_mmap2 __NR_mmap2
  134. static __always_inline _syscall6(__ptr_t, __syscall_mmap2, __ptr_t, addr, size_t, len,
  135. int, prot, int, flags, int, fd, off_t, offset);
  136. /* Some architectures always use 12 as page shift for mmap2() eventhough the
  137. * real PAGE_SHIFT != 12. Other architectures use the same value as
  138. * PAGE_SHIFT...
  139. */
  140. #ifndef MMAP2_PAGE_SHIFT
  141. # define MMAP2_PAGE_SHIFT 12
  142. #endif
  143. static __always_inline void * _dl_mmap(void * addr, unsigned long size, int prot,
  144. int flags, int fd, unsigned long offset)
  145. {
  146. if (offset & ((1 << MMAP2_PAGE_SHIFT) - 1))
  147. return MAP_FAILED;
  148. return __syscall_mmap2(addr, size, prot, flags,
  149. fd, (off_t) (offset >> MMAP2_PAGE_SHIFT));
  150. }
  151. /* finally, fall back to mmap(), syscall1() style */
  152. #elif defined(__NR_mmap)
  153. # define __NR__dl_mmap_real __NR_mmap
  154. static __always_inline _syscall1(void *, _dl_mmap_real, unsigned long *, buffer);
  155. static __always_inline void * _dl_mmap(void * addr, unsigned long size, int prot,
  156. int flags, int fd, unsigned long offset)
  157. {
  158. unsigned long buffer[6];
  159. buffer[0] = (unsigned long) addr;
  160. buffer[1] = (unsigned long) size;
  161. buffer[2] = (unsigned long) prot;
  162. buffer[3] = (unsigned long) flags;
  163. buffer[4] = (unsigned long) fd;
  164. buffer[5] = (unsigned long) offset;
  165. return (void *) _dl_mmap_real(buffer);
  166. }
  167. #else
  168. # error "Your architecture doesn't seem to provide mmap() !?"
  169. #endif
  170. #endif /* _LD_SYSCALL_H_ */