blob: 1713bfd789618a8c8befe77ecdadc8d86963ffca [file] [log] [blame]
njn5c004e42002-11-18 11:04:50 +00001
2/*--------------------------------------------------------------------*/
3/*--- Code that is shared between MemCheck and AddrCheck. ---*/
njn43c799e2003-04-08 00:08:52 +00004/*--- mac_needs.c ---*/
njn5c004e42002-11-18 11:04:50 +00005/*--------------------------------------------------------------------*/
6
7/*
8 This file is part of MemCheck, a heavyweight Valgrind skin for
9 detecting memory errors, and AddrCheck, a lightweight Valgrind skin
10 for detecting memory errors.
11
njn0e1b5142003-04-15 14:58:06 +000012 Copyright (C) 2000-2003 Julian Seward
njn5c004e42002-11-18 11:04:50 +000013 jseward@acm.org
14
15 This program is free software; you can redistribute it and/or
16 modify it under the terms of the GNU General Public License as
17 published by the Free Software Foundation; either version 2 of the
18 License, or (at your option) any later version.
19
20 This program is distributed in the hope that it will be useful, but
21 WITHOUT ANY WARRANTY; without even the implied warranty of
22 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
23 General Public License for more details.
24
25 You should have received a copy of the GNU General Public License
26 along with this program; if not, write to the Free Software
27 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
28 02111-1307, USA.
29
30 The GNU General Public License is contained in the file COPYING.
31*/
32
33
njn43c799e2003-04-08 00:08:52 +000034#include "mac_shared.h"
njn5c004e42002-11-18 11:04:50 +000035
njn47363ab2003-04-21 13:24:40 +000036#include "memcheck.h" /* for VG_USERREQ__* */
37
njn5c004e42002-11-18 11:04:50 +000038/*------------------------------------------------------------*/
39/*--- Defns ---*/
40/*------------------------------------------------------------*/
41
42/* These many bytes below %ESP are considered addressible if we're
43 doing the --workaround-gcc296-bugs hack. */
44#define VG_GCC296_BUG_STACK_SLOP 1024
45
46/*------------------------------------------------------------*/
47/*--- Command line options ---*/
48/*------------------------------------------------------------*/
49
njn43c799e2003-04-08 00:08:52 +000050Bool MAC_(clo_partial_loads_ok) = True;
51Int MAC_(clo_freelist_vol) = 1000000;
52Bool MAC_(clo_leak_check) = False;
53VgRes MAC_(clo_leak_resolution) = Vg_LowRes;
54Bool MAC_(clo_show_reachable) = False;
55Bool MAC_(clo_workaround_gcc296_bugs) = False;
njn5c004e42002-11-18 11:04:50 +000056
njn43c799e2003-04-08 00:08:52 +000057Bool MAC_(process_common_cmd_line_option)(Char* arg)
njn5c004e42002-11-18 11:04:50 +000058{
njn43c799e2003-04-08 00:08:52 +000059 if (VG_CLO_STREQ(arg, "--partial-loads-ok=yes"))
60 MAC_(clo_partial_loads_ok) = True;
61 else if (VG_CLO_STREQ(arg, "--partial-loads-ok=no"))
62 MAC_(clo_partial_loads_ok) = False;
njn5c004e42002-11-18 11:04:50 +000063
njn43c799e2003-04-08 00:08:52 +000064 else if (VG_CLO_STREQN(15, arg, "--freelist-vol=")) {
65 MAC_(clo_freelist_vol) = (Int)VG_(atoll)(&arg[15]);
66 if (MAC_(clo_freelist_vol) < 0) MAC_(clo_freelist_vol) = 0;
njn5c004e42002-11-18 11:04:50 +000067 }
68
njn43c799e2003-04-08 00:08:52 +000069 else if (VG_CLO_STREQ(arg, "--leak-check=yes"))
70 MAC_(clo_leak_check) = True;
71 else if (VG_CLO_STREQ(arg, "--leak-check=no"))
72 MAC_(clo_leak_check) = False;
njn5c004e42002-11-18 11:04:50 +000073
njn43c799e2003-04-08 00:08:52 +000074 else if (VG_CLO_STREQ(arg, "--leak-resolution=low"))
75 MAC_(clo_leak_resolution) = Vg_LowRes;
76 else if (VG_CLO_STREQ(arg, "--leak-resolution=med"))
77 MAC_(clo_leak_resolution) = Vg_MedRes;
78 else if (VG_CLO_STREQ(arg, "--leak-resolution=high"))
79 MAC_(clo_leak_resolution) = Vg_HighRes;
njn5c004e42002-11-18 11:04:50 +000080
njn43c799e2003-04-08 00:08:52 +000081 else if (VG_CLO_STREQ(arg, "--show-reachable=yes"))
82 MAC_(clo_show_reachable) = True;
83 else if (VG_CLO_STREQ(arg, "--show-reachable=no"))
84 MAC_(clo_show_reachable) = False;
njn5c004e42002-11-18 11:04:50 +000085
njn43c799e2003-04-08 00:08:52 +000086 else if (VG_CLO_STREQ(arg, "--workaround-gcc296-bugs=yes"))
87 MAC_(clo_workaround_gcc296_bugs) = True;
88 else if (VG_CLO_STREQ(arg, "--workaround-gcc296-bugs=no"))
89 MAC_(clo_workaround_gcc296_bugs) = False;
njn5c004e42002-11-18 11:04:50 +000090
91 else
njn3e884182003-04-15 13:03:23 +000092 return VG_(replacement_malloc_process_cmd_line_option)(arg);
njn5c004e42002-11-18 11:04:50 +000093
94 return True;
njn43c799e2003-04-08 00:08:52 +000095}
njn5c004e42002-11-18 11:04:50 +000096
njn3e884182003-04-15 13:03:23 +000097void MAC_(print_common_usage)(void)
njn43c799e2003-04-08 00:08:52 +000098{
njn3e884182003-04-15 13:03:23 +000099 VG_(printf)(
100" --partial-loads-ok=no|yes too hard to explain here; see manual [yes]\n"
101" --freelist-vol=<number> volume of freed blocks queue [1000000]\n"
102" --leak-check=no|yes search for memory leaks at exit? [no]\n"
103" --leak-resolution=low|med|high how much bt merging in leak check [low]\n"
104" --show-reachable=no|yes show reachable blocks in leak check? [no]\n"
105" --workaround-gcc296-bugs=no|yes self explanatory [no]\n"
106 );
107 VG_(replacement_malloc_print_usage)();
njn43c799e2003-04-08 00:08:52 +0000108}
109
njn3e884182003-04-15 13:03:23 +0000110void MAC_(print_common_debug_usage)(void)
njn43c799e2003-04-08 00:08:52 +0000111{
njn3e884182003-04-15 13:03:23 +0000112 VG_(replacement_malloc_print_debug_usage)();
njn5c004e42002-11-18 11:04:50 +0000113}
114
115/*------------------------------------------------------------*/
116/*--- Comparing and printing errors ---*/
117/*------------------------------------------------------------*/
118
119static __inline__
120void clear_AddrInfo ( AddrInfo* ai )
121{
122 ai->akind = Unknown;
123 ai->blksize = 0;
124 ai->rwoffset = 0;
125 ai->lastchange = NULL;
126 ai->stack_tid = VG_INVALID_THREADID;
127 ai->maybe_gcc = False;
128}
129
njn43c799e2003-04-08 00:08:52 +0000130void MAC_(clear_MAC_Error) ( MAC_Error* err_extra )
njn5c004e42002-11-18 11:04:50 +0000131{
132 err_extra->axskind = ReadAxs;
133 err_extra->size = 0;
134 clear_AddrInfo ( &err_extra->addrinfo );
135 err_extra->isWrite = False;
136}
137
138__attribute__ ((unused))
139static Bool eq_AddrInfo ( VgRes res, AddrInfo* ai1, AddrInfo* ai2 )
140{
141 if (ai1->akind != Undescribed
142 && ai2->akind != Undescribed
143 && ai1->akind != ai2->akind)
144 return False;
145 if (ai1->akind == Freed || ai1->akind == Mallocd) {
146 if (ai1->blksize != ai2->blksize)
147 return False;
148 if (!VG_(eq_ExeContext)(res, ai1->lastchange, ai2->lastchange))
149 return False;
150 }
151 return True;
152}
153
154/* Compare error contexts, to detect duplicates. Note that if they
155 are otherwise the same, the faulting addrs and associated rwoffsets
156 are allowed to be different. */
157
158Bool SK_(eq_SkinError) ( VgRes res, Error* e1, Error* e2 )
159{
njn43c799e2003-04-08 00:08:52 +0000160 MAC_Error* e1_extra = VG_(get_error_extra)(e1);
161 MAC_Error* e2_extra = VG_(get_error_extra)(e2);
njn7cc53a82002-11-19 16:19:32 +0000162
163 /* Guaranteed by calling function */
164 sk_assert(VG_(get_error_kind)(e1) == VG_(get_error_kind)(e2));
njn5c004e42002-11-18 11:04:50 +0000165
166 switch (VG_(get_error_kind)(e1)) {
167 case CoreMemErr: {
168 Char *e1s, *e2s;
169 if (e1_extra->isWrite != e2_extra->isWrite) return False;
njn5c004e42002-11-18 11:04:50 +0000170 e1s = VG_(get_error_string)(e1);
171 e2s = VG_(get_error_string)(e2);
172 if (e1s == e2s) return True;
173 if (0 == VG_(strcmp)(e1s, e2s)) return True;
174 return False;
175 }
176
177 case UserErr:
178 case ParamErr:
179 if (e1_extra->isWrite != e2_extra->isWrite) return False;
180 if (VG_(get_error_kind)(e1) == ParamErr
181 && 0 != VG_(strcmp)(VG_(get_error_string)(e1),
182 VG_(get_error_string)(e2))) return False;
183 return True;
184
185 case FreeErr:
186 case FreeMismatchErr:
187 /* JRS 2002-Aug-26: comparing addrs seems overkill and can
188 cause excessive duplication of errors. Not even AddrErr
189 below does that. So don't compare either the .addr field
190 or the .addrinfo fields. */
191 /* if (e1->addr != e2->addr) return False; */
192 /* if (!eq_AddrInfo(res, &e1_extra->addrinfo, &e2_extra->addrinfo))
193 return False;
194 */
195 return True;
196
197 case AddrErr:
198 /* if (e1_extra->axskind != e2_extra->axskind) return False; */
199 if (e1_extra->size != e2_extra->size) return False;
200 /*
201 if (!eq_AddrInfo(res, &e1_extra->addrinfo, &e2_extra->addrinfo))
202 return False;
203 */
204 return True;
205
206 case ValueErr:
207 if (e1_extra->size != e2_extra->size) return False;
208 return True;
209
njn34419c12003-05-02 17:24:29 +0000210 case OverlapErr:
211 return True;
212
njn43c799e2003-04-08 00:08:52 +0000213 case LeakErr:
214 VG_(skin_panic)("Shouldn't get LeakErr in SK_(eq_SkinError),\n"
215 "since it's handled with VG_(unique_error)()!");
216
njn5c004e42002-11-18 11:04:50 +0000217 default:
218 VG_(printf)("Error:\n unknown error code %d\n",
219 VG_(get_error_kind)(e1));
220 VG_(skin_panic)("unknown error code in SK_(eq_SkinError)");
221 }
222}
223
njn43c799e2003-04-08 00:08:52 +0000224void MAC_(pp_AddrInfo) ( Addr a, AddrInfo* ai )
njn5c004e42002-11-18 11:04:50 +0000225{
226 switch (ai->akind) {
227 case Stack:
228 VG_(message)(Vg_UserMsg,
229 " Address 0x%x is on thread %d's stack",
230 a, ai->stack_tid);
231 break;
232 case Unknown:
233 if (ai->maybe_gcc) {
234 VG_(message)(Vg_UserMsg,
235 " Address 0x%x is just below %%esp. Possibly a bug in GCC/G++",
236 a);
237 VG_(message)(Vg_UserMsg,
238 " v 2.96 or 3.0.X. To suppress, use: --workaround-gcc296-bugs=yes");
239 } else {
240 VG_(message)(Vg_UserMsg,
241 " Address 0x%x is not stack'd, malloc'd or free'd", a);
242 }
243 break;
sewardja81709d2002-12-28 12:55:48 +0000244 case Freed: case Mallocd: case UserG: {
njn5c004e42002-11-18 11:04:50 +0000245 UInt delta;
246 UChar* relative;
247 if (ai->rwoffset < 0) {
248 delta = (UInt)(- ai->rwoffset);
249 relative = "before";
250 } else if (ai->rwoffset >= ai->blksize) {
251 delta = ai->rwoffset - ai->blksize;
252 relative = "after";
253 } else {
254 delta = ai->rwoffset;
255 relative = "inside";
256 }
sewardja81709d2002-12-28 12:55:48 +0000257 VG_(message)(Vg_UserMsg,
258 " Address 0x%x is %d bytes %s a block of size %d %s",
259 a, delta, relative,
260 ai->blksize,
261 ai->akind==Mallocd ? "alloc'd"
262 : ai->akind==Freed ? "free'd"
263 : "client-defined");
njn5c004e42002-11-18 11:04:50 +0000264 VG_(pp_ExeContext)(ai->lastchange);
265 break;
266 }
267 default:
njn43c799e2003-04-08 00:08:52 +0000268 VG_(skin_panic)("MAC_(pp_AddrInfo)");
269 }
270}
271
272/* This prints out the message for the error types where Memcheck and
273 Addrcheck have identical messages */
274void MAC_(pp_shared_SkinError) ( Error* err )
275{
276 MAC_Error* err_extra = VG_(get_error_extra)(err);
277
278 switch (VG_(get_error_kind)(err)) {
279 case FreeErr:
njn10785452003-05-20 16:38:24 +0000280 VG_(message)(Vg_UserMsg, "Invalid free() / delete / delete[]");
njn43c799e2003-04-08 00:08:52 +0000281 /* fall through */
282 case FreeMismatchErr:
283 if (VG_(get_error_kind)(err) == FreeMismatchErr)
284 VG_(message)(Vg_UserMsg,
285 "Mismatched free() / delete / delete []");
286 VG_(pp_ExeContext)( VG_(get_error_where)(err) );
287 MAC_(pp_AddrInfo)(VG_(get_error_address)(err), &err_extra->addrinfo);
288 break;
289
290 case LeakErr: {
291 /* Totally abusing the types of these spare fields... oh well. */
292 UInt n_this_record = (UInt)VG_(get_error_address)(err);
293 UInt n_total_records = (UInt)VG_(get_error_string) (err);
294
295 MAC_(pp_LeakError)(err_extra, n_this_record, n_total_records);
296 break;
297 }
298
299 default:
300 VG_(printf)("Error:\n unknown Memcheck/Addrcheck error code %d\n",
301 VG_(get_error_kind)(err));
302 VG_(skin_panic)("unknown error code in MAC_(pp_shared_SkinError)");
njn5c004e42002-11-18 11:04:50 +0000303 }
304}
305
306/*------------------------------------------------------------*/
307/*--- Recording errors ---*/
308/*------------------------------------------------------------*/
309
njn43c799e2003-04-08 00:08:52 +0000310/* Additional description function for describe_addr(); used by
311 MemCheck for user blocks, which Addrcheck doesn't support. */
312Bool (*MAC_(describe_addr_supp)) ( Addr a, AddrInfo* ai ) = NULL;
313
njn43c799e2003-04-08 00:08:52 +0000314/* Describe an address as best you can, for error messages,
315 putting the result in ai. */
316static void describe_addr ( Addr a, AddrInfo* ai )
317{
njn3e884182003-04-15 13:03:23 +0000318 MAC_Chunk* sc;
319 ThreadId tid;
njn43c799e2003-04-08 00:08:52 +0000320
321 /* Nested functions, yeah. Need the lexical scoping of 'a'. */
njn3e884182003-04-15 13:03:23 +0000322
njn43c799e2003-04-08 00:08:52 +0000323 /* Closure for searching thread stacks */
324 Bool addr_is_in_bounds(Addr stack_min, Addr stack_max)
325 {
326 return (stack_min <= a && a <= stack_max);
327 }
njn3e884182003-04-15 13:03:23 +0000328 /* Closure for searching free'd list */
329 Bool addr_is_in_MAC_Chunk(MAC_Chunk* mc)
njn43c799e2003-04-08 00:08:52 +0000330 {
njn3e884182003-04-15 13:03:23 +0000331 return VG_(addr_is_in_block)( a, mc->data, mc->size );
332 }
333 /* Closure for searching malloc'd lists */
334 Bool addr_is_in_HashNode(VgHashNode* sh_ch)
335 {
336 return addr_is_in_MAC_Chunk( (MAC_Chunk*)sh_ch );
njn43c799e2003-04-08 00:08:52 +0000337 }
338
339 /* Perhaps it's a user-def'd block ? (only check if requested, though) */
340 if (NULL != MAC_(describe_addr_supp)) {
341 if (MAC_(describe_addr_supp)( a, ai ))
342 return;
343 }
344 /* Perhaps it's on a thread's stack? */
345 tid = VG_(first_matching_thread_stack)(addr_is_in_bounds);
346 if (tid != VG_INVALID_THREADID) {
347 ai->akind = Stack;
348 ai->stack_tid = tid;
349 return;
350 }
351 /* Search for a recently freed block which might bracket it. */
njn3e884182003-04-15 13:03:23 +0000352 sc = MAC_(first_matching_freed_MAC_Chunk)(addr_is_in_MAC_Chunk);
353 if (NULL != sc) {
njn43c799e2003-04-08 00:08:52 +0000354 ai->akind = Freed;
njn3e884182003-04-15 13:03:23 +0000355 ai->blksize = sc->size;
356 ai->rwoffset = (Int)a - (Int)sc->data;
357 ai->lastchange = sc->where;
njn43c799e2003-04-08 00:08:52 +0000358 return;
359 }
360 /* Search for a currently malloc'd block which might bracket it. */
njn3e884182003-04-15 13:03:23 +0000361 sc = (MAC_Chunk*)VG_(HT_first_match)(MAC_(malloc_list), addr_is_in_HashNode);
njn43c799e2003-04-08 00:08:52 +0000362 if (NULL != sc) {
363 ai->akind = Mallocd;
njn3e884182003-04-15 13:03:23 +0000364 ai->blksize = sc->size;
365 ai->rwoffset = (Int)(a) - (Int)sc->data;
366 ai->lastchange = sc->where;
njn43c799e2003-04-08 00:08:52 +0000367 return;
368 }
369 /* Clueless ... */
370 ai->akind = Unknown;
371 return;
372}
373
njn5c004e42002-11-18 11:04:50 +0000374/* Is this address within some small distance below %ESP? Used only
375 for the --workaround-gcc296-bugs kludge. */
376static Bool is_just_below_ESP( Addr esp, Addr aa )
377{
378 if ((UInt)esp > (UInt)aa
379 && ((UInt)esp - (UInt)aa) <= VG_GCC296_BUG_STACK_SLOP)
380 return True;
381 else
382 return False;
383}
384
385/* This one called from generated code. */
386
njn43c799e2003-04-08 00:08:52 +0000387void MAC_(record_address_error) ( Addr a, Int size, Bool isWrite )
njn5c004e42002-11-18 11:04:50 +0000388{
njn43c799e2003-04-08 00:08:52 +0000389 MAC_Error err_extra;
390 Bool just_below_esp;
njn5c004e42002-11-18 11:04:50 +0000391
392 just_below_esp = is_just_below_ESP( VG_(get_stack_pointer)(), a );
393
394 /* If this is caused by an access immediately below %ESP, and the
395 user asks nicely, we just ignore it. */
njn43c799e2003-04-08 00:08:52 +0000396 if (MAC_(clo_workaround_gcc296_bugs) && just_below_esp)
njn5c004e42002-11-18 11:04:50 +0000397 return;
398
njn43c799e2003-04-08 00:08:52 +0000399 MAC_(clear_MAC_Error)( &err_extra );
njn5c004e42002-11-18 11:04:50 +0000400 err_extra.axskind = isWrite ? WriteAxs : ReadAxs;
401 err_extra.size = size;
402 err_extra.addrinfo.akind = Undescribed;
403 err_extra.addrinfo.maybe_gcc = just_below_esp;
404 VG_(maybe_record_error)( NULL, AddrErr, a, /*s*/NULL, &err_extra );
405}
406
407/* These ones are called from non-generated code */
408
409/* This is for memory errors in pthread functions, as opposed to pthread API
410 errors which are found by the core. */
njn43c799e2003-04-08 00:08:52 +0000411void MAC_(record_core_mem_error) ( ThreadState* tst, Bool isWrite, Char* msg )
njn5c004e42002-11-18 11:04:50 +0000412{
njn43c799e2003-04-08 00:08:52 +0000413 MAC_Error err_extra;
njn5c004e42002-11-18 11:04:50 +0000414
njn43c799e2003-04-08 00:08:52 +0000415 MAC_(clear_MAC_Error)( &err_extra );
njn5c004e42002-11-18 11:04:50 +0000416 err_extra.isWrite = isWrite;
417 VG_(maybe_record_error)( tst, CoreMemErr, /*addr*/0, msg, &err_extra );
418}
419
njn43c799e2003-04-08 00:08:52 +0000420void MAC_(record_param_error) ( ThreadState* tst, Addr a, Bool isWrite,
njn5c004e42002-11-18 11:04:50 +0000421 Char* msg )
422{
njn43c799e2003-04-08 00:08:52 +0000423 MAC_Error err_extra;
njn5c004e42002-11-18 11:04:50 +0000424
425 sk_assert(NULL != tst);
njn43c799e2003-04-08 00:08:52 +0000426 MAC_(clear_MAC_Error)( &err_extra );
njn5c004e42002-11-18 11:04:50 +0000427 err_extra.addrinfo.akind = Undescribed;
428 err_extra.isWrite = isWrite;
429 VG_(maybe_record_error)( tst, ParamErr, a, msg, &err_extra );
430}
431
njn43c799e2003-04-08 00:08:52 +0000432void MAC_(record_jump_error) ( ThreadState* tst, Addr a )
njn5c004e42002-11-18 11:04:50 +0000433{
njn43c799e2003-04-08 00:08:52 +0000434 MAC_Error err_extra;
njn5c004e42002-11-18 11:04:50 +0000435
436 sk_assert(NULL != tst);
437
njn43c799e2003-04-08 00:08:52 +0000438 MAC_(clear_MAC_Error)( &err_extra );
njn5c004e42002-11-18 11:04:50 +0000439 err_extra.axskind = ExecAxs;
440 err_extra.addrinfo.akind = Undescribed;
441 VG_(maybe_record_error)( tst, AddrErr, a, /*s*/NULL, &err_extra );
442}
443
njn43c799e2003-04-08 00:08:52 +0000444void MAC_(record_free_error) ( ThreadState* tst, Addr a )
njn5c004e42002-11-18 11:04:50 +0000445{
njn43c799e2003-04-08 00:08:52 +0000446 MAC_Error err_extra;
njn5c004e42002-11-18 11:04:50 +0000447
448 sk_assert(NULL != tst);
449
njn43c799e2003-04-08 00:08:52 +0000450 MAC_(clear_MAC_Error)( &err_extra );
njn5c004e42002-11-18 11:04:50 +0000451 err_extra.addrinfo.akind = Undescribed;
452 VG_(maybe_record_error)( tst, FreeErr, a, /*s*/NULL, &err_extra );
453}
454
njn43c799e2003-04-08 00:08:52 +0000455void MAC_(record_freemismatch_error) ( ThreadState* tst, Addr a )
njn5c004e42002-11-18 11:04:50 +0000456{
njn43c799e2003-04-08 00:08:52 +0000457 MAC_Error err_extra;
njn5c004e42002-11-18 11:04:50 +0000458
459 sk_assert(NULL != tst);
460
njn43c799e2003-04-08 00:08:52 +0000461 MAC_(clear_MAC_Error)( &err_extra );
njn5c004e42002-11-18 11:04:50 +0000462 err_extra.addrinfo.akind = Undescribed;
463 VG_(maybe_record_error)( tst, FreeMismatchErr, a, /*s*/NULL, &err_extra );
464}
465
njn43c799e2003-04-08 00:08:52 +0000466/* Updates the copy with address info if necessary (but not for LeakErrs). */
467UInt SK_(update_extra)( Error* err )
468{
469 MAC_Error* extra;
470
471 /* Don't need to return the correct size -- LeakErrs are always shown with
472 VG_(unique_error)() so they're not copied anyway. */
473 if (LeakErr == VG_(get_error_kind)(err))
474 return 0;
475
476 extra = (MAC_Error*)VG_(get_error_extra)(err);
477
478 if (extra != NULL && Undescribed == extra->addrinfo.akind) {
479 describe_addr ( VG_(get_error_address)(err), &(extra->addrinfo) );
480 }
481
482 return sizeof(MAC_Error);
483}
484
485
njn5c004e42002-11-18 11:04:50 +0000486/*------------------------------------------------------------*/
487/*--- Suppressions ---*/
488/*------------------------------------------------------------*/
489
njn43c799e2003-04-08 00:08:52 +0000490Bool MAC_(shared_recognised_suppression) ( Char* name, Supp* su )
491{
492 SuppKind skind;
493
494 if (VG_STREQ(name, "Param")) skind = ParamSupp;
495 else if (VG_STREQ(name, "CoreMem")) skind = CoreMemSupp;
496 else if (VG_STREQ(name, "Addr1")) skind = Addr1Supp;
497 else if (VG_STREQ(name, "Addr2")) skind = Addr2Supp;
498 else if (VG_STREQ(name, "Addr4")) skind = Addr4Supp;
499 else if (VG_STREQ(name, "Addr8")) skind = Addr8Supp;
njnc0616662003-06-12 09:58:41 +0000500 else if (VG_STREQ(name, "Addr16")) skind = Addr16Supp;
njn43c799e2003-04-08 00:08:52 +0000501 else if (VG_STREQ(name, "Free")) skind = FreeSupp;
502 else if (VG_STREQ(name, "Leak")) skind = LeakSupp;
503 else
504 return False;
505
506 VG_(set_supp_kind)(su, skind);
507 return True;
508}
509
njn5c004e42002-11-18 11:04:50 +0000510Bool SK_(read_extra_suppression_info) ( Int fd, Char* buf, Int nBuf, Supp *su )
511{
512 Bool eof;
513
514 if (VG_(get_supp_kind)(su) == ParamSupp) {
515 eof = VG_(get_line) ( fd, buf, nBuf );
516 if (eof) return False;
517 VG_(set_supp_string)(su, VG_(strdup)(buf));
518 }
519 return True;
520}
521
sewardj99aac972002-12-26 01:53:45 +0000522Bool SK_(error_matches_suppression)(Error* err, Supp* su)
njn5c004e42002-11-18 11:04:50 +0000523{
sewardj05bcdcb2003-05-18 10:05:38 +0000524 Int su_size;
njn43c799e2003-04-08 00:08:52 +0000525 MAC_Error* err_extra = VG_(get_error_extra)(err);
526 ErrorKind ekind = VG_(get_error_kind )(err);
njn5c004e42002-11-18 11:04:50 +0000527
528 switch (VG_(get_supp_kind)(su)) {
529 case ParamSupp:
530 return (ekind == ParamErr
njn43c799e2003-04-08 00:08:52 +0000531 && VG_STREQ(VG_(get_error_string)(err),
532 VG_(get_supp_string)(su)));
njn5c004e42002-11-18 11:04:50 +0000533
534 case CoreMemSupp:
535 return (ekind == CoreMemErr
njn43c799e2003-04-08 00:08:52 +0000536 && VG_STREQ(VG_(get_error_string)(err),
537 VG_(get_supp_string)(su)));
njn5c004e42002-11-18 11:04:50 +0000538
539 case Value0Supp: su_size = 0; goto value_case;
540 case Value1Supp: su_size = 1; goto value_case;
541 case Value2Supp: su_size = 2; goto value_case;
542 case Value4Supp: su_size = 4; goto value_case;
543 case Value8Supp: su_size = 8; goto value_case;
njnc0616662003-06-12 09:58:41 +0000544 case Value16Supp:su_size =16; goto value_case;
njn5c004e42002-11-18 11:04:50 +0000545 value_case:
546 return (ekind == ValueErr && err_extra->size == su_size);
547
548 case Addr1Supp: su_size = 1; goto addr_case;
549 case Addr2Supp: su_size = 2; goto addr_case;
550 case Addr4Supp: su_size = 4; goto addr_case;
551 case Addr8Supp: su_size = 8; goto addr_case;
njnc0616662003-06-12 09:58:41 +0000552 case Addr16Supp:su_size =16; goto addr_case;
njn5c004e42002-11-18 11:04:50 +0000553 addr_case:
554 return (ekind == AddrErr && err_extra->size == su_size);
555
556 case FreeSupp:
557 return (ekind == FreeErr || ekind == FreeMismatchErr);
558
njn34419c12003-05-02 17:24:29 +0000559 case OverlapSupp:
560 return (ekind = OverlapErr);
561
sewardj4a19e2f2002-12-26 11:50:21 +0000562 case LeakSupp:
njn43c799e2003-04-08 00:08:52 +0000563 return (ekind == LeakErr);
sewardj4a19e2f2002-12-26 11:50:21 +0000564
njn5c004e42002-11-18 11:04:50 +0000565 default:
566 VG_(printf)("Error:\n"
567 " unknown suppression type %d\n",
568 VG_(get_supp_kind)(su));
569 VG_(skin_panic)("unknown suppression type in "
570 "SK_(error_matches_suppression)");
571 }
572}
573
njn43c799e2003-04-08 00:08:52 +0000574Char* SK_(get_error_name) ( Error* err )
575{
576 Char* s;
577 switch (VG_(get_error_kind)(err)) {
578 case ParamErr: return "Param";
579 case UserErr: return NULL; /* Can't suppress User errors */
580 case FreeMismatchErr: return "Free";
581 case FreeErr: return "Free";
582 case AddrErr:
583 switch ( ((MAC_Error*)VG_(get_error_extra)(err))->size ) {
584 case 1: return "Addr1";
585 case 2: return "Addr2";
586 case 4: return "Addr4";
587 case 8: return "Addr8";
njnc0616662003-06-12 09:58:41 +0000588 case 16: return "Addr16";
njn43c799e2003-04-08 00:08:52 +0000589 default: VG_(skin_panic)("unexpected size for Addr");
590 }
591
592 case ValueErr:
593 switch ( ((MAC_Error*)VG_(get_error_extra)(err))->size ) {
594 case 0: return "Cond";
595 case 1: return "Value1";
596 case 2: return "Value2";
597 case 4: return "Value4";
598 case 8: return "Value8";
njnc0616662003-06-12 09:58:41 +0000599 case 16: return "Value16";
njn43c799e2003-04-08 00:08:52 +0000600 default: VG_(skin_panic)("unexpected size for Value");
601 }
602 case CoreMemErr: return "CoreMem";
njn34419c12003-05-02 17:24:29 +0000603 case OverlapErr: return "Overlap";
njn43c799e2003-04-08 00:08:52 +0000604 case LeakErr: return "Leak";
605 default: VG_(skin_panic)("get_error_name: unexpected type");
606 }
607 VG_(printf)(s);
608}
609
610void SK_(print_extra_suppression_info) ( Error* err )
611{
612 if (ParamErr == VG_(get_error_kind)(err)) {
613 VG_(printf)(" %s\n", VG_(get_error_string)(err));
614 }
615}
njn5c004e42002-11-18 11:04:50 +0000616
617/*------------------------------------------------------------*/
618/*--- Crude profiling machinery. ---*/
619/*------------------------------------------------------------*/
620
621/* Event index. If just the name of the fn is given, this means the
622 number of calls to the fn. Otherwise it is the specified event.
623 Ones marked 'M' are MemCheck only. Ones marked 'A' are AddrCheck only.
624 The rest are shared.
625
626 10 alloc_secondary_map
627
628 20 get_abit
629M 21 get_vbyte
630 22 set_abit
631M 23 set_vbyte
632 24 get_abits4_ALIGNED
633M 25 get_vbytes4_ALIGNED
634
635 30 set_address_range_perms
636 31 set_address_range_perms(lower byte loop)
637 32 set_address_range_perms(quadword loop)
638 33 set_address_range_perms(upper byte loop)
639
640 35 make_noaccess
641 36 make_writable
642 37 make_readable
643A 38 make_accessible
644
645 40 copy_address_range_state
646 41 copy_address_range_state(byte loop)
647 42 check_writable
648 43 check_writable(byte loop)
649 44 check_readable
650 45 check_readable(byte loop)
651 46 check_readable_asciiz
652 47 check_readable_asciiz(byte loop)
653A 48 check_accessible
654A 49 check_accessible(byte loop)
655
656 50 make_noaccess_aligned
657 51 make_writable_aligned
658
659M 60 helperc_LOADV4
660M 61 helperc_STOREV4
661M 62 helperc_LOADV2
662M 63 helperc_STOREV2
663M 64 helperc_LOADV1
664M 65 helperc_STOREV1
665
666A 66 helperc_ACCESS4
667A 67 helperc_ACCESS2
668A 68 helperc_ACCESS1
669
670M 70 rim_rd_V4_SLOWLY
671M 71 rim_wr_V4_SLOWLY
672M 72 rim_rd_V2_SLOWLY
673M 73 rim_wr_V2_SLOWLY
674M 74 rim_rd_V1_SLOWLY
675M 75 rim_wr_V1_SLOWLY
676
677A 76 ACCESS4_SLOWLY
678A 77 ACCESS2_SLOWLY
679A 78 ACCESS1_SLOWLY
680
681 80 fpu_read
682 81 fpu_read aligned 4
683 82 fpu_read aligned 8
684 83 fpu_read 2
685 84 fpu_read 10/28/108
686
687M 85 fpu_write
688M 86 fpu_write aligned 4
689M 87 fpu_write aligned 8
690M 88 fpu_write 2
691M 89 fpu_write 10/28/108
692
693 90 fpu_access
694 91 fpu_access aligned 4
695 92 fpu_access aligned 8
696 93 fpu_access 2
697 94 fpu_access 10/28/108
698
699 100 fpu_access_check_SLOWLY
700 101 fpu_access_check_SLOWLY(byte loop)
njn9b007f62003-04-07 14:40:25 +0000701
702 110 new_mem_stack_4
703 111 new_mem_stack_8
704 112 new_mem_stack_12
705 113 new_mem_stack_16
706 114 new_mem_stack_32
707 115 new_mem_stack
708
709 120 die_mem_stack_4
710 121 die_mem_stack_8
711 122 die_mem_stack_12
712 123 die_mem_stack_16
713 124 die_mem_stack_32
714 125 die_mem_stack
njn5c004e42002-11-18 11:04:50 +0000715*/
716
njn43c799e2003-04-08 00:08:52 +0000717#ifdef MAC_PROFILE_MEMORY
njn5c004e42002-11-18 11:04:50 +0000718
njn43c799e2003-04-08 00:08:52 +0000719UInt MAC_(event_ctr)[N_PROF_EVENTS];
njn5c004e42002-11-18 11:04:50 +0000720
njnb4aee052003-04-15 14:09:58 +0000721static void init_prof_mem ( void )
njn5c004e42002-11-18 11:04:50 +0000722{
723 Int i;
724 for (i = 0; i < N_PROF_EVENTS; i++)
njn43c799e2003-04-08 00:08:52 +0000725 MAC_(event_ctr)[i] = 0;
njn5c004e42002-11-18 11:04:50 +0000726}
727
njnb4aee052003-04-15 14:09:58 +0000728static void done_prof_mem ( void )
njn5c004e42002-11-18 11:04:50 +0000729{
730 Int i;
731 for (i = 0; i < N_PROF_EVENTS; i++) {
732 if ((i % 10) == 0)
733 VG_(printf)("\n");
njn43c799e2003-04-08 00:08:52 +0000734 if (MAC_(event_ctr)[i] > 0)
735 VG_(printf)( "prof mem event %2d: %d\n", i, MAC_(event_ctr)[i] );
njn5c004e42002-11-18 11:04:50 +0000736 }
737 VG_(printf)("\n");
738}
739
740#else
741
njnb4aee052003-04-15 14:09:58 +0000742static void init_prof_mem ( void ) { }
743static void done_prof_mem ( void ) { }
njn5c004e42002-11-18 11:04:50 +0000744
njn5c004e42002-11-18 11:04:50 +0000745#endif
746
747/*------------------------------------------------------------*/
njn3e884182003-04-15 13:03:23 +0000748/*--- Common initialisation + finalisation ---*/
749/*------------------------------------------------------------*/
750
751void MAC_(common_pre_clo_init)(void)
752{
753 MAC_(malloc_list) = VG_(HT_construct)();
754 init_prof_mem();
755}
756
757void MAC_(common_fini)(void (*leak_check)(void))
758{
759 MAC_(print_malloc_stats)();
760
761 if (VG_(clo_verbosity) == 1) {
762 if (!MAC_(clo_leak_check))
763 VG_(message)(Vg_UserMsg,
764 "For a detailed leak analysis, rerun with: --leak-check=yes");
765
766 VG_(message)(Vg_UserMsg,
767 "For counts of detected errors, rerun with: -v");
768 }
769 if (MAC_(clo_leak_check)) leak_check();
770
771 done_prof_mem();
772}
773
774/*------------------------------------------------------------*/
njn47363ab2003-04-21 13:24:40 +0000775/*--- Common client request handling ---*/
776/*------------------------------------------------------------*/
777
778Bool MAC_(handle_common_client_requests)(ThreadState* tst, UInt* arg,
779 UInt* ret )
780{
njn10785452003-05-20 16:38:24 +0000781 UInt* argv = (UInt*)arg;
njn47363ab2003-04-21 13:24:40 +0000782
783 switch (arg[0]) {
njn10785452003-05-20 16:38:24 +0000784 case VG_USERREQ__COUNT_LEAKS: { /* count leaked bytes */
785 UInt** argp = (UInt**)arg;
njn47363ab2003-04-21 13:24:40 +0000786 *argp[1] = MAC_(total_bytes_leaked);
787 *argp[2] = MAC_(total_bytes_dubious);
788 *argp[3] = MAC_(total_bytes_reachable);
789 *argp[4] = MAC_(total_bytes_suppressed);
790 *ret = 0;
791 return True;
njn10785452003-05-20 16:38:24 +0000792 }
793 case VG_USERREQ__MALLOCLIKE_BLOCK: {
794 Addr p = (Addr)argv[1];
795 UInt sizeB = argv[2];
796 UInt rzB = argv[3];
797 Bool is_zeroed = (Bool)argv[4];
njn47363ab2003-04-21 13:24:40 +0000798
njn10785452003-05-20 16:38:24 +0000799 MAC_(new_block) ( tst, p, sizeB, rzB, is_zeroed, MAC_AllocCustom );
800 return True;
801 }
802 case VG_USERREQ__FREELIKE_BLOCK: {
803 Addr p = (Addr)argv[1];
804 UInt rzB = argv[2];
805
806 MAC_(handle_free) ( tst, p, rzB, MAC_AllocCustom );
807 return True;
808 }
njn47363ab2003-04-21 13:24:40 +0000809 default:
810 return False;
811 }
812}
813
814/*------------------------------------------------------------*/
njn5c004e42002-11-18 11:04:50 +0000815/*--- Syscall wrappers ---*/
816/*------------------------------------------------------------*/
817
818void* SK_(pre_syscall) ( ThreadId tid, UInt syscallno, Bool isBlocking )
819{
820 Int sane = SK_(cheap_sanity_check)();
821 return (void*)sane;
822}
823
824void SK_(post_syscall) ( ThreadId tid, UInt syscallno,
825 void* pre_result, Int res, Bool isBlocking )
826{
827 Int sane_before_call = (Int)pre_result;
828 Bool sane_after_call = SK_(cheap_sanity_check)();
829
830 if ((Int)sane_before_call && (!sane_after_call)) {
831 VG_(message)(Vg_DebugMsg, "post-syscall: ");
832 VG_(message)(Vg_DebugMsg,
833 "probable sanity check failure for syscall number %d\n",
834 syscallno );
835 VG_(skin_panic)("aborting due to the above ... bye!");
836 }
837}
838
njn5c004e42002-11-18 11:04:50 +0000839/*--------------------------------------------------------------------*/
njn43c799e2003-04-08 00:08:52 +0000840/*--- end mac_needs.c ---*/
njn5c004e42002-11-18 11:04:50 +0000841/*--------------------------------------------------------------------*/