blob: decd4365d9a79daf44c0f4513bf7bf9680746194 [file] [log] [blame]
barte7d58722008-02-28 19:08:04 +00001/*
bart86562bd2009-02-16 19:43:56 +00002 This file is part of drd, a thread error detector.
barte7d58722008-02-28 19:08:04 +00003
Elliott Hughesed398002017-06-21 14:41:24 -07004 Copyright (C) 2006-2017 Bart Van Assche <bvanassche@acm.org>.
barte7d58722008-02-28 19:08:04 +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
25#include "drd_clientobj.h"
bartb92ff0f2011-10-08 08:29:29 +000026#include "drd_error.h"
barte7d58722008-02-28 19:08:04 +000027#include "drd_suppression.h"
28#include "pub_tool_basics.h"
29#include "pub_tool_libcassert.h"
30#include "pub_tool_libcbase.h"
bart72b751c2008-03-01 13:44:24 +000031#include "pub_tool_libcprint.h" // VG_(message)()
barte7d58722008-02-28 19:08:04 +000032#include "pub_tool_mallocfree.h"
bart72b751c2008-03-01 13:44:24 +000033#include "pub_tool_options.h" // VG_(clo_backtrace_size)
barte7d58722008-02-28 19:08:04 +000034#include "pub_tool_oset.h"
bart72b751c2008-03-01 13:44:24 +000035#include "pub_tool_stacktrace.h"
36#include "pub_tool_threadstate.h" // VG_(get_running_tid)()
barte7d58722008-02-28 19:08:04 +000037
38
bart195e41f2009-02-15 11:34:57 +000039/* Local variables. */
barte7d58722008-02-28 19:08:04 +000040
bartd2c5eae2009-02-21 15:27:04 +000041static OSet* s_clientobj_set;
42static Bool s_trace_clientobj;
43
44
45/* Local functions. */
46
47static Bool clientobj_remove_obj(DrdClientobj* const p);
barte7d58722008-02-28 19:08:04 +000048
49
bart195e41f2009-02-15 11:34:57 +000050/* Function definitions. */
barte7d58722008-02-28 19:08:04 +000051
bart195e41f2009-02-15 11:34:57 +000052void DRD_(clientobj_set_trace)(const Bool trace)
bart72b751c2008-03-01 13:44:24 +000053{
bartbedfd232009-03-26 19:07:15 +000054 s_trace_clientobj = trace;
bart72b751c2008-03-01 13:44:24 +000055}
56
barte7d58722008-02-28 19:08:04 +000057/** Initialize the client object set. */
bart195e41f2009-02-15 11:34:57 +000058void DRD_(clientobj_init)(void)
barte7d58722008-02-28 19:08:04 +000059{
bartbedfd232009-03-26 19:07:15 +000060 tl_assert(s_clientobj_set == 0);
61 s_clientobj_set = VG_(OSetGen_Create)(0, 0, VG_(malloc),
62 "drd.clientobj.ci.1", VG_(free));
barte7d58722008-02-28 19:08:04 +000063}
64
bart195e41f2009-02-15 11:34:57 +000065/**
66 * Free the memory allocated for the client object set.
67 *
68 * @pre Client object set is empty.
barte7d58722008-02-28 19:08:04 +000069 */
bart195e41f2009-02-15 11:34:57 +000070void DRD_(clientobj_cleanup)(void)
barte7d58722008-02-28 19:08:04 +000071{
bartbedfd232009-03-26 19:07:15 +000072 tl_assert(s_clientobj_set);
73 tl_assert(VG_(OSetGen_Size)(s_clientobj_set) == 0);
74 VG_(OSetGen_Destroy)(s_clientobj_set);
75 s_clientobj_set = 0;
barte7d58722008-02-28 19:08:04 +000076}
77
bartd2c5eae2009-02-21 15:27:04 +000078/**
79 * Return the data associated with the client object at client address addr.
80 * Return 0 if there is no client object in the set with the specified start
81 * address.
bart391d9dc2008-07-03 10:57:30 +000082 */
bart195e41f2009-02-15 11:34:57 +000083DrdClientobj* DRD_(clientobj_get_any)(const Addr addr)
bart391d9dc2008-07-03 10:57:30 +000084{
bartbedfd232009-03-26 19:07:15 +000085 return VG_(OSetGen_Lookup)(s_clientobj_set, &addr);
bart391d9dc2008-07-03 10:57:30 +000086}
87
bart1344d6c2009-02-21 16:17:50 +000088/**
89 * Return the data associated with the client object at client address addr
90 * and that has object type t. Return 0 if there is no client object in the
91 * set with the specified start address.
barte7d58722008-02-28 19:08:04 +000092 */
bart195e41f2009-02-15 11:34:57 +000093DrdClientobj* DRD_(clientobj_get)(const Addr addr, const ObjType t)
barte7d58722008-02-28 19:08:04 +000094{
bartbedfd232009-03-26 19:07:15 +000095 DrdClientobj* p;
96 p = VG_(OSetGen_Lookup)(s_clientobj_set, &addr);
97 if (p && p->any.type == t)
98 return p;
99 return 0;
barte7d58722008-02-28 19:08:04 +0000100}
101
102/** Return true if and only if the address range of any client object overlaps
103 * with the specified address range.
104 */
bart195e41f2009-02-15 11:34:57 +0000105Bool DRD_(clientobj_present)(const Addr a1, const Addr a2)
barte7d58722008-02-28 19:08:04 +0000106{
bartbedfd232009-03-26 19:07:15 +0000107 DrdClientobj *p;
barte7d58722008-02-28 19:08:04 +0000108
barta3003982010-09-08 16:29:17 +0000109 tl_assert(a1 <= a2);
bartbedfd232009-03-26 19:07:15 +0000110 VG_(OSetGen_ResetIter)(s_clientobj_set);
111 for ( ; (p = VG_(OSetGen_Next)(s_clientobj_set)) != 0; )
112 {
113 if (a1 <= p->any.a1 && p->any.a1 < a2)
114 {
bart31b983d2010-02-21 14:52:59 +0000115 return True;
bartbedfd232009-03-26 19:07:15 +0000116 }
117 }
118 return False;
barte7d58722008-02-28 19:08:04 +0000119}
120
bartbedfd232009-03-26 19:07:15 +0000121/**
122 * Add state information for the client object at client address addr and
123 * of type t. Suppress data race reports on the address range [addr,addr+size[.
124 *
125 * @pre No other client object is present in the address range [addr,addr+size[.
barte7d58722008-02-28 19:08:04 +0000126 */
bart195e41f2009-02-15 11:34:57 +0000127DrdClientobj* DRD_(clientobj_add)(const Addr a1, const ObjType t)
barte7d58722008-02-28 19:08:04 +0000128{
bartbedfd232009-03-26 19:07:15 +0000129 DrdClientobj* p;
barte7d58722008-02-28 19:08:04 +0000130
bartbedfd232009-03-26 19:07:15 +0000131 tl_assert(! DRD_(clientobj_present)(a1, a1 + 1));
132 tl_assert(VG_(OSetGen_Lookup)(s_clientobj_set, &a1) == 0);
bartbcbd7482008-02-29 19:19:39 +0000133
bartbedfd232009-03-26 19:07:15 +0000134 if (s_trace_clientobj)
florianea71ffb2015-08-05 14:38:57 +0000135 DRD_(trace_msg)("Adding client object 0x%lx of type %d", a1, (Int)t);
bart72b751c2008-03-01 13:44:24 +0000136
bartbedfd232009-03-26 19:07:15 +0000137 p = VG_(OSetGen_AllocNode)(s_clientobj_set, sizeof(*p));
138 VG_(memset)(p, 0, sizeof(*p));
139 p->any.a1 = a1;
140 p->any.type = t;
141 p->any.first_observed_at = VG_(record_ExeContext)(VG_(get_running_tid)(), 0);
142 VG_(OSetGen_Insert)(s_clientobj_set, p);
143 tl_assert(VG_(OSetGen_Lookup)(s_clientobj_set, &a1) == p);
bartb878a732010-03-07 20:07:15 +0000144 if (t == ClientHbvar)
145 DRD_(mark_hbvar)(a1);
146 else
147 DRD_(start_suppression)(a1, a1 + 1, "clientobj");
bartbedfd232009-03-26 19:07:15 +0000148 return p;
barte7d58722008-02-28 19:08:04 +0000149}
150
bart1344d6c2009-02-21 16:17:50 +0000151/**
152 * Remove the information that was stored about the client object.
153 *
154 * @param[in] addr Address of the client object in the client address space.
155 * @param[in] t Type of the client object.
156 */
bart195e41f2009-02-15 11:34:57 +0000157Bool DRD_(clientobj_remove)(const Addr addr, const ObjType t)
barte7d58722008-02-28 19:08:04 +0000158{
bartbedfd232009-03-26 19:07:15 +0000159 DrdClientobj* p;
barte7d58722008-02-28 19:08:04 +0000160
bartbedfd232009-03-26 19:07:15 +0000161 p = VG_(OSetGen_Lookup)(s_clientobj_set, &addr);
162 tl_assert(p);
163 tl_assert(p->any.type == t);
164 return clientobj_remove_obj(p);
bartd2c5eae2009-02-21 15:27:04 +0000165}
166
bart1344d6c2009-02-21 16:17:50 +0000167/**
168 * Remove the information that was stored about the client object p.
169 *
170 * @note The order of operations below is important. The client object is
171 * removed from the client object set after the cleanup function has been
172 * called such that if the cleanup function can still use the function
173 * DRD_(clientobj_get_any)(). This happens e.g. in the function
174 * first_observed() in drd_error.c.
175 */
bartd2c5eae2009-02-21 15:27:04 +0000176static Bool clientobj_remove_obj(DrdClientobj* const p)
177{
bartbedfd232009-03-26 19:07:15 +0000178 tl_assert(p);
bartd2c5eae2009-02-21 15:27:04 +0000179
bartb92ff0f2011-10-08 08:29:29 +0000180 if (s_trace_clientobj) {
bartad994e82011-10-13 18:04:30 +0000181 DRD_(trace_msg)("Removing client object 0x%lx of type %d", p->any.a1,
florianea71ffb2015-08-05 14:38:57 +0000182 (Int)p->any.type);
bart9374ee32009-07-23 16:24:02 +0000183#if 0
184 VG_(get_and_pp_StackTrace)(VG_(get_running_tid)(),
185 VG_(clo_backtrace_size));
186#endif
bartbedfd232009-03-26 19:07:15 +0000187 }
bart72b751c2008-03-01 13:44:24 +0000188
bartbedfd232009-03-26 19:07:15 +0000189 tl_assert(p->any.cleanup);
190 (*p->any.cleanup)(p);
191 VG_(OSetGen_Remove)(s_clientobj_set, &p->any.a1);
192 VG_(OSetGen_FreeNode)(s_clientobj_set, p);
193 return True;
barte7d58722008-02-28 19:08:04 +0000194}
195
bart28be7aa2009-02-23 19:15:32 +0000196/**
197 * Clean up all client objects p for which their start address p->any.a1 fits
198 * inside the address range [ a1, a2 [.
199 *
200 * @note The implementation of this function relies on the fact that the
201 * data in s_clientobj_set is sorted on the start address of client objects.
202 */
bart195e41f2009-02-15 11:34:57 +0000203void DRD_(clientobj_stop_using_mem)(const Addr a1, const Addr a2)
barte7d58722008-02-28 19:08:04 +0000204{
bartbedfd232009-03-26 19:07:15 +0000205 Addr removed_at;
206 DrdClientobj* p;
bartb78312c2008-02-29 11:00:17 +0000207
bartbedfd232009-03-26 19:07:15 +0000208 tl_assert(s_clientobj_set);
bartfea64442008-03-30 16:55:40 +0000209
bartb878a732010-03-07 20:07:15 +0000210 if (! DRD_(range_contains_suppression_or_hbvar)(a1, a2))
bartbedfd232009-03-26 19:07:15 +0000211 return;
bartfea64442008-03-30 16:55:40 +0000212
bartbedfd232009-03-26 19:07:15 +0000213 VG_(OSetGen_ResetIterAt)(s_clientobj_set, &a1);
214 for ( ; (p = VG_(OSetGen_Next)(s_clientobj_set)) != 0 && p->any.a1 < a2; )
215 {
216 tl_assert(a1 <= p->any.a1);
217 removed_at = p->any.a1;
218 clientobj_remove_obj(p);
219 /*
220 * The above call removes an element from the oset and hence
221 * invalidates the iterator. Restore the iterator.
222 */
223 VG_(OSetGen_ResetIterAt)(s_clientobj_set, &removed_at);
224 }
barte7d58722008-02-28 19:08:04 +0000225}
226
bartd2c5eae2009-02-21 15:27:04 +0000227/**
228 * Delete the per-thread information stored in client objects for the
229 * specified thread.
230 */
231void DRD_(clientobj_delete_thread)(const DrdThreadId tid)
barte7d58722008-02-28 19:08:04 +0000232{
bartbedfd232009-03-26 19:07:15 +0000233 DrdClientobj *p;
barte7d58722008-02-28 19:08:04 +0000234
bartbedfd232009-03-26 19:07:15 +0000235 VG_(OSetGen_ResetIter)(s_clientobj_set);
236 for ( ; (p = VG_(OSetGen_Next)(s_clientobj_set)) != 0; )
237 {
238 if (p->any.delete_thread)
239 {
240 (*p->any.delete_thread)(p, tid);
241 }
242 }
barte7d58722008-02-28 19:08:04 +0000243}
244
florian19f91bb2012-11-10 22:29:54 +0000245const HChar* DRD_(clientobj_type_name)(const ObjType t)
bart391d9dc2008-07-03 10:57:30 +0000246{
bartbedfd232009-03-26 19:07:15 +0000247 switch (t)
248 {
249 case ClientMutex: return "mutex";
250 case ClientCondvar: return "cond";
bart62cc2322010-03-07 10:54:21 +0000251 case ClientHbvar: return "order annotation";
bartbedfd232009-03-26 19:07:15 +0000252 case ClientSemaphore: return "semaphore";
253 case ClientBarrier: return "barrier";
254 case ClientRwlock: return "rwlock";
255 }
256 return "(unknown)";
bart391d9dc2008-07-03 10:57:30 +0000257}