blob: 1d62db18324ea46c9adf7112b65734b038da8b0b [file] [log] [blame]
barte7d58722008-02-28 19:08:04 +00001/*
2 This file is part of drd, a data race detector.
3
4 Copyright (C) 2006-2008 Bart Van Assche
5 bart.vanassche@gmail.com
6
7 This program is free software; you can redistribute it and/or
8 modify it under the terms of the GNU General Public License as
9 published by the Free Software Foundation; either version 2 of the
10 License, or (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful, but
13 WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
20 02111-1307, USA.
21
22 The GNU General Public License is contained in the file COPYING.
23*/
24
25
26#include "drd_clientobj.h"
27#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
39// Local variables.
40
41static OSet* s_clientobj;
bart72b751c2008-03-01 13:44:24 +000042static Bool s_trace_clientobj;
barte7d58722008-02-28 19:08:04 +000043
44
45// Function definitions.
46
bart72b751c2008-03-01 13:44:24 +000047void clientobj_set_trace(const Bool trace)
48{
49 s_trace_clientobj = trace;
50}
51
barte7d58722008-02-28 19:08:04 +000052/** Initialize the client object set. */
bart72b751c2008-03-01 13:44:24 +000053void clientobj_init(void)
barte7d58722008-02-28 19:08:04 +000054{
55 tl_assert(s_clientobj == 0);
56 s_clientobj = VG_(OSetGen_Create)(0, 0, VG_(malloc), VG_(free));
57 tl_assert(s_clientobj);
58}
59
60/** Free the memory allocated for the client object set.
61 * @pre Client object set is empty.
62 */
bart72b751c2008-03-01 13:44:24 +000063void clientobj_cleanup(void)
barte7d58722008-02-28 19:08:04 +000064{
65 tl_assert(s_clientobj);
66 tl_assert(VG_(OSetGen_Size)(s_clientobj) == 0);
67 VG_(OSetGen_Destroy)(s_clientobj);
68 s_clientobj = 0;
69}
70
bart391d9dc2008-07-03 10:57:30 +000071/** Return the data associated with the client object at client address addr.
72 * Return 0 if there is no client object in the set with the specified start
73 * address.
74 */
75DrdClientobj* clientobj_get_any(const Addr addr)
76{
77 return VG_(OSetGen_Lookup)(s_clientobj, &addr);
78}
79
barte7d58722008-02-28 19:08:04 +000080/** Return the data associated with the client object at client address addr
81 * and that has object type t. Return 0 if there is no client object in the
82 * set with the specified start address.
83 */
bart72b751c2008-03-01 13:44:24 +000084DrdClientobj* clientobj_get(const Addr addr, const ObjType t)
barte7d58722008-02-28 19:08:04 +000085{
86 DrdClientobj* p;
87 p = VG_(OSetGen_Lookup)(s_clientobj, &addr);
88 if (p && p->any.type == t)
89 return p;
90 return 0;
91}
92
93/** Return true if and only if the address range of any client object overlaps
94 * with the specified address range.
95 */
bart72b751c2008-03-01 13:44:24 +000096Bool clientobj_present(const Addr a1, const Addr a2)
barte7d58722008-02-28 19:08:04 +000097{
98 DrdClientobj *p;
99
100 tl_assert(a1 < a2);
101 VG_(OSetGen_ResetIter)(s_clientobj);
102 for ( ; (p = VG_(OSetGen_Next)(s_clientobj)) != 0; )
103 {
bart0268dfa2008-03-11 20:10:21 +0000104 if (a1 <= p->any.a1 && p->any.a1 < a2)
barte7d58722008-02-28 19:08:04 +0000105 {
106 return True;
107 }
108 }
109 return False;
110}
111
112/** Add state information for the client object at client address addr and
113 * of type t. Suppress data race reports on the address range [addr,addr+size[.
114 * @pre No other client object is present in the address range [addr,addr+size[.
115 */
116DrdClientobj*
bart0268dfa2008-03-11 20:10:21 +0000117clientobj_add(const Addr a1, const ObjType t)
barte7d58722008-02-28 19:08:04 +0000118{
119 DrdClientobj* p;
120
bart0268dfa2008-03-11 20:10:21 +0000121 tl_assert(! clientobj_present(a1, a1 + 1));
barte7d58722008-02-28 19:08:04 +0000122 tl_assert(VG_(OSetGen_Lookup)(s_clientobj, &a1) == 0);
bartbcbd7482008-02-29 19:19:39 +0000123
bart72b751c2008-03-01 13:44:24 +0000124 if (s_trace_clientobj)
125 {
126 VG_(message)(Vg_UserMsg, "Adding client object 0x%lx of type %d", a1, t);
127 }
128
barte7d58722008-02-28 19:08:04 +0000129 p = VG_(OSetGen_AllocNode)(s_clientobj, sizeof(*p));
130 VG_(memset)(p, 0, sizeof(*p));
131 p->any.a1 = a1;
barte7d58722008-02-28 19:08:04 +0000132 p->any.type = t;
bart391d9dc2008-07-03 10:57:30 +0000133 p->any.first_observed_at = VG_(record_ExeContext)(VG_(get_running_tid)(), 0);
barte7d58722008-02-28 19:08:04 +0000134 VG_(OSetGen_Insert)(s_clientobj, p);
135 tl_assert(VG_(OSetGen_Lookup)(s_clientobj, &a1) == p);
bartfea64442008-03-30 16:55:40 +0000136 drd_start_suppression(a1, a1 + 1, "clientobj");
barte7d58722008-02-28 19:08:04 +0000137 return p;
138}
139
bart72b751c2008-03-01 13:44:24 +0000140Bool clientobj_remove(const Addr addr, const ObjType t)
barte7d58722008-02-28 19:08:04 +0000141{
142 DrdClientobj* p;
143
bart72b751c2008-03-01 13:44:24 +0000144 if (s_trace_clientobj)
145 {
146 VG_(message)(Vg_UserMsg, "Removing client object 0x%lx of type %d",
147 addr, t);
148#if 0
149 VG_(get_and_pp_StackTrace)(VG_(get_running_tid)(),
150 VG_(clo_backtrace_size));
151#endif
152 }
153
bart28230a32008-02-29 17:27:03 +0000154 p = VG_(OSetGen_Lookup)(s_clientobj, &addr);
155 tl_assert(p->any.type == t);
barte7d58722008-02-28 19:08:04 +0000156 p = VG_(OSetGen_Remove)(s_clientobj, &addr);
157 if (p)
158 {
barte7d58722008-02-28 19:08:04 +0000159 tl_assert(VG_(OSetGen_Lookup)(s_clientobj, &addr) == 0);
barte7d58722008-02-28 19:08:04 +0000160 tl_assert(p->any.cleanup);
161 (*p->any.cleanup)(p);
162 VG_(OSetGen_FreeNode)(s_clientobj, p);
163 return True;
164 }
165 return False;
166}
167
bart72b751c2008-03-01 13:44:24 +0000168void clientobj_stop_using_mem(const Addr a1, const Addr a2)
barte7d58722008-02-28 19:08:04 +0000169{
bartb78312c2008-02-29 11:00:17 +0000170 Addr removed_at;
barte7d58722008-02-28 19:08:04 +0000171 DrdClientobj* p;
bartb78312c2008-02-29 11:00:17 +0000172
barte7d58722008-02-28 19:08:04 +0000173 tl_assert(s_clientobj);
bartfea64442008-03-30 16:55:40 +0000174
175 if (! drd_is_any_suppressed(a1, a2))
176 return;
177
barte7d58722008-02-28 19:08:04 +0000178 VG_(OSetGen_ResetIter)(s_clientobj);
bartb78312c2008-02-29 11:00:17 +0000179 p = VG_(OSetGen_Next)(s_clientobj);
180 for ( ; p != 0; )
barte7d58722008-02-28 19:08:04 +0000181 {
bart0268dfa2008-03-11 20:10:21 +0000182 if (a1 <= p->any.a1 && p->any.a1 < a2)
barte7d58722008-02-28 19:08:04 +0000183 {
bartb78312c2008-02-29 11:00:17 +0000184 removed_at = p->any.a1;
bart72b751c2008-03-01 13:44:24 +0000185 clientobj_remove(p->any.a1, p->any.type);
bartbcbd7482008-02-29 19:19:39 +0000186 /* The above call removes an element from the oset and hence */
187 /* invalidates the iterator. Set the iterator back. */
bartb78312c2008-02-29 11:00:17 +0000188 VG_(OSetGen_ResetIter)(s_clientobj);
189 while ((p = VG_(OSetGen_Next)(s_clientobj)) != 0
190 && p->any.a1 <= removed_at)
191 { }
192 }
193 else
194 {
195 p = VG_(OSetGen_Next)(s_clientobj);
barte7d58722008-02-28 19:08:04 +0000196 }
197 }
198}
199
bart72b751c2008-03-01 13:44:24 +0000200void clientobj_resetiter(void)
barte7d58722008-02-28 19:08:04 +0000201{
202 VG_(OSetGen_ResetIter)(s_clientobj);
203}
204
bart72b751c2008-03-01 13:44:24 +0000205DrdClientobj* clientobj_next(const ObjType t)
barte7d58722008-02-28 19:08:04 +0000206{
207 DrdClientobj* p;
208 while ((p = VG_(OSetGen_Next)(s_clientobj)) != 0 && p->any.type != t)
209 ;
210 return p;
211}
212
bart391d9dc2008-07-03 10:57:30 +0000213const char* clientobj_type_name(const ObjType t)
214{
215 switch (t)
216 {
217 case ClientMutex: return "mutex";
218 case ClientCondvar: return "cond";
219 case ClientSemaphore: return "semaphore";
220 case ClientBarrier: return "barrier";
221 case ClientRwlock: return "rwlock";
222 }
223 return "(unknown)";
224}