mm: rcu-protected get_mm_exe_file()
[linux-2.6-block.git] / mm / kmemleak.c
CommitLineData
3c7b4e6b
CM
1/*
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
22 * Documentation/kmemleak.txt.
23 *
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
85d3a316 32 * blocks. The object_tree_root is a red black tree used to look-up
3c7b4e6b
CM
33 * 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
4698c1f2
CM
51 * 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
3c7b4e6b
CM
55 *
56 * The kmemleak_object structures have a use_count incremented or decremented
57 * using the get_object()/put_object() functions. When the use_count becomes
58 * 0, this count can no longer be incremented and put_object() schedules the
59 * kmemleak_object freeing via an RCU callback. All calls to the get_object()
60 * function must be protected by rcu_read_lock() to avoid accessing a freed
61 * structure.
62 */
63
ae281064
JP
64#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
65
3c7b4e6b
CM
66#include <linux/init.h>
67#include <linux/kernel.h>
68#include <linux/list.h>
69#include <linux/sched.h>
70#include <linux/jiffies.h>
71#include <linux/delay.h>
b95f1b31 72#include <linux/export.h>
3c7b4e6b 73#include <linux/kthread.h>
85d3a316 74#include <linux/rbtree.h>
3c7b4e6b
CM
75#include <linux/fs.h>
76#include <linux/debugfs.h>
77#include <linux/seq_file.h>
78#include <linux/cpumask.h>
79#include <linux/spinlock.h>
80#include <linux/mutex.h>
81#include <linux/rcupdate.h>
82#include <linux/stacktrace.h>
83#include <linux/cache.h>
84#include <linux/percpu.h>
85#include <linux/hardirq.h>
86#include <linux/mmzone.h>
87#include <linux/slab.h>
88#include <linux/thread_info.h>
89#include <linux/err.h>
90#include <linux/uaccess.h>
91#include <linux/string.h>
92#include <linux/nodemask.h>
93#include <linux/mm.h>
179a8100 94#include <linux/workqueue.h>
04609ccc 95#include <linux/crc32.h>
3c7b4e6b
CM
96
97#include <asm/sections.h>
98#include <asm/processor.h>
60063497 99#include <linux/atomic.h>
3c7b4e6b 100
e79ed2f1 101#include <linux/kasan.h>
8e019366 102#include <linux/kmemcheck.h>
3c7b4e6b 103#include <linux/kmemleak.h>
029aeff5 104#include <linux/memory_hotplug.h>
3c7b4e6b
CM
105
106/*
107 * Kmemleak configuration and common defines.
108 */
109#define MAX_TRACE 16 /* stack trace length */
3c7b4e6b 110#define MSECS_MIN_AGE 5000 /* minimum object age for reporting */
3c7b4e6b
CM
111#define SECS_FIRST_SCAN 60 /* delay before the first scan */
112#define SECS_SCAN_WAIT 600 /* subsequent auto scanning delay */
af98603d 113#define MAX_SCAN_SIZE 4096 /* maximum size of a scanned block */
3c7b4e6b
CM
114
115#define BYTES_PER_POINTER sizeof(void *)
116
216c04b0 117/* GFP bitmask for kmemleak internal allocations */
6ae4bd1f
CM
118#define gfp_kmemleak_mask(gfp) (((gfp) & (GFP_KERNEL | GFP_ATOMIC)) | \
119 __GFP_NORETRY | __GFP_NOMEMALLOC | \
120 __GFP_NOWARN)
216c04b0 121
3c7b4e6b
CM
122/* scanning area inside a memory block */
123struct kmemleak_scan_area {
124 struct hlist_node node;
c017b4be
CM
125 unsigned long start;
126 size_t size;
3c7b4e6b
CM
127};
128
a1084c87
LR
129#define KMEMLEAK_GREY 0
130#define KMEMLEAK_BLACK -1
131
3c7b4e6b
CM
132/*
133 * Structure holding the metadata for each allocated memory block.
134 * Modifications to such objects should be made while holding the
135 * object->lock. Insertions or deletions from object_list, gray_list or
85d3a316 136 * rb_node are already protected by the corresponding locks or mutex (see
3c7b4e6b
CM
137 * the notes on locking above). These objects are reference-counted
138 * (use_count) and freed using the RCU mechanism.
139 */
140struct kmemleak_object {
141 spinlock_t lock;
142 unsigned long flags; /* object status flags */
143 struct list_head object_list;
144 struct list_head gray_list;
85d3a316 145 struct rb_node rb_node;
3c7b4e6b
CM
146 struct rcu_head rcu; /* object_list lockless traversal */
147 /* object usage count; object freed when use_count == 0 */
148 atomic_t use_count;
149 unsigned long pointer;
150 size_t size;
151 /* minimum number of a pointers found before it is considered leak */
152 int min_count;
153 /* the total number of pointers found pointing to this object */
154 int count;
04609ccc
CM
155 /* checksum for detecting modified objects */
156 u32 checksum;
3c7b4e6b
CM
157 /* memory ranges to be scanned inside an object (empty for all) */
158 struct hlist_head area_list;
159 unsigned long trace[MAX_TRACE];
160 unsigned int trace_len;
161 unsigned long jiffies; /* creation timestamp */
162 pid_t pid; /* pid of the current task */
163 char comm[TASK_COMM_LEN]; /* executable name */
164};
165
166/* flag representing the memory block allocation status */
167#define OBJECT_ALLOCATED (1 << 0)
168/* flag set after the first reporting of an unreference object */
169#define OBJECT_REPORTED (1 << 1)
170/* flag set to not scan the object */
171#define OBJECT_NO_SCAN (1 << 2)
172
0494e082
SS
173/* number of bytes to print per line; must be 16 or 32 */
174#define HEX_ROW_SIZE 16
175/* number of bytes to print at a time (1, 2, 4, 8) */
176#define HEX_GROUP_SIZE 1
177/* include ASCII after the hex output */
178#define HEX_ASCII 1
179/* max number of lines to be printed */
180#define HEX_MAX_LINES 2
181
3c7b4e6b
CM
182/* the list of all allocated objects */
183static LIST_HEAD(object_list);
184/* the list of gray-colored objects (see color_gray comment below) */
185static LIST_HEAD(gray_list);
85d3a316
ML
186/* search tree for object boundaries */
187static struct rb_root object_tree_root = RB_ROOT;
188/* rw_lock protecting the access to object_list and object_tree_root */
3c7b4e6b
CM
189static DEFINE_RWLOCK(kmemleak_lock);
190
191/* allocation caches for kmemleak internal data */
192static struct kmem_cache *object_cache;
193static struct kmem_cache *scan_area_cache;
194
195/* set if tracing memory operations is enabled */
8910ae89 196static int kmemleak_enabled;
3c7b4e6b 197/* set in the late_initcall if there were no errors */
8910ae89 198static int kmemleak_initialized;
3c7b4e6b 199/* enables or disables early logging of the memory operations */
8910ae89 200static int kmemleak_early_log = 1;
5f79020c 201/* set if a kmemleak warning was issued */
8910ae89 202static int kmemleak_warning;
5f79020c 203/* set if a fatal kmemleak error has occurred */
8910ae89 204static int kmemleak_error;
3c7b4e6b
CM
205
206/* minimum and maximum address that may be valid pointers */
207static unsigned long min_addr = ULONG_MAX;
208static unsigned long max_addr;
209
3c7b4e6b 210static struct task_struct *scan_thread;
acf4968e 211/* used to avoid reporting of recently allocated objects */
3c7b4e6b 212static unsigned long jiffies_min_age;
acf4968e 213static unsigned long jiffies_last_scan;
3c7b4e6b
CM
214/* delay between automatic memory scannings */
215static signed long jiffies_scan_wait;
216/* enables or disables the task stacks scanning */
e0a2a160 217static int kmemleak_stack_scan = 1;
4698c1f2 218/* protects the memory scanning, parameters and debug/kmemleak file access */
3c7b4e6b 219static DEFINE_MUTEX(scan_mutex);
ab0155a2
JB
220/* setting kmemleak=on, will set this var, skipping the disable */
221static int kmemleak_skip_disable;
dc9b3f42
LZ
222/* If there are leaks that can be reported */
223static bool kmemleak_found_leaks;
3c7b4e6b 224
3c7b4e6b 225/*
2030117d 226 * Early object allocation/freeing logging. Kmemleak is initialized after the
3c7b4e6b 227 * kernel allocator. However, both the kernel allocator and kmemleak may
2030117d 228 * allocate memory blocks which need to be tracked. Kmemleak defines an
3c7b4e6b
CM
229 * arbitrary buffer to hold the allocation/freeing information before it is
230 * fully initialized.
231 */
232
233/* kmemleak operation type for early logging */
234enum {
235 KMEMLEAK_ALLOC,
f528f0b8 236 KMEMLEAK_ALLOC_PERCPU,
3c7b4e6b 237 KMEMLEAK_FREE,
53238a60 238 KMEMLEAK_FREE_PART,
f528f0b8 239 KMEMLEAK_FREE_PERCPU,
3c7b4e6b
CM
240 KMEMLEAK_NOT_LEAK,
241 KMEMLEAK_IGNORE,
242 KMEMLEAK_SCAN_AREA,
243 KMEMLEAK_NO_SCAN
244};
245
246/*
247 * Structure holding the information passed to kmemleak callbacks during the
248 * early logging.
249 */
250struct early_log {
251 int op_type; /* kmemleak operation type */
252 const void *ptr; /* allocated/freed memory block */
253 size_t size; /* memory block size */
254 int min_count; /* minimum reference count */
fd678967
CM
255 unsigned long trace[MAX_TRACE]; /* stack trace */
256 unsigned int trace_len; /* stack trace length */
3c7b4e6b
CM
257};
258
259/* early logging buffer and current position */
a6186d89
CM
260static struct early_log
261 early_log[CONFIG_DEBUG_KMEMLEAK_EARLY_LOG_SIZE] __initdata;
262static int crt_early_log __initdata;
3c7b4e6b
CM
263
264static void kmemleak_disable(void);
265
266/*
267 * Print a warning and dump the stack trace.
268 */
5f79020c
CM
269#define kmemleak_warn(x...) do { \
270 pr_warning(x); \
271 dump_stack(); \
8910ae89 272 kmemleak_warning = 1; \
3c7b4e6b
CM
273} while (0)
274
275/*
25985edc 276 * Macro invoked when a serious kmemleak condition occurred and cannot be
2030117d 277 * recovered from. Kmemleak will be disabled and further allocation/freeing
3c7b4e6b
CM
278 * tracing no longer available.
279 */
000814f4 280#define kmemleak_stop(x...) do { \
3c7b4e6b
CM
281 kmemleak_warn(x); \
282 kmemleak_disable(); \
283} while (0)
284
0494e082
SS
285/*
286 * Printing of the objects hex dump to the seq file. The number of lines to be
287 * printed is limited to HEX_MAX_LINES to prevent seq file spamming. The
288 * actual number of printed bytes depends on HEX_ROW_SIZE. It must be called
289 * with the object->lock held.
290 */
291static void hex_dump_object(struct seq_file *seq,
292 struct kmemleak_object *object)
293{
294 const u8 *ptr = (const u8 *)object->pointer;
295 int i, len, remaining;
296 unsigned char linebuf[HEX_ROW_SIZE * 5];
297
298 /* limit the number of lines to HEX_MAX_LINES */
299 remaining = len =
300 min(object->size, (size_t)(HEX_MAX_LINES * HEX_ROW_SIZE));
301
302 seq_printf(seq, " hex dump (first %d bytes):\n", len);
303 for (i = 0; i < len; i += HEX_ROW_SIZE) {
304 int linelen = min(remaining, HEX_ROW_SIZE);
305
306 remaining -= HEX_ROW_SIZE;
307 hex_dump_to_buffer(ptr + i, linelen, HEX_ROW_SIZE,
308 HEX_GROUP_SIZE, linebuf, sizeof(linebuf),
309 HEX_ASCII);
310 seq_printf(seq, " %s\n", linebuf);
311 }
312}
313
3c7b4e6b
CM
314/*
315 * Object colors, encoded with count and min_count:
316 * - white - orphan object, not enough references to it (count < min_count)
317 * - gray - not orphan, not marked as false positive (min_count == 0) or
318 * sufficient references to it (count >= min_count)
319 * - black - ignore, it doesn't contain references (e.g. text section)
320 * (min_count == -1). No function defined for this color.
321 * Newly created objects don't have any color assigned (object->count == -1)
322 * before the next memory scan when they become white.
323 */
4a558dd6 324static bool color_white(const struct kmemleak_object *object)
3c7b4e6b 325{
a1084c87
LR
326 return object->count != KMEMLEAK_BLACK &&
327 object->count < object->min_count;
3c7b4e6b
CM
328}
329
4a558dd6 330static bool color_gray(const struct kmemleak_object *object)
3c7b4e6b 331{
a1084c87
LR
332 return object->min_count != KMEMLEAK_BLACK &&
333 object->count >= object->min_count;
3c7b4e6b
CM
334}
335
3c7b4e6b
CM
336/*
337 * Objects are considered unreferenced only if their color is white, they have
338 * not be deleted and have a minimum age to avoid false positives caused by
339 * pointers temporarily stored in CPU registers.
340 */
4a558dd6 341static bool unreferenced_object(struct kmemleak_object *object)
3c7b4e6b 342{
04609ccc 343 return (color_white(object) && object->flags & OBJECT_ALLOCATED) &&
acf4968e
CM
344 time_before_eq(object->jiffies + jiffies_min_age,
345 jiffies_last_scan);
3c7b4e6b
CM
346}
347
348/*
bab4a34a
CM
349 * Printing of the unreferenced objects information to the seq file. The
350 * print_unreferenced function must be called with the object->lock held.
3c7b4e6b 351 */
3c7b4e6b
CM
352static void print_unreferenced(struct seq_file *seq,
353 struct kmemleak_object *object)
354{
355 int i;
fefdd336 356 unsigned int msecs_age = jiffies_to_msecs(jiffies - object->jiffies);
3c7b4e6b 357
bab4a34a
CM
358 seq_printf(seq, "unreferenced object 0x%08lx (size %zu):\n",
359 object->pointer, object->size);
fefdd336
CM
360 seq_printf(seq, " comm \"%s\", pid %d, jiffies %lu (age %d.%03ds)\n",
361 object->comm, object->pid, object->jiffies,
362 msecs_age / 1000, msecs_age % 1000);
0494e082 363 hex_dump_object(seq, object);
bab4a34a 364 seq_printf(seq, " backtrace:\n");
3c7b4e6b
CM
365
366 for (i = 0; i < object->trace_len; i++) {
367 void *ptr = (void *)object->trace[i];
bab4a34a 368 seq_printf(seq, " [<%p>] %pS\n", ptr, ptr);
3c7b4e6b
CM
369 }
370}
371
372/*
373 * Print the kmemleak_object information. This function is used mainly for
374 * debugging special cases when kmemleak operations. It must be called with
375 * the object->lock held.
376 */
377static void dump_object_info(struct kmemleak_object *object)
378{
379 struct stack_trace trace;
380
381 trace.nr_entries = object->trace_len;
382 trace.entries = object->trace;
383
ae281064 384 pr_notice("Object 0x%08lx (size %zu):\n",
85d3a316 385 object->pointer, object->size);
3c7b4e6b
CM
386 pr_notice(" comm \"%s\", pid %d, jiffies %lu\n",
387 object->comm, object->pid, object->jiffies);
388 pr_notice(" min_count = %d\n", object->min_count);
389 pr_notice(" count = %d\n", object->count);
189d84ed 390 pr_notice(" flags = 0x%lx\n", object->flags);
aae0ad7a 391 pr_notice(" checksum = %u\n", object->checksum);
3c7b4e6b
CM
392 pr_notice(" backtrace:\n");
393 print_stack_trace(&trace, 4);
394}
395
396/*
85d3a316 397 * Look-up a memory block metadata (kmemleak_object) in the object search
3c7b4e6b
CM
398 * tree based on a pointer value. If alias is 0, only values pointing to the
399 * beginning of the memory block are allowed. The kmemleak_lock must be held
400 * when calling this function.
401 */
402static struct kmemleak_object *lookup_object(unsigned long ptr, int alias)
403{
85d3a316
ML
404 struct rb_node *rb = object_tree_root.rb_node;
405
406 while (rb) {
407 struct kmemleak_object *object =
408 rb_entry(rb, struct kmemleak_object, rb_node);
409 if (ptr < object->pointer)
410 rb = object->rb_node.rb_left;
411 else if (object->pointer + object->size <= ptr)
412 rb = object->rb_node.rb_right;
413 else if (object->pointer == ptr || alias)
414 return object;
415 else {
5f79020c
CM
416 kmemleak_warn("Found object by alias at 0x%08lx\n",
417 ptr);
a7686a45 418 dump_object_info(object);
85d3a316 419 break;
3c7b4e6b 420 }
85d3a316
ML
421 }
422 return NULL;
3c7b4e6b
CM
423}
424
425/*
426 * Increment the object use_count. Return 1 if successful or 0 otherwise. Note
427 * that once an object's use_count reached 0, the RCU freeing was already
428 * registered and the object should no longer be used. This function must be
429 * called under the protection of rcu_read_lock().
430 */
431static int get_object(struct kmemleak_object *object)
432{
433 return atomic_inc_not_zero(&object->use_count);
434}
435
436/*
437 * RCU callback to free a kmemleak_object.
438 */
439static void free_object_rcu(struct rcu_head *rcu)
440{
b67bfe0d 441 struct hlist_node *tmp;
3c7b4e6b
CM
442 struct kmemleak_scan_area *area;
443 struct kmemleak_object *object =
444 container_of(rcu, struct kmemleak_object, rcu);
445
446 /*
447 * Once use_count is 0 (guaranteed by put_object), there is no other
448 * code accessing this object, hence no need for locking.
449 */
b67bfe0d
SL
450 hlist_for_each_entry_safe(area, tmp, &object->area_list, node) {
451 hlist_del(&area->node);
3c7b4e6b
CM
452 kmem_cache_free(scan_area_cache, area);
453 }
454 kmem_cache_free(object_cache, object);
455}
456
457/*
458 * Decrement the object use_count. Once the count is 0, free the object using
459 * an RCU callback. Since put_object() may be called via the kmemleak_free() ->
460 * delete_object() path, the delayed RCU freeing ensures that there is no
461 * recursive call to the kernel allocator. Lock-less RCU object_list traversal
462 * is also possible.
463 */
464static void put_object(struct kmemleak_object *object)
465{
466 if (!atomic_dec_and_test(&object->use_count))
467 return;
468
469 /* should only get here after delete_object was called */
470 WARN_ON(object->flags & OBJECT_ALLOCATED);
471
472 call_rcu(&object->rcu, free_object_rcu);
473}
474
475/*
85d3a316 476 * Look up an object in the object search tree and increase its use_count.
3c7b4e6b
CM
477 */
478static struct kmemleak_object *find_and_get_object(unsigned long ptr, int alias)
479{
480 unsigned long flags;
481 struct kmemleak_object *object = NULL;
482
483 rcu_read_lock();
484 read_lock_irqsave(&kmemleak_lock, flags);
485 if (ptr >= min_addr && ptr < max_addr)
486 object = lookup_object(ptr, alias);
487 read_unlock_irqrestore(&kmemleak_lock, flags);
488
489 /* check whether the object is still available */
490 if (object && !get_object(object))
491 object = NULL;
492 rcu_read_unlock();
493
494 return object;
495}
496
fd678967
CM
497/*
498 * Save stack trace to the given array of MAX_TRACE size.
499 */
500static int __save_stack_trace(unsigned long *trace)
501{
502 struct stack_trace stack_trace;
503
504 stack_trace.max_entries = MAX_TRACE;
505 stack_trace.nr_entries = 0;
506 stack_trace.entries = trace;
507 stack_trace.skip = 2;
508 save_stack_trace(&stack_trace);
509
510 return stack_trace.nr_entries;
511}
512
3c7b4e6b
CM
513/*
514 * Create the metadata (struct kmemleak_object) corresponding to an allocated
515 * memory block and add it to the object_list and object_tree_root.
516 */
fd678967
CM
517static struct kmemleak_object *create_object(unsigned long ptr, size_t size,
518 int min_count, gfp_t gfp)
3c7b4e6b
CM
519{
520 unsigned long flags;
85d3a316
ML
521 struct kmemleak_object *object, *parent;
522 struct rb_node **link, *rb_parent;
3c7b4e6b 523
6ae4bd1f 524 object = kmem_cache_alloc(object_cache, gfp_kmemleak_mask(gfp));
3c7b4e6b 525 if (!object) {
6ae4bd1f
CM
526 pr_warning("Cannot allocate a kmemleak_object structure\n");
527 kmemleak_disable();
fd678967 528 return NULL;
3c7b4e6b
CM
529 }
530
531 INIT_LIST_HEAD(&object->object_list);
532 INIT_LIST_HEAD(&object->gray_list);
533 INIT_HLIST_HEAD(&object->area_list);
534 spin_lock_init(&object->lock);
535 atomic_set(&object->use_count, 1);
04609ccc 536 object->flags = OBJECT_ALLOCATED;
3c7b4e6b
CM
537 object->pointer = ptr;
538 object->size = size;
539 object->min_count = min_count;
04609ccc 540 object->count = 0; /* white color initially */
3c7b4e6b 541 object->jiffies = jiffies;
04609ccc 542 object->checksum = 0;
3c7b4e6b
CM
543
544 /* task information */
545 if (in_irq()) {
546 object->pid = 0;
547 strncpy(object->comm, "hardirq", sizeof(object->comm));
548 } else if (in_softirq()) {
549 object->pid = 0;
550 strncpy(object->comm, "softirq", sizeof(object->comm));
551 } else {
552 object->pid = current->pid;
553 /*
554 * There is a small chance of a race with set_task_comm(),
555 * however using get_task_comm() here may cause locking
556 * dependency issues with current->alloc_lock. In the worst
557 * case, the command line is not correct.
558 */
559 strncpy(object->comm, current->comm, sizeof(object->comm));
560 }
561
562 /* kernel backtrace */
fd678967 563 object->trace_len = __save_stack_trace(object->trace);
3c7b4e6b 564
3c7b4e6b 565 write_lock_irqsave(&kmemleak_lock, flags);
0580a181 566
3c7b4e6b
CM
567 min_addr = min(min_addr, ptr);
568 max_addr = max(max_addr, ptr + size);
85d3a316
ML
569 link = &object_tree_root.rb_node;
570 rb_parent = NULL;
571 while (*link) {
572 rb_parent = *link;
573 parent = rb_entry(rb_parent, struct kmemleak_object, rb_node);
574 if (ptr + size <= parent->pointer)
575 link = &parent->rb_node.rb_left;
576 else if (parent->pointer + parent->size <= ptr)
577 link = &parent->rb_node.rb_right;
578 else {
579 kmemleak_stop("Cannot insert 0x%lx into the object "
580 "search tree (overlaps existing)\n",
581 ptr);
582 kmem_cache_free(object_cache, object);
583 object = parent;
584 spin_lock(&object->lock);
585 dump_object_info(object);
586 spin_unlock(&object->lock);
587 goto out;
588 }
3c7b4e6b 589 }
85d3a316
ML
590 rb_link_node(&object->rb_node, rb_parent, link);
591 rb_insert_color(&object->rb_node, &object_tree_root);
592
3c7b4e6b
CM
593 list_add_tail_rcu(&object->object_list, &object_list);
594out:
595 write_unlock_irqrestore(&kmemleak_lock, flags);
fd678967 596 return object;
3c7b4e6b
CM
597}
598
599/*
600 * Remove the metadata (struct kmemleak_object) for a memory block from the
601 * object_list and object_tree_root and decrement its use_count.
602 */
53238a60 603static void __delete_object(struct kmemleak_object *object)
3c7b4e6b
CM
604{
605 unsigned long flags;
3c7b4e6b
CM
606
607 write_lock_irqsave(&kmemleak_lock, flags);
85d3a316 608 rb_erase(&object->rb_node, &object_tree_root);
3c7b4e6b
CM
609 list_del_rcu(&object->object_list);
610 write_unlock_irqrestore(&kmemleak_lock, flags);
611
612 WARN_ON(!(object->flags & OBJECT_ALLOCATED));
53238a60 613 WARN_ON(atomic_read(&object->use_count) < 2);
3c7b4e6b
CM
614
615 /*
616 * Locking here also ensures that the corresponding memory block
617 * cannot be freed when it is being scanned.
618 */
619 spin_lock_irqsave(&object->lock, flags);
3c7b4e6b
CM
620 object->flags &= ~OBJECT_ALLOCATED;
621 spin_unlock_irqrestore(&object->lock, flags);
622 put_object(object);
623}
624
53238a60
CM
625/*
626 * Look up the metadata (struct kmemleak_object) corresponding to ptr and
627 * delete it.
628 */
629static void delete_object_full(unsigned long ptr)
630{
631 struct kmemleak_object *object;
632
633 object = find_and_get_object(ptr, 0);
634 if (!object) {
635#ifdef DEBUG
636 kmemleak_warn("Freeing unknown object at 0x%08lx\n",
637 ptr);
638#endif
639 return;
640 }
641 __delete_object(object);
642 put_object(object);
643}
644
645/*
646 * Look up the metadata (struct kmemleak_object) corresponding to ptr and
647 * delete it. If the memory block is partially freed, the function may create
648 * additional metadata for the remaining parts of the block.
649 */
650static void delete_object_part(unsigned long ptr, size_t size)
651{
652 struct kmemleak_object *object;
653 unsigned long start, end;
654
655 object = find_and_get_object(ptr, 1);
656 if (!object) {
657#ifdef DEBUG
658 kmemleak_warn("Partially freeing unknown object at 0x%08lx "
659 "(size %zu)\n", ptr, size);
660#endif
661 return;
662 }
663 __delete_object(object);
664
665 /*
666 * Create one or two objects that may result from the memory block
667 * split. Note that partial freeing is only done by free_bootmem() and
668 * this happens before kmemleak_init() is called. The path below is
669 * only executed during early log recording in kmemleak_init(), so
670 * GFP_KERNEL is enough.
671 */
672 start = object->pointer;
673 end = object->pointer + object->size;
674 if (ptr > start)
675 create_object(start, ptr - start, object->min_count,
676 GFP_KERNEL);
677 if (ptr + size < end)
678 create_object(ptr + size, end - ptr - size, object->min_count,
679 GFP_KERNEL);
680
681 put_object(object);
682}
a1084c87
LR
683
684static void __paint_it(struct kmemleak_object *object, int color)
685{
686 object->min_count = color;
687 if (color == KMEMLEAK_BLACK)
688 object->flags |= OBJECT_NO_SCAN;
689}
690
691static void paint_it(struct kmemleak_object *object, int color)
3c7b4e6b
CM
692{
693 unsigned long flags;
a1084c87
LR
694
695 spin_lock_irqsave(&object->lock, flags);
696 __paint_it(object, color);
697 spin_unlock_irqrestore(&object->lock, flags);
698}
699
700static void paint_ptr(unsigned long ptr, int color)
701{
3c7b4e6b
CM
702 struct kmemleak_object *object;
703
704 object = find_and_get_object(ptr, 0);
705 if (!object) {
a1084c87
LR
706 kmemleak_warn("Trying to color unknown object "
707 "at 0x%08lx as %s\n", ptr,
708 (color == KMEMLEAK_GREY) ? "Grey" :
709 (color == KMEMLEAK_BLACK) ? "Black" : "Unknown");
3c7b4e6b
CM
710 return;
711 }
a1084c87 712 paint_it(object, color);
3c7b4e6b
CM
713 put_object(object);
714}
715
a1084c87 716/*
145b64b9 717 * Mark an object permanently as gray-colored so that it can no longer be
a1084c87
LR
718 * reported as a leak. This is used in general to mark a false positive.
719 */
720static void make_gray_object(unsigned long ptr)
721{
722 paint_ptr(ptr, KMEMLEAK_GREY);
723}
724
3c7b4e6b
CM
725/*
726 * Mark the object as black-colored so that it is ignored from scans and
727 * reporting.
728 */
729static void make_black_object(unsigned long ptr)
730{
a1084c87 731 paint_ptr(ptr, KMEMLEAK_BLACK);
3c7b4e6b
CM
732}
733
734/*
735 * Add a scanning area to the object. If at least one such area is added,
736 * kmemleak will only scan these ranges rather than the whole memory block.
737 */
c017b4be 738static void add_scan_area(unsigned long ptr, size_t size, gfp_t gfp)
3c7b4e6b
CM
739{
740 unsigned long flags;
741 struct kmemleak_object *object;
742 struct kmemleak_scan_area *area;
743
c017b4be 744 object = find_and_get_object(ptr, 1);
3c7b4e6b 745 if (!object) {
ae281064
JP
746 kmemleak_warn("Adding scan area to unknown object at 0x%08lx\n",
747 ptr);
3c7b4e6b
CM
748 return;
749 }
750
6ae4bd1f 751 area = kmem_cache_alloc(scan_area_cache, gfp_kmemleak_mask(gfp));
3c7b4e6b 752 if (!area) {
6ae4bd1f 753 pr_warning("Cannot allocate a scan area\n");
3c7b4e6b
CM
754 goto out;
755 }
756
757 spin_lock_irqsave(&object->lock, flags);
7f88f88f
CM
758 if (size == SIZE_MAX) {
759 size = object->pointer + object->size - ptr;
760 } else if (ptr + size > object->pointer + object->size) {
ae281064 761 kmemleak_warn("Scan area larger than object 0x%08lx\n", ptr);
3c7b4e6b
CM
762 dump_object_info(object);
763 kmem_cache_free(scan_area_cache, area);
764 goto out_unlock;
765 }
766
767 INIT_HLIST_NODE(&area->node);
c017b4be
CM
768 area->start = ptr;
769 area->size = size;
3c7b4e6b
CM
770
771 hlist_add_head(&area->node, &object->area_list);
772out_unlock:
773 spin_unlock_irqrestore(&object->lock, flags);
774out:
775 put_object(object);
776}
777
778/*
779 * Set the OBJECT_NO_SCAN flag for the object corresponding to the give
780 * pointer. Such object will not be scanned by kmemleak but references to it
781 * are searched.
782 */
783static void object_no_scan(unsigned long ptr)
784{
785 unsigned long flags;
786 struct kmemleak_object *object;
787
788 object = find_and_get_object(ptr, 0);
789 if (!object) {
ae281064 790 kmemleak_warn("Not scanning unknown object at 0x%08lx\n", ptr);
3c7b4e6b
CM
791 return;
792 }
793
794 spin_lock_irqsave(&object->lock, flags);
795 object->flags |= OBJECT_NO_SCAN;
796 spin_unlock_irqrestore(&object->lock, flags);
797 put_object(object);
798}
799
800/*
801 * Log an early kmemleak_* call to the early_log buffer. These calls will be
802 * processed later once kmemleak is fully initialized.
803 */
a6186d89 804static void __init log_early(int op_type, const void *ptr, size_t size,
c017b4be 805 int min_count)
3c7b4e6b
CM
806{
807 unsigned long flags;
808 struct early_log *log;
809
8910ae89 810 if (kmemleak_error) {
b6693005
CM
811 /* kmemleak stopped recording, just count the requests */
812 crt_early_log++;
813 return;
814 }
815
3c7b4e6b 816 if (crt_early_log >= ARRAY_SIZE(early_log)) {
a9d9058a 817 kmemleak_disable();
3c7b4e6b
CM
818 return;
819 }
820
821 /*
822 * There is no need for locking since the kernel is still in UP mode
823 * at this stage. Disabling the IRQs is enough.
824 */
825 local_irq_save(flags);
826 log = &early_log[crt_early_log];
827 log->op_type = op_type;
828 log->ptr = ptr;
829 log->size = size;
830 log->min_count = min_count;
5f79020c 831 log->trace_len = __save_stack_trace(log->trace);
3c7b4e6b
CM
832 crt_early_log++;
833 local_irq_restore(flags);
834}
835
fd678967
CM
836/*
837 * Log an early allocated block and populate the stack trace.
838 */
839static void early_alloc(struct early_log *log)
840{
841 struct kmemleak_object *object;
842 unsigned long flags;
843 int i;
844
8910ae89 845 if (!kmemleak_enabled || !log->ptr || IS_ERR(log->ptr))
fd678967
CM
846 return;
847
848 /*
849 * RCU locking needed to ensure object is not freed via put_object().
850 */
851 rcu_read_lock();
852 object = create_object((unsigned long)log->ptr, log->size,
c1bcd6b3 853 log->min_count, GFP_ATOMIC);
0d5d1aad
CM
854 if (!object)
855 goto out;
fd678967
CM
856 spin_lock_irqsave(&object->lock, flags);
857 for (i = 0; i < log->trace_len; i++)
858 object->trace[i] = log->trace[i];
859 object->trace_len = log->trace_len;
860 spin_unlock_irqrestore(&object->lock, flags);
0d5d1aad 861out:
fd678967
CM
862 rcu_read_unlock();
863}
864
f528f0b8
CM
865/*
866 * Log an early allocated block and populate the stack trace.
867 */
868static void early_alloc_percpu(struct early_log *log)
869{
870 unsigned int cpu;
871 const void __percpu *ptr = log->ptr;
872
873 for_each_possible_cpu(cpu) {
874 log->ptr = per_cpu_ptr(ptr, cpu);
875 early_alloc(log);
876 }
877}
878
a2b6bf63
CM
879/**
880 * kmemleak_alloc - register a newly allocated object
881 * @ptr: pointer to beginning of the object
882 * @size: size of the object
883 * @min_count: minimum number of references to this object. If during memory
884 * scanning a number of references less than @min_count is found,
885 * the object is reported as a memory leak. If @min_count is 0,
886 * the object is never reported as a leak. If @min_count is -1,
887 * the object is ignored (not scanned and not reported as a leak)
888 * @gfp: kmalloc() flags used for kmemleak internal memory allocations
889 *
890 * This function is called from the kernel allocators when a new object
891 * (memory block) is allocated (kmem_cache_alloc, kmalloc, vmalloc etc.).
3c7b4e6b 892 */
a6186d89
CM
893void __ref kmemleak_alloc(const void *ptr, size_t size, int min_count,
894 gfp_t gfp)
3c7b4e6b
CM
895{
896 pr_debug("%s(0x%p, %zu, %d)\n", __func__, ptr, size, min_count);
897
8910ae89 898 if (kmemleak_enabled && ptr && !IS_ERR(ptr))
3c7b4e6b 899 create_object((unsigned long)ptr, size, min_count, gfp);
8910ae89 900 else if (kmemleak_early_log)
c017b4be 901 log_early(KMEMLEAK_ALLOC, ptr, size, min_count);
3c7b4e6b
CM
902}
903EXPORT_SYMBOL_GPL(kmemleak_alloc);
904
f528f0b8
CM
905/**
906 * kmemleak_alloc_percpu - register a newly allocated __percpu object
907 * @ptr: __percpu pointer to beginning of the object
908 * @size: size of the object
909 *
910 * This function is called from the kernel percpu allocator when a new object
911 * (memory block) is allocated (alloc_percpu). It assumes GFP_KERNEL
912 * allocation.
913 */
914void __ref kmemleak_alloc_percpu(const void __percpu *ptr, size_t size)
915{
916 unsigned int cpu;
917
918 pr_debug("%s(0x%p, %zu)\n", __func__, ptr, size);
919
920 /*
921 * Percpu allocations are only scanned and not reported as leaks
922 * (min_count is set to 0).
923 */
8910ae89 924 if (kmemleak_enabled && ptr && !IS_ERR(ptr))
f528f0b8
CM
925 for_each_possible_cpu(cpu)
926 create_object((unsigned long)per_cpu_ptr(ptr, cpu),
927 size, 0, GFP_KERNEL);
8910ae89 928 else if (kmemleak_early_log)
f528f0b8
CM
929 log_early(KMEMLEAK_ALLOC_PERCPU, ptr, size, 0);
930}
931EXPORT_SYMBOL_GPL(kmemleak_alloc_percpu);
932
a2b6bf63
CM
933/**
934 * kmemleak_free - unregister a previously registered object
935 * @ptr: pointer to beginning of the object
936 *
937 * This function is called from the kernel allocators when an object (memory
938 * block) is freed (kmem_cache_free, kfree, vfree etc.).
3c7b4e6b 939 */
a6186d89 940void __ref kmemleak_free(const void *ptr)
3c7b4e6b
CM
941{
942 pr_debug("%s(0x%p)\n", __func__, ptr);
943
8910ae89 944 if (kmemleak_enabled && ptr && !IS_ERR(ptr))
53238a60 945 delete_object_full((unsigned long)ptr);
8910ae89 946 else if (kmemleak_early_log)
c017b4be 947 log_early(KMEMLEAK_FREE, ptr, 0, 0);
3c7b4e6b
CM
948}
949EXPORT_SYMBOL_GPL(kmemleak_free);
950
a2b6bf63
CM
951/**
952 * kmemleak_free_part - partially unregister a previously registered object
953 * @ptr: pointer to the beginning or inside the object. This also
954 * represents the start of the range to be freed
955 * @size: size to be unregistered
956 *
957 * This function is called when only a part of a memory block is freed
958 * (usually from the bootmem allocator).
53238a60 959 */
a6186d89 960void __ref kmemleak_free_part(const void *ptr, size_t size)
53238a60
CM
961{
962 pr_debug("%s(0x%p)\n", __func__, ptr);
963
8910ae89 964 if (kmemleak_enabled && ptr && !IS_ERR(ptr))
53238a60 965 delete_object_part((unsigned long)ptr, size);
8910ae89 966 else if (kmemleak_early_log)
c017b4be 967 log_early(KMEMLEAK_FREE_PART, ptr, size, 0);
53238a60
CM
968}
969EXPORT_SYMBOL_GPL(kmemleak_free_part);
970
f528f0b8
CM
971/**
972 * kmemleak_free_percpu - unregister a previously registered __percpu object
973 * @ptr: __percpu pointer to beginning of the object
974 *
975 * This function is called from the kernel percpu allocator when an object
976 * (memory block) is freed (free_percpu).
977 */
978void __ref kmemleak_free_percpu(const void __percpu *ptr)
979{
980 unsigned int cpu;
981
982 pr_debug("%s(0x%p)\n", __func__, ptr);
983
8910ae89 984 if (kmemleak_enabled && ptr && !IS_ERR(ptr))
f528f0b8
CM
985 for_each_possible_cpu(cpu)
986 delete_object_full((unsigned long)per_cpu_ptr(ptr,
987 cpu));
8910ae89 988 else if (kmemleak_early_log)
f528f0b8
CM
989 log_early(KMEMLEAK_FREE_PERCPU, ptr, 0, 0);
990}
991EXPORT_SYMBOL_GPL(kmemleak_free_percpu);
992
ffe2c748
CM
993/**
994 * kmemleak_update_trace - update object allocation stack trace
995 * @ptr: pointer to beginning of the object
996 *
997 * Override the object allocation stack trace for cases where the actual
998 * allocation place is not always useful.
999 */
1000void __ref kmemleak_update_trace(const void *ptr)
1001{
1002 struct kmemleak_object *object;
1003 unsigned long flags;
1004
1005 pr_debug("%s(0x%p)\n", __func__, ptr);
1006
1007 if (!kmemleak_enabled || IS_ERR_OR_NULL(ptr))
1008 return;
1009
1010 object = find_and_get_object((unsigned long)ptr, 1);
1011 if (!object) {
1012#ifdef DEBUG
1013 kmemleak_warn("Updating stack trace for unknown object at %p\n",
1014 ptr);
1015#endif
1016 return;
1017 }
1018
1019 spin_lock_irqsave(&object->lock, flags);
1020 object->trace_len = __save_stack_trace(object->trace);
1021 spin_unlock_irqrestore(&object->lock, flags);
1022
1023 put_object(object);
1024}
1025EXPORT_SYMBOL(kmemleak_update_trace);
1026
a2b6bf63
CM
1027/**
1028 * kmemleak_not_leak - mark an allocated object as false positive
1029 * @ptr: pointer to beginning of the object
1030 *
1031 * Calling this function on an object will cause the memory block to no longer
1032 * be reported as leak and always be scanned.
3c7b4e6b 1033 */
a6186d89 1034void __ref kmemleak_not_leak(const void *ptr)
3c7b4e6b
CM
1035{
1036 pr_debug("%s(0x%p)\n", __func__, ptr);
1037
8910ae89 1038 if (kmemleak_enabled && ptr && !IS_ERR(ptr))
3c7b4e6b 1039 make_gray_object((unsigned long)ptr);
8910ae89 1040 else if (kmemleak_early_log)
c017b4be 1041 log_early(KMEMLEAK_NOT_LEAK, ptr, 0, 0);
3c7b4e6b
CM
1042}
1043EXPORT_SYMBOL(kmemleak_not_leak);
1044
a2b6bf63
CM
1045/**
1046 * kmemleak_ignore - ignore an allocated object
1047 * @ptr: pointer to beginning of the object
1048 *
1049 * Calling this function on an object will cause the memory block to be
1050 * ignored (not scanned and not reported as a leak). This is usually done when
1051 * it is known that the corresponding block is not a leak and does not contain
1052 * any references to other allocated memory blocks.
3c7b4e6b 1053 */
a6186d89 1054void __ref kmemleak_ignore(const void *ptr)
3c7b4e6b
CM
1055{
1056 pr_debug("%s(0x%p)\n", __func__, ptr);
1057
8910ae89 1058 if (kmemleak_enabled && ptr && !IS_ERR(ptr))
3c7b4e6b 1059 make_black_object((unsigned long)ptr);
8910ae89 1060 else if (kmemleak_early_log)
c017b4be 1061 log_early(KMEMLEAK_IGNORE, ptr, 0, 0);
3c7b4e6b
CM
1062}
1063EXPORT_SYMBOL(kmemleak_ignore);
1064
a2b6bf63
CM
1065/**
1066 * kmemleak_scan_area - limit the range to be scanned in an allocated object
1067 * @ptr: pointer to beginning or inside the object. This also
1068 * represents the start of the scan area
1069 * @size: size of the scan area
1070 * @gfp: kmalloc() flags used for kmemleak internal memory allocations
1071 *
1072 * This function is used when it is known that only certain parts of an object
1073 * contain references to other objects. Kmemleak will only scan these areas
1074 * reducing the number false negatives.
3c7b4e6b 1075 */
c017b4be 1076void __ref kmemleak_scan_area(const void *ptr, size_t size, gfp_t gfp)
3c7b4e6b
CM
1077{
1078 pr_debug("%s(0x%p)\n", __func__, ptr);
1079
8910ae89 1080 if (kmemleak_enabled && ptr && size && !IS_ERR(ptr))
c017b4be 1081 add_scan_area((unsigned long)ptr, size, gfp);
8910ae89 1082 else if (kmemleak_early_log)
c017b4be 1083 log_early(KMEMLEAK_SCAN_AREA, ptr, size, 0);
3c7b4e6b
CM
1084}
1085EXPORT_SYMBOL(kmemleak_scan_area);
1086
a2b6bf63
CM
1087/**
1088 * kmemleak_no_scan - do not scan an allocated object
1089 * @ptr: pointer to beginning of the object
1090 *
1091 * This function notifies kmemleak not to scan the given memory block. Useful
1092 * in situations where it is known that the given object does not contain any
1093 * references to other objects. Kmemleak will not scan such objects reducing
1094 * the number of false negatives.
3c7b4e6b 1095 */
a6186d89 1096void __ref kmemleak_no_scan(const void *ptr)
3c7b4e6b
CM
1097{
1098 pr_debug("%s(0x%p)\n", __func__, ptr);
1099
8910ae89 1100 if (kmemleak_enabled && ptr && !IS_ERR(ptr))
3c7b4e6b 1101 object_no_scan((unsigned long)ptr);
8910ae89 1102 else if (kmemleak_early_log)
c017b4be 1103 log_early(KMEMLEAK_NO_SCAN, ptr, 0, 0);
3c7b4e6b
CM
1104}
1105EXPORT_SYMBOL(kmemleak_no_scan);
1106
04609ccc
CM
1107/*
1108 * Update an object's checksum and return true if it was modified.
1109 */
1110static bool update_checksum(struct kmemleak_object *object)
1111{
1112 u32 old_csum = object->checksum;
1113
1114 if (!kmemcheck_is_obj_initialized(object->pointer, object->size))
1115 return false;
1116
e79ed2f1 1117 kasan_disable_current();
04609ccc 1118 object->checksum = crc32(0, (void *)object->pointer, object->size);
e79ed2f1
AR
1119 kasan_enable_current();
1120
04609ccc
CM
1121 return object->checksum != old_csum;
1122}
1123
3c7b4e6b
CM
1124/*
1125 * Memory scanning is a long process and it needs to be interruptable. This
25985edc 1126 * function checks whether such interrupt condition occurred.
3c7b4e6b
CM
1127 */
1128static int scan_should_stop(void)
1129{
8910ae89 1130 if (!kmemleak_enabled)
3c7b4e6b
CM
1131 return 1;
1132
1133 /*
1134 * This function may be called from either process or kthread context,
1135 * hence the need to check for both stop conditions.
1136 */
1137 if (current->mm)
1138 return signal_pending(current);
1139 else
1140 return kthread_should_stop();
1141
1142 return 0;
1143}
1144
1145/*
1146 * Scan a memory block (exclusive range) for valid pointers and add those
1147 * found to the gray list.
1148 */
1149static void scan_block(void *_start, void *_end,
4b8a9674 1150 struct kmemleak_object *scanned, int allow_resched)
3c7b4e6b
CM
1151{
1152 unsigned long *ptr;
1153 unsigned long *start = PTR_ALIGN(_start, BYTES_PER_POINTER);
1154 unsigned long *end = _end - (BYTES_PER_POINTER - 1);
1155
1156 for (ptr = start; ptr < end; ptr++) {
3c7b4e6b 1157 struct kmemleak_object *object;
8e019366
PE
1158 unsigned long flags;
1159 unsigned long pointer;
3c7b4e6b 1160
4b8a9674
CM
1161 if (allow_resched)
1162 cond_resched();
3c7b4e6b
CM
1163 if (scan_should_stop())
1164 break;
1165
8e019366
PE
1166 /* don't scan uninitialized memory */
1167 if (!kmemcheck_is_obj_initialized((unsigned long)ptr,
1168 BYTES_PER_POINTER))
1169 continue;
1170
e79ed2f1 1171 kasan_disable_current();
8e019366 1172 pointer = *ptr;
e79ed2f1 1173 kasan_enable_current();
8e019366 1174
3c7b4e6b
CM
1175 object = find_and_get_object(pointer, 1);
1176 if (!object)
1177 continue;
1178 if (object == scanned) {
1179 /* self referenced, ignore */
1180 put_object(object);
1181 continue;
1182 }
1183
1184 /*
1185 * Avoid the lockdep recursive warning on object->lock being
1186 * previously acquired in scan_object(). These locks are
1187 * enclosed by scan_mutex.
1188 */
1189 spin_lock_irqsave_nested(&object->lock, flags,
1190 SINGLE_DEPTH_NESTING);
1191 if (!color_white(object)) {
1192 /* non-orphan, ignored or new */
1193 spin_unlock_irqrestore(&object->lock, flags);
1194 put_object(object);
1195 continue;
1196 }
1197
1198 /*
1199 * Increase the object's reference count (number of pointers
1200 * to the memory block). If this count reaches the required
1201 * minimum, the object's color will become gray and it will be
1202 * added to the gray_list.
1203 */
1204 object->count++;
0587da40 1205 if (color_gray(object)) {
3c7b4e6b 1206 list_add_tail(&object->gray_list, &gray_list);
0587da40
CM
1207 spin_unlock_irqrestore(&object->lock, flags);
1208 continue;
1209 }
1210
3c7b4e6b 1211 spin_unlock_irqrestore(&object->lock, flags);
0587da40 1212 put_object(object);
3c7b4e6b
CM
1213 }
1214}
1215
1216/*
1217 * Scan a memory block corresponding to a kmemleak_object. A condition is
1218 * that object->use_count >= 1.
1219 */
1220static void scan_object(struct kmemleak_object *object)
1221{
1222 struct kmemleak_scan_area *area;
3c7b4e6b
CM
1223 unsigned long flags;
1224
1225 /*
21ae2956
UKK
1226 * Once the object->lock is acquired, the corresponding memory block
1227 * cannot be freed (the same lock is acquired in delete_object).
3c7b4e6b
CM
1228 */
1229 spin_lock_irqsave(&object->lock, flags);
1230 if (object->flags & OBJECT_NO_SCAN)
1231 goto out;
1232 if (!(object->flags & OBJECT_ALLOCATED))
1233 /* already freed object */
1234 goto out;
af98603d
CM
1235 if (hlist_empty(&object->area_list)) {
1236 void *start = (void *)object->pointer;
1237 void *end = (void *)(object->pointer + object->size);
1238
1239 while (start < end && (object->flags & OBJECT_ALLOCATED) &&
1240 !(object->flags & OBJECT_NO_SCAN)) {
1241 scan_block(start, min(start + MAX_SCAN_SIZE, end),
1242 object, 0);
1243 start += MAX_SCAN_SIZE;
1244
1245 spin_unlock_irqrestore(&object->lock, flags);
1246 cond_resched();
1247 spin_lock_irqsave(&object->lock, flags);
1248 }
1249 } else
b67bfe0d 1250 hlist_for_each_entry(area, &object->area_list, node)
c017b4be
CM
1251 scan_block((void *)area->start,
1252 (void *)(area->start + area->size),
1253 object, 0);
3c7b4e6b
CM
1254out:
1255 spin_unlock_irqrestore(&object->lock, flags);
1256}
1257
04609ccc
CM
1258/*
1259 * Scan the objects already referenced (gray objects). More objects will be
1260 * referenced and, if there are no memory leaks, all the objects are scanned.
1261 */
1262static void scan_gray_list(void)
1263{
1264 struct kmemleak_object *object, *tmp;
1265
1266 /*
1267 * The list traversal is safe for both tail additions and removals
1268 * from inside the loop. The kmemleak objects cannot be freed from
1269 * outside the loop because their use_count was incremented.
1270 */
1271 object = list_entry(gray_list.next, typeof(*object), gray_list);
1272 while (&object->gray_list != &gray_list) {
1273 cond_resched();
1274
1275 /* may add new objects to the list */
1276 if (!scan_should_stop())
1277 scan_object(object);
1278
1279 tmp = list_entry(object->gray_list.next, typeof(*object),
1280 gray_list);
1281
1282 /* remove the object from the list and release it */
1283 list_del(&object->gray_list);
1284 put_object(object);
1285
1286 object = tmp;
1287 }
1288 WARN_ON(!list_empty(&gray_list));
1289}
1290
3c7b4e6b
CM
1291/*
1292 * Scan data sections and all the referenced memory blocks allocated via the
1293 * kernel's standard allocators. This function must be called with the
1294 * scan_mutex held.
1295 */
1296static void kmemleak_scan(void)
1297{
1298 unsigned long flags;
04609ccc 1299 struct kmemleak_object *object;
3c7b4e6b 1300 int i;
4698c1f2 1301 int new_leaks = 0;
3c7b4e6b 1302
acf4968e
CM
1303 jiffies_last_scan = jiffies;
1304
3c7b4e6b
CM
1305 /* prepare the kmemleak_object's */
1306 rcu_read_lock();
1307 list_for_each_entry_rcu(object, &object_list, object_list) {
1308 spin_lock_irqsave(&object->lock, flags);
1309#ifdef DEBUG
1310 /*
1311 * With a few exceptions there should be a maximum of
1312 * 1 reference to any object at this point.
1313 */
1314 if (atomic_read(&object->use_count) > 1) {
ae281064 1315 pr_debug("object->use_count = %d\n",
3c7b4e6b
CM
1316 atomic_read(&object->use_count));
1317 dump_object_info(object);
1318 }
1319#endif
1320 /* reset the reference count (whiten the object) */
1321 object->count = 0;
1322 if (color_gray(object) && get_object(object))
1323 list_add_tail(&object->gray_list, &gray_list);
1324
1325 spin_unlock_irqrestore(&object->lock, flags);
1326 }
1327 rcu_read_unlock();
1328
1329 /* data/bss scanning */
4b8a9674
CM
1330 scan_block(_sdata, _edata, NULL, 1);
1331 scan_block(__bss_start, __bss_stop, NULL, 1);
3c7b4e6b
CM
1332
1333#ifdef CONFIG_SMP
1334 /* per-cpu sections scanning */
1335 for_each_possible_cpu(i)
1336 scan_block(__per_cpu_start + per_cpu_offset(i),
4b8a9674 1337 __per_cpu_end + per_cpu_offset(i), NULL, 1);
3c7b4e6b
CM
1338#endif
1339
1340 /*
029aeff5 1341 * Struct page scanning for each node.
3c7b4e6b 1342 */
bfc8c901 1343 get_online_mems();
3c7b4e6b 1344 for_each_online_node(i) {
108bcc96
CS
1345 unsigned long start_pfn = node_start_pfn(i);
1346 unsigned long end_pfn = node_end_pfn(i);
3c7b4e6b
CM
1347 unsigned long pfn;
1348
1349 for (pfn = start_pfn; pfn < end_pfn; pfn++) {
1350 struct page *page;
1351
1352 if (!pfn_valid(pfn))
1353 continue;
1354 page = pfn_to_page(pfn);
1355 /* only scan if page is in use */
1356 if (page_count(page) == 0)
1357 continue;
4b8a9674 1358 scan_block(page, page + 1, NULL, 1);
3c7b4e6b
CM
1359 }
1360 }
bfc8c901 1361 put_online_mems();
3c7b4e6b
CM
1362
1363 /*
43ed5d6e 1364 * Scanning the task stacks (may introduce false negatives).
3c7b4e6b
CM
1365 */
1366 if (kmemleak_stack_scan) {
43ed5d6e
CM
1367 struct task_struct *p, *g;
1368
3c7b4e6b 1369 read_lock(&tasklist_lock);
43ed5d6e
CM
1370 do_each_thread(g, p) {
1371 scan_block(task_stack_page(p), task_stack_page(p) +
1372 THREAD_SIZE, NULL, 0);
1373 } while_each_thread(g, p);
3c7b4e6b
CM
1374 read_unlock(&tasklist_lock);
1375 }
1376
1377 /*
1378 * Scan the objects already referenced from the sections scanned
04609ccc 1379 * above.
3c7b4e6b 1380 */
04609ccc 1381 scan_gray_list();
2587362e
CM
1382
1383 /*
04609ccc
CM
1384 * Check for new or unreferenced objects modified since the previous
1385 * scan and color them gray until the next scan.
2587362e
CM
1386 */
1387 rcu_read_lock();
1388 list_for_each_entry_rcu(object, &object_list, object_list) {
1389 spin_lock_irqsave(&object->lock, flags);
04609ccc
CM
1390 if (color_white(object) && (object->flags & OBJECT_ALLOCATED)
1391 && update_checksum(object) && get_object(object)) {
1392 /* color it gray temporarily */
1393 object->count = object->min_count;
2587362e
CM
1394 list_add_tail(&object->gray_list, &gray_list);
1395 }
1396 spin_unlock_irqrestore(&object->lock, flags);
1397 }
1398 rcu_read_unlock();
1399
04609ccc
CM
1400 /*
1401 * Re-scan the gray list for modified unreferenced objects.
1402 */
1403 scan_gray_list();
4698c1f2 1404
17bb9e0d 1405 /*
04609ccc 1406 * If scanning was stopped do not report any new unreferenced objects.
17bb9e0d 1407 */
04609ccc 1408 if (scan_should_stop())
17bb9e0d
CM
1409 return;
1410
4698c1f2
CM
1411 /*
1412 * Scanning result reporting.
1413 */
1414 rcu_read_lock();
1415 list_for_each_entry_rcu(object, &object_list, object_list) {
1416 spin_lock_irqsave(&object->lock, flags);
1417 if (unreferenced_object(object) &&
1418 !(object->flags & OBJECT_REPORTED)) {
1419 object->flags |= OBJECT_REPORTED;
1420 new_leaks++;
1421 }
1422 spin_unlock_irqrestore(&object->lock, flags);
1423 }
1424 rcu_read_unlock();
1425
dc9b3f42
LZ
1426 if (new_leaks) {
1427 kmemleak_found_leaks = true;
1428
4698c1f2
CM
1429 pr_info("%d new suspected memory leaks (see "
1430 "/sys/kernel/debug/kmemleak)\n", new_leaks);
dc9b3f42 1431 }
4698c1f2 1432
3c7b4e6b
CM
1433}
1434
1435/*
1436 * Thread function performing automatic memory scanning. Unreferenced objects
1437 * at the end of a memory scan are reported but only the first time.
1438 */
1439static int kmemleak_scan_thread(void *arg)
1440{
1441 static int first_run = 1;
1442
ae281064 1443 pr_info("Automatic memory scanning thread started\n");
bf2a76b3 1444 set_user_nice(current, 10);
3c7b4e6b
CM
1445
1446 /*
1447 * Wait before the first scan to allow the system to fully initialize.
1448 */
1449 if (first_run) {
1450 first_run = 0;
1451 ssleep(SECS_FIRST_SCAN);
1452 }
1453
1454 while (!kthread_should_stop()) {
3c7b4e6b
CM
1455 signed long timeout = jiffies_scan_wait;
1456
1457 mutex_lock(&scan_mutex);
3c7b4e6b 1458 kmemleak_scan();
3c7b4e6b 1459 mutex_unlock(&scan_mutex);
4698c1f2 1460
3c7b4e6b
CM
1461 /* wait before the next scan */
1462 while (timeout && !kthread_should_stop())
1463 timeout = schedule_timeout_interruptible(timeout);
1464 }
1465
ae281064 1466 pr_info("Automatic memory scanning thread ended\n");
3c7b4e6b
CM
1467
1468 return 0;
1469}
1470
1471/*
1472 * Start the automatic memory scanning thread. This function must be called
4698c1f2 1473 * with the scan_mutex held.
3c7b4e6b 1474 */
7eb0d5e5 1475static void start_scan_thread(void)
3c7b4e6b
CM
1476{
1477 if (scan_thread)
1478 return;
1479 scan_thread = kthread_run(kmemleak_scan_thread, NULL, "kmemleak");
1480 if (IS_ERR(scan_thread)) {
ae281064 1481 pr_warning("Failed to create the scan thread\n");
3c7b4e6b
CM
1482 scan_thread = NULL;
1483 }
1484}
1485
1486/*
1487 * Stop the automatic memory scanning thread. This function must be called
4698c1f2 1488 * with the scan_mutex held.
3c7b4e6b 1489 */
7eb0d5e5 1490static void stop_scan_thread(void)
3c7b4e6b
CM
1491{
1492 if (scan_thread) {
1493 kthread_stop(scan_thread);
1494 scan_thread = NULL;
1495 }
1496}
1497
1498/*
1499 * Iterate over the object_list and return the first valid object at or after
1500 * the required position with its use_count incremented. The function triggers
1501 * a memory scanning when the pos argument points to the first position.
1502 */
1503static void *kmemleak_seq_start(struct seq_file *seq, loff_t *pos)
1504{
1505 struct kmemleak_object *object;
1506 loff_t n = *pos;
b87324d0
CM
1507 int err;
1508
1509 err = mutex_lock_interruptible(&scan_mutex);
1510 if (err < 0)
1511 return ERR_PTR(err);
3c7b4e6b 1512
3c7b4e6b
CM
1513 rcu_read_lock();
1514 list_for_each_entry_rcu(object, &object_list, object_list) {
1515 if (n-- > 0)
1516 continue;
1517 if (get_object(object))
1518 goto out;
1519 }
1520 object = NULL;
1521out:
3c7b4e6b
CM
1522 return object;
1523}
1524
1525/*
1526 * Return the next object in the object_list. The function decrements the
1527 * use_count of the previous object and increases that of the next one.
1528 */
1529static void *kmemleak_seq_next(struct seq_file *seq, void *v, loff_t *pos)
1530{
1531 struct kmemleak_object *prev_obj = v;
1532 struct kmemleak_object *next_obj = NULL;
58fac095 1533 struct kmemleak_object *obj = prev_obj;
3c7b4e6b
CM
1534
1535 ++(*pos);
3c7b4e6b 1536
58fac095 1537 list_for_each_entry_continue_rcu(obj, &object_list, object_list) {
52c3ce4e
CM
1538 if (get_object(obj)) {
1539 next_obj = obj;
3c7b4e6b 1540 break;
52c3ce4e 1541 }
3c7b4e6b 1542 }
288c857d 1543
3c7b4e6b
CM
1544 put_object(prev_obj);
1545 return next_obj;
1546}
1547
1548/*
1549 * Decrement the use_count of the last object required, if any.
1550 */
1551static void kmemleak_seq_stop(struct seq_file *seq, void *v)
1552{
b87324d0
CM
1553 if (!IS_ERR(v)) {
1554 /*
1555 * kmemleak_seq_start may return ERR_PTR if the scan_mutex
1556 * waiting was interrupted, so only release it if !IS_ERR.
1557 */
f5886c7f 1558 rcu_read_unlock();
b87324d0
CM
1559 mutex_unlock(&scan_mutex);
1560 if (v)
1561 put_object(v);
1562 }
3c7b4e6b
CM
1563}
1564
1565/*
1566 * Print the information for an unreferenced object to the seq file.
1567 */
1568static int kmemleak_seq_show(struct seq_file *seq, void *v)
1569{
1570 struct kmemleak_object *object = v;
1571 unsigned long flags;
1572
1573 spin_lock_irqsave(&object->lock, flags);
288c857d 1574 if ((object->flags & OBJECT_REPORTED) && unreferenced_object(object))
17bb9e0d 1575 print_unreferenced(seq, object);
3c7b4e6b
CM
1576 spin_unlock_irqrestore(&object->lock, flags);
1577 return 0;
1578}
1579
1580static const struct seq_operations kmemleak_seq_ops = {
1581 .start = kmemleak_seq_start,
1582 .next = kmemleak_seq_next,
1583 .stop = kmemleak_seq_stop,
1584 .show = kmemleak_seq_show,
1585};
1586
1587static int kmemleak_open(struct inode *inode, struct file *file)
1588{
b87324d0 1589 return seq_open(file, &kmemleak_seq_ops);
3c7b4e6b
CM
1590}
1591
189d84ed
CM
1592static int dump_str_object_info(const char *str)
1593{
1594 unsigned long flags;
1595 struct kmemleak_object *object;
1596 unsigned long addr;
1597
dc053733
AP
1598 if (kstrtoul(str, 0, &addr))
1599 return -EINVAL;
189d84ed
CM
1600 object = find_and_get_object(addr, 0);
1601 if (!object) {
1602 pr_info("Unknown object at 0x%08lx\n", addr);
1603 return -EINVAL;
1604 }
1605
1606 spin_lock_irqsave(&object->lock, flags);
1607 dump_object_info(object);
1608 spin_unlock_irqrestore(&object->lock, flags);
1609
1610 put_object(object);
1611 return 0;
1612}
1613
30b37101
LR
1614/*
1615 * We use grey instead of black to ensure we can do future scans on the same
1616 * objects. If we did not do future scans these black objects could
1617 * potentially contain references to newly allocated objects in the future and
1618 * we'd end up with false positives.
1619 */
1620static void kmemleak_clear(void)
1621{
1622 struct kmemleak_object *object;
1623 unsigned long flags;
1624
1625 rcu_read_lock();
1626 list_for_each_entry_rcu(object, &object_list, object_list) {
1627 spin_lock_irqsave(&object->lock, flags);
1628 if ((object->flags & OBJECT_REPORTED) &&
1629 unreferenced_object(object))
a1084c87 1630 __paint_it(object, KMEMLEAK_GREY);
30b37101
LR
1631 spin_unlock_irqrestore(&object->lock, flags);
1632 }
1633 rcu_read_unlock();
dc9b3f42
LZ
1634
1635 kmemleak_found_leaks = false;
30b37101
LR
1636}
1637
c89da70c
LZ
1638static void __kmemleak_do_cleanup(void);
1639
3c7b4e6b
CM
1640/*
1641 * File write operation to configure kmemleak at run-time. The following
1642 * commands can be written to the /sys/kernel/debug/kmemleak file:
1643 * off - disable kmemleak (irreversible)
1644 * stack=on - enable the task stacks scanning
1645 * stack=off - disable the tasks stacks scanning
1646 * scan=on - start the automatic memory scanning thread
1647 * scan=off - stop the automatic memory scanning thread
1648 * scan=... - set the automatic memory scanning period in seconds (0 to
1649 * disable it)
4698c1f2 1650 * scan - trigger a memory scan
30b37101 1651 * clear - mark all current reported unreferenced kmemleak objects as
c89da70c
LZ
1652 * grey to ignore printing them, or free all kmemleak objects
1653 * if kmemleak has been disabled.
189d84ed 1654 * dump=... - dump information about the object found at the given address
3c7b4e6b
CM
1655 */
1656static ssize_t kmemleak_write(struct file *file, const char __user *user_buf,
1657 size_t size, loff_t *ppos)
1658{
1659 char buf[64];
1660 int buf_size;
b87324d0 1661 int ret;
3c7b4e6b
CM
1662
1663 buf_size = min(size, (sizeof(buf) - 1));
1664 if (strncpy_from_user(buf, user_buf, buf_size) < 0)
1665 return -EFAULT;
1666 buf[buf_size] = 0;
1667
b87324d0
CM
1668 ret = mutex_lock_interruptible(&scan_mutex);
1669 if (ret < 0)
1670 return ret;
1671
c89da70c 1672 if (strncmp(buf, "clear", 5) == 0) {
8910ae89 1673 if (kmemleak_enabled)
c89da70c
LZ
1674 kmemleak_clear();
1675 else
1676 __kmemleak_do_cleanup();
1677 goto out;
1678 }
1679
8910ae89 1680 if (!kmemleak_enabled) {
c89da70c
LZ
1681 ret = -EBUSY;
1682 goto out;
1683 }
1684
3c7b4e6b
CM
1685 if (strncmp(buf, "off", 3) == 0)
1686 kmemleak_disable();
1687 else if (strncmp(buf, "stack=on", 8) == 0)
1688 kmemleak_stack_scan = 1;
1689 else if (strncmp(buf, "stack=off", 9) == 0)
1690 kmemleak_stack_scan = 0;
1691 else if (strncmp(buf, "scan=on", 7) == 0)
1692 start_scan_thread();
1693 else if (strncmp(buf, "scan=off", 8) == 0)
1694 stop_scan_thread();
1695 else if (strncmp(buf, "scan=", 5) == 0) {
1696 unsigned long secs;
3c7b4e6b 1697
3dbb95f7 1698 ret = kstrtoul(buf + 5, 0, &secs);
b87324d0
CM
1699 if (ret < 0)
1700 goto out;
3c7b4e6b
CM
1701 stop_scan_thread();
1702 if (secs) {
1703 jiffies_scan_wait = msecs_to_jiffies(secs * 1000);
1704 start_scan_thread();
1705 }
4698c1f2
CM
1706 } else if (strncmp(buf, "scan", 4) == 0)
1707 kmemleak_scan();
189d84ed
CM
1708 else if (strncmp(buf, "dump=", 5) == 0)
1709 ret = dump_str_object_info(buf + 5);
4698c1f2 1710 else
b87324d0
CM
1711 ret = -EINVAL;
1712
1713out:
1714 mutex_unlock(&scan_mutex);
1715 if (ret < 0)
1716 return ret;
3c7b4e6b
CM
1717
1718 /* ignore the rest of the buffer, only one command at a time */
1719 *ppos += size;
1720 return size;
1721}
1722
1723static const struct file_operations kmemleak_fops = {
1724 .owner = THIS_MODULE,
1725 .open = kmemleak_open,
1726 .read = seq_read,
1727 .write = kmemleak_write,
1728 .llseek = seq_lseek,
5f3bf19a 1729 .release = seq_release,
3c7b4e6b
CM
1730};
1731
c89da70c
LZ
1732static void __kmemleak_do_cleanup(void)
1733{
1734 struct kmemleak_object *object;
1735
1736 rcu_read_lock();
1737 list_for_each_entry_rcu(object, &object_list, object_list)
1738 delete_object_full(object->pointer);
1739 rcu_read_unlock();
1740}
1741
3c7b4e6b 1742/*
74341703
CM
1743 * Stop the memory scanning thread and free the kmemleak internal objects if
1744 * no previous scan thread (otherwise, kmemleak may still have some useful
1745 * information on memory leaks).
3c7b4e6b 1746 */
179a8100 1747static void kmemleak_do_cleanup(struct work_struct *work)
3c7b4e6b 1748{
4698c1f2 1749 mutex_lock(&scan_mutex);
3c7b4e6b 1750 stop_scan_thread();
3c7b4e6b 1751
c89da70c
LZ
1752 if (!kmemleak_found_leaks)
1753 __kmemleak_do_cleanup();
1754 else
1755 pr_info("Kmemleak disabled without freeing internal data. "
1756 "Reclaim the memory with \"echo clear > /sys/kernel/debug/kmemleak\"\n");
3c7b4e6b 1757 mutex_unlock(&scan_mutex);
3c7b4e6b
CM
1758}
1759
179a8100 1760static DECLARE_WORK(cleanup_work, kmemleak_do_cleanup);
3c7b4e6b
CM
1761
1762/*
1763 * Disable kmemleak. No memory allocation/freeing will be traced once this
1764 * function is called. Disabling kmemleak is an irreversible operation.
1765 */
1766static void kmemleak_disable(void)
1767{
1768 /* atomically check whether it was already invoked */
8910ae89 1769 if (cmpxchg(&kmemleak_error, 0, 1))
3c7b4e6b
CM
1770 return;
1771
1772 /* stop any memory operation tracing */
8910ae89 1773 kmemleak_enabled = 0;
3c7b4e6b
CM
1774
1775 /* check whether it is too early for a kernel thread */
8910ae89 1776 if (kmemleak_initialized)
179a8100 1777 schedule_work(&cleanup_work);
3c7b4e6b
CM
1778
1779 pr_info("Kernel memory leak detector disabled\n");
1780}
1781
1782/*
1783 * Allow boot-time kmemleak disabling (enabled by default).
1784 */
1785static int kmemleak_boot_config(char *str)
1786{
1787 if (!str)
1788 return -EINVAL;
1789 if (strcmp(str, "off") == 0)
1790 kmemleak_disable();
ab0155a2
JB
1791 else if (strcmp(str, "on") == 0)
1792 kmemleak_skip_disable = 1;
1793 else
3c7b4e6b
CM
1794 return -EINVAL;
1795 return 0;
1796}
1797early_param("kmemleak", kmemleak_boot_config);
1798
5f79020c
CM
1799static void __init print_log_trace(struct early_log *log)
1800{
1801 struct stack_trace trace;
1802
1803 trace.nr_entries = log->trace_len;
1804 trace.entries = log->trace;
1805
1806 pr_notice("Early log backtrace:\n");
1807 print_stack_trace(&trace, 2);
1808}
1809
3c7b4e6b 1810/*
2030117d 1811 * Kmemleak initialization.
3c7b4e6b
CM
1812 */
1813void __init kmemleak_init(void)
1814{
1815 int i;
1816 unsigned long flags;
1817
ab0155a2
JB
1818#ifdef CONFIG_DEBUG_KMEMLEAK_DEFAULT_OFF
1819 if (!kmemleak_skip_disable) {
3551a928 1820 kmemleak_early_log = 0;
ab0155a2
JB
1821 kmemleak_disable();
1822 return;
1823 }
1824#endif
1825
3c7b4e6b
CM
1826 jiffies_min_age = msecs_to_jiffies(MSECS_MIN_AGE);
1827 jiffies_scan_wait = msecs_to_jiffies(SECS_SCAN_WAIT * 1000);
1828
1829 object_cache = KMEM_CACHE(kmemleak_object, SLAB_NOLEAKTRACE);
1830 scan_area_cache = KMEM_CACHE(kmemleak_scan_area, SLAB_NOLEAKTRACE);
3c7b4e6b 1831
b6693005
CM
1832 if (crt_early_log >= ARRAY_SIZE(early_log))
1833 pr_warning("Early log buffer exceeded (%d), please increase "
1834 "DEBUG_KMEMLEAK_EARLY_LOG_SIZE\n", crt_early_log);
1835
3c7b4e6b
CM
1836 /* the kernel is still in UP mode, so disabling the IRQs is enough */
1837 local_irq_save(flags);
3551a928 1838 kmemleak_early_log = 0;
8910ae89 1839 if (kmemleak_error) {
b6693005
CM
1840 local_irq_restore(flags);
1841 return;
1842 } else
8910ae89 1843 kmemleak_enabled = 1;
3c7b4e6b
CM
1844 local_irq_restore(flags);
1845
1846 /*
1847 * This is the point where tracking allocations is safe. Automatic
1848 * scanning is started during the late initcall. Add the early logged
1849 * callbacks to the kmemleak infrastructure.
1850 */
1851 for (i = 0; i < crt_early_log; i++) {
1852 struct early_log *log = &early_log[i];
1853
1854 switch (log->op_type) {
1855 case KMEMLEAK_ALLOC:
fd678967 1856 early_alloc(log);
3c7b4e6b 1857 break;
f528f0b8
CM
1858 case KMEMLEAK_ALLOC_PERCPU:
1859 early_alloc_percpu(log);
1860 break;
3c7b4e6b
CM
1861 case KMEMLEAK_FREE:
1862 kmemleak_free(log->ptr);
1863 break;
53238a60
CM
1864 case KMEMLEAK_FREE_PART:
1865 kmemleak_free_part(log->ptr, log->size);
1866 break;
f528f0b8
CM
1867 case KMEMLEAK_FREE_PERCPU:
1868 kmemleak_free_percpu(log->ptr);
1869 break;
3c7b4e6b
CM
1870 case KMEMLEAK_NOT_LEAK:
1871 kmemleak_not_leak(log->ptr);
1872 break;
1873 case KMEMLEAK_IGNORE:
1874 kmemleak_ignore(log->ptr);
1875 break;
1876 case KMEMLEAK_SCAN_AREA:
c017b4be 1877 kmemleak_scan_area(log->ptr, log->size, GFP_KERNEL);
3c7b4e6b
CM
1878 break;
1879 case KMEMLEAK_NO_SCAN:
1880 kmemleak_no_scan(log->ptr);
1881 break;
1882 default:
5f79020c
CM
1883 kmemleak_warn("Unknown early log operation: %d\n",
1884 log->op_type);
1885 }
1886
8910ae89 1887 if (kmemleak_warning) {
5f79020c 1888 print_log_trace(log);
8910ae89 1889 kmemleak_warning = 0;
3c7b4e6b
CM
1890 }
1891 }
1892}
1893
1894/*
1895 * Late initialization function.
1896 */
1897static int __init kmemleak_late_init(void)
1898{
1899 struct dentry *dentry;
1900
8910ae89 1901 kmemleak_initialized = 1;
3c7b4e6b 1902
8910ae89 1903 if (kmemleak_error) {
3c7b4e6b 1904 /*
25985edc 1905 * Some error occurred and kmemleak was disabled. There is a
3c7b4e6b
CM
1906 * small chance that kmemleak_disable() was called immediately
1907 * after setting kmemleak_initialized and we may end up with
1908 * two clean-up threads but serialized by scan_mutex.
1909 */
179a8100 1910 schedule_work(&cleanup_work);
3c7b4e6b
CM
1911 return -ENOMEM;
1912 }
1913
1914 dentry = debugfs_create_file("kmemleak", S_IRUGO, NULL, NULL,
1915 &kmemleak_fops);
1916 if (!dentry)
ae281064 1917 pr_warning("Failed to create the debugfs kmemleak file\n");
4698c1f2 1918 mutex_lock(&scan_mutex);
3c7b4e6b 1919 start_scan_thread();
4698c1f2 1920 mutex_unlock(&scan_mutex);
3c7b4e6b
CM
1921
1922 pr_info("Kernel memory leak detector initialized\n");
1923
1924 return 0;
1925}
1926late_initcall(kmemleak_late_init);