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
10 #include <linux/debugobjects.h>
11 #include <linux/interrupt.h>
12 #include <linux/sched.h>
13 #include <linux/seq_file.h>
14 #include <linux/debugfs.h>
15 #include <linux/slab.h>
16 #include <linux/hash.h>
18 #define ODEBUG_HASH_BITS 14
19 #define ODEBUG_HASH_SIZE (1 << ODEBUG_HASH_BITS)
21 #define ODEBUG_POOL_SIZE 512
22 #define ODEBUG_POOL_MIN_LEVEL 256
24 #define ODEBUG_CHUNK_SHIFT PAGE_SHIFT
25 #define ODEBUG_CHUNK_SIZE (1 << ODEBUG_CHUNK_SHIFT)
26 #define ODEBUG_CHUNK_MASK (~(ODEBUG_CHUNK_SIZE - 1))
29 struct hlist_head list;
33 static struct debug_bucket obj_hash[ODEBUG_HASH_SIZE];
35 static struct debug_obj obj_static_pool[ODEBUG_POOL_SIZE] __initdata;
37 static DEFINE_RAW_SPINLOCK(pool_lock);
39 static HLIST_HEAD(obj_pool);
41 static int obj_pool_min_free = ODEBUG_POOL_SIZE;
42 static int obj_pool_free = ODEBUG_POOL_SIZE;
43 static int obj_pool_used;
44 static int obj_pool_max_used;
45 static struct kmem_cache *obj_cache;
47 static int debug_objects_maxchain __read_mostly;
48 static int debug_objects_fixups __read_mostly;
49 static int debug_objects_warnings __read_mostly;
50 static int debug_objects_enabled __read_mostly
51 = CONFIG_DEBUG_OBJECTS_ENABLE_DEFAULT;
53 static struct debug_obj_descr *descr_test __read_mostly;
55 static void free_obj_work(struct work_struct *work);
56 static DECLARE_WORK(debug_obj_work, free_obj_work);
58 static int __init enable_object_debug(char *str)
60 debug_objects_enabled = 1;
64 static int __init disable_object_debug(char *str)
66 debug_objects_enabled = 0;
70 early_param("debug_objects", enable_object_debug);
71 early_param("no_debug_objects", disable_object_debug);
73 static const char *obj_states[ODEBUG_STATE_MAX] = {
74 [ODEBUG_STATE_NONE] = "none",
75 [ODEBUG_STATE_INIT] = "initialized",
76 [ODEBUG_STATE_INACTIVE] = "inactive",
77 [ODEBUG_STATE_ACTIVE] = "active",
78 [ODEBUG_STATE_DESTROYED] = "destroyed",
79 [ODEBUG_STATE_NOTAVAILABLE] = "not available",
82 static void fill_pool(void)
84 gfp_t gfp = GFP_ATOMIC | __GFP_NORETRY | __GFP_NOWARN;
85 struct debug_obj *new;
88 if (likely(obj_pool_free >= ODEBUG_POOL_MIN_LEVEL))
91 if (unlikely(!obj_cache))
94 while (obj_pool_free < ODEBUG_POOL_MIN_LEVEL) {
96 new = kmem_cache_zalloc(obj_cache, gfp);
100 raw_spin_lock_irqsave(&pool_lock, flags);
101 hlist_add_head(&new->node, &obj_pool);
103 raw_spin_unlock_irqrestore(&pool_lock, flags);
108 * Lookup an object in the hash bucket.
110 static struct debug_obj *lookup_object(void *addr, struct debug_bucket *b)
112 struct hlist_node *node;
113 struct debug_obj *obj;
116 hlist_for_each_entry(obj, node, &b->list, node) {
118 if (obj->object == addr)
121 if (cnt > debug_objects_maxchain)
122 debug_objects_maxchain = cnt;
128 * Allocate a new object. If the pool is empty, switch off the debugger.
129 * Must be called with interrupts disabled.
131 static struct debug_obj *
132 alloc_object(void *addr, struct debug_bucket *b, struct debug_obj_descr *descr)
134 struct debug_obj *obj = NULL;
136 raw_spin_lock(&pool_lock);
137 if (obj_pool.first) {
138 obj = hlist_entry(obj_pool.first, typeof(*obj), node);
142 obj->state = ODEBUG_STATE_NONE;
144 hlist_del(&obj->node);
146 hlist_add_head(&obj->node, &b->list);
149 if (obj_pool_used > obj_pool_max_used)
150 obj_pool_max_used = obj_pool_used;
153 if (obj_pool_free < obj_pool_min_free)
154 obj_pool_min_free = obj_pool_free;
156 raw_spin_unlock(&pool_lock);
162 * workqueue function to free objects.
164 static void free_obj_work(struct work_struct *work)
166 struct debug_obj *obj;
169 raw_spin_lock_irqsave(&pool_lock, flags);
170 while (obj_pool_free > ODEBUG_POOL_SIZE) {
171 obj = hlist_entry(obj_pool.first, typeof(*obj), node);
172 hlist_del(&obj->node);
175 * We release pool_lock across kmem_cache_free() to
176 * avoid contention on pool_lock.
178 raw_spin_unlock_irqrestore(&pool_lock, flags);
179 kmem_cache_free(obj_cache, obj);
180 raw_spin_lock_irqsave(&pool_lock, flags);
182 raw_spin_unlock_irqrestore(&pool_lock, flags);
186 * Put the object back into the pool and schedule work to free objects
189 static void free_object(struct debug_obj *obj)
194 raw_spin_lock_irqsave(&pool_lock, flags);
196 * schedule work when the pool is filled and the cache is
199 if (obj_pool_free > ODEBUG_POOL_SIZE && obj_cache)
200 sched = keventd_up() && !work_pending(&debug_obj_work);
201 hlist_add_head(&obj->node, &obj_pool);
204 raw_spin_unlock_irqrestore(&pool_lock, flags);
206 schedule_work(&debug_obj_work);
210 * We run out of memory. That means we probably have tons of objects
213 static void debug_objects_oom(void)
215 struct debug_bucket *db = obj_hash;
216 struct hlist_node *node, *tmp;
217 HLIST_HEAD(freelist);
218 struct debug_obj *obj;
222 printk(KERN_WARNING "ODEBUG: Out of memory. ODEBUG disabled\n");
224 for (i = 0; i < ODEBUG_HASH_SIZE; i++, db++) {
225 raw_spin_lock_irqsave(&db->lock, flags);
226 hlist_move_list(&db->list, &freelist);
227 raw_spin_unlock_irqrestore(&db->lock, flags);
230 hlist_for_each_entry_safe(obj, node, tmp, &freelist, node) {
231 hlist_del(&obj->node);
238 * We use the pfn of the address for the hash. That way we can check
239 * for freed objects simply by checking the affected bucket.
241 static struct debug_bucket *get_bucket(unsigned long addr)
245 hash = hash_long((addr >> ODEBUG_CHUNK_SHIFT), ODEBUG_HASH_BITS);
246 return &obj_hash[hash];
249 static void debug_print_object(struct debug_obj *obj, char *msg)
251 struct debug_obj_descr *descr = obj->descr;
254 if (limit < 5 && descr != descr_test) {
255 void *hint = descr->debug_hint ?
256 descr->debug_hint(obj->object) : NULL;
258 WARN(1, KERN_ERR "ODEBUG: %s %s (active state %u) "
259 "object type: %s hint: %pS\n",
260 msg, obj_states[obj->state], obj->astate,
263 debug_objects_warnings++;
267 * Try to repair the damage, so we have a better chance to get useful
271 debug_object_fixup(int (*fixup)(void *addr, enum debug_obj_state state),
272 void * addr, enum debug_obj_state state)
277 fixed = fixup(addr, state);
278 debug_objects_fixups += fixed;
282 static void debug_object_is_on_stack(void *addr, int onstack)
290 is_on_stack = object_is_on_stack(addr);
291 if (is_on_stack == onstack)
297 "ODEBUG: object is on stack, but not annotated\n");
300 "ODEBUG: object is not on stack, but annotated\n");
305 __debug_object_init(void *addr, struct debug_obj_descr *descr, int onstack)
307 enum debug_obj_state state;
308 struct debug_bucket *db;
309 struct debug_obj *obj;
314 db = get_bucket((unsigned long) addr);
316 raw_spin_lock_irqsave(&db->lock, flags);
318 obj = lookup_object(addr, db);
320 obj = alloc_object(addr, db, descr);
322 debug_objects_enabled = 0;
323 raw_spin_unlock_irqrestore(&db->lock, flags);
327 debug_object_is_on_stack(addr, onstack);
330 switch (obj->state) {
331 case ODEBUG_STATE_NONE:
332 case ODEBUG_STATE_INIT:
333 case ODEBUG_STATE_INACTIVE:
334 obj->state = ODEBUG_STATE_INIT;
337 case ODEBUG_STATE_ACTIVE:
338 debug_print_object(obj, "init");
340 raw_spin_unlock_irqrestore(&db->lock, flags);
341 debug_object_fixup(descr->fixup_init, addr, state);
344 case ODEBUG_STATE_DESTROYED:
345 debug_print_object(obj, "init");
351 raw_spin_unlock_irqrestore(&db->lock, flags);
355 * debug_object_init - debug checks when an object is initialized
356 * @addr: address of the object
357 * @descr: pointer to an object specific debug description structure
359 void debug_object_init(void *addr, struct debug_obj_descr *descr)
361 if (!debug_objects_enabled)
364 __debug_object_init(addr, descr, 0);
368 * debug_object_init_on_stack - debug checks when an object on stack is
370 * @addr: address of the object
371 * @descr: pointer to an object specific debug description structure
373 void debug_object_init_on_stack(void *addr, struct debug_obj_descr *descr)
375 if (!debug_objects_enabled)
378 __debug_object_init(addr, descr, 1);
382 * debug_object_activate - debug checks when an object is activated
383 * @addr: address of the object
384 * @descr: pointer to an object specific debug description structure
386 void debug_object_activate(void *addr, struct debug_obj_descr *descr)
388 enum debug_obj_state state;
389 struct debug_bucket *db;
390 struct debug_obj *obj;
392 struct debug_obj o = { .object = addr,
393 .state = ODEBUG_STATE_NOTAVAILABLE,
396 if (!debug_objects_enabled)
399 db = get_bucket((unsigned long) addr);
401 raw_spin_lock_irqsave(&db->lock, flags);
403 obj = lookup_object(addr, db);
405 switch (obj->state) {
406 case ODEBUG_STATE_INIT:
407 case ODEBUG_STATE_INACTIVE:
408 obj->state = ODEBUG_STATE_ACTIVE;
411 case ODEBUG_STATE_ACTIVE:
412 debug_print_object(obj, "activate");
414 raw_spin_unlock_irqrestore(&db->lock, flags);
415 debug_object_fixup(descr->fixup_activate, addr, state);
418 case ODEBUG_STATE_DESTROYED:
419 debug_print_object(obj, "activate");
424 raw_spin_unlock_irqrestore(&db->lock, flags);
428 raw_spin_unlock_irqrestore(&db->lock, flags);
430 * This happens when a static object is activated. We
431 * let the type specific code decide whether this is
434 if (debug_object_fixup(descr->fixup_activate, addr,
435 ODEBUG_STATE_NOTAVAILABLE))
436 debug_print_object(&o, "activate");
440 * debug_object_deactivate - debug checks when an object is deactivated
441 * @addr: address of the object
442 * @descr: pointer to an object specific debug description structure
444 void debug_object_deactivate(void *addr, struct debug_obj_descr *descr)
446 struct debug_bucket *db;
447 struct debug_obj *obj;
450 if (!debug_objects_enabled)
453 db = get_bucket((unsigned long) addr);
455 raw_spin_lock_irqsave(&db->lock, flags);
457 obj = lookup_object(addr, db);
459 switch (obj->state) {
460 case ODEBUG_STATE_INIT:
461 case ODEBUG_STATE_INACTIVE:
462 case ODEBUG_STATE_ACTIVE:
464 obj->state = ODEBUG_STATE_INACTIVE;
466 debug_print_object(obj, "deactivate");
469 case ODEBUG_STATE_DESTROYED:
470 debug_print_object(obj, "deactivate");
476 struct debug_obj o = { .object = addr,
477 .state = ODEBUG_STATE_NOTAVAILABLE,
480 debug_print_object(&o, "deactivate");
483 raw_spin_unlock_irqrestore(&db->lock, flags);
487 * debug_object_destroy - debug checks when an object is destroyed
488 * @addr: address of the object
489 * @descr: pointer to an object specific debug description structure
491 void debug_object_destroy(void *addr, struct debug_obj_descr *descr)
493 enum debug_obj_state state;
494 struct debug_bucket *db;
495 struct debug_obj *obj;
498 if (!debug_objects_enabled)
501 db = get_bucket((unsigned long) addr);
503 raw_spin_lock_irqsave(&db->lock, flags);
505 obj = lookup_object(addr, db);
509 switch (obj->state) {
510 case ODEBUG_STATE_NONE:
511 case ODEBUG_STATE_INIT:
512 case ODEBUG_STATE_INACTIVE:
513 obj->state = ODEBUG_STATE_DESTROYED;
515 case ODEBUG_STATE_ACTIVE:
516 debug_print_object(obj, "destroy");
518 raw_spin_unlock_irqrestore(&db->lock, flags);
519 debug_object_fixup(descr->fixup_destroy, addr, state);
522 case ODEBUG_STATE_DESTROYED:
523 debug_print_object(obj, "destroy");
529 raw_spin_unlock_irqrestore(&db->lock, flags);
533 * debug_object_free - debug checks when an object is freed
534 * @addr: address of the object
535 * @descr: pointer to an object specific debug description structure
537 void debug_object_free(void *addr, struct debug_obj_descr *descr)
539 enum debug_obj_state state;
540 struct debug_bucket *db;
541 struct debug_obj *obj;
544 if (!debug_objects_enabled)
547 db = get_bucket((unsigned long) addr);
549 raw_spin_lock_irqsave(&db->lock, flags);
551 obj = lookup_object(addr, db);
555 switch (obj->state) {
556 case ODEBUG_STATE_ACTIVE:
557 debug_print_object(obj, "free");
559 raw_spin_unlock_irqrestore(&db->lock, flags);
560 debug_object_fixup(descr->fixup_free, addr, state);
563 hlist_del(&obj->node);
564 raw_spin_unlock_irqrestore(&db->lock, flags);
569 raw_spin_unlock_irqrestore(&db->lock, flags);
573 * debug_object_assert_init - debug checks when object should be init-ed
574 * @addr: address of the object
575 * @descr: pointer to an object specific debug description structure
577 void debug_object_assert_init(void *addr, struct debug_obj_descr *descr)
579 struct debug_bucket *db;
580 struct debug_obj *obj;
583 if (!debug_objects_enabled)
586 db = get_bucket((unsigned long) addr);
588 raw_spin_lock_irqsave(&db->lock, flags);
590 obj = lookup_object(addr, db);
592 struct debug_obj o = { .object = addr,
593 .state = ODEBUG_STATE_NOTAVAILABLE,
596 raw_spin_unlock_irqrestore(&db->lock, flags);
598 * Maybe the object is static. Let the type specific
599 * code decide what to do.
601 if (debug_object_fixup(descr->fixup_assert_init, addr,
602 ODEBUG_STATE_NOTAVAILABLE))
603 debug_print_object(&o, "assert_init");
607 raw_spin_unlock_irqrestore(&db->lock, flags);
611 * debug_object_active_state - debug checks object usage state machine
612 * @addr: address of the object
613 * @descr: pointer to an object specific debug description structure
614 * @expect: expected state
615 * @next: state to move to if expected state is found
618 debug_object_active_state(void *addr, struct debug_obj_descr *descr,
619 unsigned int expect, unsigned int next)
621 struct debug_bucket *db;
622 struct debug_obj *obj;
625 if (!debug_objects_enabled)
628 db = get_bucket((unsigned long) addr);
630 raw_spin_lock_irqsave(&db->lock, flags);
632 obj = lookup_object(addr, db);
634 switch (obj->state) {
635 case ODEBUG_STATE_ACTIVE:
636 if (obj->astate == expect)
639 debug_print_object(obj, "active_state");
643 debug_print_object(obj, "active_state");
647 struct debug_obj o = { .object = addr,
648 .state = ODEBUG_STATE_NOTAVAILABLE,
651 debug_print_object(&o, "active_state");
654 raw_spin_unlock_irqrestore(&db->lock, flags);
657 #ifdef CONFIG_DEBUG_OBJECTS_FREE
658 static void __debug_check_no_obj_freed(const void *address, unsigned long size)
660 unsigned long flags, oaddr, saddr, eaddr, paddr, chunks;
661 struct hlist_node *node, *tmp;
662 HLIST_HEAD(freelist);
663 struct debug_obj_descr *descr;
664 enum debug_obj_state state;
665 struct debug_bucket *db;
666 struct debug_obj *obj;
669 saddr = (unsigned long) address;
670 eaddr = saddr + size;
671 paddr = saddr & ODEBUG_CHUNK_MASK;
672 chunks = ((eaddr - paddr) + (ODEBUG_CHUNK_SIZE - 1));
673 chunks >>= ODEBUG_CHUNK_SHIFT;
675 for (;chunks > 0; chunks--, paddr += ODEBUG_CHUNK_SIZE) {
676 db = get_bucket(paddr);
680 raw_spin_lock_irqsave(&db->lock, flags);
681 hlist_for_each_entry_safe(obj, node, tmp, &db->list, node) {
683 oaddr = (unsigned long) obj->object;
684 if (oaddr < saddr || oaddr >= eaddr)
687 switch (obj->state) {
688 case ODEBUG_STATE_ACTIVE:
689 debug_print_object(obj, "free");
692 raw_spin_unlock_irqrestore(&db->lock, flags);
693 debug_object_fixup(descr->fixup_free,
694 (void *) oaddr, state);
697 hlist_del(&obj->node);
698 hlist_add_head(&obj->node, &freelist);
702 raw_spin_unlock_irqrestore(&db->lock, flags);
705 hlist_for_each_entry_safe(obj, node, tmp, &freelist, node) {
706 hlist_del(&obj->node);
710 if (cnt > debug_objects_maxchain)
711 debug_objects_maxchain = cnt;
715 void debug_check_no_obj_freed(const void *address, unsigned long size)
717 if (debug_objects_enabled)
718 __debug_check_no_obj_freed(address, size);
722 #ifdef CONFIG_DEBUG_FS
724 static int debug_stats_show(struct seq_file *m, void *v)
726 seq_printf(m, "max_chain :%d\n", debug_objects_maxchain);
727 seq_printf(m, "warnings :%d\n", debug_objects_warnings);
728 seq_printf(m, "fixups :%d\n", debug_objects_fixups);
729 seq_printf(m, "pool_free :%d\n", obj_pool_free);
730 seq_printf(m, "pool_min_free :%d\n", obj_pool_min_free);
731 seq_printf(m, "pool_used :%d\n", obj_pool_used);
732 seq_printf(m, "pool_max_used :%d\n", obj_pool_max_used);
736 static int debug_stats_open(struct inode *inode, struct file *filp)
738 return single_open(filp, debug_stats_show, NULL);
741 static const struct file_operations debug_stats_fops = {
742 .open = debug_stats_open,
745 .release = single_release,
748 static int __init debug_objects_init_debugfs(void)
750 struct dentry *dbgdir, *dbgstats;
752 if (!debug_objects_enabled)
755 dbgdir = debugfs_create_dir("debug_objects", NULL);
759 dbgstats = debugfs_create_file("stats", 0444, dbgdir, NULL,
767 debugfs_remove(dbgdir);
771 __initcall(debug_objects_init_debugfs);
774 static inline void debug_objects_init_debugfs(void) { }
777 #ifdef CONFIG_DEBUG_OBJECTS_SELFTEST
779 /* Random data structure for the self test */
781 unsigned long dummy1[6];
783 unsigned long dummy2[3];
786 static __initdata struct debug_obj_descr descr_type_test;
789 * fixup_init is called when:
790 * - an active object is initialized
792 static int __init fixup_init(void *addr, enum debug_obj_state state)
794 struct self_test *obj = addr;
797 case ODEBUG_STATE_ACTIVE:
798 debug_object_deactivate(obj, &descr_type_test);
799 debug_object_init(obj, &descr_type_test);
807 * fixup_activate is called when:
808 * - an active object is activated
809 * - an unknown object is activated (might be a statically initialized object)
811 static int __init fixup_activate(void *addr, enum debug_obj_state state)
813 struct self_test *obj = addr;
816 case ODEBUG_STATE_NOTAVAILABLE:
817 if (obj->static_init == 1) {
818 debug_object_init(obj, &descr_type_test);
819 debug_object_activate(obj, &descr_type_test);
824 case ODEBUG_STATE_ACTIVE:
825 debug_object_deactivate(obj, &descr_type_test);
826 debug_object_activate(obj, &descr_type_test);
835 * fixup_destroy is called when:
836 * - an active object is destroyed
838 static int __init fixup_destroy(void *addr, enum debug_obj_state state)
840 struct self_test *obj = addr;
843 case ODEBUG_STATE_ACTIVE:
844 debug_object_deactivate(obj, &descr_type_test);
845 debug_object_destroy(obj, &descr_type_test);
853 * fixup_free is called when:
854 * - an active object is freed
856 static int __init fixup_free(void *addr, enum debug_obj_state state)
858 struct self_test *obj = addr;
861 case ODEBUG_STATE_ACTIVE:
862 debug_object_deactivate(obj, &descr_type_test);
863 debug_object_free(obj, &descr_type_test);
871 check_results(void *addr, enum debug_obj_state state, int fixups, int warnings)
873 struct debug_bucket *db;
874 struct debug_obj *obj;
878 db = get_bucket((unsigned long) addr);
880 raw_spin_lock_irqsave(&db->lock, flags);
882 obj = lookup_object(addr, db);
883 if (!obj && state != ODEBUG_STATE_NONE) {
884 WARN(1, KERN_ERR "ODEBUG: selftest object not found\n");
887 if (obj && obj->state != state) {
888 WARN(1, KERN_ERR "ODEBUG: selftest wrong state: %d != %d\n",
892 if (fixups != debug_objects_fixups) {
893 WARN(1, KERN_ERR "ODEBUG: selftest fixups failed %d != %d\n",
894 fixups, debug_objects_fixups);
897 if (warnings != debug_objects_warnings) {
898 WARN(1, KERN_ERR "ODEBUG: selftest warnings failed %d != %d\n",
899 warnings, debug_objects_warnings);
904 raw_spin_unlock_irqrestore(&db->lock, flags);
906 debug_objects_enabled = 0;
910 static __initdata struct debug_obj_descr descr_type_test = {
912 .fixup_init = fixup_init,
913 .fixup_activate = fixup_activate,
914 .fixup_destroy = fixup_destroy,
915 .fixup_free = fixup_free,
918 static __initdata struct self_test obj = { .static_init = 0 };
920 static void __init debug_objects_selftest(void)
922 int fixups, oldfixups, warnings, oldwarnings;
925 local_irq_save(flags);
927 fixups = oldfixups = debug_objects_fixups;
928 warnings = oldwarnings = debug_objects_warnings;
929 descr_test = &descr_type_test;
931 debug_object_init(&obj, &descr_type_test);
932 if (check_results(&obj, ODEBUG_STATE_INIT, fixups, warnings))
934 debug_object_activate(&obj, &descr_type_test);
935 if (check_results(&obj, ODEBUG_STATE_ACTIVE, fixups, warnings))
937 debug_object_activate(&obj, &descr_type_test);
938 if (check_results(&obj, ODEBUG_STATE_ACTIVE, ++fixups, ++warnings))
940 debug_object_deactivate(&obj, &descr_type_test);
941 if (check_results(&obj, ODEBUG_STATE_INACTIVE, fixups, warnings))
943 debug_object_destroy(&obj, &descr_type_test);
944 if (check_results(&obj, ODEBUG_STATE_DESTROYED, fixups, warnings))
946 debug_object_init(&obj, &descr_type_test);
947 if (check_results(&obj, ODEBUG_STATE_DESTROYED, fixups, ++warnings))
949 debug_object_activate(&obj, &descr_type_test);
950 if (check_results(&obj, ODEBUG_STATE_DESTROYED, fixups, ++warnings))
952 debug_object_deactivate(&obj, &descr_type_test);
953 if (check_results(&obj, ODEBUG_STATE_DESTROYED, fixups, ++warnings))
955 debug_object_free(&obj, &descr_type_test);
956 if (check_results(&obj, ODEBUG_STATE_NONE, fixups, warnings))
960 debug_object_activate(&obj, &descr_type_test);
961 if (check_results(&obj, ODEBUG_STATE_ACTIVE, fixups, warnings))
963 debug_object_init(&obj, &descr_type_test);
964 if (check_results(&obj, ODEBUG_STATE_INIT, ++fixups, ++warnings))
966 debug_object_free(&obj, &descr_type_test);
967 if (check_results(&obj, ODEBUG_STATE_NONE, fixups, warnings))
970 #ifdef CONFIG_DEBUG_OBJECTS_FREE
971 debug_object_init(&obj, &descr_type_test);
972 if (check_results(&obj, ODEBUG_STATE_INIT, fixups, warnings))
974 debug_object_activate(&obj, &descr_type_test);
975 if (check_results(&obj, ODEBUG_STATE_ACTIVE, fixups, warnings))
977 __debug_check_no_obj_freed(&obj, sizeof(obj));
978 if (check_results(&obj, ODEBUG_STATE_NONE, ++fixups, ++warnings))
981 printk(KERN_INFO "ODEBUG: selftest passed\n");
984 debug_objects_fixups = oldfixups;
985 debug_objects_warnings = oldwarnings;
988 local_irq_restore(flags);
991 static inline void debug_objects_selftest(void) { }
995 * Called during early boot to initialize the hash buckets and link
996 * the static object pool objects into the poll list. After this call
997 * the object tracker is fully operational.
999 void __init debug_objects_early_init(void)
1003 for (i = 0; i < ODEBUG_HASH_SIZE; i++)
1004 raw_spin_lock_init(&obj_hash[i].lock);
1006 for (i = 0; i < ODEBUG_POOL_SIZE; i++)
1007 hlist_add_head(&obj_static_pool[i].node, &obj_pool);
1011 * Convert the statically allocated objects to dynamic ones:
1013 static int __init debug_objects_replace_static_objects(void)
1015 struct debug_bucket *db = obj_hash;
1016 struct hlist_node *node, *tmp;
1017 struct debug_obj *obj, *new;
1018 HLIST_HEAD(objects);
1021 for (i = 0; i < ODEBUG_POOL_SIZE; i++) {
1022 obj = kmem_cache_zalloc(obj_cache, GFP_KERNEL);
1025 hlist_add_head(&obj->node, &objects);
1029 * When debug_objects_mem_init() is called we know that only
1030 * one CPU is up, so disabling interrupts is enough
1031 * protection. This avoids the lockdep hell of lock ordering.
1033 local_irq_disable();
1035 /* Remove the statically allocated objects from the pool */
1036 hlist_for_each_entry_safe(obj, node, tmp, &obj_pool, node)
1037 hlist_del(&obj->node);
1038 /* Move the allocated objects to the pool */
1039 hlist_move_list(&objects, &obj_pool);
1041 /* Replace the active object references */
1042 for (i = 0; i < ODEBUG_HASH_SIZE; i++, db++) {
1043 hlist_move_list(&db->list, &objects);
1045 hlist_for_each_entry(obj, node, &objects, node) {
1046 new = hlist_entry(obj_pool.first, typeof(*obj), node);
1047 hlist_del(&new->node);
1048 /* copy object data */
1050 hlist_add_head(&new->node, &db->list);
1056 printk(KERN_DEBUG "ODEBUG: %d of %d active objects replaced\n", cnt,
1060 hlist_for_each_entry_safe(obj, node, tmp, &objects, node) {
1061 hlist_del(&obj->node);
1062 kmem_cache_free(obj_cache, obj);
1068 * Called after the kmem_caches are functional to setup a dedicated
1069 * cache pool, which has the SLAB_DEBUG_OBJECTS flag set. This flag
1070 * prevents that the debug code is called on kmem_cache_free() for the
1071 * debug tracker objects to avoid recursive calls.
1073 void __init debug_objects_mem_init(void)
1075 if (!debug_objects_enabled)
1078 obj_cache = kmem_cache_create("debug_objects_cache",
1079 sizeof (struct debug_obj), 0,
1080 SLAB_DEBUG_OBJECTS, NULL);
1082 if (!obj_cache || debug_objects_replace_static_objects()) {
1083 debug_objects_enabled = 0;
1085 kmem_cache_destroy(obj_cache);
1086 printk(KERN_WARNING "ODEBUG: out of memory.\n");
1088 debug_objects_selftest();