summaryrefslogtreecommitdiff
path: root/drd/drd_clientreq.c
blob: 8a94741809bade21e7472771aecb45eb14f019d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
/*
  This file is part of drd, a thread error detector.

  Copyright (C) 2006-2009 Bart Van Assche <bart.vanassche@gmail.com>.

  This program is free software; you can redistribute it and/or
  modify it under the terms of the GNU General Public License as
  published by the Free Software Foundation; either version 2 of the
  License, or (at your option) any later version.

  This program is distributed in the hope that it will be useful, but
  WITHOUT ANY WARRANTY; without even the implied warranty of
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  General Public License for more details.

  You should have received a copy of the GNU General Public License
  along with this program; if not, write to the Free Software
  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
  02111-1307, USA.

  The GNU General Public License is contained in the file COPYING.
*/


#include "drd_barrier.h"
#include "drd_clientreq.h"
#include "drd_cond.h"
#include "drd_mutex.h"
#include "drd_rwlock.h"
#include "drd_semaphore.h"
#include "drd_suppression.h"      // drd_start_suppression()
#include "drd_thread.h"
#include "pub_tool_basics.h"      // Bool
#include "pub_tool_debuginfo.h"   // VG_(describe_IP)()
#include "pub_tool_libcassert.h"
#include "pub_tool_libcassert.h"  // tl_assert()
#include "pub_tool_libcprint.h"   // VG_(message)()
#include "pub_tool_machine.h"     // VG_(get_SP)()
#include "pub_tool_threadstate.h"
#include "pub_tool_tooliface.h"   // VG_(needs_...)()


/* Local function declarations. */

static
Bool DRD_(handle_client_request)(ThreadId vg_tid, UWord* arg, UWord* ret);
static Addr DRD_(highest_used_stack_address)(const ThreadId vg_tid);


/* Function definitions. */

/**
 * Tell the Valgrind core the address of the DRD function that processes
 * client requests. Must be called before any client code is run.
 */
void DRD_(clientreq_init)(void)
{
  VG_(needs_client_requests)(DRD_(handle_client_request));
}

/**
 * DRD's handler for Valgrind client requests. The code below handles both
 * DRD's public and tool-internal client requests.
 */
