fs/reiserfs/super.c: add __init to init_inodecache
[linux-2.6-block.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.
06a2c45d
MJ
14
15Please check DEBUG_KMEMLEAK dependencies in lib/Kconfig.debug for supported
16architectures.
04f70336
CM
17
18Usage
19-----
20
21CONFIG_DEBUG_KMEMLEAK in "Kernel hacking" has to be enabled. A kernel
bab4a34a 22thread scans the memory every 10 minutes (by default) and prints the
4698c1f2
CM
23number of new unreferenced objects found. To display the details of all
24the possible memory leaks:
04f70336
CM
25
26 # mount -t debugfs nodev /sys/kernel/debug/
27 # cat /sys/kernel/debug/kmemleak
28
4698c1f2
CM
29To trigger an intermediate memory scan:
30
31 # echo scan > /sys/kernel/debug/kmemleak
32
30b37101
LR
33To clear the list of all current possible memory leaks:
34
35 # echo clear > /sys/kernel/debug/kmemleak
36
37New leaks will then come up upon reading /sys/kernel/debug/kmemleak
38again.
39
04f70336
CM
40Note that the orphan objects are listed in the order they were allocated
41and one object at the beginning of the list may cause other subsequent
42objects to be reported as orphan.
43
44Memory scanning parameters can be modified at run-time by writing to the
45/sys/kernel/debug/kmemleak file. The following parameters are supported:
46
47 off - disable kmemleak (irreversible)
e0a2a160 48 stack=on - enable the task stacks scanning (default)
04f70336 49 stack=off - disable the tasks stacks scanning
e0a2a160 50 scan=on - start the automatic memory scanning thread (default)
04f70336 51 scan=off - stop the automatic memory scanning thread
e0a2a160
CM
52 scan=<secs> - set the automatic memory scanning period in seconds
53 (default 600, 0 to stop the automatic scanning)
4698c1f2 54 scan - trigger a memory scan
30b37101 55 clear - clear list of current memory leak suspects, done by
c89da70c
LZ
56 marking all current reported unreferenced objects grey,
57 or free all kmemleak objects if kmemleak has been disabled.
189d84ed 58 dump=<addr> - dump information about the object found at <addr>
04f70336
CM
59
60Kmemleak can also be disabled at boot-time by passing "kmemleak=off" on
61the kernel command line.
62
a9d9058a
CM
63Memory may be allocated or freed before kmemleak is initialised and
64these actions are stored in an early log buffer. The size of this buffer
65is configured via the CONFIG_DEBUG_KMEMLEAK_EARLY_LOG_SIZE option.
66
04f70336
CM
67Basic Algorithm
68---------------
69
70The memory allocations via kmalloc, vmalloc, kmem_cache_alloc and
71friends are traced and the pointers, together with additional
72information like size and stack trace, are stored in a prio search tree.
73The corresponding freeing function calls are tracked and the pointers
74removed from the kmemleak data structures.
75
76An allocated block of memory is considered orphan if no pointer to its
77start address or to any location inside the block can be found by
78scanning the memory (including saved registers). This means that there
79might be no way for the kernel to pass the address of the allocated
80block to a freeing function and therefore the block is considered a
81memory leak.
82
83The scanning algorithm steps:
84
85 1. mark all objects as white (remaining white objects will later be
86 considered orphan)
87 2. scan the memory starting with the data section and stacks, checking
88 the values against the addresses stored in the prio search tree. If
89 a pointer to a white object is found, the object is added to the
90 gray list
91 3. scan the gray objects for matching addresses (some white objects
92 can become gray and added at the end of the gray list) until the
93 gray set is finished
94 4. the remaining white objects are considered orphan and reported via
95 /sys/kernel/debug/kmemleak
96
97Some allocated memory blocks have pointers stored in the kernel's
98internal data structures and they cannot be detected as orphans. To
99avoid this, kmemleak can also store the number of values pointing to an
100address inside the block address range that need to be found so that the
101block is not considered a leak. One example is __vmalloc().
102
30b37101
LR
103Testing specific sections with kmemleak
104---------------------------------------
105
106Upon initial bootup your /sys/kernel/debug/kmemleak output page may be
107quite extensive. This can also be the case if you have very buggy code
108when doing development. To work around these situations you can use the
109'clear' command to clear all reported unreferenced objects from the
110/sys/kernel/debug/kmemleak output. By issuing a 'scan' after a 'clear'
111you can find new unreferenced objects; this should help with testing
112specific sections of code.
113
114To test a critical section on demand with a clean kmemleak do:
115
116 # echo clear > /sys/kernel/debug/kmemleak
117 ... test your kernel or modules ...
118 # echo scan > /sys/kernel/debug/kmemleak
119
120Then as usual to get your report with:
121
122 # cat /sys/kernel/debug/kmemleak
123
c89da70c
LZ
124Freeing kmemleak internal objects
125---------------------------------
126
127To allow access to previosuly found memory leaks after kmemleak has been
128disabled by the user or due to an fatal error, internal kmemleak objects
129won't be freed when kmemleak is disabled, and those objects may occupy
130a large part of physical memory.
131
132In this situation, you may reclaim memory with:
133
134 # echo clear > /sys/kernel/debug/kmemleak
135
04f70336
CM
136Kmemleak API
137------------
138
139See the include/linux/kmemleak.h header for the functions prototype.
140
141kmemleak_init - initialize kmemleak
142kmemleak_alloc - notify of a memory block allocation
f528f0b8 143kmemleak_alloc_percpu - notify of a percpu memory block allocation
04f70336 144kmemleak_free - notify of a memory block freeing
f528f0b8
CM
145kmemleak_free_part - notify of a partial memory block freeing
146kmemleak_free_percpu - notify of a percpu memory block freeing
04f70336
CM
147kmemleak_not_leak - mark an object as not a leak
148kmemleak_ignore - do not scan or report an object as leak
149kmemleak_scan_area - add scan areas inside a memory block
150kmemleak_no_scan - do not scan a memory block
151kmemleak_erase - erase an old value in a pointer variable
152kmemleak_alloc_recursive - as kmemleak_alloc but checks the recursiveness
153kmemleak_free_recursive - as kmemleak_free but checks the recursiveness
154
155Dealing with false positives/negatives
156--------------------------------------
157
158The false negatives are real memory leaks (orphan objects) but not
159reported by kmemleak because values found during the memory scanning
160point to such objects. To reduce the number of false negatives, kmemleak
161provides the kmemleak_ignore, kmemleak_scan_area, kmemleak_no_scan and
162kmemleak_erase functions (see above). The task stacks also increase the
163amount of false negatives and their scanning is not enabled by default.
164
165The false positives are objects wrongly reported as being memory leaks
166(orphan). For objects known not to be leaks, kmemleak provides the
167kmemleak_not_leak function. The kmemleak_ignore could also be used if
168the memory block is known not to contain other pointers and it will no
169longer be scanned.
170
171Some of the reported leaks are only transient, especially on SMP
172systems, because of pointers temporarily stored in CPU registers or
173stacks. Kmemleak defines MSECS_MIN_AGE (defaulting to 1000) representing
174the minimum age of an object to be reported as a memory leak.
175
176Limitations and Drawbacks
177-------------------------
178
179The main drawback is the reduced performance of memory allocation and
180freeing. To avoid other penalties, the memory scanning is only performed
181when the /sys/kernel/debug/kmemleak file is read. Anyway, this tool is
182intended for debugging purposes where the performance might not be the
183most important requirement.
184
185To keep the algorithm simple, kmemleak scans for values pointing to any
186address inside a block's address range. This may lead to an increased
187number of false negatives. However, it is likely that a real memory leak
188will eventually become visible.
189
190Another source of false negatives is the data stored in non-pointer
191values. In a future version, kmemleak could only scan the pointer
192members in the allocated structures. This feature would solve many of
193the false negative cases described above.
194
195The tool can report false positives. These are cases where an allocated
196block doesn't need to be freed (some cases in the init_call functions),
197the pointer is calculated by other methods than the usual container_of
198macro or the pointer is stored in a location not scanned by kmemleak.
199
21b86bd5 200Page allocations and ioremap are not tracked.