wrapsyscall.c 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243
  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. #define __FORCE_GLIBC
  18. #include <features.h>
  19. #include <fcntl.h>
  20. #include <sys/mman.h>
  21. #include <pthread.h>
  22. #include <unistd.h>
  23. #include <stdarg.h>
  24. #include <stddef.h>
  25. #include <stdlib.h>
  26. #include <termios.h>
  27. #include <sys/epoll.h>
  28. #include <sys/resource.h>
  29. #include <sys/wait.h>
  30. #include <sys/socket.h>
  31. #include <sys/syscall.h>
  32. #ifndef __PIC__
  33. /* We need a hook to force this file to be linked in when static
  34. libpthread is used. */
  35. const char __pthread_provide_wrappers = 0;
  36. #endif
  37. /* Using private interface to libc (__libc_foo) to implement
  38. * cancellable versions of some libc functions */
  39. #define CANCELABLE_SYSCALL(res_type, name, param_list, params) \
  40. res_type __libc_##name param_list; \
  41. res_type \
  42. __attribute__ ((weak)) \
  43. name param_list \
  44. { \
  45. res_type result; \
  46. int oldtype; \
  47. pthread_setcanceltype (PTHREAD_CANCEL_ASYNCHRONOUS, &oldtype); \
  48. result = __libc_##name params; \
  49. pthread_setcanceltype (oldtype, NULL); \
  50. return result; \
  51. }
  52. #define CANCELABLE_SYSCALL_VA(res_type, name, param_list, params, last_arg) \
  53. res_type __libc_##name param_list; \
  54. res_type \
  55. __attribute__ ((weak)) \
  56. name param_list \
  57. { \
  58. res_type result; \
  59. int oldtype; \
  60. va_list ap; \
  61. pthread_setcanceltype (PTHREAD_CANCEL_ASYNCHRONOUS, &oldtype); \
  62. va_start (ap, last_arg); \
  63. result = __libc_##name params; \
  64. va_end (ap); \
  65. pthread_setcanceltype (oldtype, NULL); \
  66. return result; \
  67. }
  68. /* close(2). */
  69. CANCELABLE_SYSCALL (int, close, (int fd), (fd))
  70. /* fcntl(2). */
  71. CANCELABLE_SYSCALL_VA (int, fcntl, (int fd, int cmd, ...),
  72. (fd, cmd, va_arg (ap, long int)), cmd)
  73. /* fsync(2). */
  74. CANCELABLE_SYSCALL (int, fsync, (int fd), (fd))
  75. /* lseek(2). */
  76. CANCELABLE_SYSCALL (off_t, lseek, (int fd, off_t offset, int whence),
  77. (fd, offset, whence))
  78. #ifdef __UCLIBC_HAS_LFS__
  79. /* lseek64(2). */
  80. CANCELABLE_SYSCALL (off64_t, lseek64, (int fd, off64_t offset, int whence),
  81. (fd, offset, whence))
  82. #endif
  83. #if defined(__NR_msync) && defined(__ARCH_USE_MMU__)
  84. /* msync(2). */
  85. CANCELABLE_SYSCALL (int, msync, (void *addr, size_t length, int flags),
  86. (addr, length, flags))
  87. #endif
  88. /* nanosleep(2). */
  89. libpthread_hidden_proto(nanosleep)
  90. CANCELABLE_SYSCALL (int, nanosleep, (const struct timespec *requested_time,
  91. struct timespec *remaining),
  92. (requested_time, remaining))
  93. libpthread_hidden_def(nanosleep)
  94. /* open(2). */
  95. CANCELABLE_SYSCALL_VA (int, open, (const char *pathname, int flags, ...),
  96. (pathname, flags, va_arg (ap, mode_t)), flags)
  97. #ifdef __UCLIBC_HAS_LFS__
  98. /* open64(3). */
  99. CANCELABLE_SYSCALL_VA (int, open64, (const char *pathname, int flags, ...),
  100. (pathname, flags, va_arg (ap, mode_t)), flags)
  101. #endif
  102. /* pause(2). */
  103. CANCELABLE_SYSCALL (int, pause, (void), ())
  104. /* Enable this if enabling these in syscalls.c */
  105. /* pread(3). */
  106. CANCELABLE_SYSCALL (ssize_t, pread, (int fd, void *buf, size_t count,
  107. off_t offset),
  108. (fd, buf, count, offset))
  109. #if defined __UCLIBC_HAS_LFS__ && defined __NR_pread64
  110. /* pread64(3). */
  111. CANCELABLE_SYSCALL (ssize_t, pread64, (int fd, void *buf, size_t count,
  112. off64_t offset),
  113. (fd, buf, count, offset))
  114. #endif
  115. /* pwrite(3). */
  116. CANCELABLE_SYSCALL (ssize_t, pwrite, (int fd, const void *buf, size_t n,
  117. off_t offset),
  118. (fd, buf, n, offset))
  119. #if defined __UCLIBC_HAS_LFS__ && defined __NR_pwrited64
  120. /* pwrite64(3). */
  121. CANCELABLE_SYSCALL (ssize_t, pwrite64, (int fd, const void *buf, size_t n,
  122. off64_t offset),
  123. (fd, buf, n, offset))
  124. #endif
  125. /* read(2). */
  126. CANCELABLE_SYSCALL (ssize_t, read, (int fd, void *buf, size_t count),
  127. (fd, buf, count))
  128. /* system(3). */
  129. CANCELABLE_SYSCALL (int, system, (const char *line), (line))
  130. /* tcdrain(2). */
  131. CANCELABLE_SYSCALL (int, tcdrain, (int fd), (fd))
  132. /* wait(2). */
  133. CANCELABLE_SYSCALL (__pid_t, wait, (__WAIT_STATUS_DEFN stat_loc), (stat_loc))
  134. /* waitpid(2). */
  135. libpthread_hidden_proto(waitpid)
  136. CANCELABLE_SYSCALL (__pid_t, waitpid, (__pid_t pid, int *stat_loc,
  137. int options),
  138. (pid, stat_loc, options))
  139. libpthread_hidden_def(waitpid)
  140. /* write(2). */
  141. CANCELABLE_SYSCALL (ssize_t, write, (int fd, const void *buf, size_t n),
  142. (fd, buf, n))
  143. #if defined __UCLIBC_HAS_SOCKET__
  144. /* The following system calls are thread cancellation points specified
  145. in XNS. */
  146. /* accept(2). */
  147. CANCELABLE_SYSCALL (int, accept, (int fd, __SOCKADDR_ARG addr,
  148. socklen_t *addr_len),
  149. (fd, addr, addr_len))
  150. /* connect(2). */
  151. CANCELABLE_SYSCALL (int, connect, (int fd, __CONST_SOCKADDR_ARG addr,
  152. socklen_t len),
  153. (fd, addr, len))
  154. /* recv(2). */
  155. CANCELABLE_SYSCALL (ssize_t, recv, (int fd, __ptr_t buf, size_t n, int flags),
  156. (fd, buf, n, flags))
  157. /* recvfrom(2). */
  158. CANCELABLE_SYSCALL (ssize_t, recvfrom, (int fd, __ptr_t buf, size_t n, int flags,
  159. __SOCKADDR_ARG addr, socklen_t *addr_len),
  160. (fd, buf, n, flags, addr, addr_len))
  161. /* recvmsg(2). */
  162. CANCELABLE_SYSCALL (ssize_t, recvmsg, (int fd, struct msghdr *message, int flags),
  163. (fd, message, flags))
  164. /* send(2). */
  165. CANCELABLE_SYSCALL (ssize_t, send, (int fd, const __ptr_t buf, size_t n,
  166. int flags),
  167. (fd, buf, n, flags))
  168. /* sendmsg(2). */
  169. CANCELABLE_SYSCALL (ssize_t, sendmsg, (int fd, const struct msghdr *message,
  170. int flags),
  171. (fd, message, flags))
  172. /* sendto(2). */
  173. CANCELABLE_SYSCALL (ssize_t, sendto, (int fd, const __ptr_t buf, size_t n,
  174. int flags, __CONST_SOCKADDR_ARG addr,
  175. socklen_t addr_len),
  176. (fd, buf, n, flags, addr, addr_len))
  177. #endif /* __UCLIBC_HAS_SOCKET__ */
  178. #ifdef __UCLIBC_HAS_EPOLL__
  179. # ifdef __NR_epoll_wait
  180. CANCELABLE_SYSCALL (int, epoll_wait, (int epfd, struct epoll_event *events, int maxevents, int timeout),
  181. (epfd, events, maxevents, timeout))
  182. # endif
  183. # ifdef __NR_epoll_pwait
  184. # include <signal.h>
  185. CANCELABLE_SYSCALL (int, epoll_pwait, (int epfd, struct epoll_event *events, int maxevents, int timeout,
  186. const sigset_t *set),
  187. (epfd, events, maxevents, timeout, set))
  188. # endif
  189. #endif