sewardj | e663cb9 | 2002-04-12 10:26:32 +0000 | [diff] [blame] | 1 | |
sewardj | 439d45e | 2002-05-03 20:43:10 +0000 | [diff] [blame] | 2 | /*--------------------------------------------------------------------*/ |
| 3 | /*--- A replacement for the standard libpthread.so. ---*/ |
| 4 | /*--- vg_libpthread.c ---*/ |
| 5 | /*--------------------------------------------------------------------*/ |
| 6 | |
| 7 | /* |
| 8 | This file is part of Valgrind, an x86 protected-mode emulator |
| 9 | designed for debugging and profiling binaries on x86-Unixes. |
| 10 | |
| 11 | Copyright (C) 2000-2002 Julian Seward |
| 12 | jseward@acm.org |
| 13 | |
| 14 | This program is free software; you can redistribute it and/or |
| 15 | modify it under the terms of the GNU General Public License as |
| 16 | published by the Free Software Foundation; either version 2 of the |
| 17 | License, or (at your option) any later version. |
| 18 | |
| 19 | This program is distributed in the hope that it will be useful, but |
| 20 | WITHOUT ANY WARRANTY; without even the implied warranty of |
| 21 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 22 | General Public License for more details. |
| 23 | |
| 24 | You should have received a copy of the GNU General Public License |
| 25 | along with this program; if not, write to the Free Software |
| 26 | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA |
| 27 | 02111-1307, USA. |
| 28 | |
| 29 | The GNU General Public License is contained in the file LICENSE. |
| 30 | */ |
| 31 | |
| 32 | /* ALL THIS CODE RUNS ON THE SIMULATED CPU. |
| 33 | |
| 34 | This is a replacement for the standard libpthread.so. It is loaded |
sewardj | e663cb9 | 2002-04-12 10:26:32 +0000 | [diff] [blame] | 35 | as part of the client's image (if required) and directs pthread |
| 36 | calls through to Valgrind's request mechanism. |
| 37 | |
| 38 | A couple of caveats. |
| 39 | |
| 40 | 1. Since it's a binary-compatible replacement for an existing library, |
| 41 | we must take care to used exactly the same data layouts, etc, as |
| 42 | the standard pthread.so does. |
| 43 | |
| 44 | 2. Since this runs as part of the client, there are no specific |
| 45 | restrictions on what headers etc we can include, so long as |
| 46 | this libpthread.so does not end up having dependencies on .so's |
| 47 | which the real one doesn't. |
| 48 | |
| 49 | Later ... it appears we cannot call file-related stuff in libc here, |
| 50 | perhaps fair enough. Be careful what you call from here. Even exit() |
| 51 | doesn't work (gives infinite recursion and then stack overflow); hence |
| 52 | myexit(). Also fprintf doesn't seem safe. |
| 53 | */ |
| 54 | |
| 55 | #include "valgrind.h" /* For the request-passing mechanism */ |
| 56 | #include "vg_include.h" /* For the VG_USERREQ__* constants */ |
| 57 | |
sewardj | e663cb9 | 2002-04-12 10:26:32 +0000 | [diff] [blame] | 58 | #include <unistd.h> |
| 59 | #include <string.h> |
sewardj | 2a1dcce | 2002-04-22 12:45:25 +0000 | [diff] [blame] | 60 | #ifdef GLIBC_2_1 |
| 61 | #include <sys/time.h> |
| 62 | #endif |
sewardj | e663cb9 | 2002-04-12 10:26:32 +0000 | [diff] [blame] | 63 | |
| 64 | /* --------------------------------------------------------------------- |
| 65 | Helpers. We have to be pretty self-sufficient. |
| 66 | ------------------------------------------------------------------ */ |
| 67 | |
sewardj | 436e058 | 2002-04-26 14:31:40 +0000 | [diff] [blame] | 68 | /* Number of times any given error message is printed. */ |
| 69 | #define N_MOANS 3 |
| 70 | |
sewardj | 45b4b37 | 2002-04-16 22:50:32 +0000 | [diff] [blame] | 71 | /* Extract from Valgrind the value of VG_(clo_trace_pthread_level). |
| 72 | Returns 0 (none) if not running on Valgrind. */ |
| 73 | static |
| 74 | int get_pt_trace_level ( void ) |
| 75 | { |
| 76 | int res; |
| 77 | VALGRIND_MAGIC_SEQUENCE(res, 0 /* default */, |
| 78 | VG_USERREQ__GET_PTHREAD_TRACE_LEVEL, |
| 79 | 0, 0, 0, 0); |
| 80 | return res; |
| 81 | } |
| 82 | |
| 83 | |
sewardj | e663cb9 | 2002-04-12 10:26:32 +0000 | [diff] [blame] | 84 | static |
| 85 | void myexit ( int arg ) |
| 86 | { |
sewardj | 45b4b37 | 2002-04-16 22:50:32 +0000 | [diff] [blame] | 87 | int __res; |
sewardj | e663cb9 | 2002-04-12 10:26:32 +0000 | [diff] [blame] | 88 | __asm__ volatile ("movl %%ecx, %%ebx ; int $0x80" |
| 89 | : "=a" (__res) |
| 90 | : "0" (__NR_exit), |
| 91 | "c" (arg) ); |
sewardj | 45b4b37 | 2002-04-16 22:50:32 +0000 | [diff] [blame] | 92 | /* We don't bother to mention the fact that this asm trashes %ebx, |
| 93 | since it won't return. If you ever do let it return ... fix |
| 94 | this! */ |
sewardj | e663cb9 | 2002-04-12 10:26:32 +0000 | [diff] [blame] | 95 | } |
| 96 | |
| 97 | |
sewardj | 68b2dd9 | 2002-05-10 21:03:56 +0000 | [diff] [blame] | 98 | /* We need this guy -- it's in valgrind.so. */ |
| 99 | extern void VG_(startup) ( void ); |
| 100 | |
| 101 | |
| 102 | /* Just start up Valgrind if it's not already going. VG_(startup)() |
| 103 | detects and ignores second and subsequent calls. */ |
sewardj | 604ec3c | 2002-04-18 22:38:41 +0000 | [diff] [blame] | 104 | static __inline__ |
sewardj | e663cb9 | 2002-04-12 10:26:32 +0000 | [diff] [blame] | 105 | void ensure_valgrind ( char* caller ) |
| 106 | { |
sewardj | 68b2dd9 | 2002-05-10 21:03:56 +0000 | [diff] [blame] | 107 | VG_(startup)(); |
sewardj | e663cb9 | 2002-04-12 10:26:32 +0000 | [diff] [blame] | 108 | } |
| 109 | |
sewardj | bea1caa | 2002-05-10 23:20:58 +0000 | [diff] [blame^] | 110 | /* While we're at it ... hook our own startup function into this |
| 111 | game. */ |
| 112 | __asm__ ( |
| 113 | ".section .init\n" |
| 114 | "\tcall vgPlain_startup" |
| 115 | ); |
| 116 | |
sewardj | e663cb9 | 2002-04-12 10:26:32 +0000 | [diff] [blame] | 117 | |
| 118 | static |
sewardj | 3b5d886 | 2002-04-20 13:53:23 +0000 | [diff] [blame] | 119 | __attribute__((noreturn)) |
sewardj | e663cb9 | 2002-04-12 10:26:32 +0000 | [diff] [blame] | 120 | void barf ( char* str ) |
| 121 | { |
| 122 | char buf[100]; |
| 123 | buf[0] = 0; |
sewardj | 439d45e | 2002-05-03 20:43:10 +0000 | [diff] [blame] | 124 | strcat(buf, "\nvalgrind's libpthread.so: "); |
sewardj | e663cb9 | 2002-04-12 10:26:32 +0000 | [diff] [blame] | 125 | strcat(buf, str); |
| 126 | strcat(buf, "\n\n"); |
| 127 | write(2, buf, strlen(buf)); |
| 128 | myexit(1); |
sewardj | 3b5d886 | 2002-04-20 13:53:23 +0000 | [diff] [blame] | 129 | /* We have to persuade gcc into believing this doesn't return. */ |
| 130 | while (1) { }; |
sewardj | e663cb9 | 2002-04-12 10:26:32 +0000 | [diff] [blame] | 131 | } |
| 132 | |
| 133 | |
sewardj | 2a3d28c | 2002-04-14 13:27:00 +0000 | [diff] [blame] | 134 | static void ignored ( char* msg ) |
| 135 | { |
sewardj | 436e058 | 2002-04-26 14:31:40 +0000 | [diff] [blame] | 136 | if (get_pt_trace_level() >= 0) { |
sewardj | 439d45e | 2002-05-03 20:43:10 +0000 | [diff] [blame] | 137 | char* ig = "valgrind's libpthread.so: IGNORED call to: "; |
sewardj | 45b4b37 | 2002-04-16 22:50:32 +0000 | [diff] [blame] | 138 | write(2, ig, strlen(ig)); |
| 139 | write(2, msg, strlen(msg)); |
| 140 | ig = "\n"; |
| 141 | write(2, ig, strlen(ig)); |
| 142 | } |
sewardj | 2a3d28c | 2002-04-14 13:27:00 +0000 | [diff] [blame] | 143 | } |
| 144 | |
sewardj | 30671ff | 2002-04-21 00:13:57 +0000 | [diff] [blame] | 145 | static void kludged ( char* msg ) |
| 146 | { |
sewardj | 436e058 | 2002-04-26 14:31:40 +0000 | [diff] [blame] | 147 | if (get_pt_trace_level() >= 0) { |
sewardj | 439d45e | 2002-05-03 20:43:10 +0000 | [diff] [blame] | 148 | char* ig = "valgrind's libpthread.so: KLUDGED call to: "; |
| 149 | write(2, ig, strlen(ig)); |
| 150 | write(2, msg, strlen(msg)); |
| 151 | ig = "\n"; |
| 152 | write(2, ig, strlen(ig)); |
| 153 | } |
| 154 | } |
| 155 | |
| 156 | static void not_inside ( char* msg ) |
| 157 | { |
sewardj | 68b2dd9 | 2002-05-10 21:03:56 +0000 | [diff] [blame] | 158 | VG_(startup)(); |
| 159 | return; |
sewardj | 439d45e | 2002-05-03 20:43:10 +0000 | [diff] [blame] | 160 | if (get_pt_trace_level() >= 0) { |
| 161 | char* ig = "valgrind's libpthread.so: NOT INSIDE VALGRIND " |
| 162 | "during call to: "; |
sewardj | 30671ff | 2002-04-21 00:13:57 +0000 | [diff] [blame] | 163 | write(2, ig, strlen(ig)); |
| 164 | write(2, msg, strlen(msg)); |
| 165 | ig = "\n"; |
| 166 | write(2, ig, strlen(ig)); |
| 167 | } |
| 168 | } |
| 169 | |
sewardj | 3b13f0e | 2002-04-25 20:17:29 +0000 | [diff] [blame] | 170 | void vgPlain_unimp ( char* what ) |
| 171 | { |
sewardj | 439d45e | 2002-05-03 20:43:10 +0000 | [diff] [blame] | 172 | char* ig = "valgrind's libpthread.so: UNIMPLEMENTED FUNCTION: "; |
sewardj | 3b13f0e | 2002-04-25 20:17:29 +0000 | [diff] [blame] | 173 | write(2, ig, strlen(ig)); |
| 174 | write(2, what, strlen(what)); |
| 175 | ig = "\n"; |
| 176 | write(2, ig, strlen(ig)); |
| 177 | barf("Please report this bug to me at: jseward@acm.org"); |
| 178 | } |
| 179 | |
sewardj | e663cb9 | 2002-04-12 10:26:32 +0000 | [diff] [blame] | 180 | |
| 181 | /* --------------------------------------------------------------------- |
| 182 | Pass pthread_ calls to Valgrind's request mechanism. |
| 183 | ------------------------------------------------------------------ */ |
| 184 | |
sewardj | f8f819e | 2002-04-17 23:21:37 +0000 | [diff] [blame] | 185 | #include <pthread.h> |
| 186 | #include <stdio.h> |
| 187 | #include <errno.h> |
sewardj | 5f07b66 | 2002-04-23 16:52:51 +0000 | [diff] [blame] | 188 | #include <assert.h> |
| 189 | #include <sys/time.h> /* gettimeofday */ |
sewardj | f8f819e | 2002-04-17 23:21:37 +0000 | [diff] [blame] | 190 | |
| 191 | /* --------------------------------------------------- |
| 192 | THREAD ATTRIBUTES |
| 193 | ------------------------------------------------ */ |
| 194 | |
sewardj | 6af4b5d | 2002-04-16 04:40:49 +0000 | [diff] [blame] | 195 | int pthread_attr_init(pthread_attr_t *attr) |
| 196 | { |
sewardj | 436e058 | 2002-04-26 14:31:40 +0000 | [diff] [blame] | 197 | static int moans = N_MOANS; |
| 198 | if (moans-- > 0) |
| 199 | ignored("pthread_attr_init"); |
sewardj | 6af4b5d | 2002-04-16 04:40:49 +0000 | [diff] [blame] | 200 | return 0; |
| 201 | } |
| 202 | |
| 203 | int pthread_attr_setdetachstate(pthread_attr_t *attr, int detachstate) |
| 204 | { |
sewardj | 436e058 | 2002-04-26 14:31:40 +0000 | [diff] [blame] | 205 | static int moans = N_MOANS; |
| 206 | if (moans-- > 0) |
| 207 | ignored("pthread_attr_setdetachstate"); |
sewardj | 6af4b5d | 2002-04-16 04:40:49 +0000 | [diff] [blame] | 208 | return 0; |
| 209 | } |
| 210 | |
sewardj | 30671ff | 2002-04-21 00:13:57 +0000 | [diff] [blame] | 211 | int pthread_attr_setinheritsched(pthread_attr_t *attr, int inherit) |
| 212 | { |
sewardj | 436e058 | 2002-04-26 14:31:40 +0000 | [diff] [blame] | 213 | static int moans = N_MOANS; |
| 214 | if (moans-- > 0) |
| 215 | ignored("pthread_attr_setinheritsched"); |
sewardj | 30671ff | 2002-04-21 00:13:57 +0000 | [diff] [blame] | 216 | return 0; |
| 217 | } |
sewardj | 6af4b5d | 2002-04-16 04:40:49 +0000 | [diff] [blame] | 218 | |
sewardj | 30671ff | 2002-04-21 00:13:57 +0000 | [diff] [blame] | 219 | /* This is completely bogus. */ |
| 220 | int pthread_attr_getschedparam(const pthread_attr_t *attr, |
| 221 | struct sched_param *param) |
| 222 | { |
sewardj | 436e058 | 2002-04-26 14:31:40 +0000 | [diff] [blame] | 223 | static int moans = N_MOANS; |
| 224 | if (moans-- > 0) |
| 225 | kludged("pthread_attr_getschedparam"); |
sewardj | 72d5848 | 2002-04-24 02:20:20 +0000 | [diff] [blame] | 226 | # ifdef GLIBC_2_1 |
| 227 | if (param) param->sched_priority = 0; /* who knows */ |
| 228 | # else |
sewardj | 30671ff | 2002-04-21 00:13:57 +0000 | [diff] [blame] | 229 | if (param) param->__sched_priority = 0; /* who knows */ |
sewardj | 72d5848 | 2002-04-24 02:20:20 +0000 | [diff] [blame] | 230 | # endif |
sewardj | 30671ff | 2002-04-21 00:13:57 +0000 | [diff] [blame] | 231 | return 0; |
| 232 | } |
| 233 | |
| 234 | int pthread_attr_setschedparam(pthread_attr_t *attr, |
| 235 | const struct sched_param *param) |
| 236 | { |
sewardj | 436e058 | 2002-04-26 14:31:40 +0000 | [diff] [blame] | 237 | static int moans = N_MOANS; |
| 238 | if (moans-- > 0) |
| 239 | ignored("pthread_attr_setschedparam"); |
sewardj | 30671ff | 2002-04-21 00:13:57 +0000 | [diff] [blame] | 240 | return 0; |
| 241 | } |
| 242 | |
| 243 | int pthread_attr_destroy(pthread_attr_t *attr) |
| 244 | { |
sewardj | 436e058 | 2002-04-26 14:31:40 +0000 | [diff] [blame] | 245 | static int moans = N_MOANS; |
| 246 | if (moans-- > 0) |
| 247 | ignored("pthread_attr_destroy"); |
sewardj | 30671ff | 2002-04-21 00:13:57 +0000 | [diff] [blame] | 248 | return 0; |
| 249 | } |
sewardj | f8f819e | 2002-04-17 23:21:37 +0000 | [diff] [blame] | 250 | |
| 251 | /* --------------------------------------------------- |
| 252 | THREADs |
| 253 | ------------------------------------------------ */ |
| 254 | |
sewardj | 6072c36 | 2002-04-19 14:40:57 +0000 | [diff] [blame] | 255 | int pthread_equal(pthread_t thread1, pthread_t thread2) |
| 256 | { |
| 257 | return thread1 == thread2 ? 1 : 0; |
| 258 | } |
| 259 | |
| 260 | |
sewardj | e663cb9 | 2002-04-12 10:26:32 +0000 | [diff] [blame] | 261 | int |
| 262 | pthread_create (pthread_t *__restrict __thread, |
| 263 | __const pthread_attr_t *__restrict __attr, |
| 264 | void *(*__start_routine) (void *), |
| 265 | void *__restrict __arg) |
| 266 | { |
| 267 | int res; |
| 268 | ensure_valgrind("pthread_create"); |
| 269 | VALGRIND_MAGIC_SEQUENCE(res, 0 /* default */, |
| 270 | VG_USERREQ__PTHREAD_CREATE, |
| 271 | __thread, __attr, __start_routine, __arg); |
| 272 | return res; |
| 273 | } |
| 274 | |
| 275 | |
| 276 | |
| 277 | int |
| 278 | pthread_join (pthread_t __th, void **__thread_return) |
| 279 | { |
| 280 | int res; |
| 281 | ensure_valgrind("pthread_join"); |
| 282 | VALGRIND_MAGIC_SEQUENCE(res, 0 /* default */, |
| 283 | VG_USERREQ__PTHREAD_JOIN, |
| 284 | __th, __thread_return, 0, 0); |
| 285 | return res; |
| 286 | } |
| 287 | |
| 288 | |
sewardj | 3b5d886 | 2002-04-20 13:53:23 +0000 | [diff] [blame] | 289 | void pthread_exit(void *retval) |
| 290 | { |
| 291 | int res; |
| 292 | ensure_valgrind("pthread_exit"); |
| 293 | VALGRIND_MAGIC_SEQUENCE(res, 0 /* default */, |
| 294 | VG_USERREQ__PTHREAD_EXIT, |
| 295 | retval, 0, 0, 0); |
| 296 | /* Doesn't return! */ |
| 297 | /* However, we have to fool gcc into knowing that. */ |
| 298 | barf("pthread_exit: still alive after request?!"); |
| 299 | } |
| 300 | |
sewardj | e663cb9 | 2002-04-12 10:26:32 +0000 | [diff] [blame] | 301 | |
sewardj | 3b13f0e | 2002-04-25 20:17:29 +0000 | [diff] [blame] | 302 | pthread_t pthread_self(void) |
sewardj | e663cb9 | 2002-04-12 10:26:32 +0000 | [diff] [blame] | 303 | { |
| 304 | int tid; |
sewardj | 3b13f0e | 2002-04-25 20:17:29 +0000 | [diff] [blame] | 305 | ensure_valgrind("pthread_self"); |
sewardj | 439d45e | 2002-05-03 20:43:10 +0000 | [diff] [blame] | 306 | VALGRIND_MAGIC_SEQUENCE(tid, 1 /* default */, |
sewardj | e663cb9 | 2002-04-12 10:26:32 +0000 | [diff] [blame] | 307 | VG_USERREQ__PTHREAD_GET_THREADID, |
| 308 | 0, 0, 0, 0); |
sewardj | 439d45e | 2002-05-03 20:43:10 +0000 | [diff] [blame] | 309 | if (tid < 1 || tid >= VG_N_THREADS) |
sewardj | 3b13f0e | 2002-04-25 20:17:29 +0000 | [diff] [blame] | 310 | barf("pthread_self: invalid ThreadId"); |
| 311 | return tid; |
sewardj | e663cb9 | 2002-04-12 10:26:32 +0000 | [diff] [blame] | 312 | } |
| 313 | |
| 314 | |
sewardj | 853f55d | 2002-04-26 00:27:53 +0000 | [diff] [blame] | 315 | int pthread_detach(pthread_t th) |
| 316 | { |
sewardj | 436e058 | 2002-04-26 14:31:40 +0000 | [diff] [blame] | 317 | static int moans = N_MOANS; |
| 318 | if (moans-- > 0) |
| 319 | ignored("pthread_detach"); |
sewardj | 853f55d | 2002-04-26 00:27:53 +0000 | [diff] [blame] | 320 | return 0; |
| 321 | } |
| 322 | |
| 323 | |
sewardj | f8f819e | 2002-04-17 23:21:37 +0000 | [diff] [blame] | 324 | /* --------------------------------------------------- |
| 325 | MUTEX ATTRIBUTES |
| 326 | ------------------------------------------------ */ |
| 327 | |
sewardj | 5905fae | 2002-04-26 13:25:00 +0000 | [diff] [blame] | 328 | int __pthread_mutexattr_init(pthread_mutexattr_t *attr) |
sewardj | e663cb9 | 2002-04-12 10:26:32 +0000 | [diff] [blame] | 329 | { |
sewardj | f8f819e | 2002-04-17 23:21:37 +0000 | [diff] [blame] | 330 | attr->__mutexkind = PTHREAD_MUTEX_ERRORCHECK_NP; |
sewardj | 8937c81 | 2002-04-12 20:12:20 +0000 | [diff] [blame] | 331 | return 0; |
sewardj | e663cb9 | 2002-04-12 10:26:32 +0000 | [diff] [blame] | 332 | } |
| 333 | |
sewardj | 5905fae | 2002-04-26 13:25:00 +0000 | [diff] [blame] | 334 | int __pthread_mutexattr_settype(pthread_mutexattr_t *attr, int type) |
sewardj | f8f819e | 2002-04-17 23:21:37 +0000 | [diff] [blame] | 335 | { |
| 336 | switch (type) { |
sewardj | 3b13f0e | 2002-04-25 20:17:29 +0000 | [diff] [blame] | 337 | # ifndef GLIBC_2_1 |
sewardj | f8f819e | 2002-04-17 23:21:37 +0000 | [diff] [blame] | 338 | case PTHREAD_MUTEX_TIMED_NP: |
sewardj | 2a1dcce | 2002-04-22 12:45:25 +0000 | [diff] [blame] | 339 | case PTHREAD_MUTEX_ADAPTIVE_NP: |
sewardj | 3b13f0e | 2002-04-25 20:17:29 +0000 | [diff] [blame] | 340 | # endif |
sewardj | a1679dd | 2002-05-10 22:31:40 +0000 | [diff] [blame] | 341 | # ifdef GLIBC_2_1 |
sewardj | 68b2dd9 | 2002-05-10 21:03:56 +0000 | [diff] [blame] | 342 | case PTHREAD_MUTEX_FAST_NP: |
sewardj | a1679dd | 2002-05-10 22:31:40 +0000 | [diff] [blame] | 343 | # endif |
sewardj | f8f819e | 2002-04-17 23:21:37 +0000 | [diff] [blame] | 344 | case PTHREAD_MUTEX_RECURSIVE_NP: |
| 345 | case PTHREAD_MUTEX_ERRORCHECK_NP: |
sewardj | f8f819e | 2002-04-17 23:21:37 +0000 | [diff] [blame] | 346 | attr->__mutexkind = type; |
| 347 | return 0; |
| 348 | default: |
| 349 | return EINVAL; |
| 350 | } |
| 351 | } |
| 352 | |
sewardj | 5905fae | 2002-04-26 13:25:00 +0000 | [diff] [blame] | 353 | int __pthread_mutexattr_destroy(pthread_mutexattr_t *attr) |
sewardj | f8f819e | 2002-04-17 23:21:37 +0000 | [diff] [blame] | 354 | { |
| 355 | return 0; |
| 356 | } |
| 357 | |
| 358 | |
| 359 | /* --------------------------------------------------- |
| 360 | MUTEXes |
| 361 | ------------------------------------------------ */ |
| 362 | |
sewardj | 5905fae | 2002-04-26 13:25:00 +0000 | [diff] [blame] | 363 | int __pthread_mutex_init(pthread_mutex_t *mutex, |
| 364 | const pthread_mutexattr_t *mutexattr) |
sewardj | e663cb9 | 2002-04-12 10:26:32 +0000 | [diff] [blame] | 365 | { |
sewardj | 604ec3c | 2002-04-18 22:38:41 +0000 | [diff] [blame] | 366 | mutex->__m_count = 0; |
| 367 | mutex->__m_owner = (_pthread_descr)VG_INVALID_THREADID; |
| 368 | mutex->__m_kind = PTHREAD_MUTEX_ERRORCHECK_NP; |
| 369 | if (mutexattr) |
| 370 | mutex->__m_kind = mutexattr->__mutexkind; |
| 371 | return 0; |
sewardj | e663cb9 | 2002-04-12 10:26:32 +0000 | [diff] [blame] | 372 | } |
| 373 | |
sewardj | 439d45e | 2002-05-03 20:43:10 +0000 | [diff] [blame] | 374 | |
sewardj | 5905fae | 2002-04-26 13:25:00 +0000 | [diff] [blame] | 375 | int __pthread_mutex_lock(pthread_mutex_t *mutex) |
sewardj | e663cb9 | 2002-04-12 10:26:32 +0000 | [diff] [blame] | 376 | { |
| 377 | int res; |
sewardj | 436e058 | 2002-04-26 14:31:40 +0000 | [diff] [blame] | 378 | static int moans = N_MOANS; |
sewardj | 439d45e | 2002-05-03 20:43:10 +0000 | [diff] [blame] | 379 | if (RUNNING_ON_VALGRIND) { |
sewardj | e663cb9 | 2002-04-12 10:26:32 +0000 | [diff] [blame] | 380 | VALGRIND_MAGIC_SEQUENCE(res, 0 /* default */, |
| 381 | VG_USERREQ__PTHREAD_MUTEX_LOCK, |
| 382 | mutex, 0, 0, 0); |
| 383 | return res; |
sewardj | 439d45e | 2002-05-03 20:43:10 +0000 | [diff] [blame] | 384 | } else { |
| 385 | if (moans-- > 0) |
| 386 | not_inside("pthread_mutex_lock"); |
| 387 | return 0; /* success */ |
sewardj | e663cb9 | 2002-04-12 10:26:32 +0000 | [diff] [blame] | 388 | } |
| 389 | } |
| 390 | |
sewardj | 439d45e | 2002-05-03 20:43:10 +0000 | [diff] [blame] | 391 | |
sewardj | 5905fae | 2002-04-26 13:25:00 +0000 | [diff] [blame] | 392 | int __pthread_mutex_trylock(pthread_mutex_t *mutex) |
sewardj | 30671ff | 2002-04-21 00:13:57 +0000 | [diff] [blame] | 393 | { |
| 394 | int res; |
sewardj | 436e058 | 2002-04-26 14:31:40 +0000 | [diff] [blame] | 395 | static int moans = N_MOANS; |
sewardj | 439d45e | 2002-05-03 20:43:10 +0000 | [diff] [blame] | 396 | if (RUNNING_ON_VALGRIND) { |
sewardj | 30671ff | 2002-04-21 00:13:57 +0000 | [diff] [blame] | 397 | VALGRIND_MAGIC_SEQUENCE(res, 0 /* default */, |
| 398 | VG_USERREQ__PTHREAD_MUTEX_TRYLOCK, |
| 399 | mutex, 0, 0, 0); |
| 400 | return res; |
sewardj | 439d45e | 2002-05-03 20:43:10 +0000 | [diff] [blame] | 401 | } else { |
| 402 | if (moans-- > 0) |
| 403 | not_inside("pthread_mutex_trylock"); |
| 404 | return 0; |
sewardj | 30671ff | 2002-04-21 00:13:57 +0000 | [diff] [blame] | 405 | } |
| 406 | } |
| 407 | |
sewardj | 439d45e | 2002-05-03 20:43:10 +0000 | [diff] [blame] | 408 | |
sewardj | 5905fae | 2002-04-26 13:25:00 +0000 | [diff] [blame] | 409 | int __pthread_mutex_unlock(pthread_mutex_t *mutex) |
sewardj | e663cb9 | 2002-04-12 10:26:32 +0000 | [diff] [blame] | 410 | { |
| 411 | int res; |
sewardj | 436e058 | 2002-04-26 14:31:40 +0000 | [diff] [blame] | 412 | static int moans = N_MOANS; |
sewardj | 439d45e | 2002-05-03 20:43:10 +0000 | [diff] [blame] | 413 | if (RUNNING_ON_VALGRIND) { |
sewardj | e663cb9 | 2002-04-12 10:26:32 +0000 | [diff] [blame] | 414 | VALGRIND_MAGIC_SEQUENCE(res, 0 /* default */, |
| 415 | VG_USERREQ__PTHREAD_MUTEX_UNLOCK, |
| 416 | mutex, 0, 0, 0); |
| 417 | return res; |
sewardj | 439d45e | 2002-05-03 20:43:10 +0000 | [diff] [blame] | 418 | } else { |
| 419 | if (moans-- > 0) |
| 420 | not_inside("pthread_mutex_unlock"); |
| 421 | return 0; |
sewardj | e663cb9 | 2002-04-12 10:26:32 +0000 | [diff] [blame] | 422 | } |
| 423 | } |
| 424 | |
sewardj | 439d45e | 2002-05-03 20:43:10 +0000 | [diff] [blame] | 425 | |
sewardj | 5905fae | 2002-04-26 13:25:00 +0000 | [diff] [blame] | 426 | int __pthread_mutex_destroy(pthread_mutex_t *mutex) |
sewardj | e663cb9 | 2002-04-12 10:26:32 +0000 | [diff] [blame] | 427 | { |
sewardj | 604ec3c | 2002-04-18 22:38:41 +0000 | [diff] [blame] | 428 | /* Valgrind doesn't hold any resources on behalf of the mutex, so no |
| 429 | need to involve it. */ |
| 430 | if (mutex->__m_count > 0) |
| 431 | return EBUSY; |
sewardj | 6072c36 | 2002-04-19 14:40:57 +0000 | [diff] [blame] | 432 | mutex->__m_count = 0; |
| 433 | mutex->__m_owner = (_pthread_descr)VG_INVALID_THREADID; |
| 434 | mutex->__m_kind = PTHREAD_MUTEX_ERRORCHECK_NP; |
sewardj | 604ec3c | 2002-04-18 22:38:41 +0000 | [diff] [blame] | 435 | return 0; |
sewardj | e663cb9 | 2002-04-12 10:26:32 +0000 | [diff] [blame] | 436 | } |
| 437 | |
| 438 | |
sewardj | f8f819e | 2002-04-17 23:21:37 +0000 | [diff] [blame] | 439 | /* --------------------------------------------------- |
sewardj | 6072c36 | 2002-04-19 14:40:57 +0000 | [diff] [blame] | 440 | CONDITION VARIABLES |
| 441 | ------------------------------------------------ */ |
| 442 | |
| 443 | /* LinuxThreads supports no attributes for conditions. Hence ... */ |
| 444 | |
| 445 | int pthread_condattr_init(pthread_condattr_t *attr) |
| 446 | { |
| 447 | return 0; |
| 448 | } |
| 449 | |
sewardj | 0738a59 | 2002-04-20 13:59:33 +0000 | [diff] [blame] | 450 | int pthread_condattr_destroy(pthread_condattr_t *attr) |
| 451 | { |
| 452 | return 0; |
| 453 | } |
sewardj | 6072c36 | 2002-04-19 14:40:57 +0000 | [diff] [blame] | 454 | |
| 455 | int pthread_cond_init( pthread_cond_t *cond, |
| 456 | const pthread_condattr_t *cond_attr) |
| 457 | { |
| 458 | cond->__c_waiting = (_pthread_descr)VG_INVALID_THREADID; |
| 459 | return 0; |
| 460 | } |
| 461 | |
sewardj | f854f47 | 2002-04-21 12:19:41 +0000 | [diff] [blame] | 462 | int pthread_cond_destroy(pthread_cond_t *cond) |
| 463 | { |
| 464 | /* should check that no threads are waiting on this CV */ |
sewardj | 436e058 | 2002-04-26 14:31:40 +0000 | [diff] [blame] | 465 | static int moans = N_MOANS; |
| 466 | if (moans-- > 0) |
| 467 | kludged("pthread_cond_destroy"); |
sewardj | f854f47 | 2002-04-21 12:19:41 +0000 | [diff] [blame] | 468 | return 0; |
| 469 | } |
sewardj | 6072c36 | 2002-04-19 14:40:57 +0000 | [diff] [blame] | 470 | |
| 471 | /* --------------------------------------------------- |
| 472 | SCHEDULING |
| 473 | ------------------------------------------------ */ |
| 474 | |
| 475 | /* This is completely bogus. */ |
| 476 | int pthread_getschedparam(pthread_t target_thread, |
| 477 | int *policy, |
| 478 | struct sched_param *param) |
| 479 | { |
sewardj | 436e058 | 2002-04-26 14:31:40 +0000 | [diff] [blame] | 480 | static int moans = N_MOANS; |
| 481 | if (moans-- > 0) |
| 482 | kludged("pthread_getschedparam"); |
sewardj | 6072c36 | 2002-04-19 14:40:57 +0000 | [diff] [blame] | 483 | if (policy) *policy = SCHED_OTHER; |
sewardj | 2a1dcce | 2002-04-22 12:45:25 +0000 | [diff] [blame] | 484 | # ifdef GLIBC_2_1 |
| 485 | if (param) param->sched_priority = 0; /* who knows */ |
| 486 | # else |
sewardj | 6072c36 | 2002-04-19 14:40:57 +0000 | [diff] [blame] | 487 | if (param) param->__sched_priority = 0; /* who knows */ |
sewardj | 2a1dcce | 2002-04-22 12:45:25 +0000 | [diff] [blame] | 488 | # endif |
sewardj | 6072c36 | 2002-04-19 14:40:57 +0000 | [diff] [blame] | 489 | return 0; |
| 490 | } |
| 491 | |
| 492 | int pthread_setschedparam(pthread_t target_thread, |
| 493 | int policy, |
| 494 | const struct sched_param *param) |
| 495 | { |
sewardj | 436e058 | 2002-04-26 14:31:40 +0000 | [diff] [blame] | 496 | static int moans = N_MOANS; |
| 497 | if (moans-- > 0) |
| 498 | ignored("pthread_setschedparam"); |
sewardj | 6072c36 | 2002-04-19 14:40:57 +0000 | [diff] [blame] | 499 | return 0; |
| 500 | } |
| 501 | |
sewardj | 3b5d886 | 2002-04-20 13:53:23 +0000 | [diff] [blame] | 502 | int pthread_cond_wait(pthread_cond_t *cond, pthread_mutex_t *mutex) |
| 503 | { |
| 504 | int res; |
| 505 | ensure_valgrind("pthread_cond_wait"); |
| 506 | VALGRIND_MAGIC_SEQUENCE(res, 0 /* default */, |
| 507 | VG_USERREQ__PTHREAD_COND_WAIT, |
| 508 | cond, mutex, 0, 0); |
| 509 | return res; |
| 510 | } |
| 511 | |
sewardj | 5f07b66 | 2002-04-23 16:52:51 +0000 | [diff] [blame] | 512 | int pthread_cond_timedwait ( pthread_cond_t *cond, |
| 513 | pthread_mutex_t *mutex, |
| 514 | const struct timespec *abstime ) |
| 515 | { |
| 516 | int res; |
| 517 | unsigned int ms_now, ms_end; |
| 518 | struct timeval timeval_now; |
| 519 | unsigned long long int ull_ms_now_after_1970; |
| 520 | unsigned long long int ull_ms_end_after_1970; |
| 521 | |
| 522 | ensure_valgrind("pthread_cond_timedwait"); |
| 523 | VALGRIND_MAGIC_SEQUENCE(ms_now, 0xFFFFFFFF /* default */, |
| 524 | VG_USERREQ__READ_MILLISECOND_TIMER, |
| 525 | 0, 0, 0, 0); |
| 526 | assert(ms_now != 0xFFFFFFFF); |
| 527 | res = gettimeofday(&timeval_now, NULL); |
| 528 | assert(res == 0); |
| 529 | |
| 530 | ull_ms_now_after_1970 |
| 531 | = 1000ULL * ((unsigned long long int)(timeval_now.tv_sec)) |
| 532 | + ((unsigned long long int)(timeval_now.tv_usec / 1000000)); |
| 533 | ull_ms_end_after_1970 |
| 534 | = 1000ULL * ((unsigned long long int)(abstime->tv_sec)) |
| 535 | + ((unsigned long long int)(abstime->tv_nsec / 1000000)); |
| 536 | assert(ull_ms_end_after_1970 >= ull_ms_now_after_1970); |
| 537 | ms_end |
| 538 | = ms_now + (unsigned int)(ull_ms_end_after_1970 - ull_ms_now_after_1970); |
| 539 | VALGRIND_MAGIC_SEQUENCE(res, 0 /* default */, |
| 540 | VG_USERREQ__PTHREAD_COND_TIMEDWAIT, |
| 541 | cond, mutex, ms_end, 0); |
| 542 | return res; |
| 543 | } |
| 544 | |
| 545 | |
sewardj | 3b5d886 | 2002-04-20 13:53:23 +0000 | [diff] [blame] | 546 | int pthread_cond_signal(pthread_cond_t *cond) |
| 547 | { |
| 548 | int res; |
| 549 | ensure_valgrind("pthread_cond_signal"); |
| 550 | VALGRIND_MAGIC_SEQUENCE(res, 0 /* default */, |
| 551 | VG_USERREQ__PTHREAD_COND_SIGNAL, |
| 552 | cond, 0, 0, 0); |
| 553 | return res; |
| 554 | } |
| 555 | |
| 556 | int pthread_cond_broadcast(pthread_cond_t *cond) |
| 557 | { |
| 558 | int res; |
| 559 | ensure_valgrind("pthread_cond_broadcast"); |
| 560 | VALGRIND_MAGIC_SEQUENCE(res, 0 /* default */, |
| 561 | VG_USERREQ__PTHREAD_COND_BROADCAST, |
| 562 | cond, 0, 0, 0); |
| 563 | return res; |
| 564 | } |
| 565 | |
sewardj | 6072c36 | 2002-04-19 14:40:57 +0000 | [diff] [blame] | 566 | |
| 567 | /* --------------------------------------------------- |
sewardj | f8f819e | 2002-04-17 23:21:37 +0000 | [diff] [blame] | 568 | CANCELLATION |
| 569 | ------------------------------------------------ */ |
| 570 | |
sewardj | 853f55d | 2002-04-26 00:27:53 +0000 | [diff] [blame] | 571 | int pthread_setcancelstate(int state, int *oldstate) |
| 572 | { |
sewardj | 436e058 | 2002-04-26 14:31:40 +0000 | [diff] [blame] | 573 | static int moans = N_MOANS; |
| 574 | if (moans-- > 0) |
| 575 | ignored("pthread_setcancelstate"); |
sewardj | 853f55d | 2002-04-26 00:27:53 +0000 | [diff] [blame] | 576 | return 0; |
| 577 | } |
| 578 | |
sewardj | e663cb9 | 2002-04-12 10:26:32 +0000 | [diff] [blame] | 579 | int pthread_setcanceltype(int type, int *oldtype) |
| 580 | { |
sewardj | 436e058 | 2002-04-26 14:31:40 +0000 | [diff] [blame] | 581 | static int moans = N_MOANS; |
| 582 | if (moans-- > 0) |
| 583 | ignored("pthread_setcanceltype"); |
sewardj | e663cb9 | 2002-04-12 10:26:32 +0000 | [diff] [blame] | 584 | return 0; |
| 585 | } |
| 586 | |
sewardj | e663cb9 | 2002-04-12 10:26:32 +0000 | [diff] [blame] | 587 | int pthread_cancel(pthread_t thread) |
| 588 | { |
| 589 | int res; |
| 590 | ensure_valgrind("pthread_cancel"); |
| 591 | VALGRIND_MAGIC_SEQUENCE(res, 0 /* default */, |
| 592 | VG_USERREQ__PTHREAD_CANCEL, |
| 593 | thread, 0, 0, 0); |
| 594 | return res; |
| 595 | } |
| 596 | |
sewardj | 853f55d | 2002-04-26 00:27:53 +0000 | [diff] [blame] | 597 | void pthread_testcancel(void) |
| 598 | { |
| 599 | } |
| 600 | |
| 601 | /*-------------------*/ |
| 602 | static pthread_mutex_t massacre_mx = PTHREAD_MUTEX_INITIALIZER; |
| 603 | |
| 604 | void __pthread_kill_other_threads_np ( void ) |
| 605 | { |
| 606 | int i, res, me; |
sewardj | 68b2dd9 | 2002-05-10 21:03:56 +0000 | [diff] [blame] | 607 | __pthread_mutex_lock(&massacre_mx); |
sewardj | 853f55d | 2002-04-26 00:27:53 +0000 | [diff] [blame] | 608 | me = pthread_self(); |
| 609 | for (i = 1; i < VG_N_THREADS; i++) { |
| 610 | if (i == me) continue; |
| 611 | res = pthread_cancel(i); |
sewardj | 436e058 | 2002-04-26 14:31:40 +0000 | [diff] [blame] | 612 | if (0 && res == 0) |
sewardj | 853f55d | 2002-04-26 00:27:53 +0000 | [diff] [blame] | 613 | printf("----------- NUKED %d\n", i); |
| 614 | } |
sewardj | 68b2dd9 | 2002-05-10 21:03:56 +0000 | [diff] [blame] | 615 | __pthread_mutex_unlock(&massacre_mx); |
sewardj | 853f55d | 2002-04-26 00:27:53 +0000 | [diff] [blame] | 616 | } |
| 617 | |
sewardj | e663cb9 | 2002-04-12 10:26:32 +0000 | [diff] [blame] | 618 | |
sewardj | f8f819e | 2002-04-17 23:21:37 +0000 | [diff] [blame] | 619 | /* --------------------------------------------------- |
| 620 | THREAD-SPECIFICs |
| 621 | ------------------------------------------------ */ |
sewardj | 5e5fa51 | 2002-04-14 13:13:05 +0000 | [diff] [blame] | 622 | |
sewardj | 5905fae | 2002-04-26 13:25:00 +0000 | [diff] [blame] | 623 | int __pthread_key_create(pthread_key_t *key, |
| 624 | void (*destr_function) (void *)) |
sewardj | 5e5fa51 | 2002-04-14 13:13:05 +0000 | [diff] [blame] | 625 | { |
sewardj | 5f07b66 | 2002-04-23 16:52:51 +0000 | [diff] [blame] | 626 | int res; |
| 627 | ensure_valgrind("pthread_key_create"); |
| 628 | VALGRIND_MAGIC_SEQUENCE(res, 0 /* default */, |
| 629 | VG_USERREQ__PTHREAD_KEY_CREATE, |
| 630 | key, destr_function, 0, 0); |
| 631 | return res; |
sewardj | 5e5fa51 | 2002-04-14 13:13:05 +0000 | [diff] [blame] | 632 | } |
| 633 | |
| 634 | int pthread_key_delete(pthread_key_t key) |
| 635 | { |
sewardj | 436e058 | 2002-04-26 14:31:40 +0000 | [diff] [blame] | 636 | static int moans = N_MOANS; |
| 637 | if (moans-- > 0) |
| 638 | ignored("pthread_key_delete"); |
sewardj | 5e5fa51 | 2002-04-14 13:13:05 +0000 | [diff] [blame] | 639 | return 0; |
| 640 | } |
| 641 | |
sewardj | 5905fae | 2002-04-26 13:25:00 +0000 | [diff] [blame] | 642 | int __pthread_setspecific(pthread_key_t key, const void *pointer) |
sewardj | 5e5fa51 | 2002-04-14 13:13:05 +0000 | [diff] [blame] | 643 | { |
sewardj | 5f07b66 | 2002-04-23 16:52:51 +0000 | [diff] [blame] | 644 | int res; |
| 645 | ensure_valgrind("pthread_setspecific"); |
| 646 | VALGRIND_MAGIC_SEQUENCE(res, 0 /* default */, |
| 647 | VG_USERREQ__PTHREAD_SETSPECIFIC, |
| 648 | key, pointer, 0, 0); |
| 649 | return res; |
sewardj | 5e5fa51 | 2002-04-14 13:13:05 +0000 | [diff] [blame] | 650 | } |
| 651 | |
sewardj | 5905fae | 2002-04-26 13:25:00 +0000 | [diff] [blame] | 652 | void * __pthread_getspecific(pthread_key_t key) |
sewardj | 5e5fa51 | 2002-04-14 13:13:05 +0000 | [diff] [blame] | 653 | { |
sewardj | 5f07b66 | 2002-04-23 16:52:51 +0000 | [diff] [blame] | 654 | int res; |
| 655 | ensure_valgrind("pthread_getspecific"); |
| 656 | VALGRIND_MAGIC_SEQUENCE(res, 0 /* default */, |
| 657 | VG_USERREQ__PTHREAD_GETSPECIFIC, |
| 658 | key, 0 , 0, 0); |
| 659 | return (void*)res; |
sewardj | 5e5fa51 | 2002-04-14 13:13:05 +0000 | [diff] [blame] | 660 | } |
| 661 | |
sewardj | f8f819e | 2002-04-17 23:21:37 +0000 | [diff] [blame] | 662 | |
| 663 | /* --------------------------------------------------- |
sewardj | 89d3d85 | 2002-04-24 19:21:39 +0000 | [diff] [blame] | 664 | ONCEry |
| 665 | ------------------------------------------------ */ |
| 666 | |
| 667 | static pthread_mutex_t once_masterlock = PTHREAD_MUTEX_INITIALIZER; |
| 668 | |
| 669 | |
sewardj | 5905fae | 2002-04-26 13:25:00 +0000 | [diff] [blame] | 670 | int __pthread_once ( pthread_once_t *once_control, |
| 671 | void (*init_routine) (void) ) |
sewardj | 89d3d85 | 2002-04-24 19:21:39 +0000 | [diff] [blame] | 672 | { |
| 673 | int res; |
| 674 | ensure_valgrind("pthread_once"); |
| 675 | |
sewardj | 68b2dd9 | 2002-05-10 21:03:56 +0000 | [diff] [blame] | 676 | res = __pthread_mutex_lock(&once_masterlock); |
sewardj | 89d3d85 | 2002-04-24 19:21:39 +0000 | [diff] [blame] | 677 | |
sewardj | 68b2dd9 | 2002-05-10 21:03:56 +0000 | [diff] [blame] | 678 | if (res != 0) { |
| 679 | printf("res = %d\n",res); |
sewardj | 89d3d85 | 2002-04-24 19:21:39 +0000 | [diff] [blame] | 680 | barf("pthread_once: Looks like your program's " |
| 681 | "init routine calls back to pthread_once() ?!"); |
sewardj | 68b2dd9 | 2002-05-10 21:03:56 +0000 | [diff] [blame] | 682 | } |
sewardj | 89d3d85 | 2002-04-24 19:21:39 +0000 | [diff] [blame] | 683 | |
| 684 | if (*once_control == 0) { |
| 685 | *once_control = 1; |
| 686 | init_routine(); |
| 687 | } |
| 688 | |
sewardj | 68b2dd9 | 2002-05-10 21:03:56 +0000 | [diff] [blame] | 689 | __pthread_mutex_unlock(&once_masterlock); |
sewardj | 89d3d85 | 2002-04-24 19:21:39 +0000 | [diff] [blame] | 690 | |
| 691 | return 0; |
| 692 | } |
| 693 | |
| 694 | |
| 695 | /* --------------------------------------------------- |
sewardj | 853f55d | 2002-04-26 00:27:53 +0000 | [diff] [blame] | 696 | MISC |
| 697 | ------------------------------------------------ */ |
| 698 | |
sewardj | 5905fae | 2002-04-26 13:25:00 +0000 | [diff] [blame] | 699 | int __pthread_atfork ( void (*prepare)(void), |
| 700 | void (*parent)(void), |
| 701 | void (*child)(void) ) |
sewardj | 853f55d | 2002-04-26 00:27:53 +0000 | [diff] [blame] | 702 | { |
sewardj | 436e058 | 2002-04-26 14:31:40 +0000 | [diff] [blame] | 703 | static int moans = N_MOANS; |
| 704 | if (moans-- > 0) |
| 705 | ignored("pthread_atfork"); |
sewardj | 853f55d | 2002-04-26 00:27:53 +0000 | [diff] [blame] | 706 | return 0; |
| 707 | } |
| 708 | |
| 709 | |
sewardj | bb99078 | 2002-05-08 02:01:14 +0000 | [diff] [blame] | 710 | __attribute__((weak)) |
| 711 | void __pthread_initialize ( void ) |
| 712 | { |
sewardj | bea1caa | 2002-05-10 23:20:58 +0000 | [diff] [blame^] | 713 | ensure_valgrind("__pthread_initialize"); |
sewardj | bb99078 | 2002-05-08 02:01:14 +0000 | [diff] [blame] | 714 | } |
| 715 | |
| 716 | |
sewardj | 853f55d | 2002-04-26 00:27:53 +0000 | [diff] [blame] | 717 | /* --------------------------------------------------- |
sewardj | 3b13f0e | 2002-04-25 20:17:29 +0000 | [diff] [blame] | 718 | LIBRARY-PRIVATE THREAD SPECIFIC STATE |
sewardj | f8f819e | 2002-04-17 23:21:37 +0000 | [diff] [blame] | 719 | ------------------------------------------------ */ |
| 720 | |
sewardj | 3b13f0e | 2002-04-25 20:17:29 +0000 | [diff] [blame] | 721 | #include <resolv.h> |
| 722 | static int thread_specific_errno[VG_N_THREADS]; |
| 723 | static int thread_specific_h_errno[VG_N_THREADS]; |
| 724 | static struct __res_state |
| 725 | thread_specific_res_state[VG_N_THREADS]; |
sewardj | f8f819e | 2002-04-17 23:21:37 +0000 | [diff] [blame] | 726 | |
sewardj | 3b13f0e | 2002-04-25 20:17:29 +0000 | [diff] [blame] | 727 | int* __errno_location ( void ) |
sewardj | f8f819e | 2002-04-17 23:21:37 +0000 | [diff] [blame] | 728 | { |
| 729 | int tid; |
sewardj | 3b13f0e | 2002-04-25 20:17:29 +0000 | [diff] [blame] | 730 | /* ensure_valgrind("__errno_location"); */ |
| 731 | VALGRIND_MAGIC_SEQUENCE(tid, 1 /* default */, |
sewardj | f8f819e | 2002-04-17 23:21:37 +0000 | [diff] [blame] | 732 | VG_USERREQ__PTHREAD_GET_THREADID, |
| 733 | 0, 0, 0, 0); |
sewardj | 3b13f0e | 2002-04-25 20:17:29 +0000 | [diff] [blame] | 734 | /* 'cos I'm paranoid ... */ |
sewardj | 439d45e | 2002-05-03 20:43:10 +0000 | [diff] [blame] | 735 | if (tid < 1 || tid >= VG_N_THREADS) |
sewardj | 3b13f0e | 2002-04-25 20:17:29 +0000 | [diff] [blame] | 736 | barf("__errno_location: invalid ThreadId"); |
| 737 | return & thread_specific_errno[tid]; |
| 738 | } |
| 739 | |
| 740 | int* __h_errno_location ( void ) |
| 741 | { |
| 742 | int tid; |
| 743 | /* ensure_valgrind("__h_errno_location"); */ |
| 744 | VALGRIND_MAGIC_SEQUENCE(tid, 1 /* default */, |
| 745 | VG_USERREQ__PTHREAD_GET_THREADID, |
| 746 | 0, 0, 0, 0); |
| 747 | /* 'cos I'm paranoid ... */ |
sewardj | 439d45e | 2002-05-03 20:43:10 +0000 | [diff] [blame] | 748 | if (tid < 1 || tid >= VG_N_THREADS) |
sewardj | 3b13f0e | 2002-04-25 20:17:29 +0000 | [diff] [blame] | 749 | barf("__h_errno_location: invalid ThreadId"); |
| 750 | return & thread_specific_h_errno[tid]; |
| 751 | } |
| 752 | |
| 753 | struct __res_state* __res_state ( void ) |
| 754 | { |
| 755 | int tid; |
| 756 | /* ensure_valgrind("__res_state"); */ |
| 757 | VALGRIND_MAGIC_SEQUENCE(tid, 1 /* default */, |
| 758 | VG_USERREQ__PTHREAD_GET_THREADID, |
| 759 | 0, 0, 0, 0); |
| 760 | /* 'cos I'm paranoid ... */ |
sewardj | 439d45e | 2002-05-03 20:43:10 +0000 | [diff] [blame] | 761 | if (tid < 1 || tid >= VG_N_THREADS) |
sewardj | 3b13f0e | 2002-04-25 20:17:29 +0000 | [diff] [blame] | 762 | barf("__res_state: invalid ThreadId"); |
| 763 | return & thread_specific_res_state[tid]; |
sewardj | f8f819e | 2002-04-17 23:21:37 +0000 | [diff] [blame] | 764 | } |
| 765 | |
| 766 | |
sewardj | 5716dbb | 2002-04-26 03:28:18 +0000 | [diff] [blame] | 767 | /* --------------------------------------------------- |
| 768 | LIBC-PRIVATE SPECIFIC DATA |
| 769 | ------------------------------------------------ */ |
| 770 | |
| 771 | /* Relies on assumption that initial private data is NULL. This |
| 772 | should be fixed somehow. */ |
| 773 | |
| 774 | /* The allowable keys (indices) (all 2 of them). |
| 775 | From sysdeps/pthread/bits/libc-tsd.h |
| 776 | */ |
sewardj | 70adeb2 | 2002-04-27 01:35:38 +0000 | [diff] [blame] | 777 | #define N_LIBC_TSD_EXTRA_KEYS 1 |
| 778 | |
sewardj | 5716dbb | 2002-04-26 03:28:18 +0000 | [diff] [blame] | 779 | enum __libc_tsd_key_t { _LIBC_TSD_KEY_MALLOC = 0, |
| 780 | _LIBC_TSD_KEY_DL_ERROR, |
| 781 | _LIBC_TSD_KEY_N }; |
| 782 | |
| 783 | /* Auto-initialising subsystem. libc_specifics_inited is set |
| 784 | after initialisation. libc_specifics_inited_mx guards it. */ |
| 785 | static int libc_specifics_inited = 0; |
| 786 | static pthread_mutex_t libc_specifics_inited_mx = PTHREAD_MUTEX_INITIALIZER; |
| 787 | |
| 788 | /* These are the keys we must initialise the first time. */ |
sewardj | 70adeb2 | 2002-04-27 01:35:38 +0000 | [diff] [blame] | 789 | static pthread_key_t libc_specifics_keys[_LIBC_TSD_KEY_N |
| 790 | + N_LIBC_TSD_EXTRA_KEYS]; |
sewardj | 5716dbb | 2002-04-26 03:28:18 +0000 | [diff] [blame] | 791 | |
| 792 | /* Initialise the keys, if they are not already initialise. */ |
| 793 | static |
| 794 | void init_libc_tsd_keys ( void ) |
| 795 | { |
| 796 | int res, i; |
| 797 | pthread_key_t k; |
| 798 | |
| 799 | res = pthread_mutex_lock(&libc_specifics_inited_mx); |
| 800 | if (res != 0) barf("init_libc_tsd_keys: lock"); |
| 801 | |
| 802 | if (libc_specifics_inited == 0) { |
| 803 | /* printf("INIT libc specifics\n"); */ |
| 804 | libc_specifics_inited = 1; |
sewardj | 70adeb2 | 2002-04-27 01:35:38 +0000 | [diff] [blame] | 805 | for (i = 0; i < _LIBC_TSD_KEY_N + N_LIBC_TSD_EXTRA_KEYS; i++) { |
sewardj | 5716dbb | 2002-04-26 03:28:18 +0000 | [diff] [blame] | 806 | res = pthread_key_create(&k, NULL); |
| 807 | if (res != 0) barf("init_libc_tsd_keys: create"); |
| 808 | libc_specifics_keys[i] = k; |
| 809 | } |
| 810 | } |
| 811 | |
| 812 | res = pthread_mutex_unlock(&libc_specifics_inited_mx); |
| 813 | if (res != 0) barf("init_libc_tsd_keys: unlock"); |
| 814 | } |
| 815 | |
| 816 | |
| 817 | static int |
| 818 | libc_internal_tsd_set ( enum __libc_tsd_key_t key, |
| 819 | const void * pointer ) |
| 820 | { |
sewardj | 70adeb2 | 2002-04-27 01:35:38 +0000 | [diff] [blame] | 821 | int res; |
| 822 | static int moans = N_MOANS; |
sewardj | 5716dbb | 2002-04-26 03:28:18 +0000 | [diff] [blame] | 823 | /* printf("SET SET SET key %d ptr %p\n", key, pointer); */ |
sewardj | 70adeb2 | 2002-04-27 01:35:38 +0000 | [diff] [blame] | 824 | if (key < _LIBC_TSD_KEY_MALLOC |
| 825 | || key >= _LIBC_TSD_KEY_N + N_LIBC_TSD_EXTRA_KEYS) |
sewardj | 5716dbb | 2002-04-26 03:28:18 +0000 | [diff] [blame] | 826 | barf("libc_internal_tsd_set: invalid key"); |
sewardj | 70adeb2 | 2002-04-27 01:35:38 +0000 | [diff] [blame] | 827 | if (key >= _LIBC_TSD_KEY_N && moans-- > 0) |
| 828 | fprintf(stderr, |
sewardj | 439d45e | 2002-05-03 20:43:10 +0000 | [diff] [blame] | 829 | "valgrind's libpthread.so: libc_internal_tsd_set: " |
| 830 | "dubious key %d\n", key); |
sewardj | 5716dbb | 2002-04-26 03:28:18 +0000 | [diff] [blame] | 831 | init_libc_tsd_keys(); |
| 832 | res = pthread_setspecific(libc_specifics_keys[key], pointer); |
| 833 | if (res != 0) barf("libc_internal_tsd_set: setspecific failed"); |
| 834 | return 0; |
| 835 | } |
| 836 | |
| 837 | static void * |
| 838 | libc_internal_tsd_get ( enum __libc_tsd_key_t key ) |
| 839 | { |
sewardj | 70adeb2 | 2002-04-27 01:35:38 +0000 | [diff] [blame] | 840 | void* v; |
| 841 | static int moans = N_MOANS; |
sewardj | 5716dbb | 2002-04-26 03:28:18 +0000 | [diff] [blame] | 842 | /* printf("GET GET GET key %d\n", key); */ |
sewardj | 70adeb2 | 2002-04-27 01:35:38 +0000 | [diff] [blame] | 843 | if (key < _LIBC_TSD_KEY_MALLOC |
| 844 | || key >= _LIBC_TSD_KEY_N + N_LIBC_TSD_EXTRA_KEYS) |
sewardj | 5716dbb | 2002-04-26 03:28:18 +0000 | [diff] [blame] | 845 | barf("libc_internal_tsd_get: invalid key"); |
sewardj | 70adeb2 | 2002-04-27 01:35:38 +0000 | [diff] [blame] | 846 | if (key >= _LIBC_TSD_KEY_N && moans-- > 0) |
| 847 | fprintf(stderr, |
sewardj | 439d45e | 2002-05-03 20:43:10 +0000 | [diff] [blame] | 848 | "valgrind's libpthread.so: libc_internal_tsd_get: " |
| 849 | "dubious key %d\n", key); |
sewardj | 5716dbb | 2002-04-26 03:28:18 +0000 | [diff] [blame] | 850 | init_libc_tsd_keys(); |
| 851 | v = pthread_getspecific(libc_specifics_keys[key]); |
| 852 | /* if (v == NULL) barf("libc_internal_tsd_set: getspecific failed"); */ |
| 853 | return v; |
| 854 | } |
| 855 | |
| 856 | |
| 857 | |
| 858 | |
sewardj | 70adeb2 | 2002-04-27 01:35:38 +0000 | [diff] [blame] | 859 | int (*__libc_internal_tsd_set) |
| 860 | (enum __libc_tsd_key_t key, const void * pointer) |
| 861 | = libc_internal_tsd_set; |
sewardj | 5716dbb | 2002-04-26 03:28:18 +0000 | [diff] [blame] | 862 | |
sewardj | 70adeb2 | 2002-04-27 01:35:38 +0000 | [diff] [blame] | 863 | void* (*__libc_internal_tsd_get) |
| 864 | (enum __libc_tsd_key_t key) |
| 865 | = libc_internal_tsd_get; |
sewardj | 5716dbb | 2002-04-26 03:28:18 +0000 | [diff] [blame] | 866 | |
| 867 | |
sewardj | e663cb9 | 2002-04-12 10:26:32 +0000 | [diff] [blame] | 868 | /* --------------------------------------------------------------------- |
| 869 | These are here (I think) because they are deemed cancellation |
| 870 | points by POSIX. For the moment we'll simply pass the call along |
| 871 | to the corresponding thread-unaware (?) libc routine. |
| 872 | ------------------------------------------------------------------ */ |
| 873 | |
sewardj | e663cb9 | 2002-04-12 10:26:32 +0000 | [diff] [blame] | 874 | #include <stdlib.h> |
| 875 | #include <signal.h> |
sewardj | e663cb9 | 2002-04-12 10:26:32 +0000 | [diff] [blame] | 876 | #include <sys/types.h> |
| 877 | #include <sys/socket.h> |
| 878 | |
sewardj | d529a44 | 2002-05-04 19:49:21 +0000 | [diff] [blame] | 879 | #ifdef GLIBC_2_1 |
| 880 | extern |
| 881 | int __sigaction |
| 882 | (int signum, |
| 883 | const struct sigaction *act, |
| 884 | struct sigaction *oldact); |
| 885 | #else |
sewardj | e663cb9 | 2002-04-12 10:26:32 +0000 | [diff] [blame] | 886 | extern |
| 887 | int __libc_sigaction |
| 888 | (int signum, |
| 889 | const struct sigaction *act, |
| 890 | struct sigaction *oldact); |
sewardj | d529a44 | 2002-05-04 19:49:21 +0000 | [diff] [blame] | 891 | #endif |
sewardj | e663cb9 | 2002-04-12 10:26:32 +0000 | [diff] [blame] | 892 | int sigaction(int signum, |
| 893 | const struct sigaction *act, |
| 894 | struct sigaction *oldact) |
| 895 | { |
sewardj | 2a1dcce | 2002-04-22 12:45:25 +0000 | [diff] [blame] | 896 | # ifdef GLIBC_2_1 |
| 897 | return __sigaction(signum, act, oldact); |
| 898 | # else |
sewardj | 45b4b37 | 2002-04-16 22:50:32 +0000 | [diff] [blame] | 899 | return __libc_sigaction(signum, act, oldact); |
sewardj | 2a1dcce | 2002-04-22 12:45:25 +0000 | [diff] [blame] | 900 | # endif |
sewardj | e663cb9 | 2002-04-12 10:26:32 +0000 | [diff] [blame] | 901 | } |
| 902 | |
| 903 | |
| 904 | extern |
| 905 | int __libc_connect(int sockfd, |
| 906 | const struct sockaddr *serv_addr, |
| 907 | socklen_t addrlen); |
sewardj | 5905fae | 2002-04-26 13:25:00 +0000 | [diff] [blame] | 908 | __attribute__((weak)) |
sewardj | e663cb9 | 2002-04-12 10:26:32 +0000 | [diff] [blame] | 909 | int connect(int sockfd, |
| 910 | const struct sockaddr *serv_addr, |
| 911 | socklen_t addrlen) |
| 912 | { |
sewardj | 45b4b37 | 2002-04-16 22:50:32 +0000 | [diff] [blame] | 913 | return __libc_connect(sockfd, serv_addr, addrlen); |
sewardj | e663cb9 | 2002-04-12 10:26:32 +0000 | [diff] [blame] | 914 | } |
| 915 | |
| 916 | |
| 917 | extern |
| 918 | int __libc_fcntl(int fd, int cmd, long arg); |
sewardj | 5905fae | 2002-04-26 13:25:00 +0000 | [diff] [blame] | 919 | __attribute__((weak)) |
sewardj | e663cb9 | 2002-04-12 10:26:32 +0000 | [diff] [blame] | 920 | int fcntl(int fd, int cmd, long arg) |
| 921 | { |
sewardj | 45b4b37 | 2002-04-16 22:50:32 +0000 | [diff] [blame] | 922 | return __libc_fcntl(fd, cmd, arg); |
sewardj | e663cb9 | 2002-04-12 10:26:32 +0000 | [diff] [blame] | 923 | } |
| 924 | |
| 925 | |
| 926 | extern |
| 927 | ssize_t __libc_write(int fd, const void *buf, size_t count); |
sewardj | 5905fae | 2002-04-26 13:25:00 +0000 | [diff] [blame] | 928 | __attribute__((weak)) |
sewardj | e663cb9 | 2002-04-12 10:26:32 +0000 | [diff] [blame] | 929 | ssize_t write(int fd, const void *buf, size_t count) |
| 930 | { |
sewardj | 45b4b37 | 2002-04-16 22:50:32 +0000 | [diff] [blame] | 931 | return __libc_write(fd, buf, count); |
sewardj | e663cb9 | 2002-04-12 10:26:32 +0000 | [diff] [blame] | 932 | } |
| 933 | |
| 934 | |
| 935 | extern |
| 936 | ssize_t __libc_read(int fd, void *buf, size_t count); |
sewardj | 5905fae | 2002-04-26 13:25:00 +0000 | [diff] [blame] | 937 | __attribute__((weak)) |
sewardj | e663cb9 | 2002-04-12 10:26:32 +0000 | [diff] [blame] | 938 | ssize_t read(int fd, void *buf, size_t count) |
| 939 | { |
sewardj | 45b4b37 | 2002-04-16 22:50:32 +0000 | [diff] [blame] | 940 | return __libc_read(fd, buf, count); |
sewardj | e663cb9 | 2002-04-12 10:26:32 +0000 | [diff] [blame] | 941 | } |
| 942 | |
sewardj | be32e45 | 2002-04-24 20:29:58 +0000 | [diff] [blame] | 943 | |
| 944 | extern |
sewardj | 853f55d | 2002-04-26 00:27:53 +0000 | [diff] [blame] | 945 | int __libc_open64(const char *pathname, int flags, mode_t mode); |
sewardj | 5905fae | 2002-04-26 13:25:00 +0000 | [diff] [blame] | 946 | __attribute__((weak)) |
sewardj | 853f55d | 2002-04-26 00:27:53 +0000 | [diff] [blame] | 947 | int open64(const char *pathname, int flags, mode_t mode) |
sewardj | be32e45 | 2002-04-24 20:29:58 +0000 | [diff] [blame] | 948 | { |
sewardj | 853f55d | 2002-04-26 00:27:53 +0000 | [diff] [blame] | 949 | return __libc_open64(pathname, flags, mode); |
sewardj | be32e45 | 2002-04-24 20:29:58 +0000 | [diff] [blame] | 950 | } |
| 951 | |
sewardj | e663cb9 | 2002-04-12 10:26:32 +0000 | [diff] [blame] | 952 | |
| 953 | extern |
sewardj | 853f55d | 2002-04-26 00:27:53 +0000 | [diff] [blame] | 954 | int __libc_open(const char *pathname, int flags, mode_t mode); |
sewardj | 5905fae | 2002-04-26 13:25:00 +0000 | [diff] [blame] | 955 | __attribute__((weak)) |
sewardj | 853f55d | 2002-04-26 00:27:53 +0000 | [diff] [blame] | 956 | int open(const char *pathname, int flags, mode_t mode) |
sewardj | e663cb9 | 2002-04-12 10:26:32 +0000 | [diff] [blame] | 957 | { |
sewardj | 853f55d | 2002-04-26 00:27:53 +0000 | [diff] [blame] | 958 | return __libc_open(pathname, flags, mode); |
sewardj | e663cb9 | 2002-04-12 10:26:32 +0000 | [diff] [blame] | 959 | } |
| 960 | |
| 961 | |
| 962 | extern |
| 963 | int __libc_close(int fd); |
sewardj | 5905fae | 2002-04-26 13:25:00 +0000 | [diff] [blame] | 964 | __attribute__((weak)) |
sewardj | e663cb9 | 2002-04-12 10:26:32 +0000 | [diff] [blame] | 965 | int close(int fd) |
| 966 | { |
sewardj | 45b4b37 | 2002-04-16 22:50:32 +0000 | [diff] [blame] | 967 | return __libc_close(fd); |
sewardj | e663cb9 | 2002-04-12 10:26:32 +0000 | [diff] [blame] | 968 | } |
| 969 | |
| 970 | |
| 971 | extern |
| 972 | int __libc_accept(int s, struct sockaddr *addr, socklen_t *addrlen); |
sewardj | 5905fae | 2002-04-26 13:25:00 +0000 | [diff] [blame] | 973 | __attribute__((weak)) |
sewardj | e663cb9 | 2002-04-12 10:26:32 +0000 | [diff] [blame] | 974 | int accept(int s, struct sockaddr *addr, socklen_t *addrlen) |
| 975 | { |
sewardj | 45b4b37 | 2002-04-16 22:50:32 +0000 | [diff] [blame] | 976 | return __libc_accept(s, addr, addrlen); |
sewardj | e663cb9 | 2002-04-12 10:26:32 +0000 | [diff] [blame] | 977 | } |
| 978 | |
| 979 | |
| 980 | extern |
| 981 | pid_t __libc_fork(void); |
sewardj | 5905fae | 2002-04-26 13:25:00 +0000 | [diff] [blame] | 982 | pid_t __fork(void) |
sewardj | e663cb9 | 2002-04-12 10:26:32 +0000 | [diff] [blame] | 983 | { |
sewardj | 45b4b37 | 2002-04-16 22:50:32 +0000 | [diff] [blame] | 984 | return __libc_fork(); |
sewardj | e663cb9 | 2002-04-12 10:26:32 +0000 | [diff] [blame] | 985 | } |
| 986 | |
| 987 | |
| 988 | extern |
| 989 | pid_t __libc_waitpid(pid_t pid, int *status, int options); |
sewardj | 5905fae | 2002-04-26 13:25:00 +0000 | [diff] [blame] | 990 | __attribute__((weak)) |
sewardj | e663cb9 | 2002-04-12 10:26:32 +0000 | [diff] [blame] | 991 | pid_t waitpid(pid_t pid, int *status, int options) |
| 992 | { |
sewardj | 45b4b37 | 2002-04-16 22:50:32 +0000 | [diff] [blame] | 993 | return __libc_waitpid(pid, status, options); |
sewardj | e663cb9 | 2002-04-12 10:26:32 +0000 | [diff] [blame] | 994 | } |
| 995 | |
| 996 | |
| 997 | extern |
| 998 | int __libc_nanosleep(const struct timespec *req, struct timespec *rem); |
sewardj | 5905fae | 2002-04-26 13:25:00 +0000 | [diff] [blame] | 999 | __attribute__((weak)) |
sewardj | e663cb9 | 2002-04-12 10:26:32 +0000 | [diff] [blame] | 1000 | int nanosleep(const struct timespec *req, struct timespec *rem) |
| 1001 | { |
| 1002 | return __libc_nanosleep(req, rem); |
| 1003 | } |
| 1004 | |
sewardj | be32e45 | 2002-04-24 20:29:58 +0000 | [diff] [blame] | 1005 | |
sewardj | e663cb9 | 2002-04-12 10:26:32 +0000 | [diff] [blame] | 1006 | extern |
| 1007 | int __libc_fsync(int fd); |
sewardj | 5905fae | 2002-04-26 13:25:00 +0000 | [diff] [blame] | 1008 | __attribute__((weak)) |
sewardj | e663cb9 | 2002-04-12 10:26:32 +0000 | [diff] [blame] | 1009 | int fsync(int fd) |
| 1010 | { |
sewardj | 45b4b37 | 2002-04-16 22:50:32 +0000 | [diff] [blame] | 1011 | return __libc_fsync(fd); |
sewardj | e663cb9 | 2002-04-12 10:26:32 +0000 | [diff] [blame] | 1012 | } |
| 1013 | |
sewardj | be32e45 | 2002-04-24 20:29:58 +0000 | [diff] [blame] | 1014 | |
sewardj | 70c7536 | 2002-04-13 04:18:32 +0000 | [diff] [blame] | 1015 | extern |
| 1016 | off_t __libc_lseek(int fildes, off_t offset, int whence); |
sewardj | 5905fae | 2002-04-26 13:25:00 +0000 | [diff] [blame] | 1017 | __attribute__((weak)) |
sewardj | 70c7536 | 2002-04-13 04:18:32 +0000 | [diff] [blame] | 1018 | off_t lseek(int fildes, off_t offset, int whence) |
| 1019 | { |
sewardj | 45b4b37 | 2002-04-16 22:50:32 +0000 | [diff] [blame] | 1020 | return __libc_lseek(fildes, offset, whence); |
sewardj | 70c7536 | 2002-04-13 04:18:32 +0000 | [diff] [blame] | 1021 | } |
| 1022 | |
sewardj | be32e45 | 2002-04-24 20:29:58 +0000 | [diff] [blame] | 1023 | |
| 1024 | extern |
| 1025 | __off64_t __libc_lseek64(int fildes, __off64_t offset, int whence); |
sewardj | 5905fae | 2002-04-26 13:25:00 +0000 | [diff] [blame] | 1026 | __attribute__((weak)) |
sewardj | be32e45 | 2002-04-24 20:29:58 +0000 | [diff] [blame] | 1027 | __off64_t lseek64(int fildes, __off64_t offset, int whence) |
| 1028 | { |
| 1029 | return __libc_lseek64(fildes, offset, whence); |
| 1030 | } |
| 1031 | |
| 1032 | |
sewardj | 6af4b5d | 2002-04-16 04:40:49 +0000 | [diff] [blame] | 1033 | extern |
| 1034 | void __libc_longjmp(jmp_buf env, int val) __attribute((noreturn)); |
sewardj | 5905fae | 2002-04-26 13:25:00 +0000 | [diff] [blame] | 1035 | /* not weak: __attribute__((weak)) */ |
sewardj | 6af4b5d | 2002-04-16 04:40:49 +0000 | [diff] [blame] | 1036 | void longjmp(jmp_buf env, int val) |
| 1037 | { |
| 1038 | __libc_longjmp(env, val); |
| 1039 | } |
| 1040 | |
sewardj | be32e45 | 2002-04-24 20:29:58 +0000 | [diff] [blame] | 1041 | |
sewardj | 6af4b5d | 2002-04-16 04:40:49 +0000 | [diff] [blame] | 1042 | extern |
| 1043 | int __libc_send(int s, const void *msg, size_t len, int flags); |
sewardj | 5905fae | 2002-04-26 13:25:00 +0000 | [diff] [blame] | 1044 | __attribute__((weak)) |
sewardj | 6af4b5d | 2002-04-16 04:40:49 +0000 | [diff] [blame] | 1045 | int send(int s, const void *msg, size_t len, int flags) |
| 1046 | { |
| 1047 | return __libc_send(s, msg, len, flags); |
| 1048 | } |
| 1049 | |
sewardj | be32e45 | 2002-04-24 20:29:58 +0000 | [diff] [blame] | 1050 | |
sewardj | 1e8cdc9 | 2002-04-18 11:37:52 +0000 | [diff] [blame] | 1051 | extern |
| 1052 | int __libc_recv(int s, void *buf, size_t len, int flags); |
sewardj | 5905fae | 2002-04-26 13:25:00 +0000 | [diff] [blame] | 1053 | __attribute__((weak)) |
sewardj | 1e8cdc9 | 2002-04-18 11:37:52 +0000 | [diff] [blame] | 1054 | int recv(int s, void *buf, size_t len, int flags) |
| 1055 | { |
| 1056 | return __libc_recv(s, buf, len, flags); |
| 1057 | } |
| 1058 | |
sewardj | be32e45 | 2002-04-24 20:29:58 +0000 | [diff] [blame] | 1059 | |
sewardj | 796d6a2 | 2002-04-24 02:28:34 +0000 | [diff] [blame] | 1060 | extern |
sewardj | 436e058 | 2002-04-26 14:31:40 +0000 | [diff] [blame] | 1061 | int __libc_recvfrom(int s, void *buf, size_t len, int flags, |
| 1062 | struct sockaddr *from, socklen_t *fromlen); |
| 1063 | __attribute__((weak)) |
| 1064 | int recvfrom(int s, void *buf, size_t len, int flags, |
| 1065 | struct sockaddr *from, socklen_t *fromlen) |
| 1066 | { |
| 1067 | return __libc_recvfrom(s, buf, len, flags, from, fromlen); |
| 1068 | } |
| 1069 | |
| 1070 | |
| 1071 | extern |
sewardj | 796d6a2 | 2002-04-24 02:28:34 +0000 | [diff] [blame] | 1072 | int __libc_sendto(int s, const void *msg, size_t len, int flags, |
| 1073 | const struct sockaddr *to, socklen_t tolen); |
sewardj | 5905fae | 2002-04-26 13:25:00 +0000 | [diff] [blame] | 1074 | __attribute__((weak)) |
sewardj | 796d6a2 | 2002-04-24 02:28:34 +0000 | [diff] [blame] | 1075 | int sendto(int s, const void *msg, size_t len, int flags, |
| 1076 | const struct sockaddr *to, socklen_t tolen) |
| 1077 | { |
| 1078 | return __libc_sendto(s, msg, len, flags, to, tolen); |
| 1079 | } |
| 1080 | |
sewardj | be32e45 | 2002-04-24 20:29:58 +0000 | [diff] [blame] | 1081 | |
sewardj | 369b170 | 2002-04-24 13:28:15 +0000 | [diff] [blame] | 1082 | extern |
| 1083 | int __libc_system(const char* str); |
sewardj | 5905fae | 2002-04-26 13:25:00 +0000 | [diff] [blame] | 1084 | __attribute__((weak)) |
sewardj | 369b170 | 2002-04-24 13:28:15 +0000 | [diff] [blame] | 1085 | int system(const char* str) |
| 1086 | { |
| 1087 | return __libc_system(str); |
| 1088 | } |
| 1089 | |
sewardj | be32e45 | 2002-04-24 20:29:58 +0000 | [diff] [blame] | 1090 | |
sewardj | ab0b1c3 | 2002-04-24 19:26:47 +0000 | [diff] [blame] | 1091 | extern |
| 1092 | pid_t __libc_wait(int *status); |
sewardj | 5905fae | 2002-04-26 13:25:00 +0000 | [diff] [blame] | 1093 | __attribute__((weak)) |
sewardj | ab0b1c3 | 2002-04-24 19:26:47 +0000 | [diff] [blame] | 1094 | pid_t wait(int *status) |
| 1095 | { |
| 1096 | return __libc_wait(status); |
| 1097 | } |
| 1098 | |
sewardj | 45b4b37 | 2002-04-16 22:50:32 +0000 | [diff] [blame] | 1099 | |
sewardj | 5905fae | 2002-04-26 13:25:00 +0000 | [diff] [blame] | 1100 | |
sewardj | 3b13f0e | 2002-04-25 20:17:29 +0000 | [diff] [blame] | 1101 | /* --------------------------------------------------------------------- |
| 1102 | Nonblocking implementations of select() and poll(). This stuff will |
| 1103 | surely rot your mind. |
| 1104 | ------------------------------------------------------------------ */ |
sewardj | e663cb9 | 2002-04-12 10:26:32 +0000 | [diff] [blame] | 1105 | |
sewardj | 08a4c3f | 2002-04-13 03:45:44 +0000 | [diff] [blame] | 1106 | /*--------------------------------------------------*/ |
| 1107 | |
| 1108 | #include "vg_kerneliface.h" |
| 1109 | |
| 1110 | static |
| 1111 | __inline__ |
| 1112 | int is_kerror ( int res ) |
| 1113 | { |
| 1114 | if (res >= -4095 && res <= -1) |
| 1115 | return 1; |
| 1116 | else |
| 1117 | return 0; |
| 1118 | } |
| 1119 | |
| 1120 | |
| 1121 | static |
| 1122 | int my_do_syscall1 ( int syscallno, int arg1 ) |
| 1123 | { |
| 1124 | int __res; |
| 1125 | __asm__ volatile ("pushl %%ebx; movl %%edx,%%ebx ; int $0x80 ; popl %%ebx" |
| 1126 | : "=a" (__res) |
| 1127 | : "0" (syscallno), |
| 1128 | "d" (arg1) ); |
| 1129 | return __res; |
| 1130 | } |
| 1131 | |
| 1132 | static |
| 1133 | int my_do_syscall2 ( int syscallno, |
sewardj | f854f47 | 2002-04-21 12:19:41 +0000 | [diff] [blame] | 1134 | int arg1, int arg2 ) |
sewardj | 08a4c3f | 2002-04-13 03:45:44 +0000 | [diff] [blame] | 1135 | { |
| 1136 | int __res; |
| 1137 | __asm__ volatile ("pushl %%ebx; movl %%edx,%%ebx ; int $0x80 ; popl %%ebx" |
| 1138 | : "=a" (__res) |
| 1139 | : "0" (syscallno), |
| 1140 | "d" (arg1), |
| 1141 | "c" (arg2) ); |
| 1142 | return __res; |
| 1143 | } |
| 1144 | |
| 1145 | static |
sewardj | f854f47 | 2002-04-21 12:19:41 +0000 | [diff] [blame] | 1146 | int my_do_syscall3 ( int syscallno, |
| 1147 | int arg1, int arg2, int arg3 ) |
| 1148 | { |
| 1149 | int __res; |
| 1150 | __asm__ volatile ("pushl %%ebx; movl %%esi,%%ebx ; int $0x80 ; popl %%ebx" |
| 1151 | : "=a" (__res) |
| 1152 | : "0" (syscallno), |
| 1153 | "S" (arg1), |
| 1154 | "c" (arg2), |
| 1155 | "d" (arg3) ); |
| 1156 | return __res; |
| 1157 | } |
| 1158 | |
| 1159 | static |
sewardj | 08a4c3f | 2002-04-13 03:45:44 +0000 | [diff] [blame] | 1160 | int do_syscall_select( int n, |
| 1161 | vki_fd_set* readfds, |
| 1162 | vki_fd_set* writefds, |
| 1163 | vki_fd_set* exceptfds, |
| 1164 | struct vki_timeval * timeout ) |
| 1165 | { |
| 1166 | int res; |
| 1167 | int args[5]; |
| 1168 | args[0] = n; |
| 1169 | args[1] = (int)readfds; |
| 1170 | args[2] = (int)writefds; |
| 1171 | args[3] = (int)exceptfds; |
| 1172 | args[4] = (int)timeout; |
| 1173 | res = my_do_syscall1(__NR_select, (int)(&(args[0])) ); |
sewardj | 02535bc | 2002-04-21 01:08:26 +0000 | [diff] [blame] | 1174 | return res; |
sewardj | 08a4c3f | 2002-04-13 03:45:44 +0000 | [diff] [blame] | 1175 | } |
| 1176 | |
| 1177 | |
| 1178 | /* This is a wrapper round select(), which makes it thread-safe, |
| 1179 | meaning that only this thread will block, rather than the entire |
| 1180 | process. This wrapper in turn depends on nanosleep() not to block |
| 1181 | the entire process, but I think (hope? suspect?) that POSIX |
| 1182 | pthreads guarantees that to be the case. |
| 1183 | |
| 1184 | Basic idea is: modify the timeout parameter to select so that it |
| 1185 | returns immediately. Poll like this until select returns non-zero, |
| 1186 | indicating something interesting happened, or until our time is up. |
| 1187 | Space out the polls with nanosleeps of say 20 milliseconds, which |
| 1188 | is required to be nonblocking; this allows other threads to run. |
sewardj | 02535bc | 2002-04-21 01:08:26 +0000 | [diff] [blame] | 1189 | |
| 1190 | Assumes: |
| 1191 | * (checked via assert) types fd_set and vki_fd_set are identical. |
| 1192 | * (checked via assert) types timeval and vki_timeval are identical. |
| 1193 | * (unchecked) libc error numbers (EINTR etc) are the negation of the |
| 1194 | kernel's error numbers (VKI_EINTR etc). |
sewardj | 08a4c3f | 2002-04-13 03:45:44 +0000 | [diff] [blame] | 1195 | */ |
sewardj | 08a4c3f | 2002-04-13 03:45:44 +0000 | [diff] [blame] | 1196 | |
sewardj | 5905fae | 2002-04-26 13:25:00 +0000 | [diff] [blame] | 1197 | /* __attribute__((weak)) */ |
sewardj | 08a4c3f | 2002-04-13 03:45:44 +0000 | [diff] [blame] | 1198 | int select ( int n, |
| 1199 | fd_set *rfds, |
| 1200 | fd_set *wfds, |
| 1201 | fd_set *xfds, |
| 1202 | struct timeval *timeout ) |
| 1203 | { |
sewardj | 5f07b66 | 2002-04-23 16:52:51 +0000 | [diff] [blame] | 1204 | unsigned int ms_now, ms_end; |
sewardj | 08a4c3f | 2002-04-13 03:45:44 +0000 | [diff] [blame] | 1205 | int res; |
| 1206 | fd_set rfds_copy; |
| 1207 | fd_set wfds_copy; |
| 1208 | fd_set xfds_copy; |
| 1209 | struct vki_timeval t_now; |
sewardj | 08a4c3f | 2002-04-13 03:45:44 +0000 | [diff] [blame] | 1210 | struct vki_timeval zero_timeout; |
| 1211 | struct vki_timespec nanosleep_interval; |
| 1212 | |
sewardj | 5f07b66 | 2002-04-23 16:52:51 +0000 | [diff] [blame] | 1213 | /* gcc's complains about ms_end being used uninitialised -- classic |
| 1214 | case it can't understand, where ms_end is both defined and used |
| 1215 | only if timeout != NULL. Hence ... */ |
| 1216 | ms_end = 0; |
sewardj | 08a4c3f | 2002-04-13 03:45:44 +0000 | [diff] [blame] | 1217 | |
| 1218 | /* We assume that the kernel and libc data layouts are identical |
| 1219 | for the following types. These asserts provide a crude |
| 1220 | check. */ |
| 1221 | if (sizeof(fd_set) != sizeof(vki_fd_set) |
| 1222 | || sizeof(struct timeval) != sizeof(struct vki_timeval)) |
| 1223 | barf("valgrind's hacky non-blocking select(): data sizes error"); |
| 1224 | |
sewardj | 5f07b66 | 2002-04-23 16:52:51 +0000 | [diff] [blame] | 1225 | /* Detect the current time and simultaneously find out if we are |
| 1226 | running on Valgrind. */ |
| 1227 | VALGRIND_MAGIC_SEQUENCE(ms_now, 0xFFFFFFFF /* default */, |
| 1228 | VG_USERREQ__READ_MILLISECOND_TIMER, |
| 1229 | 0, 0, 0, 0); |
| 1230 | |
| 1231 | /* If a zero timeout specified, this call is harmless. Also go |
| 1232 | this route if we're not running on Valgrind, for whatever |
| 1233 | reason. */ |
| 1234 | if ( (timeout && timeout->tv_sec == 0 && timeout->tv_usec == 0) |
| 1235 | || (ms_now == 0xFFFFFFFF) ) { |
sewardj | 02535bc | 2002-04-21 01:08:26 +0000 | [diff] [blame] | 1236 | res = do_syscall_select( n, (vki_fd_set*)rfds, |
sewardj | 08a4c3f | 2002-04-13 03:45:44 +0000 | [diff] [blame] | 1237 | (vki_fd_set*)wfds, |
| 1238 | (vki_fd_set*)xfds, |
| 1239 | (struct vki_timeval*)timeout); |
sewardj | 02535bc | 2002-04-21 01:08:26 +0000 | [diff] [blame] | 1240 | if (is_kerror(res)) { |
| 1241 | * (__errno_location()) = -res; |
| 1242 | return -1; |
| 1243 | } else { |
| 1244 | return res; |
| 1245 | } |
| 1246 | } |
sewardj | 08a4c3f | 2002-04-13 03:45:44 +0000 | [diff] [blame] | 1247 | |
sewardj | 5f07b66 | 2002-04-23 16:52:51 +0000 | [diff] [blame] | 1248 | /* If a timeout was specified, set ms_end to be the end millisecond |
| 1249 | counter [wallclock] time. */ |
sewardj | 08a4c3f | 2002-04-13 03:45:44 +0000 | [diff] [blame] | 1250 | if (timeout) { |
| 1251 | res = my_do_syscall2(__NR_gettimeofday, (int)&t_now, (int)NULL); |
| 1252 | assert(res == 0); |
sewardj | 5f07b66 | 2002-04-23 16:52:51 +0000 | [diff] [blame] | 1253 | ms_end = ms_now; |
| 1254 | ms_end += (timeout->tv_usec / 1000); |
| 1255 | ms_end += (timeout->tv_sec * 1000); |
sewardj | 08a4c3f | 2002-04-13 03:45:44 +0000 | [diff] [blame] | 1256 | /* Stay sane ... */ |
sewardj | 5f07b66 | 2002-04-23 16:52:51 +0000 | [diff] [blame] | 1257 | assert (ms_end >= ms_now); |
sewardj | 08a4c3f | 2002-04-13 03:45:44 +0000 | [diff] [blame] | 1258 | } |
| 1259 | |
| 1260 | /* fprintf(stderr, "MY_SELECT: before loop\n"); */ |
| 1261 | |
| 1262 | /* Either timeout == NULL, meaning wait indefinitely, or timeout != |
sewardj | 5f07b66 | 2002-04-23 16:52:51 +0000 | [diff] [blame] | 1263 | NULL, in which case ms_end holds the end time. */ |
sewardj | 08a4c3f | 2002-04-13 03:45:44 +0000 | [diff] [blame] | 1264 | while (1) { |
| 1265 | if (timeout) { |
sewardj | 5f07b66 | 2002-04-23 16:52:51 +0000 | [diff] [blame] | 1266 | VALGRIND_MAGIC_SEQUENCE(ms_now, 0xFFFFFFFF /* default */, |
| 1267 | VG_USERREQ__READ_MILLISECOND_TIMER, |
| 1268 | 0, 0, 0, 0); |
| 1269 | assert(ms_now != 0xFFFFFFFF); |
| 1270 | if (ms_now >= ms_end) { |
sewardj | 08a4c3f | 2002-04-13 03:45:44 +0000 | [diff] [blame] | 1271 | /* timeout; nothing interesting happened. */ |
| 1272 | if (rfds) FD_ZERO(rfds); |
| 1273 | if (wfds) FD_ZERO(wfds); |
| 1274 | if (xfds) FD_ZERO(xfds); |
| 1275 | return 0; |
| 1276 | } |
| 1277 | } |
| 1278 | |
| 1279 | /* These could be trashed each time round the loop, so restore |
| 1280 | them each time. */ |
| 1281 | if (rfds) rfds_copy = *rfds; |
| 1282 | if (wfds) wfds_copy = *wfds; |
| 1283 | if (xfds) xfds_copy = *xfds; |
| 1284 | |
| 1285 | zero_timeout.tv_sec = zero_timeout.tv_usec = 0; |
| 1286 | |
| 1287 | res = do_syscall_select( n, |
| 1288 | rfds ? (vki_fd_set*)(&rfds_copy) : NULL, |
| 1289 | wfds ? (vki_fd_set*)(&wfds_copy) : NULL, |
| 1290 | xfds ? (vki_fd_set*)(&xfds_copy) : NULL, |
| 1291 | & zero_timeout ); |
sewardj | 02535bc | 2002-04-21 01:08:26 +0000 | [diff] [blame] | 1292 | if (is_kerror(res)) { |
| 1293 | /* Some kind of error (including EINTR). Set errno and |
sewardj | 08a4c3f | 2002-04-13 03:45:44 +0000 | [diff] [blame] | 1294 | return. The sets are unspecified in this case. */ |
sewardj | 02535bc | 2002-04-21 01:08:26 +0000 | [diff] [blame] | 1295 | * (__errno_location()) = -res; |
| 1296 | return -1; |
sewardj | 08a4c3f | 2002-04-13 03:45:44 +0000 | [diff] [blame] | 1297 | } |
| 1298 | if (res > 0) { |
| 1299 | /* one or more fds is ready. Copy out resulting sets and |
| 1300 | return. */ |
| 1301 | if (rfds) *rfds = rfds_copy; |
| 1302 | if (wfds) *wfds = wfds_copy; |
| 1303 | if (xfds) *xfds = xfds_copy; |
| 1304 | return res; |
| 1305 | } |
| 1306 | /* fprintf(stderr, "MY_SELECT: nanosleep\n"); */ |
| 1307 | /* nanosleep and go round again */ |
sewardj | 02535bc | 2002-04-21 01:08:26 +0000 | [diff] [blame] | 1308 | nanosleep_interval.tv_sec = 0; |
sewardj | 956cc1b | 2002-04-25 01:33:50 +0000 | [diff] [blame] | 1309 | nanosleep_interval.tv_nsec = 50 * 1000 * 1000; /* 50 milliseconds */ |
sewardj | f854f47 | 2002-04-21 12:19:41 +0000 | [diff] [blame] | 1310 | /* It's critical here that valgrind's nanosleep implementation |
| 1311 | is nonblocking. */ |
| 1312 | (void)my_do_syscall2(__NR_nanosleep, |
| 1313 | (int)(&nanosleep_interval), (int)NULL); |
| 1314 | } |
| 1315 | } |
| 1316 | |
| 1317 | |
| 1318 | |
| 1319 | |
| 1320 | #include <sys/poll.h> |
| 1321 | |
sewardj | 72d5848 | 2002-04-24 02:20:20 +0000 | [diff] [blame] | 1322 | #ifdef GLIBC_2_1 |
| 1323 | typedef unsigned long int nfds_t; |
| 1324 | #endif |
| 1325 | |
sewardj | 5905fae | 2002-04-26 13:25:00 +0000 | [diff] [blame] | 1326 | /* __attribute__((weak)) */ |
sewardj | f854f47 | 2002-04-21 12:19:41 +0000 | [diff] [blame] | 1327 | int poll (struct pollfd *__fds, nfds_t __nfds, int __timeout) |
| 1328 | { |
sewardj | 5f07b66 | 2002-04-23 16:52:51 +0000 | [diff] [blame] | 1329 | unsigned int ms_now, ms_end; |
sewardj | f854f47 | 2002-04-21 12:19:41 +0000 | [diff] [blame] | 1330 | int res, i; |
sewardj | f854f47 | 2002-04-21 12:19:41 +0000 | [diff] [blame] | 1331 | struct vki_timespec nanosleep_interval; |
| 1332 | |
| 1333 | ensure_valgrind("poll"); |
| 1334 | |
sewardj | 5f07b66 | 2002-04-23 16:52:51 +0000 | [diff] [blame] | 1335 | /* Detect the current time and simultaneously find out if we are |
| 1336 | running on Valgrind. */ |
| 1337 | VALGRIND_MAGIC_SEQUENCE(ms_now, 0xFFFFFFFF /* default */, |
| 1338 | VG_USERREQ__READ_MILLISECOND_TIMER, |
| 1339 | 0, 0, 0, 0); |
| 1340 | |
sewardj | f854f47 | 2002-04-21 12:19:41 +0000 | [diff] [blame] | 1341 | if (/* CHECK SIZES FOR struct pollfd */ |
| 1342 | sizeof(struct timeval) != sizeof(struct vki_timeval)) |
| 1343 | barf("valgrind's hacky non-blocking poll(): data sizes error"); |
| 1344 | |
sewardj | 5f07b66 | 2002-04-23 16:52:51 +0000 | [diff] [blame] | 1345 | /* dummy initialisation to keep gcc -Wall happy */ |
| 1346 | ms_end = 0; |
| 1347 | |
| 1348 | /* If a zero timeout specified, this call is harmless. Also do |
| 1349 | this if not running on Valgrind. */ |
| 1350 | if (__timeout == 0 || ms_now == 0xFFFFFFFF) { |
sewardj | f854f47 | 2002-04-21 12:19:41 +0000 | [diff] [blame] | 1351 | res = my_do_syscall3(__NR_poll, (int)__fds, __nfds, __timeout); |
| 1352 | if (is_kerror(res)) { |
| 1353 | * (__errno_location()) = -res; |
| 1354 | return -1; |
| 1355 | } else { |
| 1356 | return res; |
| 1357 | } |
| 1358 | } |
| 1359 | |
sewardj | 5f07b66 | 2002-04-23 16:52:51 +0000 | [diff] [blame] | 1360 | /* If a timeout was specified, set ms_end to be the end wallclock |
| 1361 | time. Easy considering that __timeout is in milliseconds. */ |
sewardj | f854f47 | 2002-04-21 12:19:41 +0000 | [diff] [blame] | 1362 | if (__timeout > 0) { |
sewardj | 650ac00 | 2002-04-29 12:20:34 +0000 | [diff] [blame] | 1363 | ms_end = ms_now + (unsigned int)__timeout; |
sewardj | f854f47 | 2002-04-21 12:19:41 +0000 | [diff] [blame] | 1364 | } |
| 1365 | |
| 1366 | /* fprintf(stderr, "MY_POLL: before loop\n"); */ |
| 1367 | |
| 1368 | /* Either timeout < 0, meaning wait indefinitely, or timeout > 0, |
| 1369 | in which case t_end holds the end time. */ |
sewardj | 5f07b66 | 2002-04-23 16:52:51 +0000 | [diff] [blame] | 1370 | assert(__timeout != 0); |
| 1371 | |
sewardj | f854f47 | 2002-04-21 12:19:41 +0000 | [diff] [blame] | 1372 | while (1) { |
sewardj | f854f47 | 2002-04-21 12:19:41 +0000 | [diff] [blame] | 1373 | if (__timeout > 0) { |
sewardj | 5f07b66 | 2002-04-23 16:52:51 +0000 | [diff] [blame] | 1374 | VALGRIND_MAGIC_SEQUENCE(ms_now, 0xFFFFFFFF /* default */, |
| 1375 | VG_USERREQ__READ_MILLISECOND_TIMER, |
| 1376 | 0, 0, 0, 0); |
| 1377 | assert(ms_now != 0xFFFFFFFF); |
| 1378 | if (ms_now >= ms_end) { |
sewardj | f854f47 | 2002-04-21 12:19:41 +0000 | [diff] [blame] | 1379 | /* timeout; nothing interesting happened. */ |
| 1380 | for (i = 0; i < __nfds; i++) |
| 1381 | __fds[i].revents = 0; |
| 1382 | return 0; |
| 1383 | } |
| 1384 | } |
| 1385 | |
sewardj | 5f07b66 | 2002-04-23 16:52:51 +0000 | [diff] [blame] | 1386 | /* Do a return-immediately poll. */ |
sewardj | f854f47 | 2002-04-21 12:19:41 +0000 | [diff] [blame] | 1387 | res = my_do_syscall3(__NR_poll, (int)__fds, __nfds, 0 ); |
| 1388 | if (is_kerror(res)) { |
| 1389 | /* Some kind of error. Set errno and return. */ |
| 1390 | * (__errno_location()) = -res; |
| 1391 | return -1; |
| 1392 | } |
| 1393 | if (res > 0) { |
| 1394 | /* One or more fds is ready. Return now. */ |
| 1395 | return res; |
| 1396 | } |
| 1397 | /* fprintf(stderr, "MY_POLL: nanosleep\n"); */ |
| 1398 | /* nanosleep and go round again */ |
| 1399 | nanosleep_interval.tv_sec = 0; |
sewardj | 956cc1b | 2002-04-25 01:33:50 +0000 | [diff] [blame] | 1400 | nanosleep_interval.tv_nsec = 51 * 1000 * 1000; /* 51 milliseconds */ |
sewardj | 08a4c3f | 2002-04-13 03:45:44 +0000 | [diff] [blame] | 1401 | /* It's critical here that valgrind's nanosleep implementation |
| 1402 | is nonblocking. */ |
| 1403 | (void)my_do_syscall2(__NR_nanosleep, |
| 1404 | (int)(&nanosleep_interval), (int)NULL); |
| 1405 | } |
| 1406 | } |
sewardj | 3b13f0e | 2002-04-25 20:17:29 +0000 | [diff] [blame] | 1407 | |
| 1408 | |
| 1409 | /* --------------------------------------------------------------------- |
| 1410 | B'stard. |
| 1411 | ------------------------------------------------------------------ */ |
| 1412 | |
| 1413 | # define strong_alias(name, aliasname) \ |
| 1414 | extern __typeof (name) aliasname __attribute__ ((alias (#name))); |
| 1415 | |
sewardj | 5905fae | 2002-04-26 13:25:00 +0000 | [diff] [blame] | 1416 | # define weak_alias(name, aliasname) \ |
| 1417 | extern __typeof (name) aliasname __attribute__ ((weak, alias (#name))); |
sewardj | 3b13f0e | 2002-04-25 20:17:29 +0000 | [diff] [blame] | 1418 | |
sewardj | 5905fae | 2002-04-26 13:25:00 +0000 | [diff] [blame] | 1419 | strong_alias(__pthread_mutex_lock, pthread_mutex_lock) |
| 1420 | strong_alias(__pthread_mutex_trylock, pthread_mutex_trylock) |
| 1421 | strong_alias(__pthread_mutex_unlock, pthread_mutex_unlock) |
| 1422 | strong_alias(__pthread_mutexattr_init, pthread_mutexattr_init) |
| 1423 | weak_alias(__pthread_mutexattr_settype, pthread_mutexattr_settype) |
| 1424 | strong_alias(__pthread_mutex_init, pthread_mutex_init) |
| 1425 | strong_alias(__pthread_mutexattr_destroy, pthread_mutexattr_destroy) |
| 1426 | strong_alias(__pthread_mutex_destroy, pthread_mutex_destroy) |
| 1427 | strong_alias(__pthread_once, pthread_once) |
| 1428 | strong_alias(__pthread_atfork, pthread_atfork) |
| 1429 | strong_alias(__pthread_key_create, pthread_key_create) |
| 1430 | strong_alias(__pthread_getspecific, pthread_getspecific) |
| 1431 | strong_alias(__pthread_setspecific, pthread_setspecific) |
| 1432 | |
sewardj | d529a44 | 2002-05-04 19:49:21 +0000 | [diff] [blame] | 1433 | #ifndef GLIBC_2_1 |
sewardj | 3b13f0e | 2002-04-25 20:17:29 +0000 | [diff] [blame] | 1434 | strong_alias(sigaction, __sigaction) |
sewardj | d529a44 | 2002-05-04 19:49:21 +0000 | [diff] [blame] | 1435 | #endif |
| 1436 | |
sewardj | 5905fae | 2002-04-26 13:25:00 +0000 | [diff] [blame] | 1437 | strong_alias(close, __close) |
sewardj | 3b13f0e | 2002-04-25 20:17:29 +0000 | [diff] [blame] | 1438 | strong_alias(fcntl, __fcntl) |
sewardj | 5905fae | 2002-04-26 13:25:00 +0000 | [diff] [blame] | 1439 | strong_alias(lseek, __lseek) |
| 1440 | strong_alias(open, __open) |
| 1441 | strong_alias(open64, __open64) |
| 1442 | //strong_alias(pread64, __pread64) |
| 1443 | //strong_alias(pwrite64, __pwrite64) |
| 1444 | strong_alias(read, __read) |
| 1445 | strong_alias(wait, __wait) |
| 1446 | strong_alias(write, __write) |
sewardj | 3b13f0e | 2002-04-25 20:17:29 +0000 | [diff] [blame] | 1447 | strong_alias(connect, __connect) |
sewardj | 5905fae | 2002-04-26 13:25:00 +0000 | [diff] [blame] | 1448 | strong_alias(send, __send) |
| 1449 | |
| 1450 | weak_alias(__fork, fork) |
| 1451 | //weak_alias(__vfork, vfork) |
| 1452 | |
sewardj | 3b13f0e | 2002-04-25 20:17:29 +0000 | [diff] [blame] | 1453 | |
| 1454 | /*--------------------------------------------------*/ |
| 1455 | |
sewardj | 5716dbb | 2002-04-26 03:28:18 +0000 | [diff] [blame] | 1456 | int |
| 1457 | pthread_rwlock_rdlock (void* /* pthread_rwlock_t* */ rwlock) |
| 1458 | { |
sewardj | 436e058 | 2002-04-26 14:31:40 +0000 | [diff] [blame] | 1459 | static int moans = N_MOANS; |
| 1460 | if (moans-- > 0) |
| 1461 | kludged("pthread_rwlock_rdlock"); |
sewardj | 5716dbb | 2002-04-26 03:28:18 +0000 | [diff] [blame] | 1462 | return 0; |
| 1463 | } |
| 1464 | |
sewardj | 5905fae | 2002-04-26 13:25:00 +0000 | [diff] [blame] | 1465 | weak_alias(pthread_rwlock_rdlock, __pthread_rwlock_rdlock) |
sewardj | 5716dbb | 2002-04-26 03:28:18 +0000 | [diff] [blame] | 1466 | |
| 1467 | |
| 1468 | int |
| 1469 | pthread_rwlock_unlock (void* /* pthread_rwlock_t* */ rwlock) |
| 1470 | { |
sewardj | 436e058 | 2002-04-26 14:31:40 +0000 | [diff] [blame] | 1471 | static int moans = N_MOANS; |
| 1472 | if (moans-- > 0) |
| 1473 | kludged("pthread_rwlock_unlock"); |
sewardj | 5716dbb | 2002-04-26 03:28:18 +0000 | [diff] [blame] | 1474 | return 0; |
| 1475 | } |
| 1476 | |
sewardj | 5905fae | 2002-04-26 13:25:00 +0000 | [diff] [blame] | 1477 | weak_alias(pthread_rwlock_unlock, __pthread_rwlock_unlock) |
sewardj | 5716dbb | 2002-04-26 03:28:18 +0000 | [diff] [blame] | 1478 | |
| 1479 | |
sewardj | 060b04f | 2002-04-26 21:01:13 +0000 | [diff] [blame] | 1480 | int |
| 1481 | pthread_rwlock_wrlock (void* /* pthread_rwlock_t* */ rwlock) |
| 1482 | { |
| 1483 | static int moans = N_MOANS; |
| 1484 | if (moans-- > 0) |
| 1485 | kludged("pthread_rwlock_wrlock"); |
| 1486 | return 0; |
| 1487 | } |
| 1488 | |
sewardj | 262b029 | 2002-05-01 00:03:16 +0000 | [diff] [blame] | 1489 | weak_alias(pthread_rwlock_wrlock, __pthread_rwlock_wrlock) |
sewardj | 060b04f | 2002-04-26 21:01:13 +0000 | [diff] [blame] | 1490 | |
| 1491 | |
sewardj | 3b13f0e | 2002-04-25 20:17:29 +0000 | [diff] [blame] | 1492 | /* I've no idea what these are, but they get called quite a lot. |
| 1493 | Anybody know? */ |
| 1494 | |
| 1495 | #undef _IO_flockfile |
| 1496 | void _IO_flockfile ( _IO_FILE * file ) |
| 1497 | { |
sewardj | 853f55d | 2002-04-26 00:27:53 +0000 | [diff] [blame] | 1498 | pthread_mutex_lock(file->_lock); |
sewardj | 3b13f0e | 2002-04-25 20:17:29 +0000 | [diff] [blame] | 1499 | } |
sewardj | 5905fae | 2002-04-26 13:25:00 +0000 | [diff] [blame] | 1500 | weak_alias(_IO_flockfile, flockfile); |
| 1501 | |
sewardj | 3b13f0e | 2002-04-25 20:17:29 +0000 | [diff] [blame] | 1502 | |
| 1503 | #undef _IO_funlockfile |
| 1504 | void _IO_funlockfile ( _IO_FILE * file ) |
| 1505 | { |
sewardj | 853f55d | 2002-04-26 00:27:53 +0000 | [diff] [blame] | 1506 | pthread_mutex_unlock(file->_lock); |
sewardj | 3b13f0e | 2002-04-25 20:17:29 +0000 | [diff] [blame] | 1507 | } |
sewardj | 5905fae | 2002-04-26 13:25:00 +0000 | [diff] [blame] | 1508 | weak_alias(_IO_funlockfile, funlockfile); |
| 1509 | |
sewardj | 3b13f0e | 2002-04-25 20:17:29 +0000 | [diff] [blame] | 1510 | |
| 1511 | void _pthread_cleanup_push_defer ( void ) |
| 1512 | { |
sewardj | 439d45e | 2002-05-03 20:43:10 +0000 | [diff] [blame] | 1513 | static int moans = N_MOANS; |
| 1514 | if (moans-- > 0) |
| 1515 | ignored("_pthread_cleanup_push_defer"); |
sewardj | 3b13f0e | 2002-04-25 20:17:29 +0000 | [diff] [blame] | 1516 | } |
| 1517 | |
| 1518 | void _pthread_cleanup_pop_restore ( void ) |
| 1519 | { |
sewardj | 439d45e | 2002-05-03 20:43:10 +0000 | [diff] [blame] | 1520 | static int moans = N_MOANS; |
| 1521 | if (moans-- > 0) |
| 1522 | ignored("_pthread_cleanup_pop_restore"); |
sewardj | 3b13f0e | 2002-04-25 20:17:29 +0000 | [diff] [blame] | 1523 | } |
sewardj | d4f2c71 | 2002-04-30 10:20:10 +0000 | [diff] [blame] | 1524 | |
sewardj | 60e3842 | 2002-05-08 14:08:22 +0000 | [diff] [blame] | 1525 | /*--------*/ |
| 1526 | void _pthread_cleanup_push (struct _pthread_cleanup_buffer *__buffer, |
| 1527 | void (*__routine) (void *), |
| 1528 | void *__arg) |
| 1529 | { |
| 1530 | static int moans = N_MOANS; |
| 1531 | if (moans-- > 0) |
| 1532 | ignored("_pthread_cleanup_push"); |
| 1533 | } |
| 1534 | |
| 1535 | void _pthread_cleanup_pop (struct _pthread_cleanup_buffer *__buffer, |
| 1536 | int __execute) |
| 1537 | { |
| 1538 | static int moans = N_MOANS; |
| 1539 | if (moans-- > 0) { |
| 1540 | if (__execute) |
| 1541 | ignored("_pthread_cleanup_pop-EXECUTE"); |
| 1542 | else |
| 1543 | ignored("_pthread_cleanup_pop-NO-EXECUTE"); |
| 1544 | } |
| 1545 | } |
| 1546 | |
sewardj | d4f2c71 | 2002-04-30 10:20:10 +0000 | [diff] [blame] | 1547 | |
| 1548 | /* This doesn't seem to be needed to simulate libpthread.so's external |
| 1549 | interface, but many people complain about its absence. */ |
| 1550 | |
| 1551 | strong_alias(__pthread_mutexattr_settype, __pthread_mutexattr_setkind_np) |
| 1552 | weak_alias(__pthread_mutexattr_setkind_np, pthread_mutexattr_setkind_np) |
sewardj | 439d45e | 2002-05-03 20:43:10 +0000 | [diff] [blame] | 1553 | |
| 1554 | |
| 1555 | /*--------------------------------------------------------------------*/ |
| 1556 | /*--- end vg_libpthread.c ---*/ |
| 1557 | /*--------------------------------------------------------------------*/ |