blob: 6c5211a91dc29f17642f65f925688905d873331e [file] [log] [blame]
njnd2b17112005-04-19 04:10:25 +00001/*--------------------------------------------------------------------*/
2/*--- ErrorMgr: management of errors and suppressions. ---*/
3/*--- pub_tool_errormgr.h ---*/
4/*--------------------------------------------------------------------*/
5
6/*
7 This file is part of Valgrind, a dynamic binary instrumentation
8 framework.
9
10 Copyright (C) 2000-2005 Julian Seward
11 jseward@acm.org
12
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
28 The GNU General Public License is contained in the file COPYING.
29*/
30
31#ifndef __PUB_TOOL_ERRORMGR_H
32#define __PUB_TOOL_ERRORMGR_H
33
34#include "pub_tool_execontext.h"
35
36/* ------------------------------------------------------------------ */
37/* Error records contain enough info to generate an error report. The idea
38 is that (typically) the same few points in the program generate thousands
39 of errors, and we don't want to spew out a fresh error message for each
40 one. Instead, we use these structures to common up duplicates.
41*/
42
43typedef
44 Int /* Do not make this unsigned! */
45 ErrorKind;
46
47/* The tool-relevant parts of an Error are:
48 kind: what kind of error; must be in the range (0..)
49 addr: use is optional. 0 by default.
50 string: use is optional. NULL by default.
51 extra: use is optional. NULL by default. void* so it's extensible.
52*/
53typedef
54 struct _Error
55 Error;
56
57/* Useful in TL_(error_matches_suppression)(), TL_(pp_Error)(), etc */
58ExeContext* VG_(get_error_where) ( Error* err );
59ErrorKind VG_(get_error_kind) ( Error* err );
60Addr VG_(get_error_address) ( Error* err );
61Char* VG_(get_error_string) ( Error* err );
62void* VG_(get_error_extra) ( Error* err );
63
64/* Call this when an error occurs. It will be recorded if it hasn't been
65 seen before. If it has, the existing error record will have its count
66 incremented.
67
68 'tid' can be found as for VG_(record_ExeContext)(). The `extra' field can
69 be stack-allocated; it will be copied by the core if needed (but it
70 won't be copied if it's NULL).
71
72 If no 'a', 's' or 'extra' of interest needs to be recorded, just use
73 NULL for them. */
74extern void VG_(maybe_record_error) ( ThreadId tid, ErrorKind ekind,
75 Addr a, Char* s, void* extra );
76
77/* Similar to VG_(maybe_record_error)(), except this one doesn't record the
78 error -- useful for errors that can only happen once. The errors can be
79 suppressed, though. Return value is True if it was suppressed.
80 `print_error' dictates whether to print the error, which is a bit of a
81 hack that's useful sometimes if you just want to know if the error would
82 be suppressed without possibly printing it. `count_error' dictates
83 whether to add the error in the error total count (another mild hack). */
84extern Bool VG_(unique_error) ( ThreadId tid, ErrorKind ekind,
85 Addr a, Char* s, void* extra,
86 ExeContext* where, Bool print_error,
87 Bool allow_GDB_attach, Bool count_error );
88
89/* Gets a non-blank, non-comment line of at most nBuf chars from fd.
90 Skips leading spaces on the line. Returns True if EOF was hit instead.
91 Useful for reading in extra tool-specific suppression lines. */
92extern Bool VG_(get_line) ( Int fd, Char* buf, Int nBuf );
93
94
95/* ------------------------------------------------------------------ */
96/* Suppressions describe errors which we want to suppress, ie, not
97 show the user, usually because it is caused by a problem in a library
98 which we can't fix, replace or work around. Suppressions are read from
99 a file at startup time. This gives flexibility so that new
100 suppressions can be added to the file as and when needed.
101*/
102typedef
103 Int /* Do not make this unsigned! */
104 SuppKind;
105
106/* The tool-relevant parts of a suppression are:
107 kind: what kind of suppression; must be in the range (0..)
108 string: use is optional. NULL by default.
109 extra: use is optional. NULL by default. void* so it's extensible.
110*/
111typedef
112 struct _Supp
113 Supp;
114
115/* Useful in TL_(error_matches_suppression)() */
116SuppKind VG_(get_supp_kind) ( Supp* su );
117Char* VG_(get_supp_string) ( Supp* su );
118void* VG_(get_supp_extra) ( Supp* su );
119
120/* Must be used in VG_(recognised_suppression)() */
121void VG_(set_supp_kind) ( Supp* su, SuppKind suppkind );
122/* May be used in VG_(read_extra_suppression_info)() */
123void VG_(set_supp_string) ( Supp* su, Char* string );
124void VG_(set_supp_extra) ( Supp* su, void* extra );
125
126
127#endif // __PUB_TOOL_ERRORMGR_H
128
129/*--------------------------------------------------------------------*/
130/*--- end ---*/
131/*--------------------------------------------------------------------*/