blob: d1f5f9641c2c061de2e6cac775a5966b8e6baf34 [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
bart86562bd2009-02-16 19:43:56 +00004 Copyright (C) 2006-2009 Bart Van Assche <bart.vanassche@gmail.com>.
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"
26#include "drd_suppression.h"
27#include "pub_tool_basics.h"
28#include "pub_tool_libcassert.h"
29#include "pub_tool_libcbase.h"
bart72b751c2008-03-01 13:44:24 +000030#include "pub_tool_libcprint.h" // VG_(message)()
barte7d58722008-02-28 19:08:04 +000031#include "pub_tool_mallocfree.h"
bart72b751c2008-03-01 13:44:24 +000032#include "pub_tool_options.h" // VG_(clo_backtrace_size)
barte7d58722008-02-28 19:08:04 +000033#include "pub_tool_oset.h"
bart72b751c2008-03-01 13:44:24 +000034#include "pub_tool_stacktrace.h"
35#include "pub_tool_threadstate.h" // VG_(get_running_tid)()
barte7d58722008-02-28 19:08:04 +000036
37
bart195e41f2009-02-15 11:34:57 +000038/* Local variables. */
barte7d58722008-02-28 19:08:04 +000039
bartd2c5eae2009-02-21 15:27:04 +000040static OSet* s_clientobj_set;
41static Bool s_trace_clientobj;
42
43
44/* Local functions. */
45
46static Bool clientobj_remove_obj(DrdClientobj* const p);
barte7d58722008-02-28 19:08:04 +000047
48
bart195e41f2009-02-15 11:34:57 +000049/* Function definitions. */
barte7d58722008-02-28 19:08:04 +000050
bart195e41f2009-02-15 11:34:57 +000051void DRD_(clientobj_set_trace)(const Bool trace)
bart72b751c2008-03-01 13:44:24 +000052{
bartd2c5eae2009-02-21 15:27:04 +000053 s_trace_clientobj = trace;
bart72b751c2008-03-01 13:44:24 +000054}
55
barte7d58722008-02-28 19:08:04 +000056/** Initialize the client object set. */
bart195e41f2009-02-15 11:34:57 +000057void DRD_(clientobj_init)(void)
barte7d58722008-02-28 19:08:04 +000058{
bartd2c5eae2009-02-21 15:27:04 +000059 tl_assert(s_clientobj_set == 0);
60 s_clientobj_set = VG_(OSetGen_Create)(0, 0, VG_(malloc),
61 "drd.clientobj.ci.1", VG_(free));
62 tl_assert(s_clientobj_set);
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{
bartd2c5eae2009-02-21 15:27:04 +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{
bartd2c5eae2009-02-21 15:27:04 +000085 return VG_(OSetGen_Lookup)(s_clientobj_set, &addr);
bart391d9dc2008-07-03 10:57:30 +000086}
87
barte7d58722008-02-28 19:08:04 +000088/** Return the data associated with the client object at client address addr
89 * and that has object type t. Return 0 if there is no client object in the
90 * set with the specified start address.
91 */
bart195e41f2009-02-15 11:34:57 +000092DrdClientobj* DRD_(clientobj_get)(const Addr addr, const ObjType t)
barte7d58722008-02-28 19:08:04 +000093{
94 DrdClientobj* p;
bartd2c5eae2009-02-21 15:27:04 +000095 p = VG_(OSetGen_Lookup)(s_clientobj_set, &addr);
barte7d58722008-02-28 19:08:04 +000096 if (p && p->any.type == t)
97 return p;
98 return 0;
99}
100
101/** Return true if and only if the address range of any client object overlaps
102 * with the specified address range.
103 */
bart195e41f2009-02-15 11:34:57 +0000104Bool DRD_(clientobj_present)(const Addr a1, const Addr a2)
barte7d58722008-02-28 19:08:04 +0000105{
106 DrdClientobj *p;
107
108 tl_assert(a1 < a2);
bartd2c5eae2009-02-21 15:27:04 +0000109 VG_(OSetGen_ResetIter)(s_clientobj_set);
110 for ( ; (p = VG_(OSetGen_Next)(s_clientobj_set)) != 0; )
barte7d58722008-02-28 19:08:04 +0000111 {
bart0268dfa2008-03-11 20:10:21 +0000112 if (a1 <= p->any.a1 && p->any.a1 < a2)
barte7d58722008-02-28 19:08:04 +0000113 {
114 return True;
115 }
116 }
117 return False;
118}
119
120/** Add state information for the client object at client address addr and
121 * of type t. Suppress data race reports on the address range [addr,addr+size[.
122 * @pre No other client object is present in the address range [addr,addr+size[.
123 */
bart195e41f2009-02-15 11:34:57 +0000124DrdClientobj* DRD_(clientobj_add)(const Addr a1, const ObjType t)
barte7d58722008-02-28 19:08:04 +0000125{
126 DrdClientobj* p;
127
bart195e41f2009-02-15 11:34:57 +0000128 tl_assert(! DRD_(clientobj_present)(a1, a1 + 1));
bartd2c5eae2009-02-21 15:27:04 +0000129 tl_assert(VG_(OSetGen_Lookup)(s_clientobj_set, &a1) == 0);
bartbcbd7482008-02-29 19:19:39 +0000130
bartd2c5eae2009-02-21 15:27:04 +0000131 if (s_trace_clientobj)
bart72b751c2008-03-01 13:44:24 +0000132 {
133 VG_(message)(Vg_UserMsg, "Adding client object 0x%lx of type %d", a1, t);
134 }
135
bartd2c5eae2009-02-21 15:27:04 +0000136 p = VG_(OSetGen_AllocNode)(s_clientobj_set, sizeof(*p));
barte7d58722008-02-28 19:08:04 +0000137 VG_(memset)(p, 0, sizeof(*p));
138 p->any.a1 = a1;
barte7d58722008-02-28 19:08:04 +0000139 p->any.type = t;
bart391d9dc2008-07-03 10:57:30 +0000140 p->any.first_observed_at = VG_(record_ExeContext)(VG_(get_running_tid)(), 0);
bartd2c5eae2009-02-21 15:27:04 +0000141 VG_(OSetGen_Insert)(s_clientobj_set, p);
142 tl_assert(VG_(OSetGen_Lookup)(s_clientobj_set, &a1) == p);
bart1335ecc2009-02-14 16:10:53 +0000143 DRD_(start_suppression)(a1, a1 + 1, "clientobj");
barte7d58722008-02-28 19:08:04 +0000144 return p;
145}
146
bart195e41f2009-02-15 11:34:57 +0000147Bool DRD_(clientobj_remove)(const Addr addr, const ObjType t)
barte7d58722008-02-28 19:08:04 +0000148{
149 DrdClientobj* p;
150
bartd2c5eae2009-02-21 15:27:04 +0000151 p = VG_(OSetGen_Lookup)(s_clientobj_set, &addr);
152 tl_assert(p);
153 tl_assert(p->any.type == t);
154 return clientobj_remove_obj(p);
155}
156
157static Bool clientobj_remove_obj(DrdClientobj* const p)
158{
159 DrdClientobj* q;
160
161 if (s_trace_clientobj)
bart72b751c2008-03-01 13:44:24 +0000162 {
163 VG_(message)(Vg_UserMsg, "Removing client object 0x%lx of type %d",
bartd2c5eae2009-02-21 15:27:04 +0000164 p->any.a1, p->any.type);
bart72b751c2008-03-01 13:44:24 +0000165#if 0
166 VG_(get_and_pp_StackTrace)(VG_(get_running_tid)(),
167 VG_(clo_backtrace_size));
168#endif
169 }
170
bartd2c5eae2009-02-21 15:27:04 +0000171 tl_assert(p);
172 q = VG_(OSetGen_Remove)(s_clientobj_set, &p->any.a1);
173 tl_assert(p == q);
174
175 tl_assert(VG_(OSetGen_Lookup)(s_clientobj_set, &p->any.a1) == 0);
176 tl_assert(p->any.cleanup);
177 (*p->any.cleanup)(p);
178 VG_(OSetGen_FreeNode)(s_clientobj_set, p);
179 return True;
barte7d58722008-02-28 19:08:04 +0000180}
181
bart195e41f2009-02-15 11:34:57 +0000182void DRD_(clientobj_stop_using_mem)(const Addr a1, const Addr a2)
barte7d58722008-02-28 19:08:04 +0000183{
bartb78312c2008-02-29 11:00:17 +0000184 Addr removed_at;
barte7d58722008-02-28 19:08:04 +0000185 DrdClientobj* p;
bartb78312c2008-02-29 11:00:17 +0000186
bartd2c5eae2009-02-21 15:27:04 +0000187 tl_assert(s_clientobj_set);
bartfea64442008-03-30 16:55:40 +0000188
bart1335ecc2009-02-14 16:10:53 +0000189 if (! DRD_(is_any_suppressed)(a1, a2))
bartfea64442008-03-30 16:55:40 +0000190 return;
191
bartd2c5eae2009-02-21 15:27:04 +0000192 VG_(OSetGen_ResetIter)(s_clientobj_set);
193 p = VG_(OSetGen_Next)(s_clientobj_set);
bartb78312c2008-02-29 11:00:17 +0000194 for ( ; p != 0; )
barte7d58722008-02-28 19:08:04 +0000195 {
bart0268dfa2008-03-11 20:10:21 +0000196 if (a1 <= p->any.a1 && p->any.a1 < a2)
barte7d58722008-02-28 19:08:04 +0000197 {
bartb78312c2008-02-29 11:00:17 +0000198 removed_at = p->any.a1;
bart195e41f2009-02-15 11:34:57 +0000199 DRD_(clientobj_remove)(p->any.a1, p->any.type);
bartbcbd7482008-02-29 19:19:39 +0000200 /* The above call removes an element from the oset and hence */
201 /* invalidates the iterator. Set the iterator back. */
bartd2c5eae2009-02-21 15:27:04 +0000202 VG_(OSetGen_ResetIter)(s_clientobj_set);
203 while ((p = VG_(OSetGen_Next)(s_clientobj_set)) != 0
bartb78312c2008-02-29 11:00:17 +0000204 && p->any.a1 <= removed_at)
205 { }
206 }
207 else
208 {
bartd2c5eae2009-02-21 15:27:04 +0000209 p = VG_(OSetGen_Next)(s_clientobj_set);
barte7d58722008-02-28 19:08:04 +0000210 }
211 }
212}
213
bartd2c5eae2009-02-21 15:27:04 +0000214/**
215 * Delete the per-thread information stored in client objects for the
216 * specified thread.
217 */
218void DRD_(clientobj_delete_thread)(const DrdThreadId tid)
barte7d58722008-02-28 19:08:04 +0000219{
bartd2c5eae2009-02-21 15:27:04 +0000220 DrdClientobj *p;
barte7d58722008-02-28 19:08:04 +0000221
bartd2c5eae2009-02-21 15:27:04 +0000222 VG_(OSetGen_ResetIter)(s_clientobj_set);
223 for ( ; (p = VG_(OSetGen_Next)(s_clientobj_set)) != 0; )
224 {
225 if (p->any.delete_thread)
226 {
227 (*p->any.delete_thread)(p, tid);
228 }
229 }
barte7d58722008-02-28 19:08:04 +0000230}
231
bart195e41f2009-02-15 11:34:57 +0000232const char* DRD_(clientobj_type_name)(const ObjType t)
bart391d9dc2008-07-03 10:57:30 +0000233{
234 switch (t)
235 {
236 case ClientMutex: return "mutex";
237 case ClientCondvar: return "cond";
238 case ClientSemaphore: return "semaphore";
239 case ClientBarrier: return "barrier";
240 case ClientRwlock: return "rwlock";
241 }
242 return "(unknown)";
243}