blob: 26a31d67dfedf03ee675aa30fc61b7fe50ea55ab [file] [log] [blame]
nethercoteef0abd12004-04-10 00:29:58 +00001Valgrind FAQ, version 2.1.2
2~~~~~~~~~~~~~~~~~~~~~~~~~~~
nethercote8deae812004-07-18 10:35:36 +00003Last revised 18 July 2004
nethercoteef0abd12004-04-10 00:29:58 +00004~~~~~~~~~~~~~~~~~~~~~~~~~
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
nethercote8deae812004-07-18 10:35:36 +0000120your program without it by using the flag -march to gcc. Either way,
nethercoteef0abd12004-04-10 00:29:58 +0000121let us know and we'll try to fix it.
sewardj36a53ad2003-04-22 23:26:24 +0000122
nethercote8deae812004-07-18 10:35:36 +0000123Another possibility is that your program has a bug and erroneously jumps
124to a non-code address, in which case you'll get a SIGILL signal.
125Memcheck/Addrcheck may issue a warning just before this happens, but they
126might not if the jump happens to land in addressable memory.
127
sewardj36a53ad2003-04-22 23:26:24 +0000128-----------------------------------------------------------------
129
nethercoteef0abd12004-04-10 00:29:58 +00001303.4. My program dies like this:
sewardj36a53ad2003-04-22 23:26:24 +0000131
132 error: /lib/librt.so.1: symbol __pthread_clock_settime, version
133 GLIBC_PRIVATE not defined in file libpthread.so.0 with link time
134 reference
135
nethercoteef0abd12004-04-10 00:29:58 +0000136This is a total swamp. Nevertheless there is a way out. It's a problem
137which is not easy to fix. Really the problem is that /lib/librt.so.1
138refers to some symbols __pthread_clock_settime and
139__pthread_clock_gettime in /lib/libpthread.so which are not intended to
140be exported, ie they are private.
sewardj36a53ad2003-04-22 23:26:24 +0000141
nethercoteef0abd12004-04-10 00:29:58 +0000142Best solution is to ensure your program does not use /lib/librt.so.1.
sewardj36a53ad2003-04-22 23:26:24 +0000143
nethercoteef0abd12004-04-10 00:29:58 +0000144However .. since you're probably not using it directly, or even
145knowingly, that's hard to do. You might instead be able to fix it by
146playing around with coregrind/vg_libpthread.vs. Things to try:
sewardj36a53ad2003-04-22 23:26:24 +0000147
nethercoteef0abd12004-04-10 00:29:58 +0000148Remove this
sewardj36a53ad2003-04-22 23:26:24 +0000149
nethercoteef0abd12004-04-10 00:29:58 +0000150 GLIBC_PRIVATE {
151 __pthread_clock_gettime;
152 __pthread_clock_settime;
153 };
sewardj36a53ad2003-04-22 23:26:24 +0000154
nethercoteef0abd12004-04-10 00:29:58 +0000155or maybe remove this
sewardj36a53ad2003-04-22 23:26:24 +0000156
nethercoteef0abd12004-04-10 00:29:58 +0000157 GLIBC_2.2.3 {
158 __pthread_clock_gettime;
159 __pthread_clock_settime;
160 } GLIBC_2.2;
sewardj36a53ad2003-04-22 23:26:24 +0000161
nethercoteef0abd12004-04-10 00:29:58 +0000162or maybe add this
sewardj36a53ad2003-04-22 23:26:24 +0000163
nethercoteef0abd12004-04-10 00:29:58 +0000164 GLIBC_2.2.4 {
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 +0000169 GLIBC_2.2.5 {
170 __pthread_clock_gettime;
171 __pthread_clock_settime;
172 } GLIBC_2.2;
sewardj36a53ad2003-04-22 23:26:24 +0000173
nethercoteef0abd12004-04-10 00:29:58 +0000174or some combination of the above. After each change you need to delete
175coregrind/libpthread.so and do make && make install.
sewardj36a53ad2003-04-22 23:26:24 +0000176
nethercoteef0abd12004-04-10 00:29:58 +0000177I just don't know if any of the above will work. If you can find a
178solution which works, I would be interested to hear it.
sewardj36a53ad2003-04-22 23:26:24 +0000179
nethercoteef0abd12004-04-10 00:29:58 +0000180To which someone replied:
sewardj36a53ad2003-04-22 23:26:24 +0000181
nethercoteef0abd12004-04-10 00:29:58 +0000182 I deleted this:
sewardj36a53ad2003-04-22 23:26:24 +0000183
nethercoteef0abd12004-04-10 00:29:58 +0000184 GLIBC_2.2.3 {
185 __pthread_clock_gettime;
186 __pthread_clock_settime;
187 } GLIBC_2.2;
sewardj36a53ad2003-04-22 23:26:24 +0000188
nethercoteef0abd12004-04-10 00:29:58 +0000189 and it worked.
190
191
192-----------------------------------------------------------------
1934. Valgrind behaves unexpectedly
194-----------------------------------------------------------------
195
1964.1. I try running "valgrind my_program", but my_program runs normally,
197 and Valgrind doesn't emit any output at all.
198
199For versions prior to 2.1.1:
200
201Valgrind doesn't work out-of-the-box with programs that are entirely
202statically linked. It does a quick test at startup, and if it detects
203that the program is statically linked, it aborts with an explanation.
204
205This test may fail in some obscure cases, eg. if you run a script under
206Valgrind and the script interpreter is statically linked.
207
208If you still want static linking, you can ask gcc to link certain
209libraries statically. Try the following options:
210
211 -Wl,-Bstatic -lmyLibrary1 -lotherLibrary -Wl,-Bdynamic
212
213Just make sure you end with -Wl,-Bdynamic so that libc is dynamically
214linked.
215
216If you absolutely cannot use dynamic libraries, you can try statically
217linking together all the .o files in coregrind/, all the .o files of the
218tool of your choice (eg. those in memcheck/), and the .o files of your
219program. You'll end up with a statically linked binary that runs
220permanently under Valgrind's control. Note that we haven't tested this
221procedure thoroughly.
222
223
224For versions 2.1.1 and later:
225
226Valgrind does now work with static binaries, although beware that some
227of the tools won't operate as well as normal, because they have access
228to less information about how the program runs. Eg. Memcheck will miss
229some errors that it would otherwise find. This is because Valgrind
230doesn't replace malloc() and friends with its own versions. It's best
231if your program is dynamically linked with glibc.
sewardj36a53ad2003-04-22 23:26:24 +0000232
233-----------------------------------------------------------------
njn4e59bd92003-04-22 20:58:47 +0000234
nethercoteef0abd12004-04-10 00:29:58 +00002354.2. My threaded server process runs unbelievably slowly on Valgrind.
236 So slowly, in fact, that at first I thought it had completely
237 locked up.
sewardj03272ff2003-04-26 22:23:35 +0000238
nethercoteef0abd12004-04-10 00:29:58 +0000239We are not completely sure about this, but one possibility is that
240laptops with power management fool Valgrind's timekeeping mechanism,
241which is (somewhat in error) based on the x86 RDTSC instruction. A
242"fix" which is claimed to work is to run some other cpu-intensive
243process at the same time, so that the laptop's power-management
244clock-slowing does not kick in. We would be interested in hearing more
245feedback on this.
sewardj03272ff2003-04-26 22:23:35 +0000246
nethercoteef0abd12004-04-10 00:29:58 +0000247Another possible cause is that versions prior to 1.9.6 did not support
248threading on glibc 2.3.X systems well. Hopefully the situation is much
249improved with 1.9.6 and later versions.
sewardj03272ff2003-04-26 22:23:35 +0000250
251-----------------------------------------------------------------
252
nethercoteef0abd12004-04-10 00:29:58 +00002534.3. My program uses the C++ STL and string classes. Valgrind
254 reports 'still reachable' memory leaks involving these classes
255 at the exit of the program, but there should be none.
njnae34aef2003-08-07 21:24:24 +0000256
nethercoteef0abd12004-04-10 00:29:58 +0000257First of all: relax, it's probably not a bug, but a feature. Many
258implementations of the C++ standard libraries use their own memory pool
259allocators. Memory for quite a number of destructed objects is not
260immediately freed and given back to the OS, but kept in the pool(s) for
261later re-use. The fact that the pools are not freed at the exit() of
262the program cause Valgrind to report this memory as still reachable.
263The behaviour not to free pools at the exit() could be called a bug of
264the library though.
njnae34aef2003-08-07 21:24:24 +0000265
nethercoteef0abd12004-04-10 00:29:58 +0000266Using gcc, you can force the STL to use malloc and to free memory as
267soon as possible by globally disabling memory caching. Beware! Doing
268so will probably slow down your program, sometimes drastically.
njnae34aef2003-08-07 21:24:24 +0000269
nethercoteef0abd12004-04-10 00:29:58 +0000270- With gcc 2.91, 2.95, 3.0 and 3.1, compile all source using the STL
271 with -D__USE_MALLOC. Beware! This is removed from gcc starting with
272 version 3.3.
273
274- With 3.2.2 and later, you should export the environment variable
275 GLIBCPP_FORCE_NEW before running your program.
276
277There are other ways to disable memory pooling: using the malloc_alloc
278template with your objects (not portable, but should work for gcc) or
279even writing your own memory allocators. But all this goes beyond the
280scope of this FAQ. Start by reading
281http://gcc.gnu.org/onlinedocs/libstdc++/ext/howto.html#3 if you
282absolutely want to do that. But beware:
283
2841) there are currently changes underway for gcc which are not totally
285 reflected in the docs right now ("now" == 26 Apr 03)
286
2872) allocators belong to the more messy parts of the STL and people went
288 at great lengths to make it portable across platforms. Chances are
289 good that your solution will work on your platform, but not on
290 others.
291
292-----------------------------------------------------------------------------
2934.4. The stack traces given by Memcheck (or another tool) aren't helpful.
294 How can I improve them?
295
296If they're not long enough, use --num-callers to make them longer.
297
298If they're not detailed enough, make sure you are compiling with -g to add
299debug information. And don't strip symbol tables (programs should be
300unstripped unless you run 'strip' on them; some libraries ship stripped).
301
302Also, -fomit-frame-pointer and -fstack-check can make stack traces worse.
303
304Some example sub-traces:
305
306 With debug information and unstripped (best):
307
308 Invalid write of size 1
309 at 0x80483BF: really (malloc1.c:20)
310 by 0x8048370: main (malloc1.c:9)
311
312 With no debug information, unstripped:
313
314 Invalid write of size 1
315 at 0x80483BF: really (in /auto/homes/njn25/grind/head5/a.out)
316 by 0x8048370: main (in /auto/homes/njn25/grind/head5/a.out)
317
318 With no debug information, stripped:
319
320 Invalid write of size 1
321 at 0x80483BF: (within /auto/homes/njn25/grind/head5/a.out)
322 by 0x8048370: (within /auto/homes/njn25/grind/head5/a.out)
323 by 0x42015703: __libc_start_main (in /lib/tls/libc-2.3.2.so)
324 by 0x80482CC: (within /auto/homes/njn25/grind/head5/a.out)
325
326 With debug information and -fomit-frame-pointer:
327
328 Invalid write of size 1
329 at 0x80483C4: really (malloc1.c:20)
330 by 0x42015703: __libc_start_main (in /lib/tls/libc-2.3.2.so)
331 by 0x80482CC: ??? (start.S:81)
332
333-----------------------------------------------------------------
3345. Memcheck doesn't find my bug
335-----------------------------------------------------------------
336
3375.1. I try running "valgrind --tool=memcheck my_program" and get
338 Valgrind's startup message, but I don't get any errors and I know
339 my program has errors.
340
341By default, Valgrind only traces the top-level process. So if your
342program spawns children, they won't be traced by Valgrind by default.
343Also, if your program is started by a shell script, Perl script, or
344something similar, Valgrind will trace the shell, or the Perl
345interpreter, or equivalent.
346
347To trace child processes, use the --trace-children=yes option.
348
349If you are tracing large trees of processes, it can be less disruptive
350to have the output sent over the network. Give Valgrind the flag
nethercotef8548672004-06-21 12:42:35 +0000351--log-socket=127.0.0.1:12345 (if you want logging output sent to port
nethercoteef0abd12004-04-10 00:29:58 +000035212345 on localhost). You can use the valgrind-listener program to
353listen on that port:
354
355 valgrind-listener 12345
356
357Obviously you have to start the listener process first. See the
358documentation for more details.
njnae34aef2003-08-07 21:24:24 +0000359
360-----------------------------------------------------------------
361
nethercoteef0abd12004-04-10 00:29:58 +00003625.2. Why doesn't Memcheck find the array overruns in this program?
363
364 int static[5];
365
366 int main(void)
367 {
368 int stack[5];
369
370 static[5] = 0;
371 stack [5] = 0;
372
373 return 0;
374 }
375
376Unfortunately, Memcheck doesn't do bounds checking on static or stack
377arrays. We'd like to, but it's just not possible to do in a reasonable
378way that fits with how Memcheck works. Sorry.
njn1aa18502003-08-15 07:35:20 +0000379
380-----------------------------------------------------------------
381
nethercoteef0abd12004-04-10 00:29:58 +00003825.3. My program dies with a segmentation fault, but Memcheck doesn't give
383 any error messages before it, or none that look related.
njna8fb5a32003-08-20 11:19:17 +0000384
nethercoteef0abd12004-04-10 00:29:58 +0000385One possibility is that your program accesses to memory with
386inappropriate permissions set, such as writing to read-only memory.
387Maybe your program is writing to a static string like this:
njna8fb5a32003-08-20 11:19:17 +0000388
nethercoteef0abd12004-04-10 00:29:58 +0000389 char* s = "hello";
390 s[0] = 'j';
391
392or something similar. Writing to read-only memory can also apparently
393make LinuxThreads behave strangely.
394
395
396-----------------------------------------------------------------
3976. Miscellaneous
398-----------------------------------------------------------------
399
4006.1. I tried writing a suppression but it didn't work. Can you
401 write my suppression for me?
402
403Yes! Use the --gen-suppressions=yes feature to spit out suppressions
404automatically for you. You can then edit them if you like, eg.
405combining similar automatically generated suppressions using wildcards
406like '*'.
407
408If you really want to write suppressions by hand, read the manual
409carefully. Note particularly that C++ function names must be _mangled_.
410
411-----------------------------------------------------------------
412
4136.2. With Memcheck/Addrcheck's memory leak detector, what's the
414 difference between "definitely lost", "possibly lost", "still
415 reachable", and "suppressed"?
416
417The details are in section 3.6 of the manual.
418
419In short:
420
421 - "definitely lost" means your program is leaking memory -- fix it!
422
423 - "possibly lost" means your program is probably leaking memory,
424 unless you're doing funny things with pointers.
425
426 - "still reachable" means your program is probably ok -- it didn't
427 free some memory it could have. This is quite common and often
428 reasonable. Don't use --show-reachable=yes if you don't want to see
429 these reports.
430
431 - "suppressed" means that a leak error has been suppressed. There are
432 some suppressions in the default suppression files. You can ignore
433 suppressed errors.
njna8fb5a32003-08-20 11:19:17 +0000434
435-----------------------------------------------------------------
436
njn4e59bd92003-04-22 20:58:47 +0000437(this is the end of the FAQ.)