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 int 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
);
105 return obj_pool_free
;
109 * Lookup an object in the hash bucket.
111 static struct debug_obj
*lookup_object(void *addr
, struct debug_bucket
*b
)
113 struct hlist_node
*node
;
114 struct debug_obj
*obj
;
117 hlist_for_each_entry(obj
, node
, &b
->list
, node
) {
119 if (obj
->object
== addr
)
122 if (cnt
> debug_objects_maxchain
)
123 debug_objects_maxchain
= cnt
;
129 * Allocate a new object. If the pool is empty, switch off the debugger.
130 * Must be called with interrupts disabled.
132 static struct debug_obj
*
133 alloc_object(void *addr
, struct debug_bucket
*b
, struct debug_obj_descr
*descr
)
135 struct debug_obj
*obj
= NULL
;
137 raw_spin_lock(&pool_lock
);
138 if (obj_pool
.first
) {
139 obj
= hlist_entry(obj_pool
.first
, typeof(*obj
), node
);
143 obj
->state
= ODEBUG_STATE_NONE
;
145 hlist_del(&obj
->node
);
147 hlist_add_head(&obj
->node
, &b
->list
);
150 if (obj_pool_used
> obj_pool_max_used
)
151 obj_pool_max_used
= obj_pool_used
;
154 if (obj_pool_free
< obj_pool_min_free
)
155 obj_pool_min_free
= obj_pool_free
;
157 raw_spin_unlock(&pool_lock
);
163 * workqueue function to free objects.
165 static void free_obj_work(struct work_struct
*work
)
167 struct debug_obj
*obj
;
170 raw_spin_lock_irqsave(&pool_lock
, flags
);
171 while (obj_pool_free
> ODEBUG_POOL_SIZE
) {
172 obj
= hlist_entry(obj_pool
.first
, typeof(*obj
), node
);
173 hlist_del(&obj
->node
);
176 * We release pool_lock across kmem_cache_free() to
177 * avoid contention on pool_lock.
179 raw_spin_unlock_irqrestore(&pool_lock
, flags
);
180 kmem_cache_free(obj_cache
, obj
);
181 raw_spin_lock_irqsave(&pool_lock
, flags
);
183 raw_spin_unlock_irqrestore(&pool_lock
, flags
);
187 * Put the object back into the pool and schedule work to free objects
190 static void free_object(struct debug_obj
*obj
)
195 raw_spin_lock_irqsave(&pool_lock
, flags
);
197 * schedule work when the pool is filled and the cache is
200 if (obj_pool_free
> ODEBUG_POOL_SIZE
&& obj_cache
)
201 sched
= keventd_up() && !work_pending(&debug_obj_work
);
202 hlist_add_head(&obj
->node
, &obj_pool
);
205 raw_spin_unlock_irqrestore(&pool_lock
, flags
);
207 schedule_work(&debug_obj_work
);
211 * We run out of memory. That means we probably have tons of objects
214 static void debug_objects_oom(void)
216 struct debug_bucket
*db
= obj_hash
;
217 struct hlist_node
*node
, *tmp
;
218 HLIST_HEAD(freelist
);
219 struct debug_obj
*obj
;
223 printk(KERN_WARNING
"ODEBUG: Out of memory. ODEBUG disabled\n");
225 for (i
= 0; i
< ODEBUG_HASH_SIZE
; i
++, db
++) {
226 raw_spin_lock_irqsave(&db
->lock
, flags
);
227 hlist_move_list(&db
->list
, &freelist
);
228 raw_spin_unlock_irqrestore(&db
->lock
, flags
);
231 hlist_for_each_entry_safe(obj
, node
, tmp
, &freelist
, node
) {
232 hlist_del(&obj
->node
);
239 * We use the pfn of the address for the hash. That way we can check
240 * for freed objects simply by checking the affected bucket.
242 static struct debug_bucket
*get_bucket(unsigned long addr
)
246 hash
= hash_long((addr
>> ODEBUG_CHUNK_SHIFT
), ODEBUG_HASH_BITS
);
247 return &obj_hash
[hash
];
250 static void debug_print_object(struct debug_obj
*obj
, char *msg
)
252 struct debug_obj_descr
*descr
= obj
->descr
;
255 if (limit
< 5 && descr
!= descr_test
) {
256 void *hint
= descr
->debug_hint
?
257 descr
->debug_hint(obj
->object
) : NULL
;
259 WARN(1, KERN_ERR
"ODEBUG: %s %s (active state %u) "
260 "object type: %s hint: %pS\n",
261 msg
, obj_states
[obj
->state
], obj
->astate
,
264 debug_objects_warnings
++;
268 * Try to repair the damage, so we have a better chance to get useful
272 debug_object_fixup(int (*fixup
)(void *addr
, enum debug_obj_state state
),
273 void * addr
, enum debug_obj_state state
)
278 fixed
= fixup(addr
, state
);
279 debug_objects_fixups
+= fixed
;
283 static void debug_object_is_on_stack(void *addr
, int onstack
)
291 is_on_stack
= object_is_on_stack(addr
);
292 if (is_on_stack
== onstack
)
298 "ODEBUG: object is on stack, but not annotated\n");
301 "ODEBUG: object is not on stack, but annotated\n");
306 __debug_object_init(void *addr
, struct debug_obj_descr
*descr
, int onstack
)
308 enum debug_obj_state state
;
309 struct debug_bucket
*db
;
310 struct debug_obj
*obj
;
315 db
= get_bucket((unsigned long) addr
);
317 raw_spin_lock_irqsave(&db
->lock
, flags
);
319 obj
= lookup_object(addr
, db
);
321 obj
= alloc_object(addr
, db
, descr
);
323 debug_objects_enabled
= 0;
324 raw_spin_unlock_irqrestore(&db
->lock
, flags
);
328 debug_object_is_on_stack(addr
, onstack
);
331 switch (obj
->state
) {
332 case ODEBUG_STATE_NONE
:
333 case ODEBUG_STATE_INIT
:
334 case ODEBUG_STATE_INACTIVE
:
335 obj
->state
= ODEBUG_STATE_INIT
;
338 case ODEBUG_STATE_ACTIVE
:
339 debug_print_object(obj
, "init");
341 raw_spin_unlock_irqrestore(&db
->lock
, flags
);
342 debug_object_fixup(descr
->fixup_init
, addr
, state
);
345 case ODEBUG_STATE_DESTROYED
:
346 debug_print_object(obj
, "init");
352 raw_spin_unlock_irqrestore(&db
->lock
, flags
);
356 * debug_object_init - debug checks when an object is initialized
357 * @addr: address of the object
358 * @descr: pointer to an object specific debug description structure
360 void debug_object_init(void *addr
, struct debug_obj_descr
*descr
)
362 if (!debug_objects_enabled
)
365 __debug_object_init(addr
, descr
, 0);
369 * debug_object_init_on_stack - debug checks when an object on stack is
371 * @addr: address of the object
372 * @descr: pointer to an object specific debug description structure
374 void debug_object_init_on_stack(void *addr
, struct debug_obj_descr
*descr
)
376 if (!debug_objects_enabled
)
379 __debug_object_init(addr
, descr
, 1);
383 * debug_object_activate - debug checks when an object is activated
384 * @addr: address of the object
385 * @descr: pointer to an object specific debug description structure
387 void debug_object_activate(void *addr
, struct debug_obj_descr
*descr
)
389 enum debug_obj_state state
;
390 struct debug_bucket
*db
;
391 struct debug_obj
*obj
;
393 struct debug_obj o
= { .object
= addr
,
394 .state
= ODEBUG_STATE_NOTAVAILABLE
,
397 if (!debug_objects_enabled
)
400 db
= get_bucket((unsigned long) addr
);
402 raw_spin_lock_irqsave(&db
->lock
, flags
);
404 obj
= lookup_object(addr
, db
);
406 switch (obj
->state
) {
407 case ODEBUG_STATE_INIT
:
408 case ODEBUG_STATE_INACTIVE
:
409 obj
->state
= ODEBUG_STATE_ACTIVE
;
412 case ODEBUG_STATE_ACTIVE
:
413 debug_print_object(obj
, "activate");
415 raw_spin_unlock_irqrestore(&db
->lock
, flags
);
416 debug_object_fixup(descr
->fixup_activate
, addr
, state
);
419 case ODEBUG_STATE_DESTROYED
:
420 debug_print_object(obj
, "activate");
425 raw_spin_unlock_irqrestore(&db
->lock
, flags
);
429 raw_spin_unlock_irqrestore(&db
->lock
, flags
);
431 * This happens when a static object is activated. We
432 * let the type specific code decide whether this is
435 if (debug_object_fixup(descr
->fixup_activate
, addr
,
436 ODEBUG_STATE_NOTAVAILABLE
))
437 debug_print_object(&o
, "activate");
441 * debug_object_deactivate - debug checks when an object is deactivated
442 * @addr: address of the object
443 * @descr: pointer to an object specific debug description structure
445 void debug_object_deactivate(void *addr
, struct debug_obj_descr
*descr
)
447 struct debug_bucket
*db
;
448 struct debug_obj
*obj
;
451 if (!debug_objects_enabled
)
454 db
= get_bucket((unsigned long) addr
);
456 raw_spin_lock_irqsave(&db
->lock
, flags
);
458 obj
= lookup_object(addr
, db
);
460 switch (obj
->state
) {
461 case ODEBUG_STATE_INIT
:
462 case ODEBUG_STATE_INACTIVE
:
463 case ODEBUG_STATE_ACTIVE
:
465 obj
->state
= ODEBUG_STATE_INACTIVE
;
467 debug_print_object(obj
, "deactivate");
470 case ODEBUG_STATE_DESTROYED
:
471 debug_print_object(obj
, "deactivate");
477 struct debug_obj o
= { .object
= addr
,
478 .state
= ODEBUG_STATE_NOTAVAILABLE
,
481 debug_print_object(&o
, "deactivate");
484 raw_spin_unlock_irqrestore(&db
->lock
, flags
);
488 * debug_object_destroy - debug checks when an object is destroyed
489 * @addr: address of the object
490 * @descr: pointer to an object specific debug description structure
492 void debug_object_destroy(void *addr
, struct debug_obj_descr
*descr
)
494 enum debug_obj_state state
;
495 struct debug_bucket
*db
;
496 struct debug_obj
*obj
;
499 if (!debug_objects_enabled
)
502 db
= get_bucket((unsigned long) addr
);
504 raw_spin_lock_irqsave(&db
->lock
, flags
);
506 obj
= lookup_object(addr
, db
);
510 switch (obj
->state
) {
511 case ODEBUG_STATE_NONE
:
512 case ODEBUG_STATE_INIT
:
513 case ODEBUG_STATE_INACTIVE
:
514 obj
->state
= ODEBUG_STATE_DESTROYED
;
516 case ODEBUG_STATE_ACTIVE
:
517 debug_print_object(obj
, "destroy");
519 raw_spin_unlock_irqrestore(&db
->lock
, flags
);
520 debug_object_fixup(descr
->fixup_destroy
, addr
, state
);
523 case ODEBUG_STATE_DESTROYED
:
524 debug_print_object(obj
, "destroy");
530 raw_spin_unlock_irqrestore(&db
->lock
, flags
);
534 * debug_object_free - debug checks when an object is freed
535 * @addr: address of the object
536 * @descr: pointer to an object specific debug description structure
538 void debug_object_free(void *addr
, struct debug_obj_descr
*descr
)
540 enum debug_obj_state state
;
541 struct debug_bucket
*db
;
542 struct debug_obj
*obj
;
545 if (!debug_objects_enabled
)
548 db
= get_bucket((unsigned long) addr
);
550 raw_spin_lock_irqsave(&db
->lock
, flags
);
552 obj
= lookup_object(addr
, db
);
556 switch (obj
->state
) {
557 case ODEBUG_STATE_ACTIVE
:
558 debug_print_object(obj
, "free");
560 raw_spin_unlock_irqrestore(&db
->lock
, flags
);
561 debug_object_fixup(descr
->fixup_free
, addr
, state
);
564 hlist_del(&obj
->node
);
565 raw_spin_unlock_irqrestore(&db
->lock
, flags
);
570 raw_spin_unlock_irqrestore(&db
->lock
, flags
);
574 * debug_object_assert_init - debug checks when object should be init-ed
575 * @addr: address of the object
576 * @descr: pointer to an object specific debug description structure
578 void debug_object_assert_init(void *addr
, struct debug_obj_descr
*descr
)
580 struct debug_bucket
*db
;
581 struct debug_obj
*obj
;
584 if (!debug_objects_enabled
)
587 db
= get_bucket((unsigned long) addr
);
589 raw_spin_lock_irqsave(&db
->lock
, flags
);
591 obj
= lookup_object(addr
, db
);
593 struct debug_obj o
= { .object
= addr
,
594 .state
= ODEBUG_STATE_NOTAVAILABLE
,
597 raw_spin_unlock_irqrestore(&db
->lock
, flags
);
599 * Maybe the object is static. Let the type specific
600 * code decide what to do.
602 if (debug_object_fixup(descr
->fixup_assert_init
, addr
,
603 ODEBUG_STATE_NOTAVAILABLE
))
604 debug_print_object(&o
, "assert_init");
608 raw_spin_unlock_irqrestore(&db
->lock
, flags
);
612 * debug_object_active_state - debug checks object usage state machine
613 * @addr: address of the object
614 * @descr: pointer to an object specific debug description structure
615 * @expect: expected state
616 * @next: state to move to if expected state is found
619 debug_object_active_state(void *addr
, struct debug_obj_descr
*descr
,
620 unsigned int expect
, unsigned int next
)
622 struct debug_bucket
*db
;
623 struct debug_obj
*obj
;
626 if (!debug_objects_enabled
)
629 db
= get_bucket((unsigned long) addr
);
631 raw_spin_lock_irqsave(&db
->lock
, flags
);
633 obj
= lookup_object(addr
, db
);
635 switch (obj
->state
) {
636 case ODEBUG_STATE_ACTIVE
:
637 if (obj
->astate
== expect
)
640 debug_print_object(obj
, "active_state");
644 debug_print_object(obj
, "active_state");
648 struct debug_obj o
= { .object
= addr
,
649 .state
= ODEBUG_STATE_NOTAVAILABLE
,
652 debug_print_object(&o
, "active_state");
655 raw_spin_unlock_irqrestore(&db
->lock
, flags
);
658 #ifdef CONFIG_DEBUG_OBJECTS_FREE
659 static void __debug_check_no_obj_freed(const void *address
, unsigned long size
)
661 unsigned long flags
, oaddr
, saddr
, eaddr
, paddr
, chunks
;
662 struct hlist_node
*node
, *tmp
;
663 HLIST_HEAD(freelist
);
664 struct debug_obj_descr
*descr
;
665 enum debug_obj_state state
;
666 struct debug_bucket
*db
;
667 struct debug_obj
*obj
;
670 saddr
= (unsigned long) address
;
671 eaddr
= saddr
+ size
;
672 paddr
= saddr
& ODEBUG_CHUNK_MASK
;
673 chunks
= ((eaddr
- paddr
) + (ODEBUG_CHUNK_SIZE
- 1));
674 chunks
>>= ODEBUG_CHUNK_SHIFT
;
676 for (;chunks
> 0; chunks
--, paddr
+= ODEBUG_CHUNK_SIZE
) {
677 db
= get_bucket(paddr
);
681 raw_spin_lock_irqsave(&db
->lock
, flags
);
682 hlist_for_each_entry_safe(obj
, node
, tmp
, &db
->list
, node
) {
684 oaddr
= (unsigned long) obj
->object
;
685 if (oaddr
< saddr
|| oaddr
>= eaddr
)
688 switch (obj
->state
) {
689 case ODEBUG_STATE_ACTIVE
:
690 debug_print_object(obj
, "free");
693 raw_spin_unlock_irqrestore(&db
->lock
, flags
);
694 debug_object_fixup(descr
->fixup_free
,
695 (void *) oaddr
, state
);
698 hlist_del(&obj
->node
);
699 hlist_add_head(&obj
->node
, &freelist
);
703 raw_spin_unlock_irqrestore(&db
->lock
, flags
);
706 hlist_for_each_entry_safe(obj
, node
, tmp
, &freelist
, node
) {
707 hlist_del(&obj
->node
);
711 if (cnt
> debug_objects_maxchain
)
712 debug_objects_maxchain
= cnt
;
716 void debug_check_no_obj_freed(const void *address
, unsigned long size
)
718 if (debug_objects_enabled
)
719 __debug_check_no_obj_freed(address
, size
);
723 #ifdef CONFIG_DEBUG_FS
725 static int debug_stats_show(struct seq_file
*m
, void *v
)
727 seq_printf(m
, "max_chain :%d\n", debug_objects_maxchain
);
728 seq_printf(m
, "warnings :%d\n", debug_objects_warnings
);
729 seq_printf(m
, "fixups :%d\n", debug_objects_fixups
);
730 seq_printf(m
, "pool_free :%d\n", obj_pool_free
);
731 seq_printf(m
, "pool_min_free :%d\n", obj_pool_min_free
);
732 seq_printf(m
, "pool_used :%d\n", obj_pool_used
);
733 seq_printf(m
, "pool_max_used :%d\n", obj_pool_max_used
);
737 static int debug_stats_open(struct inode
*inode
, struct file
*filp
)
739 return single_open(filp
, debug_stats_show
, NULL
);
742 static const struct file_operations debug_stats_fops
= {
743 .open
= debug_stats_open
,
746 .release
= single_release
,
749 static int __init
debug_objects_init_debugfs(void)
751 struct dentry
*dbgdir
, *dbgstats
;
753 if (!debug_objects_enabled
)
756 dbgdir
= debugfs_create_dir("debug_objects", NULL
);
760 dbgstats
= debugfs_create_file("stats", 0444, dbgdir
, NULL
,
768 debugfs_remove(dbgdir
);
772 __initcall(debug_objects_init_debugfs
);
775 static inline void debug_objects_init_debugfs(void) { }
778 #ifdef CONFIG_DEBUG_OBJECTS_SELFTEST
780 /* Random data structure for the self test */
782 unsigned long dummy1
[6];
784 unsigned long dummy2
[3];
787 static __initdata
struct debug_obj_descr descr_type_test
;
790 * fixup_init is called when:
791 * - an active object is initialized
793 static int __init
fixup_init(void *addr
, enum debug_obj_state state
)
795 struct self_test
*obj
= addr
;
798 case ODEBUG_STATE_ACTIVE
:
799 debug_object_deactivate(obj
, &descr_type_test
);
800 debug_object_init(obj
, &descr_type_test
);
808 * fixup_activate is called when:
809 * - an active object is activated
810 * - an unknown object is activated (might be a statically initialized object)
812 static int __init
fixup_activate(void *addr
, enum debug_obj_state state
)
814 struct self_test
*obj
= addr
;
817 case ODEBUG_STATE_NOTAVAILABLE
:
818 if (obj
->static_init
== 1) {
819 debug_object_init(obj
, &descr_type_test
);
820 debug_object_activate(obj
, &descr_type_test
);
825 case ODEBUG_STATE_ACTIVE
:
826 debug_object_deactivate(obj
, &descr_type_test
);
827 debug_object_activate(obj
, &descr_type_test
);
836 * fixup_destroy is called when:
837 * - an active object is destroyed
839 static int __init
fixup_destroy(void *addr
, enum debug_obj_state state
)
841 struct self_test
*obj
= addr
;
844 case ODEBUG_STATE_ACTIVE
:
845 debug_object_deactivate(obj
, &descr_type_test
);
846 debug_object_destroy(obj
, &descr_type_test
);
854 * fixup_free is called when:
855 * - an active object is freed
857 static int __init
fixup_free(void *addr
, enum debug_obj_state state
)
859 struct self_test
*obj
= addr
;
862 case ODEBUG_STATE_ACTIVE
:
863 debug_object_deactivate(obj
, &descr_type_test
);
864 debug_object_free(obj
, &descr_type_test
);
872 check_results(void *addr
, enum debug_obj_state state
, int fixups
, int warnings
)
874 struct debug_bucket
*db
;
875 struct debug_obj
*obj
;
879 db
= get_bucket((unsigned long) addr
);
881 raw_spin_lock_irqsave(&db
->lock
, flags
);
883 obj
= lookup_object(addr
, db
);
884 if (!obj
&& state
!= ODEBUG_STATE_NONE
) {
885 WARN(1, KERN_ERR
"ODEBUG: selftest object not found\n");
888 if (obj
&& obj
->state
!= state
) {
889 WARN(1, KERN_ERR
"ODEBUG: selftest wrong state: %d != %d\n",
893 if (fixups
!= debug_objects_fixups
) {
894 WARN(1, KERN_ERR
"ODEBUG: selftest fixups failed %d != %d\n",
895 fixups
, debug_objects_fixups
);
898 if (warnings
!= debug_objects_warnings
) {
899 WARN(1, KERN_ERR
"ODEBUG: selftest warnings failed %d != %d\n",
900 warnings
, debug_objects_warnings
);
905 raw_spin_unlock_irqrestore(&db
->lock
, flags
);
907 debug_objects_enabled
= 0;
911 static __initdata
struct debug_obj_descr descr_type_test
= {
913 .fixup_init
= fixup_init
,
914 .fixup_activate
= fixup_activate
,
915 .fixup_destroy
= fixup_destroy
,
916 .fixup_free
= fixup_free
,
919 static __initdata
struct self_test obj
= { .static_init
= 0 };
921 static void __init
debug_objects_selftest(void)
923 int fixups
, oldfixups
, warnings
, oldwarnings
;
926 local_irq_save(flags
);
928 fixups
= oldfixups
= debug_objects_fixups
;
929 warnings
= oldwarnings
= debug_objects_warnings
;
930 descr_test
= &descr_type_test
;
932 debug_object_init(&obj
, &descr_type_test
);
933 if (check_results(&obj
, ODEBUG_STATE_INIT
, fixups
, warnings
))
935 debug_object_activate(&obj
, &descr_type_test
);
936 if (check_results(&obj
, ODEBUG_STATE_ACTIVE
, fixups
, warnings
))
938 debug_object_activate(&obj
, &descr_type_test
);
939 if (check_results(&obj
, ODEBUG_STATE_ACTIVE
, ++fixups
, ++warnings
))
941 debug_object_deactivate(&obj
, &descr_type_test
);
942 if (check_results(&obj
, ODEBUG_STATE_INACTIVE
, fixups
, warnings
))
944 debug_object_destroy(&obj
, &descr_type_test
);
945 if (check_results(&obj
, ODEBUG_STATE_DESTROYED
, fixups
, warnings
))
947 debug_object_init(&obj
, &descr_type_test
);
948 if (check_results(&obj
, ODEBUG_STATE_DESTROYED
, fixups
, ++warnings
))
950 debug_object_activate(&obj
, &descr_type_test
);
951 if (check_results(&obj
, ODEBUG_STATE_DESTROYED
, fixups
, ++warnings
))
953 debug_object_deactivate(&obj
, &descr_type_test
);
954 if (check_results(&obj
, ODEBUG_STATE_DESTROYED
, fixups
, ++warnings
))
956 debug_object_free(&obj
, &descr_type_test
);
957 if (check_results(&obj
, ODEBUG_STATE_NONE
, fixups
, warnings
))
961 debug_object_activate(&obj
, &descr_type_test
);
962 if (check_results(&obj
, ODEBUG_STATE_ACTIVE
, fixups
, warnings
))
964 debug_object_init(&obj
, &descr_type_test
);
965 if (check_results(&obj
, ODEBUG_STATE_INIT
, ++fixups
, ++warnings
))
967 debug_object_free(&obj
, &descr_type_test
);
968 if (check_results(&obj
, ODEBUG_STATE_NONE
, fixups
, warnings
))
971 #ifdef CONFIG_DEBUG_OBJECTS_FREE
972 debug_object_init(&obj
, &descr_type_test
);
973 if (check_results(&obj
, ODEBUG_STATE_INIT
, fixups
, warnings
))
975 debug_object_activate(&obj
, &descr_type_test
);
976 if (check_results(&obj
, ODEBUG_STATE_ACTIVE
, fixups
, warnings
))
978 __debug_check_no_obj_freed(&obj
, sizeof(obj
));
979 if (check_results(&obj
, ODEBUG_STATE_NONE
, ++fixups
, ++warnings
))
982 printk(KERN_INFO
"ODEBUG: selftest passed\n");
985 debug_objects_fixups
= oldfixups
;
986 debug_objects_warnings
= oldwarnings
;
989 local_irq_restore(flags
);
992 static inline void debug_objects_selftest(void) { }
996 * Called during early boot to initialize the hash buckets and link
997 * the static object pool objects into the poll list. After this call
998 * the object tracker is fully operational.
1000 void __init
debug_objects_early_init(void)
1004 for (i
= 0; i
< ODEBUG_HASH_SIZE
; i
++)
1005 raw_spin_lock_init(&obj_hash
[i
].lock
);
1007 for (i
= 0; i
< ODEBUG_POOL_SIZE
; i
++)
1008 hlist_add_head(&obj_static_pool
[i
].node
, &obj_pool
);
1012 * Convert the statically allocated objects to dynamic ones:
1014 static int __init
debug_objects_replace_static_objects(void)
1016 struct debug_bucket
*db
= obj_hash
;
1017 struct hlist_node
*node
, *tmp
;
1018 struct debug_obj
*obj
, *new;
1019 HLIST_HEAD(objects
);
1022 for (i
= 0; i
< ODEBUG_POOL_SIZE
; i
++) {
1023 obj
= kmem_cache_zalloc(obj_cache
, GFP_KERNEL
);
1026 hlist_add_head(&obj
->node
, &objects
);
1030 * When debug_objects_mem_init() is called we know that only
1031 * one CPU is up, so disabling interrupts is enough
1032 * protection. This avoids the lockdep hell of lock ordering.
1034 local_irq_disable();
1036 /* Remove the statically allocated objects from the pool */
1037 hlist_for_each_entry_safe(obj
, node
, tmp
, &obj_pool
, node
)
1038 hlist_del(&obj
->node
);
1039 /* Move the allocated objects to the pool */
1040 hlist_move_list(&objects
, &obj_pool
);
1042 /* Replace the active object references */
1043 for (i
= 0; i
< ODEBUG_HASH_SIZE
; i
++, db
++) {
1044 hlist_move_list(&db
->list
, &objects
);
1046 hlist_for_each_entry(obj
, node
, &objects
, node
) {
1047 new = hlist_entry(obj_pool
.first
, typeof(*obj
), node
);
1048 hlist_del(&new->node
);
1049 /* copy object data */
1051 hlist_add_head(&new->node
, &db
->list
);
1056 printk(KERN_DEBUG
"ODEBUG: %d of %d active objects replaced\n", cnt
,
1061 hlist_for_each_entry_safe(obj
, node
, tmp
, &objects
, node
) {
1062 hlist_del(&obj
->node
);
1063 kmem_cache_free(obj_cache
, obj
);
1069 * Called after the kmem_caches are functional to setup a dedicated
1070 * cache pool, which has the SLAB_DEBUG_OBJECTS flag set. This flag
1071 * prevents that the debug code is called on kmem_cache_free() for the
1072 * debug tracker objects to avoid recursive calls.
1074 void __init
debug_objects_mem_init(void)
1076 if (!debug_objects_enabled
)
1079 obj_cache
= kmem_cache_create("debug_objects_cache",
1080 sizeof (struct debug_obj
), 0,
1081 SLAB_DEBUG_OBJECTS
, NULL
);
1083 if (!obj_cache
|| debug_objects_replace_static_objects()) {
1084 debug_objects_enabled
= 0;
1086 kmem_cache_destroy(obj_cache
);
1087 printk(KERN_WARNING
"ODEBUG: out of memory.\n");
1089 debug_objects_selftest();