blob: db6eeb8bf556eba443e70eeed76451c810871bdd [file] [log] [blame]
sewardjaf44c822007-11-25 14:01:38 +00001/*
bart86562bd2009-02-16 19:43:56 +00002 This file is part of drd, a thread error detector.
sewardjaf44c822007-11-25 14:01:38 +00003
bartd4bab992013-10-04 05:55:30 +00004 Copyright (C) 2006-2013 Bart Van Assche <bvanassche@acm.org>.
sewardjaf44c822007-11-25 14:01:38 +00005
6 This program is free software; you can redistribute it and/or
7 modify it under the terms of the GNU General Public License as
8 published by the Free Software Foundation; either version 2 of the
9 License, or (at your option) any later version.
10
11 This program is distributed in the hope that it will be useful, but
12 WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
19 02111-1307, USA.
20
21 The GNU General Public License is contained in the file COPYING.
22*/
23
24
sewardj85642922008-01-14 11:54:56 +000025#include "drd_barrier.h"
bart4bb53d82008-02-28 19:06:34 +000026#include "drd_clientobj.h"
bart09dc13f2009-02-14 15:13:31 +000027#include "drd_clientreq.h"
sewardjaf44c822007-11-25 14:01:38 +000028#include "drd_cond.h"
29#include "drd_error.h"
bartc1824672011-03-12 14:07:09 +000030#include "drd_hb.h"
bart09dc13f2009-02-14 15:13:31 +000031#include "drd_load_store.h"
sewardjaf44c822007-11-25 14:01:38 +000032#include "drd_malloc_wrappers.h"
33#include "drd_mutex.h"
bart5bd9f2d2008-03-03 20:31:58 +000034#include "drd_rwlock.h"
sewardjaf44c822007-11-25 14:01:38 +000035#include "drd_segment.h"
sewardj85642922008-01-14 11:54:56 +000036#include "drd_semaphore.h"
sewardjaf44c822007-11-25 14:01:38 +000037#include "drd_suppression.h"
38#include "drd_thread.h"
barteacd9162008-06-16 20:22:18 +000039#include "libvex_guest_offsets.h"
sewardj85642922008-01-14 11:54:56 +000040#include "pub_drd_bitmap.h"
bart024a95a2008-04-01 18:27:41 +000041#include "pub_tool_vki.h" // Must be included before pub_tool_libcproc
sewardjaf44c822007-11-25 14:01:38 +000042#include "pub_tool_basics.h"
43#include "pub_tool_debuginfo.h" // VG_(describe_IP)()
44#include "pub_tool_libcassert.h" // tl_assert()
45#include "pub_tool_libcbase.h" // VG_(strcmp)
46#include "pub_tool_libcprint.h" // VG_(printf)
47#include "pub_tool_libcproc.h"
48#include "pub_tool_machine.h"
bart024a95a2008-04-01 18:27:41 +000049#include "pub_tool_mallocfree.h" // VG_(malloc)(), VG_(free)()
sewardjaf44c822007-11-25 14:01:38 +000050#include "pub_tool_options.h" // command line options
bartceded212008-03-26 17:39:52 +000051#include "pub_tool_replacemalloc.h"
bart72b751c2008-03-01 13:44:24 +000052#include "pub_tool_threadstate.h" // VG_(get_running_tid)()
sewardjaf44c822007-11-25 14:01:38 +000053#include "pub_tool_tooliface.h"
sewardj234e5582011-02-09 12:47:23 +000054#include "pub_tool_aspacemgr.h" // VG_(am_is_valid_for_client)
sewardjaf44c822007-11-25 14:01:38 +000055
56
bart1335ecc2009-02-14 16:10:53 +000057/* Local variables. */
sewardjaf44c822007-11-25 14:01:38 +000058
bart7d5f5232011-03-13 09:08:10 +000059static Bool s_print_stats;
60static Bool s_var_info;
61static Bool s_show_stack_usage;
62static Bool s_trace_alloc;
bartc0cd28f2013-08-24 17:51:18 +000063static Bool trace_sectsuppr;
sewardjaf44c822007-11-25 14:01:38 +000064
65
bart1335ecc2009-02-14 16:10:53 +000066/**
67 * Implement the needs_command_line_options for drd.
68 */
florian19f91bb2012-11-10 22:29:54 +000069static Bool DRD_(process_cmd_line_option)(const HChar* arg)
sewardjaf44c822007-11-25 14:01:38 +000070{
bartbedfd232009-03-26 19:07:15 +000071 int check_stack_accesses = -1;
bart6d956dc2011-07-28 09:54:37 +000072 int join_list_vol = -1;
bartbedfd232009-03-26 19:07:15 +000073 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;
florian19f91bb2012-11-10 22:29:54 +000093 const HChar* trace_address = 0;
94 const HChar* ptrace_address= 0;
sewardjaf44c822007-11-25 14:01:38 +000095
bartbedfd232009-03-26 19:07:15 +000096 if VG_BOOL_CLO(arg, "--check-stack-var", check_stack_accesses) {}
bart6d956dc2011-07-28 09:54:37 +000097 else if VG_INT_CLO (arg, "--join-list-vol", join_list_vol) {}
bart75c1cba2010-08-29 07:20:30 +000098 else if VG_BOOL_CLO(arg, "--drd-stats", s_print_stats) {}
bartf98a5692009-05-03 17:17:37 +000099 else if VG_BOOL_CLO(arg, "--first-race-only", first_race_only) {}
bart7d5f5232011-03-13 09:08:10 +0000100 else if VG_BOOL_CLO(arg, "--free-is-write", DRD_(g_free_is_write)) {}
bart8f822af2009-06-08 18:20:42 +0000101 else if VG_BOOL_CLO(arg,"--report-signal-unlocked",report_signal_unlocked)
102 {}
bartbedfd232009-03-26 19:07:15 +0000103 else if VG_BOOL_CLO(arg, "--segment-merging", segment_merging) {}
bart8f822af2009-06-08 18:20:42 +0000104 else if VG_INT_CLO (arg, "--segment-merging-interval", segment_merge_interval)
105 {}
bartbedfd232009-03-26 19:07:15 +0000106 else if VG_BOOL_CLO(arg, "--show-confl-seg", show_confl_seg) {}
bart75c1cba2010-08-29 07:20:30 +0000107 else if VG_BOOL_CLO(arg, "--show-stack-usage", s_show_stack_usage) {}
bartf9427fd2010-08-29 09:19:07 +0000108 else if VG_BOOL_CLO(arg, "--trace-alloc", s_trace_alloc) {}
bartbedfd232009-03-26 19:07:15 +0000109 else if VG_BOOL_CLO(arg, "--trace-barrier", trace_barrier) {}
110 else if VG_BOOL_CLO(arg, "--trace-clientobj", trace_clientobj) {}
111 else if VG_BOOL_CLO(arg, "--trace-cond", trace_cond) {}
112 else if VG_BOOL_CLO(arg, "--trace-conflict-set", trace_conflict_set) {}
bart8f822af2009-06-08 18:20:42 +0000113 else if VG_BOOL_CLO(arg, "--trace-conflict-set-bm", trace_conflict_set_bm){}
bartbedfd232009-03-26 19:07:15 +0000114 else if VG_BOOL_CLO(arg, "--trace-csw", trace_csw) {}
115 else if VG_BOOL_CLO(arg, "--trace-fork-join", trace_fork_join) {}
bartc1824672011-03-12 14:07:09 +0000116 else if VG_BOOL_CLO(arg, "--trace-hb", trace_hb) {}
bartbedfd232009-03-26 19:07:15 +0000117 else if VG_BOOL_CLO(arg, "--trace-mutex", trace_mutex) {}
118 else if VG_BOOL_CLO(arg, "--trace-rwlock", trace_rwlock) {}
bartc0cd28f2013-08-24 17:51:18 +0000119 else if VG_BOOL_CLO(arg, "--trace-sectsuppr", trace_sectsuppr) {}
bartbedfd232009-03-26 19:07:15 +0000120 else if VG_BOOL_CLO(arg, "--trace-segment", trace_segment) {}
121 else if VG_BOOL_CLO(arg, "--trace-semaphore", trace_semaphore) {}
122 else if VG_BOOL_CLO(arg, "--trace-suppr", trace_suppression) {}
bart75c1cba2010-08-29 07:20:30 +0000123 else if VG_BOOL_CLO(arg, "--var-info", s_var_info) {}
bartbedfd232009-03-26 19:07:15 +0000124 else if VG_INT_CLO (arg, "--exclusive-threshold", exclusive_threshold_ms) {}
bart41a378a2012-01-24 18:39:29 +0000125 else if VG_STR_CLO (arg, "--ptrace-addr", ptrace_address) {}
bartbedfd232009-03-26 19:07:15 +0000126 else if VG_INT_CLO (arg, "--shared-threshold", shared_threshold_ms) {}
127 else if VG_STR_CLO (arg, "--trace-addr", trace_address) {}
128 else
129 return VG_(replacement_malloc_process_cmd_line_option)(arg);
sewardjaf44c822007-11-25 14:01:38 +0000130
bartbedfd232009-03-26 19:07:15 +0000131 if (check_stack_accesses != -1)
132 DRD_(set_check_stack_accesses)(check_stack_accesses);
133 if (exclusive_threshold_ms != -1)
134 {
135 DRD_(mutex_set_lock_threshold)(exclusive_threshold_ms);
136 DRD_(rwlock_set_exclusive_threshold)(exclusive_threshold_ms);
137 }
bartf98a5692009-05-03 17:17:37 +0000138 if (first_race_only != -1)
139 {
140 DRD_(set_first_race_only)(first_race_only);
141 }
bart6d956dc2011-07-28 09:54:37 +0000142 if (join_list_vol != -1)
143 DRD_(thread_set_join_list_vol)(join_list_vol);
bartbedfd232009-03-26 19:07:15 +0000144 if (report_signal_unlocked != -1)
145 {
146 DRD_(cond_set_report_signal_unlocked)(report_signal_unlocked);
147 }
148 if (shared_threshold_ms != -1)
149 {
150 DRD_(rwlock_set_shared_threshold)(shared_threshold_ms);
151 }
152 if (segment_merging != -1)
153 DRD_(thread_set_segment_merging)(segment_merging);
bart109d5da2009-06-22 18:06:29 +0000154 if (segment_merge_interval != -1)
bart8f822af2009-06-08 18:20:42 +0000155 DRD_(thread_set_segment_merge_interval)(segment_merge_interval);
bartbedfd232009-03-26 19:07:15 +0000156 if (show_confl_seg != -1)
157 DRD_(set_show_conflicting_segments)(show_confl_seg);
bart41a378a2012-01-24 18:39:29 +0000158 if (trace_address) {
bartbedfd232009-03-26 19:07:15 +0000159 const Addr addr = VG_(strtoll16)(trace_address, 0);
bart41a378a2012-01-24 18:39:29 +0000160 DRD_(start_tracing_address_range)(addr, addr + 1, False);
161 }
162 if (ptrace_address) {
bart8670edc2013-10-25 14:26:14 +0000163 char *plus = VG_(strchr)(ptrace_address, '+');
164 Addr addr, length;
165 if (plus)
166 *plus = '\0';
167 addr = VG_(strtoll16)(ptrace_address, 0);
168 length = plus ? VG_(strtoll16)(plus + 1, 0) : 1;
169 DRD_(start_tracing_address_range)(addr, addr + length, True);
bartbedfd232009-03-26 19:07:15 +0000170 }
171 if (trace_barrier != -1)
172 DRD_(barrier_set_trace)(trace_barrier);
173 if (trace_clientobj != -1)
174 DRD_(clientobj_set_trace)(trace_clientobj);
175 if (trace_cond != -1)
176 DRD_(cond_set_trace)(trace_cond);
177 if (trace_csw != -1)
178 DRD_(thread_trace_context_switches)(trace_csw);
179 if (trace_fork_join != -1)
180 DRD_(thread_set_trace_fork_join)(trace_fork_join);
bartc1824672011-03-12 14:07:09 +0000181 if (trace_hb != -1)
182 DRD_(hb_set_trace)(trace_hb);
bartbedfd232009-03-26 19:07:15 +0000183 if (trace_conflict_set != -1)
184 DRD_(thread_trace_conflict_set)(trace_conflict_set);
bart8f822af2009-06-08 18:20:42 +0000185 if (trace_conflict_set_bm != -1)
186 DRD_(thread_trace_conflict_set_bm)(trace_conflict_set_bm);
bartbedfd232009-03-26 19:07:15 +0000187 if (trace_mutex != -1)
188 DRD_(mutex_set_trace)(trace_mutex);
189 if (trace_rwlock != -1)
190 DRD_(rwlock_set_trace)(trace_rwlock);
191 if (trace_segment != -1)
192 DRD_(sg_set_trace)(trace_segment);
193 if (trace_semaphore != -1)
194 DRD_(semaphore_set_trace)(trace_semaphore);
195 if (trace_suppression != -1)
196 DRD_(suppression_set_trace)(trace_suppression);
sewardjaf44c822007-11-25 14:01:38 +0000197
bartbedfd232009-03-26 19:07:15 +0000198 return True;
sewardjaf44c822007-11-25 14:01:38 +0000199}
200
bart1335ecc2009-02-14 16:10:53 +0000201static void DRD_(print_usage)(void)
bartbd7e56e2008-03-31 18:14:12 +0000202{
bartbedfd232009-03-26 19:07:15 +0000203 VG_(printf)(
bart0ffa4832008-04-05 12:57:01 +0000204" --check-stack-var=yes|no Whether or not to report data races on\n"
205" stack variables [no].\n"
bart9d5b7962008-05-14 12:25:00 +0000206" --exclusive-threshold=<n> Print an error message if any mutex or\n"
bart8600c422010-10-25 18:18:54 +0000207" writer lock is held longer than the specified\n"
208" time (in milliseconds) [off].\n"
bart1a3b0b32009-05-03 17:07:34 +0000209" --first-race-only=yes|no Only report the first data race that occurs on\n"
210" a memory location instead of all races [no].\n"
bart639d0ad2011-03-12 14:26:01 +0000211" --free-is-write=yes|no Whether to report races between freeing memory\n"
212" and subsequent accesses of that memory[no].\n"
bart505b35c2011-10-13 18:51:47 +0000213" --join-list-vol=<n> Number of threads to delay cleanup for [10].\n"
bart46b5fce2008-06-28 13:01:30 +0000214" --report-signal-unlocked=yes|no Whether to report calls to\n"
215" pthread_cond_signal() where the mutex associated\n"
216" with the signal via pthread_cond_wait() is not\n"
217" locked at the time the signal is sent [yes].\n"
bart130463a2008-04-01 17:03:33 +0000218" --segment-merging=yes|no Controls segment merging [yes].\n"
bartbd7e56e2008-03-31 18:14:12 +0000219" Segment merging is an algorithm to limit memory usage of the\n"
220" data race detection algorithm. Disabling segment merging may\n"
221" improve the accuracy of the so-called 'other segments' displayed\n"
222" in race reports but can also trigger an out of memory error.\n"
bart8f822af2009-06-08 18:20:42 +0000223" --segment-merging-interval=<n> Perform segment merging every time n new\n"
224" segments have been created. Default: %d.\n"
bart9d5b7962008-05-14 12:25:00 +0000225" --shared-threshold=<n> Print an error message if a reader lock\n"
bart8600c422010-10-25 18:18:54 +0000226" is held longer than the specified time (in\n"
227" milliseconds) [off]\n"
bart130463a2008-04-01 17:03:33 +0000228" --show-confl-seg=yes|no Show conflicting segments in race reports [yes].\n"
229" --show-stack-usage=yes|no Print stack usage at thread exit time [no].\n"
bartbd7e56e2008-03-31 18:14:12 +0000230"\n"
bartef1b9722008-07-04 15:34:23 +0000231" drd options for monitoring process behavior:\n"
bart8670edc2013-10-25 14:26:14 +0000232" --ptrace-addr=<address>[+<length>] Trace all load and store activity for\n"
233" the specified address range and keep doing that\n"
234" even after the memory at that address has been\n"
235" freed and reallocated [off].\n"
bart8c3de752011-12-12 15:49:00 +0000236" --trace-addr=<address> Trace all load and store activity for the\n"
bart130463a2008-04-01 17:03:33 +0000237" specified address [off].\n"
bart8670edc2013-10-25 14:26:14 +0000238" --trace-alloc=yes|no Trace all memory allocations and deallocations\n"
239" [no].\n"
bart130463a2008-04-01 17:03:33 +0000240" --trace-barrier=yes|no Trace all barrier activity [no].\n"
241" --trace-cond=yes|no Trace all condition variable activity [no].\n"
242" --trace-fork-join=yes|no Trace all thread fork/join activity [no].\n"
bart505b35c2011-10-13 18:51:47 +0000243" --trace-hb=yes|no Trace ANNOTATE_HAPPENS_BEFORE() etc. [no].\n"
bart130463a2008-04-01 17:03:33 +0000244" --trace-mutex=yes|no Trace all mutex activity [no].\n"
245" --trace-rwlock=yes|no Trace all reader-writer lock activity[no].\n"
bart8f822af2009-06-08 18:20:42 +0000246" --trace-semaphore=yes|no Trace all semaphore activity [no].\n",
247DRD_(thread_get_segment_merge_interval)()
bartbedfd232009-03-26 19:07:15 +0000248);
sewardjaf44c822007-11-25 14:01:38 +0000249}
250
bart1335ecc2009-02-14 16:10:53 +0000251static void DRD_(print_debug_usage)(void)
bart31b983d2010-02-21 14:52:59 +0000252{
bartbedfd232009-03-26 19:07:15 +0000253 VG_(printf)(
bart130463a2008-04-01 17:03:33 +0000254" --drd-stats=yes|no Print statistics about DRD activity [no].\n"
255" --trace-clientobj=yes|no Trace all client object activity [no].\n"
256" --trace-csw=yes|no Trace all scheduler context switches [no].\n"
barte73b0aa2008-06-28 07:19:56 +0000257" --trace-conflict-set=yes|no Trace all conflict set updates [no].\n"
bart8f822af2009-06-08 18:20:42 +0000258" --trace-conflict-set-bm=yes|no Trace all conflict set bitmap\n"
259" updates [no]. Note: enabling this option\n"
260" will generate a lot of output !\n"
bartc0cd28f2013-08-24 17:51:18 +0000261" --trace-sectsuppr=yes|no Trace which the dynamic library sections on\n"
262" which data race detection is suppressed.\n"
bart987781d2008-06-27 15:00:07 +0000263" --trace-segment=yes|no Trace segment actions [no].\n"
264" --trace-suppr=yes|no Trace all address suppression actions [no].\n"
bartbedfd232009-03-26 19:07:15 +0000265);
sewardjaf44c822007-11-25 14:01:38 +0000266}
267
268
269//
270// Implements the thread-related core callbacks.
271//
272
sewardjaf44c822007-11-25 14:01:38 +0000273static void drd_pre_mem_read(const CorePart part,
274 const ThreadId tid,
floriane543f302012-10-21 19:43:43 +0000275 const HChar* const s,
sewardjaf44c822007-11-25 14:01:38 +0000276 const Addr a,
277 const SizeT size)
278{
bartbedfd232009-03-26 19:07:15 +0000279 if (size > 0)
280 {
281 DRD_(trace_load)(a, size);
282 }
sewardjaf44c822007-11-25 14:01:38 +0000283}
284
bart5e85d262008-03-01 10:49:37 +0000285static void drd_pre_mem_read_asciiz(const CorePart part,
286 const ThreadId tid,
floriane543f302012-10-21 19:43:43 +0000287 const HChar* const s,
bart5e85d262008-03-01 10:49:37 +0000288 const Addr a)
289{
florian19f91bb2012-11-10 22:29:54 +0000290 const HChar* p = (void*)a;
bartbedfd232009-03-26 19:07:15 +0000291 SizeT size = 0;
bart5e85d262008-03-01 10:49:37 +0000292
sewardj234e5582011-02-09 12:47:23 +0000293 // Don't segfault if the string starts in an obviously stupid
294 // place. Actually we should check the whole string, not just
295 // the start address, but that's too much trouble. At least
296 // checking the first byte is better than nothing. See #255009.
297 if (!VG_(am_is_valid_for_client) (a, 1, VKI_PROT_READ))
298 return;
299
bartbedfd232009-03-26 19:07:15 +0000300 /* Note: the expression '*p' reads client memory and may crash if the */
301 /* client provided an invalid pointer ! */
302 while (*p)
303 {
304 p++;
305 size++;
306 }
bartbedfd232009-03-26 19:07:15 +0000307 if (size > 0)
308 {
309 DRD_(trace_load)(a, size);
310 }
bart5e85d262008-03-01 10:49:37 +0000311}
312
sewardjaf44c822007-11-25 14:01:38 +0000313static void drd_post_mem_write(const CorePart part,
314 const ThreadId tid,
315 const Addr a,
316 const SizeT size)
317{
bartbedfd232009-03-26 19:07:15 +0000318 DRD_(thread_set_vg_running_tid)(VG_(get_running_tid)());
319 if (size > 0)
320 {
321 DRD_(trace_store)(a, size);
322 }
sewardjaf44c822007-11-25 14:01:38 +0000323}
324
bart08865622008-06-06 14:31:36 +0000325static __inline__
bartf9427fd2010-08-29 09:19:07 +0000326void drd_start_using_mem(const Addr a1, const SizeT len,
327 const Bool is_stack_mem)
sewardjaf44c822007-11-25 14:01:38 +0000328{
bart639d0ad2011-03-12 14:26:01 +0000329 const Addr a2 = a1 + len;
330
331 tl_assert(a1 <= a2);
bart5e85d262008-03-01 10:49:37 +0000332
bartf9427fd2010-08-29 09:19:07 +0000333 if (!is_stack_mem && s_trace_alloc)
bartad994e82011-10-13 18:04:30 +0000334 DRD_(trace_msg)("Started using memory range 0x%lx + %ld%s",
bartb92ff0f2011-10-08 08:29:29 +0000335 a1, len, DRD_(running_thread_inside_pthread_create)()
336 ? " (inside pthread_create())" : "");
bartf9427fd2010-08-29 09:19:07 +0000337
bart7d5f5232011-03-13 09:08:10 +0000338 if (!is_stack_mem && DRD_(g_free_is_write))
bart639d0ad2011-03-12 14:26:01 +0000339 DRD_(thread_stop_using_mem)(a1, a2);
340
bartbedfd232009-03-26 19:07:15 +0000341 if (UNLIKELY(DRD_(any_address_is_traced)()))
342 {
bart42f32632011-12-13 11:12:05 +0000343 DRD_(trace_mem_access)(a1, len, eStart, 0, 0);
bartbedfd232009-03-26 19:07:15 +0000344 }
bart31b983d2010-02-21 14:52:59 +0000345
bart27656f82011-12-17 15:18:20 +0000346 if (UNLIKELY(DRD_(running_thread_inside_pthread_create)()))
bartdd75cdf2009-07-24 08:20:10 +0000347 {
bart639d0ad2011-03-12 14:26:01 +0000348 DRD_(start_suppression)(a1, a2, "pthread_create()");
bartdd75cdf2009-07-24 08:20:10 +0000349 }
sewardjaf44c822007-11-25 14:01:38 +0000350}
351
sewardj7cf4e6b2008-05-01 20:24:26 +0000352static void drd_start_using_mem_w_ecu(const Addr a1,
353 const SizeT len,
354 UInt ec_uniq)
355{
bartf9427fd2010-08-29 09:19:07 +0000356 drd_start_using_mem(a1, len, False);
sewardj7cf4e6b2008-05-01 20:24:26 +0000357}
358
359static void drd_start_using_mem_w_tid(const Addr a1,
360 const SizeT len,
361 ThreadId tid)
362{
bartf9427fd2010-08-29 09:19:07 +0000363 drd_start_using_mem(a1, len, False);
sewardj7cf4e6b2008-05-01 20:24:26 +0000364}
365
bart0ffa4832008-04-05 12:57:01 +0000366static __inline__
367void drd_stop_using_mem(const Addr a1, const SizeT len,
368 const Bool is_stack_mem)
sewardjaf44c822007-11-25 14:01:38 +0000369{
bartbedfd232009-03-26 19:07:15 +0000370 const Addr a2 = a1 + len;
bart5e85d262008-03-01 10:49:37 +0000371
barta3003982010-09-08 16:29:17 +0000372 tl_assert(a1 <= a2);
bart5e85d262008-03-01 10:49:37 +0000373
bartbedfd232009-03-26 19:07:15 +0000374 if (UNLIKELY(DRD_(any_address_is_traced)()))
bart42f32632011-12-13 11:12:05 +0000375 DRD_(trace_mem_access)(a1, len, eEnd, 0, 0);
bartf9427fd2010-08-29 09:19:07 +0000376
377 if (!is_stack_mem && s_trace_alloc)
bartad994e82011-10-13 18:04:30 +0000378 DRD_(trace_msg)("Stopped using memory range 0x%lx + %ld",
bartb92ff0f2011-10-08 08:29:29 +0000379 a1, len);
bartf9427fd2010-08-29 09:19:07 +0000380
bart07595032010-08-29 09:51:06 +0000381 if (!is_stack_mem || DRD_(get_check_stack_accesses)())
bartbedfd232009-03-26 19:07:15 +0000382 {
bart7d5f5232011-03-13 09:08:10 +0000383 if (is_stack_mem || !DRD_(g_free_is_write))
bart639d0ad2011-03-12 14:26:01 +0000384 DRD_(thread_stop_using_mem)(a1, a2);
bart7d5f5232011-03-13 09:08:10 +0000385 else if (DRD_(g_free_is_write))
bart639d0ad2011-03-12 14:26:01 +0000386 DRD_(trace_store)(a1, len);
bartbedfd232009-03-26 19:07:15 +0000387 DRD_(clientobj_stop_using_mem)(a1, a2);
388 DRD_(suppression_stop_using_mem)(a1, a2);
389 }
bart0ffa4832008-04-05 12:57:01 +0000390}
391
392static __inline__
393void drd_stop_using_nonstack_mem(const Addr a1, const SizeT len)
394{
bartbedfd232009-03-26 19:07:15 +0000395 drd_stop_using_mem(a1, len, False);
sewardjaf44c822007-11-25 14:01:38 +0000396}
397
bart1335ecc2009-02-14 16:10:53 +0000398/**
bartfdaa0182009-03-10 09:25:32 +0000399 * Discard all information DRD has about memory accesses and client objects
400 * in the specified address range.
401 */
402void DRD_(clean_memory)(const Addr a1, const SizeT len)
403{
bartbedfd232009-03-26 19:07:15 +0000404 const Bool is_stack_memory = DRD_(thread_address_on_any_stack)(a1);
405 drd_stop_using_mem(a1, len, is_stack_memory);
bartf9427fd2010-08-29 09:19:07 +0000406 drd_start_using_mem(a1, len, is_stack_memory);
bartfdaa0182009-03-10 09:25:32 +0000407}
408
409/**
bart68347832012-09-06 14:08:26 +0000410 * Suppress data race reports on all addresses contained in .plt, .got and
bart1335ecc2009-02-14 16:10:53 +0000411 * .got.plt sections inside the address range [ a, a + len [. The data in
412 * these sections is modified by _dl_relocate_object() every time a function
413 * in a shared library is called for the first time. Since the first call
414 * to a function in a shared library can happen from a multithreaded context,
415 * such calls can cause conflicting accesses. See also Ulrich Drepper's
416 * paper "How to Write Shared Libraries" for more information about relocation
417 * (http://people.redhat.com/drepper/dsohowto.pdf).
bart68347832012-09-06 14:08:26 +0000418 * Note: the contents of the .got section is only modified by the MIPS resolver.
bartcb2d0072008-05-31 07:55:51 +0000419 */
bart1335ecc2009-02-14 16:10:53 +0000420static void DRD_(suppress_relocation_conflicts)(const Addr a, const SizeT len)
bartcb2d0072008-05-31 07:55:51 +0000421{
bartbedfd232009-03-26 19:07:15 +0000422 const DebugInfo* di;
bartcb2d0072008-05-31 07:55:51 +0000423
barta9cc2dd2012-01-15 19:17:37 +0000424 if (trace_sectsuppr)
425 VG_(dmsg)("Evaluating range @ 0x%lx size %ld\n", a, len);
bartcb2d0072008-05-31 07:55:51 +0000426
barta9cc2dd2012-01-15 19:17:37 +0000427 for (di = VG_(next_DebugInfo)(0); di; di = VG_(next_DebugInfo)(di)) {
bartbedfd232009-03-26 19:07:15 +0000428 Addr avma;
429 SizeT size;
bartcb2d0072008-05-31 07:55:51 +0000430
barta9cc2dd2012-01-15 19:17:37 +0000431 if (trace_sectsuppr)
432 VG_(dmsg)("Examining %s / %s\n", VG_(DebugInfo_get_filename)(di),
433 VG_(DebugInfo_get_soname)(di));
434
bart90c8d7e2013-08-24 17:53:00 +0000435 /*
436 * Suppress the race report on the libpthread global variable
437 * __pthread_multiple_threads. See also
438 * http://bugs.kde.org/show_bug.cgi?id=323905.
439 */
440 avma = VG_(DebugInfo_get_bss_avma)(di);
441 size = VG_(DebugInfo_get_bss_size)(di);
442 tl_assert((avma && size) || (avma == 0 && size == 0));
443 if (size > 0 &&
444 VG_(strcmp)(VG_(DebugInfo_get_soname)(di), "libpthread.so.0") == 0) {
445 if (trace_sectsuppr)
446 VG_(dmsg)("Suppressing .bss @ 0x%lx size %ld\n", avma, size);
447 tl_assert(VG_(DebugInfo_sect_kind)(NULL, 0, avma) == Vg_SectBSS);
448 DRD_(start_suppression)(avma, avma + size, ".bss");
449 }
450
sewardje3f1e592009-07-31 09:41:29 +0000451 avma = VG_(DebugInfo_get_plt_avma)(di);
452 size = VG_(DebugInfo_get_plt_size)(di);
bartbedfd232009-03-26 19:07:15 +0000453 tl_assert((avma && size) || (avma == 0 && size == 0));
barta9cc2dd2012-01-15 19:17:37 +0000454 if (size > 0) {
455 if (trace_sectsuppr)
456 VG_(dmsg)("Suppressing .plt @ 0x%lx size %ld\n", avma, size);
sewardje3f1e592009-07-31 09:41:29 +0000457 tl_assert(VG_(DebugInfo_sect_kind)(NULL, 0, avma) == Vg_SectPLT);
bartbedfd232009-03-26 19:07:15 +0000458 DRD_(start_suppression)(avma, avma + size, ".plt");
459 }
bartcb2d0072008-05-31 07:55:51 +0000460
sewardje3f1e592009-07-31 09:41:29 +0000461 avma = VG_(DebugInfo_get_gotplt_avma)(di);
462 size = VG_(DebugInfo_get_gotplt_size)(di);
bartbedfd232009-03-26 19:07:15 +0000463 tl_assert((avma && size) || (avma == 0 && size == 0));
barta9cc2dd2012-01-15 19:17:37 +0000464 if (size > 0) {
465 if (trace_sectsuppr)
466 VG_(dmsg)("Suppressing .got.plt @ 0x%lx size %ld\n", avma, size);
sewardje3f1e592009-07-31 09:41:29 +0000467 tl_assert(VG_(DebugInfo_sect_kind)(NULL, 0, avma) == Vg_SectGOTPLT);
bartbedfd232009-03-26 19:07:15 +0000468 DRD_(start_suppression)(avma, avma + size, ".gotplt");
469 }
bart68347832012-09-06 14:08:26 +0000470
471 avma = VG_(DebugInfo_get_got_avma)(di);
472 size = VG_(DebugInfo_get_got_size)(di);
473 tl_assert((avma && size) || (avma == 0 && size == 0));
474 if (size > 0) {
475 if (trace_sectsuppr)
476 VG_(dmsg)("Suppressing .got @ 0x%lx size %ld\n", avma, size);
477 tl_assert(VG_(DebugInfo_sect_kind)(NULL, 0, avma) == Vg_SectGOT);
478 DRD_(start_suppression)(avma, avma + size, ".got");
479 }
bartbedfd232009-03-26 19:07:15 +0000480 }
bartcb2d0072008-05-31 07:55:51 +0000481}
482
bart5e85d262008-03-01 10:49:37 +0000483static
484void drd_start_using_mem_w_perms(const Addr a, const SizeT len,
sewardj9c606bd2008-09-18 18:12:50 +0000485 const Bool rr, const Bool ww, const Bool xx,
486 ULong di_handle)
bart5e85d262008-03-01 10:49:37 +0000487{
bartbedfd232009-03-26 19:07:15 +0000488 DRD_(thread_set_vg_running_tid)(VG_(get_running_tid)());
bartd5765912008-03-16 08:40:55 +0000489
bartf9427fd2010-08-29 09:19:07 +0000490 drd_start_using_mem(a, len, False);
bartcb2d0072008-05-31 07:55:51 +0000491
bartbedfd232009-03-26 19:07:15 +0000492 DRD_(suppress_relocation_conflicts)(a, len);
bart5e85d262008-03-01 10:49:37 +0000493}
494
bartad193e72012-01-15 19:02:20 +0000495/**
496 * Called by the core when the stack of a thread grows, to indicate that
497 * the addresses in range [ a, a + len [ may now be used by the client.
498 * Assumption: stacks grow downward.
499 */
bart08865622008-06-06 14:31:36 +0000500static __inline__
bart993d32f2012-01-15 19:08:13 +0000501void drd_start_using_mem_stack2(const DrdThreadId tid, const Addr a,
502 const SizeT len)
503{
504 DRD_(thread_set_stack_min)(tid, a - VG_STACK_REDZONE_SZB);
505 drd_start_using_mem(a - VG_STACK_REDZONE_SZB, len + VG_STACK_REDZONE_SZB,
506 True);
507}
508
509static __inline__
bart08865622008-06-06 14:31:36 +0000510void drd_start_using_mem_stack(const Addr a, const SizeT len)
sewardjaf44c822007-11-25 14:01:38 +0000511{
bart993d32f2012-01-15 19:08:13 +0000512 drd_start_using_mem_stack2(DRD_(thread_get_running_tid)(), a, len);
sewardjaf44c822007-11-25 14:01:38 +0000513}
514
bartad193e72012-01-15 19:02:20 +0000515/**
516 * Called by the core when the stack of a thread shrinks, to indicate that
517 * the addresses [ a, a + len [ are no longer accessible for the client.
518 * Assumption: stacks grow downward.
519 */
bart08865622008-06-06 14:31:36 +0000520static __inline__
bart993d32f2012-01-15 19:08:13 +0000521void drd_stop_using_mem_stack2(const DrdThreadId tid, const Addr a,
522 const SizeT len)
sewardjaf44c822007-11-25 14:01:38 +0000523{
bart993d32f2012-01-15 19:08:13 +0000524 DRD_(thread_set_stack_min)(tid, a + len - VG_STACK_REDZONE_SZB);
bartbedfd232009-03-26 19:07:15 +0000525 drd_stop_using_mem(a - VG_STACK_REDZONE_SZB, len + VG_STACK_REDZONE_SZB,
526 True);
sewardjaf44c822007-11-25 14:01:38 +0000527}
528
bart993d32f2012-01-15 19:08:13 +0000529static __inline__
530void drd_stop_using_mem_stack(const Addr a, const SizeT len)
531{
532 drd_stop_using_mem_stack2(DRD_(thread_get_running_tid)(), a, len);
533}
534
bart68a8afa2010-09-02 14:50:41 +0000535static
536Bool on_alt_stack(const Addr a)
537{
538 ThreadId vg_tid;
539 Addr alt_min;
540 SizeT alt_size;
541
542 vg_tid = VG_(get_running_tid)();
543 alt_min = VG_(thread_get_altstack_min)(vg_tid);
544 alt_size = VG_(thread_get_altstack_size)(vg_tid);
545 return (SizeT)(a - alt_min) < alt_size;
546}
547
548static
549void drd_start_using_mem_alt_stack(const Addr a, const SizeT len)
550{
551 if (!on_alt_stack(a))
552 drd_start_using_mem_stack(a, len);
553}
554
555static
556void drd_stop_using_mem_alt_stack(const Addr a, const SizeT len)
557{
558 if (!on_alt_stack(a))
559 drd_stop_using_mem_stack(a, len);
560}
561
562/**
563 * Callback function invoked by the Valgrind core before a signal is delivered.
564 */
565static
566void drd_pre_deliver_signal(const ThreadId vg_tid, const Int sigNo,
567 const Bool alt_stack)
568{
569 DrdThreadId drd_tid;
570
571 drd_tid = DRD_(VgThreadIdToDrdThreadId)(vg_tid);
572 DRD_(thread_set_on_alt_stack)(drd_tid, alt_stack);
573 if (alt_stack)
574 {
575 /*
576 * As soon a signal handler has been invoked on the alternate stack,
577 * switch to stack memory handling functions that can handle the
578 * alternate stack.
579 */
580 VG_(track_new_mem_stack)(drd_start_using_mem_alt_stack);
581 VG_(track_die_mem_stack)(drd_stop_using_mem_alt_stack);
582 }
583}
584
585/**
586 * Callback function invoked by the Valgrind core after a signal is delivered,
587 * at least if the signal handler did not longjmp().
588 */
589static
590void drd_post_deliver_signal(const ThreadId vg_tid, const Int sigNo)
591{
592 DrdThreadId drd_tid;
593
594 drd_tid = DRD_(VgThreadIdToDrdThreadId)(vg_tid);
595 DRD_(thread_set_on_alt_stack)(drd_tid, False);
596 if (DRD_(thread_get_threads_on_alt_stack)() == 0)
597 {
598 VG_(track_new_mem_stack)(drd_start_using_mem_stack);
599 VG_(track_die_mem_stack)(drd_stop_using_mem_stack);
600 }
601}
602
bartbedfd232009-03-26 19:07:15 +0000603/**
604 * Callback function called by the Valgrind core before a stack area is
605 * being used by a signal handler.
606 *
bart573d0742013-03-10 11:02:32 +0000607 * @param[in] a Start of address range - VG_STACK_REDZONE_SZB.
608 * @param[in] len Address range length + VG_STACK_REDZONE_SZB.
bartbedfd232009-03-26 19:07:15 +0000609 * @param[in] tid Valgrind thread ID for whom the signal frame is being
610 * constructed.
611 */
612static void drd_start_using_mem_stack_signal(const Addr a, const SizeT len,
613 ThreadId tid)
sewardjaf44c822007-11-25 14:01:38 +0000614{
bartbedfd232009-03-26 19:07:15 +0000615 DRD_(thread_set_vg_running_tid)(VG_(get_running_tid)());
bart573d0742013-03-10 11:02:32 +0000616 drd_start_using_mem(a + VG_STACK_REDZONE_SZB, len - VG_STACK_REDZONE_SZB,
617 True);
sewardjaf44c822007-11-25 14:01:38 +0000618}
619
bart5e85d262008-03-01 10:49:37 +0000620static void drd_stop_using_mem_stack_signal(Addr a, SizeT len)
sewardjaf44c822007-11-25 14:01:38 +0000621{
bart573d0742013-03-10 11:02:32 +0000622 drd_stop_using_mem(a + VG_STACK_REDZONE_SZB, len - VG_STACK_REDZONE_SZB,
623 True);
sewardjaf44c822007-11-25 14:01:38 +0000624}
625
626static
627void drd_pre_thread_create(const ThreadId creator, const ThreadId created)
628{
bartbedfd232009-03-26 19:07:15 +0000629 const DrdThreadId drd_creator = DRD_(VgThreadIdToDrdThreadId)(creator);
630 tl_assert(created != VG_INVALID_THREADID);
631 DRD_(thread_pre_create)(drd_creator, created);
632 if (DRD_(IsValidDrdThreadId)(drd_creator))
633 {
634 DRD_(thread_new_segment)(drd_creator);
635 }
636 if (DRD_(thread_get_trace_fork_join)())
637 {
bartad994e82011-10-13 18:04:30 +0000638 DRD_(trace_msg)("drd_pre_thread_create creator = %d, created = %d",
barte7086002011-10-11 19:08:39 +0000639 drd_creator, created);
bartbedfd232009-03-26 19:07:15 +0000640 }
sewardjaf44c822007-11-25 14:01:38 +0000641}
642
bartad193e72012-01-15 19:02:20 +0000643/**
644 * Called by Valgrind's core before any loads or stores are performed on
645 * the context of thread "created".
646 */
sewardjaf44c822007-11-25 14:01:38 +0000647static
bart0ffa4832008-04-05 12:57:01 +0000648void drd_post_thread_create(const ThreadId vg_created)
sewardjaf44c822007-11-25 14:01:38 +0000649{
bartbedfd232009-03-26 19:07:15 +0000650 DrdThreadId drd_created;
bart864920d2012-01-15 19:13:35 +0000651 Addr stack_max;
bart0ffa4832008-04-05 12:57:01 +0000652
bartbedfd232009-03-26 19:07:15 +0000653 tl_assert(vg_created != VG_INVALID_THREADID);
bart0ffa4832008-04-05 12:57:01 +0000654
bartbedfd232009-03-26 19:07:15 +0000655 drd_created = DRD_(thread_post_create)(vg_created);
bart864920d2012-01-15 19:13:35 +0000656
657 /* Set up red zone before the code in glibc's clone.S is run. */
658 stack_max = DRD_(thread_get_stack_max)(drd_created);
659 drd_start_using_mem_stack2(drd_created, stack_max, 0);
660
bartbedfd232009-03-26 19:07:15 +0000661 if (DRD_(thread_get_trace_fork_join)())
662 {
bartad994e82011-10-13 18:04:30 +0000663 DRD_(trace_msg)("drd_post_thread_create created = %d", drd_created);
bartbedfd232009-03-26 19:07:15 +0000664 }
665 if (! DRD_(get_check_stack_accesses)())
666 {
667 DRD_(start_suppression)(DRD_(thread_get_stack_max)(drd_created)
668 - DRD_(thread_get_stack_size)(drd_created),
669 DRD_(thread_get_stack_max)(drd_created),
670 "stack");
671 }
sewardjaf44c822007-11-25 14:01:38 +0000672}
673
sewardjaf44c822007-11-25 14:01:38 +0000674/* Called after a thread has performed its last memory access. */
bartd43f8d32008-03-16 17:29:20 +0000675static void drd_thread_finished(ThreadId vg_tid)
sewardjaf44c822007-11-25 14:01:38 +0000676{
bartbedfd232009-03-26 19:07:15 +0000677 DrdThreadId drd_tid;
sewardj85642922008-01-14 11:54:56 +0000678
bart9bb46c42012-02-02 10:14:30 +0000679 /*
bart37e1dd02012-02-02 10:58:01 +0000680 * Ignore if invoked because thread creation failed. See e.g.
bart9bb46c42012-02-02 10:14:30 +0000681 * coregrind/m_syswrap/syswrap-amd64-linux.c
682 */
bart37e1dd02012-02-02 10:58:01 +0000683 if (VG_(get_running_tid)() != vg_tid)
684 return;
sewardj85642922008-01-14 11:54:56 +0000685
bartbedfd232009-03-26 19:07:15 +0000686 drd_tid = DRD_(VgThreadIdToDrdThreadId)(vg_tid);
bart37e1dd02012-02-02 10:58:01 +0000687 tl_assert(drd_tid != DRD_INVALID_THREADID);
bartbedfd232009-03-26 19:07:15 +0000688 if (DRD_(thread_get_trace_fork_join)())
689 {
bartad994e82011-10-13 18:04:30 +0000690 DRD_(trace_msg)("drd_thread_finished tid = %d%s", drd_tid,
barte7086002011-10-11 19:08:39 +0000691 DRD_(thread_get_joinable)(drd_tid)
692 ? "" : " (which is a detached thread)");
bartbedfd232009-03-26 19:07:15 +0000693 }
barte7086002011-10-11 19:08:39 +0000694 if (s_show_stack_usage && !VG_(clo_xml)) {
bartbedfd232009-03-26 19:07:15 +0000695 const SizeT stack_size = DRD_(thread_get_stack_size)(drd_tid);
696 const SizeT used_stack
697 = (DRD_(thread_get_stack_max)(drd_tid)
698 - DRD_(thread_get_stack_min_min)(drd_tid));
699 VG_(message)(Vg_UserMsg,
bart63c92ea2009-07-19 17:53:56 +0000700 "thread %d%s finished and used %ld bytes out of %ld"
sewardj1e29ebc2009-07-15 14:49:17 +0000701 " on its stack. Margin: %ld bytes.\n",
bartbedfd232009-03-26 19:07:15 +0000702 drd_tid,
703 DRD_(thread_get_joinable)(drd_tid)
barte7086002011-10-11 19:08:39 +0000704 ? "" : " (which is a detached thread)",
705 used_stack, stack_size, stack_size - used_stack);
sewardjaf44c822007-11-25 14:01:38 +0000706
bartbedfd232009-03-26 19:07:15 +0000707 }
708 drd_stop_using_mem(DRD_(thread_get_stack_min)(drd_tid),
709 DRD_(thread_get_stack_max)(drd_tid)
710 - DRD_(thread_get_stack_min)(drd_tid),
711 True);
bartd45d9952009-05-31 18:53:54 +0000712 DRD_(thread_set_record_loads)(drd_tid, False);
713 DRD_(thread_set_record_stores)(drd_tid, False);
bartbedfd232009-03-26 19:07:15 +0000714 DRD_(thread_finished)(drd_tid);
sewardjaf44c822007-11-25 14:01:38 +0000715}
716
bart5c7e6b62011-02-03 17:47:50 +0000717/*
718 * Called immediately after fork for the child process only. 'tid' is the
719 * only surviving thread in the child process. Cleans up thread state.
720 * See also http://pubs.opengroup.org/onlinepubs/9699919799/functions/pthread_atfork.html for a detailed discussion of using fork() in combination with mutexes.
721 */
722static
723void drd__atfork_child(ThreadId tid)
724{
725 DRD_(drd_thread_atfork_child)(tid);
726}
727
728
sewardjaf44c822007-11-25 14:01:38 +0000729//
730// Implementation of the tool interface.
731//
732
bart1335ecc2009-02-14 16:10:53 +0000733static void DRD_(post_clo_init)(void)
sewardjdcbb8d32007-11-26 21:34:30 +0000734{
bart0c6bf352009-07-25 14:03:53 +0000735#if defined(VGO_linux) || defined(VGO_darwin)
bartc6ef4af2009-07-23 10:10:30 +0000736 /* fine */
bartc6ef4af2009-07-23 10:10:30 +0000737#else
738 VG_(printf)("\nWARNING: DRD has not yet been tested on this operating system.\n\n");
sewardjdcbb8d32007-11-26 21:34:30 +0000739# endif
bart95761b52008-03-29 08:34:03 +0000740
bart75c1cba2010-08-29 07:20:30 +0000741 if (s_var_info)
bartbedfd232009-03-26 19:07:15 +0000742 {
743 VG_(needs_var_info)();
744 }
sewardjdcbb8d32007-11-26 21:34:30 +0000745}
sewardjaf44c822007-11-25 14:01:38 +0000746
sewardjaf44c822007-11-25 14:01:38 +0000747static void drd_start_client_code(const ThreadId tid, const ULong bbs_done)
748{
bartbedfd232009-03-26 19:07:15 +0000749 tl_assert(tid == VG_(get_running_tid)());
750 DRD_(thread_set_vg_running_tid)(tid);
sewardjaf44c822007-11-25 14:01:38 +0000751}
752
bart1335ecc2009-02-14 16:10:53 +0000753static void DRD_(fini)(Int exitcode)
sewardjaf44c822007-11-25 14:01:38 +0000754{
bartbedfd232009-03-26 19:07:15 +0000755 // thread_print_all();
sewardj2d9e8742009-08-07 15:46:56 +0000756 if (VG_(clo_verbosity) == 1 && !VG_(clo_xml)) {
barte7086002011-10-11 19:08:39 +0000757 VG_(message)(Vg_UserMsg, "For counts of detected and suppressed errors, "
sewardj2d9e8742009-08-07 15:46:56 +0000758 "rerun with: -v\n");
759 }
760
barte7086002011-10-11 19:08:39 +0000761 if ((VG_(clo_stats) || s_print_stats) && !VG_(clo_xml))
bartbedfd232009-03-26 19:07:15 +0000762 {
barte5214662009-06-21 11:51:23 +0000763 ULong pu = DRD_(thread_get_update_conflict_set_count)();
764 ULong pu_seg_cr = DRD_(thread_get_update_conflict_set_new_sg_count)();
765 ULong pu_mtx_cv = DRD_(thread_get_update_conflict_set_sync_count)();
766 ULong pu_join = DRD_(thread_get_update_conflict_set_join_count)();
767
bartbedfd232009-03-26 19:07:15 +0000768 VG_(message)(Vg_UserMsg,
sewardj1e29ebc2009-07-15 14:49:17 +0000769 " thread: %lld context switches.\n",
bart54803fe2009-06-21 09:26:27 +0000770 DRD_(thread_get_context_switch_count)());
bartbedfd232009-03-26 19:07:15 +0000771 VG_(message)(Vg_UserMsg,
sewardj1e29ebc2009-07-15 14:49:17 +0000772 "confl set: %lld full updates and %lld partial updates;\n",
barte7086002011-10-11 19:08:39 +0000773 DRD_(thread_get_compute_conflict_set_count)(),
774 pu);
bartbedfd232009-03-26 19:07:15 +0000775 VG_(message)(Vg_UserMsg,
sewardj1e29ebc2009-07-15 14:49:17 +0000776 " %lld partial updates during segment creation,\n",
barte7086002011-10-11 19:08:39 +0000777 pu_seg_cr);
barte5214662009-06-21 11:51:23 +0000778 VG_(message)(Vg_UserMsg,
sewardj1e29ebc2009-07-15 14:49:17 +0000779 " %lld because of mutex/sema/cond.var. operations,\n",
barte7086002011-10-11 19:08:39 +0000780 pu_mtx_cv);
barte5214662009-06-21 11:51:23 +0000781 VG_(message)(Vg_UserMsg,
sewardj1e29ebc2009-07-15 14:49:17 +0000782 " %lld because of barrier/rwlock operations and\n",
barte5214662009-06-21 11:51:23 +0000783 pu - pu_seg_cr - pu_mtx_cv - pu_join);
784 VG_(message)(Vg_UserMsg,
785 " %lld partial updates because of thread join"
barte7086002011-10-11 19:08:39 +0000786 " operations.\n",
787 pu_join);
barte5214662009-06-21 11:51:23 +0000788 VG_(message)(Vg_UserMsg,
sewardj1e29ebc2009-07-15 14:49:17 +0000789 " segments: created %lld segments, max %lld alive,\n",
bart9dedafe2009-06-21 18:09:02 +0000790 DRD_(sg_get_segments_created_count)(),
791 DRD_(sg_get_max_segments_alive_count)());
bartbedfd232009-03-26 19:07:15 +0000792 VG_(message)(Vg_UserMsg,
sewardj1e29ebc2009-07-15 14:49:17 +0000793 " %lld discard points and %lld merges.\n",
bart9dedafe2009-06-21 18:09:02 +0000794 DRD_(thread_get_discard_ordered_segments_count)(),
bart1a3b0b32009-05-03 17:07:34 +0000795 DRD_(sg_get_segment_merge_count)());
796 VG_(message)(Vg_UserMsg,
bart54803fe2009-06-21 09:26:27 +0000797 "segmnt cr: %lld mutex, %lld rwlock, %lld semaphore and"
sewardj1e29ebc2009-07-15 14:49:17 +0000798 " %lld barrier.\n",
bartbedfd232009-03-26 19:07:15 +0000799 DRD_(get_mutex_segment_creation_count)(),
800 DRD_(get_rwlock_segment_creation_count)(),
801 DRD_(get_semaphore_segment_creation_count)(),
802 DRD_(get_barrier_segment_creation_count)());
803 VG_(message)(Vg_UserMsg,
bart9dedafe2009-06-21 18:09:02 +0000804 " bitmaps: %lld level one"
sewardj1e29ebc2009-07-15 14:49:17 +0000805 " and %lld level two bitmaps were allocated.\n",
bartbedfd232009-03-26 19:07:15 +0000806 DRD_(bm_get_bitmap_creation_count)(),
bartbedfd232009-03-26 19:07:15 +0000807 DRD_(bm_get_bitmap2_creation_count)());
808 VG_(message)(Vg_UserMsg,
sewardj1e29ebc2009-07-15 14:49:17 +0000809 " mutex: %lld non-recursive lock/unlock events.\n",
bartbedfd232009-03-26 19:07:15 +0000810 DRD_(get_mutex_lock_count)());
811 DRD_(print_malloc_stats)();
812 }
barte44bccc2012-01-18 09:46:57 +0000813
814 DRD_(bm_module_cleanup)();
sewardjaf44c822007-11-25 14:01:38 +0000815}
816
sewardjaf44c822007-11-25 14:01:38 +0000817static
818void drd_pre_clo_init(void)
819{
njnf76d27a2009-05-28 01:53:07 +0000820 // Basic tool stuff.
bartbedfd232009-03-26 19:07:15 +0000821 VG_(details_name) ("drd");
822 VG_(details_version) (NULL);
823 VG_(details_description) ("a thread error detector");
bartd4bab992013-10-04 05:55:30 +0000824 VG_(details_copyright_author)("Copyright (C) 2006-2013, and GNU GPL'd,"
bartbedfd232009-03-26 19:07:15 +0000825 " by Bart Van Assche.");
826 VG_(details_bug_reports_to) (VG_BUGS_TO);
sewardjaf44c822007-11-25 14:01:38 +0000827
bartbedfd232009-03-26 19:07:15 +0000828 VG_(basic_tool_funcs) (DRD_(post_clo_init),
829 DRD_(instrument),
830 DRD_(fini));
sewardjaf44c822007-11-25 14:01:38 +0000831
bartbedfd232009-03-26 19:07:15 +0000832 // Command line stuff.
833 VG_(needs_command_line_options)(DRD_(process_cmd_line_option),
834 DRD_(print_usage),
835 DRD_(print_debug_usage));
barte7086002011-10-11 19:08:39 +0000836 VG_(needs_xml_output) ();
sewardjaf44c822007-11-25 14:01:38 +0000837
bartbedfd232009-03-26 19:07:15 +0000838 // Error handling.
839 DRD_(register_error_handlers)();
sewardjaf44c822007-11-25 14:01:38 +0000840
bartbedfd232009-03-26 19:07:15 +0000841 // Core event tracking.
842 VG_(track_pre_mem_read) (drd_pre_mem_read);
843 VG_(track_pre_mem_read_asciiz) (drd_pre_mem_read_asciiz);
844 VG_(track_post_mem_write) (drd_post_mem_write);
845 VG_(track_new_mem_brk) (drd_start_using_mem_w_tid);
846 VG_(track_new_mem_mmap) (drd_start_using_mem_w_perms);
847 VG_(track_new_mem_stack) (drd_start_using_mem_stack);
848 VG_(track_new_mem_stack_signal) (drd_start_using_mem_stack_signal);
849 VG_(track_new_mem_startup) (drd_start_using_mem_w_perms);
850 VG_(track_die_mem_brk) (drd_stop_using_nonstack_mem);
851 VG_(track_die_mem_munmap) (drd_stop_using_nonstack_mem);
852 VG_(track_die_mem_stack) (drd_stop_using_mem_stack);
853 VG_(track_die_mem_stack_signal) (drd_stop_using_mem_stack_signal);
bart68a8afa2010-09-02 14:50:41 +0000854 VG_(track_pre_deliver_signal) (drd_pre_deliver_signal);
855 VG_(track_post_deliver_signal) (drd_post_deliver_signal);
bartbedfd232009-03-26 19:07:15 +0000856 VG_(track_start_client_code) (drd_start_client_code);
857 VG_(track_pre_thread_ll_create) (drd_pre_thread_create);
858 VG_(track_pre_thread_first_insn)(drd_post_thread_create);
859 VG_(track_pre_thread_ll_exit) (drd_thread_finished);
bart5c7e6b62011-02-03 17:47:50 +0000860 VG_(atfork) (NULL/*pre*/, NULL/*parent*/,
861 drd__atfork_child/*child*/);
sewardjaf44c822007-11-25 14:01:38 +0000862
bartbedfd232009-03-26 19:07:15 +0000863 // Other stuff.
864 DRD_(register_malloc_wrappers)(drd_start_using_mem_w_ecu,
865 drd_stop_using_nonstack_mem);
sewardjaf44c822007-11-25 14:01:38 +0000866
barte44bccc2012-01-18 09:46:57 +0000867 DRD_(bm_module_init)();
868
bartbedfd232009-03-26 19:07:15 +0000869 DRD_(clientreq_init)();
sewardjaf44c822007-11-25 14:01:38 +0000870
bartbedfd232009-03-26 19:07:15 +0000871 DRD_(suppression_init)();
bart4bb53d82008-02-28 19:06:34 +0000872
bartbedfd232009-03-26 19:07:15 +0000873 DRD_(clientobj_init)();
barte5e0efa2009-06-24 18:35:02 +0000874
barte278ab52012-01-24 18:28:55 +0000875 DRD_(thread_init)();
876
barte5e0efa2009-06-24 18:35:02 +0000877 {
florian19f91bb2012-11-10 22:29:54 +0000878 HChar* const smi = VG_(getenv)("DRD_SEGMENT_MERGING_INTERVAL");
barte5e0efa2009-06-24 18:35:02 +0000879 if (smi)
880 DRD_(thread_set_segment_merge_interval)(VG_(strtoll10)(smi, NULL));
881 }
sewardjaf44c822007-11-25 14:01:38 +0000882}
883
884
885VG_DETERMINE_INTERFACE_VERSION(drd_pre_clo_init)