Update.
[glibc.git] / linuxthreads / wrapsyscall.c
blob5b92cde15f36667a968bc339b4d113802c295654
1 /* Wrapper arpund system calls to provide cancelation 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.
6 The GNU C Library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Lesser General Public License as
8 published by the Free Software Foundation; either version 2.1 of the
9 License, or (at your option) any later version.
11 The GNU C Library is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Lesser General Public License for more details.
16 You should have received a copy of the GNU Lesser General Public
17 License along with the GNU C Library; see the file COPYING.LIB. If not,
18 write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
21 #include <fcntl.h>
22 #include <sys/mman.h>
23 #include <pthread.h>
24 #include <unistd.h>
25 #include <stdarg.h>
26 #include <stddef.h>
27 #include <stdlib.h>
28 #include <termios.h>
29 #include <sys/resource.h>
30 #include <sys/wait.h>
31 #include <sys/socket.h>
34 #ifndef SHARED
35 /* We need a hook to force this file to be linked in when static
36 libpthread is used. */
37 const int __pthread_provide_wrappers = 0;
38 #endif
41 #define CANCELABLE_SYSCALL(res_type, name, param_list, params) \
42 res_type __libc_##name param_list; \
43 res_type \
44 __attribute__ ((weak)) \
45 name param_list \
46 { \
47 res_type result; \
48 int oldtype; \
49 pthread_setcanceltype (PTHREAD_CANCEL_ASYNCHRONOUS, &oldtype); \
50 result = __libc_##name params; \
51 pthread_setcanceltype (oldtype, NULL); \
52 return result; \
55 #define CANCELABLE_SYSCALL_VA(res_type, name, param_list, params, last_arg) \
56 res_type __libc_##name param_list; \
57 res_type \
58 __attribute__ ((weak)) \
59 name param_list \
60 { \
61 res_type result; \
62 int oldtype; \
63 va_list ap; \
64 pthread_setcanceltype (PTHREAD_CANCEL_ASYNCHRONOUS, &oldtype); \
65 va_start (ap, last_arg); \
66 result = __libc_##name params; \
67 va_end (ap); \
68 pthread_setcanceltype (oldtype, NULL); \
69 return result; \
73 /* close(2). */
74 CANCELABLE_SYSCALL (int, close, (int fd), (fd))
75 strong_alias (close, __close)
78 /* fcntl(2). */
79 CANCELABLE_SYSCALL_VA (int, fcntl, (int fd, int cmd, ...),
80 (fd, cmd, va_arg (ap, long int)), cmd)
81 strong_alias (fcntl, __fcntl)
84 /* fsync(2). */
85 CANCELABLE_SYSCALL (int, fsync, (int fd), (fd))
88 /* lseek(2). */
89 CANCELABLE_SYSCALL (off_t, lseek, (int fd, off_t offset, int whence),
90 (fd, offset, whence))
91 strong_alias (lseek, __lseek)
94 /* lseek64(2). */
95 CANCELABLE_SYSCALL (off64_t, lseek64, (int fd, off64_t offset, int whence),
96 (fd, offset, whence))
99 /* msync(2). */
100 CANCELABLE_SYSCALL (int, msync, (__ptr_t addr, size_t length, int flags),
101 (addr, length, flags))
104 /* nanosleep(2). */
105 CANCELABLE_SYSCALL (int, nanosleep, (const struct timespec *requested_time,
106 struct timespec *remaining),
107 (requested_time, remaining))
108 strong_alias (nanosleep, __nanosleep)
111 /* open(2). */
112 CANCELABLE_SYSCALL_VA (int, open, (const char *pathname, int flags, ...),
113 (pathname, flags, va_arg (ap, mode_t)), flags)
114 strong_alias (open, __open)
117 /* open64(3). */
118 CANCELABLE_SYSCALL_VA (int, open64, (const char *pathname, int flags, ...),
119 (pathname, flags, va_arg (ap, mode_t)), flags)
120 strong_alias (open64, __open64)
123 /* pause(2). */
124 CANCELABLE_SYSCALL (int, pause, (void), ())
127 /* pread(3). */
128 CANCELABLE_SYSCALL (ssize_t, pread, (int fd, void *buf, size_t count,
129 off_t offset),
130 (fd, buf, count, offset))
133 /* pread64(3). */
134 CANCELABLE_SYSCALL (ssize_t, pread64, (int fd, void *buf, size_t count,
135 off64_t offset),
136 (fd, buf, count, offset))
137 strong_alias (pread64, __pread64)
140 /* pwrite(3). */
141 CANCELABLE_SYSCALL (ssize_t, pwrite, (int fd, const void *buf, size_t n,
142 off_t offset),
143 (fd, buf, n, offset))
146 /* pwrite64(3). */
147 CANCELABLE_SYSCALL (ssize_t, pwrite64, (int fd, const void *buf, size_t n,
148 off64_t offset),
149 (fd, buf, n, offset))
150 strong_alias (pwrite64, __pwrite64)
153 /* read(2). */
154 CANCELABLE_SYSCALL (ssize_t, read, (int fd, void *buf, size_t count),
155 (fd, buf, count))
156 strong_alias (read, __read)
159 /* system(3). */
160 CANCELABLE_SYSCALL (int, system, (const char *line), (line))
163 /* tcdrain(2). */
164 CANCELABLE_SYSCALL (int, tcdrain, (int fd), (fd))
167 /* wait(2). */
168 CANCELABLE_SYSCALL (__pid_t, wait, (__WAIT_STATUS_DEFN stat_loc), (stat_loc))
169 strong_alias (wait, __wait)
172 /* waitpid(2). */
173 CANCELABLE_SYSCALL (__pid_t, waitpid, (__pid_t pid, int *stat_loc,
174 int options),
175 (pid, stat_loc, options))
178 /* write(2). */
179 CANCELABLE_SYSCALL (ssize_t, write, (int fd, const void *buf, size_t n),
180 (fd, buf, n))
181 strong_alias (write, __write)
184 /* The following system calls are thread cancellation points specified
185 in XNS. */
187 /* accept(2). */
188 CANCELABLE_SYSCALL (int, accept, (int fd, __SOCKADDR_ARG addr,
189 socklen_t *addr_len),
190 (fd, addr, addr_len))
192 /* connect(2). */
193 CANCELABLE_SYSCALL (int, connect, (int fd, __CONST_SOCKADDR_ARG addr,
194 socklen_t len),
195 (fd, addr, len))
196 strong_alias (connect, __connect)
198 /* recv(2). */
199 CANCELABLE_SYSCALL (ssize_t, recv, (int fd, __ptr_t buf, size_t n, int flags),
200 (fd, buf, n, flags))
202 /* recvfrom(2). */
203 CANCELABLE_SYSCALL (ssize_t, recvfrom, (int fd, __ptr_t buf, size_t n, int flags,
204 __SOCKADDR_ARG addr, socklen_t *addr_len),
205 (fd, buf, n, flags, addr, addr_len))
207 /* recvmsg(2). */
208 CANCELABLE_SYSCALL (ssize_t, recvmsg, (int fd, struct msghdr *message, int flags),
209 (fd, message, flags))
211 /* send(2). */
212 CANCELABLE_SYSCALL (ssize_t, send, (int fd, const __ptr_t buf, size_t n,
213 int flags),
214 (fd, buf, n, flags))
215 strong_alias (send, __send)
217 /* sendmsg(2). */
218 CANCELABLE_SYSCALL (ssize_t, sendmsg, (int fd, const struct msghdr *message,
219 int flags),
220 (fd, message, flags))
222 /* sendto(2). */
223 CANCELABLE_SYSCALL (ssize_t, sendto, (int fd, const __ptr_t buf, size_t n,
224 int flags, __CONST_SOCKADDR_ARG addr,
225 socklen_t addr_len),
226 (fd, buf, n, flags, addr, addr_len))