blob: a2d0a7c2cf480ab4c940c6ae4cc34af76afdc8d7 [file] [log] [blame]
sewardjde4a1d02002-03-22 01:27:54 +00001
2/*--------------------------------------------------------------------*/
sewardj267100d2005-04-24 12:33:12 +00003/*--- Management of error messages. m_errormgr.c ---*/
sewardjde4a1d02002-03-22 01:27:54 +00004/*--------------------------------------------------------------------*/
5
6/*
njnb9c427c2004-12-01 14:14:42 +00007 This file is part of Valgrind, a dynamic binary instrumentation
8 framework.
sewardjde4a1d02002-03-22 01:27:54 +00009
njn53612422005-03-12 16:22:54 +000010 Copyright (C) 2000-2005 Julian Seward
sewardjde4a1d02002-03-22 01:27:54 +000011 jseward@acm.org
sewardjde4a1d02002-03-22 01:27:54 +000012
13 This program is free software; you can redistribute it and/or
14 modify it under the terms of the GNU General Public License as
15 published by the Free Software Foundation; either version 2 of the
16 License, or (at your option) any later version.
17
18 This program is distributed in the hope that it will be useful, but
19 WITHOUT ANY WARRANTY; without even the implied warranty of
20 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
21 General Public License for more details.
22
23 You should have received a copy of the GNU General Public License
24 along with this program; if not, write to the Free Software
25 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
26 02111-1307, USA.
27
njn25e49d8e72002-09-23 09:36:25 +000028 The GNU General Public License is contained in the file COPYING.
sewardjde4a1d02002-03-22 01:27:54 +000029*/
30
nethercotef1e5e152004-09-01 23:58:16 +000031#include "core.h"
njnea27e462005-05-31 02:38:09 +000032#include "pub_core_debuginfo.h"
njnd2b17112005-04-19 04:10:25 +000033#include "pub_core_errormgr.h"
njnd01fef72005-03-25 23:35:48 +000034#include "pub_core_execontext.h"
njn04e16982005-05-31 00:23:43 +000035#include "pub_core_main.h" // for VG_(start_debugger)()
njn20242342005-05-16 23:31:24 +000036#include "pub_core_options.h"
njnd2b17112005-04-19 04:10:25 +000037#include "pub_core_stacktrace.h"
njn43b9a8a2005-05-10 04:37:01 +000038#include "pub_core_tooliface.h"
njn3cbfbc12005-05-13 23:11:40 +000039#include "pub_core_translate.h"
sewardjde4a1d02002-03-22 01:27:54 +000040
41/*------------------------------------------------------------*/
njn25e49d8e72002-09-23 09:36:25 +000042/*--- Globals ---*/
sewardjde4a1d02002-03-22 01:27:54 +000043/*------------------------------------------------------------*/
44
njn14319cc2005-03-13 06:26:22 +000045/* After this many different unsuppressed errors have been observed,
46 be more conservative about collecting new ones. */
47#define M_COLLECT_ERRORS_SLOWLY_AFTER 50
48
49/* After this many different unsuppressed errors have been observed,
50 stop collecting errors at all, and tell the user their program is
51 evidently a steaming pile of camel dung. */
52#define M_COLLECT_NO_ERRORS_AFTER_SHOWN 300
53
54/* After this many total errors have been observed, stop collecting
55 errors at all. Counterpart to M_COLLECT_NO_ERRORS_AFTER_SHOWN. */
56#define M_COLLECT_NO_ERRORS_AFTER_FOUND 30000
57
sewardjde4a1d02002-03-22 01:27:54 +000058/* The list of error contexts found, both suppressed and unsuppressed.
59 Initially empty, and grows as errors are detected. */
njn695c16e2005-03-27 03:40:28 +000060static Error* errors = NULL;
sewardjde4a1d02002-03-22 01:27:54 +000061
62/* The list of suppression directives, as read from the specified
63 suppressions file. */
njn695c16e2005-03-27 03:40:28 +000064static Supp* suppressions = NULL;
sewardjde4a1d02002-03-22 01:27:54 +000065
66/* Running count of unsuppressed errors detected. */
nethercotef2b11482004-08-02 12:36:01 +000067static UInt n_errs_found = 0;
sewardjde4a1d02002-03-22 01:27:54 +000068
69/* Running count of suppressed errors detected. */
nethercotef2b11482004-08-02 12:36:01 +000070static UInt n_errs_suppressed = 0;
sewardjde4a1d02002-03-22 01:27:54 +000071
72/* forwards ... */
njn810086f2002-11-14 12:42:47 +000073static Supp* is_suppressible_error ( Error* err );
sewardjde4a1d02002-03-22 01:27:54 +000074
sewardjb5f6f512005-03-10 23:59:00 +000075static ThreadId last_tid_printed = 1;
sewardjde4a1d02002-03-22 01:27:54 +000076
77/*------------------------------------------------------------*/
nethercote4a184902004-08-02 12:21:09 +000078/*--- Error type ---*/
79/*------------------------------------------------------------*/
80
nethercote996901a2004-08-03 13:29:09 +000081/* Note: it is imperative this doesn't overlap with (0..) at all, as tools
nethercote4a184902004-08-02 12:21:09 +000082 * effectively extend it by defining their own enums in the (0..) range. */
nethercote4a184902004-08-02 12:21:09 +000083
84/* Errors. Extensible (via the 'extra' field). Tools can use a normal
njn02bc4b82005-05-15 17:28:26 +000085 enum (with element values in the normal range (0..)) for 'ekind'.
nethercote4a184902004-08-02 12:21:09 +000086 Functions for getting/setting the tool-relevant fields are in
nethercote46063202004-09-02 08:51:43 +000087 include/tool.h.
nethercote4a184902004-08-02 12:21:09 +000088
89 When errors are found and recorded with VG_(maybe_record_error)(), all
90 the tool must do is pass in the four parameters; core will
91 allocate/initialise the error record.
92*/
93struct _Error {
94 struct _Error* next;
95 // NULL if unsuppressed; or ptr to suppression record.
96 Supp* supp;
97 Int count;
98 ThreadId tid;
99
100 // The tool-specific part
101 ExeContext* where; // Initialised by core
njnd2b17112005-04-19 04:10:25 +0000102 ErrorKind ekind; // Used by ALL. Must be in the range (0..)
nethercote4a184902004-08-02 12:21:09 +0000103 Addr addr; // Used frequently
104 Char* string; // Used frequently
105 void* extra; // For any tool-specific extras
106};
107
108ExeContext* VG_(get_error_where) ( Error* err )
109{
110 return err->where;
111}
112
113ErrorKind VG_(get_error_kind) ( Error* err )
114{
115 return err->ekind;
116}
117
118Addr VG_(get_error_address) ( Error* err )
119{
120 return err->addr;
121}
122
123Char* VG_(get_error_string) ( Error* err )
124{
125 return err->string;
126}
127
128void* VG_(get_error_extra) ( Error* err )
129{
130 return err->extra;
131}
132
nethercotef2b11482004-08-02 12:36:01 +0000133UInt VG_(get_n_errs_found)( void )
134{
135 return n_errs_found;
136}
137
nethercote4a184902004-08-02 12:21:09 +0000138/*------------------------------------------------------------*/
139/*--- Suppression type ---*/
140/*------------------------------------------------------------*/
141
142/* Note: it is imperative this doesn't overlap with (0..) at all, as tools
143 * effectively extend it by defining their own enums in the (0..) range. */
144typedef
145 enum {
146 PThreadSupp = -1, /* Matches PThreadErr */
147 }
148 CoreSuppKind;
149
sewardjb5f6f512005-03-10 23:59:00 +0000150/* Max number of callers for context in a suppression. */
151#define VG_MAX_SUPP_CALLERS 24
152
nethercote4a184902004-08-02 12:21:09 +0000153/* For each caller specified for a suppression, record the nature of
154 the caller name. Not of interest to tools. */
155typedef
156 enum {
sewardjb5f6f512005-03-10 23:59:00 +0000157 NoName, /* Error case */
nethercote4a184902004-08-02 12:21:09 +0000158 ObjName, /* Name is of an shared object file. */
159 FunName /* Name is of a function. */
160 }
161 SuppLocTy;
162
sewardjb5f6f512005-03-10 23:59:00 +0000163typedef
164 struct {
165 SuppLocTy ty;
166 Char* name;
167 }
168 SuppLoc;
169
nethercote4a184902004-08-02 12:21:09 +0000170/* Suppressions. Tools can get/set tool-relevant parts with functions
nethercote46063202004-09-02 08:51:43 +0000171 declared in include/tool.h. Extensible via the 'extra' field.
nethercote4a184902004-08-02 12:21:09 +0000172 Tools can use a normal enum (with element values in the normal range
njn02bc4b82005-05-15 17:28:26 +0000173 (0..)) for 'skind'. */
nethercote4a184902004-08-02 12:21:09 +0000174struct _Supp {
175 struct _Supp* next;
176 Int count; // The number of times this error has been suppressed.
177 Char* sname; // The name by which the suppression is referred to.
sewardjb5f6f512005-03-10 23:59:00 +0000178
179 // Length of 'callers'
180 Int n_callers;
181 // Array of callers, for matching stack traces. First one (name of fn
182 // where err occurs) is mandatory; rest are optional.
183 SuppLoc* callers;
nethercote4a184902004-08-02 12:21:09 +0000184
185 /* The tool-specific part */
186 SuppKind skind; // What kind of suppression. Must use the range (0..).
187 Char* string; // String -- use is optional. NULL by default.
188 void* extra; // Anything else -- use is optional. NULL by default.
189};
190
191SuppKind VG_(get_supp_kind) ( Supp* su )
192{
193 return su->skind;
194}
195
196Char* VG_(get_supp_string) ( Supp* su )
197{
198 return su->string;
199}
200
201void* VG_(get_supp_extra) ( Supp* su )
202{
203 return su->extra;
204}
205
206
207void VG_(set_supp_kind) ( Supp* su, SuppKind skind )
208{
209 su->skind = skind;
210}
211
212void VG_(set_supp_string) ( Supp* su, Char* string )
213{
214 su->string = string;
215}
216
217void VG_(set_supp_extra) ( Supp* su, void* extra )
218{
219 su->extra = extra;
220}
221
222
223/*------------------------------------------------------------*/
sewardjde4a1d02002-03-22 01:27:54 +0000224/*--- Helper fns ---*/
225/*------------------------------------------------------------*/
226
sewardjde4a1d02002-03-22 01:27:54 +0000227/* Compare error contexts, to detect duplicates. Note that if they
228 are otherwise the same, the faulting addrs and associated rwoffsets
229 are allowed to be different. */
njn810086f2002-11-14 12:42:47 +0000230static Bool eq_Error ( VgRes res, Error* e1, Error* e2 )
sewardjde4a1d02002-03-22 01:27:54 +0000231{
njn810086f2002-11-14 12:42:47 +0000232 if (e1->ekind != e2->ekind)
sewardjde4a1d02002-03-22 01:27:54 +0000233 return False;
njn25e49d8e72002-09-23 09:36:25 +0000234 if (!VG_(eq_ExeContext)(res, e1->where, e2->where))
sewardjde4a1d02002-03-22 01:27:54 +0000235 return False;
236
njn810086f2002-11-14 12:42:47 +0000237 switch (e1->ekind) {
sewardjb5f6f512005-03-10 23:59:00 +0000238 // case ThreadErr:
239 // case MutexErr:
240 // vg_assert(VG_(needs).core_errors);
241 // return VG_(tm_error_equal)(res, e1, e2);
sewardjde4a1d02002-03-22 01:27:54 +0000242 default:
njn51d827b2005-05-09 01:02:08 +0000243 if (VG_(needs).tool_errors) {
244 return VG_TDICT_CALL(tool_eq_Error, res, e1, e2);
245 } else {
njn95ec8702004-11-22 16:46:13 +0000246 VG_(printf)("\nUnhandled error type: %u. VG_(needs).tool_errors\n"
njn25e49d8e72002-09-23 09:36:25 +0000247 "probably needs to be set.\n",
njn810086f2002-11-14 12:42:47 +0000248 e1->ekind);
njn67993252004-11-22 18:02:32 +0000249 VG_(tool_panic)("unhandled error type");
njn25e49d8e72002-09-23 09:36:25 +0000250 }
sewardjde4a1d02002-03-22 01:27:54 +0000251 }
252}
253
njn810086f2002-11-14 12:42:47 +0000254static void pp_Error ( Error* err, Bool printCount )
sewardjde4a1d02002-03-22 01:27:54 +0000255{
sewardj71bc3cb2005-05-19 00:25:45 +0000256 if (VG_(clo_xml)) {
257 VG_(message)(Vg_UserMsg, "<error>");
sewardj9f297ca2005-05-20 02:29:52 +0000258 VG_(message)(Vg_UserMsg, " <unique>0x%llx</unique>",
259 Ptr_to_ULong(err));
sewardj71bc3cb2005-05-19 00:25:45 +0000260 VG_(message)(Vg_UserMsg, " <tid>%d</tid>", err->tid);
261 }
262
263 if (!VG_(clo_xml)) {
264 if (printCount)
265 VG_(message)(Vg_UserMsg, "Observed %d times:", err->count );
266 if (err->tid > 0 && err->tid != last_tid_printed) {
267 VG_(message)(Vg_UserMsg, "Thread %d:", err->tid );
268 last_tid_printed = err->tid;
269 }
sewardjb5f6f512005-03-10 23:59:00 +0000270 }
njn25e49d8e72002-09-23 09:36:25 +0000271
njn810086f2002-11-14 12:42:47 +0000272 switch (err->ekind) {
sewardjb5f6f512005-03-10 23:59:00 +0000273 // case ThreadErr:
274 // case MutexErr:
275 // vg_assert(VG_(needs).core_errors);
276 // VG_(tm_error_print)(err);
277 // break;
sewardjde4a1d02002-03-22 01:27:54 +0000278 default:
njn95ec8702004-11-22 16:46:13 +0000279 if (VG_(needs).tool_errors)
njn51d827b2005-05-09 01:02:08 +0000280 VG_TDICT_CALL( tool_pp_Error, err );
njn25e49d8e72002-09-23 09:36:25 +0000281 else {
njn95ec8702004-11-22 16:46:13 +0000282 VG_(printf)("\nUnhandled error type: %u. VG_(needs).tool_errors\n"
njn25e49d8e72002-09-23 09:36:25 +0000283 "probably needs to be set?\n",
njn810086f2002-11-14 12:42:47 +0000284 err->ekind);
njn67993252004-11-22 18:02:32 +0000285 VG_(tool_panic)("unhandled error type");
njn25e49d8e72002-09-23 09:36:25 +0000286 }
sewardjde4a1d02002-03-22 01:27:54 +0000287 }
sewardj71bc3cb2005-05-19 00:25:45 +0000288
289 if (VG_(clo_xml))
290 VG_(message)(Vg_UserMsg, "</error>");
sewardjde4a1d02002-03-22 01:27:54 +0000291}
292
nethercote04d0fbc2004-01-26 16:48:06 +0000293/* Figure out if we want to perform a given action for this error, possibly
sewardjde4a1d02002-03-22 01:27:54 +0000294 by asking the user. */
njn43c799e2003-04-08 00:08:52 +0000295Bool VG_(is_action_requested) ( Char* action, Bool* clo )
sewardjde4a1d02002-03-22 01:27:54 +0000296{
297 Char ch, ch2;
298 Int res;
299
njn43c799e2003-04-08 00:08:52 +0000300 if (*clo == False)
sewardjde4a1d02002-03-22 01:27:54 +0000301 return False;
302
303 VG_(message)(Vg_UserMsg, "");
304
305 again:
306 VG_(printf)(
307 "==%d== "
njn43c799e2003-04-08 00:08:52 +0000308 "---- %s ? --- [Return/N/n/Y/y/C/c] ---- ",
309 VG_(getpid)(), action
sewardjde4a1d02002-03-22 01:27:54 +0000310 );
311
sewardj6024b212003-07-13 10:54:33 +0000312 res = VG_(read)(VG_(clo_input_fd), &ch, 1);
sewardjde4a1d02002-03-22 01:27:54 +0000313 if (res != 1) goto ioerror;
314 /* res == 1 */
315 if (ch == '\n') return False;
316 if (ch != 'N' && ch != 'n' && ch != 'Y' && ch != 'y'
317 && ch != 'C' && ch != 'c') goto again;
318
sewardj6024b212003-07-13 10:54:33 +0000319 res = VG_(read)(VG_(clo_input_fd), &ch2, 1);
sewardjde4a1d02002-03-22 01:27:54 +0000320 if (res != 1) goto ioerror;
321 if (ch2 != '\n') goto again;
322
njn43c799e2003-04-08 00:08:52 +0000323 /* No, don't want to do action. */
sewardjde4a1d02002-03-22 01:27:54 +0000324 if (ch == 'n' || ch == 'N') return False;
njn43c799e2003-04-08 00:08:52 +0000325 /* Yes, want to do action. */
sewardjde4a1d02002-03-22 01:27:54 +0000326 if (ch == 'y' || ch == 'Y') return True;
njn43c799e2003-04-08 00:08:52 +0000327 /* No, don't want to do action, and don't ask again either. */
sewardjde4a1d02002-03-22 01:27:54 +0000328 vg_assert(ch == 'c' || ch == 'C');
329
330 ioerror:
njn43c799e2003-04-08 00:08:52 +0000331 *clo = False;
sewardjde4a1d02002-03-22 01:27:54 +0000332 return False;
333}
334
335
sewardjb5f6f512005-03-10 23:59:00 +0000336/* Construct an error */
njn25e49d8e72002-09-23 09:36:25 +0000337static __inline__
njn72718642003-07-24 08:45:32 +0000338void construct_error ( Error* err, ThreadId tid, ErrorKind ekind, Addr a,
339 Char* s, void* extra, ExeContext* where )
sewardjde4a1d02002-03-22 01:27:54 +0000340{
njnca82cc02004-11-22 17:18:48 +0000341 tl_assert(tid < VG_N_THREADS);
njn72718642003-07-24 08:45:32 +0000342
njn810086f2002-11-14 12:42:47 +0000343 /* Core-only parts */
njn25e49d8e72002-09-23 09:36:25 +0000344 err->next = NULL;
345 err->supp = NULL;
346 err->count = 1;
njn72718642003-07-24 08:45:32 +0000347 err->tid = tid;
njn43c799e2003-04-08 00:08:52 +0000348 if (NULL == where)
njnd01fef72005-03-25 23:35:48 +0000349 err->where = VG_(record_ExeContext)( tid );
njn43c799e2003-04-08 00:08:52 +0000350 else
351 err->where = where;
njn1d6c4bc2002-11-21 13:38:08 +0000352
nethercote996901a2004-08-03 13:29:09 +0000353 /* Tool-relevant parts */
njn810086f2002-11-14 12:42:47 +0000354 err->ekind = ekind;
355 err->addr = a;
njn810086f2002-11-14 12:42:47 +0000356 err->extra = extra;
sewardja6022612003-07-24 23:50:17 +0000357 err->string = s;
358
njn25e49d8e72002-09-23 09:36:25 +0000359 /* sanity... */
njn72718642003-07-24 08:45:32 +0000360 vg_assert( tid < VG_N_THREADS );
njn25e49d8e72002-09-23 09:36:25 +0000361}
362
njnf4261312005-03-20 23:45:36 +0000363static void printSuppForIp(UInt n, Addr ip)
364{
njn47b209a2005-03-25 23:47:16 +0000365 static UChar buf[VG_ERRTXT_LEN];
njnf4261312005-03-20 23:45:36 +0000366
njn47b209a2005-03-25 23:47:16 +0000367 if ( VG_(get_fnname_nodemangle) (ip, buf, VG_ERRTXT_LEN) ) {
njnf4261312005-03-20 23:45:36 +0000368 VG_(printf)(" fun:%s\n", buf);
njnbc93cc02005-05-15 21:09:40 +0000369 } else if ( VG_(get_objname)(ip, buf, VG_ERRTXT_LEN) ) {
njnf4261312005-03-20 23:45:36 +0000370 VG_(printf)(" obj:%s\n", buf);
371 } else {
372 VG_(printf)(" ???:??? "
373 "# unknown, suppression will not work, sorry\n");
374 }
375}
376
nethercote10d481a2004-01-25 20:33:53 +0000377static void gen_suppression(Error* err)
njn43c799e2003-04-08 00:08:52 +0000378{
njn43c799e2003-04-08 00:08:52 +0000379 ExeContext* ec = VG_(get_error_where)(err);
380 Int stop_at = VG_(clo_backtrace_size);
njn43c799e2003-04-08 00:08:52 +0000381
sewardjb5f6f512005-03-10 23:59:00 +0000382 /* At most VG_MAX_SUPP_CALLERS names */
383 if (stop_at > VG_MAX_SUPP_CALLERS) stop_at = VG_MAX_SUPP_CALLERS;
njn43c799e2003-04-08 00:08:52 +0000384 vg_assert(stop_at > 0);
385
386 VG_(printf)("{\n");
387 VG_(printf)(" <insert a suppression name here>\n");
njn6a230532003-07-21 10:38:23 +0000388
sewardjb5f6f512005-03-10 23:59:00 +0000389 if (ThreadErr == err->ekind || MutexErr == err->ekind) {
njn6a230532003-07-21 10:38:23 +0000390 VG_(printf)(" core:PThread\n");
391
392 } else {
njn51d827b2005-05-09 01:02:08 +0000393 Char* name = VG_TDICT_CALL(tool_get_error_name, err);
njn6a230532003-07-21 10:38:23 +0000394 if (NULL == name) {
395 VG_(message)(Vg_UserMsg,
nethercote137bc552003-11-14 17:47:54 +0000396 "(tool does not allow error to be suppressed)");
njn6a230532003-07-21 10:38:23 +0000397 return;
398 }
399 VG_(printf)(" %s:%s\n", VG_(details).name, name);
njn51d827b2005-05-09 01:02:08 +0000400 VG_TDICT_CALL(tool_print_extra_suppression_info, err);
njn6a230532003-07-21 10:38:23 +0000401 }
njn43c799e2003-04-08 00:08:52 +0000402
njnf4261312005-03-20 23:45:36 +0000403 // Print stack trace elements
njnd01fef72005-03-25 23:35:48 +0000404 VG_(apply_StackTrace)(printSuppForIp, VG_(extract_StackTrace)(ec), stop_at);
njn43c799e2003-04-08 00:08:52 +0000405
406 VG_(printf)("}\n");
407}
408
njnb4aee052003-04-15 14:09:58 +0000409static
nethercote04d0fbc2004-01-26 16:48:06 +0000410void do_actions_on_error(Error* err, Bool allow_db_attach)
njn43c799e2003-04-08 00:08:52 +0000411{
sewardjd153fae2005-01-10 17:24:47 +0000412 Bool still_noisy = True;
413
nethercote04d0fbc2004-01-26 16:48:06 +0000414 /* Perhaps we want a debugger attach at this point? */
415 if (allow_db_attach &&
njnd2b17112005-04-19 04:10:25 +0000416 VG_(is_action_requested)( "Attach to debugger", & VG_(clo_db_attach) ))
417 {
nethercote04d0fbc2004-01-26 16:48:06 +0000418 VG_(printf)("starting debugger\n");
419 VG_(start_debugger)( err->tid );
njnd2b17112005-04-19 04:10:25 +0000420 }
njn43c799e2003-04-08 00:08:52 +0000421 /* Or maybe we want to generate the error's suppression? */
sewardjd153fae2005-01-10 17:24:47 +0000422 if (VG_(clo_gen_suppressions) == 2
423 || (VG_(clo_gen_suppressions) == 1
njnd2b17112005-04-19 04:10:25 +0000424 && VG_(is_action_requested)( "Print suppression", &still_noisy ))
sewardjd153fae2005-01-10 17:24:47 +0000425 ) {
nethercote42602b12004-01-25 19:30:29 +0000426 gen_suppression(err);
sewardjd153fae2005-01-10 17:24:47 +0000427 if (VG_(clo_gen_suppressions) == 1 && !still_noisy)
428 VG_(clo_gen_suppressions) = 0;
njn43c799e2003-04-08 00:08:52 +0000429 }
430}
431
432/* Shared between VG_(maybe_record_error)() and VG_(unique_error)(),
433 just for pretty printing purposes. */
434static Bool is_first_shown_context = True;
435
njn25e49d8e72002-09-23 09:36:25 +0000436/* Top-level entry point to the error management subsystem.
437 All detected errors are notified here; this routine decides if/when the
438 user should see the error. */
njn72718642003-07-24 08:45:32 +0000439void VG_(maybe_record_error) ( ThreadId tid,
njn25e49d8e72002-09-23 09:36:25 +0000440 ErrorKind ekind, Addr a, Char* s, void* extra )
441{
njn810086f2002-11-14 12:42:47 +0000442 Error err;
443 Error* p;
444 Error* p_prev;
njn43c799e2003-04-08 00:08:52 +0000445 UInt extra_size;
njn695c16e2005-03-27 03:40:28 +0000446 VgRes exe_res = Vg_MedRes;
447 static Bool stopping_message = False;
448 static Bool slowdown_message = False;
449 static Int n_errs_shown = 0;
sewardjde4a1d02002-03-22 01:27:54 +0000450
njn14319cc2005-03-13 06:26:22 +0000451 /* After M_COLLECT_NO_ERRORS_AFTER_SHOWN different errors have
452 been found, or M_COLLECT_NO_ERRORS_AFTER_FOUND total errors
sewardjf2537be2002-04-24 21:03:47 +0000453 have been found, just refuse to collect any more. This stops
454 the burden of the error-management system becoming excessive in
455 extremely buggy programs, although it does make it pretty
456 pointless to continue the Valgrind run after this point. */
sewardj2e432902002-06-13 20:44:00 +0000457 if (VG_(clo_error_limit)
njn695c16e2005-03-27 03:40:28 +0000458 && (n_errs_shown >= M_COLLECT_NO_ERRORS_AFTER_SHOWN
njn14319cc2005-03-13 06:26:22 +0000459 || n_errs_found >= M_COLLECT_NO_ERRORS_AFTER_FOUND)) {
sewardjde4a1d02002-03-22 01:27:54 +0000460 if (!stopping_message) {
461 VG_(message)(Vg_UserMsg, "");
sewardjf2537be2002-04-24 21:03:47 +0000462
njn695c16e2005-03-27 03:40:28 +0000463 if (n_errs_shown >= M_COLLECT_NO_ERRORS_AFTER_SHOWN) {
sewardjf2537be2002-04-24 21:03:47 +0000464 VG_(message)(Vg_UserMsg,
465 "More than %d different errors detected. "
466 "I'm not reporting any more.",
njn14319cc2005-03-13 06:26:22 +0000467 M_COLLECT_NO_ERRORS_AFTER_SHOWN );
sewardjf2537be2002-04-24 21:03:47 +0000468 } else {
469 VG_(message)(Vg_UserMsg,
470 "More than %d total errors detected. "
471 "I'm not reporting any more.",
njn14319cc2005-03-13 06:26:22 +0000472 M_COLLECT_NO_ERRORS_AFTER_FOUND );
sewardjf2537be2002-04-24 21:03:47 +0000473 }
474
sewardjde4a1d02002-03-22 01:27:54 +0000475 VG_(message)(Vg_UserMsg,
sewardjf2537be2002-04-24 21:03:47 +0000476 "Final error counts will be inaccurate. Go fix your program!");
sewardj72f98ff2002-06-13 17:23:38 +0000477 VG_(message)(Vg_UserMsg,
sewardj2e432902002-06-13 20:44:00 +0000478 "Rerun with --error-limit=no to disable this cutoff. Note");
sewardj72f98ff2002-06-13 17:23:38 +0000479 VG_(message)(Vg_UserMsg,
njn25e49d8e72002-09-23 09:36:25 +0000480 "that errors may occur in your program without prior warning from");
sewardj72f98ff2002-06-13 17:23:38 +0000481 VG_(message)(Vg_UserMsg,
482 "Valgrind, because errors are no longer being displayed.");
sewardjde4a1d02002-03-22 01:27:54 +0000483 VG_(message)(Vg_UserMsg, "");
484 stopping_message = True;
485 }
486 return;
487 }
488
njn14319cc2005-03-13 06:26:22 +0000489 /* After M_COLLECT_ERRORS_SLOWLY_AFTER different errors have
sewardjde4a1d02002-03-22 01:27:54 +0000490 been found, be much more conservative about collecting new
491 ones. */
njn695c16e2005-03-27 03:40:28 +0000492 if (n_errs_shown >= M_COLLECT_ERRORS_SLOWLY_AFTER) {
njn25e49d8e72002-09-23 09:36:25 +0000493 exe_res = Vg_LowRes;
sewardjde4a1d02002-03-22 01:27:54 +0000494 if (!slowdown_message) {
495 VG_(message)(Vg_UserMsg, "");
496 VG_(message)(Vg_UserMsg,
497 "More than %d errors detected. Subsequent errors",
njn14319cc2005-03-13 06:26:22 +0000498 M_COLLECT_ERRORS_SLOWLY_AFTER);
sewardjde4a1d02002-03-22 01:27:54 +0000499 VG_(message)(Vg_UserMsg,
500 "will still be recorded, but in less detail than before.");
501 slowdown_message = True;
502 }
503 }
504
njn25e49d8e72002-09-23 09:36:25 +0000505 /* Build ourselves the error */
njn72718642003-07-24 08:45:32 +0000506 construct_error ( &err, tid, ekind, a, s, extra, NULL );
sewardjde4a1d02002-03-22 01:27:54 +0000507
508 /* First, see if we've got an error record matching this one. */
njn695c16e2005-03-27 03:40:28 +0000509 p = errors;
sewardjde4a1d02002-03-22 01:27:54 +0000510 p_prev = NULL;
511 while (p != NULL) {
njn810086f2002-11-14 12:42:47 +0000512 if (eq_Error(exe_res, p, &err)) {
sewardjde4a1d02002-03-22 01:27:54 +0000513 /* Found it. */
514 p->count++;
515 if (p->supp != NULL) {
516 /* Deal correctly with suppressed errors. */
517 p->supp->count++;
nethercotef2b11482004-08-02 12:36:01 +0000518 n_errs_suppressed++;
sewardjde4a1d02002-03-22 01:27:54 +0000519 } else {
nethercotef2b11482004-08-02 12:36:01 +0000520 n_errs_found++;
sewardjde4a1d02002-03-22 01:27:54 +0000521 }
522
523 /* Move p to the front of the list so that future searches
524 for it are faster. */
525 if (p_prev != NULL) {
526 vg_assert(p_prev->next == p);
njn695c16e2005-03-27 03:40:28 +0000527 p_prev->next = p->next;
528 p->next = errors;
529 errors = p;
sewardjde4a1d02002-03-22 01:27:54 +0000530 }
sewardj7ebf7c32003-07-24 21:29:40 +0000531
sewardjde4a1d02002-03-22 01:27:54 +0000532 return;
533 }
534 p_prev = p;
535 p = p->next;
536 }
537
538 /* Didn't see it. Copy and add. */
539
njn43c799e2003-04-08 00:08:52 +0000540 /* OK, we're really going to collect it. The context is on the stack and
541 will disappear shortly, so we must copy it. First do the main
njn02bc4b82005-05-15 17:28:26 +0000542 (non-'extra') part.
njn25e49d8e72002-09-23 09:36:25 +0000543
njn02bc4b82005-05-15 17:28:26 +0000544 Then VG_(tdict).tool_update_extra can update the 'extra' part. This
njn51d827b2005-05-09 01:02:08 +0000545 is for when there are more details to fill in which take time to work
546 out but don't affect our earlier decision to include the error -- by
njn25e49d8e72002-09-23 09:36:25 +0000547 postponing those details until now, we avoid the extra work in the
njn810086f2002-11-14 12:42:47 +0000548 case where we ignore the error. Ugly.
njn43c799e2003-04-08 00:08:52 +0000549
njn02bc4b82005-05-15 17:28:26 +0000550 Then, if there is an 'extra' part, copy it too, using the size that
njn51d827b2005-05-09 01:02:08 +0000551 VG_(tdict).tool_update_extra returned. Also allow for people using
552 the void* extra field for a scalar value like an integer.
njn43c799e2003-04-08 00:08:52 +0000553 */
554
555 /* copy main part */
njn810086f2002-11-14 12:42:47 +0000556 p = VG_(arena_malloc)(VG_AR_ERRORS, sizeof(Error));
njn25e49d8e72002-09-23 09:36:25 +0000557 *p = err;
njn43c799e2003-04-08 00:08:52 +0000558
njn02bc4b82005-05-15 17:28:26 +0000559 /* update 'extra' */
sewardjb5f6f512005-03-10 23:59:00 +0000560 switch (ekind) {
561 // case ThreadErr:
562 // case MutexErr:
563 // vg_assert(VG_(needs).core_errors);
564 // extra_size = VG_(tm_error_update_extra)(p);
565 // break;
566 default:
567 vg_assert(VG_(needs).tool_errors);
njn51d827b2005-05-09 01:02:08 +0000568 extra_size = VG_TDICT_CALL(tool_update_extra, p);
sewardjb5f6f512005-03-10 23:59:00 +0000569 break;
570 }
njn43c799e2003-04-08 00:08:52 +0000571
njn02bc4b82005-05-15 17:28:26 +0000572 /* copy block pointed to by 'extra', if there is one */
sewardjb5f6f512005-03-10 23:59:00 +0000573 if (NULL != p->extra && 0 != extra_size) {
574 void* new_extra = VG_(malloc)(extra_size);
575 VG_(memcpy)(new_extra, p->extra, extra_size);
576 p->extra = new_extra;
njn43c799e2003-04-08 00:08:52 +0000577 }
578
njn695c16e2005-03-27 03:40:28 +0000579 p->next = errors;
njn25e49d8e72002-09-23 09:36:25 +0000580 p->supp = is_suppressible_error(&err);
njn695c16e2005-03-27 03:40:28 +0000581 errors = p;
sewardjde4a1d02002-03-22 01:27:54 +0000582 if (p->supp == NULL) {
nethercotef2b11482004-08-02 12:36:01 +0000583 n_errs_found++;
sewardjde4a1d02002-03-22 01:27:54 +0000584 if (!is_first_shown_context)
585 VG_(message)(Vg_UserMsg, "");
njn43c799e2003-04-08 00:08:52 +0000586 pp_Error(p, False);
sewardjde4a1d02002-03-22 01:27:54 +0000587 is_first_shown_context = False;
njn695c16e2005-03-27 03:40:28 +0000588 n_errs_shown++;
nethercote04d0fbc2004-01-26 16:48:06 +0000589 do_actions_on_error(p, /*allow_db_attach*/True);
sewardjde4a1d02002-03-22 01:27:54 +0000590 } else {
nethercotef2b11482004-08-02 12:36:01 +0000591 n_errs_suppressed++;
sewardjde4a1d02002-03-22 01:27:54 +0000592 p->supp->count++;
593 }
594}
595
njn43c799e2003-04-08 00:08:52 +0000596/* Second top-level entry point to the error management subsystem, for
nethercote7cc9c232004-01-21 15:08:04 +0000597 errors that the tool wants to report immediately, eg. because they're
njn43c799e2003-04-08 00:08:52 +0000598 guaranteed to only happen once. This avoids all the recording and
599 comparing stuff. But they can be suppressed; returns True if it is
njn02bc4b82005-05-15 17:28:26 +0000600 suppressed. Bool 'print_error' dictates whether to print the error.
601 Bool 'count_error' dictates whether to count the error in n_errs_found.
njn47363ab2003-04-21 13:24:40 +0000602*/
njn72718642003-07-24 08:45:32 +0000603Bool VG_(unique_error) ( ThreadId tid, ErrorKind ekind, Addr a, Char* s,
njn3e884182003-04-15 13:03:23 +0000604 void* extra, ExeContext* where, Bool print_error,
nethercote04d0fbc2004-01-26 16:48:06 +0000605 Bool allow_db_attach, Bool count_error )
njn43c799e2003-04-08 00:08:52 +0000606{
607 Error err;
608
609 /* Build ourselves the error */
njn72718642003-07-24 08:45:32 +0000610 construct_error ( &err, tid, ekind, a, s, extra, where );
njn43c799e2003-04-08 00:08:52 +0000611
612 /* Unless it's suppressed, we're going to show it. Don't need to make
613 a copy, because it's only temporary anyway.
614
njn02bc4b82005-05-15 17:28:26 +0000615 Then update the 'extra' part with VG_(tdict).tool_update_extra),
njn51d827b2005-05-09 01:02:08 +0000616 because that can have an affect on whether it's suppressed. Ignore
617 the size return value of VG_(tdict).tool_update_extra, because we're
njn02bc4b82005-05-15 17:28:26 +0000618 not copying 'extra'. */
njn51d827b2005-05-09 01:02:08 +0000619 (void)VG_TDICT_CALL(tool_update_extra, &err);
njn43c799e2003-04-08 00:08:52 +0000620
621 if (NULL == is_suppressible_error(&err)) {
njn47363ab2003-04-21 13:24:40 +0000622 if (count_error)
nethercotef2b11482004-08-02 12:36:01 +0000623 n_errs_found++;
njn43c799e2003-04-08 00:08:52 +0000624
625 if (print_error) {
626 if (!is_first_shown_context)
627 VG_(message)(Vg_UserMsg, "");
628 pp_Error(&err, False);
629 is_first_shown_context = False;
630 }
nethercote04d0fbc2004-01-26 16:48:06 +0000631 do_actions_on_error(&err, allow_db_attach);
njn43c799e2003-04-08 00:08:52 +0000632
633 return False;
634
635 } else {
nethercotef2b11482004-08-02 12:36:01 +0000636 n_errs_suppressed++;
njn43c799e2003-04-08 00:08:52 +0000637 return True;
638 }
639}
640
sewardjde4a1d02002-03-22 01:27:54 +0000641
sewardjde4a1d02002-03-22 01:27:54 +0000642/*------------------------------------------------------------*/
643/*--- Exported fns ---*/
644/*------------------------------------------------------------*/
645
sewardj71bc3cb2005-05-19 00:25:45 +0000646/* Show the used suppressions. Returns False if no suppression
647 got used. */
648static Bool show_used_suppressions ( void )
649{
650 Supp *su;
651 Bool any_supp;
652
sewardj7c9e57c2005-05-24 14:21:45 +0000653 if (VG_(clo_xml))
654 VG_(message)(Vg_DebugMsg, "<suppcounts>");
655
sewardj71bc3cb2005-05-19 00:25:45 +0000656 any_supp = False;
657 for (su = suppressions; su != NULL; su = su->next) {
658 if (su->count <= 0)
659 continue;
660 any_supp = True;
661 if (VG_(clo_xml)) {
662 VG_(message)(Vg_DebugMsg,
sewardj7c9e57c2005-05-24 14:21:45 +0000663 " <pair><count>%d</count><name>%s</name></pair>",
sewardj71bc3cb2005-05-19 00:25:45 +0000664 su->count, su->sname);
665 } else {
666 VG_(message)(Vg_DebugMsg, "supp: %4d %s", su->count, su->sname);
667 }
668 }
669
sewardj7c9e57c2005-05-24 14:21:45 +0000670 if (VG_(clo_xml))
671 VG_(message)(Vg_DebugMsg, "<suppcounts>");
672
sewardj71bc3cb2005-05-19 00:25:45 +0000673 return any_supp;
674}
675
676
sewardj9f297ca2005-05-20 02:29:52 +0000677/* Show all the errors that occurred, and possibly also the
678 suppressions used. */
sewardjde4a1d02002-03-22 01:27:54 +0000679void VG_(show_all_errors) ( void )
680{
njn810086f2002-11-14 12:42:47 +0000681 Int i, n_min;
682 Int n_err_contexts, n_supp_contexts;
683 Error *p, *p_min;
684 Supp *su;
685 Bool any_supp;
sewardjde4a1d02002-03-22 01:27:54 +0000686
687 if (VG_(clo_verbosity) == 0)
688 return;
689
690 n_err_contexts = 0;
njn695c16e2005-03-27 03:40:28 +0000691 for (p = errors; p != NULL; p = p->next) {
sewardjde4a1d02002-03-22 01:27:54 +0000692 if (p->supp == NULL)
693 n_err_contexts++;
694 }
695
696 n_supp_contexts = 0;
njn695c16e2005-03-27 03:40:28 +0000697 for (su = suppressions; su != NULL; su = su->next) {
sewardjde4a1d02002-03-22 01:27:54 +0000698 if (su->count > 0)
699 n_supp_contexts++;
700 }
sewardj71bc3cb2005-05-19 00:25:45 +0000701
702 /* If we're printing XML, just show the suppressions and stop.
703 */
704 if (VG_(clo_xml)) {
705 (void)show_used_suppressions();
706 return;
707 }
708
709 /* We only get here if not printing XML. */
sewardjde4a1d02002-03-22 01:27:54 +0000710 VG_(message)(Vg_UserMsg,
711 "ERROR SUMMARY: "
712 "%d errors from %d contexts (suppressed: %d from %d)",
nethercotef2b11482004-08-02 12:36:01 +0000713 n_errs_found, n_err_contexts,
714 n_errs_suppressed, n_supp_contexts );
sewardjde4a1d02002-03-22 01:27:54 +0000715
716 if (VG_(clo_verbosity) <= 1)
717 return;
718
719 /* Print the contexts in order of increasing error count. */
720 for (i = 0; i < n_err_contexts; i++) {
721 n_min = (1 << 30) - 1;
722 p_min = NULL;
njn695c16e2005-03-27 03:40:28 +0000723 for (p = errors; p != NULL; p = p->next) {
sewardjde4a1d02002-03-22 01:27:54 +0000724 if (p->supp != NULL) continue;
725 if (p->count < n_min) {
726 n_min = p->count;
727 p_min = p;
728 }
729 }
njn67993252004-11-22 18:02:32 +0000730 if (p_min == NULL) VG_(tool_panic)("show_all_errors()");
sewardjde4a1d02002-03-22 01:27:54 +0000731
732 VG_(message)(Vg_UserMsg, "");
733 VG_(message)(Vg_UserMsg, "%d errors in context %d of %d:",
734 p_min->count,
735 i+1, n_err_contexts);
njn810086f2002-11-14 12:42:47 +0000736 pp_Error( p_min, False );
sewardjde4a1d02002-03-22 01:27:54 +0000737
738 if ((i+1 == VG_(clo_dump_error))) {
njnd01fef72005-03-25 23:35:48 +0000739 StackTrace ips = VG_(extract_StackTrace)(p_min->where);
sewardjfa8ec112005-01-19 11:55:34 +0000740 VG_(translate) ( 0 /* dummy ThreadId; irrelevant due to debugging*/,
njnd01fef72005-03-25 23:35:48 +0000741 ips[0], /*debugging*/True, 0xFE/*verbosity*/);
sewardjde4a1d02002-03-22 01:27:54 +0000742 }
743
744 p_min->count = 1 << 30;
745 }
746
747 if (n_supp_contexts > 0)
748 VG_(message)(Vg_DebugMsg, "");
sewardj71bc3cb2005-05-19 00:25:45 +0000749 any_supp = show_used_suppressions();
sewardjde4a1d02002-03-22 01:27:54 +0000750
751 if (n_err_contexts > 0) {
752 if (any_supp)
753 VG_(message)(Vg_UserMsg, "");
754 VG_(message)(Vg_UserMsg,
755 "IN SUMMARY: "
756 "%d errors from %d contexts (suppressed: %d from %d)",
nethercotef2b11482004-08-02 12:36:01 +0000757 n_errs_found, n_err_contexts, n_errs_suppressed,
sewardjde4a1d02002-03-22 01:27:54 +0000758 n_supp_contexts );
759 VG_(message)(Vg_UserMsg, "");
760 }
761}
762
sewardj9f297ca2005-05-20 02:29:52 +0000763
764/* Show occurrence counts of all errors, in XML form. */
765void VG_(show_error_counts_as_XML) ( void )
766{
767 Error* err;
768 VG_(message)(Vg_UserMsg, "<errorcounts>");
769 for (err = errors; err != NULL; err = err->next) {
770 if (err->supp != NULL)
771 continue;
772 if (err->count <= 0)
773 continue;
774 VG_(message)(
sewardj7c9e57c2005-05-24 14:21:45 +0000775 Vg_UserMsg, " <pair><count>%d</count>"
776 "<unique>0x%llx</unique></pair>",
777 err->count, Ptr_to_ULong(err)
sewardj9f297ca2005-05-20 02:29:52 +0000778 );
779 }
780 VG_(message)(Vg_UserMsg, "</errorcounts>");
781}
782
783
sewardjde4a1d02002-03-22 01:27:54 +0000784/*------------------------------------------------------------*/
785/*--- Standard suppressions ---*/
786/*------------------------------------------------------------*/
787
788/* Get a non-blank, non-comment line of at most nBuf chars from fd.
789 Skips leading spaces on the line. Return True if EOF was hit instead.
790*/
njn4ba5a792002-09-30 10:23:54 +0000791Bool VG_(get_line) ( Int fd, Char* buf, Int nBuf )
sewardjde4a1d02002-03-22 01:27:54 +0000792{
793 Char ch;
794 Int n, i;
795 while (True) {
796 /* First, read until a non-blank char appears. */
797 while (True) {
798 n = VG_(read)(fd, &ch, 1);
njn0c0f32a2005-03-26 04:14:01 +0000799 if (n == 1 && !VG_(isspace)(ch)) break;
sewardjde4a1d02002-03-22 01:27:54 +0000800 if (n == 0) return True;
801 }
802
803 /* Now, read the line into buf. */
804 i = 0;
805 buf[i++] = ch; buf[i] = 0;
806 while (True) {
807 n = VG_(read)(fd, &ch, 1);
808 if (n == 0) return False; /* the next call will return True */
809 if (ch == '\n') break;
810 if (i > 0 && i == nBuf-1) i--;
811 buf[i++] = ch; buf[i] = 0;
812 }
njn0c0f32a2005-03-26 04:14:01 +0000813 while (i > 1 && VG_(isspace)(buf[i-1])) {
sewardjde4a1d02002-03-22 01:27:54 +0000814 i--; buf[i] = 0;
815 };
816
njn02bc4b82005-05-15 17:28:26 +0000817 /* VG_(printf)("The line is '%s'\n", buf); */
sewardjde4a1d02002-03-22 01:27:54 +0000818 /* Ok, we have a line. If a non-comment line, return.
819 If a comment line, start all over again. */
820 if (buf[0] != '#') return False;
821 }
822}
823
824
825/* *p_caller contains the raw name of a caller, supposedly either
826 fun:some_function_name or
827 obj:some_object_name.
828 Set *p_ty accordingly and advance *p_caller over the descriptor
829 (fun: or obj:) part.
830 Returns False if failed.
831*/
sewardjb5f6f512005-03-10 23:59:00 +0000832static Bool setLocationTy ( SuppLoc* p )
sewardjde4a1d02002-03-22 01:27:54 +0000833{
sewardjb5f6f512005-03-10 23:59:00 +0000834 if (VG_(strncmp)(p->name, "fun:", 4) == 0) {
835 p->name += 4;
836 p->ty = FunName;
sewardjde4a1d02002-03-22 01:27:54 +0000837 return True;
838 }
sewardjb5f6f512005-03-10 23:59:00 +0000839 if (VG_(strncmp)(p->name, "obj:", 4) == 0) {
840 p->name += 4;
841 p->ty = ObjName;
sewardjde4a1d02002-03-22 01:27:54 +0000842 return True;
843 }
844 VG_(printf)("location should start with fun: or obj:\n");
845 return False;
846}
847
848
nethercote7cc9c232004-01-21 15:08:04 +0000849/* Look for "tool" in a string like "tool1,tool2,tool3" */
njn11cc9252002-10-07 14:42:59 +0000850static __inline__
nethercote7cc9c232004-01-21 15:08:04 +0000851Bool tool_name_present(Char *name, Char *names)
njn11cc9252002-10-07 14:42:59 +0000852{
853 Bool found;
854 Char *s = NULL; /* Shut gcc up */
855 Int len = VG_(strlen)(name);
856
857 found = (NULL != (s = VG_(strstr)(names, name)) &&
858 (s == names || *(s-1) == ',') &&
859 (*(s+len) == ',' || *(s+len) == '\0')
860 );
861
862 return found;
863}
864
njn695c16e2005-03-27 03:40:28 +0000865/* Read suppressions from the file specified in VG_(clo_suppressions)
sewardjde4a1d02002-03-22 01:27:54 +0000866 and place them in the suppressions list. If there's any difficulty
867 doing this, just give up -- there's no point in trying to recover.
868*/
sewardjde4a1d02002-03-22 01:27:54 +0000869static void load_one_suppressions_file ( Char* filename )
870{
871# define N_BUF 200
njnc40c3a82002-10-02 11:02:27 +0000872 Int fd, i;
sewardjb5f6f512005-03-10 23:59:00 +0000873 Bool eof;
njnc40c3a82002-10-02 11:02:27 +0000874 Char buf[N_BUF+1];
nethercote7cc9c232004-01-21 15:08:04 +0000875 Char* tool_names;
njnc40c3a82002-10-02 11:02:27 +0000876 Char* supp_name;
sewardjb5f6f512005-03-10 23:59:00 +0000877 Char* err_str = NULL;
878 SuppLoc tmp_callers[VG_MAX_SUPP_CALLERS];
njnc40c3a82002-10-02 11:02:27 +0000879
njn25e49d8e72002-09-23 09:36:25 +0000880 fd = VG_(open)( filename, VKI_O_RDONLY, 0 );
jsgff3c3f1a2003-10-14 22:13:28 +0000881 if (fd < 0) {
njn02bc4b82005-05-15 17:28:26 +0000882 VG_(message)(Vg_UserMsg, "FATAL: can't open suppressions file '%s'",
sewardjde4a1d02002-03-22 01:27:54 +0000883 filename );
884 VG_(exit)(1);
885 }
886
sewardjb5f6f512005-03-10 23:59:00 +0000887#define BOMB(S) { err_str = S; goto syntax_error; }
888
sewardjde4a1d02002-03-22 01:27:54 +0000889 while (True) {
nethercote7cc9c232004-01-21 15:08:04 +0000890 /* Assign and initialise the two suppression halves (core and tool) */
njn810086f2002-11-14 12:42:47 +0000891 Supp* supp;
892 supp = VG_(arena_malloc)(VG_AR_CORE, sizeof(Supp));
sewardjde4a1d02002-03-22 01:27:54 +0000893 supp->count = 0;
sewardjb5f6f512005-03-10 23:59:00 +0000894
895 // Initialise temporary reading-in buffer.
896 for (i = 0; i < VG_MAX_SUPP_CALLERS; i++) {
897 tmp_callers[i].ty = NoName;
898 tmp_callers[i].name = NULL;
899 }
900
njn810086f2002-11-14 12:42:47 +0000901 supp->string = supp->extra = NULL;
sewardjde4a1d02002-03-22 01:27:54 +0000902
njn4ba5a792002-09-30 10:23:54 +0000903 eof = VG_(get_line) ( fd, buf, N_BUF );
sewardjde4a1d02002-03-22 01:27:54 +0000904 if (eof) break;
905
sewardjb5f6f512005-03-10 23:59:00 +0000906 if (!VG_STREQ(buf, "{")) BOMB("expected '{' or end-of-file");
sewardjde4a1d02002-03-22 01:27:54 +0000907
njn4ba5a792002-09-30 10:23:54 +0000908 eof = VG_(get_line) ( fd, buf, N_BUF );
sewardjb5f6f512005-03-10 23:59:00 +0000909
910 if (eof || VG_STREQ(buf, "}")) BOMB("unexpected '}'");
911
njn25e49d8e72002-09-23 09:36:25 +0000912 supp->sname = VG_(arena_strdup)(VG_AR_CORE, buf);
sewardjde4a1d02002-03-22 01:27:54 +0000913
njn4ba5a792002-09-30 10:23:54 +0000914 eof = VG_(get_line) ( fd, buf, N_BUF );
njn25e49d8e72002-09-23 09:36:25 +0000915
sewardjb5f6f512005-03-10 23:59:00 +0000916 if (eof) BOMB("unexpected end-of-file");
sewardjde4a1d02002-03-22 01:27:54 +0000917
njn94065fd2004-11-22 19:26:27 +0000918 /* Check it has the "tool1,tool2,...:supp" form (look for ':') */
njnc40c3a82002-10-02 11:02:27 +0000919 i = 0;
920 while (True) {
921 if (buf[i] == ':') break;
sewardjb5f6f512005-03-10 23:59:00 +0000922 if (buf[i] == '\0') BOMB("malformed 'tool1,tool2,...:supp' line");
njnc40c3a82002-10-02 11:02:27 +0000923 i++;
njn25e49d8e72002-09-23 09:36:25 +0000924 }
njnc40c3a82002-10-02 11:02:27 +0000925 buf[i] = '\0'; /* Replace ':', splitting into two strings */
926
nethercote7cc9c232004-01-21 15:08:04 +0000927 tool_names = & buf[0];
njn11cc9252002-10-07 14:42:59 +0000928 supp_name = & buf[i+1];
njnc40c3a82002-10-02 11:02:27 +0000929
nethercote7cc9c232004-01-21 15:08:04 +0000930 if (VG_(needs).core_errors && tool_name_present("core", tool_names))
njnc40c3a82002-10-02 11:02:27 +0000931 {
sewardjb5f6f512005-03-10 23:59:00 +0000932 // A core suppression
njn43c799e2003-04-08 00:08:52 +0000933 if (VG_STREQ(supp_name, "PThread"))
njn810086f2002-11-14 12:42:47 +0000934 supp->skind = PThreadSupp;
njnc40c3a82002-10-02 11:02:27 +0000935 else
sewardjb5f6f512005-03-10 23:59:00 +0000936 BOMB("unknown core suppression type");
njnc40c3a82002-10-02 11:02:27 +0000937 }
njn95ec8702004-11-22 16:46:13 +0000938 else if (VG_(needs).tool_errors &&
nethercote7cc9c232004-01-21 15:08:04 +0000939 tool_name_present(VG_(details).name, tool_names))
njnc40c3a82002-10-02 11:02:27 +0000940 {
sewardjb5f6f512005-03-10 23:59:00 +0000941 // A tool suppression
njn51d827b2005-05-09 01:02:08 +0000942 if (VG_TDICT_CALL(tool_recognised_suppression, supp_name, supp)) {
njn810086f2002-11-14 12:42:47 +0000943 /* Do nothing, function fills in supp->skind */
sewardjb5f6f512005-03-10 23:59:00 +0000944 } else {
945 BOMB("unknown tool suppression type");
946 }
njnc40c3a82002-10-02 11:02:27 +0000947 }
njn25e49d8e72002-09-23 09:36:25 +0000948 else {
sewardjb5f6f512005-03-10 23:59:00 +0000949 // Ignore rest of suppression
njn25e49d8e72002-09-23 09:36:25 +0000950 while (True) {
njn4ba5a792002-09-30 10:23:54 +0000951 eof = VG_(get_line) ( fd, buf, N_BUF );
sewardjb5f6f512005-03-10 23:59:00 +0000952 if (eof) BOMB("unexpected end-of-file");
njn43c799e2003-04-08 00:08:52 +0000953 if (VG_STREQ(buf, "}"))
njn25e49d8e72002-09-23 09:36:25 +0000954 break;
955 }
956 continue;
sewardjde4a1d02002-03-22 01:27:54 +0000957 }
958
njn95ec8702004-11-22 16:46:13 +0000959 if (VG_(needs).tool_errors &&
njn51d827b2005-05-09 01:02:08 +0000960 !VG_TDICT_CALL(tool_read_extra_suppression_info, fd, buf, N_BUF, supp))
sewardjb5f6f512005-03-10 23:59:00 +0000961 {
962 BOMB("bad or missing extra suppression info");
sewardjde4a1d02002-03-22 01:27:54 +0000963 }
964
sewardjb5f6f512005-03-10 23:59:00 +0000965 i = 0;
966 while (True) {
967 eof = VG_(get_line) ( fd, buf, N_BUF );
968 if (eof)
969 BOMB("unexpected end-of-file");
970 if (VG_STREQ(buf, "}")) {
971 if (i > 0) {
972 break;
973 } else {
974 BOMB("missing stack trace");
975 }
976 }
977 if (i == VG_MAX_SUPP_CALLERS)
978 BOMB("too many callers in stack trace");
979 if (i > 0 && i >= VG_(clo_backtrace_size))
980 break;
981 tmp_callers[i].name = VG_(arena_strdup)(VG_AR_CORE, buf);
982 if (!setLocationTy(&(tmp_callers[i])))
983 BOMB("location should start with 'fun:' or 'obj:'");
984 i++;
985 }
986
987 // If the num callers is >= VG_(clo_backtrace_size), ignore any extra
988 // lines and grab the '}'.
sewardj57a8f5f2003-07-06 01:40:11 +0000989 if (!VG_STREQ(buf, "}")) {
sewardjb5f6f512005-03-10 23:59:00 +0000990 do {
991 eof = VG_(get_line) ( fd, buf, N_BUF );
992 } while (!eof && !VG_STREQ(buf, "}"));
993 }
994
995 // Copy tmp_callers[] into supp->callers[]
996 supp->n_callers = i;
997 supp->callers = VG_(arena_malloc)(VG_AR_CORE, i*sizeof(SuppLoc));
998 for (i = 0; i < supp->n_callers; i++) {
999 supp->callers[i] = tmp_callers[i];
sewardj57a8f5f2003-07-06 01:40:11 +00001000 }
1001
njn695c16e2005-03-27 03:40:28 +00001002 supp->next = suppressions;
1003 suppressions = supp;
sewardjde4a1d02002-03-22 01:27:54 +00001004 }
sewardjde4a1d02002-03-22 01:27:54 +00001005 VG_(close)(fd);
1006 return;
1007
1008 syntax_error:
sewardjb5f6f512005-03-10 23:59:00 +00001009 VG_(message)(Vg_UserMsg,
njn02bc4b82005-05-15 17:28:26 +00001010 "FATAL: in suppressions file '%s': %s", filename, err_str );
sewardjb5f6f512005-03-10 23:59:00 +00001011
sewardjde4a1d02002-03-22 01:27:54 +00001012 VG_(close)(fd);
1013 VG_(message)(Vg_UserMsg, "exiting now.");
nethercote8ed8a892004-11-08 13:24:25 +00001014 VG_(exit)(1);
sewardjde4a1d02002-03-22 01:27:54 +00001015
sewardjb5f6f512005-03-10 23:59:00 +00001016# undef BOMB
sewardjde4a1d02002-03-22 01:27:54 +00001017# undef N_BUF
1018}
1019
1020
1021void VG_(load_suppressions) ( void )
1022{
1023 Int i;
njn695c16e2005-03-27 03:40:28 +00001024 suppressions = NULL;
sewardjde4a1d02002-03-22 01:27:54 +00001025 for (i = 0; i < VG_(clo_n_suppressions); i++) {
1026 if (VG_(clo_verbosity) > 1) {
njn3f04d242005-03-20 18:21:14 +00001027 VG_(message)(Vg_DebugMsg, "Reading suppressions file: %s",
1028 VG_(clo_suppressions)[i] );
sewardjde4a1d02002-03-22 01:27:54 +00001029 }
1030 load_one_suppressions_file( VG_(clo_suppressions)[i] );
1031 }
1032}
1033
sewardjb5f6f512005-03-10 23:59:00 +00001034static
njn810086f2002-11-14 12:42:47 +00001035Bool supp_matches_error(Supp* su, Error* err)
njn25e49d8e72002-09-23 09:36:25 +00001036{
njn810086f2002-11-14 12:42:47 +00001037 switch (su->skind) {
njn25e49d8e72002-09-23 09:36:25 +00001038 case PThreadSupp:
sewardjb5f6f512005-03-10 23:59:00 +00001039 return (err->ekind == ThreadErr || err->ekind == MutexErr);
njn25e49d8e72002-09-23 09:36:25 +00001040 default:
njn95ec8702004-11-22 16:46:13 +00001041 if (VG_(needs).tool_errors) {
njn51d827b2005-05-09 01:02:08 +00001042 return VG_TDICT_CALL(tool_error_matches_suppression, err, su);
njn25e49d8e72002-09-23 09:36:25 +00001043 } else {
1044 VG_(printf)(
njn95ec8702004-11-22 16:46:13 +00001045 "\nUnhandled suppression type: %u. VG_(needs).tool_errors\n"
njn25e49d8e72002-09-23 09:36:25 +00001046 "probably needs to be set.\n",
njn810086f2002-11-14 12:42:47 +00001047 err->ekind);
njn67993252004-11-22 18:02:32 +00001048 VG_(tool_panic)("unhandled suppression type");
njn25e49d8e72002-09-23 09:36:25 +00001049 }
1050 }
1051}
1052
sewardjb5f6f512005-03-10 23:59:00 +00001053static
1054Bool supp_matches_callers(Error* err, Supp* su)
njn25e49d8e72002-09-23 09:36:25 +00001055{
1056 Int i;
njn47b209a2005-03-25 23:47:16 +00001057 Char caller_name[VG_ERRTXT_LEN];
njnd01fef72005-03-25 23:35:48 +00001058 StackTrace ips = VG_(extract_StackTrace)(err->where);
njn25e49d8e72002-09-23 09:36:25 +00001059
sewardjb5f6f512005-03-10 23:59:00 +00001060 for (i = 0; i < su->n_callers; i++) {
njnd01fef72005-03-25 23:35:48 +00001061 Addr a = ips[i];
sewardjb5f6f512005-03-10 23:59:00 +00001062 vg_assert(su->callers[i].name != NULL);
1063 switch (su->callers[i].ty) {
1064 case ObjName:
njn47b209a2005-03-25 23:47:16 +00001065 if (!VG_(get_objname)(a, caller_name, VG_ERRTXT_LEN))
njn58c9f812005-03-11 04:46:09 +00001066 return False;
sewardjb5f6f512005-03-10 23:59:00 +00001067 break;
1068
1069 case FunName:
1070 // Nb: mangled names used in suppressions
njn47b209a2005-03-25 23:47:16 +00001071 if (!VG_(get_fnname_nodemangle)(a, caller_name, VG_ERRTXT_LEN))
njn58c9f812005-03-11 04:46:09 +00001072 return False;
sewardjb5f6f512005-03-10 23:59:00 +00001073 break;
njn67993252004-11-22 18:02:32 +00001074 default: VG_(tool_panic)("supp_matches_callers");
njn25e49d8e72002-09-23 09:36:25 +00001075 }
sewardjb5f6f512005-03-10 23:59:00 +00001076 if (!VG_(string_match)(su->callers[i].name, caller_name))
1077 return False;
njn25e49d8e72002-09-23 09:36:25 +00001078 }
1079
1080 /* If we reach here, it's a match */
1081 return True;
1082}
sewardjde4a1d02002-03-22 01:27:54 +00001083
njn810086f2002-11-14 12:42:47 +00001084/* Does an error context match a suppression? ie is this a suppressible
1085 error? If so, return a pointer to the Supp record, otherwise NULL.
njn25e49d8e72002-09-23 09:36:25 +00001086 Tries to minimise the number of symbol searches since they are expensive.
sewardjde4a1d02002-03-22 01:27:54 +00001087*/
njn810086f2002-11-14 12:42:47 +00001088static Supp* is_suppressible_error ( Error* err )
sewardjde4a1d02002-03-22 01:27:54 +00001089{
njn810086f2002-11-14 12:42:47 +00001090 Supp* su;
sewardjde4a1d02002-03-22 01:27:54 +00001091
sewardjde4a1d02002-03-22 01:27:54 +00001092 /* See if the error context matches any suppression. */
njn695c16e2005-03-27 03:40:28 +00001093 for (su = suppressions; su != NULL; su = su->next) {
njn25e49d8e72002-09-23 09:36:25 +00001094 if (supp_matches_error(su, err) &&
sewardjb5f6f512005-03-10 23:59:00 +00001095 supp_matches_callers(err, su))
1096 {
njn25e49d8e72002-09-23 09:36:25 +00001097 return su;
sewardjde4a1d02002-03-22 01:27:54 +00001098 }
sewardjde4a1d02002-03-22 01:27:54 +00001099 }
njn25e49d8e72002-09-23 09:36:25 +00001100 return NULL; /* no matches */
sewardjde4a1d02002-03-22 01:27:54 +00001101}
1102
sewardjde4a1d02002-03-22 01:27:54 +00001103/*--------------------------------------------------------------------*/
sewardj267100d2005-04-24 12:33:12 +00001104/*--- end m_errormgr.c ---*/
sewardjde4a1d02002-03-22 01:27:54 +00001105/*--------------------------------------------------------------------*/