blob: b2391b8291691b9ac6752a450a1222898c1b29a1 [file] [log] [blame]
Catalin Marinas04f70332009-06-11 13:22:39 +01001Kernel Memory Leak Detector
2===========================
3
Catalin Marinas04f70332009-06-11 13:22:39 +01004Kmemleak provides a way of detecting possible kernel memory leaks in a
5way similar to a tracing garbage collector
Masanari Iidaae13c652015-06-18 00:12:02 +09006(https://en.wikipedia.org/wiki/Garbage_collection_%28computer_science%29#Tracing_garbage_collectors),
Catalin Marinas04f70332009-06-11 13:22:39 +01007with the difference that the orphan objects are not freed but only
8reported via /sys/kernel/debug/kmemleak. A similar method is used by the
Jonathan Corbetca90a7a32016-08-07 15:46:10 -06009Valgrind tool (``memcheck --leak-check``) to detect the memory leaks in
Catalin Marinas04f70332009-06-11 13:22:39 +010010user-space applications.
Wang YanQing4762c982014-04-03 14:50:38 -070011Kmemleak is supported on x86, arm, powerpc, sparc, sh, microblaze, ppc, mips, s390, metag and tile.
Catalin Marinas04f70332009-06-11 13:22:39 +010012
13Usage
14-----
15
16CONFIG_DEBUG_KMEMLEAK in "Kernel hacking" has to be enabled. A kernel
Catalin Marinasbab4a342009-06-26 17:38:26 +010017thread scans the memory every 10 minutes (by default) and prints the
Catalin Marinas4698c1f2009-06-26 17:38:27 +010018number of new unreferenced objects found. To display the details of all
Jonathan Corbetca90a7a32016-08-07 15:46:10 -060019the possible memory leaks::
Catalin Marinas04f70332009-06-11 13:22:39 +010020
21 # mount -t debugfs nodev /sys/kernel/debug/
22 # cat /sys/kernel/debug/kmemleak
23
Jonathan Corbetca90a7a32016-08-07 15:46:10 -060024To trigger an intermediate memory scan::
Catalin Marinas4698c1f2009-06-26 17:38:27 +010025
26 # echo scan > /sys/kernel/debug/kmemleak
27
Jonathan Corbetca90a7a32016-08-07 15:46:10 -060028To clear the list of all current possible memory leaks::
Luis R. Rodriguez30b37102009-09-04 17:44:51 -070029
30 # echo clear > /sys/kernel/debug/kmemleak
31
Jonathan Corbetca90a7a32016-08-07 15:46:10 -060032New leaks will then come up upon reading ``/sys/kernel/debug/kmemleak``
Luis R. Rodriguez30b37102009-09-04 17:44:51 -070033again.
34
Catalin Marinas04f70332009-06-11 13:22:39 +010035Note that the orphan objects are listed in the order they were allocated
36and one object at the beginning of the list may cause other subsequent
37objects to be reported as orphan.
38
39Memory scanning parameters can be modified at run-time by writing to the
Jonathan Corbetca90a7a32016-08-07 15:46:10 -060040``/sys/kernel/debug/kmemleak`` file. The following parameters are supported:
Catalin Marinas04f70332009-06-11 13:22:39 +010041
Jonathan Corbetca90a7a32016-08-07 15:46:10 -060042- off
43 disable kmemleak (irreversible)
44- stack=on
45 enable the task stacks scanning (default)
46- stack=off
47 disable the tasks stacks scanning
48- scan=on
49 start the automatic memory scanning thread (default)
50- scan=off
51 stop the automatic memory scanning thread
52- scan=<secs>
53 set the automatic memory scanning period in seconds
54 (default 600, 0 to stop the automatic scanning)
55- scan
56 trigger a memory scan
57- clear
58 clear list of current memory leak suspects, done by
59 marking all current reported unreferenced objects grey,
60 or free all kmemleak objects if kmemleak has been disabled.
61- dump=<addr>
62 dump information about the object found at <addr>
Catalin Marinas04f70332009-06-11 13:22:39 +010063
Jonathan Corbetca90a7a32016-08-07 15:46:10 -060064Kmemleak can also be disabled at boot-time by passing ``kmemleak=off`` on
Catalin Marinas04f70332009-06-11 13:22:39 +010065the kernel command line.
66
Catalin Marinasa9d90582009-06-25 10:16:11 +010067Memory may be allocated or freed before kmemleak is initialised and
68these actions are stored in an early log buffer. The size of this buffer
69is configured via the CONFIG_DEBUG_KMEMLEAK_EARLY_LOG_SIZE option.
70
Masanari Iida6808a402014-10-24 21:25:00 +090071If CONFIG_DEBUG_KMEMLEAK_DEFAULT_OFF are enabled, the kmemleak is
Jonathan Corbetca90a7a32016-08-07 15:46:10 -060072disabled by default. Passing ``kmemleak=on`` on the kernel command
Masanari Iida6808a402014-10-24 21:25:00 +090073line enables the function.
74
Catalin Marinas04f70332009-06-11 13:22:39 +010075Basic Algorithm
76---------------
77
Jonathan Corbetca90a7a32016-08-07 15:46:10 -060078The memory allocations via :c:func:`kmalloc`, :c:func:`vmalloc`,
79:c:func:`kmem_cache_alloc` and
Catalin Marinas04f70332009-06-11 13:22:39 +010080friends are traced and the pointers, together with additional
Wang YanQing4762c982014-04-03 14:50:38 -070081information like size and stack trace, are stored in a rbtree.
Catalin Marinas04f70332009-06-11 13:22:39 +010082The corresponding freeing function calls are tracked and the pointers
83removed from the kmemleak data structures.
84
85An allocated block of memory is considered orphan if no pointer to its
86start address or to any location inside the block can be found by
87scanning the memory (including saved registers). This means that there
88might be no way for the kernel to pass the address of the allocated
89block to a freeing function and therefore the block is considered a
90memory leak.
91
92The scanning algorithm steps:
93
94 1. mark all objects as white (remaining white objects will later be
95 considered orphan)
96 2. scan the memory starting with the data section and stacks, checking
Wang YanQing4762c982014-04-03 14:50:38 -070097 the values against the addresses stored in the rbtree. If
Catalin Marinas04f70332009-06-11 13:22:39 +010098 a pointer to a white object is found, the object is added to the
99 gray list
100 3. scan the gray objects for matching addresses (some white objects
101 can become gray and added at the end of the gray list) until the
102 gray set is finished
103 4. the remaining white objects are considered orphan and reported via
104 /sys/kernel/debug/kmemleak
105
106Some allocated memory blocks have pointers stored in the kernel's
107internal data structures and they cannot be detected as orphans. To
108avoid this, kmemleak can also store the number of values pointing to an
109address inside the block address range that need to be found so that the
110block is not considered a leak. One example is __vmalloc().
111
Luis R. Rodriguez30b37102009-09-04 17:44:51 -0700112Testing specific sections with kmemleak
113---------------------------------------
114
115Upon initial bootup your /sys/kernel/debug/kmemleak output page may be
116quite extensive. This can also be the case if you have very buggy code
117when doing development. To work around these situations you can use the
118'clear' command to clear all reported unreferenced objects from the
119/sys/kernel/debug/kmemleak output. By issuing a 'scan' after a 'clear'
120you can find new unreferenced objects; this should help with testing
121specific sections of code.
122
Jonathan Corbetca90a7a32016-08-07 15:46:10 -0600123To test a critical section on demand with a clean kmemleak do::
Luis R. Rodriguez30b37102009-09-04 17:44:51 -0700124
125 # echo clear > /sys/kernel/debug/kmemleak
126 ... test your kernel or modules ...
127 # echo scan > /sys/kernel/debug/kmemleak
128
Jonathan Corbetca90a7a32016-08-07 15:46:10 -0600129Then as usual to get your report with::
Luis R. Rodriguez30b37102009-09-04 17:44:51 -0700130
131 # cat /sys/kernel/debug/kmemleak
132
Li Zefanc89da702014-04-03 14:46:27 -0700133Freeing kmemleak internal objects
134---------------------------------
135
Rahul Bedarkarabb3b1f2014-07-31 23:50:19 +0530136To allow access to previously found memory leaks after kmemleak has been
Li Zefanc89da702014-04-03 14:46:27 -0700137disabled by the user or due to an fatal error, internal kmemleak objects
138won't be freed when kmemleak is disabled, and those objects may occupy
139a large part of physical memory.
140
Jonathan Corbetca90a7a32016-08-07 15:46:10 -0600141In this situation, you may reclaim memory with::
Li Zefanc89da702014-04-03 14:46:27 -0700142
143 # echo clear > /sys/kernel/debug/kmemleak
144
Catalin Marinas04f70332009-06-11 13:22:39 +0100145Kmemleak API
146------------
147
148See the include/linux/kmemleak.h header for the functions prototype.
149
Jonathan Corbetca90a7a32016-08-07 15:46:10 -0600150- ``kmemleak_init`` - initialize kmemleak
151- ``kmemleak_alloc`` - notify of a memory block allocation
152- ``kmemleak_alloc_percpu`` - notify of a percpu memory block allocation
153- ``kmemleak_free`` - notify of a memory block freeing
154- ``kmemleak_free_part`` - notify of a partial memory block freeing
155- ``kmemleak_free_percpu`` - notify of a percpu memory block freeing
156- ``kmemleak_update_trace`` - update object allocation stack trace
157- ``kmemleak_not_leak`` - mark an object as not a leak
158- ``kmemleak_ignore`` - do not scan or report an object as leak
159- ``kmemleak_scan_area`` - add scan areas inside a memory block
160- ``kmemleak_no_scan`` - do not scan a memory block
161- ``kmemleak_erase`` - erase an old value in a pointer variable
162- ``kmemleak_alloc_recursive`` - as kmemleak_alloc but checks the recursiveness
163- ``kmemleak_free_recursive`` - as kmemleak_free but checks the recursiveness
Catalin Marinas04f70332009-06-11 13:22:39 +0100164
Catalin Marinas9099dae2016-10-11 13:55:11 -0700165The following functions take a physical address as the object pointer
166and only perform the corresponding action if the address has a lowmem
167mapping:
168
169- ``kmemleak_alloc_phys``
170- ``kmemleak_free_part_phys``
171- ``kmemleak_not_leak_phys``
172- ``kmemleak_ignore_phys``
173
Catalin Marinas04f70332009-06-11 13:22:39 +0100174Dealing with false positives/negatives
175--------------------------------------
176
177The false negatives are real memory leaks (orphan objects) but not
178reported by kmemleak because values found during the memory scanning
179point to such objects. To reduce the number of false negatives, kmemleak
180provides the kmemleak_ignore, kmemleak_scan_area, kmemleak_no_scan and
181kmemleak_erase functions (see above). The task stacks also increase the
182amount of false negatives and their scanning is not enabled by default.
183
184The false positives are objects wrongly reported as being memory leaks
185(orphan). For objects known not to be leaks, kmemleak provides the
186kmemleak_not_leak function. The kmemleak_ignore could also be used if
187the memory block is known not to contain other pointers and it will no
188longer be scanned.
189
190Some of the reported leaks are only transient, especially on SMP
191systems, because of pointers temporarily stored in CPU registers or
192stacks. Kmemleak defines MSECS_MIN_AGE (defaulting to 1000) representing
193the minimum age of an object to be reported as a memory leak.
194
195Limitations and Drawbacks
196-------------------------
197
198The main drawback is the reduced performance of memory allocation and
199freeing. To avoid other penalties, the memory scanning is only performed
200when the /sys/kernel/debug/kmemleak file is read. Anyway, this tool is
201intended for debugging purposes where the performance might not be the
202most important requirement.
203
204To keep the algorithm simple, kmemleak scans for values pointing to any
205address inside a block's address range. This may lead to an increased
206number of false negatives. However, it is likely that a real memory leak
207will eventually become visible.
208
209Another source of false negatives is the data stored in non-pointer
210values. In a future version, kmemleak could only scan the pointer
211members in the allocated structures. This feature would solve many of
212the false negative cases described above.
213
214The tool can report false positives. These are cases where an allocated
215block doesn't need to be freed (some cases in the init_call functions),
216the pointer is calculated by other methods than the usual container_of
217macro or the pointer is stored in a location not scanned by kmemleak.
218
Daniel Baluta21b86bd2011-04-04 14:58:03 -0700219Page allocations and ioremap are not tracked.