pthread_cancelstub.c revision 1.5 1 1.5 lukem /* $NetBSD: pthread_cancelstub.c,v 1.5 2003/03/08 08:03:35 lukem Exp $ */
2 1.2 thorpej
3 1.2 thorpej /*-
4 1.2 thorpej * Copyright (c) 2002 The NetBSD Foundation, Inc.
5 1.2 thorpej * All rights reserved.
6 1.2 thorpej *
7 1.2 thorpej * This code is derived from software contributed to The NetBSD Foundation
8 1.2 thorpej * by Nathan J. Williams.
9 1.2 thorpej *
10 1.2 thorpej * Redistribution and use in source and binary forms, with or without
11 1.2 thorpej * modification, are permitted provided that the following conditions
12 1.2 thorpej * are met:
13 1.2 thorpej * 1. Redistributions of source code must retain the above copyright
14 1.2 thorpej * notice, this list of conditions and the following disclaimer.
15 1.2 thorpej * 2. Redistributions in binary form must reproduce the above copyright
16 1.2 thorpej * notice, this list of conditions and the following disclaimer in the
17 1.2 thorpej * documentation and/or other materials provided with the distribution.
18 1.2 thorpej * 3. All advertising materials mentioning features or use of this software
19 1.2 thorpej * must display the following acknowledgement:
20 1.2 thorpej * This product includes software developed by the NetBSD
21 1.2 thorpej * Foundation, Inc. and its contributors.
22 1.2 thorpej * 4. Neither the name of The NetBSD Foundation nor the names of its
23 1.2 thorpej * contributors may be used to endorse or promote products derived
24 1.2 thorpej * from this software without specific prior written permission.
25 1.2 thorpej *
26 1.2 thorpej * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
27 1.2 thorpej * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
28 1.2 thorpej * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
29 1.2 thorpej * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
30 1.2 thorpej * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
31 1.2 thorpej * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
32 1.2 thorpej * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
33 1.2 thorpej * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
34 1.2 thorpej * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
35 1.2 thorpej * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
36 1.2 thorpej * POSSIBILITY OF SUCH DAMAGE.
37 1.2 thorpej */
38 1.5 lukem
39 1.5 lukem #include <sys/cdefs.h>
40 1.5 lukem __RCSID("$NetBSD: pthread_cancelstub.c,v 1.5 2003/03/08 08:03:35 lukem Exp $");
41 1.2 thorpej
42 1.2 thorpej #include <sys/msg.h>
43 1.2 thorpej #include <sys/types.h>
44 1.2 thorpej #include <sys/uio.h>
45 1.2 thorpej #include <sys/wait.h>
46 1.2 thorpej #include <fcntl.h>
47 1.2 thorpej #include <poll.h>
48 1.2 thorpej #include <stdarg.h>
49 1.2 thorpej #include <unistd.h>
50 1.2 thorpej
51 1.2 thorpej int pthread__cancel_stub_binder;
52 1.2 thorpej
53 1.2 thorpej /*
54 1.2 thorpej * XXX this is necessary to get the prototypes for the __sigsuspend14
55 1.2 thorpej * XXX and __msync13 internal names, instead of the application-visible
56 1.2 thorpej * XXX sigsuspend and msync names. It's kind of gross, but we're pretty
57 1.2 thorpej * XXX intimate with libc already.
58 1.2 thorpej */
59 1.2 thorpej #define __LIBC12_SOURCE__
60 1.2 thorpej #include <signal.h>
61 1.2 thorpej #include <sys/mman.h>
62 1.3 nathanw #include <sys/socket.h>
63 1.2 thorpej
64 1.2 thorpej #include "pthread.h"
65 1.2 thorpej #include "pthread_int.h"
66 1.2 thorpej
67 1.3 nathanw int _sys_accept(int, struct sockaddr *, socklen_t *);
68 1.2 thorpej int _sys_close(int);
69 1.3 nathanw int _sys_connect(int, const struct sockaddr *, socklen_t);
70 1.2 thorpej int _sys_fcntl(int, int, ...);
71 1.2 thorpej int _sys_fsync(int);
72 1.2 thorpej ssize_t _sys_msgrcv(int, void *, size_t, long, int);
73 1.2 thorpej int _sys_msgsnd(int, const void *, size_t, int);
74 1.2 thorpej int _sys___msync13(void *, size_t, int);
75 1.2 thorpej int _sys_open(const char *, int, ...);
76 1.2 thorpej int _sys_poll(struct pollfd *, nfds_t, int);
77 1.2 thorpej ssize_t _sys_pread(int, void *, size_t, off_t);
78 1.2 thorpej ssize_t _sys_pwrite(int, const void *, size_t, off_t);
79 1.2 thorpej ssize_t _sys_read(int, void *, size_t);
80 1.2 thorpej ssize_t _sys_readv(int, const struct iovec *, int);
81 1.2 thorpej int _sys_select(int, fd_set *, fd_set *, fd_set *, struct timeval *);
82 1.2 thorpej int _sys_wait4(pid_t, int *, int, struct rusage *);
83 1.2 thorpej ssize_t _sys_write(int, const void *, size_t);
84 1.2 thorpej ssize_t _sys_writev(int, const struct iovec *, int);
85 1.2 thorpej
86 1.2 thorpej
87 1.2 thorpej int
88 1.3 nathanw accept(int s, struct sockaddr *addr, socklen_t *addrlen)
89 1.3 nathanw {
90 1.3 nathanw int retval;
91 1.3 nathanw pthread_t self;
92 1.3 nathanw
93 1.3 nathanw self = pthread__self();
94 1.3 nathanw pthread__testcancel(self);
95 1.3 nathanw retval = _sys_accept(s, addr, addrlen);
96 1.3 nathanw pthread__testcancel(self);
97 1.3 nathanw
98 1.3 nathanw return retval;
99 1.3 nathanw }
100 1.3 nathanw
101 1.3 nathanw int
102 1.2 thorpej close(int d)
103 1.2 thorpej {
104 1.2 thorpej int retval;
105 1.2 thorpej pthread_t self;
106 1.2 thorpej
107 1.2 thorpej self = pthread__self();
108 1.2 thorpej pthread__testcancel(self);
109 1.2 thorpej retval = _sys_close(d);
110 1.3 nathanw pthread__testcancel(self);
111 1.3 nathanw
112 1.3 nathanw return retval;
113 1.3 nathanw }
114 1.3 nathanw
115 1.3 nathanw int
116 1.3 nathanw connect(int s, const struct sockaddr *addr, socklen_t namelen)
117 1.3 nathanw {
118 1.3 nathanw int retval;
119 1.3 nathanw pthread_t self;
120 1.3 nathanw
121 1.3 nathanw self = pthread__self();
122 1.3 nathanw pthread__testcancel(self);
123 1.3 nathanw retval = _sys_connect(s, addr, namelen);
124 1.2 thorpej pthread__testcancel(self);
125 1.2 thorpej
126 1.2 thorpej return retval;
127 1.2 thorpej }
128 1.2 thorpej
129 1.2 thorpej int
130 1.2 thorpej fcntl(int fd, int cmd, ...)
131 1.2 thorpej {
132 1.2 thorpej int retval;
133 1.2 thorpej pthread_t self;
134 1.2 thorpej va_list ap;
135 1.2 thorpej
136 1.2 thorpej self = pthread__self();
137 1.2 thorpej pthread__testcancel(self);
138 1.2 thorpej va_start(ap, cmd);
139 1.2 thorpej retval = _sys_fcntl(fd, cmd, va_arg(ap, void *));
140 1.2 thorpej va_end(ap);
141 1.2 thorpej pthread__testcancel(self);
142 1.2 thorpej
143 1.2 thorpej return retval;
144 1.2 thorpej }
145 1.2 thorpej
146 1.2 thorpej int
147 1.2 thorpej fsync(int d)
148 1.2 thorpej {
149 1.2 thorpej int retval;
150 1.2 thorpej pthread_t self;
151 1.2 thorpej
152 1.2 thorpej self = pthread__self();
153 1.2 thorpej pthread__testcancel(self);
154 1.2 thorpej retval = _sys_fsync(d);
155 1.2 thorpej pthread__testcancel(self);
156 1.2 thorpej
157 1.2 thorpej return retval;
158 1.2 thorpej }
159 1.2 thorpej
160 1.2 thorpej ssize_t
161 1.2 thorpej msgrcv(int msgid, void *msgp, size_t msgsz, long msgtyp, int msgflg)
162 1.2 thorpej {
163 1.2 thorpej ssize_t retval;
164 1.2 thorpej pthread_t self;
165 1.2 thorpej
166 1.2 thorpej self = pthread__self();
167 1.2 thorpej pthread__testcancel(self);
168 1.2 thorpej retval = _sys_msgrcv(msgid, msgp, msgsz, msgtyp, msgflg);
169 1.2 thorpej pthread__testcancel(self);
170 1.2 thorpej
171 1.2 thorpej return retval;
172 1.2 thorpej }
173 1.2 thorpej
174 1.2 thorpej int
175 1.2 thorpej msgsnd(int msgid, const void *msgp, size_t msgsz, int msgflg)
176 1.2 thorpej {
177 1.2 thorpej int retval;
178 1.2 thorpej pthread_t self;
179 1.2 thorpej
180 1.2 thorpej self = pthread__self();
181 1.2 thorpej pthread__testcancel(self);
182 1.2 thorpej retval = _sys_msgsnd(msgid, msgp, msgsz, msgflg);
183 1.2 thorpej pthread__testcancel(self);
184 1.2 thorpej
185 1.2 thorpej return retval;
186 1.2 thorpej }
187 1.2 thorpej
188 1.2 thorpej int
189 1.2 thorpej __msync13(void *addr, size_t len, int flags)
190 1.2 thorpej {
191 1.2 thorpej int retval;
192 1.2 thorpej pthread_t self;
193 1.2 thorpej
194 1.2 thorpej self = pthread__self();
195 1.2 thorpej pthread__testcancel(self);
196 1.2 thorpej retval = _sys___msync13(addr, len, flags);
197 1.2 thorpej pthread__testcancel(self);
198 1.2 thorpej
199 1.2 thorpej return retval;
200 1.2 thorpej }
201 1.2 thorpej
202 1.2 thorpej int
203 1.2 thorpej open(const char *path, int flags, ...)
204 1.2 thorpej {
205 1.2 thorpej int retval;
206 1.2 thorpej pthread_t self;
207 1.2 thorpej va_list ap;
208 1.2 thorpej
209 1.2 thorpej self = pthread__self();
210 1.2 thorpej pthread__testcancel(self);
211 1.2 thorpej va_start(ap, flags);
212 1.2 thorpej retval = _sys_open(path, flags, va_arg(ap, mode_t));
213 1.2 thorpej va_end(ap);
214 1.2 thorpej pthread__testcancel(self);
215 1.2 thorpej
216 1.2 thorpej return retval;
217 1.2 thorpej }
218 1.2 thorpej
219 1.2 thorpej int
220 1.2 thorpej poll(struct pollfd *fds, nfds_t nfds, int timeout)
221 1.2 thorpej {
222 1.2 thorpej int retval;
223 1.2 thorpej pthread_t self;
224 1.2 thorpej
225 1.2 thorpej self = pthread__self();
226 1.2 thorpej pthread__testcancel(self);
227 1.2 thorpej retval = _sys_poll(fds, nfds, timeout);
228 1.2 thorpej pthread__testcancel(self);
229 1.2 thorpej
230 1.2 thorpej return retval;
231 1.2 thorpej }
232 1.2 thorpej
233 1.2 thorpej ssize_t
234 1.2 thorpej pread(int d, void *buf, size_t nbytes, off_t offset)
235 1.2 thorpej {
236 1.2 thorpej ssize_t retval;
237 1.2 thorpej pthread_t self;
238 1.2 thorpej
239 1.2 thorpej self = pthread__self();
240 1.2 thorpej pthread__testcancel(self);
241 1.2 thorpej retval = _sys_pread(d, buf, nbytes, offset);
242 1.2 thorpej pthread__testcancel(self);
243 1.2 thorpej
244 1.2 thorpej return retval;
245 1.2 thorpej }
246 1.2 thorpej
247 1.2 thorpej ssize_t
248 1.2 thorpej pwrite(int d, const void *buf, size_t nbytes, off_t offset)
249 1.2 thorpej {
250 1.2 thorpej ssize_t retval;
251 1.2 thorpej pthread_t self;
252 1.2 thorpej
253 1.2 thorpej self = pthread__self();
254 1.2 thorpej pthread__testcancel(self);
255 1.2 thorpej retval = _sys_pwrite(d, buf, nbytes, offset);
256 1.2 thorpej pthread__testcancel(self);
257 1.2 thorpej
258 1.2 thorpej return retval;
259 1.2 thorpej }
260 1.2 thorpej
261 1.2 thorpej ssize_t
262 1.2 thorpej read(int d, void *buf, size_t nbytes)
263 1.2 thorpej {
264 1.2 thorpej ssize_t retval;
265 1.2 thorpej pthread_t self;
266 1.2 thorpej
267 1.2 thorpej self = pthread__self();
268 1.2 thorpej pthread__testcancel(self);
269 1.2 thorpej retval = _sys_read(d, buf, nbytes);
270 1.2 thorpej pthread__testcancel(self);
271 1.2 thorpej
272 1.2 thorpej return retval;
273 1.2 thorpej }
274 1.2 thorpej
275 1.2 thorpej ssize_t
276 1.2 thorpej readv(int d, const struct iovec *iov, int iovcnt)
277 1.2 thorpej {
278 1.2 thorpej ssize_t retval;
279 1.2 thorpej pthread_t self;
280 1.2 thorpej
281 1.2 thorpej self = pthread__self();
282 1.2 thorpej pthread__testcancel(self);
283 1.2 thorpej retval = _sys_readv(d, iov, iovcnt);
284 1.2 thorpej pthread__testcancel(self);
285 1.2 thorpej
286 1.2 thorpej return retval;
287 1.2 thorpej }
288 1.2 thorpej
289 1.2 thorpej int
290 1.2 thorpej select(int nfds, fd_set *readfds, fd_set *writefds, fd_set *exceptfds,
291 1.2 thorpej struct timeval *timeout)
292 1.2 thorpej {
293 1.2 thorpej int retval;
294 1.2 thorpej pthread_t self;
295 1.2 thorpej
296 1.2 thorpej self = pthread__self();
297 1.2 thorpej pthread__testcancel(self);
298 1.2 thorpej retval = _sys_select(nfds, readfds, writefds, exceptfds, timeout);
299 1.2 thorpej pthread__testcancel(self);
300 1.2 thorpej
301 1.2 thorpej return retval;
302 1.2 thorpej }
303 1.2 thorpej
304 1.2 thorpej pid_t
305 1.2 thorpej wait4(pid_t wpid, int *status, int options, struct rusage *rusage)
306 1.2 thorpej {
307 1.2 thorpej pid_t retval;
308 1.2 thorpej pthread_t self;
309 1.2 thorpej
310 1.2 thorpej self = pthread__self();
311 1.2 thorpej pthread__testcancel(self);
312 1.2 thorpej retval = _sys_wait4(wpid, status, options, rusage);
313 1.2 thorpej pthread__testcancel(self);
314 1.2 thorpej
315 1.2 thorpej return retval;
316 1.2 thorpej }
317 1.2 thorpej
318 1.2 thorpej ssize_t
319 1.2 thorpej write(int d, const void *buf, size_t nbytes)
320 1.2 thorpej {
321 1.2 thorpej ssize_t retval;
322 1.2 thorpej pthread_t self;
323 1.2 thorpej
324 1.2 thorpej self = pthread__self();
325 1.2 thorpej pthread__testcancel(self);
326 1.2 thorpej retval = _sys_write(d, buf, nbytes);
327 1.2 thorpej pthread__testcancel(self);
328 1.2 thorpej
329 1.2 thorpej return retval;
330 1.2 thorpej }
331 1.2 thorpej
332 1.2 thorpej ssize_t
333 1.2 thorpej writev(int d, const struct iovec *iov, int iovcnt)
334 1.2 thorpej {
335 1.2 thorpej ssize_t retval;
336 1.2 thorpej pthread_t self;
337 1.2 thorpej
338 1.2 thorpej self = pthread__self();
339 1.2 thorpej pthread__testcancel(self);
340 1.2 thorpej retval = _sys_writev(d, iov, iovcnt);
341 1.2 thorpej pthread__testcancel(self);
342 1.2 thorpej
343 1.2 thorpej return retval;
344 1.2 thorpej }
345 1.2 thorpej
346 1.2 thorpej
347 1.2 thorpej __strong_alias(_close, close)
348 1.2 thorpej __strong_alias(_fcntl, fcntl)
349 1.2 thorpej __strong_alias(_fsync, fsync)
350 1.2 thorpej __strong_alias(_msgrcv, msgrcv)
351 1.2 thorpej __strong_alias(_msgsnd, msgsnd)
352 1.2 thorpej __strong_alias(___msync13, __msync13)
353 1.2 thorpej __strong_alias(_open, open)
354 1.2 thorpej __strong_alias(_poll, poll)
355 1.2 thorpej __strong_alias(_pread, pread)
356 1.2 thorpej __strong_alias(_pwrite, pwrite)
357 1.2 thorpej __strong_alias(_read, read)
358 1.2 thorpej __strong_alias(_readv, readv)
359 1.2 thorpej __strong_alias(_select, select)
360 1.2 thorpej __strong_alias(_wait4, wait4)
361 1.2 thorpej __strong_alias(_write, write)
362 1.2 thorpej __strong_alias(_writev, writev)
363