kmemleak: use bool for true/false questions
[deliverable/linux.git] / Documentation / kmemleak.txt
CommitLineData
04f70336
CM
1Kernel Memory Leak Detector
2===========================
3
4Introduction
5------------
6
7Kmemleak provides a way of detecting possible kernel memory leaks in a
8way similar to a tracing garbage collector
9(http://en.wikipedia.org/wiki/Garbage_collection_%28computer_science%29#Tracing_garbage_collectors),
10with the difference that the orphan objects are not freed but only
11reported via /sys/kernel/debug/kmemleak. A similar method is used by the
12Valgrind tool (memcheck --leak-check) to detect the memory leaks in
13user-space applications.
14
15Usage
16-----
17
18CONFIG_DEBUG_KMEMLEAK in "Kernel hacking" has to be enabled. A kernel
bab4a34a 19thread scans the memory every 10 minutes (by default) and prints the
4698c1f2
CM
20number of new unreferenced objects found. To display the details of all
21the possible memory leaks:
04f70336
CM
22
23 # mount -t debugfs nodev /sys/kernel/debug/
24 # cat /sys/kernel/debug/kmemleak
25
4698c1f2
CM
26To trigger an intermediate memory scan:
27
28 # echo scan > /sys/kernel/debug/kmemleak
29
04f70336
CM
30Note that the orphan objects are listed in the order they were allocated
31and one object at the beginning of the list may cause other subsequent
32objects to be reported as orphan.
33
34Memory scanning parameters can be modified at run-time by writing to the
35/sys/kernel/debug/kmemleak file. The following parameters are supported:
36
37 off - disable kmemleak (irreversible)
e0a2a160 38 stack=on - enable the task stacks scanning (default)
04f70336 39 stack=off - disable the tasks stacks scanning
e0a2a160 40 scan=on - start the automatic memory scanning thread (default)
04f70336 41 scan=off - stop the automatic memory scanning thread
e0a2a160
CM
42 scan=<secs> - set the automatic memory scanning period in seconds
43 (default 600, 0 to stop the automatic scanning)
4698c1f2 44 scan - trigger a memory scan
189d84ed 45 dump=<addr> - dump information about the object found at <addr>
04f70336
CM
46
47Kmemleak can also be disabled at boot-time by passing "kmemleak=off" on
48the kernel command line.
49
a9d9058a
CM
50Memory may be allocated or freed before kmemleak is initialised and
51these actions are stored in an early log buffer. The size of this buffer
52is configured via the CONFIG_DEBUG_KMEMLEAK_EARLY_LOG_SIZE option.
53
04f70336
CM
54Basic Algorithm
55---------------
56
57The memory allocations via kmalloc, vmalloc, kmem_cache_alloc and
58friends are traced and the pointers, together with additional
59information like size and stack trace, are stored in a prio search tree.
60The corresponding freeing function calls are tracked and the pointers
61removed from the kmemleak data structures.
62
63An allocated block of memory is considered orphan if no pointer to its
64start address or to any location inside the block can be found by
65scanning the memory (including saved registers). This means that there
66might be no way for the kernel to pass the address of the allocated
67block to a freeing function and therefore the block is considered a
68memory leak.
69
70The scanning algorithm steps:
71
72 1. mark all objects as white (remaining white objects will later be
73 considered orphan)
74 2. scan the memory starting with the data section and stacks, checking
75 the values against the addresses stored in the prio search tree. If
76 a pointer to a white object is found, the object is added to the
77 gray list
78 3. scan the gray objects for matching addresses (some white objects
79 can become gray and added at the end of the gray list) until the
80 gray set is finished
81 4. the remaining white objects are considered orphan and reported via
82 /sys/kernel/debug/kmemleak
83
84Some allocated memory blocks have pointers stored in the kernel's
85internal data structures and they cannot be detected as orphans. To
86avoid this, kmemleak can also store the number of values pointing to an
87address inside the block address range that need to be found so that the
88block is not considered a leak. One example is __vmalloc().
89
90Kmemleak API
91------------
92
93See the include/linux/kmemleak.h header for the functions prototype.
94
95kmemleak_init - initialize kmemleak
96kmemleak_alloc - notify of a memory block allocation
97kmemleak_free - notify of a memory block freeing
98kmemleak_not_leak - mark an object as not a leak
99kmemleak_ignore - do not scan or report an object as leak
100kmemleak_scan_area - add scan areas inside a memory block
101kmemleak_no_scan - do not scan a memory block
102kmemleak_erase - erase an old value in a pointer variable
103kmemleak_alloc_recursive - as kmemleak_alloc but checks the recursiveness
104kmemleak_free_recursive - as kmemleak_free but checks the recursiveness
105
106Dealing with false positives/negatives
107--------------------------------------
108
109The false negatives are real memory leaks (orphan objects) but not
110reported by kmemleak because values found during the memory scanning
111point to such objects. To reduce the number of false negatives, kmemleak
112provides the kmemleak_ignore, kmemleak_scan_area, kmemleak_no_scan and
113kmemleak_erase functions (see above). The task stacks also increase the
114amount of false negatives and their scanning is not enabled by default.
115
116The false positives are objects wrongly reported as being memory leaks
117(orphan). For objects known not to be leaks, kmemleak provides the
118kmemleak_not_leak function. The kmemleak_ignore could also be used if
119the memory block is known not to contain other pointers and it will no
120longer be scanned.
121
122Some of the reported leaks are only transient, especially on SMP
123systems, because of pointers temporarily stored in CPU registers or
124stacks. Kmemleak defines MSECS_MIN_AGE (defaulting to 1000) representing
125the minimum age of an object to be reported as a memory leak.
126
127Limitations and Drawbacks
128-------------------------
129
130The main drawback is the reduced performance of memory allocation and
131freeing. To avoid other penalties, the memory scanning is only performed
132when the /sys/kernel/debug/kmemleak file is read. Anyway, this tool is
133intended for debugging purposes where the performance might not be the
134most important requirement.
135
136To keep the algorithm simple, kmemleak scans for values pointing to any
137address inside a block's address range. This may lead to an increased
138number of false negatives. However, it is likely that a real memory leak
139will eventually become visible.
140
141Another source of false negatives is the data stored in non-pointer
142values. In a future version, kmemleak could only scan the pointer
143members in the allocated structures. This feature would solve many of
144the false negative cases described above.
145
146The tool can report false positives. These are cases where an allocated
147block doesn't need to be freed (some cases in the init_call functions),
148the pointer is calculated by other methods than the usual container_of
149macro or the pointer is stored in a location not scanned by kmemleak.
150
151Page allocations and ioremap are not tracked. Only the ARM and x86
152architectures are currently supported.
This page took 0.048247 seconds and 5 git commands to generate.