static
Bool DRD_(handle_client_request)(ThreadId vg_tid, UWord* arg, UWord* ret)
{
  UWord result = 0;
  const DrdThreadId drd_tid = DRD_(thread_get_running_tid)();

  tl_assert(vg_tid == VG_(get_running_tid()));
  tl_assert(DRD_(VgThreadIdToDrdThreadId)(vg_tid) == drd_tid);

  switch (arg[0])
  {
  case VG_USERREQ__DRD_GET_VALGRIND_THREAD_ID:
    result = vg_tid;
    break;

  case VG_USERREQ__DRD_GET_DRD_THREAD_ID:
    result = drd_tid;
    break;

  case VG_USERREQ__DRD_START_SUPPRESSION:
    DRD_(start_suppression)(arg[1], arg[1] + arg[2], "client");
    break;

  case VG_USERREQ__DRD_FINISH_SUPPRESSION:
    DRD_(finish_suppression)(arg[1], arg[1] + arg[2]);
    break;

  case VG_USERREQ__DRD_SUPPRESS_CURRENT_STACK:
  {
    const Addr topmost_sp = DRD_(highest_used_stack_address)(vg_tid);
#if 0
    UInt nframes;
    const UInt n_ips = 20;
    Addr ips[n_ips], sps[n_ips], fps[n_ips];
    Char desc[128];
    unsigned i;

    nframes = VG_(get_StackTrace)(vg_tid, ips, n_ips, sps, fps, 0);

    VG_(message)(Vg_DebugMsg, "thread %d/%d", vg_tid, drd_tid);
    for (i = 0; i < nframes; i++)
    {
      VG_(describe_IP)(ips[i], desc, sizeof(desc));
      VG_(message)(Vg_DebugMsg, "[%2d] sp 0x%09lx fp 0x%09lx ip %s",
                   i, sps[i], fps[i], desc);
    }
#endif
    DRD_(thread_set_stack_startup)(drd_tid, VG_(get_SP)(vg_tid));
    DRD_(start_suppression)(topmost_sp, VG_(thread_get_stack_max)(vg_tid),
                            "stack top");
    break;
  }

  case VG_USERREQ__DRD_START_NEW_SEGMENT:
    DRD_(thread_new_segment)(DRD_(PtThreadIdToDrdThreadId)(arg[1]));
    break;

  case VG_USERREQ__DRD_START_TRACE_ADDR:
    DRD_(start_tracing_address_range)(arg[1], arg[1] + arg[2]);
    break;

  case VG_USERREQ__DRD_STOP_TRACE_ADDR:
    DRD_(stop_tracing_address_range)(arg[1], arg[1] + arg[2]);
    break;

  case VG_USERREQ__DRD_STOP_RECORDING:
    DRD_(thread_stop_recording)(drd_tid);
    break;

  case VG_USERREQ__DRD_START_RECORDING:
    DRD_(thread_start_recording)(drd_tid);
    break;

  case VG_USERREQ__SET_PTHREADID:
    // pthread_self() returns 0 for programs not linked with libpthread.so.
    if (arg[1] != INVALID_POSIX_THREADID)
      DRD_(thread_set_pthreadid)(drd_tid, arg[1]);
    break;

  case VG_USERREQ__SET_JOINABLE:
    DRD_(thread_set_joinable)(DRD_(PtThreadIdToDrdThreadId)(arg[1]),
                              (Bool)arg[2]);
    break;

  case VG_USERREQ__POST_THREAD_JOIN:
    tl_assert(arg[1]);
    DRD_(thread_post_join)(drd_tid, DRD_(PtThreadIdToDrdThreadId)(arg[1]));
    break;

  case VG_USERREQ__PRE_THREAD_CANCEL:
    tl_assert(arg[1]);
    DRD_(thread_pre_cancel)(drd_tid);
    break;

  case VG_USERREQ__POST_THREAD_CANCEL:
    tl_assert(arg[1]);
    break;

  case VG_USERREQ__PRE_MUTEX_INIT:
    if (DRD_(thread_enter_synchr)(drd_tid) == 0)
      DRD_(mutex_init)(arg[1], arg[2]);
    break;

  case VG_USERREQ__POST_MUTEX_INIT:
    DRD_(thread_leave_synchr)(drd_tid);
    break;

  case VG_USERREQ__PRE_MUTEX_DESTROY:
    DRD_(thread_enter_synchr)(drd_tid);
    break;

  case VG_USERREQ__POST_MUTEX_DESTROY:
    if (DRD_(thread_leave_synchr)(drd_tid) == 0)
      DRD_(mutex_post_destroy)(arg[1]);
    break;

  case VG_USERREQ__PRE_MUTEX_LOCK:
    if (DRD_(thread_enter_synchr)(drd_tid) == 0)
      DRD_(mutex_pre_lock)(arg[1], arg[2], arg[3]);
    break;

  case VG_USERREQ__POST_MUTEX_LOCK:
    if (DRD_(thread_leave_synchr)(drd_tid) == 0)
      DRD_(mutex_post_lock)(arg[1], arg[2], False/*post_cond_wait*/);
    break;

  case VG_USERREQ__PRE_MUTEX_UNLOCK:
    if (DRD_(thread_enter_synchr)(drd_tid) == 0)
      DRD_(mutex_unlock)(arg[1], arg[2]);
    break;

  case VG_USERREQ__POST_MUTEX_UNLOCK:
    DRD_(thread_leave_synchr)(drd_tid);
    break;

  case VG_USERREQ__PRE_SPIN_INIT_OR_UNLOCK:
    if (DRD_(thread_enter_synchr)(drd_tid) == 0)
      DRD_(spinlock_init_or_unlock)(arg[1]);
    break;

  case VG_USERREQ__POST_SPIN_INIT_OR_UNLOCK:
    DRD_(thread_leave_synchr)(drd_tid);
    break;

  case VG_USERREQ__PRE_COND_INIT:
    if (DRD_(thread_enter_synchr)(drd_tid) == 0)
      DRD_(cond_pre_init)(arg[1]);
    break;

  case VG_USERREQ__POST_COND_INIT:
    DRD_(thread_leave_synchr)(drd_tid);
    break;

  case VG_USERREQ__PRE_COND_DESTROY:
    DRD_(thread_enter_synchr)(drd_tid);
    break;

  case VG_USERREQ__POST_COND_DESTROY:
    if (DRD_(thread_leave_synchr)(drd_tid) == 0)
      DRD_(cond_post_destroy)(arg[1]);
    break;

  case VG_USERREQ__PRE_COND_WAIT:
    if (DRD_(thread_enter_synchr)(drd_tid) == 0)
    {
      const Addr cond = arg[1];
      const Addr mutex = arg[2];
      const MutexT mutex_type = arg[3];
      DRD_(mutex_unlock)(mutex, mutex_type);
      DRD_(cond_pre_wait)(cond, mutex);
    }
    break;

  case VG_USERREQ__POST_COND_WAIT:
    if (DRD_(thread_leave_synchr)(drd_tid) == 0)
    {
      const Addr cond = arg[1];
      const Addr mutex = arg[2];
      const Bool took_lock = arg[3];
      DRD_(cond_post_wait)(cond);
      DRD_(mutex_post_lock)(mutex, took_lock, True);
    }
    break;

  case VG_USERREQ__PRE_COND_SIGNAL:
    if (DRD_(thread_enter_synchr)(drd_tid) == 0)
      DRD_(cond_pre_signal)(arg[1]);
    break;

  case VG_USERREQ__POST_COND_SIGNAL:
    DRD_(thread_leave_synchr)(drd_tid);
    break;

  case VG_USERREQ__PRE_COND_BROADCAST:
    if (DRD_(thread_enter_synchr)(drd_tid) == 0)
      DRD_(cond_pre_broadcast)(arg[1]);
    break;

  case VG_USERREQ__POST_COND_BROADCAST:
    DRD_(thread_leave_synchr)(drd_tid);
    break;

  case VG_USERREQ__PRE_SEM_INIT:
    if (DRD_(thread_enter_synchr)(drd_tid) == 0)
      DRD_(semaphore_init)(arg[1], arg[2], arg[3]);
    break;

  case VG_USERREQ__POST_SEM_INIT:
    DRD_(thread_leave_synchr)(drd_tid);
    break;

  case VG_USERREQ__PRE_SEM_DESTROY:
    DRD_(thread_enter_synchr)(drd_tid);
    break;

  case VG_USERREQ__POST_SEM_DESTROY:
    if (DRD_(thread_leave_synchr)(drd_tid) == 0)
      DRD_(semaphore_destroy)(arg[1]);
    break;

  case VG_USERREQ__PRE_SEM_WAIT:
    if (DRD_(thread_enter_synchr)(drd_tid) == 0)
      DRD_(semaphore_pre_wait)(arg[1]);
    break;

  case VG_USERREQ__POST_SEM_WAIT:
    if (DRD_(thread_leave_synchr)(drd_tid) == 0)
      DRD_(semaphore_post_wait)(drd_tid, arg[1], arg[2]);
    break;

  case VG_USERREQ__PRE_SEM_POST:
    if (DRD_(thread_enter_synchr)(drd_tid) == 0)
      DRD_(semaphore_pre_post)(drd_tid, arg[1]);
    break;

  case VG_USERREQ__POST_SEM_POST:
    if (DRD_(thread_leave_synchr)(drd_tid) == 0)
      DRD_(semaphore_post_post)(drd_tid, arg[1], arg[2]);
    break;

  case VG_USERREQ__PRE_BARRIER_INIT:
    if (DRD_(thread_enter_synchr)(drd_tid) == 0)
      DRD_(barrier_init)(arg[1], arg[2], arg[3], arg[4]);
    break;

  case VG_USERREQ__POST_BARRIER_INIT:
    DRD_(thread_leave_synchr)(drd_tid);
    break;

  case VG_USERREQ__PRE_BARRIER_DESTROY:
    DRD_(thread_enter_synchr)(drd_tid);
    break;

  case VG_USERREQ__POST_BARRIER_DESTROY:
    if (DRD_(thread_leave_synchr)(drd_tid) == 0)
      DRD_(barrier_destroy)(arg[1], arg[2]);
    break;

  case VG_USERREQ__PRE_BARRIER_WAIT:
    if (DRD_(thread_enter_synchr)(drd_tid) == 0)
      DRD_(barrier_pre_wait)(drd_tid, arg[1], arg[2]);
    break;

  case VG_USERREQ__POST_BARRIER_WAIT:
    if (DRD_(thread_leave_synchr)(drd_tid) == 0)
      DRD_(barrier_post_wait)(drd_tid, arg[1], arg[2], arg[3], arg[4]);
    break;

  case VG_USERREQ__PRE_RWLOCK_INIT:
    DRD_(rwlock_pre_init)(arg[1]);
    break;

  case VG_USERREQ__POST_RWLOCK_DESTROY:
    DRD_(rwlock_post_destroy)(arg[1]);
    break;

  case VG_USERREQ__PRE_RWLOCK_RDLOCK:
    if (DRD_(thread_enter_synchr)(drd_tid) == 0)
      DRD_(rwlock_pre_rdlock)(arg[1]);
    break;

  case VG_USERREQ__POST_RWLOCK_RDLOCK:
    if (DRD_(thread_leave_synchr)(drd_tid) == 0)
      DRD_(rwlock_post_rdlock)(arg[1], arg[2]);
    break;

  case VG_USERREQ__PRE_RWLOCK_WRLOCK:
    if (DRD_(thread_enter_synchr)(drd_tid) == 0)
      DRD_(rwlock_pre_wrlock)(arg[1]);
    break;

  case VG_USERREQ__POST_RWLOCK_WRLOCK:
    if (DRD_(thread_leave_synchr)(drd_tid) == 0)
      DRD_(rwlock_post_wrlock)(arg[1], arg[2]);
    break;

  case VG_USERREQ__PRE_RWLOCK_UNLOCK:
    if (DRD_(thread_enter_synchr)(drd_tid) == 0)
      DRD_(rwlock_pre_unlock)(arg[1]);
    break;
      
  case VG_USERREQ__POST_RWLOCK_UNLOCK:
    DRD_(thread_leave_synchr)(drd_tid);
    break;

  default:
    VG_(message)(Vg_DebugMsg, "Unrecognized client request 0x%lx 0x%lx",
                 arg[0], arg[1]);
    tl_assert(0);
    return False;
  }

  *ret = result;
  return True;
}

