wrapsyscall.c 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241
  1. /* Wrapper arpund system calls to provide cancellation points.
  2. Copyright (C) 1996,1997,1998,1999,2000,2001 Free Software Foundation, Inc.
  3. This file is part of the GNU C Library.
  4. Contributed by Ulrich Drepper <drepper@cygnus.com>, 1996.
  5. The GNU C Library is free software; you can redistribute it and/or
  6. modify it under the terms of the GNU Library General Public License as
  7. published by the Free Software Foundation; either version 2 of the
  8. License, or (at your option) any later version.
  9. The GNU C Library is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  12. Library General Public License for more details.
  13. You should have received a copy of the GNU Library General Public
  14. License along with the GNU C Library; see the file COPYING.LIB. If not,
  15. write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  16. Boston, MA 02111-1307, USA. */
  17. #include <fcntl.h>
  18. #include <sys/mman.h>
  19. #include <pthread.h>
  20. #include <unistd.h>
  21. #include <stdarg.h>
  22. #include <stddef.h>
  23. #include <stdlib.h>
  24. #include <termios.h>
  25. #include <sys/epoll.h>
  26. #include <sys/resource.h>
  27. #include <sys/wait.h>
  28. #include <sys/socket.h>
  29. #include <sys/syscall.h>
  30. #ifndef __PIC__
  31. /* We need a hook to force this file to be linked in when static
  32. libpthread is used. */
  33. const char __pthread_provide_wrappers = 0;
  34. #endif
  35. /* Using private interface to libc (__libc_foo) to implement
  36. * cancellable versions of some libc functions */
  37. #define CANCELABLE_SYSCALL(res_type, name, param_list, params) \
  38. res_type __libc_##name param_list; \
  39. res_type \
  40. __attribute__ ((weak)) \
  41. name param_list \
  42. { \
  43. res_type result; \
  44. int oldtype; \
  45. pthread_setcanceltype (PTHREAD_CANCEL_ASYNCHRONOUS, &oldtype); \
  46. result = __libc_##name params; \
  47. pthread_setcanceltype (oldtype, NULL); \
  48. return result; \
  49. }
  50. #define CANCELABLE_SYSCALL_VA(res_type, name, param_list, params, last_arg) \
  51. res_type __libc_##name param_list; \
  52. res_type \
  53. __attribute__ ((weak)) \
  54. name param_list \
  55. { \
  56. res_type result; \
  57. int oldtype; \
  58. va_list ap; \
  59. pthread_setcanceltype (PTHREAD_CANCEL_ASYNCHRONOUS, &oldtype); \
  60. va_start (ap, last_arg); \
  61. result = __libc_##name params; \
  62. va_end (ap); \
  63. pthread_setcanceltype (oldtype, NULL); \
  64. return result; \
  65. }
  66. /* close(2). */
  67. CANCELABLE_SYSCALL (int, close, (int fd), (fd))
  68. /* fcntl(2). */
  69. CANCELABLE_SYSCALL_VA (int, fcntl, (int fd, int cmd, ...),
  70. (fd, cmd, va_arg (ap, long int)), cmd)
  71. /* fsync(2). */
  72. CANCELABLE_SYSCALL (int, fsync, (int fd), (fd))
  73. /* lseek(2). */
  74. CANCELABLE_SYSCALL (off_t, lseek, (int fd, off_t offset, int whence),
  75. (fd, offset, whence))
  76. #ifdef __UCLIBC_HAS_LFS__
  77. /* lseek64(2). */
  78. CANCELABLE_SYSCALL (off64_t, lseek64, (int fd, off64_t offset, int whence),
  79. (fd, offset, whence))
  80. #endif
  81. #if defined(__NR_msync) && defined(__ARCH_USE_MMU__)
  82. /* msync(2). */
  83. CANCELABLE_SYSCALL (int, msync, (void *addr, size_t length, int flags),
  84. (addr, length, flags))
  85. #endif
  86. /* nanosleep(2). */
  87. libpthread_hidden_proto(nanosleep)
  88. CANCELABLE_SYSCALL (int, nanosleep, (const struct timespec *requested_time,
  89. struct timespec *remaining),
  90. (requested_time, remaining))
  91. libpthread_hidden_def(nanosleep)
  92. /* open(2). */
  93. CANCELABLE_SYSCALL_VA (int, open, (const char *pathname, int flags, ...),
  94. (pathname, flags, va_arg (ap, mode_t)), flags)
  95. #ifdef __UCLIBC_HAS_LFS__
  96. /* open64(3). */
  97. CANCELABLE_SYSCALL_VA (int, open64, (const char *pathname, int flags, ...),
  98. (pathname, flags, va_arg (ap, mode_t)), flags)
  99. #endif
  100. /* pause(2). */
  101. CANCELABLE_SYSCALL (int, pause, (void), ())
  102. /* Enable this if enabling these in syscalls.c */
  103. /* pread(3). */
  104. CANCELABLE_SYSCALL (ssize_t, pread, (int fd, void *buf, size_t count,
  105. off_t offset),
  106. (fd, buf, count, offset))
  107. #if defined __UCLIBC_HAS_LFS__ && defined __NR_pread64
  108. /* pread64(3). */
  109. CANCELABLE_SYSCALL (ssize_t, pread64, (int fd, void *buf, size_t count,
  110. off64_t offset),
  111. (fd, buf, count, offset))
  112. #endif
  113. /* pwrite(3). */
  114. CANCELABLE_SYSCALL (ssize_t, pwrite, (int fd, const void *buf, size_t n,
  115. off_t offset),
  116. (fd, buf, n, offset))
  117. #if defined __UCLIBC_HAS_LFS__ && defined __NR_pwrited64
  118. /* pwrite64(3). */
  119. CANCELABLE_SYSCALL (ssize_t, pwrite64, (int fd, const void *buf, size_t n,
  120. off64_t offset),
  121. (fd, buf, n, offset))
  122. #endif
  123. /* read(2). */
  124. CANCELABLE_SYSCALL (ssize_t, read, (int fd, void *buf, size_t count),
  125. (fd, buf, count))
  126. /* system(3). */
  127. CANCELABLE_SYSCALL (int, system, (const char *line), (line))
  128. /* tcdrain(2). */
  129. CANCELABLE_SYSCALL (int, tcdrain, (int fd), (fd))
  130. /* wait(2). */
  131. CANCELABLE_SYSCALL (__pid_t, wait, (__WAIT_STATUS_DEFN stat_loc), (stat_loc))
  132. /* waitpid(2). */
  133. libpthread_hidden_proto(waitpid)
  134. CANCELABLE_SYSCALL (__pid_t, waitpid, (__pid_t pid, int *stat_loc,
  135. int options),
  136. (pid, stat_loc, options))
  137. libpthread_hidden_def(waitpid)
  138. /* write(2). */
  139. CANCELABLE_SYSCALL (ssize_t, write, (int fd, const void *buf, size_t n),
  140. (fd, buf, n))
  141. #if defined __UCLIBC_HAS_SOCKET__
  142. /* The following system calls are thread cancellation points specified
  143. in XNS. */
  144. /* accept(2). */
  145. CANCELABLE_SYSCALL (int, accept, (int fd, __SOCKADDR_ARG addr,
  146. socklen_t *addr_len),
  147. (fd, addr, addr_len))
  148. /* connect(2). */
  149. CANCELABLE_SYSCALL (int, connect, (int fd, __CONST_SOCKADDR_ARG addr,
  150. socklen_t len),
  151. (fd, addr, len))
  152. /* recv(2). */
  153. CANCELABLE_SYSCALL (ssize_t, recv, (int fd, __ptr_t buf, size_t n, int flags),
  154. (fd, buf, n, flags))
  155. /* recvfrom(2). */
  156. CANCELABLE_SYSCALL (ssize_t, recvfrom, (int fd, __ptr_t buf, size_t n, int flags,
  157. __SOCKADDR_ARG addr, socklen_t *addr_len),
  158. (fd, buf, n, flags, addr, addr_len))
  159. /* recvmsg(2). */
  160. CANCELABLE_SYSCALL (ssize_t, recvmsg, (int fd, struct msghdr *message, int flags),
  161. (fd, message, flags))
  162. /* send(2). */
  163. CANCELABLE_SYSCALL (ssize_t, send, (int fd, const __ptr_t buf, size_t n,
  164. int flags),
  165. (fd, buf, n, flags))
  166. /* sendmsg(2). */
  167. CANCELABLE_SYSCALL (ssize_t, sendmsg, (int fd, const struct msghdr *message,
  168. int flags),
  169. (fd, message, flags))
  170. /* sendto(2). */
  171. CANCELABLE_SYSCALL (ssize_t, sendto, (int fd, const __ptr_t buf, size_t n,
  172. int flags, __CONST_SOCKADDR_ARG addr,
  173. socklen_t addr_len),
  174. (fd, buf, n, flags, addr, addr_len))
  175. #endif /* __UCLIBC_HAS_SOCKET__ */
  176. #ifdef __UCLIBC_HAS_EPOLL__
  177. # ifdef __NR_epoll_wait
  178. CANCELABLE_SYSCALL (int, epoll_wait, (int epfd, struct epoll_event *events, int maxevents, int timeout),
  179. (epfd, events, maxevents, timeout))
  180. # endif
  181. # ifdef __NR_epoll_pwait
  182. # include <signal.h>
  183. CANCELABLE_SYSCALL (int, epoll_pwait, (int epfd, struct epoll_event *events, int maxevents, int timeout,
  184. const sigset_t *set),
  185. (epfd, events, maxevents, timeout, set))
  186. # endif
  187. #endif