blob: da021333fc01456fd827e11ba5521da27cbd1d66 [file] [log] [blame]
bartbedfd232009-03-26 19:07:15 +00001/* -*- mode: C; c-basic-offset: 3; -*- */
sewardjaf44c822007-11-25 14:01:38 +00002/*
bart86562bd2009-02-16 19:43:56 +00003 This file is part of drd, a thread error detector.
sewardjaf44c822007-11-25 14:01:38 +00004
bart876cafd2010-10-10 18:07:31 +00005 Copyright (C) 2006-2010 Bart Van Assche <bvanassche@acm.org>.
sewardjaf44c822007-11-25 14:01:38 +00006
7 This program is free software; you can redistribute it and/or
8 modify it under the terms of the GNU General Public License as
9 published by the Free Software Foundation; either version 2 of the
10 License, or (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful, but
13 WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
20 02111-1307, USA.
21
22 The GNU General Public License is contained in the file COPYING.
23*/
24
25
sewardj85642922008-01-14 11:54:56 +000026#include "drd_barrier.h"
bart4bb53d82008-02-28 19:06:34 +000027#include "drd_clientobj.h"
bart09dc13f2009-02-14 15:13:31 +000028#include "drd_clientreq.h"
sewardjaf44c822007-11-25 14:01:38 +000029#include "drd_cond.h"
30#include "drd_error.h"
bartc1824672011-03-12 14:07:09 +000031#include "drd_hb.h"
bart09dc13f2009-02-14 15:13:31 +000032#include "drd_load_store.h"
sewardjaf44c822007-11-25 14:01:38 +000033#include "drd_malloc_wrappers.h"
34#include "drd_mutex.h"
bart5bd9f2d2008-03-03 20:31:58 +000035#include "drd_rwlock.h"
sewardjaf44c822007-11-25 14:01:38 +000036#include "drd_segment.h"
sewardj85642922008-01-14 11:54:56 +000037#include "drd_semaphore.h"
sewardjaf44c822007-11-25 14:01:38 +000038#include "drd_suppression.h"
39#include "drd_thread.h"
barteacd9162008-06-16 20:22:18 +000040#include "libvex_guest_offsets.h"
sewardj85642922008-01-14 11:54:56 +000041#include "pub_drd_bitmap.h"
bart024a95a2008-04-01 18:27:41 +000042#include "pub_tool_vki.h" // Must be included before pub_tool_libcproc
sewardjaf44c822007-11-25 14:01:38 +000043#include "pub_tool_basics.h"
44#include "pub_tool_debuginfo.h" // VG_(describe_IP)()
45#include "pub_tool_libcassert.h" // tl_assert()
46#include "pub_tool_libcbase.h" // VG_(strcmp)
47#include "pub_tool_libcprint.h" // VG_(printf)
48#include "pub_tool_libcproc.h"
49#include "pub_tool_machine.h"
bart024a95a2008-04-01 18:27:41 +000050#include "pub_tool_mallocfree.h" // VG_(malloc)(), VG_(free)()
sewardjaf44c822007-11-25 14:01:38 +000051#include "pub_tool_options.h" // command line options
bartceded212008-03-26 17:39:52 +000052#include "pub_tool_replacemalloc.h"
bart72b751c2008-03-01 13:44:24 +000053#include "pub_tool_threadstate.h" // VG_(get_running_tid)()
sewardjaf44c822007-11-25 14:01:38 +000054#include "pub_tool_tooliface.h"
sewardj234e5582011-02-09 12:47:23 +000055#include "pub_tool_aspacemgr.h" // VG_(am_is_valid_for_client)
sewardjaf44c822007-11-25 14:01:38 +000056
57
bart1335ecc2009-02-14 16:10:53 +000058/* Local variables. */
sewardjaf44c822007-11-25 14:01:38 +000059
bart639d0ad2011-03-12 14:26:01 +000060static Bool s_free_is_write = False;
bart75c1cba2010-08-29 07:20:30 +000061static Bool s_print_stats = False;
62static Bool s_var_info = False;
63static Bool s_show_stack_usage = False;
bartf9427fd2010-08-29 09:19:07 +000064static Bool s_trace_alloc = False;
sewardjaf44c822007-11-25 14:01:38 +000065
66
bart1335ecc2009-02-14 16:10:53 +000067/**
68 * Implement the needs_command_line_options for drd.
69 */
70static Bool DRD_(process_cmd_line_option)(Char* arg)
sewardjaf44c822007-11-25 14:01:38 +000071{
bartbedfd232009-03-26 19:07:15 +000072 int check_stack_accesses = -1;
73 int exclusive_threshold_ms = -1;
bartf98a5692009-05-03 17:17:37 +000074 int first_race_only = -1;
bartbedfd232009-03-26 19:07:15 +000075 int report_signal_unlocked = -1;
76 int segment_merging = -1;
bart8f822af2009-06-08 18:20:42 +000077 int segment_merge_interval = -1;
bartbedfd232009-03-26 19:07:15 +000078 int shared_threshold_ms = -1;
79 int show_confl_seg = -1;
80 int trace_barrier = -1;
81 int trace_clientobj = -1;
82 int trace_cond = -1;
83 int trace_csw = -1;
84 int trace_fork_join = -1;
bartc1824672011-03-12 14:07:09 +000085 int trace_hb = -1;
bartbedfd232009-03-26 19:07:15 +000086 int trace_conflict_set = -1;
bart8f822af2009-06-08 18:20:42 +000087 int trace_conflict_set_bm = -1;
bartbedfd232009-03-26 19:07:15 +000088 int trace_mutex = -1;
89 int trace_rwlock = -1;
90 int trace_segment = -1;
91 int trace_semaphore = -1;
92 int trace_suppression = -1;
93 Char* trace_address = 0;
sewardjaf44c822007-11-25 14:01:38 +000094
bartbedfd232009-03-26 19:07:15 +000095 if VG_BOOL_CLO(arg, "--check-stack-var", check_stack_accesses) {}
bart75c1cba2010-08-29 07:20:30 +000096 else if VG_BOOL_CLO(arg, "--drd-stats", s_print_stats) {}
bartf98a5692009-05-03 17:17:37 +000097 else if VG_BOOL_CLO(arg, "--first-race-only", first_race_only) {}
bart639d0ad2011-03-12 14:26:01 +000098 else if VG_BOOL_CLO(arg, "--free-is-write", s_free_is_write) {}
bart8f822af2009-06-08 18:20:42 +000099 else if VG_BOOL_CLO(arg,"--report-signal-unlocked",report_signal_unlocked)
100 {}
bartbedfd232009-03-26 19:07:15 +0000101 else if VG_BOOL_CLO(arg, "--segment-merging", segment_merging) {}
bart8f822af2009-06-08 18:20:42 +0000102 else if VG_INT_CLO (arg, "--segment-merging-interval", segment_merge_interval)
103 {}
bartbedfd232009-03-26 19:07:15 +0000104 else if VG_BOOL_CLO(arg, "--show-confl-seg", show_confl_seg) {}
bart75c1cba2010-08-29 07:20:30 +0000105 else if VG_BOOL_CLO(arg, "--show-stack-usage", s_show_stack_usage) {}
bartf9427fd2010-08-29 09:19:07 +0000106 else if VG_BOOL_CLO(arg, "--trace-alloc", s_trace_alloc) {}
bartbedfd232009-03-26 19:07:15 +0000107 else if VG_BOOL_CLO(arg, "--trace-barrier", trace_barrier) {}
108 else if VG_BOOL_CLO(arg, "--trace-clientobj", trace_clientobj) {}
109 else if VG_BOOL_CLO(arg, "--trace-cond", trace_cond) {}
110 else if VG_BOOL_CLO(arg, "--trace-conflict-set", trace_conflict_set) {}
bart8f822af2009-06-08 18:20:42 +0000111 else if VG_BOOL_CLO(arg, "--trace-conflict-set-bm", trace_conflict_set_bm){}
bartbedfd232009-03-26 19:07:15 +0000112 else if VG_BOOL_CLO(arg, "--trace-csw", trace_csw) {}
113 else if VG_BOOL_CLO(arg, "--trace-fork-join", trace_fork_join) {}
bartc1824672011-03-12 14:07:09 +0000114 else if VG_BOOL_CLO(arg, "--trace-hb", trace_hb) {}
bartbedfd232009-03-26 19:07:15 +0000115 else if VG_BOOL_CLO(arg, "--trace-mutex", trace_mutex) {}
116 else if VG_BOOL_CLO(arg, "--trace-rwlock", trace_rwlock) {}
117 else if VG_BOOL_CLO(arg, "--trace-segment", trace_segment) {}
118 else if VG_BOOL_CLO(arg, "--trace-semaphore", trace_semaphore) {}
119 else if VG_BOOL_CLO(arg, "--trace-suppr", trace_suppression) {}
bart75c1cba2010-08-29 07:20:30 +0000120 else if VG_BOOL_CLO(arg, "--var-info", s_var_info) {}
bartbedfd232009-03-26 19:07:15 +0000121 else if VG_INT_CLO (arg, "--exclusive-threshold", exclusive_threshold_ms) {}
122 else if VG_INT_CLO (arg, "--shared-threshold", shared_threshold_ms) {}
123 else if VG_STR_CLO (arg, "--trace-addr", trace_address) {}
124 else
125 return VG_(replacement_malloc_process_cmd_line_option)(arg);
sewardjaf44c822007-11-25 14:01:38 +0000126
bartbedfd232009-03-26 19:07:15 +0000127 if (check_stack_accesses != -1)
128 DRD_(set_check_stack_accesses)(check_stack_accesses);
129 if (exclusive_threshold_ms != -1)
130 {
131 DRD_(mutex_set_lock_threshold)(exclusive_threshold_ms);
132 DRD_(rwlock_set_exclusive_threshold)(exclusive_threshold_ms);
133 }
bartf98a5692009-05-03 17:17:37 +0000134 if (first_race_only != -1)
135 {
136 DRD_(set_first_race_only)(first_race_only);
137 }
bartbedfd232009-03-26 19:07:15 +0000138 if (report_signal_unlocked != -1)
139 {
140 DRD_(cond_set_report_signal_unlocked)(report_signal_unlocked);
141 }
142 if (shared_threshold_ms != -1)
143 {
144 DRD_(rwlock_set_shared_threshold)(shared_threshold_ms);
145 }
146 if (segment_merging != -1)
147 DRD_(thread_set_segment_merging)(segment_merging);
bart109d5da2009-06-22 18:06:29 +0000148 if (segment_merge_interval != -1)
bart8f822af2009-06-08 18:20:42 +0000149 DRD_(thread_set_segment_merge_interval)(segment_merge_interval);
bartbedfd232009-03-26 19:07:15 +0000150 if (show_confl_seg != -1)
151 DRD_(set_show_conflicting_segments)(show_confl_seg);
152 if (trace_address)
153 {
154 const Addr addr = VG_(strtoll16)(trace_address, 0);
155 DRD_(start_tracing_address_range)(addr, addr + 1);
156 }
157 if (trace_barrier != -1)
158 DRD_(barrier_set_trace)(trace_barrier);
159 if (trace_clientobj != -1)
160 DRD_(clientobj_set_trace)(trace_clientobj);
161 if (trace_cond != -1)
162 DRD_(cond_set_trace)(trace_cond);
163 if (trace_csw != -1)
164 DRD_(thread_trace_context_switches)(trace_csw);
165 if (trace_fork_join != -1)
166 DRD_(thread_set_trace_fork_join)(trace_fork_join);
bartc1824672011-03-12 14:07:09 +0000167 if (trace_hb != -1)
168 DRD_(hb_set_trace)(trace_hb);
bartbedfd232009-03-26 19:07:15 +0000169 if (trace_conflict_set != -1)
170 DRD_(thread_trace_conflict_set)(trace_conflict_set);
bart8f822af2009-06-08 18:20:42 +0000171 if (trace_conflict_set_bm != -1)
172 DRD_(thread_trace_conflict_set_bm)(trace_conflict_set_bm);
bartbedfd232009-03-26 19:07:15 +0000173 if (trace_mutex != -1)
174 DRD_(mutex_set_trace)(trace_mutex);
175 if (trace_rwlock != -1)
176 DRD_(rwlock_set_trace)(trace_rwlock);
177 if (trace_segment != -1)
178 DRD_(sg_set_trace)(trace_segment);
179 if (trace_semaphore != -1)
180 DRD_(semaphore_set_trace)(trace_semaphore);
181 if (trace_suppression != -1)
182 DRD_(suppression_set_trace)(trace_suppression);
sewardjaf44c822007-11-25 14:01:38 +0000183
bartbedfd232009-03-26 19:07:15 +0000184 return True;
sewardjaf44c822007-11-25 14:01:38 +0000185}
186
bart1335ecc2009-02-14 16:10:53 +0000187static void DRD_(print_usage)(void)
bartbd7e56e2008-03-31 18:14:12 +0000188{
bartbedfd232009-03-26 19:07:15 +0000189 VG_(printf)(
bart0ffa4832008-04-05 12:57:01 +0000190" --check-stack-var=yes|no Whether or not to report data races on\n"
191" stack variables [no].\n"
bart9d5b7962008-05-14 12:25:00 +0000192" --exclusive-threshold=<n> Print an error message if any mutex or\n"
bart8600c422010-10-25 18:18:54 +0000193" writer lock is held longer than the specified\n"
194" time (in milliseconds) [off].\n"
bart1a3b0b32009-05-03 17:07:34 +0000195" --first-race-only=yes|no Only report the first data race that occurs on\n"
196" a memory location instead of all races [no].\n"
bart639d0ad2011-03-12 14:26:01 +0000197" --free-is-write=yes|no Whether to report races between freeing memory\n"
198" and subsequent accesses of that memory[no].\n"
bart46b5fce2008-06-28 13:01:30 +0000199" --report-signal-unlocked=yes|no Whether to report calls to\n"
200" pthread_cond_signal() where the mutex associated\n"
201" with the signal via pthread_cond_wait() is not\n"
202" locked at the time the signal is sent [yes].\n"
bart130463a2008-04-01 17:03:33 +0000203" --segment-merging=yes|no Controls segment merging [yes].\n"
bartbd7e56e2008-03-31 18:14:12 +0000204" Segment merging is an algorithm to limit memory usage of the\n"
205" data race detection algorithm. Disabling segment merging may\n"
206" improve the accuracy of the so-called 'other segments' displayed\n"
207" in race reports but can also trigger an out of memory error.\n"
bart8f822af2009-06-08 18:20:42 +0000208" --segment-merging-interval=<n> Perform segment merging every time n new\n"
209" segments have been created. Default: %d.\n"
bart9d5b7962008-05-14 12:25:00 +0000210" --shared-threshold=<n> Print an error message if a reader lock\n"
bart8600c422010-10-25 18:18:54 +0000211" is held longer than the specified time (in\n"
212" milliseconds) [off]\n"
bart130463a2008-04-01 17:03:33 +0000213" --show-confl-seg=yes|no Show conflicting segments in race reports [yes].\n"
214" --show-stack-usage=yes|no Print stack usage at thread exit time [no].\n"
bartbd7e56e2008-03-31 18:14:12 +0000215"\n"
bartef1b9722008-07-04 15:34:23 +0000216" drd options for monitoring process behavior:\n"
bart952e1a02008-04-06 13:06:36 +0000217" --trace-addr=<address> Trace all load and store activity for the.\n"
bart130463a2008-04-01 17:03:33 +0000218" specified address [off].\n"
bartf9427fd2010-08-29 09:19:07 +0000219" --trace-alloc=yes|no Trace all memory allocations and deallocations\n"" [no].\n"
bart130463a2008-04-01 17:03:33 +0000220" --trace-barrier=yes|no Trace all barrier activity [no].\n"
221" --trace-cond=yes|no Trace all condition variable activity [no].\n"
222" --trace-fork-join=yes|no Trace all thread fork/join activity [no].\n"
223" --trace-mutex=yes|no Trace all mutex activity [no].\n"
224" --trace-rwlock=yes|no Trace all reader-writer lock activity[no].\n"
bart8f822af2009-06-08 18:20:42 +0000225" --trace-semaphore=yes|no Trace all semaphore activity [no].\n",
226DRD_(thread_get_segment_merge_interval)()
bartbedfd232009-03-26 19:07:15 +0000227);
sewardjaf44c822007-11-25 14:01:38 +0000228}
229
bart1335ecc2009-02-14 16:10:53 +0000230static void DRD_(print_debug_usage)(void)
bart31b983d2010-02-21 14:52:59 +0000231{
bartbedfd232009-03-26 19:07:15 +0000232 VG_(printf)(
bart130463a2008-04-01 17:03:33 +0000233" --drd-stats=yes|no Print statistics about DRD activity [no].\n"
234" --trace-clientobj=yes|no Trace all client object activity [no].\n"
235" --trace-csw=yes|no Trace all scheduler context switches [no].\n"
barte73b0aa2008-06-28 07:19:56 +0000236" --trace-conflict-set=yes|no Trace all conflict set updates [no].\n"
bart8f822af2009-06-08 18:20:42 +0000237" --trace-conflict-set-bm=yes|no Trace all conflict set bitmap\n"
238" updates [no]. Note: enabling this option\n"
239" will generate a lot of output !\n"
bart987781d2008-06-27 15:00:07 +0000240" --trace-segment=yes|no Trace segment actions [no].\n"
241" --trace-suppr=yes|no Trace all address suppression actions [no].\n"
bartbedfd232009-03-26 19:07:15 +0000242);
sewardjaf44c822007-11-25 14:01:38 +0000243}
244
245
246//
247// Implements the thread-related core callbacks.
248//
249
sewardjaf44c822007-11-25 14:01:38 +0000250static void drd_pre_mem_read(const CorePart part,
251 const ThreadId tid,
252 Char* const s,
253 const Addr a,
254 const SizeT size)
255{
bartbedfd232009-03-26 19:07:15 +0000256 if (size > 0)
257 {
258 DRD_(trace_load)(a, size);
259 }
sewardjaf44c822007-11-25 14:01:38 +0000260}
261
bart5e85d262008-03-01 10:49:37 +0000262static void drd_pre_mem_read_asciiz(const CorePart part,
263 const ThreadId tid,
264 Char* const s,
265 const Addr a)
266{
bartbedfd232009-03-26 19:07:15 +0000267 const char* p = (void*)a;
268 SizeT size = 0;
bart5e85d262008-03-01 10:49:37 +0000269
sewardj234e5582011-02-09 12:47:23 +0000270 // Don't segfault if the string starts in an obviously stupid
271 // place. Actually we should check the whole string, not just
272 // the start address, but that's too much trouble. At least
273 // checking the first byte is better than nothing. See #255009.
274 if (!VG_(am_is_valid_for_client) (a, 1, VKI_PROT_READ))
275 return;
276
bartbedfd232009-03-26 19:07:15 +0000277 /* Note: the expression '*p' reads client memory and may crash if the */
278 /* client provided an invalid pointer ! */
279 while (*p)
280 {
281 p++;
282 size++;
283 }
bartbedfd232009-03-26 19:07:15 +0000284 if (size > 0)
285 {
286 DRD_(trace_load)(a, size);
287 }
bart5e85d262008-03-01 10:49:37 +0000288}
289
sewardjaf44c822007-11-25 14:01:38 +0000290static void drd_post_mem_write(const CorePart part,
291 const ThreadId tid,
292 const Addr a,
293 const SizeT size)
294{
bartbedfd232009-03-26 19:07:15 +0000295 DRD_(thread_set_vg_running_tid)(VG_(get_running_tid)());
296 if (size > 0)
297 {
298 DRD_(trace_store)(a, size);
299 }
sewardjaf44c822007-11-25 14:01:38 +0000300}
301
bart08865622008-06-06 14:31:36 +0000302static __inline__
bartf9427fd2010-08-29 09:19:07 +0000303void drd_start_using_mem(const Addr a1, const SizeT len,
304 const Bool is_stack_mem)
sewardjaf44c822007-11-25 14:01:38 +0000305{
bart639d0ad2011-03-12 14:26:01 +0000306 const Addr a2 = a1 + len;
307
308 tl_assert(a1 <= a2);
bart5e85d262008-03-01 10:49:37 +0000309
bartf9427fd2010-08-29 09:19:07 +0000310 if (!is_stack_mem && s_trace_alloc)
311 VG_(message)(Vg_UserMsg, "Started using memory range 0x%lx + %ld%s\n",
312 a1, len, DRD_(running_thread_inside_pthread_create)()
313 ? " (inside pthread_create())" : "");
314
bart639d0ad2011-03-12 14:26:01 +0000315 if (!is_stack_mem && s_free_is_write)
316 DRD_(thread_stop_using_mem)(a1, a2);
317
bartbedfd232009-03-26 19:07:15 +0000318 if (UNLIKELY(DRD_(any_address_is_traced)()))
319 {
320 DRD_(trace_mem_access)(a1, len, eStart);
321 }
bart31b983d2010-02-21 14:52:59 +0000322
bartdd75cdf2009-07-24 08:20:10 +0000323 if (UNLIKELY(DRD_(running_thread_inside_pthread_create)()))
324 {
bart639d0ad2011-03-12 14:26:01 +0000325 DRD_(start_suppression)(a1, a2, "pthread_create()");
bartdd75cdf2009-07-24 08:20:10 +0000326 }
sewardjaf44c822007-11-25 14:01:38 +0000327}
328
sewardj7cf4e6b2008-05-01 20:24:26 +0000329static void drd_start_using_mem_w_ecu(const Addr a1,
330 const SizeT len,
331 UInt ec_uniq)
332{
bartf9427fd2010-08-29 09:19:07 +0000333 drd_start_using_mem(a1, len, False);
sewardj7cf4e6b2008-05-01 20:24:26 +0000334}
335
336static void drd_start_using_mem_w_tid(const Addr a1,
337 const SizeT len,
338 ThreadId tid)
339{
bartf9427fd2010-08-29 09:19:07 +0000340 drd_start_using_mem(a1, len, False);
sewardj7cf4e6b2008-05-01 20:24:26 +0000341}
342
bart0ffa4832008-04-05 12:57:01 +0000343static __inline__
344void drd_stop_using_mem(const Addr a1, const SizeT len,
345 const Bool is_stack_mem)
sewardjaf44c822007-11-25 14:01:38 +0000346{
bartbedfd232009-03-26 19:07:15 +0000347 const Addr a2 = a1 + len;
bart5e85d262008-03-01 10:49:37 +0000348
barta3003982010-09-08 16:29:17 +0000349 tl_assert(a1 <= a2);
bart5e85d262008-03-01 10:49:37 +0000350
bartbedfd232009-03-26 19:07:15 +0000351 if (UNLIKELY(DRD_(any_address_is_traced)()))
bartbedfd232009-03-26 19:07:15 +0000352 DRD_(trace_mem_access)(a1, len, eEnd);
bartf9427fd2010-08-29 09:19:07 +0000353
354 if (!is_stack_mem && s_trace_alloc)
355 VG_(message)(Vg_UserMsg, "Stopped using memory range 0x%lx + %ld\n",
356 a1, len);
357
bart07595032010-08-29 09:51:06 +0000358 if (!is_stack_mem || DRD_(get_check_stack_accesses)())
bartbedfd232009-03-26 19:07:15 +0000359 {
bart639d0ad2011-03-12 14:26:01 +0000360 if (is_stack_mem || !s_free_is_write)
361 DRD_(thread_stop_using_mem)(a1, a2);
362 else if (s_free_is_write)
363 DRD_(trace_store)(a1, len);
bartbedfd232009-03-26 19:07:15 +0000364 DRD_(clientobj_stop_using_mem)(a1, a2);
365 DRD_(suppression_stop_using_mem)(a1, a2);
366 }
bart0ffa4832008-04-05 12:57:01 +0000367}
368
369static __inline__
370void drd_stop_using_nonstack_mem(const Addr a1, const SizeT len)
371{
bartbedfd232009-03-26 19:07:15 +0000372 drd_stop_using_mem(a1, len, False);
sewardjaf44c822007-11-25 14:01:38 +0000373}
374
bart1335ecc2009-02-14 16:10:53 +0000375/**
bartfdaa0182009-03-10 09:25:32 +0000376 * Discard all information DRD has about memory accesses and client objects
377 * in the specified address range.
378 */
379void DRD_(clean_memory)(const Addr a1, const SizeT len)
380{
bartbedfd232009-03-26 19:07:15 +0000381 const Bool is_stack_memory = DRD_(thread_address_on_any_stack)(a1);
382 drd_stop_using_mem(a1, len, is_stack_memory);
bartf9427fd2010-08-29 09:19:07 +0000383 drd_start_using_mem(a1, len, is_stack_memory);
bartfdaa0182009-03-10 09:25:32 +0000384}
385
386/**
bart1335ecc2009-02-14 16:10:53 +0000387 * Suppress data race reports on all addresses contained in .plt and
388 * .got.plt sections inside the address range [ a, a + len [. The data in
389 * these sections is modified by _dl_relocate_object() every time a function
390 * in a shared library is called for the first time. Since the first call
391 * to a function in a shared library can happen from a multithreaded context,
392 * such calls can cause conflicting accesses. See also Ulrich Drepper's
393 * paper "How to Write Shared Libraries" for more information about relocation
394 * (http://people.redhat.com/drepper/dsohowto.pdf).
bartcb2d0072008-05-31 07:55:51 +0000395 */
bart1335ecc2009-02-14 16:10:53 +0000396static void DRD_(suppress_relocation_conflicts)(const Addr a, const SizeT len)
bartcb2d0072008-05-31 07:55:51 +0000397{
bartbedfd232009-03-26 19:07:15 +0000398 const DebugInfo* di;
bartcb2d0072008-05-31 07:55:51 +0000399
400#if 0
bartbedfd232009-03-26 19:07:15 +0000401 VG_(printf)("Evaluating range @ 0x%lx size %ld\n", a, len);
bartcb2d0072008-05-31 07:55:51 +0000402#endif
403
sewardje3f1e592009-07-31 09:41:29 +0000404 for (di = VG_(next_DebugInfo)(0); di; di = VG_(next_DebugInfo)(di))
bartbedfd232009-03-26 19:07:15 +0000405 {
406 Addr avma;
407 SizeT size;
bartcb2d0072008-05-31 07:55:51 +0000408
sewardje3f1e592009-07-31 09:41:29 +0000409 avma = VG_(DebugInfo_get_plt_avma)(di);
410 size = VG_(DebugInfo_get_plt_size)(di);
bartbedfd232009-03-26 19:07:15 +0000411 tl_assert((avma && size) || (avma == 0 && size == 0));
412 if (size > 0)
413 {
bartcb2d0072008-05-31 07:55:51 +0000414#if 0
bartbedfd232009-03-26 19:07:15 +0000415 VG_(printf)("Suppressing .plt @ 0x%lx size %ld\n", avma, size);
bartcb2d0072008-05-31 07:55:51 +0000416#endif
sewardje3f1e592009-07-31 09:41:29 +0000417 tl_assert(VG_(DebugInfo_sect_kind)(NULL, 0, avma) == Vg_SectPLT);
bartbedfd232009-03-26 19:07:15 +0000418 DRD_(start_suppression)(avma, avma + size, ".plt");
419 }
bartcb2d0072008-05-31 07:55:51 +0000420
sewardje3f1e592009-07-31 09:41:29 +0000421 avma = VG_(DebugInfo_get_gotplt_avma)(di);
422 size = VG_(DebugInfo_get_gotplt_size)(di);
bartbedfd232009-03-26 19:07:15 +0000423 tl_assert((avma && size) || (avma == 0 && size == 0));
424 if (size > 0)
425 {
bartcb2d0072008-05-31 07:55:51 +0000426#if 0
bartbedfd232009-03-26 19:07:15 +0000427 VG_(printf)("Suppressing .got.plt @ 0x%lx size %ld\n", avma, size);
bartcb2d0072008-05-31 07:55:51 +0000428#endif
sewardje3f1e592009-07-31 09:41:29 +0000429 tl_assert(VG_(DebugInfo_sect_kind)(NULL, 0, avma) == Vg_SectGOTPLT);
bartbedfd232009-03-26 19:07:15 +0000430 DRD_(start_suppression)(avma, avma + size, ".gotplt");
431 }
432 }
bartcb2d0072008-05-31 07:55:51 +0000433}
434
bart5e85d262008-03-01 10:49:37 +0000435static
436void drd_start_using_mem_w_perms(const Addr a, const SizeT len,
sewardj9c606bd2008-09-18 18:12:50 +0000437 const Bool rr, const Bool ww, const Bool xx,
438 ULong di_handle)
bart5e85d262008-03-01 10:49:37 +0000439{
bartbedfd232009-03-26 19:07:15 +0000440 DRD_(thread_set_vg_running_tid)(VG_(get_running_tid)());
bartd5765912008-03-16 08:40:55 +0000441
bartf9427fd2010-08-29 09:19:07 +0000442 drd_start_using_mem(a, len, False);
bartcb2d0072008-05-31 07:55:51 +0000443
bartbedfd232009-03-26 19:07:15 +0000444 DRD_(suppress_relocation_conflicts)(a, len);
bart5e85d262008-03-01 10:49:37 +0000445}
446
sewardjaf44c822007-11-25 14:01:38 +0000447/* Called by the core when the stack of a thread grows, to indicate that */
448/* the addresses in range [ a, a + len [ may now be used by the client. */
449/* Assumption: stacks grow downward. */
bart08865622008-06-06 14:31:36 +0000450static __inline__
451void drd_start_using_mem_stack(const Addr a, const SizeT len)
sewardjaf44c822007-11-25 14:01:38 +0000452{
bartbedfd232009-03-26 19:07:15 +0000453 DRD_(thread_set_stack_min)(DRD_(thread_get_running_tid)(),
454 a - VG_STACK_REDZONE_SZB);
bart31b983d2010-02-21 14:52:59 +0000455 drd_start_using_mem(a - VG_STACK_REDZONE_SZB,
bartf9427fd2010-08-29 09:19:07 +0000456 len + VG_STACK_REDZONE_SZB,
457 True);
sewardjaf44c822007-11-25 14:01:38 +0000458}
459
460/* Called by the core when the stack of a thread shrinks, to indicate that */
461/* the addresses [ a, a + len [ are no longer accessible for the client. */
462/* Assumption: stacks grow downward. */
bart08865622008-06-06 14:31:36 +0000463static __inline__
464void drd_stop_using_mem_stack(const Addr a, const SizeT len)
sewardjaf44c822007-11-25 14:01:38 +0000465{
bartbedfd232009-03-26 19:07:15 +0000466 DRD_(thread_set_stack_min)(DRD_(thread_get_running_tid)(),
467 a + len - VG_STACK_REDZONE_SZB);
468 drd_stop_using_mem(a - VG_STACK_REDZONE_SZB, len + VG_STACK_REDZONE_SZB,
469 True);
sewardjaf44c822007-11-25 14:01:38 +0000470}
471
bart68a8afa2010-09-02 14:50:41 +0000472static
473Bool on_alt_stack(const Addr a)
474{
475 ThreadId vg_tid;
476 Addr alt_min;
477 SizeT alt_size;
478
479 vg_tid = VG_(get_running_tid)();
480 alt_min = VG_(thread_get_altstack_min)(vg_tid);
481 alt_size = VG_(thread_get_altstack_size)(vg_tid);
482 return (SizeT)(a - alt_min) < alt_size;
483}
484
485static
486void drd_start_using_mem_alt_stack(const Addr a, const SizeT len)
487{
488 if (!on_alt_stack(a))
489 drd_start_using_mem_stack(a, len);
490}
491
492static
493void drd_stop_using_mem_alt_stack(const Addr a, const SizeT len)
494{
495 if (!on_alt_stack(a))
496 drd_stop_using_mem_stack(a, len);
497}
498
499/**
500 * Callback function invoked by the Valgrind core before a signal is delivered.
501 */
502static
503void drd_pre_deliver_signal(const ThreadId vg_tid, const Int sigNo,
504 const Bool alt_stack)
505{
506 DrdThreadId drd_tid;
507
508 drd_tid = DRD_(VgThreadIdToDrdThreadId)(vg_tid);
509 DRD_(thread_set_on_alt_stack)(drd_tid, alt_stack);
510 if (alt_stack)
511 {
512 /*
513 * As soon a signal handler has been invoked on the alternate stack,
514 * switch to stack memory handling functions that can handle the
515 * alternate stack.
516 */
517 VG_(track_new_mem_stack)(drd_start_using_mem_alt_stack);
518 VG_(track_die_mem_stack)(drd_stop_using_mem_alt_stack);
519 }
520}
521
522/**
523 * Callback function invoked by the Valgrind core after a signal is delivered,
524 * at least if the signal handler did not longjmp().
525 */
526static
527void drd_post_deliver_signal(const ThreadId vg_tid, const Int sigNo)
528{
529 DrdThreadId drd_tid;
530
531 drd_tid = DRD_(VgThreadIdToDrdThreadId)(vg_tid);
532 DRD_(thread_set_on_alt_stack)(drd_tid, False);
533 if (DRD_(thread_get_threads_on_alt_stack)() == 0)
534 {
535 VG_(track_new_mem_stack)(drd_start_using_mem_stack);
536 VG_(track_die_mem_stack)(drd_stop_using_mem_stack);
537 }
538}
539
bartbedfd232009-03-26 19:07:15 +0000540/**
541 * Callback function called by the Valgrind core before a stack area is
542 * being used by a signal handler.
543 *
544 * @param[in] a Start of address range.
545 * @param[in] len Address range length.
546 * @param[in] tid Valgrind thread ID for whom the signal frame is being
547 * constructed.
548 */
549static void drd_start_using_mem_stack_signal(const Addr a, const SizeT len,
550 ThreadId tid)
sewardjaf44c822007-11-25 14:01:38 +0000551{
bartbedfd232009-03-26 19:07:15 +0000552 DRD_(thread_set_vg_running_tid)(VG_(get_running_tid)());
bartf9427fd2010-08-29 09:19:07 +0000553 drd_start_using_mem(a, len, True);
sewardjaf44c822007-11-25 14:01:38 +0000554}
555
bart5e85d262008-03-01 10:49:37 +0000556static void drd_stop_using_mem_stack_signal(Addr a, SizeT len)
sewardjaf44c822007-11-25 14:01:38 +0000557{
bartbedfd232009-03-26 19:07:15 +0000558 drd_stop_using_mem(a, len, True);
sewardjaf44c822007-11-25 14:01:38 +0000559}
560
561static
562void drd_pre_thread_create(const ThreadId creator, const ThreadId created)
563{
bartbedfd232009-03-26 19:07:15 +0000564 const DrdThreadId drd_creator = DRD_(VgThreadIdToDrdThreadId)(creator);
565 tl_assert(created != VG_INVALID_THREADID);
566 DRD_(thread_pre_create)(drd_creator, created);
567 if (DRD_(IsValidDrdThreadId)(drd_creator))
568 {
569 DRD_(thread_new_segment)(drd_creator);
570 }
571 if (DRD_(thread_get_trace_fork_join)())
572 {
573 VG_(message)(Vg_DebugMsg,
bart63c92ea2009-07-19 17:53:56 +0000574 "drd_pre_thread_create creator = %d, created = %d\n",
575 drd_creator, created);
bartbedfd232009-03-26 19:07:15 +0000576 }
sewardjaf44c822007-11-25 14:01:38 +0000577}
578
579/* Called by Valgrind's core before any loads or stores are performed on */
580/* the context of thread "created". At startup, this function is called */
581/* with arguments (0,1). */
582static
bart0ffa4832008-04-05 12:57:01 +0000583void drd_post_thread_create(const ThreadId vg_created)
sewardjaf44c822007-11-25 14:01:38 +0000584{
bartbedfd232009-03-26 19:07:15 +0000585 DrdThreadId drd_created;
bart0ffa4832008-04-05 12:57:01 +0000586
bartbedfd232009-03-26 19:07:15 +0000587 tl_assert(vg_created != VG_INVALID_THREADID);
bart0ffa4832008-04-05 12:57:01 +0000588
bartbedfd232009-03-26 19:07:15 +0000589 drd_created = DRD_(thread_post_create)(vg_created);
590 if (DRD_(thread_get_trace_fork_join)())
591 {
592 VG_(message)(Vg_DebugMsg,
bart63c92ea2009-07-19 17:53:56 +0000593 "drd_post_thread_create created = %d\n",
594 drd_created);
bartbedfd232009-03-26 19:07:15 +0000595 }
596 if (! DRD_(get_check_stack_accesses)())
597 {
598 DRD_(start_suppression)(DRD_(thread_get_stack_max)(drd_created)
599 - DRD_(thread_get_stack_size)(drd_created),
600 DRD_(thread_get_stack_max)(drd_created),
601 "stack");
602 }
sewardjaf44c822007-11-25 14:01:38 +0000603}
604
sewardjaf44c822007-11-25 14:01:38 +0000605/* Called after a thread has performed its last memory access. */
bartd43f8d32008-03-16 17:29:20 +0000606static void drd_thread_finished(ThreadId vg_tid)
sewardjaf44c822007-11-25 14:01:38 +0000607{
bartbedfd232009-03-26 19:07:15 +0000608 DrdThreadId drd_tid;
sewardj85642922008-01-14 11:54:56 +0000609
bartbedfd232009-03-26 19:07:15 +0000610 tl_assert(VG_(get_running_tid)() == vg_tid);
sewardj85642922008-01-14 11:54:56 +0000611
bartbedfd232009-03-26 19:07:15 +0000612 drd_tid = DRD_(VgThreadIdToDrdThreadId)(vg_tid);
613 if (DRD_(thread_get_trace_fork_join)())
614 {
615 VG_(message)(Vg_DebugMsg,
bart63c92ea2009-07-19 17:53:56 +0000616 "drd_thread_finished tid = %d%s\n",
bartbedfd232009-03-26 19:07:15 +0000617 drd_tid,
618 DRD_(thread_get_joinable)(drd_tid)
619 ? ""
620 : " (which is a detached thread)");
621 }
bart75c1cba2010-08-29 07:20:30 +0000622 if (s_show_stack_usage)
bartbedfd232009-03-26 19:07:15 +0000623 {
624 const SizeT stack_size = DRD_(thread_get_stack_size)(drd_tid);
625 const SizeT used_stack
626 = (DRD_(thread_get_stack_max)(drd_tid)
627 - DRD_(thread_get_stack_min_min)(drd_tid));
628 VG_(message)(Vg_UserMsg,
bart63c92ea2009-07-19 17:53:56 +0000629 "thread %d%s finished and used %ld bytes out of %ld"
sewardj1e29ebc2009-07-15 14:49:17 +0000630 " on its stack. Margin: %ld bytes.\n",
bartbedfd232009-03-26 19:07:15 +0000631 drd_tid,
632 DRD_(thread_get_joinable)(drd_tid)
633 ? ""
634 : " (which is a detached thread)",
635 used_stack,
636 stack_size,
637 stack_size - used_stack);
sewardjaf44c822007-11-25 14:01:38 +0000638
bartbedfd232009-03-26 19:07:15 +0000639 }
640 drd_stop_using_mem(DRD_(thread_get_stack_min)(drd_tid),
641 DRD_(thread_get_stack_max)(drd_tid)
642 - DRD_(thread_get_stack_min)(drd_tid),
643 True);
bartd45d9952009-05-31 18:53:54 +0000644 DRD_(thread_set_record_loads)(drd_tid, False);
645 DRD_(thread_set_record_stores)(drd_tid, False);
bartbedfd232009-03-26 19:07:15 +0000646 DRD_(thread_finished)(drd_tid);
sewardjaf44c822007-11-25 14:01:38 +0000647}
648
bart5c7e6b62011-02-03 17:47:50 +0000649/*
650 * Called immediately after fork for the child process only. 'tid' is the
651 * only surviving thread in the child process. Cleans up thread state.
652 * See also http://pubs.opengroup.org/onlinepubs/9699919799/functions/pthread_atfork.html for a detailed discussion of using fork() in combination with mutexes.
653 */
654static
655void drd__atfork_child(ThreadId tid)
656{
657 DRD_(drd_thread_atfork_child)(tid);
658}
659
660
sewardjaf44c822007-11-25 14:01:38 +0000661//
662// Implementation of the tool interface.
663//
664
bart1335ecc2009-02-14 16:10:53 +0000665static void DRD_(post_clo_init)(void)
sewardjdcbb8d32007-11-26 21:34:30 +0000666{
bart0c6bf352009-07-25 14:03:53 +0000667#if defined(VGO_linux) || defined(VGO_darwin)
bartc6ef4af2009-07-23 10:10:30 +0000668 /* fine */
bartc6ef4af2009-07-23 10:10:30 +0000669#else
670 VG_(printf)("\nWARNING: DRD has not yet been tested on this operating system.\n\n");
sewardjdcbb8d32007-11-26 21:34:30 +0000671# endif
bart95761b52008-03-29 08:34:03 +0000672
bart75c1cba2010-08-29 07:20:30 +0000673 if (s_var_info)
bartbedfd232009-03-26 19:07:15 +0000674 {
675 VG_(needs_var_info)();
676 }
sewardjdcbb8d32007-11-26 21:34:30 +0000677}
sewardjaf44c822007-11-25 14:01:38 +0000678
sewardjaf44c822007-11-25 14:01:38 +0000679static void drd_start_client_code(const ThreadId tid, const ULong bbs_done)
680{
bartbedfd232009-03-26 19:07:15 +0000681 tl_assert(tid == VG_(get_running_tid)());
682 DRD_(thread_set_vg_running_tid)(tid);
sewardjaf44c822007-11-25 14:01:38 +0000683}
684
bart1335ecc2009-02-14 16:10:53 +0000685static void DRD_(fini)(Int exitcode)
sewardjaf44c822007-11-25 14:01:38 +0000686{
bartbedfd232009-03-26 19:07:15 +0000687 // thread_print_all();
sewardj2d9e8742009-08-07 15:46:56 +0000688 if (VG_(clo_verbosity) == 1 && !VG_(clo_xml)) {
bart31b983d2010-02-21 14:52:59 +0000689 VG_(message)(Vg_UserMsg,
sewardj2d9e8742009-08-07 15:46:56 +0000690 "For counts of detected and suppressed errors, "
691 "rerun with: -v\n");
692 }
693
bart75c1cba2010-08-29 07:20:30 +0000694 if (VG_(clo_stats) || s_print_stats)
bartbedfd232009-03-26 19:07:15 +0000695 {
barte5214662009-06-21 11:51:23 +0000696 ULong pu = DRD_(thread_get_update_conflict_set_count)();
697 ULong pu_seg_cr = DRD_(thread_get_update_conflict_set_new_sg_count)();
698 ULong pu_mtx_cv = DRD_(thread_get_update_conflict_set_sync_count)();
699 ULong pu_join = DRD_(thread_get_update_conflict_set_join_count)();
700
bartbedfd232009-03-26 19:07:15 +0000701 VG_(message)(Vg_UserMsg,
sewardj1e29ebc2009-07-15 14:49:17 +0000702 " thread: %lld context switches.\n",
bart54803fe2009-06-21 09:26:27 +0000703 DRD_(thread_get_context_switch_count)());
bartbedfd232009-03-26 19:07:15 +0000704 VG_(message)(Vg_UserMsg,
sewardj1e29ebc2009-07-15 14:49:17 +0000705 "confl set: %lld full updates and %lld partial updates;\n",
bart54803fe2009-06-21 09:26:27 +0000706 DRD_(thread_get_compute_conflict_set_count)(),
barte5214662009-06-21 11:51:23 +0000707 pu);
bartbedfd232009-03-26 19:07:15 +0000708 VG_(message)(Vg_UserMsg,
sewardj1e29ebc2009-07-15 14:49:17 +0000709 " %lld partial updates during segment creation,\n",
barte5214662009-06-21 11:51:23 +0000710 pu_seg_cr);
711 VG_(message)(Vg_UserMsg,
sewardj1e29ebc2009-07-15 14:49:17 +0000712 " %lld because of mutex/sema/cond.var. operations,\n",
barte5214662009-06-21 11:51:23 +0000713 pu_mtx_cv);
714 VG_(message)(Vg_UserMsg,
sewardj1e29ebc2009-07-15 14:49:17 +0000715 " %lld because of barrier/rwlock operations and\n",
barte5214662009-06-21 11:51:23 +0000716 pu - pu_seg_cr - pu_mtx_cv - pu_join);
717 VG_(message)(Vg_UserMsg,
718 " %lld partial updates because of thread join"
sewardj1e29ebc2009-07-15 14:49:17 +0000719 " operations.\n",
barte5214662009-06-21 11:51:23 +0000720 pu_join);
721 VG_(message)(Vg_UserMsg,
sewardj1e29ebc2009-07-15 14:49:17 +0000722 " segments: created %lld segments, max %lld alive,\n",
bart9dedafe2009-06-21 18:09:02 +0000723 DRD_(sg_get_segments_created_count)(),
724 DRD_(sg_get_max_segments_alive_count)());
bartbedfd232009-03-26 19:07:15 +0000725 VG_(message)(Vg_UserMsg,
sewardj1e29ebc2009-07-15 14:49:17 +0000726 " %lld discard points and %lld merges.\n",
bart9dedafe2009-06-21 18:09:02 +0000727 DRD_(thread_get_discard_ordered_segments_count)(),
bart1a3b0b32009-05-03 17:07:34 +0000728 DRD_(sg_get_segment_merge_count)());
729 VG_(message)(Vg_UserMsg,
bart54803fe2009-06-21 09:26:27 +0000730 "segmnt cr: %lld mutex, %lld rwlock, %lld semaphore and"
sewardj1e29ebc2009-07-15 14:49:17 +0000731 " %lld barrier.\n",
bartbedfd232009-03-26 19:07:15 +0000732 DRD_(get_mutex_segment_creation_count)(),
733 DRD_(get_rwlock_segment_creation_count)(),
734 DRD_(get_semaphore_segment_creation_count)(),
735 DRD_(get_barrier_segment_creation_count)());
736 VG_(message)(Vg_UserMsg,
bart9dedafe2009-06-21 18:09:02 +0000737 " bitmaps: %lld level one"
sewardj1e29ebc2009-07-15 14:49:17 +0000738 " and %lld level two bitmaps were allocated.\n",
bartbedfd232009-03-26 19:07:15 +0000739 DRD_(bm_get_bitmap_creation_count)(),
bartbedfd232009-03-26 19:07:15 +0000740 DRD_(bm_get_bitmap2_creation_count)());
741 VG_(message)(Vg_UserMsg,
sewardj1e29ebc2009-07-15 14:49:17 +0000742 " mutex: %lld non-recursive lock/unlock events.\n",
bartbedfd232009-03-26 19:07:15 +0000743 DRD_(get_mutex_lock_count)());
744 DRD_(print_malloc_stats)();
745 }
sewardjaf44c822007-11-25 14:01:38 +0000746}
747
sewardjaf44c822007-11-25 14:01:38 +0000748static
749void drd_pre_clo_init(void)
750{
njnf76d27a2009-05-28 01:53:07 +0000751 // Basic tool stuff.
bartbedfd232009-03-26 19:07:15 +0000752 VG_(details_name) ("drd");
753 VG_(details_version) (NULL);
754 VG_(details_description) ("a thread error detector");
sewardj9eecbbb2010-05-03 21:37:12 +0000755 VG_(details_copyright_author)("Copyright (C) 2006-2010, and GNU GPL'd,"
bartbedfd232009-03-26 19:07:15 +0000756 " by Bart Van Assche.");
757 VG_(details_bug_reports_to) (VG_BUGS_TO);
sewardjaf44c822007-11-25 14:01:38 +0000758
bartbedfd232009-03-26 19:07:15 +0000759 VG_(basic_tool_funcs) (DRD_(post_clo_init),
760 DRD_(instrument),
761 DRD_(fini));
sewardjaf44c822007-11-25 14:01:38 +0000762
bartbedfd232009-03-26 19:07:15 +0000763 // Command line stuff.
764 VG_(needs_command_line_options)(DRD_(process_cmd_line_option),
765 DRD_(print_usage),
766 DRD_(print_debug_usage));
sewardjaf44c822007-11-25 14:01:38 +0000767
bartbedfd232009-03-26 19:07:15 +0000768 // Error handling.
769 DRD_(register_error_handlers)();
sewardjaf44c822007-11-25 14:01:38 +0000770
bartbedfd232009-03-26 19:07:15 +0000771 // Core event tracking.
772 VG_(track_pre_mem_read) (drd_pre_mem_read);
773 VG_(track_pre_mem_read_asciiz) (drd_pre_mem_read_asciiz);
774 VG_(track_post_mem_write) (drd_post_mem_write);
775 VG_(track_new_mem_brk) (drd_start_using_mem_w_tid);
776 VG_(track_new_mem_mmap) (drd_start_using_mem_w_perms);
777 VG_(track_new_mem_stack) (drd_start_using_mem_stack);
778 VG_(track_new_mem_stack_signal) (drd_start_using_mem_stack_signal);
779 VG_(track_new_mem_startup) (drd_start_using_mem_w_perms);
780 VG_(track_die_mem_brk) (drd_stop_using_nonstack_mem);
781 VG_(track_die_mem_munmap) (drd_stop_using_nonstack_mem);
782 VG_(track_die_mem_stack) (drd_stop_using_mem_stack);
783 VG_(track_die_mem_stack_signal) (drd_stop_using_mem_stack_signal);
bart68a8afa2010-09-02 14:50:41 +0000784 VG_(track_pre_deliver_signal) (drd_pre_deliver_signal);
785 VG_(track_post_deliver_signal) (drd_post_deliver_signal);
bartbedfd232009-03-26 19:07:15 +0000786 VG_(track_start_client_code) (drd_start_client_code);
787 VG_(track_pre_thread_ll_create) (drd_pre_thread_create);
788 VG_(track_pre_thread_first_insn)(drd_post_thread_create);
789 VG_(track_pre_thread_ll_exit) (drd_thread_finished);
bart5c7e6b62011-02-03 17:47:50 +0000790 VG_(atfork) (NULL/*pre*/, NULL/*parent*/,
791 drd__atfork_child/*child*/);
sewardjaf44c822007-11-25 14:01:38 +0000792
bartbedfd232009-03-26 19:07:15 +0000793 // Other stuff.
794 DRD_(register_malloc_wrappers)(drd_start_using_mem_w_ecu,
795 drd_stop_using_nonstack_mem);
sewardjaf44c822007-11-25 14:01:38 +0000796
bartbedfd232009-03-26 19:07:15 +0000797 DRD_(clientreq_init)();
sewardjaf44c822007-11-25 14:01:38 +0000798
bartbedfd232009-03-26 19:07:15 +0000799 DRD_(suppression_init)();
bart4bb53d82008-02-28 19:06:34 +0000800
bartbedfd232009-03-26 19:07:15 +0000801 DRD_(clientobj_init)();
barte5e0efa2009-06-24 18:35:02 +0000802
803 {
804 Char* const smi = VG_(getenv)("DRD_SEGMENT_MERGING_INTERVAL");
805 if (smi)
806 DRD_(thread_set_segment_merge_interval)(VG_(strtoll10)(smi, NULL));
807 }
sewardjaf44c822007-11-25 14:01:38 +0000808}
809
810
811VG_DETERMINE_INTERFACE_VERSION(drd_pre_clo_init)