blob: 79bdce2aecb1a68fe542211d60b0ce7045a88d18 [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
Elliott Hughesed398002017-06-21 14:41:24 -07004 Copyright (C) 2006-2017 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"
sewardjaf44c822007-11-25 14:01:38 +000043#include "pub_tool_libcassert.h" // tl_assert()
44#include "pub_tool_libcbase.h" // VG_(strcmp)
45#include "pub_tool_libcprint.h" // VG_(printf)
bart9cdc0832014-08-09 12:58:17 +000046#include "pub_tool_libcproc.h" // VG_(getenv)()
sewardjaf44c822007-11-25 14:01:38 +000047#include "pub_tool_machine.h"
bart024a95a2008-04-01 18:27:41 +000048#include "pub_tool_mallocfree.h" // VG_(malloc)(), VG_(free)()
sewardjaf44c822007-11-25 14:01:38 +000049#include "pub_tool_options.h" // command line options
bartceded212008-03-26 17:39:52 +000050#include "pub_tool_replacemalloc.h"
bart72b751c2008-03-01 13:44:24 +000051#include "pub_tool_threadstate.h" // VG_(get_running_tid)()
sewardjaf44c822007-11-25 14:01:38 +000052#include "pub_tool_tooliface.h"
sewardj234e5582011-02-09 12:47:23 +000053#include "pub_tool_aspacemgr.h" // VG_(am_is_valid_for_client)
sewardjaf44c822007-11-25 14:01:38 +000054
55
bart1335ecc2009-02-14 16:10:53 +000056/* Local variables. */
sewardjaf44c822007-11-25 14:01:38 +000057
bart7d5f5232011-03-13 09:08:10 +000058static Bool s_print_stats;
59static Bool s_var_info;
60static Bool s_show_stack_usage;
61static Bool s_trace_alloc;
bartc0cd28f2013-08-24 17:51:18 +000062static Bool trace_sectsuppr;
sewardjaf44c822007-11-25 14:01:38 +000063
64
bart1335ecc2009-02-14 16:10:53 +000065/**
66 * Implement the needs_command_line_options for drd.
67 */
florian19f91bb2012-11-10 22:29:54 +000068static Bool DRD_(process_cmd_line_option)(const HChar* arg)
sewardjaf44c822007-11-25 14:01:38 +000069{
bartbedfd232009-03-26 19:07:15 +000070 int check_stack_accesses = -1;
bart6d956dc2011-07-28 09:54:37 +000071 int join_list_vol = -1;
bartbedfd232009-03-26 19:07:15 +000072 int exclusive_threshold_ms = -1;
bartf98a5692009-05-03 17:17:37 +000073 int first_race_only = -1;
bartbedfd232009-03-26 19:07:15 +000074 int report_signal_unlocked = -1;
75 int segment_merging = -1;
bart8f822af2009-06-08 18:20:42 +000076 int segment_merge_interval = -1;
bartbedfd232009-03-26 19:07:15 +000077 int shared_threshold_ms = -1;
78 int show_confl_seg = -1;
79 int trace_barrier = -1;
80 int trace_clientobj = -1;
81 int trace_cond = -1;
82 int trace_csw = -1;
83 int trace_fork_join = -1;
bartc1824672011-03-12 14:07:09 +000084 int trace_hb = -1;
bartbedfd232009-03-26 19:07:15 +000085 int trace_conflict_set = -1;
bart8f822af2009-06-08 18:20:42 +000086 int trace_conflict_set_bm = -1;
bartbedfd232009-03-26 19:07:15 +000087 int trace_mutex = -1;
88 int trace_rwlock = -1;
89 int trace_segment = -1;
90 int trace_semaphore = -1;
91 int trace_suppression = -1;
florian19f91bb2012-11-10 22:29:54 +000092 const HChar* trace_address = 0;
93 const HChar* ptrace_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) {}
bart6d956dc2011-07-28 09:54:37 +000096 else if VG_INT_CLO (arg, "--join-list-vol", join_list_vol) {}
bart75c1cba2010-08-29 07:20:30 +000097 else if VG_BOOL_CLO(arg, "--drd-stats", s_print_stats) {}
bartf98a5692009-05-03 17:17:37 +000098 else if VG_BOOL_CLO(arg, "--first-race-only", first_race_only) {}
bart7d5f5232011-03-13 09:08:10 +000099 else if VG_BOOL_CLO(arg, "--free-is-write", DRD_(g_free_is_write)) {}
bart8f822af2009-06-08 18:20:42 +0000100 else if VG_BOOL_CLO(arg,"--report-signal-unlocked",report_signal_unlocked)
101 {}
bartbedfd232009-03-26 19:07:15 +0000102 else if VG_BOOL_CLO(arg, "--segment-merging", segment_merging) {}
bart8f822af2009-06-08 18:20:42 +0000103 else if VG_INT_CLO (arg, "--segment-merging-interval", segment_merge_interval)
104 {}
bartbedfd232009-03-26 19:07:15 +0000105 else if VG_BOOL_CLO(arg, "--show-confl-seg", show_confl_seg) {}
bart75c1cba2010-08-29 07:20:30 +0000106 else if VG_BOOL_CLO(arg, "--show-stack-usage", s_show_stack_usage) {}
sewardj8eb8bab2015-07-21 14:44:28 +0000107 else if VG_BOOL_CLO(arg, "--ignore-thread-creation",
108 DRD_(ignore_thread_creation)) {}
bartf9427fd2010-08-29 09:19:07 +0000109 else if VG_BOOL_CLO(arg, "--trace-alloc", s_trace_alloc) {}
bartbedfd232009-03-26 19:07:15 +0000110 else if VG_BOOL_CLO(arg, "--trace-barrier", trace_barrier) {}
111 else if VG_BOOL_CLO(arg, "--trace-clientobj", trace_clientobj) {}
112 else if VG_BOOL_CLO(arg, "--trace-cond", trace_cond) {}
113 else if VG_BOOL_CLO(arg, "--trace-conflict-set", trace_conflict_set) {}
bart8f822af2009-06-08 18:20:42 +0000114 else if VG_BOOL_CLO(arg, "--trace-conflict-set-bm", trace_conflict_set_bm){}
bartbedfd232009-03-26 19:07:15 +0000115 else if VG_BOOL_CLO(arg, "--trace-csw", trace_csw) {}
116 else if VG_BOOL_CLO(arg, "--trace-fork-join", trace_fork_join) {}
bartc1824672011-03-12 14:07:09 +0000117 else if VG_BOOL_CLO(arg, "--trace-hb", trace_hb) {}
bartbedfd232009-03-26 19:07:15 +0000118 else if VG_BOOL_CLO(arg, "--trace-mutex", trace_mutex) {}
119 else if VG_BOOL_CLO(arg, "--trace-rwlock", trace_rwlock) {}
bartc0cd28f2013-08-24 17:51:18 +0000120 else if VG_BOOL_CLO(arg, "--trace-sectsuppr", trace_sectsuppr) {}
bartbedfd232009-03-26 19:07:15 +0000121 else if VG_BOOL_CLO(arg, "--trace-segment", trace_segment) {}
122 else if VG_BOOL_CLO(arg, "--trace-semaphore", trace_semaphore) {}
123 else if VG_BOOL_CLO(arg, "--trace-suppr", trace_suppression) {}
bart75c1cba2010-08-29 07:20:30 +0000124 else if VG_BOOL_CLO(arg, "--var-info", s_var_info) {}
barte4554e12014-08-08 16:17:58 +0000125 else if VG_BOOL_CLO(arg, "--verify-conflict-set", DRD_(verify_conflict_set))
126 {}
bartbedfd232009-03-26 19:07:15 +0000127 else if VG_INT_CLO (arg, "--exclusive-threshold", exclusive_threshold_ms) {}
bart41a378a2012-01-24 18:39:29 +0000128 else if VG_STR_CLO (arg, "--ptrace-addr", ptrace_address) {}
bartbedfd232009-03-26 19:07:15 +0000129 else if VG_INT_CLO (arg, "--shared-threshold", shared_threshold_ms) {}
130 else if VG_STR_CLO (arg, "--trace-addr", trace_address) {}
131 else
132 return VG_(replacement_malloc_process_cmd_line_option)(arg);
sewardjaf44c822007-11-25 14:01:38 +0000133
bartbedfd232009-03-26 19:07:15 +0000134 if (check_stack_accesses != -1)
135 DRD_(set_check_stack_accesses)(check_stack_accesses);
136 if (exclusive_threshold_ms != -1)
137 {
138 DRD_(mutex_set_lock_threshold)(exclusive_threshold_ms);
139 DRD_(rwlock_set_exclusive_threshold)(exclusive_threshold_ms);
140 }
bartf98a5692009-05-03 17:17:37 +0000141 if (first_race_only != -1)
142 {
143 DRD_(set_first_race_only)(first_race_only);
144 }
bart6d956dc2011-07-28 09:54:37 +0000145 if (join_list_vol != -1)
146 DRD_(thread_set_join_list_vol)(join_list_vol);
bartbedfd232009-03-26 19:07:15 +0000147 if (report_signal_unlocked != -1)
148 {
149 DRD_(cond_set_report_signal_unlocked)(report_signal_unlocked);
150 }
151 if (shared_threshold_ms != -1)
152 {
153 DRD_(rwlock_set_shared_threshold)(shared_threshold_ms);
154 }
155 if (segment_merging != -1)
156 DRD_(thread_set_segment_merging)(segment_merging);
bart109d5da2009-06-22 18:06:29 +0000157 if (segment_merge_interval != -1)
bart8f822af2009-06-08 18:20:42 +0000158 DRD_(thread_set_segment_merge_interval)(segment_merge_interval);
bartbedfd232009-03-26 19:07:15 +0000159 if (show_confl_seg != -1)
160 DRD_(set_show_conflicting_segments)(show_confl_seg);
bart41a378a2012-01-24 18:39:29 +0000161 if (trace_address) {
bartbedfd232009-03-26 19:07:15 +0000162 const Addr addr = VG_(strtoll16)(trace_address, 0);
bart41a378a2012-01-24 18:39:29 +0000163 DRD_(start_tracing_address_range)(addr, addr + 1, False);
164 }
165 if (ptrace_address) {
florianea71ffb2015-08-05 14:38:57 +0000166 HChar *plus = VG_(strchr)(ptrace_address, '+');
bart8670edc2013-10-25 14:26:14 +0000167 Addr addr, length;
168 if (plus)
169 *plus = '\0';
170 addr = VG_(strtoll16)(ptrace_address, 0);
171 length = plus ? VG_(strtoll16)(plus + 1, 0) : 1;
172 DRD_(start_tracing_address_range)(addr, addr + length, True);
bartbedfd232009-03-26 19:07:15 +0000173 }
174 if (trace_barrier != -1)
175 DRD_(barrier_set_trace)(trace_barrier);
176 if (trace_clientobj != -1)
177 DRD_(clientobj_set_trace)(trace_clientobj);
178 if (trace_cond != -1)
179 DRD_(cond_set_trace)(trace_cond);
180 if (trace_csw != -1)
181 DRD_(thread_trace_context_switches)(trace_csw);
182 if (trace_fork_join != -1)
183 DRD_(thread_set_trace_fork_join)(trace_fork_join);
bartc1824672011-03-12 14:07:09 +0000184 if (trace_hb != -1)
185 DRD_(hb_set_trace)(trace_hb);
bartbedfd232009-03-26 19:07:15 +0000186 if (trace_conflict_set != -1)
187 DRD_(thread_trace_conflict_set)(trace_conflict_set);
bart8f822af2009-06-08 18:20:42 +0000188 if (trace_conflict_set_bm != -1)
189 DRD_(thread_trace_conflict_set_bm)(trace_conflict_set_bm);
bartbedfd232009-03-26 19:07:15 +0000190 if (trace_mutex != -1)
191 DRD_(mutex_set_trace)(trace_mutex);
192 if (trace_rwlock != -1)
193 DRD_(rwlock_set_trace)(trace_rwlock);
194 if (trace_segment != -1)
195 DRD_(sg_set_trace)(trace_segment);
196 if (trace_semaphore != -1)
197 DRD_(semaphore_set_trace)(trace_semaphore);
198 if (trace_suppression != -1)
199 DRD_(suppression_set_trace)(trace_suppression);
sewardjaf44c822007-11-25 14:01:38 +0000200
bartbedfd232009-03-26 19:07:15 +0000201 return True;
sewardjaf44c822007-11-25 14:01:38 +0000202}
203
bart1335ecc2009-02-14 16:10:53 +0000204static void DRD_(print_usage)(void)
bartbd7e56e2008-03-31 18:14:12 +0000205{
bartbedfd232009-03-26 19:07:15 +0000206 VG_(printf)(
bart0ffa4832008-04-05 12:57:01 +0000207" --check-stack-var=yes|no Whether or not to report data races on\n"
208" stack variables [no].\n"
bart9d5b7962008-05-14 12:25:00 +0000209" --exclusive-threshold=<n> Print an error message if any mutex or\n"
bart8600c422010-10-25 18:18:54 +0000210" writer lock is held longer than the specified\n"
211" time (in milliseconds) [off].\n"
bart1a3b0b32009-05-03 17:07:34 +0000212" --first-race-only=yes|no Only report the first data race that occurs on\n"
213" a memory location instead of all races [no].\n"
bart639d0ad2011-03-12 14:26:01 +0000214" --free-is-write=yes|no Whether to report races between freeing memory\n"
215" and subsequent accesses of that memory[no].\n"
bart505b35c2011-10-13 18:51:47 +0000216" --join-list-vol=<n> Number of threads to delay cleanup for [10].\n"
bart46b5fce2008-06-28 13:01:30 +0000217" --report-signal-unlocked=yes|no Whether to report calls to\n"
218" pthread_cond_signal() where the mutex associated\n"
219" with the signal via pthread_cond_wait() is not\n"
220" locked at the time the signal is sent [yes].\n"
bart130463a2008-04-01 17:03:33 +0000221" --segment-merging=yes|no Controls segment merging [yes].\n"
bartbd7e56e2008-03-31 18:14:12 +0000222" Segment merging is an algorithm to limit memory usage of the\n"
223" data race detection algorithm. Disabling segment merging may\n"
224" improve the accuracy of the so-called 'other segments' displayed\n"
225" in race reports but can also trigger an out of memory error.\n"
bart8f822af2009-06-08 18:20:42 +0000226" --segment-merging-interval=<n> Perform segment merging every time n new\n"
227" segments have been created. Default: %d.\n"
bart9d5b7962008-05-14 12:25:00 +0000228" --shared-threshold=<n> Print an error message if a reader lock\n"
bart8600c422010-10-25 18:18:54 +0000229" is held longer than the specified time (in\n"
230" milliseconds) [off]\n"
bart130463a2008-04-01 17:03:33 +0000231" --show-confl-seg=yes|no Show conflicting segments in race reports [yes].\n"
232" --show-stack-usage=yes|no Print stack usage at thread exit time [no].\n"
sewardj8eb8bab2015-07-21 14:44:28 +0000233" --ignore-thread-creation=yes|no Ignore activities during thread \n"
234" creation [%s].\n"
bartbd7e56e2008-03-31 18:14:12 +0000235"\n"
bartef1b9722008-07-04 15:34:23 +0000236" drd options for monitoring process behavior:\n"
bart8670edc2013-10-25 14:26:14 +0000237" --ptrace-addr=<address>[+<length>] Trace all load and store activity for\n"
238" the specified address range and keep doing that\n"
239" even after the memory at that address has been\n"
240" freed and reallocated [off].\n"
bart8c3de752011-12-12 15:49:00 +0000241" --trace-addr=<address> Trace all load and store activity for the\n"
bart130463a2008-04-01 17:03:33 +0000242" specified address [off].\n"
bart8670edc2013-10-25 14:26:14 +0000243" --trace-alloc=yes|no Trace all memory allocations and deallocations\n"
244" [no].\n"
bart130463a2008-04-01 17:03:33 +0000245" --trace-barrier=yes|no Trace all barrier activity [no].\n"
246" --trace-cond=yes|no Trace all condition variable activity [no].\n"
247" --trace-fork-join=yes|no Trace all thread fork/join activity [no].\n"
bart505b35c2011-10-13 18:51:47 +0000248" --trace-hb=yes|no Trace ANNOTATE_HAPPENS_BEFORE() etc. [no].\n"
bart130463a2008-04-01 17:03:33 +0000249" --trace-mutex=yes|no Trace all mutex activity [no].\n"
250" --trace-rwlock=yes|no Trace all reader-writer lock activity[no].\n"
bart8f822af2009-06-08 18:20:42 +0000251" --trace-semaphore=yes|no Trace all semaphore activity [no].\n",
sewardj8eb8bab2015-07-21 14:44:28 +0000252DRD_(thread_get_segment_merge_interval)(),
253DRD_(ignore_thread_creation) ? "yes" : "no"
bartbedfd232009-03-26 19:07:15 +0000254);
sewardjaf44c822007-11-25 14:01:38 +0000255}
256
bart1335ecc2009-02-14 16:10:53 +0000257static void DRD_(print_debug_usage)(void)
bart31b983d2010-02-21 14:52:59 +0000258{
bartbedfd232009-03-26 19:07:15 +0000259 VG_(printf)(
bart130463a2008-04-01 17:03:33 +0000260" --drd-stats=yes|no Print statistics about DRD activity [no].\n"
261" --trace-clientobj=yes|no Trace all client object activity [no].\n"
262" --trace-csw=yes|no Trace all scheduler context switches [no].\n"
barte73b0aa2008-06-28 07:19:56 +0000263" --trace-conflict-set=yes|no Trace all conflict set updates [no].\n"
bart8f822af2009-06-08 18:20:42 +0000264" --trace-conflict-set-bm=yes|no Trace all conflict set bitmap\n"
265" updates [no]. Note: enabling this option\n"
266" will generate a lot of output !\n"
bartc0cd28f2013-08-24 17:51:18 +0000267" --trace-sectsuppr=yes|no Trace which the dynamic library sections on\n"
268" which data race detection is suppressed.\n"
bart987781d2008-06-27 15:00:07 +0000269" --trace-segment=yes|no Trace segment actions [no].\n"
270" --trace-suppr=yes|no Trace all address suppression actions [no].\n"
barte4554e12014-08-08 16:17:58 +0000271" --verify-conflict-set=yes|no Verify conflict set consistency [no].\n"
bartbedfd232009-03-26 19:07:15 +0000272);
sewardjaf44c822007-11-25 14:01:38 +0000273}
274
275
276//
277// Implements the thread-related core callbacks.
278//
279
sewardjaf44c822007-11-25 14:01:38 +0000280static void drd_pre_mem_read(const CorePart part,
281 const ThreadId tid,
floriane543f302012-10-21 19:43:43 +0000282 const HChar* const s,
sewardjaf44c822007-11-25 14:01:38 +0000283 const Addr a,
284 const SizeT size)
285{
bart0895b092014-03-10 19:40:45 +0000286 DRD_(thread_set_vg_running_tid)(VG_(get_running_tid)());
bartbedfd232009-03-26 19:07:15 +0000287 if (size > 0)
288 {
289 DRD_(trace_load)(a, size);
290 }
sewardjaf44c822007-11-25 14:01:38 +0000291}
292
bart5e85d262008-03-01 10:49:37 +0000293static void drd_pre_mem_read_asciiz(const CorePart part,
294 const ThreadId tid,
floriane543f302012-10-21 19:43:43 +0000295 const HChar* const s,
bart5e85d262008-03-01 10:49:37 +0000296 const Addr a)
297{
florian19f91bb2012-11-10 22:29:54 +0000298 const HChar* p = (void*)a;
bartbedfd232009-03-26 19:07:15 +0000299 SizeT size = 0;
bart5e85d262008-03-01 10:49:37 +0000300
sewardj234e5582011-02-09 12:47:23 +0000301 // Don't segfault if the string starts in an obviously stupid
302 // place. Actually we should check the whole string, not just
303 // the start address, but that's too much trouble. At least
304 // checking the first byte is better than nothing. See #255009.
305 if (!VG_(am_is_valid_for_client) (a, 1, VKI_PROT_READ))
306 return;
307
bartbedfd232009-03-26 19:07:15 +0000308 /* Note: the expression '*p' reads client memory and may crash if the */
309 /* client provided an invalid pointer ! */
310 while (*p)
311 {
312 p++;
313 size++;
314 }
bartbedfd232009-03-26 19:07:15 +0000315 if (size > 0)
316 {
317 DRD_(trace_load)(a, size);
318 }
bart5e85d262008-03-01 10:49:37 +0000319}
320
sewardjaf44c822007-11-25 14:01:38 +0000321static void drd_post_mem_write(const CorePart part,
322 const ThreadId tid,
323 const Addr a,
324 const SizeT size)
325{
bartbedfd232009-03-26 19:07:15 +0000326 DRD_(thread_set_vg_running_tid)(VG_(get_running_tid)());
327 if (size > 0)
328 {
329 DRD_(trace_store)(a, size);
330 }
sewardjaf44c822007-11-25 14:01:38 +0000331}
332
bart08865622008-06-06 14:31:36 +0000333static __inline__
bartf9427fd2010-08-29 09:19:07 +0000334void drd_start_using_mem(const Addr a1, const SizeT len,
335 const Bool is_stack_mem)
sewardjaf44c822007-11-25 14:01:38 +0000336{
bart639d0ad2011-03-12 14:26:01 +0000337 const Addr a2 = a1 + len;
338
339 tl_assert(a1 <= a2);
bart5e85d262008-03-01 10:49:37 +0000340
bartf9427fd2010-08-29 09:19:07 +0000341 if (!is_stack_mem && s_trace_alloc)
florianea71ffb2015-08-05 14:38:57 +0000342 DRD_(trace_msg)("Started using memory range 0x%lx + %lu%s",
bartb92ff0f2011-10-08 08:29:29 +0000343 a1, len, DRD_(running_thread_inside_pthread_create)()
344 ? " (inside pthread_create())" : "");
bartf9427fd2010-08-29 09:19:07 +0000345
bart7d5f5232011-03-13 09:08:10 +0000346 if (!is_stack_mem && DRD_(g_free_is_write))
bart639d0ad2011-03-12 14:26:01 +0000347 DRD_(thread_stop_using_mem)(a1, a2);
348
bartbedfd232009-03-26 19:07:15 +0000349 if (UNLIKELY(DRD_(any_address_is_traced)()))
350 {
bart42f32632011-12-13 11:12:05 +0000351 DRD_(trace_mem_access)(a1, len, eStart, 0, 0);
bartbedfd232009-03-26 19:07:15 +0000352 }
bart31b983d2010-02-21 14:52:59 +0000353
bart27656f82011-12-17 15:18:20 +0000354 if (UNLIKELY(DRD_(running_thread_inside_pthread_create)()))
bartdd75cdf2009-07-24 08:20:10 +0000355 {
bart639d0ad2011-03-12 14:26:01 +0000356 DRD_(start_suppression)(a1, a2, "pthread_create()");
bartdd75cdf2009-07-24 08:20:10 +0000357 }
sewardjaf44c822007-11-25 14:01:38 +0000358}
359
sewardj7cf4e6b2008-05-01 20:24:26 +0000360static void drd_start_using_mem_w_ecu(const Addr a1,
361 const SizeT len,
362 UInt ec_uniq)
363{
bartf9427fd2010-08-29 09:19:07 +0000364 drd_start_using_mem(a1, len, False);
sewardj7cf4e6b2008-05-01 20:24:26 +0000365}
366
367static void drd_start_using_mem_w_tid(const Addr a1,
368 const SizeT len,
369 ThreadId tid)
370{
bartf9427fd2010-08-29 09:19:07 +0000371 drd_start_using_mem(a1, len, False);
sewardj7cf4e6b2008-05-01 20:24:26 +0000372}
373
bart0ffa4832008-04-05 12:57:01 +0000374static __inline__
375void drd_stop_using_mem(const Addr a1, const SizeT len,
376 const Bool is_stack_mem)
sewardjaf44c822007-11-25 14:01:38 +0000377{
bartbedfd232009-03-26 19:07:15 +0000378 const Addr a2 = a1 + len;
bart5e85d262008-03-01 10:49:37 +0000379
barta3003982010-09-08 16:29:17 +0000380 tl_assert(a1 <= a2);
bart5e85d262008-03-01 10:49:37 +0000381
bartbedfd232009-03-26 19:07:15 +0000382 if (UNLIKELY(DRD_(any_address_is_traced)()))
bart42f32632011-12-13 11:12:05 +0000383 DRD_(trace_mem_access)(a1, len, eEnd, 0, 0);
bartf9427fd2010-08-29 09:19:07 +0000384
385 if (!is_stack_mem && s_trace_alloc)
florianea71ffb2015-08-05 14:38:57 +0000386 DRD_(trace_msg)("Stopped using memory range 0x%lx + %lu",
bartb92ff0f2011-10-08 08:29:29 +0000387 a1, len);
bartf9427fd2010-08-29 09:19:07 +0000388
bart07595032010-08-29 09:51:06 +0000389 if (!is_stack_mem || DRD_(get_check_stack_accesses)())
bartbedfd232009-03-26 19:07:15 +0000390 {
bart7d5f5232011-03-13 09:08:10 +0000391 if (is_stack_mem || !DRD_(g_free_is_write))
bart639d0ad2011-03-12 14:26:01 +0000392 DRD_(thread_stop_using_mem)(a1, a2);
bart7d5f5232011-03-13 09:08:10 +0000393 else if (DRD_(g_free_is_write))
bart639d0ad2011-03-12 14:26:01 +0000394 DRD_(trace_store)(a1, len);
bartbedfd232009-03-26 19:07:15 +0000395 DRD_(clientobj_stop_using_mem)(a1, a2);
396 DRD_(suppression_stop_using_mem)(a1, a2);
397 }
bart0ffa4832008-04-05 12:57:01 +0000398}
399
400static __inline__
401void drd_stop_using_nonstack_mem(const Addr a1, const SizeT len)
402{
bartbedfd232009-03-26 19:07:15 +0000403 drd_stop_using_mem(a1, len, False);
sewardjaf44c822007-11-25 14:01:38 +0000404}
405
bart1335ecc2009-02-14 16:10:53 +0000406/**
bartfdaa0182009-03-10 09:25:32 +0000407 * Discard all information DRD has about memory accesses and client objects
408 * in the specified address range.
409 */
410void DRD_(clean_memory)(const Addr a1, const SizeT len)
411{
bartbedfd232009-03-26 19:07:15 +0000412 const Bool is_stack_memory = DRD_(thread_address_on_any_stack)(a1);
413 drd_stop_using_mem(a1, len, is_stack_memory);
bartf9427fd2010-08-29 09:19:07 +0000414 drd_start_using_mem(a1, len, is_stack_memory);
bartfdaa0182009-03-10 09:25:32 +0000415}
416
417/**
bart68347832012-09-06 14:08:26 +0000418 * Suppress data race reports on all addresses contained in .plt, .got and
bart1335ecc2009-02-14 16:10:53 +0000419 * .got.plt sections inside the address range [ a, a + len [. The data in
420 * these sections is modified by _dl_relocate_object() every time a function
421 * in a shared library is called for the first time. Since the first call
422 * to a function in a shared library can happen from a multithreaded context,
423 * such calls can cause conflicting accesses. See also Ulrich Drepper's
424 * paper "How to Write Shared Libraries" for more information about relocation
425 * (http://people.redhat.com/drepper/dsohowto.pdf).
bart68347832012-09-06 14:08:26 +0000426 * Note: the contents of the .got section is only modified by the MIPS resolver.
bartcb2d0072008-05-31 07:55:51 +0000427 */
bart1335ecc2009-02-14 16:10:53 +0000428static void DRD_(suppress_relocation_conflicts)(const Addr a, const SizeT len)
bartcb2d0072008-05-31 07:55:51 +0000429{
bartbedfd232009-03-26 19:07:15 +0000430 const DebugInfo* di;
bartcb2d0072008-05-31 07:55:51 +0000431
barta9cc2dd2012-01-15 19:17:37 +0000432 if (trace_sectsuppr)
florianea71ffb2015-08-05 14:38:57 +0000433 VG_(dmsg)("Evaluating range @ 0x%lx size %lu\n", a, len);
bartcb2d0072008-05-31 07:55:51 +0000434
barta9cc2dd2012-01-15 19:17:37 +0000435 for (di = VG_(next_DebugInfo)(0); di; di = VG_(next_DebugInfo)(di)) {
bartbedfd232009-03-26 19:07:15 +0000436 Addr avma;
437 SizeT size;
bartcb2d0072008-05-31 07:55:51 +0000438
barta9cc2dd2012-01-15 19:17:37 +0000439 if (trace_sectsuppr)
440 VG_(dmsg)("Examining %s / %s\n", VG_(DebugInfo_get_filename)(di),
441 VG_(DebugInfo_get_soname)(di));
442
bart90c8d7e2013-08-24 17:53:00 +0000443 /*
444 * Suppress the race report on the libpthread global variable
445 * __pthread_multiple_threads. See also
446 * http://bugs.kde.org/show_bug.cgi?id=323905.
447 */
448 avma = VG_(DebugInfo_get_bss_avma)(di);
449 size = VG_(DebugInfo_get_bss_size)(di);
450 tl_assert((avma && size) || (avma == 0 && size == 0));
451 if (size > 0 &&
452 VG_(strcmp)(VG_(DebugInfo_get_soname)(di), "libpthread.so.0") == 0) {
453 if (trace_sectsuppr)
florianea71ffb2015-08-05 14:38:57 +0000454 VG_(dmsg)("Suppressing .bss @ 0x%lx size %lu\n", avma, size);
floriane08950b2014-11-13 21:41:28 +0000455 tl_assert(VG_(DebugInfo_sect_kind)(NULL, avma) == Vg_SectBSS);
bart90c8d7e2013-08-24 17:53:00 +0000456 DRD_(start_suppression)(avma, avma + size, ".bss");
457 }
458
sewardje3f1e592009-07-31 09:41:29 +0000459 avma = VG_(DebugInfo_get_plt_avma)(di);
460 size = VG_(DebugInfo_get_plt_size)(di);
bartbedfd232009-03-26 19:07:15 +0000461 tl_assert((avma && size) || (avma == 0 && size == 0));
barta9cc2dd2012-01-15 19:17:37 +0000462 if (size > 0) {
463 if (trace_sectsuppr)
florianea71ffb2015-08-05 14:38:57 +0000464 VG_(dmsg)("Suppressing .plt @ 0x%lx size %lu\n", avma, size);
floriane08950b2014-11-13 21:41:28 +0000465 tl_assert(VG_(DebugInfo_sect_kind)(NULL, avma) == Vg_SectPLT);
bartbedfd232009-03-26 19:07:15 +0000466 DRD_(start_suppression)(avma, avma + size, ".plt");
467 }
bartcb2d0072008-05-31 07:55:51 +0000468
sewardje3f1e592009-07-31 09:41:29 +0000469 avma = VG_(DebugInfo_get_gotplt_avma)(di);
470 size = VG_(DebugInfo_get_gotplt_size)(di);
bartbedfd232009-03-26 19:07:15 +0000471 tl_assert((avma && size) || (avma == 0 && size == 0));
barta9cc2dd2012-01-15 19:17:37 +0000472 if (size > 0) {
473 if (trace_sectsuppr)
florianea71ffb2015-08-05 14:38:57 +0000474 VG_(dmsg)("Suppressing .got.plt @ 0x%lx size %lu\n", avma, size);
floriane08950b2014-11-13 21:41:28 +0000475 tl_assert(VG_(DebugInfo_sect_kind)(NULL, avma) == Vg_SectGOTPLT);
bartbedfd232009-03-26 19:07:15 +0000476 DRD_(start_suppression)(avma, avma + size, ".gotplt");
477 }
bart68347832012-09-06 14:08:26 +0000478
479 avma = VG_(DebugInfo_get_got_avma)(di);
480 size = VG_(DebugInfo_get_got_size)(di);
481 tl_assert((avma && size) || (avma == 0 && size == 0));
482 if (size > 0) {
483 if (trace_sectsuppr)
florianea71ffb2015-08-05 14:38:57 +0000484 VG_(dmsg)("Suppressing .got @ 0x%lx size %lu\n", avma, size);
floriane08950b2014-11-13 21:41:28 +0000485 tl_assert(VG_(DebugInfo_sect_kind)(NULL, avma) == Vg_SectGOT);
bart68347832012-09-06 14:08:26 +0000486 DRD_(start_suppression)(avma, avma + size, ".got");
487 }
bartbedfd232009-03-26 19:07:15 +0000488 }
bartcb2d0072008-05-31 07:55:51 +0000489}
490
bart5e85d262008-03-01 10:49:37 +0000491static
492void drd_start_using_mem_w_perms(const Addr a, const SizeT len,
sewardj9c606bd2008-09-18 18:12:50 +0000493 const Bool rr, const Bool ww, const Bool xx,
494 ULong di_handle)
bart5e85d262008-03-01 10:49:37 +0000495{
bartbedfd232009-03-26 19:07:15 +0000496 DRD_(thread_set_vg_running_tid)(VG_(get_running_tid)());
bartd5765912008-03-16 08:40:55 +0000497
bartf9427fd2010-08-29 09:19:07 +0000498 drd_start_using_mem(a, len, False);
bartcb2d0072008-05-31 07:55:51 +0000499
bartbedfd232009-03-26 19:07:15 +0000500 DRD_(suppress_relocation_conflicts)(a, len);
bart5e85d262008-03-01 10:49:37 +0000501}
502
bartad193e72012-01-15 19:02:20 +0000503/**
504 * Called by the core when the stack of a thread grows, to indicate that
505 * the addresses in range [ a, a + len [ may now be used by the client.
506 * Assumption: stacks grow downward.
507 */
bart08865622008-06-06 14:31:36 +0000508static __inline__
bart993d32f2012-01-15 19:08:13 +0000509void drd_start_using_mem_stack2(const DrdThreadId tid, const Addr a,
510 const SizeT len)
511{
512 DRD_(thread_set_stack_min)(tid, a - VG_STACK_REDZONE_SZB);
513 drd_start_using_mem(a - VG_STACK_REDZONE_SZB, len + VG_STACK_REDZONE_SZB,
514 True);
515}
516
517static __inline__
bart08865622008-06-06 14:31:36 +0000518void drd_start_using_mem_stack(const Addr a, const SizeT len)
sewardjaf44c822007-11-25 14:01:38 +0000519{
bart993d32f2012-01-15 19:08:13 +0000520 drd_start_using_mem_stack2(DRD_(thread_get_running_tid)(), a, len);
sewardjaf44c822007-11-25 14:01:38 +0000521}
522
bartad193e72012-01-15 19:02:20 +0000523/**
524 * Called by the core when the stack of a thread shrinks, to indicate that
525 * the addresses [ a, a + len [ are no longer accessible for the client.
526 * Assumption: stacks grow downward.
527 */
bart08865622008-06-06 14:31:36 +0000528static __inline__
bart993d32f2012-01-15 19:08:13 +0000529void drd_stop_using_mem_stack2(const DrdThreadId tid, const Addr a,
530 const SizeT len)
sewardjaf44c822007-11-25 14:01:38 +0000531{
bart993d32f2012-01-15 19:08:13 +0000532 DRD_(thread_set_stack_min)(tid, a + len - VG_STACK_REDZONE_SZB);
bartbedfd232009-03-26 19:07:15 +0000533 drd_stop_using_mem(a - VG_STACK_REDZONE_SZB, len + VG_STACK_REDZONE_SZB,
534 True);
sewardjaf44c822007-11-25 14:01:38 +0000535}
536
bart993d32f2012-01-15 19:08:13 +0000537static __inline__
538void drd_stop_using_mem_stack(const Addr a, const SizeT len)
539{
540 drd_stop_using_mem_stack2(DRD_(thread_get_running_tid)(), a, len);
541}
542
bart68a8afa2010-09-02 14:50:41 +0000543static
544Bool on_alt_stack(const Addr a)
545{
546 ThreadId vg_tid;
547 Addr alt_min;
548 SizeT alt_size;
549
550 vg_tid = VG_(get_running_tid)();
551 alt_min = VG_(thread_get_altstack_min)(vg_tid);
552 alt_size = VG_(thread_get_altstack_size)(vg_tid);
553 return (SizeT)(a - alt_min) < alt_size;
554}
555
556static
557void drd_start_using_mem_alt_stack(const Addr a, const SizeT len)
558{
559 if (!on_alt_stack(a))
560 drd_start_using_mem_stack(a, len);
561}
562
563static
564void drd_stop_using_mem_alt_stack(const Addr a, const SizeT len)
565{
566 if (!on_alt_stack(a))
567 drd_stop_using_mem_stack(a, len);
568}
569
570/**
571 * Callback function invoked by the Valgrind core before a signal is delivered.
572 */
573static
574void drd_pre_deliver_signal(const ThreadId vg_tid, const Int sigNo,
575 const Bool alt_stack)
576{
577 DrdThreadId drd_tid;
578
579 drd_tid = DRD_(VgThreadIdToDrdThreadId)(vg_tid);
580 DRD_(thread_set_on_alt_stack)(drd_tid, alt_stack);
581 if (alt_stack)
582 {
583 /*
584 * As soon a signal handler has been invoked on the alternate stack,
585 * switch to stack memory handling functions that can handle the
586 * alternate stack.
587 */
588 VG_(track_new_mem_stack)(drd_start_using_mem_alt_stack);
589 VG_(track_die_mem_stack)(drd_stop_using_mem_alt_stack);
590 }
591}
592
593/**
594 * Callback function invoked by the Valgrind core after a signal is delivered,
595 * at least if the signal handler did not longjmp().
596 */
597static
598void drd_post_deliver_signal(const ThreadId vg_tid, const Int sigNo)
599{
600 DrdThreadId drd_tid;
601
602 drd_tid = DRD_(VgThreadIdToDrdThreadId)(vg_tid);
603 DRD_(thread_set_on_alt_stack)(drd_tid, False);
604 if (DRD_(thread_get_threads_on_alt_stack)() == 0)
605 {
606 VG_(track_new_mem_stack)(drd_start_using_mem_stack);
607 VG_(track_die_mem_stack)(drd_stop_using_mem_stack);
608 }
609}
610
bartbedfd232009-03-26 19:07:15 +0000611/**
612 * Callback function called by the Valgrind core before a stack area is
613 * being used by a signal handler.
614 *
bart573d0742013-03-10 11:02:32 +0000615 * @param[in] a Start of address range - VG_STACK_REDZONE_SZB.
616 * @param[in] len Address range length + VG_STACK_REDZONE_SZB.
bartbedfd232009-03-26 19:07:15 +0000617 * @param[in] tid Valgrind thread ID for whom the signal frame is being
618 * constructed.
619 */
620static void drd_start_using_mem_stack_signal(const Addr a, const SizeT len,
621 ThreadId tid)
sewardjaf44c822007-11-25 14:01:38 +0000622{
bartbedfd232009-03-26 19:07:15 +0000623 DRD_(thread_set_vg_running_tid)(VG_(get_running_tid)());
bart573d0742013-03-10 11:02:32 +0000624 drd_start_using_mem(a + VG_STACK_REDZONE_SZB, len - VG_STACK_REDZONE_SZB,
625 True);
sewardjaf44c822007-11-25 14:01:38 +0000626}
627
bart5e85d262008-03-01 10:49:37 +0000628static void drd_stop_using_mem_stack_signal(Addr a, SizeT len)
sewardjaf44c822007-11-25 14:01:38 +0000629{
bart573d0742013-03-10 11:02:32 +0000630 drd_stop_using_mem(a + VG_STACK_REDZONE_SZB, len - VG_STACK_REDZONE_SZB,
631 True);
sewardjaf44c822007-11-25 14:01:38 +0000632}
633
634static
635void drd_pre_thread_create(const ThreadId creator, const ThreadId created)
636{
bartbedfd232009-03-26 19:07:15 +0000637 const DrdThreadId drd_creator = DRD_(VgThreadIdToDrdThreadId)(creator);
638 tl_assert(created != VG_INVALID_THREADID);
639 DRD_(thread_pre_create)(drd_creator, created);
640 if (DRD_(IsValidDrdThreadId)(drd_creator))
641 {
642 DRD_(thread_new_segment)(drd_creator);
643 }
644 if (DRD_(thread_get_trace_fork_join)())
645 {
florianea71ffb2015-08-05 14:38:57 +0000646 DRD_(trace_msg)("drd_pre_thread_create creator = %u, created = %u",
barte7086002011-10-11 19:08:39 +0000647 drd_creator, created);
bartbedfd232009-03-26 19:07:15 +0000648 }
sewardjaf44c822007-11-25 14:01:38 +0000649}
650
bartad193e72012-01-15 19:02:20 +0000651/**
652 * Called by Valgrind's core before any loads or stores are performed on
653 * the context of thread "created".
654 */
sewardjaf44c822007-11-25 14:01:38 +0000655static
bart0ffa4832008-04-05 12:57:01 +0000656void drd_post_thread_create(const ThreadId vg_created)
sewardjaf44c822007-11-25 14:01:38 +0000657{
bartbedfd232009-03-26 19:07:15 +0000658 DrdThreadId drd_created;
bart864920d2012-01-15 19:13:35 +0000659 Addr stack_max;
bart0ffa4832008-04-05 12:57:01 +0000660
bartbedfd232009-03-26 19:07:15 +0000661 tl_assert(vg_created != VG_INVALID_THREADID);
bart0ffa4832008-04-05 12:57:01 +0000662
bartbedfd232009-03-26 19:07:15 +0000663 drd_created = DRD_(thread_post_create)(vg_created);
bart864920d2012-01-15 19:13:35 +0000664
665 /* Set up red zone before the code in glibc's clone.S is run. */
666 stack_max = DRD_(thread_get_stack_max)(drd_created);
667 drd_start_using_mem_stack2(drd_created, stack_max, 0);
668
bartbedfd232009-03-26 19:07:15 +0000669 if (DRD_(thread_get_trace_fork_join)())
670 {
florianea71ffb2015-08-05 14:38:57 +0000671 DRD_(trace_msg)("drd_post_thread_create created = %u", drd_created);
bartbedfd232009-03-26 19:07:15 +0000672 }
673 if (! DRD_(get_check_stack_accesses)())
674 {
675 DRD_(start_suppression)(DRD_(thread_get_stack_max)(drd_created)
676 - DRD_(thread_get_stack_size)(drd_created),
677 DRD_(thread_get_stack_max)(drd_created),
678 "stack");
679 }
sewardjaf44c822007-11-25 14:01:38 +0000680}
681
sewardjaf44c822007-11-25 14:01:38 +0000682/* Called after a thread has performed its last memory access. */
bartd43f8d32008-03-16 17:29:20 +0000683static void drd_thread_finished(ThreadId vg_tid)
sewardjaf44c822007-11-25 14:01:38 +0000684{
bartbedfd232009-03-26 19:07:15 +0000685 DrdThreadId drd_tid;
sewardj85642922008-01-14 11:54:56 +0000686
bart9bb46c42012-02-02 10:14:30 +0000687 /*
bart37e1dd02012-02-02 10:58:01 +0000688 * Ignore if invoked because thread creation failed. See e.g.
bart9bb46c42012-02-02 10:14:30 +0000689 * coregrind/m_syswrap/syswrap-amd64-linux.c
690 */
bart37e1dd02012-02-02 10:58:01 +0000691 if (VG_(get_running_tid)() != vg_tid)
692 return;
sewardj85642922008-01-14 11:54:56 +0000693
bartbedfd232009-03-26 19:07:15 +0000694 drd_tid = DRD_(VgThreadIdToDrdThreadId)(vg_tid);
bart37e1dd02012-02-02 10:58:01 +0000695 tl_assert(drd_tid != DRD_INVALID_THREADID);
bartbedfd232009-03-26 19:07:15 +0000696 if (DRD_(thread_get_trace_fork_join)())
697 {
florianea71ffb2015-08-05 14:38:57 +0000698 DRD_(trace_msg)("drd_thread_finished tid = %u%s", drd_tid,
barte7086002011-10-11 19:08:39 +0000699 DRD_(thread_get_joinable)(drd_tid)
700 ? "" : " (which is a detached thread)");
bartbedfd232009-03-26 19:07:15 +0000701 }
barte7086002011-10-11 19:08:39 +0000702 if (s_show_stack_usage && !VG_(clo_xml)) {
bartbedfd232009-03-26 19:07:15 +0000703 const SizeT stack_size = DRD_(thread_get_stack_size)(drd_tid);
704 const SizeT used_stack
705 = (DRD_(thread_get_stack_max)(drd_tid)
706 - DRD_(thread_get_stack_min_min)(drd_tid));
707 VG_(message)(Vg_UserMsg,
florianea71ffb2015-08-05 14:38:57 +0000708 "thread %u%s finished and used %lu bytes out of %lu"
709 " on its stack. Margin: %lu bytes.\n",
bartbedfd232009-03-26 19:07:15 +0000710 drd_tid,
711 DRD_(thread_get_joinable)(drd_tid)
barte7086002011-10-11 19:08:39 +0000712 ? "" : " (which is a detached thread)",
713 used_stack, stack_size, stack_size - used_stack);
sewardjaf44c822007-11-25 14:01:38 +0000714
bartbedfd232009-03-26 19:07:15 +0000715 }
716 drd_stop_using_mem(DRD_(thread_get_stack_min)(drd_tid),
717 DRD_(thread_get_stack_max)(drd_tid)
718 - DRD_(thread_get_stack_min)(drd_tid),
719 True);
bartd45d9952009-05-31 18:53:54 +0000720 DRD_(thread_set_record_loads)(drd_tid, False);
721 DRD_(thread_set_record_stores)(drd_tid, False);
bartbedfd232009-03-26 19:07:15 +0000722 DRD_(thread_finished)(drd_tid);
sewardjaf44c822007-11-25 14:01:38 +0000723}
724
bart5c7e6b62011-02-03 17:47:50 +0000725/*
726 * Called immediately after fork for the child process only. 'tid' is the
727 * only surviving thread in the child process. Cleans up thread state.
728 * See also http://pubs.opengroup.org/onlinepubs/9699919799/functions/pthread_atfork.html for a detailed discussion of using fork() in combination with mutexes.
729 */
730static
731void drd__atfork_child(ThreadId tid)
732{
733 DRD_(drd_thread_atfork_child)(tid);
734}
735
736
sewardjaf44c822007-11-25 14:01:38 +0000737//
738// Implementation of the tool interface.
739//
740
bart1335ecc2009-02-14 16:10:53 +0000741static void DRD_(post_clo_init)(void)
sewardjdcbb8d32007-11-26 21:34:30 +0000742{
sewardj8eb8bab2015-07-21 14:44:28 +0000743#if defined(VGO_linux) || defined(VGO_darwin) || defined(VGO_solaris)
bartc6ef4af2009-07-23 10:10:30 +0000744 /* fine */
bartc6ef4af2009-07-23 10:10:30 +0000745#else
746 VG_(printf)("\nWARNING: DRD has not yet been tested on this operating system.\n\n");
sewardjdcbb8d32007-11-26 21:34:30 +0000747# endif
bart95761b52008-03-29 08:34:03 +0000748
bart75c1cba2010-08-29 07:20:30 +0000749 if (s_var_info)
bartbedfd232009-03-26 19:07:15 +0000750 {
751 VG_(needs_var_info)();
752 }
sewardjdcbb8d32007-11-26 21:34:30 +0000753}
sewardjaf44c822007-11-25 14:01:38 +0000754
sewardjaf44c822007-11-25 14:01:38 +0000755static void drd_start_client_code(const ThreadId tid, const ULong bbs_done)
756{
bartbedfd232009-03-26 19:07:15 +0000757 tl_assert(tid == VG_(get_running_tid)());
758 DRD_(thread_set_vg_running_tid)(tid);
sewardjaf44c822007-11-25 14:01:38 +0000759}
760
bart1335ecc2009-02-14 16:10:53 +0000761static void DRD_(fini)(Int exitcode)
sewardjaf44c822007-11-25 14:01:38 +0000762{
bartbedfd232009-03-26 19:07:15 +0000763 // thread_print_all();
sewardj2d9e8742009-08-07 15:46:56 +0000764 if (VG_(clo_verbosity) == 1 && !VG_(clo_xml)) {
barte7086002011-10-11 19:08:39 +0000765 VG_(message)(Vg_UserMsg, "For counts of detected and suppressed errors, "
sewardj2d9e8742009-08-07 15:46:56 +0000766 "rerun with: -v\n");
767 }
768
barte7086002011-10-11 19:08:39 +0000769 if ((VG_(clo_stats) || s_print_stats) && !VG_(clo_xml))
bartbedfd232009-03-26 19:07:15 +0000770 {
barte5214662009-06-21 11:51:23 +0000771 ULong pu = DRD_(thread_get_update_conflict_set_count)();
772 ULong pu_seg_cr = DRD_(thread_get_update_conflict_set_new_sg_count)();
773 ULong pu_mtx_cv = DRD_(thread_get_update_conflict_set_sync_count)();
774 ULong pu_join = DRD_(thread_get_update_conflict_set_join_count)();
775
bartbedfd232009-03-26 19:07:15 +0000776 VG_(message)(Vg_UserMsg,
florianea71ffb2015-08-05 14:38:57 +0000777 " thread: %llu context switches.\n",
bart54803fe2009-06-21 09:26:27 +0000778 DRD_(thread_get_context_switch_count)());
bartbedfd232009-03-26 19:07:15 +0000779 VG_(message)(Vg_UserMsg,
florianea71ffb2015-08-05 14:38:57 +0000780 "confl set: %llu full updates and %llu partial updates;\n",
barte7086002011-10-11 19:08:39 +0000781 DRD_(thread_get_compute_conflict_set_count)(),
782 pu);
bartbedfd232009-03-26 19:07:15 +0000783 VG_(message)(Vg_UserMsg,
florianea71ffb2015-08-05 14:38:57 +0000784 " %llu partial updates during segment creation,\n",
barte7086002011-10-11 19:08:39 +0000785 pu_seg_cr);
barte5214662009-06-21 11:51:23 +0000786 VG_(message)(Vg_UserMsg,
florianea71ffb2015-08-05 14:38:57 +0000787 " %llu because of mutex/sema/cond.var. operations,\n",
barte7086002011-10-11 19:08:39 +0000788 pu_mtx_cv);
barte5214662009-06-21 11:51:23 +0000789 VG_(message)(Vg_UserMsg,
florianea71ffb2015-08-05 14:38:57 +0000790 " %llu because of barrier/rwlock operations and\n",
barte5214662009-06-21 11:51:23 +0000791 pu - pu_seg_cr - pu_mtx_cv - pu_join);
792 VG_(message)(Vg_UserMsg,
florianea71ffb2015-08-05 14:38:57 +0000793 " %llu partial updates because of thread join"
barte7086002011-10-11 19:08:39 +0000794 " operations.\n",
795 pu_join);
barte5214662009-06-21 11:51:23 +0000796 VG_(message)(Vg_UserMsg,
florianea71ffb2015-08-05 14:38:57 +0000797 " segments: created %llu segments, max %llu alive,\n",
bart9dedafe2009-06-21 18:09:02 +0000798 DRD_(sg_get_segments_created_count)(),
799 DRD_(sg_get_max_segments_alive_count)());
bartbedfd232009-03-26 19:07:15 +0000800 VG_(message)(Vg_UserMsg,
florianea71ffb2015-08-05 14:38:57 +0000801 " %llu discard points and %llu merges.\n",
bart9dedafe2009-06-21 18:09:02 +0000802 DRD_(thread_get_discard_ordered_segments_count)(),
bart1a3b0b32009-05-03 17:07:34 +0000803 DRD_(sg_get_segment_merge_count)());
804 VG_(message)(Vg_UserMsg,
florianea71ffb2015-08-05 14:38:57 +0000805 "segmnt cr: %llu mutex, %llu rwlock, %llu semaphore and"
806 " %llu barrier.\n",
bartbedfd232009-03-26 19:07:15 +0000807 DRD_(get_mutex_segment_creation_count)(),
808 DRD_(get_rwlock_segment_creation_count)(),
809 DRD_(get_semaphore_segment_creation_count)(),
810 DRD_(get_barrier_segment_creation_count)());
811 VG_(message)(Vg_UserMsg,
florianea71ffb2015-08-05 14:38:57 +0000812 " bitmaps: %llu level one"
813 " and %llu level two bitmaps were allocated.\n",
bartbedfd232009-03-26 19:07:15 +0000814 DRD_(bm_get_bitmap_creation_count)(),
bartbedfd232009-03-26 19:07:15 +0000815 DRD_(bm_get_bitmap2_creation_count)());
816 VG_(message)(Vg_UserMsg,
florianea71ffb2015-08-05 14:38:57 +0000817 " mutex: %llu non-recursive lock/unlock events.\n",
bartbedfd232009-03-26 19:07:15 +0000818 DRD_(get_mutex_lock_count)());
819 DRD_(print_malloc_stats)();
820 }
barte44bccc2012-01-18 09:46:57 +0000821
822 DRD_(bm_module_cleanup)();
sewardjaf44c822007-11-25 14:01:38 +0000823}
824
sewardjaf44c822007-11-25 14:01:38 +0000825static
826void drd_pre_clo_init(void)
827{
njnf76d27a2009-05-28 01:53:07 +0000828 // Basic tool stuff.
bartbedfd232009-03-26 19:07:15 +0000829 VG_(details_name) ("drd");
830 VG_(details_version) (NULL);
831 VG_(details_description) ("a thread error detector");
Elliott Hughesed398002017-06-21 14:41:24 -0700832 VG_(details_copyright_author)("Copyright (C) 2006-2017, and GNU GPL'd,"
bartbedfd232009-03-26 19:07:15 +0000833 " by Bart Van Assche.");
834 VG_(details_bug_reports_to) (VG_BUGS_TO);
sewardjaf44c822007-11-25 14:01:38 +0000835
bartbedfd232009-03-26 19:07:15 +0000836 VG_(basic_tool_funcs) (DRD_(post_clo_init),
837 DRD_(instrument),
838 DRD_(fini));
sewardjaf44c822007-11-25 14:01:38 +0000839
bartbedfd232009-03-26 19:07:15 +0000840 // Command line stuff.
841 VG_(needs_command_line_options)(DRD_(process_cmd_line_option),
842 DRD_(print_usage),
843 DRD_(print_debug_usage));
barte7086002011-10-11 19:08:39 +0000844 VG_(needs_xml_output) ();
sewardjaf44c822007-11-25 14:01:38 +0000845
bartbedfd232009-03-26 19:07:15 +0000846 // Error handling.
847 DRD_(register_error_handlers)();
sewardjaf44c822007-11-25 14:01:38 +0000848
bartbedfd232009-03-26 19:07:15 +0000849 // Core event tracking.
850 VG_(track_pre_mem_read) (drd_pre_mem_read);
851 VG_(track_pre_mem_read_asciiz) (drd_pre_mem_read_asciiz);
852 VG_(track_post_mem_write) (drd_post_mem_write);
853 VG_(track_new_mem_brk) (drd_start_using_mem_w_tid);
854 VG_(track_new_mem_mmap) (drd_start_using_mem_w_perms);
855 VG_(track_new_mem_stack) (drd_start_using_mem_stack);
856 VG_(track_new_mem_stack_signal) (drd_start_using_mem_stack_signal);
857 VG_(track_new_mem_startup) (drd_start_using_mem_w_perms);
858 VG_(track_die_mem_brk) (drd_stop_using_nonstack_mem);
859 VG_(track_die_mem_munmap) (drd_stop_using_nonstack_mem);
860 VG_(track_die_mem_stack) (drd_stop_using_mem_stack);
861 VG_(track_die_mem_stack_signal) (drd_stop_using_mem_stack_signal);
bart68a8afa2010-09-02 14:50:41 +0000862 VG_(track_pre_deliver_signal) (drd_pre_deliver_signal);
863 VG_(track_post_deliver_signal) (drd_post_deliver_signal);
bartbedfd232009-03-26 19:07:15 +0000864 VG_(track_start_client_code) (drd_start_client_code);
865 VG_(track_pre_thread_ll_create) (drd_pre_thread_create);
866 VG_(track_pre_thread_first_insn)(drd_post_thread_create);
867 VG_(track_pre_thread_ll_exit) (drd_thread_finished);
bart5c7e6b62011-02-03 17:47:50 +0000868 VG_(atfork) (NULL/*pre*/, NULL/*parent*/,
869 drd__atfork_child/*child*/);
sewardjaf44c822007-11-25 14:01:38 +0000870
bartbedfd232009-03-26 19:07:15 +0000871 // Other stuff.
872 DRD_(register_malloc_wrappers)(drd_start_using_mem_w_ecu,
873 drd_stop_using_nonstack_mem);
sewardjaf44c822007-11-25 14:01:38 +0000874
barte44bccc2012-01-18 09:46:57 +0000875 DRD_(bm_module_init)();
876
bartbedfd232009-03-26 19:07:15 +0000877 DRD_(clientreq_init)();
sewardjaf44c822007-11-25 14:01:38 +0000878
bartbedfd232009-03-26 19:07:15 +0000879 DRD_(suppression_init)();
bart4bb53d82008-02-28 19:06:34 +0000880
bartbedfd232009-03-26 19:07:15 +0000881 DRD_(clientobj_init)();
barte5e0efa2009-06-24 18:35:02 +0000882
barte278ab52012-01-24 18:28:55 +0000883 DRD_(thread_init)();
884
barte5e0efa2009-06-24 18:35:02 +0000885 {
florian19f91bb2012-11-10 22:29:54 +0000886 HChar* const smi = VG_(getenv)("DRD_SEGMENT_MERGING_INTERVAL");
barte5e0efa2009-06-24 18:35:02 +0000887 if (smi)
888 DRD_(thread_set_segment_merge_interval)(VG_(strtoll10)(smi, NULL));
889 }
bart9cdc0832014-08-09 12:58:17 +0000890
891 if (VG_(getenv)("DRD_VERIFY_CONFLICT_SET"))
892 DRD_(verify_conflict_set) = True;
893
sewardjaf44c822007-11-25 14:01:38 +0000894}
895
896
897VG_DETERMINE_INTERFACE_VERSION(drd_pre_clo_init)