mirror of
https://github.com/Zenithsiz/ftmemsim-valgrind.git
synced 2026-02-03 18:13:01 +00:00
of two. The indentation of the DRD source code is now consistent with the other Valgrind source files. - Added emacs mode line with indentation settings. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@9496
361 lines
11 KiB
C
361 lines
11 KiB
C
/* -*- mode: C; c-basic-offset: 3; -*- */
|
|
/*
|
|
This file is part of drd, a thread error detector.
|
|
|
|
Copyright (C) 2006-2009 Bart Van Assche <bart.vanassche@gmail.com>.
|
|
|
|
This program is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU General Public License as
|
|
published by the Free Software Foundation; either version 2 of the
|
|
License, or (at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful, but
|
|
WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
|
|
02111-1307, USA.
|
|
|
|
The GNU General Public License is contained in the file COPYING.
|
|
*/
|
|
|
|
|
|
#include "drd_clientobj.h"
|
|
#include "drd_error.h"
|
|
#include "drd_semaphore.h"
|
|
#include "drd_suppression.h"
|
|
#include "pub_tool_errormgr.h" // VG_(maybe_record_error)()
|
|
#include "pub_tool_libcassert.h" // tl_assert()
|
|
#include "pub_tool_libcprint.h" // VG_(printf)()
|
|
#include "pub_tool_machine.h" // VG_(get_IP)()
|
|
#include "pub_tool_mallocfree.h" // VG_(malloc), VG_(free)
|
|
#include "pub_tool_threadstate.h" // VG_(get_running_tid)()
|
|
|
|
|
|
/* Local functions. */
|
|
|
|
static void semaphore_cleanup(struct semaphore_info* p);
|
|
|
|
|
|
/* Local variables. */
|
|
|
|
static Bool s_trace_semaphore;
|
|
static ULong s_semaphore_segment_creation_count;
|
|
|
|
|
|
/* Function definitions. */
|
|
|
|
/** Push a segment at the end of the queue 'p->last_sem_post_seg'. */
|
|
static void DRD_(segment_push)(struct semaphore_info* p, Segment* sg)
|
|
{
|
|
Word n;
|
|
|
|
tl_assert(sg);
|
|
n = VG_(addToXA)(p->last_sem_post_seg, &sg);
|
|
#if 0
|
|
VG_(message)(Vg_UserMsg, "0x%lx push: added at position %ld/%ld",
|
|
p->a1, n, VG_(sizeXA)(p->last_sem_post_seg));
|
|
#endif
|
|
tl_assert(*(Segment**)VG_(indexXA)(p->last_sem_post_seg, n) == sg);
|
|
}
|
|
|
|
/** Pop a segment from the beginning of the queue 'p->last_sem_post_seg'. */
|
|
static Segment* DRD_(segment_pop)(struct semaphore_info* p)
|
|
{
|
|
Word sz;
|
|
Segment* sg;
|
|
|
|
sz = VG_(sizeXA)(p->last_sem_post_seg);
|
|
#if 0
|
|
VG_(message)(Vg_UserMsg, "0x%lx pop: removed from position %ld/%ld",
|
|
p->a1, sz - 1, sz);
|
|
#endif
|
|
sg = 0;
|
|
if (sz > 0)
|
|
{
|
|
sg = *(Segment**)VG_(indexXA)(p->last_sem_post_seg, sz - 1);
|
|
tl_assert(sg);
|
|
VG_(dropTailXA)(p->last_sem_post_seg, 1);
|
|
}
|
|
return sg;
|
|
}
|
|
|
|
/** Enable or disable tracing of semaphore actions. */
|
|
void DRD_(semaphore_set_trace)(const Bool trace_semaphore)
|
|
{
|
|
s_trace_semaphore = trace_semaphore;
|
|
}
|
|
|
|
/**
|
|
* Initialize the memory 'p' points at as a semaphore_info structure for the
|
|
* client semaphore at client addres 'semaphore'.
|
|
*/
|
|
static
|
|
void DRD_(semaphore_initialize)(struct semaphore_info* const p,
|
|
const Addr semaphore)
|
|
{
|
|
tl_assert(semaphore != 0);
|
|
tl_assert(p->a1 == semaphore);
|
|
tl_assert(p->type == ClientSemaphore);
|
|
|
|
p->cleanup = (void(*)(DrdClientobj*))semaphore_cleanup;
|
|
p->delete_thread = 0;
|
|
p->waits_to_skip = 0;
|
|
p->value = 0;
|
|
p->waiters = 0;
|
|
p->last_sem_post_tid = DRD_INVALID_THREADID;
|
|
p->last_sem_post_seg = VG_(newXA)(VG_(malloc), "drd.sg-stack",
|
|
VG_(free), sizeof(Segment*));
|
|
}
|
|
|
|
/**
|
|
* Free the memory that was allocated by semaphore_initialize(). Called by
|
|
* DRD_(clientobj_remove)().
|
|
*/
|
|
static void semaphore_cleanup(struct semaphore_info* p)
|
|
{
|
|
Segment* sg;
|
|
|
|
if (p->waiters > 0)
|
|
{
|
|
SemaphoreErrInfo sei = { p->a1 };
|
|
VG_(maybe_record_error)(VG_(get_running_tid)(),
|
|
SemaphoreErr,
|
|
VG_(get_IP)(VG_(get_running_tid)()),
|
|
"Destruction of semaphore that is being waited"
|
|
" upon",
|
|
&sei);
|
|
}
|
|
while ((sg = DRD_(segment_pop)(p)))
|
|
DRD_(sg_put)(sg);
|
|
VG_(deleteXA)(p->last_sem_post_seg);
|
|
}
|
|
|
|
/**
|
|
* Return a pointer to the structure with information about the specified
|
|
* client semaphore. Allocate a new structure if such a structure did not
|
|
* yet exist.
|
|
*/
|
|
static
|
|
struct semaphore_info*
|
|
DRD_(semaphore_get_or_allocate)(const Addr semaphore)
|
|
{
|
|
struct semaphore_info *p;
|
|
|
|
tl_assert(offsetof(DrdClientobj, semaphore) == 0);
|
|
p = &(DRD_(clientobj_get)(semaphore, ClientSemaphore)->semaphore);
|
|
if (p == 0)
|
|
{
|
|
tl_assert(offsetof(DrdClientobj, semaphore) == 0);
|
|
p = &(DRD_(clientobj_add)(semaphore, ClientSemaphore)->semaphore);
|
|
DRD_(semaphore_initialize)(p, semaphore);
|
|
}
|
|
return p;
|
|
}
|
|
|
|
/**
|
|
* Return a pointer to the structure with information about the specified
|
|
* client semaphore, or null if no such structure was found.
|
|
*/
|
|
static struct semaphore_info* DRD_(semaphore_get)(const Addr semaphore)
|
|
{
|
|
tl_assert(offsetof(DrdClientobj, semaphore) == 0);
|
|
return &(DRD_(clientobj_get)(semaphore, ClientSemaphore)->semaphore);
|
|
}
|
|
|
|
/** Called before sem_init(). */
|
|
struct semaphore_info* DRD_(semaphore_init)(const Addr semaphore,
|
|
const Word pshared,
|
|
const UInt value)
|
|
{
|
|
struct semaphore_info* p;
|
|
Segment* sg;
|
|
|
|
if (s_trace_semaphore)
|
|
{
|
|
VG_(message)(Vg_UserMsg,
|
|
"[%d/%d] semaphore_init 0x%lx value %u",
|
|
VG_(get_running_tid)(),
|
|
DRD_(thread_get_running_tid)(),
|
|
semaphore,
|
|
value);
|
|
}
|
|
p = DRD_(semaphore_get)(semaphore);
|
|
if (p)
|
|
{
|
|
const ThreadId vg_tid = VG_(get_running_tid)();
|
|
SemaphoreErrInfo SEI = { semaphore };
|
|
VG_(maybe_record_error)(vg_tid,
|
|
SemaphoreErr,
|
|
VG_(get_IP)(vg_tid),
|
|
"Semaphore reinitialization",
|
|
&SEI);
|
|
// Remove all segments from the segment stack.
|
|
while ((sg = DRD_(segment_pop)(p)))
|
|
{
|
|
DRD_(sg_put)(sg);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
p = DRD_(semaphore_get_or_allocate)(semaphore);
|
|
}
|
|
tl_assert(p);
|
|
p->waits_to_skip = value;
|
|
p->value = value;
|
|
return p;
|
|
}
|
|
|
|
/** Called after sem_destroy(). */
|
|
void DRD_(semaphore_destroy)(const Addr semaphore)
|
|
{
|
|
struct semaphore_info* p;
|
|
|
|
p = DRD_(semaphore_get)(semaphore);
|
|
|
|
if (s_trace_semaphore)
|
|
{
|
|
VG_(message)(Vg_UserMsg,
|
|
"[%d/%d] semaphore_destroy 0x%lx value %u",
|
|
VG_(get_running_tid)(),
|
|
DRD_(thread_get_running_tid)(),
|
|
semaphore,
|
|
p ? p->value : 0);
|
|
}
|
|
|
|
if (p == 0)
|
|
{
|
|
GenericErrInfo GEI;
|
|
VG_(maybe_record_error)(VG_(get_running_tid)(),
|
|
GenericErr,
|
|
VG_(get_IP)(VG_(get_running_tid)()),
|
|
"Not a semaphore",
|
|
&GEI);
|
|
return;
|
|
}
|
|
|
|
DRD_(clientobj_remove)(semaphore, ClientSemaphore);
|
|
}
|
|
|
|
/** Called before sem_wait(). */
|
|
void DRD_(semaphore_pre_wait)(const Addr semaphore)
|
|
{
|
|
struct semaphore_info* p;
|
|
|
|
p = DRD_(semaphore_get_or_allocate)(semaphore);
|
|
tl_assert(p);
|
|
tl_assert((int)p->waiters >= 0);
|
|
p->waiters++;
|
|
tl_assert(p->waiters > 0);
|
|
}
|
|
|
|
/**
|
|
* Called after sem_wait() finished.
|
|
* @note Do not rely on the value of 'waited' -- some glibc versions do
|
|
* not set it correctly.
|
|
*/
|
|
void DRD_(semaphore_post_wait)(const DrdThreadId tid, const Addr semaphore,
|
|
const Bool waited)
|
|
{
|
|
struct semaphore_info* p;
|
|
Segment* sg;
|
|
|
|
p = DRD_(semaphore_get)(semaphore);
|
|
if (s_trace_semaphore)
|
|
{
|
|
VG_(message)(Vg_UserMsg,
|
|
"[%d/%d] semaphore_wait 0x%lx value %u -> %u",
|
|
VG_(get_running_tid)(),
|
|
DRD_(thread_get_running_tid)(),
|
|
semaphore,
|
|
p ? p->value : 0,
|
|
p ? p->value - 1 : 0);
|
|
}
|
|
tl_assert(p);
|
|
tl_assert(p->waiters > 0);
|
|
p->waiters--;
|
|
tl_assert((int)p->waiters >= 0);
|
|
tl_assert((int)p->value >= 0);
|
|
if (p->value == 0)
|
|
{
|
|
SemaphoreErrInfo sei = { semaphore };
|
|
VG_(maybe_record_error)(VG_(get_running_tid)(),
|
|
SemaphoreErr,
|
|
VG_(get_IP)(VG_(get_running_tid)()),
|
|
"Invalid semaphore",
|
|
&sei);
|
|
return;
|
|
}
|
|
p->value--;
|
|
tl_assert((int)p->value >= 0);
|
|
if (p->waits_to_skip > 0)
|
|
p->waits_to_skip--;
|
|
else
|
|
{
|
|
sg = DRD_(segment_pop)(p);
|
|
tl_assert(sg);
|
|
if (sg)
|
|
{
|
|
if (p->last_sem_post_tid != tid
|
|
&& p->last_sem_post_tid != DRD_INVALID_THREADID)
|
|
{
|
|
DRD_(thread_combine_vc2)(tid, &sg->vc);
|
|
}
|
|
DRD_(sg_put)(sg);
|
|
DRD_(thread_new_segment)(tid);
|
|
s_semaphore_segment_creation_count++;
|
|
}
|
|
}
|
|
}
|
|
|
|
/** Called before sem_post(). */
|
|
void DRD_(semaphore_pre_post)(const DrdThreadId tid, const Addr semaphore)
|
|
{
|
|
struct semaphore_info* p;
|
|
Segment* sg;
|
|
|
|
p = DRD_(semaphore_get_or_allocate)(semaphore);
|
|
p->value++;
|
|
|
|
if (s_trace_semaphore)
|
|
{
|
|
VG_(message)(Vg_UserMsg,
|
|
"[%d/%d] semaphore_post 0x%lx value %u -> %u",
|
|
VG_(get_running_tid)(),
|
|
DRD_(thread_get_running_tid)(),
|
|
semaphore,
|
|
p->value - 1, p->value);
|
|
}
|
|
|
|
p->last_sem_post_tid = tid;
|
|
DRD_(thread_new_segment)(tid);
|
|
sg = 0;
|
|
DRD_(thread_get_latest_segment)(&sg, tid);
|
|
tl_assert(sg);
|
|
DRD_(segment_push)(p, sg);
|
|
s_semaphore_segment_creation_count++;
|
|
}
|
|
|
|
/** Called after sem_post() finished successfully. */
|
|
void DRD_(semaphore_post_post)(const DrdThreadId tid, const Addr semaphore,
|
|
const Bool waited)
|
|
{
|
|
/* Note: it is hard to implement the sem_post() wrapper correctly in */
|
|
/* case sem_post() returns an error code. This is because handling this */
|
|
/* case correctly requires restoring the vector clock associated with */
|
|
/* the semaphore to its original value here. In order to do that without */
|
|
/* introducing a race condition, extra locking has to be added around */
|
|
/* each semaphore call. Such extra locking would have to be added in */
|
|
/* drd_intercepts.c. However, it is hard to implement synchronization */
|
|
/* in drd_intercepts.c in a portable way without calling already */
|
|
/* redirected functions. */
|
|
}
|
|
|
|
ULong DRD_(get_semaphore_segment_creation_count)(void)
|
|
{
|
|
return s_semaphore_segment_creation_count;
|
|
}
|