blob: 5090aacebe5656aec45b0a19d21a861df2d5d0a5 [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
71/** Return the data associated with the client object at client address addr
72 * and that has object type t. Return 0 if there is no client object in the
73 * set with the specified start address.
74 */
bart72b751c2008-03-01 13:44:24 +000075DrdClientobj* clientobj_get(const Addr addr, const ObjType t)
barte7d58722008-02-28 19:08:04 +000076{
77 DrdClientobj* p;
78 p = VG_(OSetGen_Lookup)(s_clientobj, &addr);
79 if (p && p->any.type == t)
80 return p;
81 return 0;
82}
83
84/** Return true if and only if the address range of any client object overlaps
85 * with the specified address range.
86 */
bart72b751c2008-03-01 13:44:24 +000087Bool clientobj_present(const Addr a1, const Addr a2)
barte7d58722008-02-28 19:08:04 +000088{
89 DrdClientobj *p;
90
91 tl_assert(a1 < a2);
92 VG_(OSetGen_ResetIter)(s_clientobj);
93 for ( ; (p = VG_(OSetGen_Next)(s_clientobj)) != 0; )
94 {
bart0268dfa2008-03-11 20:10:21 +000095 if (a1 <= p->any.a1 && p->any.a1 < a2)
barte7d58722008-02-28 19:08:04 +000096 {
97 return True;
98 }
99 }
100 return False;
101}
102
103/** Add state information for the client object at client address addr and
104 * of type t. Suppress data race reports on the address range [addr,addr+size[.
105 * @pre No other client object is present in the address range [addr,addr+size[.
106 */
107DrdClientobj*
bart0268dfa2008-03-11 20:10:21 +0000108clientobj_add(const Addr a1, const ObjType t)
barte7d58722008-02-28 19:08:04 +0000109{
110 DrdClientobj* p;
111
bart0268dfa2008-03-11 20:10:21 +0000112 tl_assert(! clientobj_present(a1, a1 + 1));
barte7d58722008-02-28 19:08:04 +0000113 tl_assert(VG_(OSetGen_Lookup)(s_clientobj, &a1) == 0);
bartbcbd7482008-02-29 19:19:39 +0000114
bart72b751c2008-03-01 13:44:24 +0000115 if (s_trace_clientobj)
116 {
117 VG_(message)(Vg_UserMsg, "Adding client object 0x%lx of type %d", a1, t);
118 }
119
barte7d58722008-02-28 19:08:04 +0000120 p = VG_(OSetGen_AllocNode)(s_clientobj, sizeof(*p));
121 VG_(memset)(p, 0, sizeof(*p));
122 p->any.a1 = a1;
barte7d58722008-02-28 19:08:04 +0000123 p->any.type = t;
124 VG_(OSetGen_Insert)(s_clientobj, p);
125 tl_assert(VG_(OSetGen_Lookup)(s_clientobj, &a1) == p);
bartfea64442008-03-30 16:55:40 +0000126 drd_start_suppression(a1, a1 + 1, "clientobj");
barte7d58722008-02-28 19:08:04 +0000127 return p;
128}
129
bart72b751c2008-03-01 13:44:24 +0000130Bool clientobj_remove(const Addr addr, const ObjType t)
barte7d58722008-02-28 19:08:04 +0000131{
132 DrdClientobj* p;
133
bart72b751c2008-03-01 13:44:24 +0000134 if (s_trace_clientobj)
135 {
136 VG_(message)(Vg_UserMsg, "Removing client object 0x%lx of type %d",
137 addr, t);
138#if 0
139 VG_(get_and_pp_StackTrace)(VG_(get_running_tid)(),
140 VG_(clo_backtrace_size));
141#endif
142 }
143
bart28230a32008-02-29 17:27:03 +0000144 p = VG_(OSetGen_Lookup)(s_clientobj, &addr);
145 tl_assert(p->any.type == t);
barte7d58722008-02-28 19:08:04 +0000146 p = VG_(OSetGen_Remove)(s_clientobj, &addr);
147 if (p)
148 {
barte7d58722008-02-28 19:08:04 +0000149 tl_assert(VG_(OSetGen_Lookup)(s_clientobj, &addr) == 0);
barte7d58722008-02-28 19:08:04 +0000150 tl_assert(p->any.cleanup);
151 (*p->any.cleanup)(p);
152 VG_(OSetGen_FreeNode)(s_clientobj, p);
153 return True;
154 }
155 return False;
156}
157
bart72b751c2008-03-01 13:44:24 +0000158void clientobj_stop_using_mem(const Addr a1, const Addr a2)
barte7d58722008-02-28 19:08:04 +0000159{
bartb78312c2008-02-29 11:00:17 +0000160 Addr removed_at;
barte7d58722008-02-28 19:08:04 +0000161 DrdClientobj* p;
bartb78312c2008-02-29 11:00:17 +0000162
barte7d58722008-02-28 19:08:04 +0000163 tl_assert(s_clientobj);
bartfea64442008-03-30 16:55:40 +0000164
165 if (! drd_is_any_suppressed(a1, a2))
166 return;
167
barte7d58722008-02-28 19:08:04 +0000168 VG_(OSetGen_ResetIter)(s_clientobj);
bartb78312c2008-02-29 11:00:17 +0000169 p = VG_(OSetGen_Next)(s_clientobj);
170 for ( ; p != 0; )
barte7d58722008-02-28 19:08:04 +0000171 {
bart0268dfa2008-03-11 20:10:21 +0000172 if (a1 <= p->any.a1 && p->any.a1 < a2)
barte7d58722008-02-28 19:08:04 +0000173 {
bartb78312c2008-02-29 11:00:17 +0000174 removed_at = p->any.a1;
bart72b751c2008-03-01 13:44:24 +0000175 clientobj_remove(p->any.a1, p->any.type);
bartbcbd7482008-02-29 19:19:39 +0000176 /* The above call removes an element from the oset and hence */
177 /* invalidates the iterator. Set the iterator back. */
bartb78312c2008-02-29 11:00:17 +0000178 VG_(OSetGen_ResetIter)(s_clientobj);
179 while ((p = VG_(OSetGen_Next)(s_clientobj)) != 0
180 && p->any.a1 <= removed_at)
181 { }
182 }
183 else
184 {
185 p = VG_(OSetGen_Next)(s_clientobj);
barte7d58722008-02-28 19:08:04 +0000186 }
187 }
188}
189
bart72b751c2008-03-01 13:44:24 +0000190void clientobj_resetiter(void)
barte7d58722008-02-28 19:08:04 +0000191{
192 VG_(OSetGen_ResetIter)(s_clientobj);
193}
194
bart72b751c2008-03-01 13:44:24 +0000195DrdClientobj* clientobj_next(const ObjType t)
barte7d58722008-02-28 19:08:04 +0000196{
197 DrdClientobj* p;
198 while ((p = VG_(OSetGen_Next)(s_clientobj)) != 0 && p->any.type != t)
199 ;
200 return p;
201}
202