/**
 * Walk the stack up to the highest stack frame, and return the stack pointer
 * of the highest stack frame. It is assumed that there are no more than
 * ten stack frames above the current frame. This should be no problem
 * since this function is either called indirectly from the _init() function
 * in vgpreload_exp-drd-*.so or from the thread wrapper for a newly created
 * thread. See also drd_pthread_intercepts.c.
 */
static Addr DRD_(highest_used_stack_address)(const ThreadId vg_tid)
{
    UInt nframes;
    const UInt n_ips = 10;
    UInt i;
    Addr ips[n_ips], sps[n_ips];
    Addr husa;

    nframes = VG_(get_StackTrace)(vg_tid, ips, n_ips, sps, 0, 0);
    tl_assert(1 <= nframes && nframes <= n_ips);

    /* A hack to work around VG_(get_StackTrace)()'s behavior that sometimes */
    /* the topmost stackframes it returns are bogus (this occurs sometimes   */
    /* at least on amd64, ppc32 and ppc64).                                  */

    husa = sps[0];

    tl_assert(VG_(thread_get_stack_max)(vg_tid)
              - VG_(thread_get_stack_size)(vg_tid) <= husa
              && husa < VG_(thread_get_stack_max)(vg_tid));

    for (i = 1; i < nframes; i++)
    {
      if (sps[i] == 0)
        break;
      if (husa < sps[i] && sps[i] < VG_(thread_get_stack_max)(vg_tid))
        husa = sps[i];
    }

    tl_assert(VG_(thread_get_stack_max)(vg_tid)
              - VG_(thread_get_stack_size)(vg_tid) <= husa
              && husa < VG_(thread_get_stack_max)(vg_tid));

    return husa;
}