blob: 908f137eff0707e947969966acf984b2d772dffd [file] [log] [blame]
Neal Norwitzc3cd9df2004-06-06 19:58:40 +00001This document describes some caveats about the use of Valgrind with
Tim Petersb8b20e22004-07-07 02:46:03 +00002Python. Valgrind is used periodically by Python developers to try
Neal Norwitzc3cd9df2004-06-06 19:58:40 +00003to ensure there are no memory leaks or invalid memory reads/writes.
4
Victor Stinner34be8072016-03-14 12:04:26 +01005UPDATE: Python 3.6 now supports PYTHONMALLOC=malloc environment variable which
6can be used to force the usage of the malloc() allocator of the C library.
7
Neal Norwitzc3cd9df2004-06-06 19:58:40 +00008If you don't want to read about the details of using Valgrind, there
Tim Petersb8b20e22004-07-07 02:46:03 +00009are still two things you must do to suppress the warnings. First,
Neal Norwitzc3cd9df2004-06-06 19:58:40 +000010you must use a suppressions file. One is supplied in
11Misc/valgrind-python.supp. Second, you must do one of the following:
12
13 * Uncomment Py_USING_MEMORY_DEBUGGER in Objects/obmalloc.c,
Tim Petersb8b20e22004-07-07 02:46:03 +000014 then rebuild Python
15 * Uncomment the lines in Misc/valgrind-python.supp that
Neal Norwitzc3cd9df2004-06-06 19:58:40 +000016 suppress the warnings for PyObject_Free and PyObject_Realloc
17
Neal Norwitz7bcabc62005-11-20 23:58:38 +000018If you want to use Valgrind more effectively and catch even more
19memory leaks, you will need to configure python --without-pymalloc.
20PyMalloc allocates a few blocks in big chunks and most object
21allocations don't call malloc, they use chunks doled about by PyMalloc
22from the big blocks. This means Valgrind can't detect
23many allocations (and frees), except for those that are forwarded
24to the system malloc. Note: configuring python --without-pymalloc
25makes Python run much slower, especially when running under Valgrind.
26You may need to run the tests in batches under Valgrind to keep
27the memory usage down to allow the tests to complete. It seems to take
28about 5 times longer to run --without-pymalloc.
29
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000030Apr 15, 2006:
31 test_ctypes causes Valgrind 3.1.1 to fail (crash).
32 test_socket_ssl should be skipped when running valgrind.
33 The reason is that it purposely uses uninitialized memory.
34 This causes many spurious warnings, so it's easier to just skip it.
35
Neal Norwitz7bcabc62005-11-20 23:58:38 +000036
Neal Norwitzc3cd9df2004-06-06 19:58:40 +000037Details:
38--------
Tim Petersb8b20e22004-07-07 02:46:03 +000039Python uses its own small-object allocation scheme on top of malloc,
40called PyMalloc.
41
42Valgrind may show some unexpected results when PyMalloc is used.
Neal Norwitzc3cd9df2004-06-06 19:58:40 +000043Starting with Python 2.3, PyMalloc is used by default. You can disable
44PyMalloc when configuring python by adding the --without-pymalloc option.
Tim Petersb8b20e22004-07-07 02:46:03 +000045If you disable PyMalloc, most of the information in this document and
Neal Norwitz7bcabc62005-11-20 23:58:38 +000046the supplied suppressions file will not be useful. As discussed above,
47disabling PyMalloc can catch more problems.
Neal Norwitzc3cd9df2004-06-06 19:58:40 +000048
49If you use valgrind on a default build of Python, you will see
50many errors like:
51
52 ==6399== Use of uninitialised value of size 4
53 ==6399== at 0x4A9BDE7E: PyObject_Free (obmalloc.c:711)
54 ==6399== by 0x4A9B8198: dictresize (dictobject.c:477)
55
56These are expected and not a problem. Tim Peters explains
57the situation:
58
59 PyMalloc needs to know whether an arbitrary address is one
Tim Petersb8b20e22004-07-07 02:46:03 +000060 that's managed by it, or is managed by the system malloc.
Neal Norwitzc3cd9df2004-06-06 19:58:40 +000061 The current scheme allows this to be determined in constant
62 time, regardless of how many memory areas are under pymalloc's
63 control.
64
65 The memory pymalloc manages itself is in one or more "arenas",
Tim Petersb8b20e22004-07-07 02:46:03 +000066 each a large contiguous memory area obtained from malloc.
67 The base address of each arena is saved by pymalloc
68 in a vector. Each arena is carved into "pools", and a field at
69 the start of each pool contains the index of that pool's arena's
70 base address in that vector.
Neal Norwitzc3cd9df2004-06-06 19:58:40 +000071
Tim Petersb8b20e22004-07-07 02:46:03 +000072 Given an arbitrary address, pymalloc computes the pool base
Neal Norwitzc3cd9df2004-06-06 19:58:40 +000073 address corresponding to it, then looks at "the index" stored
74 near there. If the index read up is out of bounds for the
75 vector of arena base addresses pymalloc maintains, then
76 pymalloc knows for certain that this address is not under
77 pymalloc's control. Otherwise the index is in bounds, and
78 pymalloc compares
79
80 the arena base address stored at that index in the vector
81
82 to
83
Tim Petersb8b20e22004-07-07 02:46:03 +000084 the arbitrary address pymalloc is investigating
Neal Norwitzc3cd9df2004-06-06 19:58:40 +000085
Tim Petersb8b20e22004-07-07 02:46:03 +000086 pymalloc controls this arbitrary address if and only if it lies
87 in the arena the address's pool's index claims it lies in.
Neal Norwitzc3cd9df2004-06-06 19:58:40 +000088
89 It doesn't matter whether the memory pymalloc reads up ("the
90 index") is initialized. If it's not initialized, then
91 whatever trash gets read up will lead pymalloc to conclude
Tim Petersb8b20e22004-07-07 02:46:03 +000092 (correctly) that the address isn't controlled by it, either
93 because the index is out of bounds, or the index is in bounds
94 but the arena it represents doesn't contain the address.
Neal Norwitzc3cd9df2004-06-06 19:58:40 +000095
96 This determination has to be made on every call to one of
97 pymalloc's free/realloc entry points, so its speed is critical
98 (Python allocates and frees dynamic memory at a ferocious rate
99 -- everything in Python, from integers to "stack frames",
100 lives in the heap).