blob: 3a735e944df9481cf6115ebb49cdd4017df93df0 [file] [log] [blame]
bartbedfd232009-03-26 19:07:15 +00001/* -*- mode: C; c-basic-offset: 3; -*- */
sewardj85642922008-01-14 11:54:56 +00002/*
bart86562bd2009-02-16 19:43:56 +00003 This file is part of drd, a thread error detector.
sewardj85642922008-01-14 11:54:56 +00004
bart86562bd2009-02-16 19:43:56 +00005 Copyright (C) 2006-2009 Bart Van Assche <bart.vanassche@gmail.com>.
sewardj85642922008-01-14 11:54:56 +00006
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
bart28230a32008-02-29 17:27:03 +000026#include "drd_clientobj.h"
sewardj85642922008-01-14 11:54:56 +000027#include "drd_error.h"
28#include "drd_semaphore.h"
29#include "drd_suppression.h"
sewardj85642922008-01-14 11:54:56 +000030#include "pub_tool_errormgr.h" // VG_(maybe_record_error)()
31#include "pub_tool_libcassert.h" // tl_assert()
32#include "pub_tool_libcprint.h" // VG_(printf)()
33#include "pub_tool_machine.h" // VG_(get_IP)()
bart3e017fa2008-12-17 19:20:13 +000034#include "pub_tool_mallocfree.h" // VG_(malloc), VG_(free)
sewardj85642922008-01-14 11:54:56 +000035#include "pub_tool_threadstate.h" // VG_(get_running_tid)()
36
37
bartdc1ef032009-02-15 14:18:02 +000038/* Local functions. */
sewardj85642922008-01-14 11:54:56 +000039
bartd2c5eae2009-02-21 15:27:04 +000040static void semaphore_cleanup(struct semaphore_info* p);
sewardj85642922008-01-14 11:54:56 +000041
42
bartdc1ef032009-02-15 14:18:02 +000043/* Local variables. */
sewardj85642922008-01-14 11:54:56 +000044
bartd2c5eae2009-02-21 15:27:04 +000045static Bool s_trace_semaphore;
46static ULong s_semaphore_segment_creation_count;
sewardj85642922008-01-14 11:54:56 +000047
48
bartdc1ef032009-02-15 14:18:02 +000049/* Function definitions. */
sewardj85642922008-01-14 11:54:56 +000050
bartdc1ef032009-02-15 14:18:02 +000051/** Push a segment at the end of the queue 'p->last_sem_post_seg'. */
52static void DRD_(segment_push)(struct semaphore_info* p, Segment* sg)
bart3e017fa2008-12-17 19:20:13 +000053{
bartbedfd232009-03-26 19:07:15 +000054 Word n;
bart3e017fa2008-12-17 19:20:13 +000055
bartbedfd232009-03-26 19:07:15 +000056 tl_assert(sg);
57 n = VG_(addToXA)(p->last_sem_post_seg, &sg);
bart3e017fa2008-12-17 19:20:13 +000058#if 0
bartbedfd232009-03-26 19:07:15 +000059 VG_(message)(Vg_UserMsg, "0x%lx push: added at position %ld/%ld",
60 p->a1, n, VG_(sizeXA)(p->last_sem_post_seg));
bart3e017fa2008-12-17 19:20:13 +000061#endif
bartbedfd232009-03-26 19:07:15 +000062 tl_assert(*(Segment**)VG_(indexXA)(p->last_sem_post_seg, n) == sg);
bart3e017fa2008-12-17 19:20:13 +000063}
64
bartdc1ef032009-02-15 14:18:02 +000065/** Pop a segment from the beginning of the queue 'p->last_sem_post_seg'. */
66static Segment* DRD_(segment_pop)(struct semaphore_info* p)
bart3e017fa2008-12-17 19:20:13 +000067{
bartbedfd232009-03-26 19:07:15 +000068 Word sz;
69 Segment* sg;
bart3e017fa2008-12-17 19:20:13 +000070
bartbedfd232009-03-26 19:07:15 +000071 sz = VG_(sizeXA)(p->last_sem_post_seg);
bart3e017fa2008-12-17 19:20:13 +000072#if 0
bartbedfd232009-03-26 19:07:15 +000073 VG_(message)(Vg_UserMsg, "0x%lx pop: removed from position %ld/%ld",
74 p->a1, sz - 1, sz);
bart3e017fa2008-12-17 19:20:13 +000075#endif
bartbedfd232009-03-26 19:07:15 +000076 sg = 0;
77 if (sz > 0)
78 {
79 sg = *(Segment**)VG_(indexXA)(p->last_sem_post_seg, sz - 1);
80 tl_assert(sg);
81 VG_(dropTailXA)(p->last_sem_post_seg, 1);
82 }
83 return sg;
bart3e017fa2008-12-17 19:20:13 +000084}
85
bartdc1ef032009-02-15 14:18:02 +000086/** Enable or disable tracing of semaphore actions. */
87void DRD_(semaphore_set_trace)(const Bool trace_semaphore)
sewardj85642922008-01-14 11:54:56 +000088{
bartbedfd232009-03-26 19:07:15 +000089 s_trace_semaphore = trace_semaphore;
sewardj85642922008-01-14 11:54:56 +000090}
91
bartdc1ef032009-02-15 14:18:02 +000092/**
93 * Initialize the memory 'p' points at as a semaphore_info structure for the
94 * client semaphore at client addres 'semaphore'.
95 */
sewardj85642922008-01-14 11:54:56 +000096static
bartdc1ef032009-02-15 14:18:02 +000097void DRD_(semaphore_initialize)(struct semaphore_info* const p,
98 const Addr semaphore)
sewardj85642922008-01-14 11:54:56 +000099{
bartbedfd232009-03-26 19:07:15 +0000100 tl_assert(semaphore != 0);
101 tl_assert(p->a1 == semaphore);
102 tl_assert(p->type == ClientSemaphore);
sewardj85642922008-01-14 11:54:56 +0000103
bartbedfd232009-03-26 19:07:15 +0000104 p->cleanup = (void(*)(DrdClientobj*))semaphore_cleanup;
105 p->delete_thread = 0;
106 p->waits_to_skip = 0;
107 p->value = 0;
108 p->waiters = 0;
109 p->last_sem_post_tid = DRD_INVALID_THREADID;
110 p->last_sem_post_seg = VG_(newXA)(VG_(malloc), "drd.sg-stack",
111 VG_(free), sizeof(Segment*));
sewardj85642922008-01-14 11:54:56 +0000112}
113
bart195e41f2009-02-15 11:34:57 +0000114/**
115 * Free the memory that was allocated by semaphore_initialize(). Called by
116 * DRD_(clientobj_remove)().
bart28230a32008-02-29 17:27:03 +0000117 */
bartd2c5eae2009-02-21 15:27:04 +0000118static void semaphore_cleanup(struct semaphore_info* p)
bart28230a32008-02-29 17:27:03 +0000119{
bartbedfd232009-03-26 19:07:15 +0000120 Segment* sg;
bart3e017fa2008-12-17 19:20:13 +0000121
bartbedfd232009-03-26 19:07:15 +0000122 if (p->waiters > 0)
123 {
bartd45d9952009-05-31 18:53:54 +0000124 SemaphoreErrInfo sei = { DRD_(thread_get_running_tid)(), p->a1 };
bartbedfd232009-03-26 19:07:15 +0000125 VG_(maybe_record_error)(VG_(get_running_tid)(),
126 SemaphoreErr,
127 VG_(get_IP)(VG_(get_running_tid)()),
128 "Destruction of semaphore that is being waited"
129 " upon",
130 &sei);
131 }
132 while ((sg = DRD_(segment_pop)(p)))
133 DRD_(sg_put)(sg);
134 VG_(deleteXA)(p->last_sem_post_seg);
bart28230a32008-02-29 17:27:03 +0000135}
136
bartdc1ef032009-02-15 14:18:02 +0000137/**
138 * Return a pointer to the structure with information about the specified
139 * client semaphore. Allocate a new structure if such a structure did not
140 * yet exist.
141 */
sewardj85642922008-01-14 11:54:56 +0000142static
143struct semaphore_info*
bartdc1ef032009-02-15 14:18:02 +0000144DRD_(semaphore_get_or_allocate)(const Addr semaphore)
sewardj85642922008-01-14 11:54:56 +0000145{
bartbedfd232009-03-26 19:07:15 +0000146 struct semaphore_info *p;
sewardj85642922008-01-14 11:54:56 +0000147
bartbedfd232009-03-26 19:07:15 +0000148 tl_assert(offsetof(DrdClientobj, semaphore) == 0);
149 p = &(DRD_(clientobj_get)(semaphore, ClientSemaphore)->semaphore);
150 if (p == 0)
151 {
152 tl_assert(offsetof(DrdClientobj, semaphore) == 0);
153 p = &(DRD_(clientobj_add)(semaphore, ClientSemaphore)->semaphore);
154 DRD_(semaphore_initialize)(p, semaphore);
155 }
156 return p;
sewardj85642922008-01-14 11:54:56 +0000157}
158
bartdc1ef032009-02-15 14:18:02 +0000159/**
160 * Return a pointer to the structure with information about the specified
161 * client semaphore, or null if no such structure was found.
162 */
bartd45d9952009-05-31 18:53:54 +0000163static struct semaphore_info* semaphore_get(const Addr semaphore)
bart28230a32008-02-29 17:27:03 +0000164{
bartbedfd232009-03-26 19:07:15 +0000165 tl_assert(offsetof(DrdClientobj, semaphore) == 0);
166 return &(DRD_(clientobj_get)(semaphore, ClientSemaphore)->semaphore);
bart28230a32008-02-29 17:27:03 +0000167}
168
169/** Called before sem_init(). */
bartdc1ef032009-02-15 14:18:02 +0000170struct semaphore_info* DRD_(semaphore_init)(const Addr semaphore,
171 const Word pshared,
172 const UInt value)
sewardj85642922008-01-14 11:54:56 +0000173{
bartbedfd232009-03-26 19:07:15 +0000174 struct semaphore_info* p;
175 Segment* sg;
sewardj85642922008-01-14 11:54:56 +0000176
bartbedfd232009-03-26 19:07:15 +0000177 if (s_trace_semaphore)
178 {
179 VG_(message)(Vg_UserMsg,
180 "[%d/%d] semaphore_init 0x%lx value %u",
181 VG_(get_running_tid)(),
182 DRD_(thread_get_running_tid)(),
183 semaphore,
184 value);
185 }
bartd45d9952009-05-31 18:53:54 +0000186 p = semaphore_get(semaphore);
bartbedfd232009-03-26 19:07:15 +0000187 if (p)
188 {
189 const ThreadId vg_tid = VG_(get_running_tid)();
bartd45d9952009-05-31 18:53:54 +0000190 SemaphoreErrInfo SEI = { DRD_(thread_get_running_tid)(), semaphore };
bartbedfd232009-03-26 19:07:15 +0000191 VG_(maybe_record_error)(vg_tid,
192 SemaphoreErr,
193 VG_(get_IP)(vg_tid),
194 "Semaphore reinitialization",
195 &SEI);
196 // Remove all segments from the segment stack.
197 while ((sg = DRD_(segment_pop)(p)))
198 {
199 DRD_(sg_put)(sg);
200 }
201 }
202 else
203 {
204 p = DRD_(semaphore_get_or_allocate)(semaphore);
205 }
206 tl_assert(p);
207 p->waits_to_skip = value;
208 p->value = value;
209 return p;
sewardj85642922008-01-14 11:54:56 +0000210}
211
bart28230a32008-02-29 17:27:03 +0000212/** Called after sem_destroy(). */
bartdc1ef032009-02-15 14:18:02 +0000213void DRD_(semaphore_destroy)(const Addr semaphore)
sewardj85642922008-01-14 11:54:56 +0000214{
bartbedfd232009-03-26 19:07:15 +0000215 struct semaphore_info* p;
bart3b1ee452008-02-29 19:28:15 +0000216
bartd45d9952009-05-31 18:53:54 +0000217 p = semaphore_get(semaphore);
bartda9436b2008-12-14 08:56:49 +0000218
bartbedfd232009-03-26 19:07:15 +0000219 if (s_trace_semaphore)
220 {
221 VG_(message)(Vg_UserMsg,
222 "[%d/%d] semaphore_destroy 0x%lx value %u",
223 VG_(get_running_tid)(),
224 DRD_(thread_get_running_tid)(),
225 semaphore,
226 p ? p->value : 0);
227 }
bart3b1ee452008-02-29 19:28:15 +0000228
bartbedfd232009-03-26 19:07:15 +0000229 if (p == 0)
230 {
bartd45d9952009-05-31 18:53:54 +0000231 GenericErrInfo GEI = { DRD_(thread_get_running_tid)() };
bartbedfd232009-03-26 19:07:15 +0000232 VG_(maybe_record_error)(VG_(get_running_tid)(),
233 GenericErr,
234 VG_(get_IP)(VG_(get_running_tid)()),
235 "Not a semaphore",
236 &GEI);
237 return;
238 }
bart72b751c2008-03-01 13:44:24 +0000239
bartbedfd232009-03-26 19:07:15 +0000240 DRD_(clientobj_remove)(semaphore, ClientSemaphore);
sewardj85642922008-01-14 11:54:56 +0000241}
242
bart28230a32008-02-29 17:27:03 +0000243/** Called before sem_wait(). */
bartdc1ef032009-02-15 14:18:02 +0000244void DRD_(semaphore_pre_wait)(const Addr semaphore)
sewardj85642922008-01-14 11:54:56 +0000245{
bartbedfd232009-03-26 19:07:15 +0000246 struct semaphore_info* p;
sewardj85642922008-01-14 11:54:56 +0000247
bartbedfd232009-03-26 19:07:15 +0000248 p = DRD_(semaphore_get_or_allocate)(semaphore);
249 tl_assert(p);
250 tl_assert((int)p->waiters >= 0);
251 p->waiters++;
252 tl_assert(p->waiters > 0);
bart28230a32008-02-29 17:27:03 +0000253}
254
bartdc1ef032009-02-15 14:18:02 +0000255/**
256 * Called after sem_wait() finished.
257 * @note Do not rely on the value of 'waited' -- some glibc versions do
258 * not set it correctly.
bart28230a32008-02-29 17:27:03 +0000259 */
bartdc1ef032009-02-15 14:18:02 +0000260void DRD_(semaphore_post_wait)(const DrdThreadId tid, const Addr semaphore,
261 const Bool waited)
bart28230a32008-02-29 17:27:03 +0000262{
bartbedfd232009-03-26 19:07:15 +0000263 struct semaphore_info* p;
264 Segment* sg;
bart28230a32008-02-29 17:27:03 +0000265
bartd45d9952009-05-31 18:53:54 +0000266 p = semaphore_get(semaphore);
bartbedfd232009-03-26 19:07:15 +0000267 if (s_trace_semaphore)
268 {
269 VG_(message)(Vg_UserMsg,
270 "[%d/%d] semaphore_wait 0x%lx value %u -> %u",
271 VG_(get_running_tid)(),
272 DRD_(thread_get_running_tid)(),
273 semaphore,
274 p ? p->value : 0,
275 p ? p->value - 1 : 0);
276 }
277 tl_assert(p);
278 tl_assert(p->waiters > 0);
279 p->waiters--;
280 tl_assert((int)p->waiters >= 0);
281 tl_assert((int)p->value >= 0);
282 if (p->value == 0)
283 {
bartd45d9952009-05-31 18:53:54 +0000284 SemaphoreErrInfo sei = { DRD_(thread_get_running_tid)(), semaphore };
bartbedfd232009-03-26 19:07:15 +0000285 VG_(maybe_record_error)(VG_(get_running_tid)(),
286 SemaphoreErr,
287 VG_(get_IP)(VG_(get_running_tid)()),
288 "Invalid semaphore",
289 &sei);
290 return;
291 }
292 p->value--;
293 tl_assert((int)p->value >= 0);
294 if (p->waits_to_skip > 0)
295 p->waits_to_skip--;
296 else
297 {
298 sg = DRD_(segment_pop)(p);
299 tl_assert(sg);
300 if (sg)
bart94866cc2008-12-21 17:20:22 +0000301 {
bartbedfd232009-03-26 19:07:15 +0000302 if (p->last_sem_post_tid != tid
303 && p->last_sem_post_tid != DRD_INVALID_THREADID)
304 {
305 DRD_(thread_combine_vc2)(tid, &sg->vc);
306 }
307 DRD_(sg_put)(sg);
308 DRD_(thread_new_segment)(tid);
309 s_semaphore_segment_creation_count++;
bart94866cc2008-12-21 17:20:22 +0000310 }
bartbedfd232009-03-26 19:07:15 +0000311 }
sewardj85642922008-01-14 11:54:56 +0000312}
313
314/** Called before sem_post(). */
bartdc1ef032009-02-15 14:18:02 +0000315void DRD_(semaphore_pre_post)(const DrdThreadId tid, const Addr semaphore)
sewardj85642922008-01-14 11:54:56 +0000316{
bartbedfd232009-03-26 19:07:15 +0000317 struct semaphore_info* p;
318 Segment* sg;
sewardj85642922008-01-14 11:54:56 +0000319
bartbedfd232009-03-26 19:07:15 +0000320 p = DRD_(semaphore_get_or_allocate)(semaphore);
321 p->value++;
bartda9436b2008-12-14 08:56:49 +0000322
bartbedfd232009-03-26 19:07:15 +0000323 if (s_trace_semaphore)
324 {
325 VG_(message)(Vg_UserMsg,
326 "[%d/%d] semaphore_post 0x%lx value %u -> %u",
327 VG_(get_running_tid)(),
328 DRD_(thread_get_running_tid)(),
329 semaphore,
330 p->value - 1, p->value);
331 }
bartda9436b2008-12-14 08:56:49 +0000332
bartbedfd232009-03-26 19:07:15 +0000333 p->last_sem_post_tid = tid;
334 DRD_(thread_new_segment)(tid);
335 sg = 0;
336 DRD_(thread_get_latest_segment)(&sg, tid);
337 tl_assert(sg);
338 DRD_(segment_push)(p, sg);
339 s_semaphore_segment_creation_count++;
sewardj85642922008-01-14 11:54:56 +0000340}
341
bartd45d9952009-05-31 18:53:54 +0000342/** Called after sem_post() finished. */
bartdc1ef032009-02-15 14:18:02 +0000343void DRD_(semaphore_post_post)(const DrdThreadId tid, const Addr semaphore,
bartd45d9952009-05-31 18:53:54 +0000344 const Bool succeeded)
sewardj85642922008-01-14 11:54:56 +0000345{
bartd45d9952009-05-31 18:53:54 +0000346 /*
347 * Note: it is hard to implement the sem_post() wrapper correctly in
348 * case sem_post() returns an error code. This is because handling this
349 * case correctly requires restoring the vector clock associated with
350 * the semaphore to its original value here. In order to do that without
351 * introducing a race condition, extra locking has to be added around
352 * each semaphore call. Such extra locking would have to be added in
353 * drd_pthread_intercepts.c. However, it is hard to implement
354 * synchronization in drd_pthread_intercepts.c in a portable way without
355 * calling already redirected functions.
356 */
sewardj85642922008-01-14 11:54:56 +0000357}
358
bartdc1ef032009-02-15 14:18:02 +0000359ULong DRD_(get_semaphore_segment_creation_count)(void)
bart6bbefaf2008-04-19 15:16:45 +0000360{
bartbedfd232009-03-26 19:07:15 +0000361 return s_semaphore_segment_creation_count;
bart6bbefaf2008-04-19 15:16:45 +0000362}