blob: 1589165a002e3b1512c8b2a5766167b9f7e7d128 [file] [log] [blame]
Catalin Marinas3c7b4e62009-06-11 13:22:39 +01001/*
2 * mm/kmemleak.c
3 *
4 * Copyright (C) 2008 ARM Limited
5 * Written by Catalin Marinas <catalin.marinas@arm.com>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 *
20 *
21 * For more information on the algorithm and kmemleak usage, please see
Andreas Platschek22901c62016-12-12 16:42:01 -080022 * Documentation/dev-tools/kmemleak.rst.
Catalin Marinas3c7b4e62009-06-11 13:22:39 +010023 *
24 * Notes on locking
25 * ----------------
26 *
27 * The following locks and mutexes are used by kmemleak:
28 *
29 * - kmemleak_lock (rwlock): protects the object_list modifications and
30 * accesses to the object_tree_root. The object_list is the main list
31 * holding the metadata (struct kmemleak_object) for the allocated memory
Michel Lespinasse85d3a312012-10-08 16:31:27 -070032 * blocks. The object_tree_root is a red black tree used to look-up
Catalin Marinas3c7b4e62009-06-11 13:22:39 +010033 * metadata based on a pointer to the corresponding memory block. The
34 * kmemleak_object structures are added to the object_list and
35 * object_tree_root in the create_object() function called from the
36 * kmemleak_alloc() callback and removed in delete_object() called from the
37 * kmemleak_free() callback
38 * - kmemleak_object.lock (spinlock): protects a kmemleak_object. Accesses to
39 * the metadata (e.g. count) are protected by this lock. Note that some
40 * members of this structure may be protected by other means (atomic or
41 * kmemleak_lock). This lock is also held when scanning the corresponding
42 * memory block to avoid the kernel freeing it via the kmemleak_free()
43 * callback. This is less heavyweight than holding a global lock like
44 * kmemleak_lock during scanning
45 * - scan_mutex (mutex): ensures that only one thread may scan the memory for
46 * unreferenced objects at a time. The gray_list contains the objects which
47 * are already referenced or marked as false positives and need to be
48 * scanned. This list is only modified during a scanning episode when the
49 * scan_mutex is held. At the end of a scan, the gray_list is always empty.
50 * Note that the kmemleak_object.use_count is incremented when an object is
Catalin Marinas4698c1f2009-06-26 17:38:27 +010051 * added to the gray_list and therefore cannot be freed. This mutex also
52 * prevents multiple users of the "kmemleak" debugfs file together with
53 * modifications to the memory scanning parameters including the scan_thread
54 * pointer
Catalin Marinas3c7b4e62009-06-11 13:22:39 +010055 *
Catalin Marinas93ada572015-06-24 16:58:37 -070056 * Locks and mutexes are acquired/nested in the following order:
Catalin Marinas9d5a4c72015-06-24 16:58:34 -070057 *
Catalin Marinas93ada572015-06-24 16:58:37 -070058 * scan_mutex [-> object->lock] -> kmemleak_lock -> other_object->lock (SINGLE_DEPTH_NESTING)
59 *
60 * No kmemleak_lock and object->lock nesting is allowed outside scan_mutex
61 * regions.
Catalin Marinas9d5a4c72015-06-24 16:58:34 -070062 *
Catalin Marinas3c7b4e62009-06-11 13:22:39 +010063 * The kmemleak_object structures have a use_count incremented or decremented
64 * using the get_object()/put_object() functions. When the use_count becomes
65 * 0, this count can no longer be incremented and put_object() schedules the
66 * kmemleak_object freeing via an RCU callback. All calls to the get_object()
67 * function must be protected by rcu_read_lock() to avoid accessing a freed
68 * structure.
69 */
70
Joe Perchesae281062009-06-23 14:40:26 +010071#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
72
Catalin Marinas3c7b4e62009-06-11 13:22:39 +010073#include <linux/init.h>
74#include <linux/kernel.h>
75#include <linux/list.h>
Ingo Molnar3f07c012017-02-08 18:51:30 +010076#include <linux/sched/signal.h>
Ingo Molnar29930022017-02-08 18:51:36 +010077#include <linux/sched/task.h>
Ingo Molnar68db0cf2017-02-08 18:51:37 +010078#include <linux/sched/task_stack.h>
Catalin Marinas3c7b4e62009-06-11 13:22:39 +010079#include <linux/jiffies.h>
80#include <linux/delay.h>
Paul Gortmakerb95f1b312011-10-16 02:01:52 -040081#include <linux/export.h>
Catalin Marinas3c7b4e62009-06-11 13:22:39 +010082#include <linux/kthread.h>
Michel Lespinasse85d3a312012-10-08 16:31:27 -070083#include <linux/rbtree.h>
Catalin Marinas3c7b4e62009-06-11 13:22:39 +010084#include <linux/fs.h>
85#include <linux/debugfs.h>
86#include <linux/seq_file.h>
87#include <linux/cpumask.h>
88#include <linux/spinlock.h>
89#include <linux/mutex.h>
90#include <linux/rcupdate.h>
91#include <linux/stacktrace.h>
92#include <linux/cache.h>
93#include <linux/percpu.h>
Catalin Marinas9099dae2016-10-11 13:55:11 -070094#include <linux/bootmem.h>
95#include <linux/pfn.h>
Catalin Marinas3c7b4e62009-06-11 13:22:39 +010096#include <linux/mmzone.h>
97#include <linux/slab.h>
98#include <linux/thread_info.h>
99#include <linux/err.h>
100#include <linux/uaccess.h>
101#include <linux/string.h>
102#include <linux/nodemask.h>
103#include <linux/mm.h>
Catalin Marinas179a8102009-09-07 10:14:42 +0100104#include <linux/workqueue.h>
Catalin Marinas04609ccc2009-10-28 13:33:12 +0000105#include <linux/crc32.h>
Catalin Marinas3c7b4e62009-06-11 13:22:39 +0100106
107#include <asm/sections.h>
108#include <asm/processor.h>
Arun Sharma600634972011-07-26 16:09:06 -0700109#include <linux/atomic.h>
Catalin Marinas3c7b4e62009-06-11 13:22:39 +0100110
Andrey Ryabinine79ed2f2015-02-13 14:39:49 -0800111#include <linux/kasan.h>
Catalin Marinas3c7b4e62009-06-11 13:22:39 +0100112#include <linux/kmemleak.h>
Laura Abbott029aeff2011-11-15 23:49:09 +0000113#include <linux/memory_hotplug.h>
Catalin Marinas3c7b4e62009-06-11 13:22:39 +0100114
115/*
116 * Kmemleak configuration and common defines.
117 */
118#define MAX_TRACE 16 /* stack trace length */
Catalin Marinas3c7b4e62009-06-11 13:22:39 +0100119#define MSECS_MIN_AGE 5000 /* minimum object age for reporting */
Catalin Marinas3c7b4e62009-06-11 13:22:39 +0100120#define SECS_FIRST_SCAN 60 /* delay before the first scan */
121#define SECS_SCAN_WAIT 600 /* subsequent auto scanning delay */
Catalin Marinasaf986032009-08-27 14:29:12 +0100122#define MAX_SCAN_SIZE 4096 /* maximum size of a scanned block */
Catalin Marinas3c7b4e62009-06-11 13:22:39 +0100123
124#define BYTES_PER_POINTER sizeof(void *)
125
Catalin Marinas216c04b2009-06-17 18:29:02 +0100126/* GFP bitmask for kmemleak internal allocations */
Vladimir Davydov20b5c302016-01-14 15:18:08 -0800127#define gfp_kmemleak_mask(gfp) (((gfp) & (GFP_KERNEL | GFP_ATOMIC)) | \
Catalin Marinas6ae4bd12011-01-27 10:30:26 +0000128 __GFP_NORETRY | __GFP_NOMEMALLOC | \
Yang Shi01d8d082019-08-02 21:48:37 -0700129 __GFP_NOWARN)
Catalin Marinas216c04b2009-06-17 18:29:02 +0100130
Catalin Marinas3c7b4e62009-06-11 13:22:39 +0100131/* scanning area inside a memory block */
132struct kmemleak_scan_area {
133 struct hlist_node node;
Catalin Marinasc017b4b2009-10-28 13:33:09 +0000134 unsigned long start;
135 size_t size;
Catalin Marinas3c7b4e62009-06-11 13:22:39 +0100136};
137
Luis R. Rodrigueza1084c82009-09-04 17:44:52 -0700138#define KMEMLEAK_GREY 0
139#define KMEMLEAK_BLACK -1
140
Catalin Marinas3c7b4e62009-06-11 13:22:39 +0100141/*
142 * Structure holding the metadata for each allocated memory block.
143 * Modifications to such objects should be made while holding the
144 * object->lock. Insertions or deletions from object_list, gray_list or
Michel Lespinasse85d3a312012-10-08 16:31:27 -0700145 * rb_node are already protected by the corresponding locks or mutex (see
Catalin Marinas3c7b4e62009-06-11 13:22:39 +0100146 * the notes on locking above). These objects are reference-counted
147 * (use_count) and freed using the RCU mechanism.
148 */
149struct kmemleak_object {
150 spinlock_t lock;
Catalin Marinasf66abf02017-07-06 15:40:16 -0700151 unsigned int flags; /* object status flags */
Catalin Marinas3c7b4e62009-06-11 13:22:39 +0100152 struct list_head object_list;
153 struct list_head gray_list;
Michel Lespinasse85d3a312012-10-08 16:31:27 -0700154 struct rb_node rb_node;
Catalin Marinas3c7b4e62009-06-11 13:22:39 +0100155 struct rcu_head rcu; /* object_list lockless traversal */
156 /* object usage count; object freed when use_count == 0 */
157 atomic_t use_count;
158 unsigned long pointer;
159 size_t size;
Catalin Marinas94f4a162017-07-06 15:40:22 -0700160 /* pass surplus references to this pointer */
161 unsigned long excess_ref;
Catalin Marinas3c7b4e62009-06-11 13:22:39 +0100162 /* minimum number of a pointers found before it is considered leak */
163 int min_count;
164 /* the total number of pointers found pointing to this object */
165 int count;
Catalin Marinas04609ccc2009-10-28 13:33:12 +0000166 /* checksum for detecting modified objects */
167 u32 checksum;
Catalin Marinas3c7b4e62009-06-11 13:22:39 +0100168 /* memory ranges to be scanned inside an object (empty for all) */
169 struct hlist_head area_list;
170 unsigned long trace[MAX_TRACE];
171 unsigned int trace_len;
172 unsigned long jiffies; /* creation timestamp */
173 pid_t pid; /* pid of the current task */
174 char comm[TASK_COMM_LEN]; /* executable name */
175};
176
177/* flag representing the memory block allocation status */
178#define OBJECT_ALLOCATED (1 << 0)
179/* flag set after the first reporting of an unreference object */
180#define OBJECT_REPORTED (1 << 1)
181/* flag set to not scan the object */
182#define OBJECT_NO_SCAN (1 << 2)
183
Sergey Senozhatsky0494e082009-08-27 14:29:18 +0100184/* number of bytes to print per line; must be 16 or 32 */
185#define HEX_ROW_SIZE 16
186/* number of bytes to print at a time (1, 2, 4, 8) */
187#define HEX_GROUP_SIZE 1
188/* include ASCII after the hex output */
189#define HEX_ASCII 1
190/* max number of lines to be printed */
191#define HEX_MAX_LINES 2
192
Catalin Marinas3c7b4e62009-06-11 13:22:39 +0100193/* the list of all allocated objects */
194static LIST_HEAD(object_list);
195/* the list of gray-colored objects (see color_gray comment below) */
196static LIST_HEAD(gray_list);
Michel Lespinasse85d3a312012-10-08 16:31:27 -0700197/* search tree for object boundaries */
198static struct rb_root object_tree_root = RB_ROOT;
199/* rw_lock protecting the access to object_list and object_tree_root */
Catalin Marinas3c7b4e62009-06-11 13:22:39 +0100200static DEFINE_RWLOCK(kmemleak_lock);
201
202/* allocation caches for kmemleak internal data */
203static struct kmem_cache *object_cache;
204static struct kmem_cache *scan_area_cache;
205
206/* set if tracing memory operations is enabled */
Li Zefan8910ae82014-04-03 14:46:29 -0700207static int kmemleak_enabled;
Catalin Marinasc5f3b1a2015-06-24 16:58:26 -0700208/* same as above but only for the kmemleak_free() callback */
209static int kmemleak_free_enabled;
Catalin Marinas3c7b4e62009-06-11 13:22:39 +0100210/* set in the late_initcall if there were no errors */
Li Zefan8910ae82014-04-03 14:46:29 -0700211static int kmemleak_initialized;
Catalin Marinas3c7b4e62009-06-11 13:22:39 +0100212/* enables or disables early logging of the memory operations */
Li Zefan8910ae82014-04-03 14:46:29 -0700213static int kmemleak_early_log = 1;
Catalin Marinas5f790202011-09-28 12:17:03 +0100214/* set if a kmemleak warning was issued */
Li Zefan8910ae82014-04-03 14:46:29 -0700215static int kmemleak_warning;
Catalin Marinas5f790202011-09-28 12:17:03 +0100216/* set if a fatal kmemleak error has occurred */
Li Zefan8910ae82014-04-03 14:46:29 -0700217static int kmemleak_error;
Catalin Marinas3c7b4e62009-06-11 13:22:39 +0100218
219/* minimum and maximum address that may be valid pointers */
220static unsigned long min_addr = ULONG_MAX;
221static unsigned long max_addr;
222
Catalin Marinas3c7b4e62009-06-11 13:22:39 +0100223static struct task_struct *scan_thread;
Catalin Marinasacf49682009-06-26 17:38:29 +0100224/* used to avoid reporting of recently allocated objects */
Catalin Marinas3c7b4e62009-06-11 13:22:39 +0100225static unsigned long jiffies_min_age;
Catalin Marinasacf49682009-06-26 17:38:29 +0100226static unsigned long jiffies_last_scan;
Catalin Marinas3c7b4e62009-06-11 13:22:39 +0100227/* delay between automatic memory scannings */
228static signed long jiffies_scan_wait;
Vignesh Radhakrishnan2ac0a4e2015-01-22 11:43:45 +0530229
230/*
231 * Enables or disables the task stacks scanning.
232 * Set to 1 if at compile time we want it enabled.
233 * Else set to 0 to have it disabled by default.
234 * This can be enabled by writing to "stack=on" using
235 * kmemleak debugfs entry.
236 */
237#ifdef CONFIG_DEBUG_TASK_STACK_SCAN_OFF
238static int kmemleak_stack_scan;
239#else
Catalin Marinase0a2a162009-06-26 17:38:25 +0100240static int kmemleak_stack_scan = 1;
Vignesh Radhakrishnan2ac0a4e2015-01-22 11:43:45 +0530241#endif
242
Catalin Marinas4698c1f2009-06-26 17:38:27 +0100243/* protects the memory scanning, parameters and debug/kmemleak file access */
Catalin Marinas3c7b4e62009-06-11 13:22:39 +0100244static DEFINE_MUTEX(scan_mutex);
Jason Baronab0155a2010-07-19 11:54:17 +0100245/* setting kmemleak=on, will set this var, skipping the disable */
246static int kmemleak_skip_disable;
Li Zefandc9b3f42014-04-03 14:46:26 -0700247/* If there are leaks that can be reported */
248static bool kmemleak_found_leaks;
Catalin Marinas3c7b4e62009-06-11 13:22:39 +0100249
Catalin Marinas3c7b4e62009-06-11 13:22:39 +0100250/*
Catalin Marinas20301172009-06-17 18:29:04 +0100251 * Early object allocation/freeing logging. Kmemleak is initialized after the
Catalin Marinas3c7b4e62009-06-11 13:22:39 +0100252 * kernel allocator. However, both the kernel allocator and kmemleak may
Catalin Marinas20301172009-06-17 18:29:04 +0100253 * allocate memory blocks which need to be tracked. Kmemleak defines an
Catalin Marinas3c7b4e62009-06-11 13:22:39 +0100254 * arbitrary buffer to hold the allocation/freeing information before it is
255 * fully initialized.
256 */
257
258/* kmemleak operation type for early logging */
259enum {
260 KMEMLEAK_ALLOC,
Catalin Marinasf528f0b2011-09-26 17:12:53 +0100261 KMEMLEAK_ALLOC_PERCPU,
Catalin Marinas3c7b4e62009-06-11 13:22:39 +0100262 KMEMLEAK_FREE,
Catalin Marinas53238a62009-07-07 10:33:00 +0100263 KMEMLEAK_FREE_PART,
Catalin Marinasf528f0b2011-09-26 17:12:53 +0100264 KMEMLEAK_FREE_PERCPU,
Catalin Marinas3c7b4e62009-06-11 13:22:39 +0100265 KMEMLEAK_NOT_LEAK,
266 KMEMLEAK_IGNORE,
267 KMEMLEAK_SCAN_AREA,
Catalin Marinas94f4a162017-07-06 15:40:22 -0700268 KMEMLEAK_NO_SCAN,
269 KMEMLEAK_SET_EXCESS_REF
Catalin Marinas3c7b4e62009-06-11 13:22:39 +0100270};
271
272/*
273 * Structure holding the information passed to kmemleak callbacks during the
274 * early logging.
275 */
276struct early_log {
277 int op_type; /* kmemleak operation type */
Catalin Marinasf66abf02017-07-06 15:40:16 -0700278 int min_count; /* minimum reference count */
Catalin Marinas3c7b4e62009-06-11 13:22:39 +0100279 const void *ptr; /* allocated/freed memory block */
Catalin Marinas94f4a162017-07-06 15:40:22 -0700280 union {
281 size_t size; /* memory block size */
282 unsigned long excess_ref; /* surplus reference passing */
283 };
Catalin Marinasfd678962009-08-27 14:29:17 +0100284 unsigned long trace[MAX_TRACE]; /* stack trace */
285 unsigned int trace_len; /* stack trace length */
Catalin Marinas3c7b4e62009-06-11 13:22:39 +0100286};
287
288/* early logging buffer and current position */
Catalin Marinasa6186d82009-08-27 14:29:16 +0100289static struct early_log
290 early_log[CONFIG_DEBUG_KMEMLEAK_EARLY_LOG_SIZE] __initdata;
291static int crt_early_log __initdata;
Catalin Marinas3c7b4e62009-06-11 13:22:39 +0100292
293static void kmemleak_disable(void);
294
295/*
296 * Print a warning and dump the stack trace.
297 */
Catalin Marinas5f790202011-09-28 12:17:03 +0100298#define kmemleak_warn(x...) do { \
Joe Perches598d8092016-03-17 14:19:44 -0700299 pr_warn(x); \
Catalin Marinas5f790202011-09-28 12:17:03 +0100300 dump_stack(); \
Li Zefan8910ae82014-04-03 14:46:29 -0700301 kmemleak_warning = 1; \
Catalin Marinas3c7b4e62009-06-11 13:22:39 +0100302} while (0)
303
304/*
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300305 * Macro invoked when a serious kmemleak condition occurred and cannot be
Catalin Marinas20301172009-06-17 18:29:04 +0100306 * recovered from. Kmemleak will be disabled and further allocation/freeing
Catalin Marinas3c7b4e62009-06-11 13:22:39 +0100307 * tracing no longer available.
308 */
Catalin Marinas000814f2009-06-17 18:29:03 +0100309#define kmemleak_stop(x...) do { \
Catalin Marinas3c7b4e62009-06-11 13:22:39 +0100310 kmemleak_warn(x); \
311 kmemleak_disable(); \
312} while (0)
313
314/*
Sergey Senozhatsky0494e082009-08-27 14:29:18 +0100315 * Printing of the objects hex dump to the seq file. The number of lines to be
316 * printed is limited to HEX_MAX_LINES to prevent seq file spamming. The
317 * actual number of printed bytes depends on HEX_ROW_SIZE. It must be called
318 * with the object->lock held.
319 */
320static void hex_dump_object(struct seq_file *seq,
321 struct kmemleak_object *object)
322{
323 const u8 *ptr = (const u8 *)object->pointer;
Andy Shevchenko6fc37c42015-09-09 15:38:45 -0700324 size_t len;
Sergey Senozhatsky0494e082009-08-27 14:29:18 +0100325
326 /* limit the number of lines to HEX_MAX_LINES */
Andy Shevchenko6fc37c42015-09-09 15:38:45 -0700327 len = min_t(size_t, object->size, HEX_MAX_LINES * HEX_ROW_SIZE);
Sergey Senozhatsky0494e082009-08-27 14:29:18 +0100328
Andy Shevchenko6fc37c42015-09-09 15:38:45 -0700329 seq_printf(seq, " hex dump (first %zu bytes):\n", len);
Dmitry Vyukov5c335fe2016-06-24 14:50:07 -0700330 kasan_disable_current();
Andy Shevchenko6fc37c42015-09-09 15:38:45 -0700331 seq_hex_dump(seq, " ", DUMP_PREFIX_NONE, HEX_ROW_SIZE,
332 HEX_GROUP_SIZE, ptr, len, HEX_ASCII);
Dmitry Vyukov5c335fe2016-06-24 14:50:07 -0700333 kasan_enable_current();
Sergey Senozhatsky0494e082009-08-27 14:29:18 +0100334}
335
336/*
Catalin Marinas3c7b4e62009-06-11 13:22:39 +0100337 * Object colors, encoded with count and min_count:
338 * - white - orphan object, not enough references to it (count < min_count)
339 * - gray - not orphan, not marked as false positive (min_count == 0) or
340 * sufficient references to it (count >= min_count)
341 * - black - ignore, it doesn't contain references (e.g. text section)
342 * (min_count == -1). No function defined for this color.
343 * Newly created objects don't have any color assigned (object->count == -1)
344 * before the next memory scan when they become white.
345 */
Luis R. Rodriguez4a558dd2009-09-08 16:34:50 +0100346static bool color_white(const struct kmemleak_object *object)
Catalin Marinas3c7b4e62009-06-11 13:22:39 +0100347{
Luis R. Rodrigueza1084c82009-09-04 17:44:52 -0700348 return object->count != KMEMLEAK_BLACK &&
349 object->count < object->min_count;
Catalin Marinas3c7b4e62009-06-11 13:22:39 +0100350}
351
Luis R. Rodriguez4a558dd2009-09-08 16:34:50 +0100352static bool color_gray(const struct kmemleak_object *object)
Catalin Marinas3c7b4e62009-06-11 13:22:39 +0100353{
Luis R. Rodrigueza1084c82009-09-04 17:44:52 -0700354 return object->min_count != KMEMLEAK_BLACK &&
355 object->count >= object->min_count;
Catalin Marinas3c7b4e62009-06-11 13:22:39 +0100356}
357
358/*
Catalin Marinas3c7b4e62009-06-11 13:22:39 +0100359 * Objects are considered unreferenced only if their color is white, they have
360 * not be deleted and have a minimum age to avoid false positives caused by
361 * pointers temporarily stored in CPU registers.
362 */
Luis R. Rodriguez4a558dd2009-09-08 16:34:50 +0100363static bool unreferenced_object(struct kmemleak_object *object)
Catalin Marinas3c7b4e62009-06-11 13:22:39 +0100364{
Catalin Marinas04609ccc2009-10-28 13:33:12 +0000365 return (color_white(object) && object->flags & OBJECT_ALLOCATED) &&
Catalin Marinasacf49682009-06-26 17:38:29 +0100366 time_before_eq(object->jiffies + jiffies_min_age,
367 jiffies_last_scan);
Catalin Marinas3c7b4e62009-06-11 13:22:39 +0100368}
369
370/*
Catalin Marinasbab4a342009-06-26 17:38:26 +0100371 * Printing of the unreferenced objects information to the seq file. The
372 * print_unreferenced function must be called with the object->lock held.
Catalin Marinas3c7b4e62009-06-11 13:22:39 +0100373 */
Catalin Marinas3c7b4e62009-06-11 13:22:39 +0100374static void print_unreferenced(struct seq_file *seq,
375 struct kmemleak_object *object)
376{
377 int i;
Catalin Marinasfefdd332009-10-28 13:33:12 +0000378 unsigned int msecs_age = jiffies_to_msecs(jiffies - object->jiffies);
Catalin Marinas3c7b4e62009-06-11 13:22:39 +0100379
Catalin Marinasbab4a342009-06-26 17:38:26 +0100380 seq_printf(seq, "unreferenced object 0x%08lx (size %zu):\n",
381 object->pointer, object->size);
Catalin Marinasfefdd332009-10-28 13:33:12 +0000382 seq_printf(seq, " comm \"%s\", pid %d, jiffies %lu (age %d.%03ds)\n",
383 object->comm, object->pid, object->jiffies,
384 msecs_age / 1000, msecs_age % 1000);
Sergey Senozhatsky0494e082009-08-27 14:29:18 +0100385 hex_dump_object(seq, object);
Catalin Marinasbab4a342009-06-26 17:38:26 +0100386 seq_printf(seq, " backtrace:\n");
Catalin Marinas3c7b4e62009-06-11 13:22:39 +0100387
388 for (i = 0; i < object->trace_len; i++) {
389 void *ptr = (void *)object->trace[i];
Catalin Marinasbab4a342009-06-26 17:38:26 +0100390 seq_printf(seq, " [<%p>] %pS\n", ptr, ptr);
Catalin Marinas3c7b4e62009-06-11 13:22:39 +0100391 }
392}
393
394/*
395 * Print the kmemleak_object information. This function is used mainly for
396 * debugging special cases when kmemleak operations. It must be called with
397 * the object->lock held.
398 */
399static void dump_object_info(struct kmemleak_object *object)
400{
401 struct stack_trace trace;
402
403 trace.nr_entries = object->trace_len;
404 trace.entries = object->trace;
405
Joe Perchesae281062009-06-23 14:40:26 +0100406 pr_notice("Object 0x%08lx (size %zu):\n",
Michel Lespinasse85d3a312012-10-08 16:31:27 -0700407 object->pointer, object->size);
Catalin Marinas3c7b4e62009-06-11 13:22:39 +0100408 pr_notice(" comm \"%s\", pid %d, jiffies %lu\n",
409 object->comm, object->pid, object->jiffies);
410 pr_notice(" min_count = %d\n", object->min_count);
411 pr_notice(" count = %d\n", object->count);
Catalin Marinasf66abf02017-07-06 15:40:16 -0700412 pr_notice(" flags = 0x%x\n", object->flags);
Jianpeng Maaae0ad72014-06-06 14:38:16 -0700413 pr_notice(" checksum = %u\n", object->checksum);
Catalin Marinas3c7b4e62009-06-11 13:22:39 +0100414 pr_notice(" backtrace:\n");
415 print_stack_trace(&trace, 4);
416}
417
418/*
Michel Lespinasse85d3a312012-10-08 16:31:27 -0700419 * Look-up a memory block metadata (kmemleak_object) in the object search
Catalin Marinas3c7b4e62009-06-11 13:22:39 +0100420 * tree based on a pointer value. If alias is 0, only values pointing to the
421 * beginning of the memory block are allowed. The kmemleak_lock must be held
422 * when calling this function.
423 */
424static struct kmemleak_object *lookup_object(unsigned long ptr, int alias)
425{
Michel Lespinasse85d3a312012-10-08 16:31:27 -0700426 struct rb_node *rb = object_tree_root.rb_node;
Catalin Marinas3c7b4e62009-06-11 13:22:39 +0100427
Michel Lespinasse85d3a312012-10-08 16:31:27 -0700428 while (rb) {
429 struct kmemleak_object *object =
430 rb_entry(rb, struct kmemleak_object, rb_node);
431 if (ptr < object->pointer)
432 rb = object->rb_node.rb_left;
433 else if (object->pointer + object->size <= ptr)
434 rb = object->rb_node.rb_right;
435 else if (object->pointer == ptr || alias)
436 return object;
437 else {
Catalin Marinas5f790202011-09-28 12:17:03 +0100438 kmemleak_warn("Found object by alias at 0x%08lx\n",
439 ptr);
Catalin Marinasa7686a42010-07-19 11:54:16 +0100440 dump_object_info(object);
Michel Lespinasse85d3a312012-10-08 16:31:27 -0700441 break;
Catalin Marinas3c7b4e62009-06-11 13:22:39 +0100442 }
Michel Lespinasse85d3a312012-10-08 16:31:27 -0700443 }
444 return NULL;
Catalin Marinas3c7b4e62009-06-11 13:22:39 +0100445}
446
447/*
448 * Increment the object use_count. Return 1 if successful or 0 otherwise. Note
449 * that once an object's use_count reached 0, the RCU freeing was already
450 * registered and the object should no longer be used. This function must be
451 * called under the protection of rcu_read_lock().
452 */
453static int get_object(struct kmemleak_object *object)
454{
455 return atomic_inc_not_zero(&object->use_count);
456}
457
458/*
459 * RCU callback to free a kmemleak_object.
460 */
461static void free_object_rcu(struct rcu_head *rcu)
462{
Sasha Levinb67bfe02013-02-27 17:06:00 -0800463 struct hlist_node *tmp;
Catalin Marinas3c7b4e62009-06-11 13:22:39 +0100464 struct kmemleak_scan_area *area;
465 struct kmemleak_object *object =
466 container_of(rcu, struct kmemleak_object, rcu);
467
468 /*
469 * Once use_count is 0 (guaranteed by put_object), there is no other
470 * code accessing this object, hence no need for locking.
471 */
Sasha Levinb67bfe02013-02-27 17:06:00 -0800472 hlist_for_each_entry_safe(area, tmp, &object->area_list, node) {
473 hlist_del(&area->node);
Catalin Marinas3c7b4e62009-06-11 13:22:39 +0100474 kmem_cache_free(scan_area_cache, area);
475 }
476 kmem_cache_free(object_cache, object);
477}
478
479/*
480 * Decrement the object use_count. Once the count is 0, free the object using
481 * an RCU callback. Since put_object() may be called via the kmemleak_free() ->
482 * delete_object() path, the delayed RCU freeing ensures that there is no
483 * recursive call to the kernel allocator. Lock-less RCU object_list traversal
484 * is also possible.
485 */
486static void put_object(struct kmemleak_object *object)
487{
488 if (!atomic_dec_and_test(&object->use_count))
489 return;
490
491 /* should only get here after delete_object was called */
492 WARN_ON(object->flags & OBJECT_ALLOCATED);
493
494 call_rcu(&object->rcu, free_object_rcu);
495}
496
497/*
Michel Lespinasse85d3a312012-10-08 16:31:27 -0700498 * Look up an object in the object search tree and increase its use_count.
Catalin Marinas3c7b4e62009-06-11 13:22:39 +0100499 */
500static struct kmemleak_object *find_and_get_object(unsigned long ptr, int alias)
501{
502 unsigned long flags;
Alexey Klimov9fbed252015-11-05 18:45:57 -0800503 struct kmemleak_object *object;
Catalin Marinas3c7b4e62009-06-11 13:22:39 +0100504
505 rcu_read_lock();
506 read_lock_irqsave(&kmemleak_lock, flags);
Catalin Marinas93ada572015-06-24 16:58:37 -0700507 object = lookup_object(ptr, alias);
Catalin Marinas3c7b4e62009-06-11 13:22:39 +0100508 read_unlock_irqrestore(&kmemleak_lock, flags);
509
510 /* check whether the object is still available */
511 if (object && !get_object(object))
512 object = NULL;
513 rcu_read_unlock();
514
515 return object;
516}
517
518/*
Catalin Marinase781a9a2015-06-24 16:58:29 -0700519 * Look up an object in the object search tree and remove it from both
520 * object_tree_root and object_list. The returned object's use_count should be
521 * at least 1, as initially set by create_object().
522 */
523static struct kmemleak_object *find_and_remove_object(unsigned long ptr, int alias)
524{
525 unsigned long flags;
526 struct kmemleak_object *object;
527
528 write_lock_irqsave(&kmemleak_lock, flags);
529 object = lookup_object(ptr, alias);
530 if (object) {
531 rb_erase(&object->rb_node, &object_tree_root);
532 list_del_rcu(&object->object_list);
533 }
534 write_unlock_irqrestore(&kmemleak_lock, flags);
535
536 return object;
537}
538
539/*
Catalin Marinasfd678962009-08-27 14:29:17 +0100540 * Save stack trace to the given array of MAX_TRACE size.
541 */
542static int __save_stack_trace(unsigned long *trace)
543{
544 struct stack_trace stack_trace;
545
546 stack_trace.max_entries = MAX_TRACE;
547 stack_trace.nr_entries = 0;
548 stack_trace.entries = trace;
549 stack_trace.skip = 2;
550 save_stack_trace(&stack_trace);
551
552 return stack_trace.nr_entries;
553}
554
555/*
Catalin Marinas3c7b4e62009-06-11 13:22:39 +0100556 * Create the metadata (struct kmemleak_object) corresponding to an allocated
557 * memory block and add it to the object_list and object_tree_root.
558 */
Catalin Marinasfd678962009-08-27 14:29:17 +0100559static struct kmemleak_object *create_object(unsigned long ptr, size_t size,
560 int min_count, gfp_t gfp)
Catalin Marinas3c7b4e62009-06-11 13:22:39 +0100561{
562 unsigned long flags;
Michel Lespinasse85d3a312012-10-08 16:31:27 -0700563 struct kmemleak_object *object, *parent;
564 struct rb_node **link, *rb_parent;
Catalin Marinas3c7b4e62009-06-11 13:22:39 +0100565
Catalin Marinas6ae4bd12011-01-27 10:30:26 +0000566 object = kmem_cache_alloc(object_cache, gfp_kmemleak_mask(gfp));
Catalin Marinas3c7b4e62009-06-11 13:22:39 +0100567 if (!object) {
Joe Perches598d8092016-03-17 14:19:44 -0700568 pr_warn("Cannot allocate a kmemleak_object structure\n");
Catalin Marinas6ae4bd12011-01-27 10:30:26 +0000569 kmemleak_disable();
Catalin Marinasfd678962009-08-27 14:29:17 +0100570 return NULL;
Catalin Marinas3c7b4e62009-06-11 13:22:39 +0100571 }
572
573 INIT_LIST_HEAD(&object->object_list);
574 INIT_LIST_HEAD(&object->gray_list);
575 INIT_HLIST_HEAD(&object->area_list);
576 spin_lock_init(&object->lock);
577 atomic_set(&object->use_count, 1);
Catalin Marinas04609ccc2009-10-28 13:33:12 +0000578 object->flags = OBJECT_ALLOCATED;
Catalin Marinas3c7b4e62009-06-11 13:22:39 +0100579 object->pointer = ptr;
580 object->size = size;
Catalin Marinas94f4a162017-07-06 15:40:22 -0700581 object->excess_ref = 0;
Catalin Marinas3c7b4e62009-06-11 13:22:39 +0100582 object->min_count = min_count;
Catalin Marinas04609ccc2009-10-28 13:33:12 +0000583 object->count = 0; /* white color initially */
Catalin Marinas3c7b4e62009-06-11 13:22:39 +0100584 object->jiffies = jiffies;
Catalin Marinas04609ccc2009-10-28 13:33:12 +0000585 object->checksum = 0;
Catalin Marinas3c7b4e62009-06-11 13:22:39 +0100586
587 /* task information */
588 if (in_irq()) {
589 object->pid = 0;
590 strncpy(object->comm, "hardirq", sizeof(object->comm));
Dmitry Vyukov071f2132019-07-11 20:53:39 -0700591 } else if (in_serving_softirq()) {
Catalin Marinas3c7b4e62009-06-11 13:22:39 +0100592 object->pid = 0;
593 strncpy(object->comm, "softirq", sizeof(object->comm));
594 } else {
595 object->pid = current->pid;
596 /*
597 * There is a small chance of a race with set_task_comm(),
598 * however using get_task_comm() here may cause locking
599 * dependency issues with current->alloc_lock. In the worst
600 * case, the command line is not correct.
601 */
602 strncpy(object->comm, current->comm, sizeof(object->comm));
603 }
604
605 /* kernel backtrace */
Catalin Marinasfd678962009-08-27 14:29:17 +0100606 object->trace_len = __save_stack_trace(object->trace);
Catalin Marinas3c7b4e62009-06-11 13:22:39 +0100607
Catalin Marinas3c7b4e62009-06-11 13:22:39 +0100608 write_lock_irqsave(&kmemleak_lock, flags);
Luis R. Rodriguez0580a182009-09-08 17:32:34 +0100609
Catalin Marinas3c7b4e62009-06-11 13:22:39 +0100610 min_addr = min(min_addr, ptr);
611 max_addr = max(max_addr, ptr + size);
Michel Lespinasse85d3a312012-10-08 16:31:27 -0700612 link = &object_tree_root.rb_node;
613 rb_parent = NULL;
614 while (*link) {
615 rb_parent = *link;
616 parent = rb_entry(rb_parent, struct kmemleak_object, rb_node);
617 if (ptr + size <= parent->pointer)
618 link = &parent->rb_node.rb_left;
619 else if (parent->pointer + parent->size <= ptr)
620 link = &parent->rb_node.rb_right;
621 else {
Joe Perches756a0252016-03-17 14:19:47 -0700622 kmemleak_stop("Cannot insert 0x%lx into the object search tree (overlaps existing)\n",
Michel Lespinasse85d3a312012-10-08 16:31:27 -0700623 ptr);
Catalin Marinas9d5a4c72015-06-24 16:58:34 -0700624 /*
625 * No need for parent->lock here since "parent" cannot
626 * be freed while the kmemleak_lock is held.
627 */
628 dump_object_info(parent);
Michel Lespinasse85d3a312012-10-08 16:31:27 -0700629 kmem_cache_free(object_cache, object);
Catalin Marinas9d5a4c72015-06-24 16:58:34 -0700630 object = NULL;
Michel Lespinasse85d3a312012-10-08 16:31:27 -0700631 goto out;
632 }
Catalin Marinas3c7b4e62009-06-11 13:22:39 +0100633 }
Michel Lespinasse85d3a312012-10-08 16:31:27 -0700634 rb_link_node(&object->rb_node, rb_parent, link);
635 rb_insert_color(&object->rb_node, &object_tree_root);
636
Catalin Marinas3c7b4e62009-06-11 13:22:39 +0100637 list_add_tail_rcu(&object->object_list, &object_list);
638out:
639 write_unlock_irqrestore(&kmemleak_lock, flags);
Catalin Marinasfd678962009-08-27 14:29:17 +0100640 return object;
Catalin Marinas3c7b4e62009-06-11 13:22:39 +0100641}
642
643/*
Catalin Marinase781a9a2015-06-24 16:58:29 -0700644 * Mark the object as not allocated and schedule RCU freeing via put_object().
Catalin Marinas3c7b4e62009-06-11 13:22:39 +0100645 */
Catalin Marinas53238a62009-07-07 10:33:00 +0100646static void __delete_object(struct kmemleak_object *object)
Catalin Marinas3c7b4e62009-06-11 13:22:39 +0100647{
648 unsigned long flags;
Catalin Marinas3c7b4e62009-06-11 13:22:39 +0100649
Catalin Marinas3c7b4e62009-06-11 13:22:39 +0100650 WARN_ON(!(object->flags & OBJECT_ALLOCATED));
Catalin Marinase781a9a2015-06-24 16:58:29 -0700651 WARN_ON(atomic_read(&object->use_count) < 1);
Catalin Marinas3c7b4e62009-06-11 13:22:39 +0100652
653 /*
654 * Locking here also ensures that the corresponding memory block
655 * cannot be freed when it is being scanned.
656 */
657 spin_lock_irqsave(&object->lock, flags);
Catalin Marinas3c7b4e62009-06-11 13:22:39 +0100658 object->flags &= ~OBJECT_ALLOCATED;
659 spin_unlock_irqrestore(&object->lock, flags);
660 put_object(object);
661}
662
663/*
Catalin Marinas53238a62009-07-07 10:33:00 +0100664 * Look up the metadata (struct kmemleak_object) corresponding to ptr and
665 * delete it.
666 */
667static void delete_object_full(unsigned long ptr)
668{
669 struct kmemleak_object *object;
670
Catalin Marinase781a9a2015-06-24 16:58:29 -0700671 object = find_and_remove_object(ptr, 0);
Catalin Marinas53238a62009-07-07 10:33:00 +0100672 if (!object) {
673#ifdef DEBUG
674 kmemleak_warn("Freeing unknown object at 0x%08lx\n",
675 ptr);
676#endif
677 return;
678 }
679 __delete_object(object);
Catalin Marinas53238a62009-07-07 10:33:00 +0100680}
681
682/*
683 * Look up the metadata (struct kmemleak_object) corresponding to ptr and
684 * delete it. If the memory block is partially freed, the function may create
685 * additional metadata for the remaining parts of the block.
686 */
687static void delete_object_part(unsigned long ptr, size_t size)
688{
689 struct kmemleak_object *object;
690 unsigned long start, end;
691
Catalin Marinase781a9a2015-06-24 16:58:29 -0700692 object = find_and_remove_object(ptr, 1);
Catalin Marinas53238a62009-07-07 10:33:00 +0100693 if (!object) {
694#ifdef DEBUG
Joe Perches756a0252016-03-17 14:19:47 -0700695 kmemleak_warn("Partially freeing unknown object at 0x%08lx (size %zu)\n",
696 ptr, size);
Catalin Marinas53238a62009-07-07 10:33:00 +0100697#endif
698 return;
699 }
Catalin Marinas53238a62009-07-07 10:33:00 +0100700
701 /*
702 * Create one or two objects that may result from the memory block
703 * split. Note that partial freeing is only done by free_bootmem() and
704 * this happens before kmemleak_init() is called. The path below is
705 * only executed during early log recording in kmemleak_init(), so
706 * GFP_KERNEL is enough.
707 */
708 start = object->pointer;
709 end = object->pointer + object->size;
710 if (ptr > start)
711 create_object(start, ptr - start, object->min_count,
712 GFP_KERNEL);
713 if (ptr + size < end)
714 create_object(ptr + size, end - ptr - size, object->min_count,
715 GFP_KERNEL);
716
Catalin Marinase781a9a2015-06-24 16:58:29 -0700717 __delete_object(object);
Catalin Marinas53238a62009-07-07 10:33:00 +0100718}
Luis R. Rodrigueza1084c82009-09-04 17:44:52 -0700719
720static void __paint_it(struct kmemleak_object *object, int color)
721{
722 object->min_count = color;
723 if (color == KMEMLEAK_BLACK)
724 object->flags |= OBJECT_NO_SCAN;
725}
726
727static void paint_it(struct kmemleak_object *object, int color)
728{
729 unsigned long flags;
730
731 spin_lock_irqsave(&object->lock, flags);
732 __paint_it(object, color);
733 spin_unlock_irqrestore(&object->lock, flags);
734}
735
736static void paint_ptr(unsigned long ptr, int color)
737{
738 struct kmemleak_object *object;
739
740 object = find_and_get_object(ptr, 0);
741 if (!object) {
Joe Perches756a0252016-03-17 14:19:47 -0700742 kmemleak_warn("Trying to color unknown object at 0x%08lx as %s\n",
743 ptr,
Luis R. Rodrigueza1084c82009-09-04 17:44:52 -0700744 (color == KMEMLEAK_GREY) ? "Grey" :
745 (color == KMEMLEAK_BLACK) ? "Black" : "Unknown");
746 return;
747 }
748 paint_it(object, color);
749 put_object(object);
750}
751
Catalin Marinas53238a62009-07-07 10:33:00 +0100752/*
Holger Hans Peter Freyther145b64b2010-07-22 19:54:13 +0800753 * Mark an object permanently as gray-colored so that it can no longer be
Catalin Marinas3c7b4e62009-06-11 13:22:39 +0100754 * reported as a leak. This is used in general to mark a false positive.
755 */
756static void make_gray_object(unsigned long ptr)
757{
Luis R. Rodrigueza1084c82009-09-04 17:44:52 -0700758 paint_ptr(ptr, KMEMLEAK_GREY);
Catalin Marinas3c7b4e62009-06-11 13:22:39 +0100759}
760
761/*
762 * Mark the object as black-colored so that it is ignored from scans and
763 * reporting.
764 */
765static void make_black_object(unsigned long ptr)
766{
Luis R. Rodrigueza1084c82009-09-04 17:44:52 -0700767 paint_ptr(ptr, KMEMLEAK_BLACK);
Catalin Marinas3c7b4e62009-06-11 13:22:39 +0100768}
769
770/*
771 * Add a scanning area to the object. If at least one such area is added,
772 * kmemleak will only scan these ranges rather than the whole memory block.
773 */
Catalin Marinasc017b4b2009-10-28 13:33:09 +0000774static void add_scan_area(unsigned long ptr, size_t size, gfp_t gfp)
Catalin Marinas3c7b4e62009-06-11 13:22:39 +0100775{
776 unsigned long flags;
777 struct kmemleak_object *object;
778 struct kmemleak_scan_area *area;
779
Catalin Marinasc017b4b2009-10-28 13:33:09 +0000780 object = find_and_get_object(ptr, 1);
Catalin Marinas3c7b4e62009-06-11 13:22:39 +0100781 if (!object) {
Joe Perchesae281062009-06-23 14:40:26 +0100782 kmemleak_warn("Adding scan area to unknown object at 0x%08lx\n",
783 ptr);
Catalin Marinas3c7b4e62009-06-11 13:22:39 +0100784 return;
785 }
786
Catalin Marinas6ae4bd12011-01-27 10:30:26 +0000787 area = kmem_cache_alloc(scan_area_cache, gfp_kmemleak_mask(gfp));
Catalin Marinas3c7b4e62009-06-11 13:22:39 +0100788 if (!area) {
Joe Perches598d8092016-03-17 14:19:44 -0700789 pr_warn("Cannot allocate a scan area\n");
Catalin Marinas3c7b4e62009-06-11 13:22:39 +0100790 goto out;
791 }
792
793 spin_lock_irqsave(&object->lock, flags);
Catalin Marinas7f88f882013-11-12 15:07:45 -0800794 if (size == SIZE_MAX) {
795 size = object->pointer + object->size - ptr;
796 } else if (ptr + size > object->pointer + object->size) {
Joe Perchesae281062009-06-23 14:40:26 +0100797 kmemleak_warn("Scan area larger than object 0x%08lx\n", ptr);
Catalin Marinas3c7b4e62009-06-11 13:22:39 +0100798 dump_object_info(object);
799 kmem_cache_free(scan_area_cache, area);
800 goto out_unlock;
801 }
802
803 INIT_HLIST_NODE(&area->node);
Catalin Marinasc017b4b2009-10-28 13:33:09 +0000804 area->start = ptr;
805 area->size = size;
Catalin Marinas3c7b4e62009-06-11 13:22:39 +0100806
807 hlist_add_head(&area->node, &object->area_list);
808out_unlock:
809 spin_unlock_irqrestore(&object->lock, flags);
810out:
811 put_object(object);
812}
813
814/*
Catalin Marinas94f4a162017-07-06 15:40:22 -0700815 * Any surplus references (object already gray) to 'ptr' are passed to
816 * 'excess_ref'. This is used in the vmalloc() case where a pointer to
817 * vm_struct may be used as an alternative reference to the vmalloc'ed object
818 * (see free_thread_stack()).
819 */
820static void object_set_excess_ref(unsigned long ptr, unsigned long excess_ref)
821{
822 unsigned long flags;
823 struct kmemleak_object *object;
824
825 object = find_and_get_object(ptr, 0);
826 if (!object) {
827 kmemleak_warn("Setting excess_ref on unknown object at 0x%08lx\n",
828 ptr);
829 return;
830 }
831
832 spin_lock_irqsave(&object->lock, flags);
833 object->excess_ref = excess_ref;
834 spin_unlock_irqrestore(&object->lock, flags);
835 put_object(object);
836}
837
838/*
Catalin Marinas3c7b4e62009-06-11 13:22:39 +0100839 * Set the OBJECT_NO_SCAN flag for the object corresponding to the give
840 * pointer. Such object will not be scanned by kmemleak but references to it
841 * are searched.
842 */
843static void object_no_scan(unsigned long ptr)
844{
845 unsigned long flags;
846 struct kmemleak_object *object;
847
848 object = find_and_get_object(ptr, 0);
849 if (!object) {
Joe Perchesae281062009-06-23 14:40:26 +0100850 kmemleak_warn("Not scanning unknown object at 0x%08lx\n", ptr);
Catalin Marinas3c7b4e62009-06-11 13:22:39 +0100851 return;
852 }
853
854 spin_lock_irqsave(&object->lock, flags);
855 object->flags |= OBJECT_NO_SCAN;
856 spin_unlock_irqrestore(&object->lock, flags);
857 put_object(object);
858}
859
860/*
861 * Log an early kmemleak_* call to the early_log buffer. These calls will be
862 * processed later once kmemleak is fully initialized.
863 */
Catalin Marinasa6186d82009-08-27 14:29:16 +0100864static void __init log_early(int op_type, const void *ptr, size_t size,
Catalin Marinasc017b4b2009-10-28 13:33:09 +0000865 int min_count)
Catalin Marinas3c7b4e62009-06-11 13:22:39 +0100866{
867 unsigned long flags;
868 struct early_log *log;
869
Li Zefan8910ae82014-04-03 14:46:29 -0700870 if (kmemleak_error) {
Catalin Marinasb6693002011-09-28 17:22:56 +0100871 /* kmemleak stopped recording, just count the requests */
872 crt_early_log++;
873 return;
874 }
875
Catalin Marinas3c7b4e62009-06-11 13:22:39 +0100876 if (crt_early_log >= ARRAY_SIZE(early_log)) {
Wang Kai21cd3a62015-09-08 15:03:41 -0700877 crt_early_log++;
Catalin Marinasa9d90582009-06-25 10:16:11 +0100878 kmemleak_disable();
Catalin Marinas3c7b4e62009-06-11 13:22:39 +0100879 return;
880 }
881
882 /*
883 * There is no need for locking since the kernel is still in UP mode
884 * at this stage. Disabling the IRQs is enough.
885 */
886 local_irq_save(flags);
887 log = &early_log[crt_early_log];
888 log->op_type = op_type;
889 log->ptr = ptr;
890 log->size = size;
891 log->min_count = min_count;
Catalin Marinas5f790202011-09-28 12:17:03 +0100892 log->trace_len = __save_stack_trace(log->trace);
Catalin Marinas3c7b4e62009-06-11 13:22:39 +0100893 crt_early_log++;
894 local_irq_restore(flags);
895}
896
897/*
Catalin Marinasfd678962009-08-27 14:29:17 +0100898 * Log an early allocated block and populate the stack trace.
899 */
900static void early_alloc(struct early_log *log)
901{
902 struct kmemleak_object *object;
903 unsigned long flags;
904 int i;
905
Li Zefan8910ae82014-04-03 14:46:29 -0700906 if (!kmemleak_enabled || !log->ptr || IS_ERR(log->ptr))
Catalin Marinasfd678962009-08-27 14:29:17 +0100907 return;
908
909 /*
910 * RCU locking needed to ensure object is not freed via put_object().
911 */
912 rcu_read_lock();
913 object = create_object((unsigned long)log->ptr, log->size,
Tetsuo Handac1bcd6b2009-10-09 10:39:24 +0100914 log->min_count, GFP_ATOMIC);
Catalin Marinas0d5d1aa2009-10-09 10:30:34 +0100915 if (!object)
916 goto out;
Catalin Marinasfd678962009-08-27 14:29:17 +0100917 spin_lock_irqsave(&object->lock, flags);
918 for (i = 0; i < log->trace_len; i++)
919 object->trace[i] = log->trace[i];
920 object->trace_len = log->trace_len;
921 spin_unlock_irqrestore(&object->lock, flags);
Catalin Marinas0d5d1aa2009-10-09 10:30:34 +0100922out:
Catalin Marinasfd678962009-08-27 14:29:17 +0100923 rcu_read_unlock();
924}
925
Catalin Marinasf528f0b2011-09-26 17:12:53 +0100926/*
927 * Log an early allocated block and populate the stack trace.
928 */
929static void early_alloc_percpu(struct early_log *log)
930{
931 unsigned int cpu;
932 const void __percpu *ptr = log->ptr;
933
934 for_each_possible_cpu(cpu) {
935 log->ptr = per_cpu_ptr(ptr, cpu);
936 early_alloc(log);
937 }
938}
939
Catalin Marinasa2b6bf62010-07-19 11:54:17 +0100940/**
941 * kmemleak_alloc - register a newly allocated object
942 * @ptr: pointer to beginning of the object
943 * @size: size of the object
944 * @min_count: minimum number of references to this object. If during memory
945 * scanning a number of references less than @min_count is found,
946 * the object is reported as a memory leak. If @min_count is 0,
947 * the object is never reported as a leak. If @min_count is -1,
948 * the object is ignored (not scanned and not reported as a leak)
949 * @gfp: kmalloc() flags used for kmemleak internal memory allocations
950 *
951 * This function is called from the kernel allocators when a new object
Catalin Marinas94f4a162017-07-06 15:40:22 -0700952 * (memory block) is allocated (kmem_cache_alloc, kmalloc etc.).
Catalin Marinas3c7b4e62009-06-11 13:22:39 +0100953 */
Catalin Marinasa6186d82009-08-27 14:29:16 +0100954void __ref kmemleak_alloc(const void *ptr, size_t size, int min_count,
955 gfp_t gfp)
Catalin Marinas3c7b4e62009-06-11 13:22:39 +0100956{
957 pr_debug("%s(0x%p, %zu, %d)\n", __func__, ptr, size, min_count);
958
Li Zefan8910ae82014-04-03 14:46:29 -0700959 if (kmemleak_enabled && ptr && !IS_ERR(ptr))
Catalin Marinas3c7b4e62009-06-11 13:22:39 +0100960 create_object((unsigned long)ptr, size, min_count, gfp);
Li Zefan8910ae82014-04-03 14:46:29 -0700961 else if (kmemleak_early_log)
Catalin Marinasc017b4b2009-10-28 13:33:09 +0000962 log_early(KMEMLEAK_ALLOC, ptr, size, min_count);
Catalin Marinas3c7b4e62009-06-11 13:22:39 +0100963}
964EXPORT_SYMBOL_GPL(kmemleak_alloc);
965
Catalin Marinasa2b6bf62010-07-19 11:54:17 +0100966/**
Catalin Marinasf528f0b2011-09-26 17:12:53 +0100967 * kmemleak_alloc_percpu - register a newly allocated __percpu object
968 * @ptr: __percpu pointer to beginning of the object
969 * @size: size of the object
Larry Finger8a8c35f2015-06-24 16:58:51 -0700970 * @gfp: flags used for kmemleak internal memory allocations
Catalin Marinasf528f0b2011-09-26 17:12:53 +0100971 *
972 * This function is called from the kernel percpu allocator when a new object
Larry Finger8a8c35f2015-06-24 16:58:51 -0700973 * (memory block) is allocated (alloc_percpu).
Catalin Marinasf528f0b2011-09-26 17:12:53 +0100974 */
Larry Finger8a8c35f2015-06-24 16:58:51 -0700975void __ref kmemleak_alloc_percpu(const void __percpu *ptr, size_t size,
976 gfp_t gfp)
Catalin Marinasf528f0b2011-09-26 17:12:53 +0100977{
978 unsigned int cpu;
979
980 pr_debug("%s(0x%p, %zu)\n", __func__, ptr, size);
981
982 /*
983 * Percpu allocations are only scanned and not reported as leaks
984 * (min_count is set to 0).
985 */
Li Zefan8910ae82014-04-03 14:46:29 -0700986 if (kmemleak_enabled && ptr && !IS_ERR(ptr))
Catalin Marinasf528f0b2011-09-26 17:12:53 +0100987 for_each_possible_cpu(cpu)
988 create_object((unsigned long)per_cpu_ptr(ptr, cpu),
Larry Finger8a8c35f2015-06-24 16:58:51 -0700989 size, 0, gfp);
Li Zefan8910ae82014-04-03 14:46:29 -0700990 else if (kmemleak_early_log)
Catalin Marinasf528f0b2011-09-26 17:12:53 +0100991 log_early(KMEMLEAK_ALLOC_PERCPU, ptr, size, 0);
992}
993EXPORT_SYMBOL_GPL(kmemleak_alloc_percpu);
994
995/**
Catalin Marinas94f4a162017-07-06 15:40:22 -0700996 * kmemleak_vmalloc - register a newly vmalloc'ed object
997 * @area: pointer to vm_struct
998 * @size: size of the object
999 * @gfp: __vmalloc() flags used for kmemleak internal memory allocations
1000 *
1001 * This function is called from the vmalloc() kernel allocator when a new
1002 * object (memory block) is allocated.
1003 */
1004void __ref kmemleak_vmalloc(const struct vm_struct *area, size_t size, gfp_t gfp)
1005{
1006 pr_debug("%s(0x%p, %zu)\n", __func__, area, size);
1007
1008 /*
1009 * A min_count = 2 is needed because vm_struct contains a reference to
1010 * the virtual address of the vmalloc'ed block.
1011 */
1012 if (kmemleak_enabled) {
1013 create_object((unsigned long)area->addr, size, 2, gfp);
1014 object_set_excess_ref((unsigned long)area,
1015 (unsigned long)area->addr);
1016 } else if (kmemleak_early_log) {
1017 log_early(KMEMLEAK_ALLOC, area->addr, size, 2);
1018 /* reusing early_log.size for storing area->addr */
1019 log_early(KMEMLEAK_SET_EXCESS_REF,
1020 area, (unsigned long)area->addr, 0);
1021 }
1022}
1023EXPORT_SYMBOL_GPL(kmemleak_vmalloc);
1024
1025/**
Catalin Marinasa2b6bf62010-07-19 11:54:17 +01001026 * kmemleak_free - unregister a previously registered object
1027 * @ptr: pointer to beginning of the object
1028 *
1029 * This function is called from the kernel allocators when an object (memory
1030 * block) is freed (kmem_cache_free, kfree, vfree etc.).
Catalin Marinas3c7b4e62009-06-11 13:22:39 +01001031 */
Catalin Marinasa6186d82009-08-27 14:29:16 +01001032void __ref kmemleak_free(const void *ptr)
Catalin Marinas3c7b4e62009-06-11 13:22:39 +01001033{
1034 pr_debug("%s(0x%p)\n", __func__, ptr);
1035
Catalin Marinasc5f3b1a2015-06-24 16:58:26 -07001036 if (kmemleak_free_enabled && ptr && !IS_ERR(ptr))
Catalin Marinas53238a62009-07-07 10:33:00 +01001037 delete_object_full((unsigned long)ptr);
Li Zefan8910ae82014-04-03 14:46:29 -07001038 else if (kmemleak_early_log)
Catalin Marinasc017b4b2009-10-28 13:33:09 +00001039 log_early(KMEMLEAK_FREE, ptr, 0, 0);
Catalin Marinas3c7b4e62009-06-11 13:22:39 +01001040}
1041EXPORT_SYMBOL_GPL(kmemleak_free);
1042
Catalin Marinasa2b6bf62010-07-19 11:54:17 +01001043/**
1044 * kmemleak_free_part - partially unregister a previously registered object
1045 * @ptr: pointer to the beginning or inside the object. This also
1046 * represents the start of the range to be freed
1047 * @size: size to be unregistered
1048 *
1049 * This function is called when only a part of a memory block is freed
1050 * (usually from the bootmem allocator).
Catalin Marinas53238a62009-07-07 10:33:00 +01001051 */
Catalin Marinasa6186d82009-08-27 14:29:16 +01001052void __ref kmemleak_free_part(const void *ptr, size_t size)
Catalin Marinas53238a62009-07-07 10:33:00 +01001053{
1054 pr_debug("%s(0x%p)\n", __func__, ptr);
1055
Li Zefan8910ae82014-04-03 14:46:29 -07001056 if (kmemleak_enabled && ptr && !IS_ERR(ptr))
Catalin Marinas53238a62009-07-07 10:33:00 +01001057 delete_object_part((unsigned long)ptr, size);
Li Zefan8910ae82014-04-03 14:46:29 -07001058 else if (kmemleak_early_log)
Catalin Marinasc017b4b2009-10-28 13:33:09 +00001059 log_early(KMEMLEAK_FREE_PART, ptr, size, 0);
Catalin Marinas53238a62009-07-07 10:33:00 +01001060}
1061EXPORT_SYMBOL_GPL(kmemleak_free_part);
1062
Catalin Marinasa2b6bf62010-07-19 11:54:17 +01001063/**
Catalin Marinasf528f0b2011-09-26 17:12:53 +01001064 * kmemleak_free_percpu - unregister a previously registered __percpu object
1065 * @ptr: __percpu pointer to beginning of the object
1066 *
1067 * This function is called from the kernel percpu allocator when an object
1068 * (memory block) is freed (free_percpu).
1069 */
1070void __ref kmemleak_free_percpu(const void __percpu *ptr)
1071{
1072 unsigned int cpu;
1073
1074 pr_debug("%s(0x%p)\n", __func__, ptr);
1075
Catalin Marinasc5f3b1a2015-06-24 16:58:26 -07001076 if (kmemleak_free_enabled && ptr && !IS_ERR(ptr))
Catalin Marinasf528f0b2011-09-26 17:12:53 +01001077 for_each_possible_cpu(cpu)
1078 delete_object_full((unsigned long)per_cpu_ptr(ptr,
1079 cpu));
Li Zefan8910ae82014-04-03 14:46:29 -07001080 else if (kmemleak_early_log)
Catalin Marinasf528f0b2011-09-26 17:12:53 +01001081 log_early(KMEMLEAK_FREE_PERCPU, ptr, 0, 0);
1082}
1083EXPORT_SYMBOL_GPL(kmemleak_free_percpu);
1084
1085/**
Catalin Marinasffe2c742014-06-06 14:38:17 -07001086 * kmemleak_update_trace - update object allocation stack trace
1087 * @ptr: pointer to beginning of the object
1088 *
1089 * Override the object allocation stack trace for cases where the actual
1090 * allocation place is not always useful.
1091 */
1092void __ref kmemleak_update_trace(const void *ptr)
1093{
1094 struct kmemleak_object *object;
1095 unsigned long flags;
1096
1097 pr_debug("%s(0x%p)\n", __func__, ptr);
1098
1099 if (!kmemleak_enabled || IS_ERR_OR_NULL(ptr))
1100 return;
1101
1102 object = find_and_get_object((unsigned long)ptr, 1);
1103 if (!object) {
1104#ifdef DEBUG
1105 kmemleak_warn("Updating stack trace for unknown object at %p\n",
1106 ptr);
1107#endif
1108 return;
1109 }
1110
1111 spin_lock_irqsave(&object->lock, flags);
1112 object->trace_len = __save_stack_trace(object->trace);
1113 spin_unlock_irqrestore(&object->lock, flags);
1114
1115 put_object(object);
1116}
1117EXPORT_SYMBOL(kmemleak_update_trace);
1118
1119/**
Catalin Marinasa2b6bf62010-07-19 11:54:17 +01001120 * kmemleak_not_leak - mark an allocated object as false positive
1121 * @ptr: pointer to beginning of the object
1122 *
1123 * Calling this function on an object will cause the memory block to no longer
1124 * be reported as leak and always be scanned.
Catalin Marinas3c7b4e62009-06-11 13:22:39 +01001125 */
Catalin Marinasa6186d82009-08-27 14:29:16 +01001126void __ref kmemleak_not_leak(const void *ptr)
Catalin Marinas3c7b4e62009-06-11 13:22:39 +01001127{
1128 pr_debug("%s(0x%p)\n", __func__, ptr);
1129
Li Zefan8910ae82014-04-03 14:46:29 -07001130 if (kmemleak_enabled && ptr && !IS_ERR(ptr))
Catalin Marinas3c7b4e62009-06-11 13:22:39 +01001131 make_gray_object((unsigned long)ptr);
Li Zefan8910ae82014-04-03 14:46:29 -07001132 else if (kmemleak_early_log)
Catalin Marinasc017b4b2009-10-28 13:33:09 +00001133 log_early(KMEMLEAK_NOT_LEAK, ptr, 0, 0);
Catalin Marinas3c7b4e62009-06-11 13:22:39 +01001134}
1135EXPORT_SYMBOL(kmemleak_not_leak);
1136
Catalin Marinasa2b6bf62010-07-19 11:54:17 +01001137/**
1138 * kmemleak_ignore - ignore an allocated object
1139 * @ptr: pointer to beginning of the object
1140 *
1141 * Calling this function on an object will cause the memory block to be
1142 * ignored (not scanned and not reported as a leak). This is usually done when
1143 * it is known that the corresponding block is not a leak and does not contain
1144 * any references to other allocated memory blocks.
Catalin Marinas3c7b4e62009-06-11 13:22:39 +01001145 */
Catalin Marinasa6186d82009-08-27 14:29:16 +01001146void __ref kmemleak_ignore(const void *ptr)
Catalin Marinas3c7b4e62009-06-11 13:22:39 +01001147{
1148 pr_debug("%s(0x%p)\n", __func__, ptr);
1149
Li Zefan8910ae82014-04-03 14:46:29 -07001150 if (kmemleak_enabled && ptr && !IS_ERR(ptr))
Catalin Marinas3c7b4e62009-06-11 13:22:39 +01001151 make_black_object((unsigned long)ptr);
Li Zefan8910ae82014-04-03 14:46:29 -07001152 else if (kmemleak_early_log)
Catalin Marinasc017b4b2009-10-28 13:33:09 +00001153 log_early(KMEMLEAK_IGNORE, ptr, 0, 0);
Catalin Marinas3c7b4e62009-06-11 13:22:39 +01001154}
1155EXPORT_SYMBOL(kmemleak_ignore);
1156
Catalin Marinasa2b6bf62010-07-19 11:54:17 +01001157/**
1158 * kmemleak_scan_area - limit the range to be scanned in an allocated object
1159 * @ptr: pointer to beginning or inside the object. This also
1160 * represents the start of the scan area
1161 * @size: size of the scan area
1162 * @gfp: kmalloc() flags used for kmemleak internal memory allocations
1163 *
1164 * This function is used when it is known that only certain parts of an object
1165 * contain references to other objects. Kmemleak will only scan these areas
1166 * reducing the number false negatives.
Catalin Marinas3c7b4e62009-06-11 13:22:39 +01001167 */
Catalin Marinasc017b4b2009-10-28 13:33:09 +00001168void __ref kmemleak_scan_area(const void *ptr, size_t size, gfp_t gfp)
Catalin Marinas3c7b4e62009-06-11 13:22:39 +01001169{
1170 pr_debug("%s(0x%p)\n", __func__, ptr);
1171
Li Zefan8910ae82014-04-03 14:46:29 -07001172 if (kmemleak_enabled && ptr && size && !IS_ERR(ptr))
Catalin Marinasc017b4b2009-10-28 13:33:09 +00001173 add_scan_area((unsigned long)ptr, size, gfp);
Li Zefan8910ae82014-04-03 14:46:29 -07001174 else if (kmemleak_early_log)
Catalin Marinasc017b4b2009-10-28 13:33:09 +00001175 log_early(KMEMLEAK_SCAN_AREA, ptr, size, 0);
Catalin Marinas3c7b4e62009-06-11 13:22:39 +01001176}
1177EXPORT_SYMBOL(kmemleak_scan_area);
1178
Catalin Marinasa2b6bf62010-07-19 11:54:17 +01001179/**
1180 * kmemleak_no_scan - do not scan an allocated object
1181 * @ptr: pointer to beginning of the object
1182 *
1183 * This function notifies kmemleak not to scan the given memory block. Useful
1184 * in situations where it is known that the given object does not contain any
1185 * references to other objects. Kmemleak will not scan such objects reducing
1186 * the number of false negatives.
Catalin Marinas3c7b4e62009-06-11 13:22:39 +01001187 */
Catalin Marinasa6186d82009-08-27 14:29:16 +01001188void __ref kmemleak_no_scan(const void *ptr)
Catalin Marinas3c7b4e62009-06-11 13:22:39 +01001189{
1190 pr_debug("%s(0x%p)\n", __func__, ptr);
1191
Li Zefan8910ae82014-04-03 14:46:29 -07001192 if (kmemleak_enabled && ptr && !IS_ERR(ptr))
Catalin Marinas3c7b4e62009-06-11 13:22:39 +01001193 object_no_scan((unsigned long)ptr);
Li Zefan8910ae82014-04-03 14:46:29 -07001194 else if (kmemleak_early_log)
Catalin Marinasc017b4b2009-10-28 13:33:09 +00001195 log_early(KMEMLEAK_NO_SCAN, ptr, 0, 0);
Catalin Marinas3c7b4e62009-06-11 13:22:39 +01001196}
1197EXPORT_SYMBOL(kmemleak_no_scan);
1198
Catalin Marinas9099dae2016-10-11 13:55:11 -07001199/**
1200 * kmemleak_alloc_phys - similar to kmemleak_alloc but taking a physical
1201 * address argument
Mike Rapoporte8b098f2018-04-05 16:24:57 -07001202 * @phys: physical address of the object
1203 * @size: size of the object
1204 * @min_count: minimum number of references to this object.
1205 * See kmemleak_alloc()
1206 * @gfp: kmalloc() flags used for kmemleak internal memory allocations
Catalin Marinas9099dae2016-10-11 13:55:11 -07001207 */
1208void __ref kmemleak_alloc_phys(phys_addr_t phys, size_t size, int min_count,
1209 gfp_t gfp)
1210{
1211 if (!IS_ENABLED(CONFIG_HIGHMEM) || PHYS_PFN(phys) < max_low_pfn)
1212 kmemleak_alloc(__va(phys), size, min_count, gfp);
1213}
1214EXPORT_SYMBOL(kmemleak_alloc_phys);
1215
1216/**
1217 * kmemleak_free_part_phys - similar to kmemleak_free_part but taking a
1218 * physical address argument
Mike Rapoporte8b098f2018-04-05 16:24:57 -07001219 * @phys: physical address if the beginning or inside an object. This
1220 * also represents the start of the range to be freed
1221 * @size: size to be unregistered
Catalin Marinas9099dae2016-10-11 13:55:11 -07001222 */
1223void __ref kmemleak_free_part_phys(phys_addr_t phys, size_t size)
1224{
1225 if (!IS_ENABLED(CONFIG_HIGHMEM) || PHYS_PFN(phys) < max_low_pfn)
1226 kmemleak_free_part(__va(phys), size);
1227}
1228EXPORT_SYMBOL(kmemleak_free_part_phys);
1229
1230/**
1231 * kmemleak_not_leak_phys - similar to kmemleak_not_leak but taking a physical
1232 * address argument
Mike Rapoporte8b098f2018-04-05 16:24:57 -07001233 * @phys: physical address of the object
Catalin Marinas9099dae2016-10-11 13:55:11 -07001234 */
1235void __ref kmemleak_not_leak_phys(phys_addr_t phys)
1236{
1237 if (!IS_ENABLED(CONFIG_HIGHMEM) || PHYS_PFN(phys) < max_low_pfn)
1238 kmemleak_not_leak(__va(phys));
1239}
1240EXPORT_SYMBOL(kmemleak_not_leak_phys);
1241
1242/**
1243 * kmemleak_ignore_phys - similar to kmemleak_ignore but taking a physical
1244 * address argument
Mike Rapoporte8b098f2018-04-05 16:24:57 -07001245 * @phys: physical address of the object
Catalin Marinas9099dae2016-10-11 13:55:11 -07001246 */
1247void __ref kmemleak_ignore_phys(phys_addr_t phys)
1248{
1249 if (!IS_ENABLED(CONFIG_HIGHMEM) || PHYS_PFN(phys) < max_low_pfn)
1250 kmemleak_ignore(__va(phys));
1251}
1252EXPORT_SYMBOL(kmemleak_ignore_phys);
1253
Catalin Marinas3c7b4e62009-06-11 13:22:39 +01001254/*
Catalin Marinas04609ccc2009-10-28 13:33:12 +00001255 * Update an object's checksum and return true if it was modified.
1256 */
1257static bool update_checksum(struct kmemleak_object *object)
1258{
1259 u32 old_csum = object->checksum;
1260
Andrey Ryabinine79ed2f2015-02-13 14:39:49 -08001261 kasan_disable_current();
Catalin Marinas04609ccc2009-10-28 13:33:12 +00001262 object->checksum = crc32(0, (void *)object->pointer, object->size);
Andrey Ryabinine79ed2f2015-02-13 14:39:49 -08001263 kasan_enable_current();
1264
Catalin Marinas04609ccc2009-10-28 13:33:12 +00001265 return object->checksum != old_csum;
1266}
1267
1268/*
Catalin Marinas04f70d12017-07-06 15:40:19 -07001269 * Update an object's references. object->lock must be held by the caller.
1270 */
1271static void update_refs(struct kmemleak_object *object)
1272{
1273 if (!color_white(object)) {
1274 /* non-orphan, ignored or new */
1275 return;
1276 }
1277
1278 /*
1279 * Increase the object's reference count (number of pointers to the
1280 * memory block). If this count reaches the required minimum, the
1281 * object's color will become gray and it will be added to the
1282 * gray_list.
1283 */
1284 object->count++;
1285 if (color_gray(object)) {
1286 /* put_object() called when removing from gray_list */
1287 WARN_ON(!get_object(object));
1288 list_add_tail(&object->gray_list, &gray_list);
1289 }
1290}
1291
1292/*
Catalin Marinas3c7b4e62009-06-11 13:22:39 +01001293 * Memory scanning is a long process and it needs to be interruptable. This
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001294 * function checks whether such interrupt condition occurred.
Catalin Marinas3c7b4e62009-06-11 13:22:39 +01001295 */
1296static int scan_should_stop(void)
1297{
Li Zefan8910ae82014-04-03 14:46:29 -07001298 if (!kmemleak_enabled)
Catalin Marinas3c7b4e62009-06-11 13:22:39 +01001299 return 1;
1300
1301 /*
1302 * This function may be called from either process or kthread context,
1303 * hence the need to check for both stop conditions.
1304 */
1305 if (current->mm)
1306 return signal_pending(current);
1307 else
1308 return kthread_should_stop();
1309
1310 return 0;
1311}
1312
1313/*
1314 * Scan a memory block (exclusive range) for valid pointers and add those
1315 * found to the gray list.
1316 */
1317static void scan_block(void *_start, void *_end,
Catalin Marinas93ada572015-06-24 16:58:37 -07001318 struct kmemleak_object *scanned)
Catalin Marinas3c7b4e62009-06-11 13:22:39 +01001319{
1320 unsigned long *ptr;
1321 unsigned long *start = PTR_ALIGN(_start, BYTES_PER_POINTER);
1322 unsigned long *end = _end - (BYTES_PER_POINTER - 1);
Catalin Marinas93ada572015-06-24 16:58:37 -07001323 unsigned long flags;
Catalin Marinas3c7b4e62009-06-11 13:22:39 +01001324
Catalin Marinas93ada572015-06-24 16:58:37 -07001325 read_lock_irqsave(&kmemleak_lock, flags);
Catalin Marinas3c7b4e62009-06-11 13:22:39 +01001326 for (ptr = start; ptr < end; ptr++) {
Catalin Marinas3c7b4e62009-06-11 13:22:39 +01001327 struct kmemleak_object *object;
Pekka Enberg8e019362009-08-27 14:50:00 +01001328 unsigned long pointer;
Catalin Marinas94f4a162017-07-06 15:40:22 -07001329 unsigned long excess_ref;
Catalin Marinas3c7b4e62009-06-11 13:22:39 +01001330
1331 if (scan_should_stop())
1332 break;
1333
Andrey Ryabinine79ed2f2015-02-13 14:39:49 -08001334 kasan_disable_current();
Pekka Enberg8e019362009-08-27 14:50:00 +01001335 pointer = *ptr;
Andrey Ryabinine79ed2f2015-02-13 14:39:49 -08001336 kasan_enable_current();
Pekka Enberg8e019362009-08-27 14:50:00 +01001337
Catalin Marinas93ada572015-06-24 16:58:37 -07001338 if (pointer < min_addr || pointer >= max_addr)
1339 continue;
1340
1341 /*
1342 * No need for get_object() here since we hold kmemleak_lock.
1343 * object->use_count cannot be dropped to 0 while the object
1344 * is still present in object_tree_root and object_list
1345 * (with updates protected by kmemleak_lock).
1346 */
1347 object = lookup_object(pointer, 1);
Catalin Marinas3c7b4e62009-06-11 13:22:39 +01001348 if (!object)
1349 continue;
Catalin Marinas93ada572015-06-24 16:58:37 -07001350 if (object == scanned)
Catalin Marinas3c7b4e62009-06-11 13:22:39 +01001351 /* self referenced, ignore */
Catalin Marinas3c7b4e62009-06-11 13:22:39 +01001352 continue;
Catalin Marinas3c7b4e62009-06-11 13:22:39 +01001353
1354 /*
1355 * Avoid the lockdep recursive warning on object->lock being
1356 * previously acquired in scan_object(). These locks are
1357 * enclosed by scan_mutex.
1358 */
Catalin Marinas93ada572015-06-24 16:58:37 -07001359 spin_lock_nested(&object->lock, SINGLE_DEPTH_NESTING);
Catalin Marinas94f4a162017-07-06 15:40:22 -07001360 /* only pass surplus references (object already gray) */
1361 if (color_gray(object)) {
1362 excess_ref = object->excess_ref;
1363 /* no need for update_refs() if object already gray */
1364 } else {
1365 excess_ref = 0;
1366 update_refs(object);
1367 }
Catalin Marinas93ada572015-06-24 16:58:37 -07001368 spin_unlock(&object->lock);
Catalin Marinas94f4a162017-07-06 15:40:22 -07001369
1370 if (excess_ref) {
1371 object = lookup_object(excess_ref, 0);
1372 if (!object)
1373 continue;
1374 if (object == scanned)
1375 /* circular reference, ignore */
1376 continue;
1377 spin_lock_nested(&object->lock, SINGLE_DEPTH_NESTING);
1378 update_refs(object);
1379 spin_unlock(&object->lock);
1380 }
Catalin Marinas93ada572015-06-24 16:58:37 -07001381 }
1382 read_unlock_irqrestore(&kmemleak_lock, flags);
1383}
Catalin Marinas0587da42009-10-28 13:33:11 +00001384
Catalin Marinas93ada572015-06-24 16:58:37 -07001385/*
1386 * Scan a large memory block in MAX_SCAN_SIZE chunks to reduce the latency.
1387 */
Arnd Bergmanne7c2d062019-04-18 17:50:48 -07001388#ifdef CONFIG_SMP
Catalin Marinas93ada572015-06-24 16:58:37 -07001389static void scan_large_block(void *start, void *end)
1390{
1391 void *next;
1392
1393 while (start < end) {
1394 next = min(start + MAX_SCAN_SIZE, end);
1395 scan_block(start, next, NULL);
1396 start = next;
1397 cond_resched();
Catalin Marinas3c7b4e62009-06-11 13:22:39 +01001398 }
1399}
Arnd Bergmanne7c2d062019-04-18 17:50:48 -07001400#endif
Catalin Marinas3c7b4e62009-06-11 13:22:39 +01001401
1402/*
1403 * Scan a memory block corresponding to a kmemleak_object. A condition is
1404 * that object->use_count >= 1.
1405 */
1406static void scan_object(struct kmemleak_object *object)
1407{
1408 struct kmemleak_scan_area *area;
Catalin Marinas3c7b4e62009-06-11 13:22:39 +01001409 unsigned long flags;
1410
1411 /*
Uwe Kleine-König21ae2952009-10-07 15:21:09 +02001412 * Once the object->lock is acquired, the corresponding memory block
1413 * cannot be freed (the same lock is acquired in delete_object).
Catalin Marinas3c7b4e62009-06-11 13:22:39 +01001414 */
1415 spin_lock_irqsave(&object->lock, flags);
1416 if (object->flags & OBJECT_NO_SCAN)
1417 goto out;
1418 if (!(object->flags & OBJECT_ALLOCATED))
1419 /* already freed object */
1420 goto out;
Catalin Marinasaf986032009-08-27 14:29:12 +01001421 if (hlist_empty(&object->area_list)) {
1422 void *start = (void *)object->pointer;
1423 void *end = (void *)(object->pointer + object->size);
Catalin Marinas93ada572015-06-24 16:58:37 -07001424 void *next;
Catalin Marinasaf986032009-08-27 14:29:12 +01001425
Catalin Marinas93ada572015-06-24 16:58:37 -07001426 do {
1427 next = min(start + MAX_SCAN_SIZE, end);
1428 scan_block(start, next, object);
1429
1430 start = next;
1431 if (start >= end)
1432 break;
Catalin Marinasaf986032009-08-27 14:29:12 +01001433
1434 spin_unlock_irqrestore(&object->lock, flags);
1435 cond_resched();
1436 spin_lock_irqsave(&object->lock, flags);
Catalin Marinas93ada572015-06-24 16:58:37 -07001437 } while (object->flags & OBJECT_ALLOCATED);
Catalin Marinasaf986032009-08-27 14:29:12 +01001438 } else
Sasha Levinb67bfe02013-02-27 17:06:00 -08001439 hlist_for_each_entry(area, &object->area_list, node)
Catalin Marinasc017b4b2009-10-28 13:33:09 +00001440 scan_block((void *)area->start,
1441 (void *)(area->start + area->size),
Catalin Marinas93ada572015-06-24 16:58:37 -07001442 object);
Catalin Marinas3c7b4e62009-06-11 13:22:39 +01001443out:
1444 spin_unlock_irqrestore(&object->lock, flags);
1445}
1446
1447/*
Catalin Marinas04609ccc2009-10-28 13:33:12 +00001448 * Scan the objects already referenced (gray objects). More objects will be
1449 * referenced and, if there are no memory leaks, all the objects are scanned.
1450 */
1451static void scan_gray_list(void)
1452{
1453 struct kmemleak_object *object, *tmp;
1454
1455 /*
1456 * The list traversal is safe for both tail additions and removals
1457 * from inside the loop. The kmemleak objects cannot be freed from
1458 * outside the loop because their use_count was incremented.
1459 */
1460 object = list_entry(gray_list.next, typeof(*object), gray_list);
1461 while (&object->gray_list != &gray_list) {
1462 cond_resched();
1463
1464 /* may add new objects to the list */
1465 if (!scan_should_stop())
1466 scan_object(object);
1467
1468 tmp = list_entry(object->gray_list.next, typeof(*object),
1469 gray_list);
1470
1471 /* remove the object from the list and release it */
1472 list_del(&object->gray_list);
1473 put_object(object);
1474
1475 object = tmp;
1476 }
1477 WARN_ON(!list_empty(&gray_list));
1478}
1479
1480/*
Catalin Marinas3c7b4e62009-06-11 13:22:39 +01001481 * Scan data sections and all the referenced memory blocks allocated via the
1482 * kernel's standard allocators. This function must be called with the
1483 * scan_mutex held.
1484 */
1485static void kmemleak_scan(void)
1486{
1487 unsigned long flags;
Catalin Marinas04609ccc2009-10-28 13:33:12 +00001488 struct kmemleak_object *object;
Catalin Marinas3c7b4e62009-06-11 13:22:39 +01001489 int i;
Catalin Marinas4698c1f2009-06-26 17:38:27 +01001490 int new_leaks = 0;
Catalin Marinas3c7b4e62009-06-11 13:22:39 +01001491
Catalin Marinasacf49682009-06-26 17:38:29 +01001492 jiffies_last_scan = jiffies;
1493
Catalin Marinas3c7b4e62009-06-11 13:22:39 +01001494 /* prepare the kmemleak_object's */
1495 rcu_read_lock();
1496 list_for_each_entry_rcu(object, &object_list, object_list) {
1497 spin_lock_irqsave(&object->lock, flags);
1498#ifdef DEBUG
1499 /*
1500 * With a few exceptions there should be a maximum of
1501 * 1 reference to any object at this point.
1502 */
1503 if (atomic_read(&object->use_count) > 1) {
Joe Perchesae281062009-06-23 14:40:26 +01001504 pr_debug("object->use_count = %d\n",
Catalin Marinas3c7b4e62009-06-11 13:22:39 +01001505 atomic_read(&object->use_count));
1506 dump_object_info(object);
1507 }
1508#endif
1509 /* reset the reference count (whiten the object) */
1510 object->count = 0;
1511 if (color_gray(object) && get_object(object))
1512 list_add_tail(&object->gray_list, &gray_list);
1513
1514 spin_unlock_irqrestore(&object->lock, flags);
1515 }
1516 rcu_read_unlock();
1517
Catalin Marinas3c7b4e62009-06-11 13:22:39 +01001518#ifdef CONFIG_SMP
1519 /* per-cpu sections scanning */
1520 for_each_possible_cpu(i)
Catalin Marinas93ada572015-06-24 16:58:37 -07001521 scan_large_block(__per_cpu_start + per_cpu_offset(i),
1522 __per_cpu_end + per_cpu_offset(i));
Catalin Marinas3c7b4e62009-06-11 13:22:39 +01001523#endif
1524
1525 /*
Laura Abbott029aeff2011-11-15 23:49:09 +00001526 * Struct page scanning for each node.
Catalin Marinas3c7b4e62009-06-11 13:22:39 +01001527 */
Vladimir Davydovbfc8c902014-06-04 16:07:18 -07001528 get_online_mems();
Catalin Marinas3c7b4e62009-06-11 13:22:39 +01001529 for_each_online_node(i) {
Cody P Schafer108bcc92013-02-22 16:35:23 -08001530 unsigned long start_pfn = node_start_pfn(i);
1531 unsigned long end_pfn = node_end_pfn(i);
Catalin Marinas3c7b4e62009-06-11 13:22:39 +01001532 unsigned long pfn;
1533
1534 for (pfn = start_pfn; pfn < end_pfn; pfn++) {
1535 struct page *page;
1536
1537 if (!pfn_valid(pfn))
1538 continue;
1539 page = pfn_to_page(pfn);
1540 /* only scan if page is in use */
1541 if (page_count(page) == 0)
1542 continue;
Catalin Marinas93ada572015-06-24 16:58:37 -07001543 scan_block(page, page + 1, NULL);
Andrew Morton13ab183d2017-12-14 15:32:31 -08001544 if (!(pfn & 63))
Yisheng Xiebde5f6b2017-11-29 16:11:08 -08001545 cond_resched();
Catalin Marinas3c7b4e62009-06-11 13:22:39 +01001546 }
1547 }
Vladimir Davydovbfc8c902014-06-04 16:07:18 -07001548 put_online_mems();
Catalin Marinas3c7b4e62009-06-11 13:22:39 +01001549
1550 /*
Catalin Marinas43ed5d62009-09-01 11:12:44 +01001551 * Scanning the task stacks (may introduce false negatives).
Catalin Marinas3c7b4e62009-06-11 13:22:39 +01001552 */
1553 if (kmemleak_stack_scan) {
Catalin Marinas43ed5d62009-09-01 11:12:44 +01001554 struct task_struct *p, *g;
1555
Catalin Marinas3c7b4e62009-06-11 13:22:39 +01001556 read_lock(&tasklist_lock);
Catalin Marinas43ed5d62009-09-01 11:12:44 +01001557 do_each_thread(g, p) {
Catalin Marinas37df49f2016-10-27 17:46:47 -07001558 void *stack = try_get_task_stack(p);
1559 if (stack) {
1560 scan_block(stack, stack + THREAD_SIZE, NULL);
1561 put_task_stack(p);
1562 }
Catalin Marinas43ed5d62009-09-01 11:12:44 +01001563 } while_each_thread(g, p);
Catalin Marinas3c7b4e62009-06-11 13:22:39 +01001564 read_unlock(&tasklist_lock);
1565 }
1566
1567 /*
1568 * Scan the objects already referenced from the sections scanned
Catalin Marinas04609ccc2009-10-28 13:33:12 +00001569 * above.
Catalin Marinas3c7b4e62009-06-11 13:22:39 +01001570 */
Catalin Marinas04609ccc2009-10-28 13:33:12 +00001571 scan_gray_list();
Catalin Marinas25873622009-07-07 10:32:58 +01001572
1573 /*
Catalin Marinas04609ccc2009-10-28 13:33:12 +00001574 * Check for new or unreferenced objects modified since the previous
1575 * scan and color them gray until the next scan.
Catalin Marinas25873622009-07-07 10:32:58 +01001576 */
1577 rcu_read_lock();
1578 list_for_each_entry_rcu(object, &object_list, object_list) {
1579 spin_lock_irqsave(&object->lock, flags);
Catalin Marinas04609ccc2009-10-28 13:33:12 +00001580 if (color_white(object) && (object->flags & OBJECT_ALLOCATED)
1581 && update_checksum(object) && get_object(object)) {
1582 /* color it gray temporarily */
1583 object->count = object->min_count;
Catalin Marinas25873622009-07-07 10:32:58 +01001584 list_add_tail(&object->gray_list, &gray_list);
1585 }
1586 spin_unlock_irqrestore(&object->lock, flags);
1587 }
1588 rcu_read_unlock();
1589
Catalin Marinas04609ccc2009-10-28 13:33:12 +00001590 /*
1591 * Re-scan the gray list for modified unreferenced objects.
1592 */
1593 scan_gray_list();
Catalin Marinas4698c1f2009-06-26 17:38:27 +01001594
1595 /*
Catalin Marinas04609ccc2009-10-28 13:33:12 +00001596 * If scanning was stopped do not report any new unreferenced objects.
Catalin Marinas17bb9e02009-06-29 17:13:56 +01001597 */
Catalin Marinas04609ccc2009-10-28 13:33:12 +00001598 if (scan_should_stop())
Catalin Marinas17bb9e02009-06-29 17:13:56 +01001599 return;
1600
1601 /*
Catalin Marinas4698c1f2009-06-26 17:38:27 +01001602 * Scanning result reporting.
1603 */
1604 rcu_read_lock();
1605 list_for_each_entry_rcu(object, &object_list, object_list) {
1606 spin_lock_irqsave(&object->lock, flags);
1607 if (unreferenced_object(object) &&
1608 !(object->flags & OBJECT_REPORTED)) {
1609 object->flags |= OBJECT_REPORTED;
1610 new_leaks++;
1611 }
1612 spin_unlock_irqrestore(&object->lock, flags);
1613 }
1614 rcu_read_unlock();
1615
Li Zefandc9b3f42014-04-03 14:46:26 -07001616 if (new_leaks) {
1617 kmemleak_found_leaks = true;
1618
Joe Perches756a0252016-03-17 14:19:47 -07001619 pr_info("%d new suspected memory leaks (see /sys/kernel/debug/kmemleak)\n",
1620 new_leaks);
Li Zefandc9b3f42014-04-03 14:46:26 -07001621 }
Catalin Marinas4698c1f2009-06-26 17:38:27 +01001622
Catalin Marinas3c7b4e62009-06-11 13:22:39 +01001623}
1624
1625/*
1626 * Thread function performing automatic memory scanning. Unreferenced objects
1627 * at the end of a memory scan are reported but only the first time.
1628 */
1629static int kmemleak_scan_thread(void *arg)
1630{
1631 static int first_run = 1;
1632
Joe Perchesae281062009-06-23 14:40:26 +01001633 pr_info("Automatic memory scanning thread started\n");
Catalin Marinasbf2a76b2009-07-07 10:32:55 +01001634 set_user_nice(current, 10);
Catalin Marinas3c7b4e62009-06-11 13:22:39 +01001635
1636 /*
1637 * Wait before the first scan to allow the system to fully initialize.
1638 */
1639 if (first_run) {
Vegard Nossum98c42d92016-07-28 15:48:32 -07001640 signed long timeout = msecs_to_jiffies(SECS_FIRST_SCAN * 1000);
Catalin Marinas3c7b4e62009-06-11 13:22:39 +01001641 first_run = 0;
Vegard Nossum98c42d92016-07-28 15:48:32 -07001642 while (timeout && !kthread_should_stop())
1643 timeout = schedule_timeout_interruptible(timeout);
Catalin Marinas3c7b4e62009-06-11 13:22:39 +01001644 }
1645
1646 while (!kthread_should_stop()) {
Catalin Marinas3c7b4e62009-06-11 13:22:39 +01001647 signed long timeout = jiffies_scan_wait;
1648
1649 mutex_lock(&scan_mutex);
Catalin Marinas3c7b4e62009-06-11 13:22:39 +01001650 kmemleak_scan();
Catalin Marinas3c7b4e62009-06-11 13:22:39 +01001651 mutex_unlock(&scan_mutex);
Catalin Marinas4698c1f2009-06-26 17:38:27 +01001652
Catalin Marinas3c7b4e62009-06-11 13:22:39 +01001653 /* wait before the next scan */
1654 while (timeout && !kthread_should_stop())
1655 timeout = schedule_timeout_interruptible(timeout);
1656 }
1657
Joe Perchesae281062009-06-23 14:40:26 +01001658 pr_info("Automatic memory scanning thread ended\n");
Catalin Marinas3c7b4e62009-06-11 13:22:39 +01001659
1660 return 0;
1661}
1662
1663/*
1664 * Start the automatic memory scanning thread. This function must be called
Catalin Marinas4698c1f2009-06-26 17:38:27 +01001665 * with the scan_mutex held.
Catalin Marinas3c7b4e62009-06-11 13:22:39 +01001666 */
Luis R. Rodriguez7eb0d5e2009-09-08 17:31:45 +01001667static void start_scan_thread(void)
Catalin Marinas3c7b4e62009-06-11 13:22:39 +01001668{
1669 if (scan_thread)
1670 return;
1671 scan_thread = kthread_run(kmemleak_scan_thread, NULL, "kmemleak");
1672 if (IS_ERR(scan_thread)) {
Joe Perches598d8092016-03-17 14:19:44 -07001673 pr_warn("Failed to create the scan thread\n");
Catalin Marinas3c7b4e62009-06-11 13:22:39 +01001674 scan_thread = NULL;
1675 }
1676}
1677
1678/*
Vinayak Menon914b6df2018-03-28 16:01:16 -07001679 * Stop the automatic memory scanning thread.
Catalin Marinas3c7b4e62009-06-11 13:22:39 +01001680 */
Luis R. Rodriguez7eb0d5e2009-09-08 17:31:45 +01001681static void stop_scan_thread(void)
Catalin Marinas3c7b4e62009-06-11 13:22:39 +01001682{
1683 if (scan_thread) {
1684 kthread_stop(scan_thread);
1685 scan_thread = NULL;
1686 }
1687}
1688
1689/*
1690 * Iterate over the object_list and return the first valid object at or after
1691 * the required position with its use_count incremented. The function triggers
1692 * a memory scanning when the pos argument points to the first position.
1693 */
1694static void *kmemleak_seq_start(struct seq_file *seq, loff_t *pos)
1695{
1696 struct kmemleak_object *object;
1697 loff_t n = *pos;
Catalin Marinasb87324d2009-07-07 10:32:58 +01001698 int err;
1699
1700 err = mutex_lock_interruptible(&scan_mutex);
1701 if (err < 0)
1702 return ERR_PTR(err);
Catalin Marinas3c7b4e62009-06-11 13:22:39 +01001703
Catalin Marinas3c7b4e62009-06-11 13:22:39 +01001704 rcu_read_lock();
1705 list_for_each_entry_rcu(object, &object_list, object_list) {
1706 if (n-- > 0)
1707 continue;
1708 if (get_object(object))
1709 goto out;
1710 }
1711 object = NULL;
1712out:
Catalin Marinas3c7b4e62009-06-11 13:22:39 +01001713 return object;
1714}
1715
1716/*
1717 * Return the next object in the object_list. The function decrements the
1718 * use_count of the previous object and increases that of the next one.
1719 */
1720static void *kmemleak_seq_next(struct seq_file *seq, void *v, loff_t *pos)
1721{
1722 struct kmemleak_object *prev_obj = v;
1723 struct kmemleak_object *next_obj = NULL;
Michael Wang58fac092012-08-17 12:33:34 +08001724 struct kmemleak_object *obj = prev_obj;
Catalin Marinas3c7b4e62009-06-11 13:22:39 +01001725
1726 ++(*pos);
Catalin Marinas3c7b4e62009-06-11 13:22:39 +01001727
Michael Wang58fac092012-08-17 12:33:34 +08001728 list_for_each_entry_continue_rcu(obj, &object_list, object_list) {
Catalin Marinas52c3ce42011-04-27 16:44:26 +01001729 if (get_object(obj)) {
1730 next_obj = obj;
Catalin Marinas3c7b4e62009-06-11 13:22:39 +01001731 break;
Catalin Marinas52c3ce42011-04-27 16:44:26 +01001732 }
Catalin Marinas3c7b4e62009-06-11 13:22:39 +01001733 }
Catalin Marinas288c8572009-07-07 10:32:57 +01001734
Catalin Marinas3c7b4e62009-06-11 13:22:39 +01001735 put_object(prev_obj);
1736 return next_obj;
1737}
1738
1739/*
1740 * Decrement the use_count of the last object required, if any.
1741 */
1742static void kmemleak_seq_stop(struct seq_file *seq, void *v)
1743{
Catalin Marinasb87324d2009-07-07 10:32:58 +01001744 if (!IS_ERR(v)) {
1745 /*
1746 * kmemleak_seq_start may return ERR_PTR if the scan_mutex
1747 * waiting was interrupted, so only release it if !IS_ERR.
1748 */
Catalin Marinasf5886c72009-07-29 16:26:57 +01001749 rcu_read_unlock();
Catalin Marinasb87324d2009-07-07 10:32:58 +01001750 mutex_unlock(&scan_mutex);
1751 if (v)
1752 put_object(v);
1753 }
Catalin Marinas3c7b4e62009-06-11 13:22:39 +01001754}
1755
1756/*
1757 * Print the information for an unreferenced object to the seq file.
1758 */
1759static int kmemleak_seq_show(struct seq_file *seq, void *v)
1760{
1761 struct kmemleak_object *object = v;
1762 unsigned long flags;
1763
1764 spin_lock_irqsave(&object->lock, flags);
Catalin Marinas288c8572009-07-07 10:32:57 +01001765 if ((object->flags & OBJECT_REPORTED) && unreferenced_object(object))
Catalin Marinas17bb9e02009-06-29 17:13:56 +01001766 print_unreferenced(seq, object);
Catalin Marinas3c7b4e62009-06-11 13:22:39 +01001767 spin_unlock_irqrestore(&object->lock, flags);
1768 return 0;
1769}
1770
1771static const struct seq_operations kmemleak_seq_ops = {
1772 .start = kmemleak_seq_start,
1773 .next = kmemleak_seq_next,
1774 .stop = kmemleak_seq_stop,
1775 .show = kmemleak_seq_show,
1776};
1777
1778static int kmemleak_open(struct inode *inode, struct file *file)
1779{
Catalin Marinasb87324d2009-07-07 10:32:58 +01001780 return seq_open(file, &kmemleak_seq_ops);
Catalin Marinas3c7b4e62009-06-11 13:22:39 +01001781}
1782
Catalin Marinas189d84e2009-08-27 14:29:15 +01001783static int dump_str_object_info(const char *str)
1784{
1785 unsigned long flags;
1786 struct kmemleak_object *object;
1787 unsigned long addr;
1788
Abhijit Pawardc053732012-12-18 14:23:27 -08001789 if (kstrtoul(str, 0, &addr))
1790 return -EINVAL;
Catalin Marinas189d84e2009-08-27 14:29:15 +01001791 object = find_and_get_object(addr, 0);
1792 if (!object) {
1793 pr_info("Unknown object at 0x%08lx\n", addr);
1794 return -EINVAL;
1795 }
1796
1797 spin_lock_irqsave(&object->lock, flags);
1798 dump_object_info(object);
1799 spin_unlock_irqrestore(&object->lock, flags);
1800
1801 put_object(object);
1802 return 0;
1803}
1804
Catalin Marinas3c7b4e62009-06-11 13:22:39 +01001805/*
Luis R. Rodriguez30b37102009-09-04 17:44:51 -07001806 * We use grey instead of black to ensure we can do future scans on the same
1807 * objects. If we did not do future scans these black objects could
1808 * potentially contain references to newly allocated objects in the future and
1809 * we'd end up with false positives.
1810 */
1811static void kmemleak_clear(void)
1812{
1813 struct kmemleak_object *object;
1814 unsigned long flags;
1815
1816 rcu_read_lock();
1817 list_for_each_entry_rcu(object, &object_list, object_list) {
1818 spin_lock_irqsave(&object->lock, flags);
1819 if ((object->flags & OBJECT_REPORTED) &&
1820 unreferenced_object(object))
Luis R. Rodrigueza1084c82009-09-04 17:44:52 -07001821 __paint_it(object, KMEMLEAK_GREY);
Luis R. Rodriguez30b37102009-09-04 17:44:51 -07001822 spin_unlock_irqrestore(&object->lock, flags);
1823 }
1824 rcu_read_unlock();
Li Zefandc9b3f42014-04-03 14:46:26 -07001825
1826 kmemleak_found_leaks = false;
Luis R. Rodriguez30b37102009-09-04 17:44:51 -07001827}
1828
Li Zefanc89da702014-04-03 14:46:27 -07001829static void __kmemleak_do_cleanup(void);
1830
Luis R. Rodriguez30b37102009-09-04 17:44:51 -07001831/*
Catalin Marinas3c7b4e62009-06-11 13:22:39 +01001832 * File write operation to configure kmemleak at run-time. The following
1833 * commands can be written to the /sys/kernel/debug/kmemleak file:
1834 * off - disable kmemleak (irreversible)
1835 * stack=on - enable the task stacks scanning
1836 * stack=off - disable the tasks stacks scanning
1837 * scan=on - start the automatic memory scanning thread
1838 * scan=off - stop the automatic memory scanning thread
1839 * scan=... - set the automatic memory scanning period in seconds (0 to
1840 * disable it)
Catalin Marinas4698c1f2009-06-26 17:38:27 +01001841 * scan - trigger a memory scan
Luis R. Rodriguez30b37102009-09-04 17:44:51 -07001842 * clear - mark all current reported unreferenced kmemleak objects as
Li Zefanc89da702014-04-03 14:46:27 -07001843 * grey to ignore printing them, or free all kmemleak objects
1844 * if kmemleak has been disabled.
Catalin Marinas189d84e2009-08-27 14:29:15 +01001845 * dump=... - dump information about the object found at the given address
Catalin Marinas3c7b4e62009-06-11 13:22:39 +01001846 */
1847static ssize_t kmemleak_write(struct file *file, const char __user *user_buf,
1848 size_t size, loff_t *ppos)
1849{
1850 char buf[64];
1851 int buf_size;
Catalin Marinasb87324d2009-07-07 10:32:58 +01001852 int ret;
Catalin Marinas3c7b4e62009-06-11 13:22:39 +01001853
1854 buf_size = min(size, (sizeof(buf) - 1));
1855 if (strncpy_from_user(buf, user_buf, buf_size) < 0)
1856 return -EFAULT;
1857 buf[buf_size] = 0;
1858
Catalin Marinasb87324d2009-07-07 10:32:58 +01001859 ret = mutex_lock_interruptible(&scan_mutex);
1860 if (ret < 0)
1861 return ret;
1862
Li Zefanc89da702014-04-03 14:46:27 -07001863 if (strncmp(buf, "clear", 5) == 0) {
Li Zefan8910ae82014-04-03 14:46:29 -07001864 if (kmemleak_enabled)
Li Zefanc89da702014-04-03 14:46:27 -07001865 kmemleak_clear();
1866 else
1867 __kmemleak_do_cleanup();
1868 goto out;
1869 }
1870
Li Zefan8910ae82014-04-03 14:46:29 -07001871 if (!kmemleak_enabled) {
Li Zefanc89da702014-04-03 14:46:27 -07001872 ret = -EBUSY;
1873 goto out;
1874 }
1875
Catalin Marinas3c7b4e62009-06-11 13:22:39 +01001876 if (strncmp(buf, "off", 3) == 0)
1877 kmemleak_disable();
1878 else if (strncmp(buf, "stack=on", 8) == 0)
1879 kmemleak_stack_scan = 1;
1880 else if (strncmp(buf, "stack=off", 9) == 0)
1881 kmemleak_stack_scan = 0;
1882 else if (strncmp(buf, "scan=on", 7) == 0)
1883 start_scan_thread();
1884 else if (strncmp(buf, "scan=off", 8) == 0)
1885 stop_scan_thread();
1886 else if (strncmp(buf, "scan=", 5) == 0) {
1887 unsigned long secs;
Catalin Marinas3c7b4e62009-06-11 13:22:39 +01001888
Jingoo Han3dbb95f2013-09-11 14:20:25 -07001889 ret = kstrtoul(buf + 5, 0, &secs);
Catalin Marinasb87324d2009-07-07 10:32:58 +01001890 if (ret < 0)
1891 goto out;
Catalin Marinas3c7b4e62009-06-11 13:22:39 +01001892 stop_scan_thread();
1893 if (secs) {
1894 jiffies_scan_wait = msecs_to_jiffies(secs * 1000);
1895 start_scan_thread();
1896 }
Catalin Marinas4698c1f2009-06-26 17:38:27 +01001897 } else if (strncmp(buf, "scan", 4) == 0)
1898 kmemleak_scan();
Catalin Marinas189d84e2009-08-27 14:29:15 +01001899 else if (strncmp(buf, "dump=", 5) == 0)
1900 ret = dump_str_object_info(buf + 5);
Catalin Marinas4698c1f2009-06-26 17:38:27 +01001901 else
Catalin Marinasb87324d2009-07-07 10:32:58 +01001902 ret = -EINVAL;
1903
1904out:
1905 mutex_unlock(&scan_mutex);
1906 if (ret < 0)
1907 return ret;
Catalin Marinas3c7b4e62009-06-11 13:22:39 +01001908
1909 /* ignore the rest of the buffer, only one command at a time */
1910 *ppos += size;
1911 return size;
1912}
1913
1914static const struct file_operations kmemleak_fops = {
1915 .owner = THIS_MODULE,
1916 .open = kmemleak_open,
1917 .read = seq_read,
1918 .write = kmemleak_write,
1919 .llseek = seq_lseek,
Li Zefan5f3bf192014-04-03 14:46:28 -07001920 .release = seq_release,
Catalin Marinas3c7b4e62009-06-11 13:22:39 +01001921};
1922
Li Zefanc89da702014-04-03 14:46:27 -07001923static void __kmemleak_do_cleanup(void)
1924{
1925 struct kmemleak_object *object;
1926
1927 rcu_read_lock();
1928 list_for_each_entry_rcu(object, &object_list, object_list)
1929 delete_object_full(object->pointer);
1930 rcu_read_unlock();
1931}
1932
Catalin Marinas3c7b4e62009-06-11 13:22:39 +01001933/*
Catalin Marinas74341702011-09-29 11:50:07 +01001934 * Stop the memory scanning thread and free the kmemleak internal objects if
1935 * no previous scan thread (otherwise, kmemleak may still have some useful
1936 * information on memory leaks).
Catalin Marinas3c7b4e62009-06-11 13:22:39 +01001937 */
Catalin Marinas179a8102009-09-07 10:14:42 +01001938static void kmemleak_do_cleanup(struct work_struct *work)
Catalin Marinas3c7b4e62009-06-11 13:22:39 +01001939{
Catalin Marinas4698c1f2009-06-26 17:38:27 +01001940 stop_scan_thread();
1941
Vinayak Menon914b6df2018-03-28 16:01:16 -07001942 mutex_lock(&scan_mutex);
Catalin Marinasc5f3b1a2015-06-24 16:58:26 -07001943 /*
Vinayak Menon914b6df2018-03-28 16:01:16 -07001944 * Once it is made sure that kmemleak_scan has stopped, it is safe to no
1945 * longer track object freeing. Ordering of the scan thread stopping and
1946 * the memory accesses below is guaranteed by the kthread_stop()
1947 * function.
Catalin Marinasc5f3b1a2015-06-24 16:58:26 -07001948 */
1949 kmemleak_free_enabled = 0;
Vinayak Menon914b6df2018-03-28 16:01:16 -07001950 mutex_unlock(&scan_mutex);
Catalin Marinasc5f3b1a2015-06-24 16:58:26 -07001951
Li Zefanc89da702014-04-03 14:46:27 -07001952 if (!kmemleak_found_leaks)
1953 __kmemleak_do_cleanup();
1954 else
Joe Perches756a0252016-03-17 14:19:47 -07001955 pr_info("Kmemleak disabled without freeing internal data. Reclaim the memory with \"echo clear > /sys/kernel/debug/kmemleak\".\n");
Catalin Marinas3c7b4e62009-06-11 13:22:39 +01001956}
1957
Catalin Marinas179a8102009-09-07 10:14:42 +01001958static DECLARE_WORK(cleanup_work, kmemleak_do_cleanup);
Catalin Marinas3c7b4e62009-06-11 13:22:39 +01001959
1960/*
1961 * Disable kmemleak. No memory allocation/freeing will be traced once this
1962 * function is called. Disabling kmemleak is an irreversible operation.
1963 */
1964static void kmemleak_disable(void)
1965{
1966 /* atomically check whether it was already invoked */
Li Zefan8910ae82014-04-03 14:46:29 -07001967 if (cmpxchg(&kmemleak_error, 0, 1))
Catalin Marinas3c7b4e62009-06-11 13:22:39 +01001968 return;
1969
1970 /* stop any memory operation tracing */
Li Zefan8910ae82014-04-03 14:46:29 -07001971 kmemleak_enabled = 0;
Catalin Marinas3c7b4e62009-06-11 13:22:39 +01001972
1973 /* check whether it is too early for a kernel thread */
Li Zefan8910ae82014-04-03 14:46:29 -07001974 if (kmemleak_initialized)
Catalin Marinas179a8102009-09-07 10:14:42 +01001975 schedule_work(&cleanup_work);
Catalin Marinasc5f3b1a2015-06-24 16:58:26 -07001976 else
1977 kmemleak_free_enabled = 0;
Catalin Marinas3c7b4e62009-06-11 13:22:39 +01001978
1979 pr_info("Kernel memory leak detector disabled\n");
1980}
1981
1982/*
1983 * Allow boot-time kmemleak disabling (enabled by default).
1984 */
Dou Liyang8bd30c12018-04-05 16:23:46 -07001985static int __init kmemleak_boot_config(char *str)
Catalin Marinas3c7b4e62009-06-11 13:22:39 +01001986{
1987 if (!str)
1988 return -EINVAL;
1989 if (strcmp(str, "off") == 0)
1990 kmemleak_disable();
Jason Baronab0155a2010-07-19 11:54:17 +01001991 else if (strcmp(str, "on") == 0)
1992 kmemleak_skip_disable = 1;
1993 else
Catalin Marinas3c7b4e62009-06-11 13:22:39 +01001994 return -EINVAL;
1995 return 0;
1996}
1997early_param("kmemleak", kmemleak_boot_config);
1998
Catalin Marinas5f790202011-09-28 12:17:03 +01001999static void __init print_log_trace(struct early_log *log)
2000{
2001 struct stack_trace trace;
2002
2003 trace.nr_entries = log->trace_len;
2004 trace.entries = log->trace;
2005
2006 pr_notice("Early log backtrace:\n");
2007 print_stack_trace(&trace, 2);
2008}
2009
Catalin Marinas3c7b4e62009-06-11 13:22:39 +01002010/*
Catalin Marinas20301172009-06-17 18:29:04 +01002011 * Kmemleak initialization.
Catalin Marinas3c7b4e62009-06-11 13:22:39 +01002012 */
2013void __init kmemleak_init(void)
2014{
2015 int i;
2016 unsigned long flags;
2017
Jason Baronab0155a2010-07-19 11:54:17 +01002018#ifdef CONFIG_DEBUG_KMEMLEAK_DEFAULT_OFF
2019 if (!kmemleak_skip_disable) {
Catalin Marinas3551a922014-05-09 15:36:59 -07002020 kmemleak_early_log = 0;
Jason Baronab0155a2010-07-19 11:54:17 +01002021 kmemleak_disable();
2022 return;
2023 }
2024#endif
2025
Catalin Marinas3c7b4e62009-06-11 13:22:39 +01002026 jiffies_min_age = msecs_to_jiffies(MSECS_MIN_AGE);
2027 jiffies_scan_wait = msecs_to_jiffies(SECS_SCAN_WAIT * 1000);
2028
2029 object_cache = KMEM_CACHE(kmemleak_object, SLAB_NOLEAKTRACE);
2030 scan_area_cache = KMEM_CACHE(kmemleak_scan_area, SLAB_NOLEAKTRACE);
Catalin Marinas3c7b4e62009-06-11 13:22:39 +01002031
Wang Kai21cd3a62015-09-08 15:03:41 -07002032 if (crt_early_log > ARRAY_SIZE(early_log))
Joe Perches598d8092016-03-17 14:19:44 -07002033 pr_warn("Early log buffer exceeded (%d), please increase DEBUG_KMEMLEAK_EARLY_LOG_SIZE\n",
2034 crt_early_log);
Catalin Marinasb6693002011-09-28 17:22:56 +01002035
Catalin Marinas3c7b4e62009-06-11 13:22:39 +01002036 /* the kernel is still in UP mode, so disabling the IRQs is enough */
2037 local_irq_save(flags);
Catalin Marinas3551a922014-05-09 15:36:59 -07002038 kmemleak_early_log = 0;
Li Zefan8910ae82014-04-03 14:46:29 -07002039 if (kmemleak_error) {
Catalin Marinasb6693002011-09-28 17:22:56 +01002040 local_irq_restore(flags);
2041 return;
Catalin Marinasc5f3b1a2015-06-24 16:58:26 -07002042 } else {
Li Zefan8910ae82014-04-03 14:46:29 -07002043 kmemleak_enabled = 1;
Catalin Marinasc5f3b1a2015-06-24 16:58:26 -07002044 kmemleak_free_enabled = 1;
2045 }
Catalin Marinas3c7b4e62009-06-11 13:22:39 +01002046 local_irq_restore(flags);
2047
Catalin Marinas6a62bbe2019-04-05 18:38:49 -07002048 /* register the data/bss sections */
2049 create_object((unsigned long)_sdata, _edata - _sdata,
2050 KMEMLEAK_GREY, GFP_ATOMIC);
2051 create_object((unsigned long)__bss_start, __bss_stop - __bss_start,
2052 KMEMLEAK_GREY, GFP_ATOMIC);
2053 /* only register .data..ro_after_init if not within .data */
2054 if (__start_ro_after_init < _sdata || __end_ro_after_init > _edata)
2055 create_object((unsigned long)__start_ro_after_init,
2056 __end_ro_after_init - __start_ro_after_init,
2057 KMEMLEAK_GREY, GFP_ATOMIC);
2058
Catalin Marinas3c7b4e62009-06-11 13:22:39 +01002059 /*
2060 * This is the point where tracking allocations is safe. Automatic
2061 * scanning is started during the late initcall. Add the early logged
2062 * callbacks to the kmemleak infrastructure.
2063 */
2064 for (i = 0; i < crt_early_log; i++) {
2065 struct early_log *log = &early_log[i];
2066
2067 switch (log->op_type) {
2068 case KMEMLEAK_ALLOC:
Catalin Marinasfd678962009-08-27 14:29:17 +01002069 early_alloc(log);
Catalin Marinas3c7b4e62009-06-11 13:22:39 +01002070 break;
Catalin Marinasf528f0b2011-09-26 17:12:53 +01002071 case KMEMLEAK_ALLOC_PERCPU:
2072 early_alloc_percpu(log);
2073 break;
Catalin Marinas3c7b4e62009-06-11 13:22:39 +01002074 case KMEMLEAK_FREE:
2075 kmemleak_free(log->ptr);
2076 break;
Catalin Marinas53238a62009-07-07 10:33:00 +01002077 case KMEMLEAK_FREE_PART:
2078 kmemleak_free_part(log->ptr, log->size);
2079 break;
Catalin Marinasf528f0b2011-09-26 17:12:53 +01002080 case KMEMLEAK_FREE_PERCPU:
2081 kmemleak_free_percpu(log->ptr);
2082 break;
Catalin Marinas3c7b4e62009-06-11 13:22:39 +01002083 case KMEMLEAK_NOT_LEAK:
2084 kmemleak_not_leak(log->ptr);
2085 break;
2086 case KMEMLEAK_IGNORE:
2087 kmemleak_ignore(log->ptr);
2088 break;
2089 case KMEMLEAK_SCAN_AREA:
Catalin Marinasc017b4b2009-10-28 13:33:09 +00002090 kmemleak_scan_area(log->ptr, log->size, GFP_KERNEL);
Catalin Marinas3c7b4e62009-06-11 13:22:39 +01002091 break;
2092 case KMEMLEAK_NO_SCAN:
2093 kmemleak_no_scan(log->ptr);
2094 break;
Catalin Marinas94f4a162017-07-06 15:40:22 -07002095 case KMEMLEAK_SET_EXCESS_REF:
2096 object_set_excess_ref((unsigned long)log->ptr,
2097 log->excess_ref);
2098 break;
Catalin Marinas3c7b4e62009-06-11 13:22:39 +01002099 default:
Catalin Marinas5f790202011-09-28 12:17:03 +01002100 kmemleak_warn("Unknown early log operation: %d\n",
2101 log->op_type);
2102 }
2103
Li Zefan8910ae82014-04-03 14:46:29 -07002104 if (kmemleak_warning) {
Catalin Marinas5f790202011-09-28 12:17:03 +01002105 print_log_trace(log);
Li Zefan8910ae82014-04-03 14:46:29 -07002106 kmemleak_warning = 0;
Catalin Marinas3c7b4e62009-06-11 13:22:39 +01002107 }
2108 }
2109}
2110
2111/*
2112 * Late initialization function.
2113 */
2114static int __init kmemleak_late_init(void)
2115{
2116 struct dentry *dentry;
2117
Li Zefan8910ae82014-04-03 14:46:29 -07002118 kmemleak_initialized = 1;
Catalin Marinas3c7b4e62009-06-11 13:22:39 +01002119
Vincent Whitchurchb3537562018-09-04 15:45:44 -07002120 dentry = debugfs_create_file("kmemleak", 0644, NULL, NULL,
2121 &kmemleak_fops);
2122 if (!dentry)
2123 pr_warn("Failed to create the debugfs kmemleak file\n");
2124
Li Zefan8910ae82014-04-03 14:46:29 -07002125 if (kmemleak_error) {
Catalin Marinas3c7b4e62009-06-11 13:22:39 +01002126 /*
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002127 * Some error occurred and kmemleak was disabled. There is a
Catalin Marinas3c7b4e62009-06-11 13:22:39 +01002128 * small chance that kmemleak_disable() was called immediately
2129 * after setting kmemleak_initialized and we may end up with
2130 * two clean-up threads but serialized by scan_mutex.
2131 */
Catalin Marinas179a8102009-09-07 10:14:42 +01002132 schedule_work(&cleanup_work);
Catalin Marinas3c7b4e62009-06-11 13:22:39 +01002133 return -ENOMEM;
2134 }
2135
Catalin Marinas4698c1f2009-06-26 17:38:27 +01002136 mutex_lock(&scan_mutex);
Catalin Marinas3c7b4e62009-06-11 13:22:39 +01002137 start_scan_thread();
Catalin Marinas4698c1f2009-06-26 17:38:27 +01002138 mutex_unlock(&scan_mutex);
Catalin Marinas3c7b4e62009-06-11 13:22:39 +01002139
2140 pr_info("Kernel memory leak detector initialized\n");
2141
2142 return 0;
2143}
2144late_initcall(kmemleak_late_init);