ld_syscall.h 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  1. /* Pull in compiler and arch stuff */
  2. #include <stdarg.h>
  3. /* Pull in the arch specific type information */
  4. #include <sys/types.h>
  5. /* Pull in the arch specific syscall implementation */
  6. #include "ld_syscalls.h"
  7. /* For MAP_ANONYMOUS -- differs between platforms */
  8. #include <asm/mman.h>
  9. /* Pull in whatever this particular arch's kernel thinks the kernel version of
  10. * struct stat should look like. It turns out that each arch has a different
  11. * opinion on the subject, and different kernel revs use different names... */
  12. #define new_stat stat
  13. #include <asm/stat.h>
  14. /* Encoding of the file mode. */
  15. #define S_IFMT 0170000 /* These bits determine file type. */
  16. /* File types. */
  17. #define S_IFDIR 0040000 /* Directory. */
  18. #define S_IFCHR 0020000 /* Character device. */
  19. #define S_IFBLK 0060000 /* Block device. */
  20. #define S_IFREG 0100000 /* Regular file. */
  21. #define S_IFIFO 0010000 /* FIFO. */
  22. #define S_IFLNK 0120000 /* Symbolic link. */
  23. #define S_IFSOCK 0140000 /* Socket. */
  24. /* Protection bits. */
  25. #define S_ISUID 04000 /* Set user ID on execution. */
  26. #define S_ISGID 02000 /* Set group ID on execution. */
  27. #define S_ISVTX 01000 /* Save swapped text after use (sticky). */
  28. #define S_IREAD 0400 /* Read by owner. */
  29. #define S_IWRITE 0200 /* Write by owner. */
  30. #define S_IEXEC 0100 /* Execute by owner. */
  31. /* Here are the definitions for some syscalls that are used
  32. by the dynamic linker. The idea is that we want to be able
  33. to call these before the errno symbol is dynamicly linked, so
  34. we use our own version here. Note that we cannot assume any
  35. dynamic linking at all, so we cannot return any error codes.
  36. We just punt if there is an error. */
  37. #define __NR__dl_exit __NR_exit
  38. static inline _syscall1(void, _dl_exit, int, status);
  39. #define __NR__dl_close __NR_close
  40. static inline _syscall1(int, _dl_close, int, fd);
  41. #if defined(__powerpc) || defined(__mips__) || defined(__sh__)
  42. /* PowerPC, MIPS and SuperH have a different calling convention for mmap(). */
  43. #define __NR__dl_mmap __NR_mmap
  44. static inline _syscall6(void *, _dl_mmap, void *, start, size_t, length,
  45. int, prot, int, flags, int, fd, off_t, offset);
  46. #else
  47. #define __NR__dl_mmap_real __NR_mmap
  48. static inline _syscall1(void *, _dl_mmap_real, unsigned long *, buffer);
  49. static inline void * _dl_mmap(void * addr, unsigned long size, int prot,
  50. int flags, int fd, unsigned long offset)
  51. {
  52. unsigned long buffer[6];
  53. buffer[0] = (unsigned long) addr;
  54. buffer[1] = (unsigned long) size;
  55. buffer[2] = (unsigned long) prot;
  56. buffer[3] = (unsigned long) flags;
  57. buffer[4] = (unsigned long) fd;
  58. buffer[5] = (unsigned long) offset;
  59. return (void *) _dl_mmap_real(buffer);
  60. }
  61. #endif
  62. #ifndef _dl_MAX_ERRNO
  63. #define _dl_MAX_ERRNO 4096
  64. #endif
  65. #define _dl_mmap_check_error(__res) \
  66. (((int)__res) < 0 && ((int)__res) >= -_dl_MAX_ERRNO)
  67. #ifndef MAP_ANONYMOUS
  68. #ifdef __sparc__
  69. #define MAP_ANONYMOUS 0x20
  70. #else
  71. #error MAP_ANONYMOUS not defined and suplementary value not known
  72. #endif
  73. #endif
  74. #define __NR__dl_open __NR_open
  75. #define O_RDONLY 0x0000
  76. #define O_WRONLY 01
  77. #define O_RDWR 02
  78. #define O_CREAT 0100 /* not fcntl */
  79. static inline _syscall2(int, _dl_open, const char *, fn, int, flags);
  80. #define __NR__dl_write __NR_write
  81. static inline _syscall3(unsigned long, _dl_write, int, fd,
  82. const void *, buf, unsigned long, count);
  83. #define __NR__dl_read __NR_read
  84. static inline _syscall3(unsigned long, _dl_read, int, fd,
  85. const void *, buf, unsigned long, count);
  86. #define __NR__dl_mprotect __NR_mprotect
  87. static inline _syscall3(int, _dl_mprotect, const void *, addr, unsigned long, len, int, prot);
  88. #define __NR__dl_stat __NR_stat
  89. static inline _syscall2(int, _dl_stat, const char *, file_name, struct stat *, buf);
  90. #define __NR__dl_munmap __NR_munmap
  91. static inline _syscall2(int, _dl_munmap, void *, start, unsigned long, length);
  92. #define __NR__dl_getuid __NR_getuid
  93. static inline _syscall0(uid_t, _dl_getuid);
  94. #define __NR__dl_geteuid __NR_geteuid
  95. static inline _syscall0(uid_t, _dl_geteuid);
  96. #define __NR__dl_getgid __NR_getgid
  97. static inline _syscall0(gid_t, _dl_getgid);
  98. #define __NR__dl_getegid __NR_getegid
  99. static inline _syscall0(gid_t, _dl_getegid);
  100. #define __NR__dl_getpid __NR_getpid
  101. static inline _syscall0(gid_t, _dl_getpid);
  102. /*
  103. * Not an actual syscall, but we need something in assembly to say whether
  104. * this is OK or not.
  105. */
  106. static inline int _dl_suid_ok(void)
  107. {
  108. uid_t uid, euid, gid, egid;
  109. uid = _dl_getuid();
  110. euid = _dl_geteuid();
  111. gid = _dl_getgid();
  112. egid = _dl_getegid();
  113. if(uid == euid && gid == egid)
  114. return 1;
  115. else
  116. return 0;
  117. }
  118. #define __NR__dl_readlink __NR_readlink
  119. static inline _syscall3(int, _dl_readlink, const char *, path, char *, buf, size_t, bufsiz);