blob: 80442bc9eafb071e7b3a9d625a4c76724ad2539a [file] [log] [blame]
nethercoteef0abd12004-04-10 00:29:58 +00001Valgrind FAQ, version 2.1.2
2~~~~~~~~~~~~~~~~~~~~~~~~~~~
3Last revised 6 April 2004
4~~~~~~~~~~~~~~~~~~~~~~~~~
njn4e59bd92003-04-22 20:58:47 +00005
nethercoteef0abd12004-04-10 00:29:58 +000061. Background
72. Compiling, installing and configuring
83. Valgrind aborts unexpectedly
94. Valgrind behaves unexpectedly
105. Memcheck doesn't find my bug
116. Miscellaneous
12
13
14-----------------------------------------------------------------
151. Background
16-----------------------------------------------------------------
17
181.1. How do you pronounce "Valgrind"?
19
20The "Val" as in the world "value". The "grind" is pronounced with a
21short 'i' -- ie. "grinned" (rhymes with "tinned") rather than "grined"
22(rhymes with "find").
23
24Don't feel bad: almost everyone gets it wrong at first.
njn4e59bd92003-04-22 20:58:47 +000025
sewardj36a53ad2003-04-22 23:26:24 +000026-----------------------------------------------------------------
27
nethercoteef0abd12004-04-10 00:29:58 +0000281.2. Where does the name "Valgrind" come from?
29
30From Nordic mythology. Originally (before release) the project was
31named Heimdall, after the watchman of the Nordic gods. He could "see a
32hundred miles by day or night, hear the grass growing, see the wool
33growing on a sheep's back" (etc). This would have been a great name,
34but it was already taken by a security package "Heimdal".
35
36Keeping with the Nordic theme, Valgrind was chosen. Valgrind is the
37name of the main entrance to Valhalla (the Hall of the Chosen Slain in
38Asgard). Over this entrance there resides a wolf and over it there is
39the head of a boar and on it perches a huge eagle, whose eyes can see to
40the far regions of the nine worlds. Only those judged worthy by the
41guardians are allowed to pass through Valgrind. All others are refused
42entrance.
43
44It's not short for "value grinder", although that's not a bad guess.
45
46
47-----------------------------------------------------------------
482. Compiling, installing and configuring
49-----------------------------------------------------------------
50
512.1. When I trying building Valgrind, 'make' dies partway with an
52 assertion failure, something like this: make: expand.c:489:
53
54 allocated_variable_append: Assertion
55 `current_variable_set_list->next != 0' failed.
56
57It's probably a bug in 'make'. Some, but not all, instances of version 3.79.1
58have this bug, see www.mail-archive.com/bug-make@gnu.org/msg01658.html. Try
59upgrading to a more recent version of 'make'. Alternatively, we have heard
60that unsetting the CFLAGS environment variable avoids the problem.
61
62
63-----------------------------------------------------------------
643. Valgrind aborts unexpectedly
65-----------------------------------------------------------------
66
673.1. Programs run OK on Valgrind, but at exit produce a bunch of errors a bit
68 like this
njn4e59bd92003-04-22 20:58:47 +000069
70 ==20755== Invalid read of size 4
71 ==20755== at 0x40281C8A: _nl_unload_locale (loadlocale.c:238)
72 ==20755== by 0x4028179D: free_mem (findlocale.c:257)
73 ==20755== by 0x402E0962: __libc_freeres (set-freeres.c:34)
74 ==20755== by 0x40048DCC: vgPlain___libc_freeres_wrapper
75 (vg_clientfuncs.c:585)
76 ==20755== Address 0x40CC304C is 8 bytes inside a block of size 380 free'd
77 ==20755== at 0x400484C9: free (vg_clientfuncs.c:180)
78 ==20755== by 0x40281CBA: _nl_unload_locale (loadlocale.c:246)
79 ==20755== by 0x40281218: free_mem (setlocale.c:461)
80 ==20755== by 0x402E0962: __libc_freeres (set-freeres.c:34)
81
82 and then die with a segmentation fault.
83
nethercoteef0abd12004-04-10 00:29:58 +000084When the program exits, Valgrind runs the procedure __libc_freeres() in
85glibc. This is a hook for memory debuggers, so they can ask glibc to
86free up any memory it has used. Doing that is needed to ensure that
87Valgrind doesn't incorrectly report space leaks in glibc.
njn4e59bd92003-04-22 20:58:47 +000088
nethercoteef0abd12004-04-10 00:29:58 +000089Problem is that running __libc_freeres() in older glibc versions causes
90this crash.
njn4e59bd92003-04-22 20:58:47 +000091
nethercoteef0abd12004-04-10 00:29:58 +000092WORKAROUND FOR 1.1.X and later versions of Valgrind: use the
93--run-libc-freeres=no flag. You may then get space leak reports for
94glibc-allocations (please _don't_ report these to the glibc people,
95since they are not real leaks), but at least the program runs.
njn4e59bd92003-04-22 20:58:47 +000096
sewardj36a53ad2003-04-22 23:26:24 +000097-----------------------------------------------------------------
njn4e59bd92003-04-22 20:58:47 +000098
nethercoteef0abd12004-04-10 00:29:58 +0000993.2. My (buggy) program dies like this:
njn4e59bd92003-04-22 20:58:47 +0000100 valgrind: vg_malloc2.c:442 (bszW_to_pszW):
101 Assertion `pszW >= 0' failed.
njn4e59bd92003-04-22 20:58:47 +0000102
nethercoteef0abd12004-04-10 00:29:58 +0000103If Memcheck (the memory checker) shows any invalid reads, invalid writes
104and invalid frees in your program, the above may happen. Reason is that
105your program may trash Valgrind's low-level memory manager, which then
106dies with the above assertion, or something like this. The cure is to
107fix your program so that it doesn't do any illegal memory accesses. The
108above failure will hopefully go away after that.
njn4e59bd92003-04-22 20:58:47 +0000109
sewardj36a53ad2003-04-22 23:26:24 +0000110-----------------------------------------------------------------
njn4e59bd92003-04-22 20:58:47 +0000111
nethercoteef0abd12004-04-10 00:29:58 +00001123.3. My program dies, printing a message like this along the way:
sewardj36a53ad2003-04-22 23:26:24 +0000113
nethercote31788872003-11-02 16:32:05 +0000114 disInstr: unhandled instruction bytes: 0x66 0xF 0x2E 0x5
sewardj36a53ad2003-04-22 23:26:24 +0000115
nethercoteef0abd12004-04-10 00:29:58 +0000116Older versions did not support some x86 instructions, particularly
117SSE/SSE2 instructions. Try a newer Valgrind; we now support almost all
118instructions. If it still happens with newer versions, if the failing
119instruction is an SSE/SSE2 instruction, you might be able to recompile
120your progrma without it by using the flag -march to gcc. Either way,
121let us know and we'll try to fix it.
sewardj36a53ad2003-04-22 23:26:24 +0000122
123-----------------------------------------------------------------
124
nethercoteef0abd12004-04-10 00:29:58 +00001253.4. My program dies like this:
sewardj36a53ad2003-04-22 23:26:24 +0000126
127 error: /lib/librt.so.1: symbol __pthread_clock_settime, version
128 GLIBC_PRIVATE not defined in file libpthread.so.0 with link time
129 reference
130
nethercoteef0abd12004-04-10 00:29:58 +0000131This is a total swamp. Nevertheless there is a way out. It's a problem
132which is not easy to fix. Really the problem is that /lib/librt.so.1
133refers to some symbols __pthread_clock_settime and
134__pthread_clock_gettime in /lib/libpthread.so which are not intended to
135be exported, ie they are private.
sewardj36a53ad2003-04-22 23:26:24 +0000136
nethercoteef0abd12004-04-10 00:29:58 +0000137Best solution is to ensure your program does not use /lib/librt.so.1.
sewardj36a53ad2003-04-22 23:26:24 +0000138
nethercoteef0abd12004-04-10 00:29:58 +0000139However .. since you're probably not using it directly, or even
140knowingly, that's hard to do. You might instead be able to fix it by
141playing around with coregrind/vg_libpthread.vs. Things to try:
sewardj36a53ad2003-04-22 23:26:24 +0000142
nethercoteef0abd12004-04-10 00:29:58 +0000143Remove this
sewardj36a53ad2003-04-22 23:26:24 +0000144
nethercoteef0abd12004-04-10 00:29:58 +0000145 GLIBC_PRIVATE {
146 __pthread_clock_gettime;
147 __pthread_clock_settime;
148 };
sewardj36a53ad2003-04-22 23:26:24 +0000149
nethercoteef0abd12004-04-10 00:29:58 +0000150or maybe remove this
sewardj36a53ad2003-04-22 23:26:24 +0000151
nethercoteef0abd12004-04-10 00:29:58 +0000152 GLIBC_2.2.3 {
153 __pthread_clock_gettime;
154 __pthread_clock_settime;
155 } GLIBC_2.2;
sewardj36a53ad2003-04-22 23:26:24 +0000156
nethercoteef0abd12004-04-10 00:29:58 +0000157or maybe add this
sewardj36a53ad2003-04-22 23:26:24 +0000158
nethercoteef0abd12004-04-10 00:29:58 +0000159 GLIBC_2.2.4 {
160 __pthread_clock_gettime;
161 __pthread_clock_settime;
162 } GLIBC_2.2;
sewardj36a53ad2003-04-22 23:26:24 +0000163
nethercoteef0abd12004-04-10 00:29:58 +0000164 GLIBC_2.2.5 {
165 __pthread_clock_gettime;
166 __pthread_clock_settime;
167 } GLIBC_2.2;
sewardj36a53ad2003-04-22 23:26:24 +0000168
nethercoteef0abd12004-04-10 00:29:58 +0000169or some combination of the above. After each change you need to delete
170coregrind/libpthread.so and do make && make install.
sewardj36a53ad2003-04-22 23:26:24 +0000171
nethercoteef0abd12004-04-10 00:29:58 +0000172I just don't know if any of the above will work. If you can find a
173solution which works, I would be interested to hear it.
sewardj36a53ad2003-04-22 23:26:24 +0000174
nethercoteef0abd12004-04-10 00:29:58 +0000175To which someone replied:
sewardj36a53ad2003-04-22 23:26:24 +0000176
nethercoteef0abd12004-04-10 00:29:58 +0000177 I deleted this:
sewardj36a53ad2003-04-22 23:26:24 +0000178
nethercoteef0abd12004-04-10 00:29:58 +0000179 GLIBC_2.2.3 {
180 __pthread_clock_gettime;
181 __pthread_clock_settime;
182 } GLIBC_2.2;
sewardj36a53ad2003-04-22 23:26:24 +0000183
nethercoteef0abd12004-04-10 00:29:58 +0000184 and it worked.
185
186
187-----------------------------------------------------------------
1884. Valgrind behaves unexpectedly
189-----------------------------------------------------------------
190
1914.1. I try running "valgrind my_program", but my_program runs normally,
192 and Valgrind doesn't emit any output at all.
193
194For versions prior to 2.1.1:
195
196Valgrind doesn't work out-of-the-box with programs that are entirely
197statically linked. It does a quick test at startup, and if it detects
198that the program is statically linked, it aborts with an explanation.
199
200This test may fail in some obscure cases, eg. if you run a script under
201Valgrind and the script interpreter is statically linked.
202
203If you still want static linking, you can ask gcc to link certain
204libraries statically. Try the following options:
205
206 -Wl,-Bstatic -lmyLibrary1 -lotherLibrary -Wl,-Bdynamic
207
208Just make sure you end with -Wl,-Bdynamic so that libc is dynamically
209linked.
210
211If you absolutely cannot use dynamic libraries, you can try statically
212linking together all the .o files in coregrind/, all the .o files of the
213tool of your choice (eg. those in memcheck/), and the .o files of your
214program. You'll end up with a statically linked binary that runs
215permanently under Valgrind's control. Note that we haven't tested this
216procedure thoroughly.
217
218
219For versions 2.1.1 and later:
220
221Valgrind does now work with static binaries, although beware that some
222of the tools won't operate as well as normal, because they have access
223to less information about how the program runs. Eg. Memcheck will miss
224some errors that it would otherwise find. This is because Valgrind
225doesn't replace malloc() and friends with its own versions. It's best
226if your program is dynamically linked with glibc.
sewardj36a53ad2003-04-22 23:26:24 +0000227
228-----------------------------------------------------------------
njn4e59bd92003-04-22 20:58:47 +0000229
nethercoteef0abd12004-04-10 00:29:58 +00002304.2. My threaded server process runs unbelievably slowly on Valgrind.
231 So slowly, in fact, that at first I thought it had completely
232 locked up.
sewardj03272ff2003-04-26 22:23:35 +0000233
nethercoteef0abd12004-04-10 00:29:58 +0000234We are not completely sure about this, but one possibility is that
235laptops with power management fool Valgrind's timekeeping mechanism,
236which is (somewhat in error) based on the x86 RDTSC instruction. A
237"fix" which is claimed to work is to run some other cpu-intensive
238process at the same time, so that the laptop's power-management
239clock-slowing does not kick in. We would be interested in hearing more
240feedback on this.
sewardj03272ff2003-04-26 22:23:35 +0000241
nethercoteef0abd12004-04-10 00:29:58 +0000242Another possible cause is that versions prior to 1.9.6 did not support
243threading on glibc 2.3.X systems well. Hopefully the situation is much
244improved with 1.9.6 and later versions.
sewardj03272ff2003-04-26 22:23:35 +0000245
246-----------------------------------------------------------------
247
nethercoteef0abd12004-04-10 00:29:58 +00002484.3. My program uses the C++ STL and string classes. Valgrind
249 reports 'still reachable' memory leaks involving these classes
250 at the exit of the program, but there should be none.
njnae34aef2003-08-07 21:24:24 +0000251
nethercoteef0abd12004-04-10 00:29:58 +0000252First of all: relax, it's probably not a bug, but a feature. Many
253implementations of the C++ standard libraries use their own memory pool
254allocators. Memory for quite a number of destructed objects is not
255immediately freed and given back to the OS, but kept in the pool(s) for
256later re-use. The fact that the pools are not freed at the exit() of
257the program cause Valgrind to report this memory as still reachable.
258The behaviour not to free pools at the exit() could be called a bug of
259the library though.
njnae34aef2003-08-07 21:24:24 +0000260
nethercoteef0abd12004-04-10 00:29:58 +0000261Using gcc, you can force the STL to use malloc and to free memory as
262soon as possible by globally disabling memory caching. Beware! Doing
263so will probably slow down your program, sometimes drastically.
njnae34aef2003-08-07 21:24:24 +0000264
nethercoteef0abd12004-04-10 00:29:58 +0000265- With gcc 2.91, 2.95, 3.0 and 3.1, compile all source using the STL
266 with -D__USE_MALLOC. Beware! This is removed from gcc starting with
267 version 3.3.
268
269- With 3.2.2 and later, you should export the environment variable
270 GLIBCPP_FORCE_NEW before running your program.
271
272There are other ways to disable memory pooling: using the malloc_alloc
273template with your objects (not portable, but should work for gcc) or
274even writing your own memory allocators. But all this goes beyond the
275scope of this FAQ. Start by reading
276http://gcc.gnu.org/onlinedocs/libstdc++/ext/howto.html#3 if you
277absolutely want to do that. But beware:
278
2791) there are currently changes underway for gcc which are not totally
280 reflected in the docs right now ("now" == 26 Apr 03)
281
2822) allocators belong to the more messy parts of the STL and people went
283 at great lengths to make it portable across platforms. Chances are
284 good that your solution will work on your platform, but not on
285 others.
286
287-----------------------------------------------------------------------------
2884.4. The stack traces given by Memcheck (or another tool) aren't helpful.
289 How can I improve them?
290
291If they're not long enough, use --num-callers to make them longer.
292
293If they're not detailed enough, make sure you are compiling with -g to add
294debug information. And don't strip symbol tables (programs should be
295unstripped unless you run 'strip' on them; some libraries ship stripped).
296
297Also, -fomit-frame-pointer and -fstack-check can make stack traces worse.
298
299Some example sub-traces:
300
301 With debug information and unstripped (best):
302
303 Invalid write of size 1
304 at 0x80483BF: really (malloc1.c:20)
305 by 0x8048370: main (malloc1.c:9)
306
307 With no debug information, unstripped:
308
309 Invalid write of size 1
310 at 0x80483BF: really (in /auto/homes/njn25/grind/head5/a.out)
311 by 0x8048370: main (in /auto/homes/njn25/grind/head5/a.out)
312
313 With no debug information, stripped:
314
315 Invalid write of size 1
316 at 0x80483BF: (within /auto/homes/njn25/grind/head5/a.out)
317 by 0x8048370: (within /auto/homes/njn25/grind/head5/a.out)
318 by 0x42015703: __libc_start_main (in /lib/tls/libc-2.3.2.so)
319 by 0x80482CC: (within /auto/homes/njn25/grind/head5/a.out)
320
321 With debug information and -fomit-frame-pointer:
322
323 Invalid write of size 1
324 at 0x80483C4: really (malloc1.c:20)
325 by 0x42015703: __libc_start_main (in /lib/tls/libc-2.3.2.so)
326 by 0x80482CC: ??? (start.S:81)
327
328-----------------------------------------------------------------
3295. Memcheck doesn't find my bug
330-----------------------------------------------------------------
331
3325.1. I try running "valgrind --tool=memcheck my_program" and get
333 Valgrind's startup message, but I don't get any errors and I know
334 my program has errors.
335
336By default, Valgrind only traces the top-level process. So if your
337program spawns children, they won't be traced by Valgrind by default.
338Also, if your program is started by a shell script, Perl script, or
339something similar, Valgrind will trace the shell, or the Perl
340interpreter, or equivalent.
341
342To trace child processes, use the --trace-children=yes option.
343
344If you are tracing large trees of processes, it can be less disruptive
345to have the output sent over the network. Give Valgrind the flag
nethercotef8548672004-06-21 12:42:35 +0000346--log-socket=127.0.0.1:12345 (if you want logging output sent to port
nethercoteef0abd12004-04-10 00:29:58 +000034712345 on localhost). You can use the valgrind-listener program to
348listen on that port:
349
350 valgrind-listener 12345
351
352Obviously you have to start the listener process first. See the
353documentation for more details.
njnae34aef2003-08-07 21:24:24 +0000354
355-----------------------------------------------------------------
356
nethercoteef0abd12004-04-10 00:29:58 +00003575.2. Why doesn't Memcheck find the array overruns in this program?
358
359 int static[5];
360
361 int main(void)
362 {
363 int stack[5];
364
365 static[5] = 0;
366 stack [5] = 0;
367
368 return 0;
369 }
370
371Unfortunately, Memcheck doesn't do bounds checking on static or stack
372arrays. We'd like to, but it's just not possible to do in a reasonable
373way that fits with how Memcheck works. Sorry.
njn1aa18502003-08-15 07:35:20 +0000374
375-----------------------------------------------------------------
376
nethercoteef0abd12004-04-10 00:29:58 +00003775.3. My program dies with a segmentation fault, but Memcheck doesn't give
378 any error messages before it, or none that look related.
njna8fb5a32003-08-20 11:19:17 +0000379
nethercoteef0abd12004-04-10 00:29:58 +0000380One possibility is that your program accesses to memory with
381inappropriate permissions set, such as writing to read-only memory.
382Maybe your program is writing to a static string like this:
njna8fb5a32003-08-20 11:19:17 +0000383
nethercoteef0abd12004-04-10 00:29:58 +0000384 char* s = "hello";
385 s[0] = 'j';
386
387or something similar. Writing to read-only memory can also apparently
388make LinuxThreads behave strangely.
389
390
391-----------------------------------------------------------------
3926. Miscellaneous
393-----------------------------------------------------------------
394
3956.1. I tried writing a suppression but it didn't work. Can you
396 write my suppression for me?
397
398Yes! Use the --gen-suppressions=yes feature to spit out suppressions
399automatically for you. You can then edit them if you like, eg.
400combining similar automatically generated suppressions using wildcards
401like '*'.
402
403If you really want to write suppressions by hand, read the manual
404carefully. Note particularly that C++ function names must be _mangled_.
405
406-----------------------------------------------------------------
407
4086.2. With Memcheck/Addrcheck's memory leak detector, what's the
409 difference between "definitely lost", "possibly lost", "still
410 reachable", and "suppressed"?
411
412The details are in section 3.6 of the manual.
413
414In short:
415
416 - "definitely lost" means your program is leaking memory -- fix it!
417
418 - "possibly lost" means your program is probably leaking memory,
419 unless you're doing funny things with pointers.
420
421 - "still reachable" means your program is probably ok -- it didn't
422 free some memory it could have. This is quite common and often
423 reasonable. Don't use --show-reachable=yes if you don't want to see
424 these reports.
425
426 - "suppressed" means that a leak error has been suppressed. There are
427 some suppressions in the default suppression files. You can ignore
428 suppressed errors.
njna8fb5a32003-08-20 11:19:17 +0000429
430-----------------------------------------------------------------
431
njn4e59bd92003-04-22 20:58:47 +0000432(this is the end of the FAQ.)