sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 1 | /* |
| 2 | This file is part of drd, a data race detector. |
| 3 | |
sewardj | 8564292 | 2008-01-14 11:54:56 +0000 | [diff] [blame] | 4 | Copyright (C) 2006-2008 Bart Van Assche |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 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 | |
bart | 4bb53d8 | 2008-02-28 19:06:34 +0000 | [diff] [blame] | 26 | #include "drd_clientobj.h" |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 27 | #include "drd_error.h" |
| 28 | #include "drd_mutex.h" |
sewardj | 721ad7b | 2007-11-30 08:30:29 +0000 | [diff] [blame] | 29 | #include "priv_drd_clientreq.h" |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 30 | #include "pub_tool_errormgr.h" // VG_(maybe_record_error)() |
| 31 | #include "pub_tool_libcassert.h" // tl_assert() |
bart | 4bb53d8 | 2008-02-28 19:06:34 +0000 | [diff] [blame] | 32 | #include "pub_tool_libcprint.h" // VG_(message)() |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 33 | #include "pub_tool_machine.h" // VG_(get_IP)() |
| 34 | #include "pub_tool_threadstate.h" // VG_(get_running_tid)() |
| 35 | |
| 36 | |
sewardj | 347eeba | 2008-01-21 14:19:07 +0000 | [diff] [blame] | 37 | // Local functions. |
| 38 | |
bart | 46d5f17 | 2008-02-28 19:49:37 +0000 | [diff] [blame] | 39 | static void mutex_cleanup(struct mutex_info* p); |
bart | 5357fcb | 2008-02-27 15:46:00 +0000 | [diff] [blame] | 40 | static Bool mutex_is_locked(struct mutex_info* const p); |
sewardj | 347eeba | 2008-01-21 14:19:07 +0000 | [diff] [blame] | 41 | |
| 42 | |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 43 | // Local variables. |
| 44 | |
| 45 | static Bool s_trace_mutex; |
| 46 | static ULong s_mutex_lock_count; |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 47 | |
| 48 | |
| 49 | // Function definitions. |
| 50 | |
| 51 | void mutex_set_trace(const Bool trace_mutex) |
| 52 | { |
| 53 | tl_assert(!! trace_mutex == trace_mutex); |
| 54 | s_trace_mutex = trace_mutex; |
| 55 | } |
| 56 | |
| 57 | static |
| 58 | void mutex_initialize(struct mutex_info* const p, |
| 59 | const Addr mutex, |
sewardj | 721ad7b | 2007-11-30 08:30:29 +0000 | [diff] [blame] | 60 | const SizeT size, |
| 61 | const MutexT mutex_type) |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 62 | { |
| 63 | tl_assert(mutex != 0); |
| 64 | tl_assert(size > 0); |
| 65 | |
bart | 4bb53d8 | 2008-02-28 19:06:34 +0000 | [diff] [blame] | 66 | tl_assert(p->a1 == mutex); |
| 67 | tl_assert(p->a2 == mutex + size); |
bart | 46d5f17 | 2008-02-28 19:49:37 +0000 | [diff] [blame] | 68 | p->cleanup = (void(*)(DrdClientobj*))&mutex_cleanup; |
sewardj | 721ad7b | 2007-11-30 08:30:29 +0000 | [diff] [blame] | 69 | p->mutex_type = mutex_type; |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 70 | p->recursion_count = 0; |
| 71 | p->owner = DRD_INVALID_THREADID; |
| 72 | vc_init(&p->vc, 0, 0); |
| 73 | } |
| 74 | |
bart | 46d5f17 | 2008-02-28 19:49:37 +0000 | [diff] [blame] | 75 | /** Deallocate the memory that was allocated by mutex_initialize(). */ |
| 76 | static void mutex_cleanup(struct mutex_info* p) |
| 77 | { |
bart | b78312c | 2008-02-29 11:00:17 +0000 | [diff] [blame] | 78 | if (s_trace_mutex) |
| 79 | { |
bart | 3b1ee45 | 2008-02-29 19:28:15 +0000 | [diff] [blame] | 80 | VG_(message)(Vg_UserMsg, |
| 81 | "[%d/%d] mutex_destroy %s 0x%lx", |
| 82 | VG_(get_running_tid)(), |
| 83 | thread_get_running_tid(), |
bart | b78312c | 2008-02-29 11:00:17 +0000 | [diff] [blame] | 84 | mutex_get_typename(p), |
| 85 | p->a1); |
| 86 | } |
| 87 | |
bart | 46d5f17 | 2008-02-28 19:49:37 +0000 | [diff] [blame] | 88 | if (mutex_is_locked(p)) |
| 89 | { |
| 90 | MutexErrInfo MEI = { p->a1, p->recursion_count, p->owner }; |
| 91 | VG_(maybe_record_error)(VG_(get_running_tid)(), |
| 92 | MutexErr, |
| 93 | VG_(get_IP)(VG_(get_running_tid)()), |
| 94 | "Destroying locked mutex", |
| 95 | &MEI); |
| 96 | } |
| 97 | |
| 98 | vc_cleanup(&p->vc); |
| 99 | } |
| 100 | |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 101 | static |
sewardj | 721ad7b | 2007-11-30 08:30:29 +0000 | [diff] [blame] | 102 | struct mutex_info* |
| 103 | mutex_get_or_allocate(const Addr mutex, |
| 104 | const SizeT size, |
| 105 | const MutexT mutex_type) |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 106 | { |
bart | 4bb53d8 | 2008-02-28 19:06:34 +0000 | [diff] [blame] | 107 | struct mutex_info* p; |
sewardj | 721ad7b | 2007-11-30 08:30:29 +0000 | [diff] [blame] | 108 | |
bart | 4bb53d8 | 2008-02-28 19:06:34 +0000 | [diff] [blame] | 109 | tl_assert(offsetof(DrdClientobj, mutex) == 0); |
bart | 72b751c | 2008-03-01 13:44:24 +0000 | [diff] [blame] | 110 | p = &clientobj_get(mutex, ClientMutex)->mutex; |
bart | 4bb53d8 | 2008-02-28 19:06:34 +0000 | [diff] [blame] | 111 | if (p) |
| 112 | { |
| 113 | tl_assert(p->mutex_type == mutex_type); |
| 114 | tl_assert(p->a2 - p->a1 == size); |
| 115 | return p; |
| 116 | } |
sewardj | 721ad7b | 2007-11-30 08:30:29 +0000 | [diff] [blame] | 117 | |
bart | 72b751c | 2008-03-01 13:44:24 +0000 | [diff] [blame] | 118 | if (clientobj_present(mutex, mutex + size)) |
sewardj | 721ad7b | 2007-11-30 08:30:29 +0000 | [diff] [blame] | 119 | { |
bart | 4bb53d8 | 2008-02-28 19:06:34 +0000 | [diff] [blame] | 120 | GenericErrInfo GEI; |
| 121 | VG_(maybe_record_error)(VG_(get_running_tid)(), |
| 122 | GenericErr, |
| 123 | VG_(get_IP)(VG_(get_running_tid)()), |
| 124 | "Not a mutex", |
| 125 | &GEI); |
| 126 | return 0; |
sewardj | 721ad7b | 2007-11-30 08:30:29 +0000 | [diff] [blame] | 127 | } |
bart | 4bb53d8 | 2008-02-28 19:06:34 +0000 | [diff] [blame] | 128 | |
bart | 72b751c | 2008-03-01 13:44:24 +0000 | [diff] [blame] | 129 | p = &clientobj_add(mutex, mutex + size, ClientMutex)->mutex; |
bart | 4bb53d8 | 2008-02-28 19:06:34 +0000 | [diff] [blame] | 130 | mutex_initialize(p, mutex, size, mutex_type); |
| 131 | return p; |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 132 | } |
| 133 | |
bart | 3b1ee45 | 2008-02-29 19:28:15 +0000 | [diff] [blame] | 134 | struct mutex_info* mutex_get(const Addr mutex) |
| 135 | { |
| 136 | tl_assert(offsetof(DrdClientobj, mutex) == 0); |
bart | 72b751c | 2008-03-01 13:44:24 +0000 | [diff] [blame] | 137 | return &clientobj_get(mutex, ClientMutex)->mutex; |
bart | 3b1ee45 | 2008-02-29 19:28:15 +0000 | [diff] [blame] | 138 | } |
| 139 | |
bart | 0034464 | 2008-03-01 15:27:41 +0000 | [diff] [blame] | 140 | /** Called before pthread_mutex_init(). */ |
sewardj | 721ad7b | 2007-11-30 08:30:29 +0000 | [diff] [blame] | 141 | struct mutex_info* |
| 142 | mutex_init(const Addr mutex, const SizeT size, const MutexT mutex_type) |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 143 | { |
bart | 0034464 | 2008-03-01 15:27:41 +0000 | [diff] [blame] | 144 | struct mutex_info* p; |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 145 | |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 146 | if (s_trace_mutex) |
| 147 | { |
bart | 3b1ee45 | 2008-02-29 19:28:15 +0000 | [diff] [blame] | 148 | VG_(message)(Vg_UserMsg, |
| 149 | "[%d/%d] mutex_init %s 0x%lx", |
| 150 | VG_(get_running_tid)(), |
| 151 | thread_get_running_tid(), |
sewardj | 347eeba | 2008-01-21 14:19:07 +0000 | [diff] [blame] | 152 | mutex_type_name(mutex_type), |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 153 | mutex); |
| 154 | } |
| 155 | |
bart | 0034464 | 2008-03-01 15:27:41 +0000 | [diff] [blame] | 156 | if (mutex_type == mutex_type_invalid_mutex) |
| 157 | { |
| 158 | GenericErrInfo GEI; |
| 159 | VG_(maybe_record_error)(VG_(get_running_tid)(), |
| 160 | GenericErr, |
| 161 | VG_(get_IP)(VG_(get_running_tid)()), |
| 162 | "Invalid mutex", |
| 163 | &GEI); |
| 164 | return 0; |
| 165 | } |
| 166 | |
| 167 | p = mutex_get(mutex); |
| 168 | if (p) |
sewardj | 347eeba | 2008-01-21 14:19:07 +0000 | [diff] [blame] | 169 | { |
| 170 | const ThreadId vg_tid = VG_(get_running_tid)(); |
| 171 | MutexErrInfo MEI |
bart | 0034464 | 2008-03-01 15:27:41 +0000 | [diff] [blame] | 172 | = { p->a1, p->recursion_count, p->owner }; |
sewardj | 347eeba | 2008-01-21 14:19:07 +0000 | [diff] [blame] | 173 | VG_(maybe_record_error)(vg_tid, |
| 174 | MutexErr, |
| 175 | VG_(get_IP)(vg_tid), |
| 176 | "Mutex reinitialization", |
| 177 | &MEI); |
bart | 0034464 | 2008-03-01 15:27:41 +0000 | [diff] [blame] | 178 | return p; |
sewardj | 347eeba | 2008-01-21 14:19:07 +0000 | [diff] [blame] | 179 | } |
bart | 0034464 | 2008-03-01 15:27:41 +0000 | [diff] [blame] | 180 | p = mutex_get_or_allocate(mutex, size, mutex_type); |
sewardj | 347eeba | 2008-01-21 14:19:07 +0000 | [diff] [blame] | 181 | |
bart | 0034464 | 2008-03-01 15:27:41 +0000 | [diff] [blame] | 182 | return p; |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 183 | } |
| 184 | |
bart | 46d5f17 | 2008-02-28 19:49:37 +0000 | [diff] [blame] | 185 | /** Called after pthread_mutex_destroy(). */ |
sewardj | 347eeba | 2008-01-21 14:19:07 +0000 | [diff] [blame] | 186 | void mutex_post_destroy(const Addr mutex) |
| 187 | { |
bart | 72b751c | 2008-03-01 13:44:24 +0000 | [diff] [blame] | 188 | struct mutex_info* p; |
sewardj | 347eeba | 2008-01-21 14:19:07 +0000 | [diff] [blame] | 189 | |
bart | 72b751c | 2008-03-01 13:44:24 +0000 | [diff] [blame] | 190 | p = mutex_get(mutex); |
| 191 | if (p == 0) |
| 192 | { |
| 193 | GenericErrInfo GEI; |
| 194 | VG_(maybe_record_error)(VG_(get_running_tid)(), |
| 195 | GenericErr, |
| 196 | VG_(get_IP)(VG_(get_running_tid)()), |
| 197 | "Not a mutex", |
| 198 | &GEI); |
| 199 | return; |
| 200 | } |
| 201 | |
| 202 | clientobj_remove(mutex, ClientMutex); |
sewardj | 347eeba | 2008-01-21 14:19:07 +0000 | [diff] [blame] | 203 | } |
| 204 | |
bart | 8bba1f7 | 2008-02-27 16:13:05 +0000 | [diff] [blame] | 205 | /** Called before pthread_mutex_lock() is invoked. If a data structure for |
| 206 | * the client-side object was not yet created, do this now. Also check whether |
| 207 | * an attempt is made to lock recursively a synchronization object that must |
| 208 | * not be locked recursively. |
| 209 | */ |
| 210 | void mutex_pre_lock(const Addr mutex, const SizeT size, MutexT mutex_type) |
| 211 | { |
bart | 635cb16 | 2008-02-28 08:30:43 +0000 | [diff] [blame] | 212 | struct mutex_info* p; |
| 213 | |
| 214 | p = mutex_get(mutex); |
bart | 0034464 | 2008-03-01 15:27:41 +0000 | [diff] [blame] | 215 | |
| 216 | if (s_trace_mutex) |
| 217 | { |
| 218 | VG_(message)(Vg_UserMsg, |
| 219 | "[%d/%d] pre_mutex_lock %s 0x%lx rc %d owner %d", |
| 220 | VG_(get_running_tid)(), |
| 221 | thread_get_running_tid(), |
| 222 | p ? mutex_get_typename(p) : "(?)", |
| 223 | mutex, |
| 224 | p ? p->recursion_count : 0, |
| 225 | p ? p->owner : VG_INVALID_THREADID); |
| 226 | } |
| 227 | |
| 228 | if (mutex_type == mutex_type_invalid_mutex) |
| 229 | { |
| 230 | GenericErrInfo GEI; |
| 231 | VG_(maybe_record_error)(VG_(get_running_tid)(), |
| 232 | GenericErr, |
| 233 | VG_(get_IP)(VG_(get_running_tid)()), |
| 234 | "Invalid mutex", |
| 235 | &GEI); |
| 236 | return; |
| 237 | } |
| 238 | |
bart | 8bba1f7 | 2008-02-27 16:13:05 +0000 | [diff] [blame] | 239 | if (p == 0) |
| 240 | { |
bart | 0034464 | 2008-03-01 15:27:41 +0000 | [diff] [blame] | 241 | p = mutex_init(mutex, size, mutex_type); |
bart | 8bba1f7 | 2008-02-27 16:13:05 +0000 | [diff] [blame] | 242 | } |
bart | 635cb16 | 2008-02-28 08:30:43 +0000 | [diff] [blame] | 243 | |
bart | 8bba1f7 | 2008-02-27 16:13:05 +0000 | [diff] [blame] | 244 | tl_assert(p); |
| 245 | |
| 246 | if (p->owner == thread_get_running_tid() |
| 247 | && p->recursion_count >= 1 |
| 248 | && mutex_type != mutex_type_recursive_mutex) |
| 249 | { |
bart | 4bb53d8 | 2008-02-28 19:06:34 +0000 | [diff] [blame] | 250 | MutexErrInfo MEI = { p->a1, p->recursion_count, p->owner }; |
bart | 8bba1f7 | 2008-02-27 16:13:05 +0000 | [diff] [blame] | 251 | VG_(maybe_record_error)(VG_(get_running_tid)(), |
| 252 | MutexErr, |
| 253 | VG_(get_IP)(VG_(get_running_tid)()), |
| 254 | "Recursive locking not allowed", |
| 255 | &MEI); |
| 256 | } |
| 257 | } |
| 258 | |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 259 | /** |
| 260 | * Update mutex_info state when locking the pthread_mutex_t mutex. |
| 261 | * Note: this function must be called after pthread_mutex_lock() has been |
| 262 | * called, or a race condition is triggered ! |
| 263 | */ |
bart | 0034464 | 2008-03-01 15:27:41 +0000 | [diff] [blame] | 264 | int mutex_post_lock(const Addr mutex, const Bool took_lock) |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 265 | { |
bart | 3b1ee45 | 2008-02-29 19:28:15 +0000 | [diff] [blame] | 266 | const DrdThreadId drd_tid = thread_get_running_tid(); |
bart | 0034464 | 2008-03-01 15:27:41 +0000 | [diff] [blame] | 267 | struct mutex_info* p; |
| 268 | |
| 269 | p = mutex_get(mutex); |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 270 | |
| 271 | if (s_trace_mutex) |
| 272 | { |
bart | 3b1ee45 | 2008-02-29 19:28:15 +0000 | [diff] [blame] | 273 | VG_(message)(Vg_UserMsg, |
| 274 | "[%d/%d] post_mutex_lock %s 0x%lx rc %d owner %d", |
| 275 | VG_(get_running_tid)(), |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 276 | drd_tid, |
bart | 0034464 | 2008-03-01 15:27:41 +0000 | [diff] [blame] | 277 | p ? mutex_get_typename(p) : "(?)", |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 278 | mutex, |
| 279 | p ? p->recursion_count : 0, |
| 280 | p ? p->owner : VG_INVALID_THREADID); |
| 281 | } |
| 282 | |
bart | ab7a644 | 2008-02-25 19:46:14 +0000 | [diff] [blame] | 283 | if (p == 0) |
| 284 | { |
bart | ab7a644 | 2008-02-25 19:46:14 +0000 | [diff] [blame] | 285 | return 0; |
| 286 | } |
| 287 | |
bart | 3b1ee45 | 2008-02-29 19:28:15 +0000 | [diff] [blame] | 288 | if (! took_lock) |
| 289 | return p->recursion_count; |
bart | 5357fcb | 2008-02-27 15:46:00 +0000 | [diff] [blame] | 290 | |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 291 | if (p->recursion_count == 0) |
| 292 | { |
| 293 | p->owner = drd_tid; |
| 294 | s_mutex_lock_count++; |
| 295 | } |
| 296 | else if (p->owner != drd_tid) |
| 297 | { |
bart | 3b1ee45 | 2008-02-29 19:28:15 +0000 | [diff] [blame] | 298 | VG_(message)(Vg_UserMsg, |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 299 | "The impossible happened: mutex 0x%lx is locked" |
| 300 | " simultaneously by two threads (recursion count %d," |
| 301 | " owners %d and %d) !", |
bart | 4bb53d8 | 2008-02-28 19:06:34 +0000 | [diff] [blame] | 302 | p->a1, p->recursion_count, p->owner, drd_tid); |
sewardj | 347eeba | 2008-01-21 14:19:07 +0000 | [diff] [blame] | 303 | p->owner = drd_tid; |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 304 | } |
| 305 | p->recursion_count++; |
| 306 | |
| 307 | if (p->recursion_count == 1) |
| 308 | { |
bart | ab7a644 | 2008-02-25 19:46:14 +0000 | [diff] [blame] | 309 | const DrdThreadId last_owner = p->owner; |
| 310 | |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 311 | if (last_owner != drd_tid && last_owner != DRD_INVALID_THREADID) |
| 312 | thread_combine_vc2(drd_tid, mutex_get_last_vc(mutex)); |
| 313 | thread_new_segment(drd_tid); |
| 314 | } |
| 315 | |
| 316 | return p->recursion_count; |
| 317 | } |
| 318 | |
| 319 | /** |
| 320 | * Update mutex_info state when unlocking the pthread_mutex_t mutex. |
| 321 | * Note: this function must be called before pthread_mutex_unlock() is called, |
| 322 | * or a race condition is triggered ! |
bart | b78312c | 2008-02-29 11:00:17 +0000 | [diff] [blame] | 323 | * @return New value of the mutex recursion count. |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 324 | * @param mutex Pointer to pthread_mutex_t data structure in the client space. |
| 325 | * @param tid ThreadId of the thread calling pthread_mutex_unlock(). |
| 326 | * @param vc Pointer to the current vector clock of thread tid. |
| 327 | */ |
sewardj | 721ad7b | 2007-11-30 08:30:29 +0000 | [diff] [blame] | 328 | int mutex_unlock(const Addr mutex, const MutexT mutex_type) |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 329 | { |
bart | b78312c | 2008-02-29 11:00:17 +0000 | [diff] [blame] | 330 | const DrdThreadId drd_tid = thread_get_running_tid(); |
| 331 | const ThreadId vg_tid = VG_(get_running_tid)(); |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 332 | const VectorClock* const vc = thread_get_vc(drd_tid); |
| 333 | struct mutex_info* const p = mutex_get(mutex); |
| 334 | |
bart | b78312c | 2008-02-29 11:00:17 +0000 | [diff] [blame] | 335 | if (s_trace_mutex && p != 0) |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 336 | { |
bart | 3b1ee45 | 2008-02-29 19:28:15 +0000 | [diff] [blame] | 337 | VG_(message)(Vg_UserMsg, |
| 338 | "[%d/%d] mutex_unlock %s 0x%lx rc %d", |
| 339 | vg_tid, |
| 340 | drd_tid, |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 341 | mutex_get_typename(p), |
| 342 | mutex, |
| 343 | p->recursion_count, |
| 344 | p->owner); |
| 345 | } |
| 346 | |
bart | 635cb16 | 2008-02-28 08:30:43 +0000 | [diff] [blame] | 347 | if (mutex_type == mutex_type_invalid_mutex) |
| 348 | { |
| 349 | GenericErrInfo GEI; |
| 350 | VG_(maybe_record_error)(VG_(get_running_tid)(), |
| 351 | GenericErr, |
| 352 | VG_(get_IP)(VG_(get_running_tid)()), |
| 353 | "Invalid mutex", |
| 354 | &GEI); |
bart | 0034464 | 2008-03-01 15:27:41 +0000 | [diff] [blame] | 355 | return 0; |
bart | 635cb16 | 2008-02-28 08:30:43 +0000 | [diff] [blame] | 356 | } |
| 357 | |
bart | 5357fcb | 2008-02-27 15:46:00 +0000 | [diff] [blame] | 358 | if (p == 0) |
bart | ab7a644 | 2008-02-25 19:46:14 +0000 | [diff] [blame] | 359 | { |
bart | e883bc8 | 2008-02-26 19:13:04 +0000 | [diff] [blame] | 360 | GenericErrInfo GEI; |
bart | ab7a644 | 2008-02-25 19:46:14 +0000 | [diff] [blame] | 361 | VG_(maybe_record_error)(vg_tid, |
bart | e883bc8 | 2008-02-26 19:13:04 +0000 | [diff] [blame] | 362 | GenericErr, |
bart | ab7a644 | 2008-02-25 19:46:14 +0000 | [diff] [blame] | 363 | VG_(get_IP)(vg_tid), |
| 364 | "Not a mutex", |
bart | e883bc8 | 2008-02-26 19:13:04 +0000 | [diff] [blame] | 365 | &GEI); |
bart | ab7a644 | 2008-02-25 19:46:14 +0000 | [diff] [blame] | 366 | return 0; |
| 367 | } |
| 368 | |
bart | 5357fcb | 2008-02-27 15:46:00 +0000 | [diff] [blame] | 369 | if (p->owner == DRD_INVALID_THREADID) |
| 370 | { |
bart | 4bb53d8 | 2008-02-28 19:06:34 +0000 | [diff] [blame] | 371 | MutexErrInfo MEI = { p->a1, p->recursion_count, p->owner }; |
bart | 5357fcb | 2008-02-27 15:46:00 +0000 | [diff] [blame] | 372 | VG_(maybe_record_error)(vg_tid, |
| 373 | MutexErr, |
| 374 | VG_(get_IP)(vg_tid), |
| 375 | "Mutex not locked", |
| 376 | &MEI); |
| 377 | return 0; |
| 378 | } |
| 379 | |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 380 | tl_assert(p); |
bart | 5357fcb | 2008-02-27 15:46:00 +0000 | [diff] [blame] | 381 | if (p->mutex_type != mutex_type) |
| 382 | { |
bart | 3b1ee45 | 2008-02-29 19:28:15 +0000 | [diff] [blame] | 383 | VG_(message)(Vg_UserMsg, "??? mutex %p: type changed from %d into %d", |
bart | 4bb53d8 | 2008-02-28 19:06:34 +0000 | [diff] [blame] | 384 | p->a1, p->mutex_type, mutex_type); |
bart | 5357fcb | 2008-02-27 15:46:00 +0000 | [diff] [blame] | 385 | } |
sewardj | 721ad7b | 2007-11-30 08:30:29 +0000 | [diff] [blame] | 386 | tl_assert(p->mutex_type == mutex_type); |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 387 | tl_assert(p->owner != DRD_INVALID_THREADID); |
sewardj | 721ad7b | 2007-11-30 08:30:29 +0000 | [diff] [blame] | 388 | |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 389 | if (p->owner != drd_tid) |
| 390 | { |
bart | 4bb53d8 | 2008-02-28 19:06:34 +0000 | [diff] [blame] | 391 | MutexErrInfo MEI = { p->a1, p->recursion_count, p->owner }; |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 392 | VG_(maybe_record_error)(vg_tid, |
| 393 | MutexErr, |
| 394 | VG_(get_IP)(vg_tid), |
| 395 | "Mutex not unlocked by owner thread", |
| 396 | &MEI); |
| 397 | } |
| 398 | p->recursion_count--; |
sewardj | 347eeba | 2008-01-21 14:19:07 +0000 | [diff] [blame] | 399 | if (p->recursion_count < 0) |
| 400 | { |
| 401 | MutexErrInfo MEI |
bart | 4bb53d8 | 2008-02-28 19:06:34 +0000 | [diff] [blame] | 402 | = { p->a1, p->recursion_count, p->owner }; |
sewardj | 347eeba | 2008-01-21 14:19:07 +0000 | [diff] [blame] | 403 | VG_(maybe_record_error)(vg_tid, |
| 404 | MutexErr, |
| 405 | VG_(get_IP)(vg_tid), |
| 406 | "Attempt to unlock a mutex that is not locked", |
| 407 | &MEI); |
| 408 | p->recursion_count = 0; |
| 409 | } |
| 410 | |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 411 | if (p->recursion_count == 0) |
| 412 | { |
| 413 | /* This pthread_mutex_unlock() call really unlocks the mutex. Save the */ |
| 414 | /* current vector clock of the thread such that it is available when */ |
| 415 | /* this mutex is locked again. */ |
bart | 301c311 | 2008-02-24 18:22:37 +0000 | [diff] [blame] | 416 | vc_assign(&p->vc, vc); |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 417 | |
| 418 | thread_new_segment(drd_tid); |
| 419 | } |
| 420 | return p->recursion_count; |
| 421 | } |
| 422 | |
| 423 | const char* mutex_get_typename(struct mutex_info* const p) |
| 424 | { |
| 425 | tl_assert(p); |
sewardj | 721ad7b | 2007-11-30 08:30:29 +0000 | [diff] [blame] | 426 | |
sewardj | 347eeba | 2008-01-21 14:19:07 +0000 | [diff] [blame] | 427 | return mutex_type_name(p->mutex_type); |
| 428 | } |
| 429 | |
| 430 | const char* mutex_type_name(const MutexT mt) |
| 431 | { |
| 432 | switch (mt) |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 433 | { |
bart | 635cb16 | 2008-02-28 08:30:43 +0000 | [diff] [blame] | 434 | case mutex_type_invalid_mutex: |
| 435 | return "invalid mutex"; |
bart | 5357fcb | 2008-02-27 15:46:00 +0000 | [diff] [blame] | 436 | case mutex_type_recursive_mutex: |
| 437 | return "recursive mutex"; |
| 438 | case mutex_type_errorcheck_mutex: |
| 439 | return "error checking mutex"; |
| 440 | case mutex_type_default_mutex: |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 441 | return "mutex"; |
sewardj | 721ad7b | 2007-11-30 08:30:29 +0000 | [diff] [blame] | 442 | case mutex_type_spinlock: |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 443 | return "spinlock"; |
| 444 | default: |
| 445 | tl_assert(0); |
| 446 | } |
| 447 | return "?"; |
| 448 | } |
| 449 | |
bart | 5357fcb | 2008-02-27 15:46:00 +0000 | [diff] [blame] | 450 | /** Return true if the specified mutex is locked by any thread. */ |
| 451 | static Bool mutex_is_locked(struct mutex_info* const p) |
| 452 | { |
| 453 | tl_assert(p); |
| 454 | return (p->recursion_count > 0); |
| 455 | } |
| 456 | |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 457 | Bool mutex_is_locked_by(const Addr mutex, const DrdThreadId tid) |
| 458 | { |
| 459 | struct mutex_info* const p = mutex_get(mutex); |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 460 | if (p) |
| 461 | { |
| 462 | return (p->recursion_count > 0 && p->owner == tid); |
| 463 | } |
| 464 | return False; |
| 465 | } |
| 466 | |
| 467 | const VectorClock* mutex_get_last_vc(const Addr mutex) |
| 468 | { |
| 469 | struct mutex_info* const p = mutex_get(mutex); |
| 470 | return p ? &p->vc : 0; |
| 471 | } |
| 472 | |
| 473 | int mutex_get_recursion_count(const Addr mutex) |
| 474 | { |
| 475 | struct mutex_info* const p = mutex_get(mutex); |
| 476 | tl_assert(p); |
| 477 | return p->recursion_count; |
| 478 | } |
| 479 | |
| 480 | /** |
bart | 301c311 | 2008-02-24 18:22:37 +0000 | [diff] [blame] | 481 | * Call this function when thread tid stops to exist, such that the |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 482 | * "last owner" field can be cleared if it still refers to that thread. |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 483 | */ |
bart | 301c311 | 2008-02-24 18:22:37 +0000 | [diff] [blame] | 484 | void mutex_thread_delete(const DrdThreadId tid) |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 485 | { |
bart | 4bb53d8 | 2008-02-28 19:06:34 +0000 | [diff] [blame] | 486 | struct mutex_info* p; |
| 487 | |
bart | 72b751c | 2008-03-01 13:44:24 +0000 | [diff] [blame] | 488 | clientobj_resetiter(); |
| 489 | for ( ; (p = &clientobj_next(ClientMutex)->mutex) != 0; ) |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 490 | { |
bart | 4bb53d8 | 2008-02-28 19:06:34 +0000 | [diff] [blame] | 491 | if (p->owner == tid && p->recursion_count > 0) |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 492 | { |
bart | 5357fcb | 2008-02-27 15:46:00 +0000 | [diff] [blame] | 493 | MutexErrInfo MEI |
bart | 4bb53d8 | 2008-02-28 19:06:34 +0000 | [diff] [blame] | 494 | = { p->a1, p->recursion_count, p->owner }; |
bart | 5357fcb | 2008-02-27 15:46:00 +0000 | [diff] [blame] | 495 | VG_(maybe_record_error)(VG_(get_running_tid)(), |
| 496 | MutexErr, |
| 497 | VG_(get_IP)(VG_(get_running_tid)()), |
| 498 | "Mutex still locked at thread exit", |
| 499 | &MEI); |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 500 | p->owner = VG_INVALID_THREADID; |
| 501 | } |
| 502 | } |
| 503 | } |
| 504 | |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 505 | ULong get_mutex_lock_count(void) |
| 506 | { |
| 507 | return s_mutex_lock_count; |
| 508 | } |
sewardj | 347eeba | 2008-01-21 14:19:07 +0000 | [diff] [blame] | 509 | |
| 510 | |
| 511 | /* |
| 512 | * Local variables: |
| 513 | * c-basic-offset: 3 |
| 514 | * End: |
| 515 | */ |