2 * Generic infrastructure for lifetime debugging of objects.
4 * Started by Thomas Gleixner
6 * Copyright (C) 2008, Thomas Gleixner <tglx@linutronix.de>
8 * For licencing details see kernel-base/COPYING
11 #define pr_fmt(fmt) "ODEBUG: " fmt
13 #include <linux/debugobjects.h>
14 #include <linux/interrupt.h>
15 #include <linux/sched.h>
16 #include <linux/sched/task_stack.h>
17 #include <linux/seq_file.h>
18 #include <linux/debugfs.h>
19 #include <linux/slab.h>
20 #include <linux/hash.h>
22 #define ODEBUG_HASH_BITS 14
23 #define ODEBUG_HASH_SIZE (1 << ODEBUG_HASH_BITS)
25 #define ODEBUG_POOL_SIZE 1024
26 #define ODEBUG_POOL_MIN_LEVEL 256
28 #define ODEBUG_CHUNK_SHIFT PAGE_SHIFT
29 #define ODEBUG_CHUNK_SIZE (1 << ODEBUG_CHUNK_SHIFT)
30 #define ODEBUG_CHUNK_MASK (~(ODEBUG_CHUNK_SIZE - 1))
33 struct hlist_head list
;
37 static struct debug_bucket obj_hash
[ODEBUG_HASH_SIZE
];
39 static struct debug_obj obj_static_pool
[ODEBUG_POOL_SIZE
] __initdata
;
41 static DEFINE_RAW_SPINLOCK(pool_lock
);
43 static HLIST_HEAD(obj_pool
);
45 static int obj_pool_min_free
= ODEBUG_POOL_SIZE
;
46 static int obj_pool_free
= ODEBUG_POOL_SIZE
;
47 static int obj_pool_used
;
48 static int obj_pool_max_used
;
49 static struct kmem_cache
*obj_cache
;
51 static int debug_objects_maxchain __read_mostly
;
52 static int debug_objects_fixups __read_mostly
;
53 static int debug_objects_warnings __read_mostly
;
54 static int debug_objects_enabled __read_mostly
55 = CONFIG_DEBUG_OBJECTS_ENABLE_DEFAULT
;
56 static int debug_objects_pool_size __read_mostly
58 static int debug_objects_pool_min_level __read_mostly
59 = ODEBUG_POOL_MIN_LEVEL
;
60 static struct debug_obj_descr
*descr_test __read_mostly
;
63 * Track numbers of kmem_cache_alloc()/free() calls done.
65 static int debug_objects_allocated
;
66 static int debug_objects_freed
;
68 static void free_obj_work(struct work_struct
*work
);
69 static DECLARE_WORK(debug_obj_work
, free_obj_work
);
71 static int __init
enable_object_debug(char *str
)
73 debug_objects_enabled
= 1;
77 static int __init
disable_object_debug(char *str
)
79 debug_objects_enabled
= 0;
83 early_param("debug_objects", enable_object_debug
);
84 early_param("no_debug_objects", disable_object_debug
);
86 static const char *obj_states
[ODEBUG_STATE_MAX
] = {
87 [ODEBUG_STATE_NONE
] = "none",
88 [ODEBUG_STATE_INIT
] = "initialized",
89 [ODEBUG_STATE_INACTIVE
] = "inactive",
90 [ODEBUG_STATE_ACTIVE
] = "active",
91 [ODEBUG_STATE_DESTROYED
] = "destroyed",
92 [ODEBUG_STATE_NOTAVAILABLE
] = "not available",
95 static void fill_pool(void)
97 gfp_t gfp
= GFP_ATOMIC
| __GFP_NORETRY
| __GFP_NOWARN
;
98 struct debug_obj
*new;
101 if (likely(obj_pool_free
>= debug_objects_pool_min_level
))
104 if (unlikely(!obj_cache
))
107 while (obj_pool_free
< debug_objects_pool_min_level
) {
109 new = kmem_cache_zalloc(obj_cache
, gfp
);
113 raw_spin_lock_irqsave(&pool_lock
, flags
);
114 hlist_add_head(&new->node
, &obj_pool
);
115 debug_objects_allocated
++;
117 raw_spin_unlock_irqrestore(&pool_lock
, flags
);
122 * Lookup an object in the hash bucket.
124 static struct debug_obj
*lookup_object(void *addr
, struct debug_bucket
*b
)
126 struct debug_obj
*obj
;
129 hlist_for_each_entry(obj
, &b
->list
, node
) {
131 if (obj
->object
== addr
)
134 if (cnt
> debug_objects_maxchain
)
135 debug_objects_maxchain
= cnt
;
141 * Allocate a new object. If the pool is empty, switch off the debugger.
142 * Must be called with interrupts disabled.
144 static struct debug_obj
*
145 alloc_object(void *addr
, struct debug_bucket
*b
, struct debug_obj_descr
*descr
)
147 struct debug_obj
*obj
= NULL
;
149 raw_spin_lock(&pool_lock
);
150 if (obj_pool
.first
) {
151 obj
= hlist_entry(obj_pool
.first
, typeof(*obj
), node
);
155 obj
->state
= ODEBUG_STATE_NONE
;
157 hlist_del(&obj
->node
);
159 hlist_add_head(&obj
->node
, &b
->list
);
162 if (obj_pool_used
> obj_pool_max_used
)
163 obj_pool_max_used
= obj_pool_used
;
166 if (obj_pool_free
< obj_pool_min_free
)
167 obj_pool_min_free
= obj_pool_free
;
169 raw_spin_unlock(&pool_lock
);
175 * workqueue function to free objects.
177 * To reduce contention on the global pool_lock, the actual freeing of
178 * debug objects will be delayed if the pool_lock is busy. We also free
179 * the objects in a batch of 4 for each lock/unlock cycle.
181 #define ODEBUG_FREE_BATCH 4
183 static void free_obj_work(struct work_struct
*work
)
185 struct debug_obj
*objs
[ODEBUG_FREE_BATCH
];
189 if (!raw_spin_trylock_irqsave(&pool_lock
, flags
))
191 while (obj_pool_free
>= debug_objects_pool_size
+ ODEBUG_FREE_BATCH
) {
192 for (i
= 0; i
< ODEBUG_FREE_BATCH
; i
++) {
193 objs
[i
] = hlist_entry(obj_pool
.first
,
194 typeof(*objs
[0]), node
);
195 hlist_del(&objs
[i
]->node
);
198 obj_pool_free
-= ODEBUG_FREE_BATCH
;
199 debug_objects_freed
+= ODEBUG_FREE_BATCH
;
201 * We release pool_lock across kmem_cache_free() to
202 * avoid contention on pool_lock.
204 raw_spin_unlock_irqrestore(&pool_lock
, flags
);
205 for (i
= 0; i
< ODEBUG_FREE_BATCH
; i
++)
206 kmem_cache_free(obj_cache
, objs
[i
]);
207 if (!raw_spin_trylock_irqsave(&pool_lock
, flags
))
210 raw_spin_unlock_irqrestore(&pool_lock
, flags
);
214 * Put the object back into the pool and schedule work to free objects
217 static void free_object(struct debug_obj
*obj
)
222 raw_spin_lock_irqsave(&pool_lock
, flags
);
224 * schedule work when the pool is filled and the cache is
227 if (obj_pool_free
> debug_objects_pool_size
&& obj_cache
)
229 hlist_add_head(&obj
->node
, &obj_pool
);
232 raw_spin_unlock_irqrestore(&pool_lock
, flags
);
234 schedule_work(&debug_obj_work
);
238 * We run out of memory. That means we probably have tons of objects
241 static void debug_objects_oom(void)
243 struct debug_bucket
*db
= obj_hash
;
244 struct hlist_node
*tmp
;
245 HLIST_HEAD(freelist
);
246 struct debug_obj
*obj
;
250 pr_warn("Out of memory. ODEBUG disabled\n");
252 for (i
= 0; i
< ODEBUG_HASH_SIZE
; i
++, db
++) {
253 raw_spin_lock_irqsave(&db
->lock
, flags
);
254 hlist_move_list(&db
->list
, &freelist
);
255 raw_spin_unlock_irqrestore(&db
->lock
, flags
);
258 hlist_for_each_entry_safe(obj
, tmp
, &freelist
, node
) {
259 hlist_del(&obj
->node
);
266 * We use the pfn of the address for the hash. That way we can check
267 * for freed objects simply by checking the affected bucket.
269 static struct debug_bucket
*get_bucket(unsigned long addr
)
273 hash
= hash_long((addr
>> ODEBUG_CHUNK_SHIFT
), ODEBUG_HASH_BITS
);
274 return &obj_hash
[hash
];
277 static void debug_print_object(struct debug_obj
*obj
, char *msg
)
279 struct debug_obj_descr
*descr
= obj
->descr
;
282 if (limit
< 5 && descr
!= descr_test
) {
283 void *hint
= descr
->debug_hint
?
284 descr
->debug_hint(obj
->object
) : NULL
;
286 WARN(1, KERN_ERR
"ODEBUG: %s %s (active state %u) "
287 "object type: %s hint: %pS\n",
288 msg
, obj_states
[obj
->state
], obj
->astate
,
291 debug_objects_warnings
++;
295 * Try to repair the damage, so we have a better chance to get useful
299 debug_object_fixup(bool (*fixup
)(void *addr
, enum debug_obj_state state
),
300 void * addr
, enum debug_obj_state state
)
302 if (fixup
&& fixup(addr
, state
)) {
303 debug_objects_fixups
++;
309 static void debug_object_is_on_stack(void *addr
, int onstack
)
317 is_on_stack
= object_is_on_stack(addr
);
318 if (is_on_stack
== onstack
)
323 pr_warn("object is on stack, but not annotated\n");
325 pr_warn("object is not on stack, but annotated\n");
330 __debug_object_init(void *addr
, struct debug_obj_descr
*descr
, int onstack
)
332 enum debug_obj_state state
;
333 struct debug_bucket
*db
;
334 struct debug_obj
*obj
;
339 db
= get_bucket((unsigned long) addr
);
341 raw_spin_lock_irqsave(&db
->lock
, flags
);
343 obj
= lookup_object(addr
, db
);
345 obj
= alloc_object(addr
, db
, descr
);
347 debug_objects_enabled
= 0;
348 raw_spin_unlock_irqrestore(&db
->lock
, flags
);
352 debug_object_is_on_stack(addr
, onstack
);
355 switch (obj
->state
) {
356 case ODEBUG_STATE_NONE
:
357 case ODEBUG_STATE_INIT
:
358 case ODEBUG_STATE_INACTIVE
:
359 obj
->state
= ODEBUG_STATE_INIT
;
362 case ODEBUG_STATE_ACTIVE
:
363 debug_print_object(obj
, "init");
365 raw_spin_unlock_irqrestore(&db
->lock
, flags
);
366 debug_object_fixup(descr
->fixup_init
, addr
, state
);
369 case ODEBUG_STATE_DESTROYED
:
370 debug_print_object(obj
, "init");
376 raw_spin_unlock_irqrestore(&db
->lock
, flags
);
380 * debug_object_init - debug checks when an object is initialized
381 * @addr: address of the object
382 * @descr: pointer to an object specific debug description structure
384 void debug_object_init(void *addr
, struct debug_obj_descr
*descr
)
386 if (!debug_objects_enabled
)
389 __debug_object_init(addr
, descr
, 0);
391 EXPORT_SYMBOL_GPL(debug_object_init
);
394 * debug_object_init_on_stack - debug checks when an object on stack is
396 * @addr: address of the object
397 * @descr: pointer to an object specific debug description structure
399 void debug_object_init_on_stack(void *addr
, struct debug_obj_descr
*descr
)
401 if (!debug_objects_enabled
)
404 __debug_object_init(addr
, descr
, 1);
406 EXPORT_SYMBOL_GPL(debug_object_init_on_stack
);
409 * debug_object_activate - debug checks when an object is activated
410 * @addr: address of the object
411 * @descr: pointer to an object specific debug description structure
412 * Returns 0 for success, -EINVAL for check failed.
414 int debug_object_activate(void *addr
, struct debug_obj_descr
*descr
)
416 enum debug_obj_state state
;
417 struct debug_bucket
*db
;
418 struct debug_obj
*obj
;
421 struct debug_obj o
= { .object
= addr
,
422 .state
= ODEBUG_STATE_NOTAVAILABLE
,
425 if (!debug_objects_enabled
)
428 db
= get_bucket((unsigned long) addr
);
430 raw_spin_lock_irqsave(&db
->lock
, flags
);
432 obj
= lookup_object(addr
, db
);
434 switch (obj
->state
) {
435 case ODEBUG_STATE_INIT
:
436 case ODEBUG_STATE_INACTIVE
:
437 obj
->state
= ODEBUG_STATE_ACTIVE
;
441 case ODEBUG_STATE_ACTIVE
:
442 debug_print_object(obj
, "activate");
444 raw_spin_unlock_irqrestore(&db
->lock
, flags
);
445 ret
= debug_object_fixup(descr
->fixup_activate
, addr
, state
);
446 return ret
? 0 : -EINVAL
;
448 case ODEBUG_STATE_DESTROYED
:
449 debug_print_object(obj
, "activate");
456 raw_spin_unlock_irqrestore(&db
->lock
, flags
);
460 raw_spin_unlock_irqrestore(&db
->lock
, flags
);
462 * We are here when a static object is activated. We
463 * let the type specific code confirm whether this is
464 * true or not. if true, we just make sure that the
465 * static object is tracked in the object tracker. If
466 * not, this must be a bug, so we try to fix it up.
468 if (descr
->is_static_object
&& descr
->is_static_object(addr
)) {
469 /* track this static object */
470 debug_object_init(addr
, descr
);
471 debug_object_activate(addr
, descr
);
473 debug_print_object(&o
, "activate");
474 ret
= debug_object_fixup(descr
->fixup_activate
, addr
,
475 ODEBUG_STATE_NOTAVAILABLE
);
476 return ret
? 0 : -EINVAL
;
480 EXPORT_SYMBOL_GPL(debug_object_activate
);
483 * debug_object_deactivate - debug checks when an object is deactivated
484 * @addr: address of the object
485 * @descr: pointer to an object specific debug description structure
487 void debug_object_deactivate(void *addr
, struct debug_obj_descr
*descr
)
489 struct debug_bucket
*db
;
490 struct debug_obj
*obj
;
493 if (!debug_objects_enabled
)
496 db
= get_bucket((unsigned long) addr
);
498 raw_spin_lock_irqsave(&db
->lock
, flags
);
500 obj
= lookup_object(addr
, db
);
502 switch (obj
->state
) {
503 case ODEBUG_STATE_INIT
:
504 case ODEBUG_STATE_INACTIVE
:
505 case ODEBUG_STATE_ACTIVE
:
507 obj
->state
= ODEBUG_STATE_INACTIVE
;
509 debug_print_object(obj
, "deactivate");
512 case ODEBUG_STATE_DESTROYED
:
513 debug_print_object(obj
, "deactivate");
519 struct debug_obj o
= { .object
= addr
,
520 .state
= ODEBUG_STATE_NOTAVAILABLE
,
523 debug_print_object(&o
, "deactivate");
526 raw_spin_unlock_irqrestore(&db
->lock
, flags
);
528 EXPORT_SYMBOL_GPL(debug_object_deactivate
);
531 * debug_object_destroy - debug checks when an object is destroyed
532 * @addr: address of the object
533 * @descr: pointer to an object specific debug description structure
535 void debug_object_destroy(void *addr
, struct debug_obj_descr
*descr
)
537 enum debug_obj_state state
;
538 struct debug_bucket
*db
;
539 struct debug_obj
*obj
;
542 if (!debug_objects_enabled
)
545 db
= get_bucket((unsigned long) addr
);
547 raw_spin_lock_irqsave(&db
->lock
, flags
);
549 obj
= lookup_object(addr
, db
);
553 switch (obj
->state
) {
554 case ODEBUG_STATE_NONE
:
555 case ODEBUG_STATE_INIT
:
556 case ODEBUG_STATE_INACTIVE
:
557 obj
->state
= ODEBUG_STATE_DESTROYED
;
559 case ODEBUG_STATE_ACTIVE
:
560 debug_print_object(obj
, "destroy");
562 raw_spin_unlock_irqrestore(&db
->lock
, flags
);
563 debug_object_fixup(descr
->fixup_destroy
, addr
, state
);
566 case ODEBUG_STATE_DESTROYED
:
567 debug_print_object(obj
, "destroy");
573 raw_spin_unlock_irqrestore(&db
->lock
, flags
);
575 EXPORT_SYMBOL_GPL(debug_object_destroy
);
578 * debug_object_free - debug checks when an object is freed
579 * @addr: address of the object
580 * @descr: pointer to an object specific debug description structure
582 void debug_object_free(void *addr
, struct debug_obj_descr
*descr
)
584 enum debug_obj_state state
;
585 struct debug_bucket
*db
;
586 struct debug_obj
*obj
;
589 if (!debug_objects_enabled
)
592 db
= get_bucket((unsigned long) addr
);
594 raw_spin_lock_irqsave(&db
->lock
, flags
);
596 obj
= lookup_object(addr
, db
);
600 switch (obj
->state
) {
601 case ODEBUG_STATE_ACTIVE
:
602 debug_print_object(obj
, "free");
604 raw_spin_unlock_irqrestore(&db
->lock
, flags
);
605 debug_object_fixup(descr
->fixup_free
, addr
, state
);
608 hlist_del(&obj
->node
);
609 raw_spin_unlock_irqrestore(&db
->lock
, flags
);
614 raw_spin_unlock_irqrestore(&db
->lock
, flags
);
616 EXPORT_SYMBOL_GPL(debug_object_free
);
619 * debug_object_assert_init - debug checks when object should be init-ed
620 * @addr: address of the object
621 * @descr: pointer to an object specific debug description structure
623 void debug_object_assert_init(void *addr
, struct debug_obj_descr
*descr
)
625 struct debug_bucket
*db
;
626 struct debug_obj
*obj
;
629 if (!debug_objects_enabled
)
632 db
= get_bucket((unsigned long) addr
);
634 raw_spin_lock_irqsave(&db
->lock
, flags
);
636 obj
= lookup_object(addr
, db
);
638 struct debug_obj o
= { .object
= addr
,
639 .state
= ODEBUG_STATE_NOTAVAILABLE
,
642 raw_spin_unlock_irqrestore(&db
->lock
, flags
);
644 * Maybe the object is static, and we let the type specific
645 * code confirm. Track this static object if true, else invoke
648 if (descr
->is_static_object
&& descr
->is_static_object(addr
)) {
649 /* Track this static object */
650 debug_object_init(addr
, descr
);
652 debug_print_object(&o
, "assert_init");
653 debug_object_fixup(descr
->fixup_assert_init
, addr
,
654 ODEBUG_STATE_NOTAVAILABLE
);
659 raw_spin_unlock_irqrestore(&db
->lock
, flags
);
661 EXPORT_SYMBOL_GPL(debug_object_assert_init
);
664 * debug_object_active_state - debug checks object usage state machine
665 * @addr: address of the object
666 * @descr: pointer to an object specific debug description structure
667 * @expect: expected state
668 * @next: state to move to if expected state is found
671 debug_object_active_state(void *addr
, struct debug_obj_descr
*descr
,
672 unsigned int expect
, unsigned int next
)
674 struct debug_bucket
*db
;
675 struct debug_obj
*obj
;
678 if (!debug_objects_enabled
)
681 db
= get_bucket((unsigned long) addr
);
683 raw_spin_lock_irqsave(&db
->lock
, flags
);
685 obj
= lookup_object(addr
, db
);
687 switch (obj
->state
) {
688 case ODEBUG_STATE_ACTIVE
:
689 if (obj
->astate
== expect
)
692 debug_print_object(obj
, "active_state");
696 debug_print_object(obj
, "active_state");
700 struct debug_obj o
= { .object
= addr
,
701 .state
= ODEBUG_STATE_NOTAVAILABLE
,
704 debug_print_object(&o
, "active_state");
707 raw_spin_unlock_irqrestore(&db
->lock
, flags
);
709 EXPORT_SYMBOL_GPL(debug_object_active_state
);
711 #ifdef CONFIG_DEBUG_OBJECTS_FREE
712 static void __debug_check_no_obj_freed(const void *address
, unsigned long size
)
714 unsigned long flags
, oaddr
, saddr
, eaddr
, paddr
, chunks
;
715 struct hlist_node
*tmp
;
716 HLIST_HEAD(freelist
);
717 struct debug_obj_descr
*descr
;
718 enum debug_obj_state state
;
719 struct debug_bucket
*db
;
720 struct debug_obj
*obj
;
723 saddr
= (unsigned long) address
;
724 eaddr
= saddr
+ size
;
725 paddr
= saddr
& ODEBUG_CHUNK_MASK
;
726 chunks
= ((eaddr
- paddr
) + (ODEBUG_CHUNK_SIZE
- 1));
727 chunks
>>= ODEBUG_CHUNK_SHIFT
;
729 for (;chunks
> 0; chunks
--, paddr
+= ODEBUG_CHUNK_SIZE
) {
730 db
= get_bucket(paddr
);
734 raw_spin_lock_irqsave(&db
->lock
, flags
);
735 hlist_for_each_entry_safe(obj
, tmp
, &db
->list
, node
) {
737 oaddr
= (unsigned long) obj
->object
;
738 if (oaddr
< saddr
|| oaddr
>= eaddr
)
741 switch (obj
->state
) {
742 case ODEBUG_STATE_ACTIVE
:
743 debug_print_object(obj
, "free");
746 raw_spin_unlock_irqrestore(&db
->lock
, flags
);
747 debug_object_fixup(descr
->fixup_free
,
748 (void *) oaddr
, state
);
751 hlist_del(&obj
->node
);
752 hlist_add_head(&obj
->node
, &freelist
);
756 raw_spin_unlock_irqrestore(&db
->lock
, flags
);
759 hlist_for_each_entry_safe(obj
, tmp
, &freelist
, node
) {
760 hlist_del(&obj
->node
);
764 if (cnt
> debug_objects_maxchain
)
765 debug_objects_maxchain
= cnt
;
769 void debug_check_no_obj_freed(const void *address
, unsigned long size
)
771 if (debug_objects_enabled
)
772 __debug_check_no_obj_freed(address
, size
);
776 #ifdef CONFIG_DEBUG_FS
778 static int debug_stats_show(struct seq_file
*m
, void *v
)
780 seq_printf(m
, "max_chain :%d\n", debug_objects_maxchain
);
781 seq_printf(m
, "warnings :%d\n", debug_objects_warnings
);
782 seq_printf(m
, "fixups :%d\n", debug_objects_fixups
);
783 seq_printf(m
, "pool_free :%d\n", obj_pool_free
);
784 seq_printf(m
, "pool_min_free :%d\n", obj_pool_min_free
);
785 seq_printf(m
, "pool_used :%d\n", obj_pool_used
);
786 seq_printf(m
, "pool_max_used :%d\n", obj_pool_max_used
);
787 seq_printf(m
, "objs_allocated:%d\n", debug_objects_allocated
);
788 seq_printf(m
, "objs_freed :%d\n", debug_objects_freed
);
792 static int debug_stats_open(struct inode
*inode
, struct file
*filp
)
794 return single_open(filp
, debug_stats_show
, NULL
);
797 static const struct file_operations debug_stats_fops
= {
798 .open
= debug_stats_open
,
801 .release
= single_release
,
804 static int __init
debug_objects_init_debugfs(void)
806 struct dentry
*dbgdir
, *dbgstats
;
808 if (!debug_objects_enabled
)
811 dbgdir
= debugfs_create_dir("debug_objects", NULL
);
815 dbgstats
= debugfs_create_file("stats", 0444, dbgdir
, NULL
,
823 debugfs_remove(dbgdir
);
827 __initcall(debug_objects_init_debugfs
);
830 static inline void debug_objects_init_debugfs(void) { }
833 #ifdef CONFIG_DEBUG_OBJECTS_SELFTEST
835 /* Random data structure for the self test */
837 unsigned long dummy1
[6];
839 unsigned long dummy2
[3];
842 static __initdata
struct debug_obj_descr descr_type_test
;
844 static bool __init
is_static_object(void *addr
)
846 struct self_test
*obj
= addr
;
848 return obj
->static_init
;
852 * fixup_init is called when:
853 * - an active object is initialized
855 static bool __init
fixup_init(void *addr
, enum debug_obj_state state
)
857 struct self_test
*obj
= addr
;
860 case ODEBUG_STATE_ACTIVE
:
861 debug_object_deactivate(obj
, &descr_type_test
);
862 debug_object_init(obj
, &descr_type_test
);
870 * fixup_activate is called when:
871 * - an active object is activated
872 * - an unknown non-static object is activated
874 static bool __init
fixup_activate(void *addr
, enum debug_obj_state state
)
876 struct self_test
*obj
= addr
;
879 case ODEBUG_STATE_NOTAVAILABLE
:
881 case ODEBUG_STATE_ACTIVE
:
882 debug_object_deactivate(obj
, &descr_type_test
);
883 debug_object_activate(obj
, &descr_type_test
);
892 * fixup_destroy is called when:
893 * - an active object is destroyed
895 static bool __init
fixup_destroy(void *addr
, enum debug_obj_state state
)
897 struct self_test
*obj
= addr
;
900 case ODEBUG_STATE_ACTIVE
:
901 debug_object_deactivate(obj
, &descr_type_test
);
902 debug_object_destroy(obj
, &descr_type_test
);
910 * fixup_free is called when:
911 * - an active object is freed
913 static bool __init
fixup_free(void *addr
, enum debug_obj_state state
)
915 struct self_test
*obj
= addr
;
918 case ODEBUG_STATE_ACTIVE
:
919 debug_object_deactivate(obj
, &descr_type_test
);
920 debug_object_free(obj
, &descr_type_test
);
928 check_results(void *addr
, enum debug_obj_state state
, int fixups
, int warnings
)
930 struct debug_bucket
*db
;
931 struct debug_obj
*obj
;
935 db
= get_bucket((unsigned long) addr
);
937 raw_spin_lock_irqsave(&db
->lock
, flags
);
939 obj
= lookup_object(addr
, db
);
940 if (!obj
&& state
!= ODEBUG_STATE_NONE
) {
941 WARN(1, KERN_ERR
"ODEBUG: selftest object not found\n");
944 if (obj
&& obj
->state
!= state
) {
945 WARN(1, KERN_ERR
"ODEBUG: selftest wrong state: %d != %d\n",
949 if (fixups
!= debug_objects_fixups
) {
950 WARN(1, KERN_ERR
"ODEBUG: selftest fixups failed %d != %d\n",
951 fixups
, debug_objects_fixups
);
954 if (warnings
!= debug_objects_warnings
) {
955 WARN(1, KERN_ERR
"ODEBUG: selftest warnings failed %d != %d\n",
956 warnings
, debug_objects_warnings
);
961 raw_spin_unlock_irqrestore(&db
->lock
, flags
);
963 debug_objects_enabled
= 0;
967 static __initdata
struct debug_obj_descr descr_type_test
= {
969 .is_static_object
= is_static_object
,
970 .fixup_init
= fixup_init
,
971 .fixup_activate
= fixup_activate
,
972 .fixup_destroy
= fixup_destroy
,
973 .fixup_free
= fixup_free
,
976 static __initdata
struct self_test obj
= { .static_init
= 0 };
978 static void __init
debug_objects_selftest(void)
980 int fixups
, oldfixups
, warnings
, oldwarnings
;
983 local_irq_save(flags
);
985 fixups
= oldfixups
= debug_objects_fixups
;
986 warnings
= oldwarnings
= debug_objects_warnings
;
987 descr_test
= &descr_type_test
;
989 debug_object_init(&obj
, &descr_type_test
);
990 if (check_results(&obj
, ODEBUG_STATE_INIT
, fixups
, warnings
))
992 debug_object_activate(&obj
, &descr_type_test
);
993 if (check_results(&obj
, ODEBUG_STATE_ACTIVE
, fixups
, warnings
))
995 debug_object_activate(&obj
, &descr_type_test
);
996 if (check_results(&obj
, ODEBUG_STATE_ACTIVE
, ++fixups
, ++warnings
))
998 debug_object_deactivate(&obj
, &descr_type_test
);
999 if (check_results(&obj
, ODEBUG_STATE_INACTIVE
, fixups
, warnings
))
1001 debug_object_destroy(&obj
, &descr_type_test
);
1002 if (check_results(&obj
, ODEBUG_STATE_DESTROYED
, fixups
, warnings
))
1004 debug_object_init(&obj
, &descr_type_test
);
1005 if (check_results(&obj
, ODEBUG_STATE_DESTROYED
, fixups
, ++warnings
))
1007 debug_object_activate(&obj
, &descr_type_test
);
1008 if (check_results(&obj
, ODEBUG_STATE_DESTROYED
, fixups
, ++warnings
))
1010 debug_object_deactivate(&obj
, &descr_type_test
);
1011 if (check_results(&obj
, ODEBUG_STATE_DESTROYED
, fixups
, ++warnings
))
1013 debug_object_free(&obj
, &descr_type_test
);
1014 if (check_results(&obj
, ODEBUG_STATE_NONE
, fixups
, warnings
))
1017 obj
.static_init
= 1;
1018 debug_object_activate(&obj
, &descr_type_test
);
1019 if (check_results(&obj
, ODEBUG_STATE_ACTIVE
, fixups
, warnings
))
1021 debug_object_init(&obj
, &descr_type_test
);
1022 if (check_results(&obj
, ODEBUG_STATE_INIT
, ++fixups
, ++warnings
))
1024 debug_object_free(&obj
, &descr_type_test
);
1025 if (check_results(&obj
, ODEBUG_STATE_NONE
, fixups
, warnings
))
1028 #ifdef CONFIG_DEBUG_OBJECTS_FREE
1029 debug_object_init(&obj
, &descr_type_test
);
1030 if (check_results(&obj
, ODEBUG_STATE_INIT
, fixups
, warnings
))
1032 debug_object_activate(&obj
, &descr_type_test
);
1033 if (check_results(&obj
, ODEBUG_STATE_ACTIVE
, fixups
, warnings
))
1035 __debug_check_no_obj_freed(&obj
, sizeof(obj
));
1036 if (check_results(&obj
, ODEBUG_STATE_NONE
, ++fixups
, ++warnings
))
1039 pr_info("selftest passed\n");
1042 debug_objects_fixups
= oldfixups
;
1043 debug_objects_warnings
= oldwarnings
;
1046 local_irq_restore(flags
);
1049 static inline void debug_objects_selftest(void) { }
1053 * Called during early boot to initialize the hash buckets and link
1054 * the static object pool objects into the poll list. After this call
1055 * the object tracker is fully operational.
1057 void __init
debug_objects_early_init(void)
1061 for (i
= 0; i
< ODEBUG_HASH_SIZE
; i
++)
1062 raw_spin_lock_init(&obj_hash
[i
].lock
);
1064 for (i
= 0; i
< ODEBUG_POOL_SIZE
; i
++)
1065 hlist_add_head(&obj_static_pool
[i
].node
, &obj_pool
);
1069 * Convert the statically allocated objects to dynamic ones:
1071 static int __init
debug_objects_replace_static_objects(void)
1073 struct debug_bucket
*db
= obj_hash
;
1074 struct hlist_node
*tmp
;
1075 struct debug_obj
*obj
, *new;
1076 HLIST_HEAD(objects
);
1079 for (i
= 0; i
< ODEBUG_POOL_SIZE
; i
++) {
1080 obj
= kmem_cache_zalloc(obj_cache
, GFP_KERNEL
);
1083 hlist_add_head(&obj
->node
, &objects
);
1087 * When debug_objects_mem_init() is called we know that only
1088 * one CPU is up, so disabling interrupts is enough
1089 * protection. This avoids the lockdep hell of lock ordering.
1091 local_irq_disable();
1093 /* Remove the statically allocated objects from the pool */
1094 hlist_for_each_entry_safe(obj
, tmp
, &obj_pool
, node
)
1095 hlist_del(&obj
->node
);
1096 /* Move the allocated objects to the pool */
1097 hlist_move_list(&objects
, &obj_pool
);
1099 /* Replace the active object references */
1100 for (i
= 0; i
< ODEBUG_HASH_SIZE
; i
++, db
++) {
1101 hlist_move_list(&db
->list
, &objects
);
1103 hlist_for_each_entry(obj
, &objects
, node
) {
1104 new = hlist_entry(obj_pool
.first
, typeof(*obj
), node
);
1105 hlist_del(&new->node
);
1106 /* copy object data */
1108 hlist_add_head(&new->node
, &db
->list
);
1114 pr_debug("%d of %d active objects replaced\n",
1115 cnt
, obj_pool_used
);
1118 hlist_for_each_entry_safe(obj
, tmp
, &objects
, node
) {
1119 hlist_del(&obj
->node
);
1120 kmem_cache_free(obj_cache
, obj
);
1126 * Called after the kmem_caches are functional to setup a dedicated
1127 * cache pool, which has the SLAB_DEBUG_OBJECTS flag set. This flag
1128 * prevents that the debug code is called on kmem_cache_free() for the
1129 * debug tracker objects to avoid recursive calls.
1131 void __init
debug_objects_mem_init(void)
1133 if (!debug_objects_enabled
)
1136 obj_cache
= kmem_cache_create("debug_objects_cache",
1137 sizeof (struct debug_obj
), 0,
1138 SLAB_DEBUG_OBJECTS
, NULL
);
1140 if (!obj_cache
|| debug_objects_replace_static_objects()) {
1141 debug_objects_enabled
= 0;
1143 kmem_cache_destroy(obj_cache
);
1144 pr_warn("out of memory.\n");
1146 debug_objects_selftest();
1149 * Increase the thresholds for allocating and freeing objects
1150 * according to the number of possible CPUs available in the system.
1152 debug_objects_pool_size
+= num_possible_cpus() * 32;
1153 debug_objects_pool_min_level
+= num_possible_cpus() * 4;