blob: fcc76446d9cf21a1b26c169fbe305957f30d44d7 [file] [log] [blame]
njn25e49d8e72002-09-23 09:36:25 +00001
2/*
3 ----------------------------------------------------------------
4
5 Notice that the following BSD-style license applies to this one
njn7fd15d62006-03-31 12:05:04 +00006 file (memcheck.h) only. The rest of Valgrind is licensed under the
7 terms of the GNU General Public License, version 2, unless
8 otherwise indicated. See the COPYING file in the source
9 distribution for details.
njn25e49d8e72002-09-23 09:36:25 +000010
11 ----------------------------------------------------------------
12
nethercote137bc552003-11-14 17:47:54 +000013 This file is part of MemCheck, a heavyweight Valgrind tool for
njnc9539842002-10-02 13:26:35 +000014 detecting memory errors.
njn25e49d8e72002-09-23 09:36:25 +000015
sewardj03f8d3f2012-08-05 15:46:46 +000016 Copyright (C) 2000-2012 Julian Seward. All rights reserved.
njn25e49d8e72002-09-23 09:36:25 +000017
18 Redistribution and use in source and binary forms, with or without
19 modification, are permitted provided that the following conditions
20 are met:
21
22 1. Redistributions of source code must retain the above copyright
23 notice, this list of conditions and the following disclaimer.
24
25 2. The origin of this software must not be misrepresented; you must
26 not claim that you wrote the original software. If you use this
27 software in a product, an acknowledgment in the product
28 documentation would be appreciated but is not required.
29
30 3. Altered source versions must be plainly marked as such, and must
31 not be misrepresented as being the original software.
32
33 4. The name of the author may not be used to endorse or promote
34 products derived from this software without specific prior written
35 permission.
36
37 THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS
38 OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
39 WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
40 ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
41 DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
42 DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
43 GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
44 INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
45 WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
46 NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
47 SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
48
49 ----------------------------------------------------------------
50
51 Notice that the above BSD-style license applies to this one file
sewardja81709d2002-12-28 12:55:48 +000052 (memcheck.h) only. The entire rest of Valgrind is licensed under
njn25e49d8e72002-09-23 09:36:25 +000053 the terms of the GNU General Public License, version 2. See the
54 COPYING file in the source distribution for details.
55
56 ----------------------------------------------------------------
57*/
58
59
njn25cac76cb2002-09-23 11:21:57 +000060#ifndef __MEMCHECK_H
61#define __MEMCHECK_H
njn25e49d8e72002-09-23 09:36:25 +000062
63
64/* This file is for inclusion into client (your!) code.
65
66 You can use these macros to manipulate and query memory permissions
67 inside your own programs.
68
69 See comment near the top of valgrind.h on how to use them.
70*/
71
72#include "valgrind.h"
73
sewardjfb1e9ad2006-03-10 13:41:58 +000074/* !! ABIWARNING !! ABIWARNING !! ABIWARNING !! ABIWARNING !!
75 This enum comprises an ABI exported by Valgrind to programs
76 which use client requests. DO NOT CHANGE THE ORDER OF THESE
sewardj0928fed2006-03-11 12:58:03 +000077 ENTRIES, NOR DELETE ANY -- add new ones at the end. */
njn25e49d8e72002-09-23 09:36:25 +000078typedef
79 enum {
njndbf7ca72006-03-31 11:57:59 +000080 VG_USERREQ__MAKE_MEM_NOACCESS = VG_USERREQ_TOOL_BASE('M','C'),
81 VG_USERREQ__MAKE_MEM_UNDEFINED,
82 VG_USERREQ__MAKE_MEM_DEFINED,
njn25e49d8e72002-09-23 09:36:25 +000083 VG_USERREQ__DISCARD,
njndbf7ca72006-03-31 11:57:59 +000084 VG_USERREQ__CHECK_MEM_IS_ADDRESSABLE,
85 VG_USERREQ__CHECK_MEM_IS_DEFINED,
njn47363ab2003-04-21 13:24:40 +000086 VG_USERREQ__DO_LEAK_CHECK,
njn10785452003-05-20 16:38:24 +000087 VG_USERREQ__COUNT_LEAKS,
njnd7994182003-10-02 13:44:04 +000088
sewardjee070842003-07-05 17:53:55 +000089 VG_USERREQ__GET_VBITS,
fitzhardinge98abfc72003-12-16 02:05:15 +000090 VG_USERREQ__SET_VBITS,
91
sewardjb5f6f512005-03-10 23:59:00 +000092 VG_USERREQ__CREATE_BLOCK,
93
njndbf7ca72006-03-31 11:57:59 +000094 VG_USERREQ__MAKE_MEM_DEFINED_IF_ADDRESSABLE,
sewardjfb1e9ad2006-03-10 13:41:58 +000095
njn8df80b22009-03-02 05:11:06 +000096 /* Not next to VG_USERREQ__COUNT_LEAKS because it was added later. */
97 VG_USERREQ__COUNT_LEAK_BLOCKS,
98
fitzhardinge98abfc72003-12-16 02:05:15 +000099 /* This is just for memcheck's internal use - don't use it */
njn1f8b3e72005-03-22 04:27:14 +0000100 _VG_USERREQ__MEMCHECK_RECORD_OVERLAP_ERROR
101 = VG_USERREQ_TOOL_BASE('M','C') + 256
njn25e49d8e72002-09-23 09:36:25 +0000102 } Vg_MemCheckClientRequest;
103
104
105
106/* Client-code macros to manipulate the state of memory. */
107
njndbf7ca72006-03-31 11:57:59 +0000108/* Mark memory at _qzz_addr as unaddressable for _qzz_len bytes. */
109#define VALGRIND_MAKE_MEM_NOACCESS(_qzz_addr,_qzz_len) \
bartedef4172010-09-02 09:41:52 +0000110 VALGRIND_DO_CLIENT_REQUEST_EXPR(0 /* default return */, \
njndbf7ca72006-03-31 11:57:59 +0000111 VG_USERREQ__MAKE_MEM_NOACCESS, \
bartedef4172010-09-02 09:41:52 +0000112 (_qzz_addr), (_qzz_len), 0, 0, 0)
njn25e49d8e72002-09-23 09:36:25 +0000113
njndbf7ca72006-03-31 11:57:59 +0000114/* Similarly, mark memory at _qzz_addr as addressable but undefined
njn25e49d8e72002-09-23 09:36:25 +0000115 for _qzz_len bytes. */
njndbf7ca72006-03-31 11:57:59 +0000116#define VALGRIND_MAKE_MEM_UNDEFINED(_qzz_addr,_qzz_len) \
bartedef4172010-09-02 09:41:52 +0000117 VALGRIND_DO_CLIENT_REQUEST_EXPR(0 /* default return */, \
njndbf7ca72006-03-31 11:57:59 +0000118 VG_USERREQ__MAKE_MEM_UNDEFINED, \
bartedef4172010-09-02 09:41:52 +0000119 (_qzz_addr), (_qzz_len), 0, 0, 0)
njndbf7ca72006-03-31 11:57:59 +0000120
121/* Similarly, mark memory at _qzz_addr as addressable and defined
122 for _qzz_len bytes. */
123#define VALGRIND_MAKE_MEM_DEFINED(_qzz_addr,_qzz_len) \
bartedef4172010-09-02 09:41:52 +0000124 VALGRIND_DO_CLIENT_REQUEST_EXPR(0 /* default return */, \
njndbf7ca72006-03-31 11:57:59 +0000125 VG_USERREQ__MAKE_MEM_DEFINED, \
bartedef4172010-09-02 09:41:52 +0000126 (_qzz_addr), (_qzz_len), 0, 0, 0)
njndbf7ca72006-03-31 11:57:59 +0000127
njndbf7ca72006-03-31 11:57:59 +0000128/* Similar to VALGRIND_MAKE_MEM_DEFINED except that addressability is
129 not altered: bytes which are addressable are marked as defined,
130 but those which are not addressable are left unchanged. */
bartedef4172010-09-02 09:41:52 +0000131#define VALGRIND_MAKE_MEM_DEFINED_IF_ADDRESSABLE(_qzz_addr,_qzz_len) \
132 VALGRIND_DO_CLIENT_REQUEST_EXPR(0 /* default return */, \
njndbf7ca72006-03-31 11:57:59 +0000133 VG_USERREQ__MAKE_MEM_DEFINED_IF_ADDRESSABLE, \
bartedef4172010-09-02 09:41:52 +0000134 (_qzz_addr), (_qzz_len), 0, 0, 0)
sewardjfb1e9ad2006-03-10 13:41:58 +0000135
sewardjb5f6f512005-03-10 23:59:00 +0000136/* Create a block-description handle. The description is an ascii
137 string which is included in any messages pertaining to addresses
138 within the specified memory range. Has no other effect on the
139 properties of the memory range. */
bartedef4172010-09-02 09:41:52 +0000140#define VALGRIND_CREATE_BLOCK(_qzz_addr,_qzz_len, _qzz_desc) \
141 VALGRIND_DO_CLIENT_REQUEST_EXPR(0 /* default return */, \
142 VG_USERREQ__CREATE_BLOCK, \
143 (_qzz_addr), (_qzz_len), (_qzz_desc), \
144 0, 0)
sewardjb5f6f512005-03-10 23:59:00 +0000145
146/* Discard a block-description-handle. Returns 1 for an
147 invalid handle, 0 for a valid handle. */
njn25e49d8e72002-09-23 09:36:25 +0000148#define VALGRIND_DISCARD(_qzz_blkindex) \
bartedef4172010-09-02 09:41:52 +0000149 VALGRIND_DO_CLIENT_REQUEST_EXPR(0 /* default return */, \
njn25e49d8e72002-09-23 09:36:25 +0000150 VG_USERREQ__DISCARD, \
bartedef4172010-09-02 09:41:52 +0000151 0, (_qzz_blkindex), 0, 0, 0)
njn25e49d8e72002-09-23 09:36:25 +0000152
153
154/* Client-code macros to check the state of memory. */
155
njndbf7ca72006-03-31 11:57:59 +0000156/* Check that memory at _qzz_addr is addressable for _qzz_len bytes.
njn25e49d8e72002-09-23 09:36:25 +0000157 If suitable addressibility is not established, Valgrind prints an
158 error message and returns the address of the first offending byte.
159 Otherwise it returns zero. */
bartedef4172010-09-02 09:41:52 +0000160#define VALGRIND_CHECK_MEM_IS_ADDRESSABLE(_qzz_addr,_qzz_len) \
161 VALGRIND_DO_CLIENT_REQUEST_EXPR(0, \
162 VG_USERREQ__CHECK_MEM_IS_ADDRESSABLE, \
163 (_qzz_addr), (_qzz_len), 0, 0, 0)
njn25e49d8e72002-09-23 09:36:25 +0000164
njndbf7ca72006-03-31 11:57:59 +0000165/* Check that memory at _qzz_addr is addressable and defined for
njn25e49d8e72002-09-23 09:36:25 +0000166 _qzz_len bytes. If suitable addressibility and definedness are not
167 established, Valgrind prints an error message and returns the
168 address of the first offending byte. Otherwise it returns zero. */
njndbf7ca72006-03-31 11:57:59 +0000169#define VALGRIND_CHECK_MEM_IS_DEFINED(_qzz_addr,_qzz_len) \
bartedef4172010-09-02 09:41:52 +0000170 VALGRIND_DO_CLIENT_REQUEST_EXPR(0, \
njndbf7ca72006-03-31 11:57:59 +0000171 VG_USERREQ__CHECK_MEM_IS_DEFINED, \
barteb09f9e2010-10-22 15:09:38 +0000172 (_qzz_addr), (_qzz_len), 0, 0, 0)
njn25e49d8e72002-09-23 09:36:25 +0000173
njndbf7ca72006-03-31 11:57:59 +0000174/* Use this macro to force the definedness and addressibility of an
175 lvalue to be checked. If suitable addressibility and definedness
njn25e49d8e72002-09-23 09:36:25 +0000176 are not established, Valgrind prints an error message and returns
177 the address of the first offending byte. Otherwise it returns
178 zero. */
njndbf7ca72006-03-31 11:57:59 +0000179#define VALGRIND_CHECK_VALUE_IS_DEFINED(__lvalue) \
180 VALGRIND_CHECK_MEM_IS_DEFINED( \
sewardj0ec07f32006-01-12 12:32:32 +0000181 (volatile unsigned char *)&(__lvalue), \
sewardj7db73be2008-05-12 15:25:04 +0000182 (unsigned long)(sizeof (__lvalue)))
njn25e49d8e72002-09-23 09:36:25 +0000183
njndbf7ca72006-03-31 11:57:59 +0000184
njn8225cc02009-03-09 22:52:24 +0000185/* Do a full memory leak check (like --leak-check=full) mid-execution. */
sewardj0ec07f32006-01-12 12:32:32 +0000186#define VALGRIND_DO_LEAK_CHECK \
sewardj4b3a7422011-10-24 13:21:57 +0000187 VALGRIND_DO_CLIENT_REQUEST_STMT(VG_USERREQ__DO_LEAK_CHECK, \
188 0, 0, 0, 0, 0)
njn6e69ecd2003-10-02 13:25:02 +0000189
sewardjc8bd1df2011-06-26 12:41:33 +0000190/* Same as VALGRIND_DO_LEAK_CHECK but only showing the entries for
191 which there was an increase in leaked bytes or leaked nr of blocks
192 since the previous leak search. */
bart06e9bf02011-10-07 09:39:56 +0000193#define VALGRIND_DO_ADDED_LEAK_CHECK \
sewardj4b3a7422011-10-24 13:21:57 +0000194 VALGRIND_DO_CLIENT_REQUEST_STMT(VG_USERREQ__DO_LEAK_CHECK, \
195 0, 1, 0, 0, 0)
sewardjc8bd1df2011-06-26 12:41:33 +0000196
197/* Same as VALGRIND_DO_ADDED_LEAK_CHECK but showing entries with
198 increased or decreased leaked bytes/blocks since previous leak
199 search. */
bart06e9bf02011-10-07 09:39:56 +0000200#define VALGRIND_DO_CHANGED_LEAK_CHECK \
sewardj4b3a7422011-10-24 13:21:57 +0000201 VALGRIND_DO_CLIENT_REQUEST_STMT(VG_USERREQ__DO_LEAK_CHECK, \
202 0, 2, 0, 0, 0)
sewardjc8bd1df2011-06-26 12:41:33 +0000203
njn8225cc02009-03-09 22:52:24 +0000204/* Do a summary memory leak check (like --leak-check=summary) mid-execution. */
bart575ce8e2011-05-15 07:04:03 +0000205#define VALGRIND_DO_QUICK_LEAK_CHECK \
sewardj4b3a7422011-10-24 13:21:57 +0000206 VALGRIND_DO_CLIENT_REQUEST_STMT(VG_USERREQ__DO_LEAK_CHECK, \
207 1, 0, 0, 0, 0)
sewardjb5f6f512005-03-10 23:59:00 +0000208
njn6e69ecd2003-10-02 13:25:02 +0000209/* Return number of leaked, dubious, reachable and suppressed bytes found by
njn36c11e92006-04-06 14:21:42 +0000210 all previous leak checks. They must be lvalues. */
sewardj0ec07f32006-01-12 12:32:32 +0000211#define VALGRIND_COUNT_LEAKS(leaked, dubious, reachable, suppressed) \
njn36c11e92006-04-06 14:21:42 +0000212 /* For safety on 64-bit platforms we assign the results to private
213 unsigned long variables, then assign these to the lvalues the user
214 specified, which works no matter what type 'leaked', 'dubious', etc
215 are. We also initialise '_qzz_leaked', etc because
216 VG_USERREQ__COUNT_LEAKS doesn't mark the values returned as
njn8df80b22009-03-02 05:11:06 +0000217 defined. */ \
bart575ce8e2011-05-15 07:04:03 +0000218 { \
njn36c11e92006-04-06 14:21:42 +0000219 unsigned long _qzz_leaked = 0, _qzz_dubious = 0; \
220 unsigned long _qzz_reachable = 0, _qzz_suppressed = 0; \
sewardj4b3a7422011-10-24 13:21:57 +0000221 VALGRIND_DO_CLIENT_REQUEST_STMT( \
njn36c11e92006-04-06 14:21:42 +0000222 VG_USERREQ__COUNT_LEAKS, \
223 &_qzz_leaked, &_qzz_dubious, \
224 &_qzz_reachable, &_qzz_suppressed, 0); \
225 leaked = _qzz_leaked; \
226 dubious = _qzz_dubious; \
227 reachable = _qzz_reachable; \
228 suppressed = _qzz_suppressed; \
njn6e69ecd2003-10-02 13:25:02 +0000229 }
230
njn8df80b22009-03-02 05:11:06 +0000231/* Return number of leaked, dubious, reachable and suppressed bytes found by
232 all previous leak checks. They must be lvalues. */
233#define VALGRIND_COUNT_LEAK_BLOCKS(leaked, dubious, reachable, suppressed) \
234 /* For safety on 64-bit platforms we assign the results to private
235 unsigned long variables, then assign these to the lvalues the user
236 specified, which works no matter what type 'leaked', 'dubious', etc
237 are. We also initialise '_qzz_leaked', etc because
238 VG_USERREQ__COUNT_LEAKS doesn't mark the values returned as
239 defined. */ \
bart575ce8e2011-05-15 07:04:03 +0000240 { \
njn8df80b22009-03-02 05:11:06 +0000241 unsigned long _qzz_leaked = 0, _qzz_dubious = 0; \
242 unsigned long _qzz_reachable = 0, _qzz_suppressed = 0; \
sewardj4b3a7422011-10-24 13:21:57 +0000243 VALGRIND_DO_CLIENT_REQUEST_STMT( \
njn8df80b22009-03-02 05:11:06 +0000244 VG_USERREQ__COUNT_LEAK_BLOCKS, \
245 &_qzz_leaked, &_qzz_dubious, \
246 &_qzz_reachable, &_qzz_suppressed, 0); \
247 leaked = _qzz_leaked; \
248 dubious = _qzz_dubious; \
249 reachable = _qzz_reachable; \
250 suppressed = _qzz_suppressed; \
251 }
252
njn6e69ecd2003-10-02 13:25:02 +0000253
njn1d0825f2006-03-27 11:37:07 +0000254/* Get the validity data for addresses [zza..zza+zznbytes-1] and copy it
255 into the provided zzvbits array. Return values:
sewardjee070842003-07-05 17:53:55 +0000256 0 if not running on valgrind
257 1 success
njn1d0825f2006-03-27 11:37:07 +0000258 2 [previously indicated unaligned arrays; these are now allowed]
njndbf7ca72006-03-31 11:57:59 +0000259 3 if any parts of zzsrc/zzvbits are not addressable.
sewardjee070842003-07-05 17:53:55 +0000260 The metadata is not copied in cases 0, 2 or 3 so it should be
261 impossible to segfault your system by using this call.
262*/
bart8c87e712010-10-18 16:30:50 +0000263#define VALGRIND_GET_VBITS(zza,zzvbits,zznbytes) \
bart575ce8e2011-05-15 07:04:03 +0000264 (unsigned)VALGRIND_DO_CLIENT_REQUEST_EXPR(0, \
bart8c87e712010-10-18 16:30:50 +0000265 VG_USERREQ__GET_VBITS, \
266 (const char*)(zza), \
267 (char*)(zzvbits), \
bartedef4172010-09-02 09:41:52 +0000268 (zznbytes), 0, 0)
sewardjee070842003-07-05 17:53:55 +0000269
njn1d0825f2006-03-27 11:37:07 +0000270/* Set the validity data for addresses [zza..zza+zznbytes-1], copying it
271 from the provided zzvbits array. Return values:
sewardjee070842003-07-05 17:53:55 +0000272 0 if not running on valgrind
273 1 success
njn1d0825f2006-03-27 11:37:07 +0000274 2 [previously indicated unaligned arrays; these are now allowed]
njndbf7ca72006-03-31 11:57:59 +0000275 3 if any parts of zza/zzvbits are not addressable.
sewardjee070842003-07-05 17:53:55 +0000276 The metadata is not copied in cases 0, 2 or 3 so it should be
277 impossible to segfault your system by using this call.
278*/
bart8c87e712010-10-18 16:30:50 +0000279#define VALGRIND_SET_VBITS(zza,zzvbits,zznbytes) \
bart575ce8e2011-05-15 07:04:03 +0000280 (unsigned)VALGRIND_DO_CLIENT_REQUEST_EXPR(0, \
bart8c87e712010-10-18 16:30:50 +0000281 VG_USERREQ__SET_VBITS, \
282 (const char*)(zza), \
283 (const char*)(zzvbits), \
bartedef4172010-09-02 09:41:52 +0000284 (zznbytes), 0, 0 )
njnd7994182003-10-02 13:44:04 +0000285
286#endif
287