njn25 | e49d8e7 | 2002-09-23 09:36:25 +0000 | [diff] [blame] | 1 | |
| 2 | /* |
| 3 | ---------------------------------------------------------------- |
| 4 | |
| 5 | Notice that the following BSD-style license applies to this one |
sewardj | a81709d | 2002-12-28 12:55:48 +0000 | [diff] [blame] | 6 | file (memcheck.h) only. The entire rest of Valgrind is licensed |
njn25 | e49d8e7 | 2002-09-23 09:36:25 +0000 | [diff] [blame] | 7 | under the terms of the GNU General Public License, version 2. See |
| 8 | the COPYING file in the source distribution for details. |
| 9 | |
| 10 | ---------------------------------------------------------------- |
| 11 | |
nethercote | 137bc55 | 2003-11-14 17:47:54 +0000 | [diff] [blame] | 12 | This file is part of MemCheck, a heavyweight Valgrind tool for |
njn | c953984 | 2002-10-02 13:26:35 +0000 | [diff] [blame] | 13 | detecting memory errors. |
njn25 | e49d8e7 | 2002-09-23 09:36:25 +0000 | [diff] [blame] | 14 | |
njn | 5361242 | 2005-03-12 16:22:54 +0000 | [diff] [blame] | 15 | Copyright (C) 2000-2005 Julian Seward. All rights reserved. |
njn25 | e49d8e7 | 2002-09-23 09:36:25 +0000 | [diff] [blame] | 16 | |
| 17 | Redistribution and use in source and binary forms, with or without |
| 18 | modification, are permitted provided that the following conditions |
| 19 | are met: |
| 20 | |
| 21 | 1. Redistributions of source code must retain the above copyright |
| 22 | notice, this list of conditions and the following disclaimer. |
| 23 | |
| 24 | 2. The origin of this software must not be misrepresented; you must |
| 25 | not claim that you wrote the original software. If you use this |
| 26 | software in a product, an acknowledgment in the product |
| 27 | documentation would be appreciated but is not required. |
| 28 | |
| 29 | 3. Altered source versions must be plainly marked as such, and must |
| 30 | not be misrepresented as being the original software. |
| 31 | |
| 32 | 4. The name of the author may not be used to endorse or promote |
| 33 | products derived from this software without specific prior written |
| 34 | permission. |
| 35 | |
| 36 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS |
| 37 | OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
| 38 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 39 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY |
| 40 | DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 41 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE |
| 42 | GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 43 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, |
| 44 | WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING |
| 45 | NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
| 46 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 47 | |
| 48 | ---------------------------------------------------------------- |
| 49 | |
| 50 | Notice that the above BSD-style license applies to this one file |
sewardj | a81709d | 2002-12-28 12:55:48 +0000 | [diff] [blame] | 51 | (memcheck.h) only. The entire rest of Valgrind is licensed under |
njn25 | e49d8e7 | 2002-09-23 09:36:25 +0000 | [diff] [blame] | 52 | the terms of the GNU General Public License, version 2. See the |
| 53 | COPYING file in the source distribution for details. |
| 54 | |
| 55 | ---------------------------------------------------------------- |
| 56 | */ |
| 57 | |
| 58 | |
njn25 | cac76cb | 2002-09-23 11:21:57 +0000 | [diff] [blame] | 59 | #ifndef __MEMCHECK_H |
| 60 | #define __MEMCHECK_H |
njn25 | e49d8e7 | 2002-09-23 09:36:25 +0000 | [diff] [blame] | 61 | |
| 62 | |
| 63 | /* This file is for inclusion into client (your!) code. |
| 64 | |
| 65 | You can use these macros to manipulate and query memory permissions |
| 66 | inside your own programs. |
| 67 | |
| 68 | See comment near the top of valgrind.h on how to use them. |
| 69 | */ |
| 70 | |
| 71 | #include "valgrind.h" |
| 72 | |
| 73 | typedef |
| 74 | enum { |
njn | fc26ff9 | 2004-11-22 19:12:49 +0000 | [diff] [blame] | 75 | VG_USERREQ__MAKE_NOACCESS = VG_USERREQ_TOOL_BASE('M','C'), |
njn25 | e49d8e7 | 2002-09-23 09:36:25 +0000 | [diff] [blame] | 76 | VG_USERREQ__MAKE_WRITABLE, |
| 77 | VG_USERREQ__MAKE_READABLE, |
| 78 | VG_USERREQ__DISCARD, |
| 79 | VG_USERREQ__CHECK_WRITABLE, |
| 80 | VG_USERREQ__CHECK_READABLE, |
njn | 47363ab | 2003-04-21 13:24:40 +0000 | [diff] [blame] | 81 | VG_USERREQ__DO_LEAK_CHECK, |
njn | 1078545 | 2003-05-20 16:38:24 +0000 | [diff] [blame] | 82 | VG_USERREQ__COUNT_LEAKS, |
njn | d799418 | 2003-10-02 13:44:04 +0000 | [diff] [blame] | 83 | |
sewardj | ee07084 | 2003-07-05 17:53:55 +0000 | [diff] [blame] | 84 | VG_USERREQ__GET_VBITS, |
fitzhardinge | 98abfc7 | 2003-12-16 02:05:15 +0000 | [diff] [blame] | 85 | VG_USERREQ__SET_VBITS, |
| 86 | |
sewardj | b5f6f51 | 2005-03-10 23:59:00 +0000 | [diff] [blame] | 87 | VG_USERREQ__CREATE_BLOCK, |
| 88 | |
fitzhardinge | 98abfc7 | 2003-12-16 02:05:15 +0000 | [diff] [blame] | 89 | /* This is just for memcheck's internal use - don't use it */ |
njn | 1f8b3e7 | 2005-03-22 04:27:14 +0000 | [diff] [blame] | 90 | _VG_USERREQ__MEMCHECK_RECORD_OVERLAP_ERROR |
| 91 | = VG_USERREQ_TOOL_BASE('M','C') + 256 |
njn25 | e49d8e7 | 2002-09-23 09:36:25 +0000 | [diff] [blame] | 92 | } Vg_MemCheckClientRequest; |
| 93 | |
| 94 | |
| 95 | |
| 96 | /* Client-code macros to manipulate the state of memory. */ |
| 97 | |
| 98 | /* Mark memory at _qzz_addr as unaddressible and undefined for |
sewardj | b5f6f51 | 2005-03-10 23:59:00 +0000 | [diff] [blame] | 99 | _qzz_len bytes. */ |
njn25 | e49d8e7 | 2002-09-23 09:36:25 +0000 | [diff] [blame] | 100 | #define VALGRIND_MAKE_NOACCESS(_qzz_addr,_qzz_len) \ |
sewardj | 34a257c | 2003-03-15 19:20:52 +0000 | [diff] [blame] | 101 | (__extension__({unsigned int _qzz_res; \ |
njn25 | e49d8e7 | 2002-09-23 09:36:25 +0000 | [diff] [blame] | 102 | VALGRIND_MAGIC_SEQUENCE(_qzz_res, 0 /* default return */, \ |
| 103 | VG_USERREQ__MAKE_NOACCESS, \ |
| 104 | _qzz_addr, _qzz_len, 0, 0); \ |
| 105 | _qzz_res; \ |
sewardj | 34a257c | 2003-03-15 19:20:52 +0000 | [diff] [blame] | 106 | })) |
njn25 | e49d8e7 | 2002-09-23 09:36:25 +0000 | [diff] [blame] | 107 | |
| 108 | /* Similarly, mark memory at _qzz_addr as addressible but undefined |
| 109 | for _qzz_len bytes. */ |
| 110 | #define VALGRIND_MAKE_WRITABLE(_qzz_addr,_qzz_len) \ |
sewardj | 34a257c | 2003-03-15 19:20:52 +0000 | [diff] [blame] | 111 | (__extension__({unsigned int _qzz_res; \ |
njn25 | e49d8e7 | 2002-09-23 09:36:25 +0000 | [diff] [blame] | 112 | VALGRIND_MAGIC_SEQUENCE(_qzz_res, 0 /* default return */, \ |
| 113 | VG_USERREQ__MAKE_WRITABLE, \ |
| 114 | _qzz_addr, _qzz_len, 0, 0); \ |
| 115 | _qzz_res; \ |
sewardj | 34a257c | 2003-03-15 19:20:52 +0000 | [diff] [blame] | 116 | })) |
njn25 | e49d8e7 | 2002-09-23 09:36:25 +0000 | [diff] [blame] | 117 | |
| 118 | /* Similarly, mark memory at _qzz_addr as addressible and defined |
| 119 | for _qzz_len bytes. */ |
| 120 | #define VALGRIND_MAKE_READABLE(_qzz_addr,_qzz_len) \ |
sewardj | 34a257c | 2003-03-15 19:20:52 +0000 | [diff] [blame] | 121 | (__extension__({unsigned int _qzz_res; \ |
njn25 | e49d8e7 | 2002-09-23 09:36:25 +0000 | [diff] [blame] | 122 | VALGRIND_MAGIC_SEQUENCE(_qzz_res, 0 /* default return */, \ |
| 123 | VG_USERREQ__MAKE_READABLE, \ |
| 124 | _qzz_addr, _qzz_len, 0, 0); \ |
| 125 | _qzz_res; \ |
sewardj | 34a257c | 2003-03-15 19:20:52 +0000 | [diff] [blame] | 126 | })) |
njn25 | e49d8e7 | 2002-09-23 09:36:25 +0000 | [diff] [blame] | 127 | |
sewardj | b5f6f51 | 2005-03-10 23:59:00 +0000 | [diff] [blame] | 128 | /* Create a block-description handle. The description is an ascii |
| 129 | string which is included in any messages pertaining to addresses |
| 130 | within the specified memory range. Has no other effect on the |
| 131 | properties of the memory range. */ |
| 132 | #define VALGRIND_CREATE_BLOCK(_qzz_addr,_qzz_len, _qzz_desc) \ |
| 133 | (__extension__({unsigned int _qzz_res; \ |
| 134 | VALGRIND_MAGIC_SEQUENCE(_qzz_res, 0 /* default return */, \ |
| 135 | VG_USERREQ__CREATE_BLOCK, \ |
| 136 | _qzz_addr, _qzz_len, _qzz_desc, 0); \ |
| 137 | _qzz_res; \ |
| 138 | })) |
| 139 | |
| 140 | /* Discard a block-description-handle. Returns 1 for an |
| 141 | invalid handle, 0 for a valid handle. */ |
njn25 | e49d8e7 | 2002-09-23 09:36:25 +0000 | [diff] [blame] | 142 | #define VALGRIND_DISCARD(_qzz_blkindex) \ |
sewardj | 34a257c | 2003-03-15 19:20:52 +0000 | [diff] [blame] | 143 | (__extension__ ({unsigned int _qzz_res; \ |
njn25 | e49d8e7 | 2002-09-23 09:36:25 +0000 | [diff] [blame] | 144 | VALGRIND_MAGIC_SEQUENCE(_qzz_res, 0 /* default return */, \ |
| 145 | VG_USERREQ__DISCARD, \ |
| 146 | 0, _qzz_blkindex, 0, 0); \ |
| 147 | _qzz_res; \ |
sewardj | 34a257c | 2003-03-15 19:20:52 +0000 | [diff] [blame] | 148 | })) |
njn25 | e49d8e7 | 2002-09-23 09:36:25 +0000 | [diff] [blame] | 149 | |
| 150 | |
| 151 | /* Client-code macros to check the state of memory. */ |
| 152 | |
| 153 | /* Check that memory at _qzz_addr is addressible for _qzz_len bytes. |
| 154 | If suitable addressibility is not established, Valgrind prints an |
| 155 | error message and returns the address of the first offending byte. |
| 156 | Otherwise it returns zero. */ |
| 157 | #define VALGRIND_CHECK_WRITABLE(_qzz_addr,_qzz_len) \ |
sewardj | 34a257c | 2003-03-15 19:20:52 +0000 | [diff] [blame] | 158 | (__extension__({unsigned int _qzz_res; \ |
njn25 | e49d8e7 | 2002-09-23 09:36:25 +0000 | [diff] [blame] | 159 | VALGRIND_MAGIC_SEQUENCE(_qzz_res, 0, \ |
| 160 | VG_USERREQ__CHECK_WRITABLE, \ |
| 161 | _qzz_addr, _qzz_len, 0, 0); \ |
| 162 | _qzz_res; \ |
sewardj | 34a257c | 2003-03-15 19:20:52 +0000 | [diff] [blame] | 163 | })) |
njn25 | e49d8e7 | 2002-09-23 09:36:25 +0000 | [diff] [blame] | 164 | |
| 165 | /* Check that memory at _qzz_addr is addressible and defined for |
| 166 | _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. */ |
| 169 | #define VALGRIND_CHECK_READABLE(_qzz_addr,_qzz_len) \ |
sewardj | 34a257c | 2003-03-15 19:20:52 +0000 | [diff] [blame] | 170 | (__extension__({unsigned int _qzz_res; \ |
njn25 | e49d8e7 | 2002-09-23 09:36:25 +0000 | [diff] [blame] | 171 | VALGRIND_MAGIC_SEQUENCE(_qzz_res, 0, \ |
| 172 | VG_USERREQ__CHECK_READABLE, \ |
| 173 | _qzz_addr, _qzz_len, 0, 0); \ |
| 174 | _qzz_res; \ |
sewardj | 34a257c | 2003-03-15 19:20:52 +0000 | [diff] [blame] | 175 | })) |
njn25 | e49d8e7 | 2002-09-23 09:36:25 +0000 | [diff] [blame] | 176 | |
| 177 | /* Use this macro to force the definedness and addressibility of a |
| 178 | value to be checked. If suitable addressibility and definedness |
| 179 | are not established, Valgrind prints an error message and returns |
| 180 | the address of the first offending byte. Otherwise it returns |
| 181 | zero. */ |
| 182 | #define VALGRIND_CHECK_DEFINED(__lvalue) \ |
njn25 | e49d8e7 | 2002-09-23 09:36:25 +0000 | [diff] [blame] | 183 | VALGRIND_CHECK_READABLE( \ |
| 184 | (volatile unsigned char *)&(__lvalue), \ |
| 185 | (unsigned int)(sizeof (__lvalue))) |
| 186 | |
njn | 6e69ecd | 2003-10-02 13:25:02 +0000 | [diff] [blame] | 187 | /* Do a memory leak check mid-execution. */ |
| 188 | #define VALGRIND_DO_LEAK_CHECK \ |
| 189 | {unsigned int _qzz_res; \ |
| 190 | VALGRIND_MAGIC_SEQUENCE(_qzz_res, 0, \ |
| 191 | VG_USERREQ__DO_LEAK_CHECK, \ |
| 192 | 0, 0, 0, 0); \ |
| 193 | } |
| 194 | |
sewardj | b5f6f51 | 2005-03-10 23:59:00 +0000 | [diff] [blame] | 195 | /* Just display summaries of leaked memory, rather than all the |
| 196 | details */ |
| 197 | #define VALGRIND_DO_QUICK_LEAK_CHECK \ |
| 198 | {unsigned int _qzz_res; \ |
| 199 | VALGRIND_MAGIC_SEQUENCE(_qzz_res, 0, \ |
| 200 | VG_USERREQ__DO_LEAK_CHECK, \ |
| 201 | 1, 0, 0, 0); \ |
| 202 | } |
| 203 | |
njn | 6e69ecd | 2003-10-02 13:25:02 +0000 | [diff] [blame] | 204 | /* Return number of leaked, dubious, reachable and suppressed bytes found by |
| 205 | all previous leak checks. They must be lvalues. */ |
| 206 | #define VALGRIND_COUNT_LEAKS(leaked, dubious, reachable, suppressed) \ |
| 207 | {unsigned int _qzz_res; \ |
| 208 | VALGRIND_MAGIC_SEQUENCE(_qzz_res, 0, \ |
| 209 | VG_USERREQ__COUNT_LEAKS, \ |
| 210 | &leaked, &dubious, &reachable, &suppressed);\ |
| 211 | } |
| 212 | |
njn | 6e69ecd | 2003-10-02 13:25:02 +0000 | [diff] [blame] | 213 | |
sewardj | ee07084 | 2003-07-05 17:53:55 +0000 | [diff] [blame] | 214 | /* Get in zzvbits the validity data for the zznbytes starting at |
| 215 | zzsrc. Return values: |
| 216 | 0 if not running on valgrind |
| 217 | 1 success |
| 218 | 2 if zzsrc/zzvbits arrays are not aligned 0 % 4, or |
| 219 | zznbytes is not 0 % 4. |
| 220 | 3 if any parts of zzsrc/zzvbits are not addressible. |
| 221 | The metadata is not copied in cases 0, 2 or 3 so it should be |
| 222 | impossible to segfault your system by using this call. |
| 223 | */ |
| 224 | #define VALGRIND_GET_VBITS(zzsrc,zzvbits,zznbytes) \ |
| 225 | (__extension__({unsigned int _qzz_res; \ |
| 226 | char* czzsrc = (char*)zzsrc; \ |
| 227 | char* czzvbits = (char*)zzvbits; \ |
| 228 | VALGRIND_MAGIC_SEQUENCE(_qzz_res, 0, \ |
| 229 | VG_USERREQ__GET_VBITS, \ |
| 230 | czzsrc, czzvbits, zznbytes,0 ); \ |
| 231 | _qzz_res; \ |
| 232 | })) |
| 233 | |
| 234 | /* Apply the validity data in zzvbits to the zznbytes starting at |
| 235 | zzdst. Return values: |
| 236 | 0 if not running on valgrind |
| 237 | 1 success |
| 238 | 2 if zzdst/zzvbits arrays are not aligned 0 % 4, or |
| 239 | zznbytes is not 0 % 4. |
| 240 | 3 if any parts of zzdst/zzvbits are not addressible. |
| 241 | The metadata is not copied in cases 0, 2 or 3 so it should be |
| 242 | impossible to segfault your system by using this call. |
| 243 | */ |
| 244 | #define VALGRIND_SET_VBITS(zzdst,zzvbits,zznbytes) \ |
| 245 | (__extension__({unsigned int _qzz_res; \ |
| 246 | char* czzdst = (char*)zzdst; \ |
| 247 | char* czzvbits = (char*)zzvbits; \ |
| 248 | VALGRIND_MAGIC_SEQUENCE(_qzz_res, 0, \ |
| 249 | VG_USERREQ__SET_VBITS, \ |
| 250 | czzdst, czzvbits, zznbytes,0 ); \ |
| 251 | _qzz_res; \ |
| 252 | })) |
njn | d799418 | 2003-10-02 13:44:04 +0000 | [diff] [blame] | 253 | |
| 254 | #endif |
| 255 | |