lib/debugobjects.c: convert printk to pr_foo()
[linux-2.6-block.git] / lib / debugobjects.c
CommitLineData
3ac7fe5a
TG
1/*
2 * Generic infrastructure for lifetime debugging of objects.
3 *
4 * Started by Thomas Gleixner
5 *
6 * Copyright (C) 2008, Thomas Gleixner <tglx@linutronix.de>
7 *
8 * For licencing details see kernel-base/COPYING
9 */
10#include <linux/debugobjects.h>
11#include <linux/interrupt.h>
d43c36dc 12#include <linux/sched.h>
3ac7fe5a
TG
13#include <linux/seq_file.h>
14#include <linux/debugfs.h>
5a0e3ad6 15#include <linux/slab.h>
3ac7fe5a
TG
16#include <linux/hash.h>
17
18#define ODEBUG_HASH_BITS 14
19#define ODEBUG_HASH_SIZE (1 << ODEBUG_HASH_BITS)
20
21#define ODEBUG_POOL_SIZE 512
22#define ODEBUG_POOL_MIN_LEVEL 256
23
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))
27
28struct debug_bucket {
29 struct hlist_head list;
aef9cb05 30 raw_spinlock_t lock;
3ac7fe5a
TG
31};
32
33static struct debug_bucket obj_hash[ODEBUG_HASH_SIZE];
34
1be1cb7b 35static struct debug_obj obj_static_pool[ODEBUG_POOL_SIZE] __initdata;
3ac7fe5a 36
aef9cb05 37static DEFINE_RAW_SPINLOCK(pool_lock);
3ac7fe5a
TG
38
39static HLIST_HEAD(obj_pool);
40
41static int obj_pool_min_free = ODEBUG_POOL_SIZE;
42static int obj_pool_free = ODEBUG_POOL_SIZE;
43static int obj_pool_used;
44static int obj_pool_max_used;
45static struct kmem_cache *obj_cache;
46
47static int debug_objects_maxchain __read_mostly;
48static int debug_objects_fixups __read_mostly;
49static int debug_objects_warnings __read_mostly;
3ae70205
IM
50static int debug_objects_enabled __read_mostly
51 = CONFIG_DEBUG_OBJECTS_ENABLE_DEFAULT;
52
3ac7fe5a
TG
53static struct debug_obj_descr *descr_test __read_mostly;
54
337fff8b
TG
55static void free_obj_work(struct work_struct *work);
56static DECLARE_WORK(debug_obj_work, free_obj_work);
57
3ac7fe5a
TG
58static int __init enable_object_debug(char *str)
59{
60 debug_objects_enabled = 1;
61 return 0;
62}
3e8ebb5c
KM
63
64static int __init disable_object_debug(char *str)
65{
66 debug_objects_enabled = 0;
67 return 0;
68}
69
3ac7fe5a 70early_param("debug_objects", enable_object_debug);
3e8ebb5c 71early_param("no_debug_objects", disable_object_debug);
3ac7fe5a
TG
72
73static 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",
80};
81
1fda107d 82static void fill_pool(void)
3ac7fe5a
TG
83{
84 gfp_t gfp = GFP_ATOMIC | __GFP_NORETRY | __GFP_NOWARN;
85 struct debug_obj *new;
50db04dd 86 unsigned long flags;
3ac7fe5a
TG
87
88 if (likely(obj_pool_free >= ODEBUG_POOL_MIN_LEVEL))
1fda107d 89 return;
3ac7fe5a
TG
90
91 if (unlikely(!obj_cache))
1fda107d 92 return;
3ac7fe5a
TG
93
94 while (obj_pool_free < ODEBUG_POOL_MIN_LEVEL) {
95
96 new = kmem_cache_zalloc(obj_cache, gfp);
97 if (!new)
3340808c 98 return;
3ac7fe5a 99
aef9cb05 100 raw_spin_lock_irqsave(&pool_lock, flags);
3ac7fe5a
TG
101 hlist_add_head(&new->node, &obj_pool);
102 obj_pool_free++;
aef9cb05 103 raw_spin_unlock_irqrestore(&pool_lock, flags);
3ac7fe5a 104 }
3ac7fe5a
TG
105}
106
107/*
108 * Lookup an object in the hash bucket.
109 */
110static struct debug_obj *lookup_object(void *addr, struct debug_bucket *b)
111{
3ac7fe5a
TG
112 struct debug_obj *obj;
113 int cnt = 0;
114
b67bfe0d 115 hlist_for_each_entry(obj, &b->list, node) {
3ac7fe5a
TG
116 cnt++;
117 if (obj->object == addr)
118 return obj;
119 }
120 if (cnt > debug_objects_maxchain)
121 debug_objects_maxchain = cnt;
122
123 return NULL;
124}
125
126/*
50db04dd 127 * Allocate a new object. If the pool is empty, switch off the debugger.
673d62cc 128 * Must be called with interrupts disabled.
3ac7fe5a
TG
129 */
130static struct debug_obj *
131alloc_object(void *addr, struct debug_bucket *b, struct debug_obj_descr *descr)
132{
133 struct debug_obj *obj = NULL;
3ac7fe5a 134
aef9cb05 135 raw_spin_lock(&pool_lock);
3ac7fe5a
TG
136 if (obj_pool.first) {
137 obj = hlist_entry(obj_pool.first, typeof(*obj), node);
138
139 obj->object = addr;
140 obj->descr = descr;
141 obj->state = ODEBUG_STATE_NONE;
a5d8e467 142 obj->astate = 0;
3ac7fe5a
TG
143 hlist_del(&obj->node);
144
145 hlist_add_head(&obj->node, &b->list);
146
147 obj_pool_used++;
148 if (obj_pool_used > obj_pool_max_used)
149 obj_pool_max_used = obj_pool_used;
150
151 obj_pool_free--;
152 if (obj_pool_free < obj_pool_min_free)
153 obj_pool_min_free = obj_pool_free;
154 }
aef9cb05 155 raw_spin_unlock(&pool_lock);
3ac7fe5a 156
3ac7fe5a
TG
157 return obj;
158}
159
160/*
337fff8b 161 * workqueue function to free objects.
3ac7fe5a 162 */
337fff8b 163static void free_obj_work(struct work_struct *work)
3ac7fe5a 164{
337fff8b 165 struct debug_obj *obj;
673d62cc 166 unsigned long flags;
3ac7fe5a 167
aef9cb05 168 raw_spin_lock_irqsave(&pool_lock, flags);
337fff8b
TG
169 while (obj_pool_free > ODEBUG_POOL_SIZE) {
170 obj = hlist_entry(obj_pool.first, typeof(*obj), node);
171 hlist_del(&obj->node);
172 obj_pool_free--;
173 /*
174 * We release pool_lock across kmem_cache_free() to
175 * avoid contention on pool_lock.
176 */
aef9cb05 177 raw_spin_unlock_irqrestore(&pool_lock, flags);
3ac7fe5a 178 kmem_cache_free(obj_cache, obj);
aef9cb05 179 raw_spin_lock_irqsave(&pool_lock, flags);
3ac7fe5a 180 }
aef9cb05 181 raw_spin_unlock_irqrestore(&pool_lock, flags);
337fff8b
TG
182}
183
184/*
185 * Put the object back into the pool and schedule work to free objects
186 * if necessary.
187 */
188static void free_object(struct debug_obj *obj)
189{
190 unsigned long flags;
191 int sched = 0;
192
aef9cb05 193 raw_spin_lock_irqsave(&pool_lock, flags);
337fff8b
TG
194 /*
195 * schedule work when the pool is filled and the cache is
196 * initialized:
197 */
198 if (obj_pool_free > ODEBUG_POOL_SIZE && obj_cache)
d3773ba1 199 sched = keventd_up();
337fff8b
TG
200 hlist_add_head(&obj->node, &obj_pool);
201 obj_pool_free++;
202 obj_pool_used--;
aef9cb05 203 raw_spin_unlock_irqrestore(&pool_lock, flags);
337fff8b
TG
204 if (sched)
205 schedule_work(&debug_obj_work);
3ac7fe5a
TG
206}
207
208/*
209 * We run out of memory. That means we probably have tons of objects
210 * allocated.
211 */
212static void debug_objects_oom(void)
213{
214 struct debug_bucket *db = obj_hash;
b67bfe0d 215 struct hlist_node *tmp;
673d62cc 216 HLIST_HEAD(freelist);
3ac7fe5a
TG
217 struct debug_obj *obj;
218 unsigned long flags;
219 int i;
220
d7ffef28 221 pr_warn("ODEBUG: Out of memory. ODEBUG disabled\n");
3ac7fe5a
TG
222
223 for (i = 0; i < ODEBUG_HASH_SIZE; i++, db++) {
aef9cb05 224 raw_spin_lock_irqsave(&db->lock, flags);
673d62cc 225 hlist_move_list(&db->list, &freelist);
aef9cb05 226 raw_spin_unlock_irqrestore(&db->lock, flags);
673d62cc
VN
227
228 /* Now free them */
b67bfe0d 229 hlist_for_each_entry_safe(obj, tmp, &freelist, node) {
3ac7fe5a
TG
230 hlist_del(&obj->node);
231 free_object(obj);
232 }
3ac7fe5a
TG
233 }
234}
235
236/*
237 * We use the pfn of the address for the hash. That way we can check
238 * for freed objects simply by checking the affected bucket.
239 */
240static struct debug_bucket *get_bucket(unsigned long addr)
241{
242 unsigned long hash;
243
244 hash = hash_long((addr >> ODEBUG_CHUNK_SHIFT), ODEBUG_HASH_BITS);
245 return &obj_hash[hash];
246}
247
248static void debug_print_object(struct debug_obj *obj, char *msg)
249{
99777288 250 struct debug_obj_descr *descr = obj->descr;
3ac7fe5a
TG
251 static int limit;
252
99777288
SG
253 if (limit < 5 && descr != descr_test) {
254 void *hint = descr->debug_hint ?
255 descr->debug_hint(obj->object) : NULL;
3ac7fe5a 256 limit++;
a5d8e467 257 WARN(1, KERN_ERR "ODEBUG: %s %s (active state %u) "
99777288 258 "object type: %s hint: %pS\n",
a5d8e467 259 msg, obj_states[obj->state], obj->astate,
99777288 260 descr->name, hint);
3ac7fe5a
TG
261 }
262 debug_objects_warnings++;
263}
264
265/*
266 * Try to repair the damage, so we have a better chance to get useful
267 * debug output.
268 */
feac18dd 269static int
3ac7fe5a
TG
270debug_object_fixup(int (*fixup)(void *addr, enum debug_obj_state state),
271 void * addr, enum debug_obj_state state)
272{
feac18dd
SB
273 int fixed = 0;
274
3ac7fe5a 275 if (fixup)
feac18dd
SB
276 fixed = fixup(addr, state);
277 debug_objects_fixups += fixed;
278 return fixed;
3ac7fe5a
TG
279}
280
281static void debug_object_is_on_stack(void *addr, int onstack)
282{
3ac7fe5a
TG
283 int is_on_stack;
284 static int limit;
285
286 if (limit > 4)
287 return;
288
8b05c7e6 289 is_on_stack = object_is_on_stack(addr);
3ac7fe5a
TG
290 if (is_on_stack == onstack)
291 return;
292
293 limit++;
294 if (is_on_stack)
d7ffef28 295 pr_warn("ODEBUG: object is on stack, but not annotated\n");
3ac7fe5a 296 else
d7ffef28 297 pr_warn("ODEBUG: object is not on stack, but annotated\n");
3ac7fe5a
TG
298 WARN_ON(1);
299}
300
301static void
302__debug_object_init(void *addr, struct debug_obj_descr *descr, int onstack)
303{
304 enum debug_obj_state state;
305 struct debug_bucket *db;
306 struct debug_obj *obj;
307 unsigned long flags;
308
50db04dd
VN
309 fill_pool();
310
3ac7fe5a
TG
311 db = get_bucket((unsigned long) addr);
312
aef9cb05 313 raw_spin_lock_irqsave(&db->lock, flags);
3ac7fe5a
TG
314
315 obj = lookup_object(addr, db);
316 if (!obj) {
317 obj = alloc_object(addr, db, descr);
318 if (!obj) {
319 debug_objects_enabled = 0;
aef9cb05 320 raw_spin_unlock_irqrestore(&db->lock, flags);
3ac7fe5a
TG
321 debug_objects_oom();
322 return;
323 }
324 debug_object_is_on_stack(addr, onstack);
325 }
326
327 switch (obj->state) {
328 case ODEBUG_STATE_NONE:
329 case ODEBUG_STATE_INIT:
330 case ODEBUG_STATE_INACTIVE:
331 obj->state = ODEBUG_STATE_INIT;
332 break;
333
334 case ODEBUG_STATE_ACTIVE:
335 debug_print_object(obj, "init");
336 state = obj->state;
aef9cb05 337 raw_spin_unlock_irqrestore(&db->lock, flags);
3ac7fe5a
TG
338 debug_object_fixup(descr->fixup_init, addr, state);
339 return;
340
341 case ODEBUG_STATE_DESTROYED:
342 debug_print_object(obj, "init");
343 break;
344 default:
345 break;
346 }
347
aef9cb05 348 raw_spin_unlock_irqrestore(&db->lock, flags);
3ac7fe5a
TG
349}
350
351/**
352 * debug_object_init - debug checks when an object is initialized
353 * @addr: address of the object
354 * @descr: pointer to an object specific debug description structure
355 */
356void debug_object_init(void *addr, struct debug_obj_descr *descr)
357{
358 if (!debug_objects_enabled)
359 return;
360
361 __debug_object_init(addr, descr, 0);
362}
363
364/**
365 * debug_object_init_on_stack - debug checks when an object on stack is
366 * initialized
367 * @addr: address of the object
368 * @descr: pointer to an object specific debug description structure
369 */
370void debug_object_init_on_stack(void *addr, struct debug_obj_descr *descr)
371{
372 if (!debug_objects_enabled)
373 return;
374
375 __debug_object_init(addr, descr, 1);
376}
377
378/**
379 * debug_object_activate - debug checks when an object is activated
380 * @addr: address of the object
381 * @descr: pointer to an object specific debug description structure
b778ae25 382 * Returns 0 for success, -EINVAL for check failed.
3ac7fe5a 383 */
b778ae25 384int debug_object_activate(void *addr, struct debug_obj_descr *descr)
3ac7fe5a
TG
385{
386 enum debug_obj_state state;
387 struct debug_bucket *db;
388 struct debug_obj *obj;
389 unsigned long flags;
b778ae25 390 int ret;
feac18dd
SB
391 struct debug_obj o = { .object = addr,
392 .state = ODEBUG_STATE_NOTAVAILABLE,
393 .descr = descr };
3ac7fe5a
TG
394
395 if (!debug_objects_enabled)
b778ae25 396 return 0;
3ac7fe5a
TG
397
398 db = get_bucket((unsigned long) addr);
399
aef9cb05 400 raw_spin_lock_irqsave(&db->lock, flags);
3ac7fe5a
TG
401
402 obj = lookup_object(addr, db);
403 if (obj) {
404 switch (obj->state) {
405 case ODEBUG_STATE_INIT:
406 case ODEBUG_STATE_INACTIVE:
407 obj->state = ODEBUG_STATE_ACTIVE;
b778ae25 408 ret = 0;
3ac7fe5a
TG
409 break;
410
411 case ODEBUG_STATE_ACTIVE:
412 debug_print_object(obj, "activate");
413 state = obj->state;
aef9cb05 414 raw_spin_unlock_irqrestore(&db->lock, flags);
b778ae25
PM
415 ret = debug_object_fixup(descr->fixup_activate, addr, state);
416 return ret ? -EINVAL : 0;
3ac7fe5a
TG
417
418 case ODEBUG_STATE_DESTROYED:
419 debug_print_object(obj, "activate");
b778ae25 420 ret = -EINVAL;
3ac7fe5a
TG
421 break;
422 default:
b778ae25 423 ret = 0;
3ac7fe5a
TG
424 break;
425 }
aef9cb05 426 raw_spin_unlock_irqrestore(&db->lock, flags);
b778ae25 427 return ret;
3ac7fe5a
TG
428 }
429
aef9cb05 430 raw_spin_unlock_irqrestore(&db->lock, flags);
3ac7fe5a
TG
431 /*
432 * This happens when a static object is activated. We
433 * let the type specific code decide whether this is
434 * true or not.
435 */
feac18dd 436 if (debug_object_fixup(descr->fixup_activate, addr,
b778ae25 437 ODEBUG_STATE_NOTAVAILABLE)) {
feac18dd 438 debug_print_object(&o, "activate");
b778ae25
PM
439 return -EINVAL;
440 }
441 return 0;
3ac7fe5a
TG
442}
443
444/**
445 * debug_object_deactivate - debug checks when an object is deactivated
446 * @addr: address of the object
447 * @descr: pointer to an object specific debug description structure
448 */
449void debug_object_deactivate(void *addr, struct debug_obj_descr *descr)
450{
451 struct debug_bucket *db;
452 struct debug_obj *obj;
453 unsigned long flags;
454
455 if (!debug_objects_enabled)
456 return;
457
458 db = get_bucket((unsigned long) addr);
459
aef9cb05 460 raw_spin_lock_irqsave(&db->lock, flags);
3ac7fe5a
TG
461
462 obj = lookup_object(addr, db);
463 if (obj) {
464 switch (obj->state) {
465 case ODEBUG_STATE_INIT:
466 case ODEBUG_STATE_INACTIVE:
467 case ODEBUG_STATE_ACTIVE:
a5d8e467
MD
468 if (!obj->astate)
469 obj->state = ODEBUG_STATE_INACTIVE;
470 else
471 debug_print_object(obj, "deactivate");
3ac7fe5a
TG
472 break;
473
474 case ODEBUG_STATE_DESTROYED:
475 debug_print_object(obj, "deactivate");
476 break;
477 default:
478 break;
479 }
480 } else {
481 struct debug_obj o = { .object = addr,
482 .state = ODEBUG_STATE_NOTAVAILABLE,
483 .descr = descr };
484
485 debug_print_object(&o, "deactivate");
486 }
487
aef9cb05 488 raw_spin_unlock_irqrestore(&db->lock, flags);
3ac7fe5a
TG
489}
490
491/**
492 * debug_object_destroy - debug checks when an object is destroyed
493 * @addr: address of the object
494 * @descr: pointer to an object specific debug description structure
495 */
496void debug_object_destroy(void *addr, struct debug_obj_descr *descr)
497{
498 enum debug_obj_state state;
499 struct debug_bucket *db;
500 struct debug_obj *obj;
501 unsigned long flags;
502
503 if (!debug_objects_enabled)
504 return;
505
506 db = get_bucket((unsigned long) addr);
507
aef9cb05 508 raw_spin_lock_irqsave(&db->lock, flags);
3ac7fe5a
TG
509
510 obj = lookup_object(addr, db);
511 if (!obj)
512 goto out_unlock;
513
514 switch (obj->state) {
515 case ODEBUG_STATE_NONE:
516 case ODEBUG_STATE_INIT:
517 case ODEBUG_STATE_INACTIVE:
518 obj->state = ODEBUG_STATE_DESTROYED;
519 break;
520 case ODEBUG_STATE_ACTIVE:
521 debug_print_object(obj, "destroy");
522 state = obj->state;
aef9cb05 523 raw_spin_unlock_irqrestore(&db->lock, flags);
3ac7fe5a
TG
524 debug_object_fixup(descr->fixup_destroy, addr, state);
525 return;
526
527 case ODEBUG_STATE_DESTROYED:
528 debug_print_object(obj, "destroy");
529 break;
530 default:
531 break;
532 }
533out_unlock:
aef9cb05 534 raw_spin_unlock_irqrestore(&db->lock, flags);
3ac7fe5a
TG
535}
536
537/**
538 * debug_object_free - debug checks when an object is freed
539 * @addr: address of the object
540 * @descr: pointer to an object specific debug description structure
541 */
542void debug_object_free(void *addr, struct debug_obj_descr *descr)
543{
544 enum debug_obj_state state;
545 struct debug_bucket *db;
546 struct debug_obj *obj;
547 unsigned long flags;
548
549 if (!debug_objects_enabled)
550 return;
551
552 db = get_bucket((unsigned long) addr);
553
aef9cb05 554 raw_spin_lock_irqsave(&db->lock, flags);
3ac7fe5a
TG
555
556 obj = lookup_object(addr, db);
557 if (!obj)
558 goto out_unlock;
559
560 switch (obj->state) {
561 case ODEBUG_STATE_ACTIVE:
562 debug_print_object(obj, "free");
563 state = obj->state;
aef9cb05 564 raw_spin_unlock_irqrestore(&db->lock, flags);
3ac7fe5a
TG
565 debug_object_fixup(descr->fixup_free, addr, state);
566 return;
567 default:
568 hlist_del(&obj->node);
aef9cb05 569 raw_spin_unlock_irqrestore(&db->lock, flags);
3ac7fe5a 570 free_object(obj);
673d62cc 571 return;
3ac7fe5a
TG
572 }
573out_unlock:
aef9cb05 574 raw_spin_unlock_irqrestore(&db->lock, flags);
3ac7fe5a
TG
575}
576
b84d435c
CC
577/**
578 * debug_object_assert_init - debug checks when object should be init-ed
579 * @addr: address of the object
580 * @descr: pointer to an object specific debug description structure
581 */
582void debug_object_assert_init(void *addr, struct debug_obj_descr *descr)
583{
584 struct debug_bucket *db;
585 struct debug_obj *obj;
586 unsigned long flags;
587
588 if (!debug_objects_enabled)
589 return;
590
591 db = get_bucket((unsigned long) addr);
592
593 raw_spin_lock_irqsave(&db->lock, flags);
594
595 obj = lookup_object(addr, db);
596 if (!obj) {
597 struct debug_obj o = { .object = addr,
598 .state = ODEBUG_STATE_NOTAVAILABLE,
599 .descr = descr };
600
601 raw_spin_unlock_irqrestore(&db->lock, flags);
602 /*
603 * Maybe the object is static. Let the type specific
604 * code decide what to do.
605 */
606 if (debug_object_fixup(descr->fixup_assert_init, addr,
607 ODEBUG_STATE_NOTAVAILABLE))
608 debug_print_object(&o, "assert_init");
609 return;
610 }
611
612 raw_spin_unlock_irqrestore(&db->lock, flags);
613}
614
a5d8e467
MD
615/**
616 * debug_object_active_state - debug checks object usage state machine
617 * @addr: address of the object
618 * @descr: pointer to an object specific debug description structure
619 * @expect: expected state
620 * @next: state to move to if expected state is found
621 */
622void
623debug_object_active_state(void *addr, struct debug_obj_descr *descr,
624 unsigned int expect, unsigned int next)
625{
626 struct debug_bucket *db;
627 struct debug_obj *obj;
628 unsigned long flags;
629
630 if (!debug_objects_enabled)
631 return;
632
633 db = get_bucket((unsigned long) addr);
634
635 raw_spin_lock_irqsave(&db->lock, flags);
636
637 obj = lookup_object(addr, db);
638 if (obj) {
639 switch (obj->state) {
640 case ODEBUG_STATE_ACTIVE:
641 if (obj->astate == expect)
642 obj->astate = next;
643 else
644 debug_print_object(obj, "active_state");
645 break;
646
647 default:
648 debug_print_object(obj, "active_state");
649 break;
650 }
651 } else {
652 struct debug_obj o = { .object = addr,
653 .state = ODEBUG_STATE_NOTAVAILABLE,
654 .descr = descr };
655
656 debug_print_object(&o, "active_state");
657 }
658
659 raw_spin_unlock_irqrestore(&db->lock, flags);
660}
661
3ac7fe5a
TG
662#ifdef CONFIG_DEBUG_OBJECTS_FREE
663static void __debug_check_no_obj_freed(const void *address, unsigned long size)
664{
665 unsigned long flags, oaddr, saddr, eaddr, paddr, chunks;
b67bfe0d 666 struct hlist_node *tmp;
673d62cc 667 HLIST_HEAD(freelist);
3ac7fe5a
TG
668 struct debug_obj_descr *descr;
669 enum debug_obj_state state;
670 struct debug_bucket *db;
671 struct debug_obj *obj;
672 int cnt;
673
674 saddr = (unsigned long) address;
675 eaddr = saddr + size;
676 paddr = saddr & ODEBUG_CHUNK_MASK;
677 chunks = ((eaddr - paddr) + (ODEBUG_CHUNK_SIZE - 1));
678 chunks >>= ODEBUG_CHUNK_SHIFT;
679
680 for (;chunks > 0; chunks--, paddr += ODEBUG_CHUNK_SIZE) {
681 db = get_bucket(paddr);
682
683repeat:
684 cnt = 0;
aef9cb05 685 raw_spin_lock_irqsave(&db->lock, flags);
b67bfe0d 686 hlist_for_each_entry_safe(obj, tmp, &db->list, node) {
3ac7fe5a
TG
687 cnt++;
688 oaddr = (unsigned long) obj->object;
689 if (oaddr < saddr || oaddr >= eaddr)
690 continue;
691
692 switch (obj->state) {
693 case ODEBUG_STATE_ACTIVE:
694 debug_print_object(obj, "free");
695 descr = obj->descr;
696 state = obj->state;
aef9cb05 697 raw_spin_unlock_irqrestore(&db->lock, flags);
3ac7fe5a
TG
698 debug_object_fixup(descr->fixup_free,
699 (void *) oaddr, state);
700 goto repeat;
701 default:
702 hlist_del(&obj->node);
673d62cc 703 hlist_add_head(&obj->node, &freelist);
3ac7fe5a
TG
704 break;
705 }
706 }
aef9cb05 707 raw_spin_unlock_irqrestore(&db->lock, flags);
673d62cc
VN
708
709 /* Now free them */
b67bfe0d 710 hlist_for_each_entry_safe(obj, tmp, &freelist, node) {
673d62cc
VN
711 hlist_del(&obj->node);
712 free_object(obj);
713 }
714
3ac7fe5a
TG
715 if (cnt > debug_objects_maxchain)
716 debug_objects_maxchain = cnt;
717 }
718}
719
720void debug_check_no_obj_freed(const void *address, unsigned long size)
721{
722 if (debug_objects_enabled)
723 __debug_check_no_obj_freed(address, size);
724}
725#endif
726
727#ifdef CONFIG_DEBUG_FS
728
729static int debug_stats_show(struct seq_file *m, void *v)
730{
731 seq_printf(m, "max_chain :%d\n", debug_objects_maxchain);
732 seq_printf(m, "warnings :%d\n", debug_objects_warnings);
733 seq_printf(m, "fixups :%d\n", debug_objects_fixups);
734 seq_printf(m, "pool_free :%d\n", obj_pool_free);
735 seq_printf(m, "pool_min_free :%d\n", obj_pool_min_free);
736 seq_printf(m, "pool_used :%d\n", obj_pool_used);
737 seq_printf(m, "pool_max_used :%d\n", obj_pool_max_used);
738 return 0;
739}
740
741static int debug_stats_open(struct inode *inode, struct file *filp)
742{
743 return single_open(filp, debug_stats_show, NULL);
744}
745
746static const struct file_operations debug_stats_fops = {
747 .open = debug_stats_open,
748 .read = seq_read,
749 .llseek = seq_lseek,
750 .release = single_release,
751};
752
753static int __init debug_objects_init_debugfs(void)
754{
755 struct dentry *dbgdir, *dbgstats;
756
757 if (!debug_objects_enabled)
758 return 0;
759
760 dbgdir = debugfs_create_dir("debug_objects", NULL);
761 if (!dbgdir)
762 return -ENOMEM;
763
764 dbgstats = debugfs_create_file("stats", 0444, dbgdir, NULL,
765 &debug_stats_fops);
766 if (!dbgstats)
767 goto err;
768
769 return 0;
770
771err:
772 debugfs_remove(dbgdir);
773
774 return -ENOMEM;
775}
776__initcall(debug_objects_init_debugfs);
777
778#else
779static inline void debug_objects_init_debugfs(void) { }
780#endif
781
782#ifdef CONFIG_DEBUG_OBJECTS_SELFTEST
783
784/* Random data structure for the self test */
785struct self_test {
786 unsigned long dummy1[6];
787 int static_init;
788 unsigned long dummy2[3];
789};
790
791static __initdata struct debug_obj_descr descr_type_test;
792
793/*
794 * fixup_init is called when:
795 * - an active object is initialized
796 */
797static int __init fixup_init(void *addr, enum debug_obj_state state)
798{
799 struct self_test *obj = addr;
800
801 switch (state) {
802 case ODEBUG_STATE_ACTIVE:
803 debug_object_deactivate(obj, &descr_type_test);
804 debug_object_init(obj, &descr_type_test);
805 return 1;
806 default:
807 return 0;
808 }
809}
810
811/*
812 * fixup_activate is called when:
813 * - an active object is activated
814 * - an unknown object is activated (might be a statically initialized object)
815 */
816static int __init fixup_activate(void *addr, enum debug_obj_state state)
817{
818 struct self_test *obj = addr;
819
820 switch (state) {
821 case ODEBUG_STATE_NOTAVAILABLE:
822 if (obj->static_init == 1) {
823 debug_object_init(obj, &descr_type_test);
824 debug_object_activate(obj, &descr_type_test);
9f78ff00 825 return 0;
3ac7fe5a 826 }
9f78ff00 827 return 1;
3ac7fe5a
TG
828
829 case ODEBUG_STATE_ACTIVE:
830 debug_object_deactivate(obj, &descr_type_test);
831 debug_object_activate(obj, &descr_type_test);
832 return 1;
833
834 default:
835 return 0;
836 }
837}
838
839/*
840 * fixup_destroy is called when:
841 * - an active object is destroyed
842 */
843static int __init fixup_destroy(void *addr, enum debug_obj_state state)
844{
845 struct self_test *obj = addr;
846
847 switch (state) {
848 case ODEBUG_STATE_ACTIVE:
849 debug_object_deactivate(obj, &descr_type_test);
850 debug_object_destroy(obj, &descr_type_test);
851 return 1;
852 default:
853 return 0;
854 }
855}
856
857/*
858 * fixup_free is called when:
859 * - an active object is freed
860 */
861static int __init fixup_free(void *addr, enum debug_obj_state state)
862{
863 struct self_test *obj = addr;
864
865 switch (state) {
866 case ODEBUG_STATE_ACTIVE:
867 debug_object_deactivate(obj, &descr_type_test);
868 debug_object_free(obj, &descr_type_test);
869 return 1;
870 default:
871 return 0;
872 }
873}
874
1fb2f77c 875static int __init
3ac7fe5a
TG
876check_results(void *addr, enum debug_obj_state state, int fixups, int warnings)
877{
878 struct debug_bucket *db;
879 struct debug_obj *obj;
880 unsigned long flags;
881 int res = -EINVAL;
882
883 db = get_bucket((unsigned long) addr);
884
aef9cb05 885 raw_spin_lock_irqsave(&db->lock, flags);
3ac7fe5a
TG
886
887 obj = lookup_object(addr, db);
888 if (!obj && state != ODEBUG_STATE_NONE) {
5cd2b459 889 WARN(1, KERN_ERR "ODEBUG: selftest object not found\n");
3ac7fe5a
TG
890 goto out;
891 }
892 if (obj && obj->state != state) {
5cd2b459 893 WARN(1, KERN_ERR "ODEBUG: selftest wrong state: %d != %d\n",
3ac7fe5a 894 obj->state, state);
3ac7fe5a
TG
895 goto out;
896 }
897 if (fixups != debug_objects_fixups) {
5cd2b459 898 WARN(1, KERN_ERR "ODEBUG: selftest fixups failed %d != %d\n",
3ac7fe5a 899 fixups, debug_objects_fixups);
3ac7fe5a
TG
900 goto out;
901 }
902 if (warnings != debug_objects_warnings) {
5cd2b459 903 WARN(1, KERN_ERR "ODEBUG: selftest warnings failed %d != %d\n",
3ac7fe5a 904 warnings, debug_objects_warnings);
3ac7fe5a
TG
905 goto out;
906 }
907 res = 0;
908out:
aef9cb05 909 raw_spin_unlock_irqrestore(&db->lock, flags);
3ac7fe5a
TG
910 if (res)
911 debug_objects_enabled = 0;
912 return res;
913}
914
915static __initdata struct debug_obj_descr descr_type_test = {
916 .name = "selftest",
917 .fixup_init = fixup_init,
918 .fixup_activate = fixup_activate,
919 .fixup_destroy = fixup_destroy,
920 .fixup_free = fixup_free,
921};
922
923static __initdata struct self_test obj = { .static_init = 0 };
924
925static void __init debug_objects_selftest(void)
926{
927 int fixups, oldfixups, warnings, oldwarnings;
928 unsigned long flags;
929
930 local_irq_save(flags);
931
932 fixups = oldfixups = debug_objects_fixups;
933 warnings = oldwarnings = debug_objects_warnings;
934 descr_test = &descr_type_test;
935
936 debug_object_init(&obj, &descr_type_test);
937 if (check_results(&obj, ODEBUG_STATE_INIT, fixups, warnings))
938 goto out;
939 debug_object_activate(&obj, &descr_type_test);
940 if (check_results(&obj, ODEBUG_STATE_ACTIVE, fixups, warnings))
941 goto out;
942 debug_object_activate(&obj, &descr_type_test);
943 if (check_results(&obj, ODEBUG_STATE_ACTIVE, ++fixups, ++warnings))
944 goto out;
945 debug_object_deactivate(&obj, &descr_type_test);
946 if (check_results(&obj, ODEBUG_STATE_INACTIVE, fixups, warnings))
947 goto out;
948 debug_object_destroy(&obj, &descr_type_test);
949 if (check_results(&obj, ODEBUG_STATE_DESTROYED, fixups, warnings))
950 goto out;
951 debug_object_init(&obj, &descr_type_test);
952 if (check_results(&obj, ODEBUG_STATE_DESTROYED, fixups, ++warnings))
953 goto out;
954 debug_object_activate(&obj, &descr_type_test);
955 if (check_results(&obj, ODEBUG_STATE_DESTROYED, fixups, ++warnings))
956 goto out;
957 debug_object_deactivate(&obj, &descr_type_test);
958 if (check_results(&obj, ODEBUG_STATE_DESTROYED, fixups, ++warnings))
959 goto out;
960 debug_object_free(&obj, &descr_type_test);
961 if (check_results(&obj, ODEBUG_STATE_NONE, fixups, warnings))
962 goto out;
963
964 obj.static_init = 1;
965 debug_object_activate(&obj, &descr_type_test);
9f78ff00 966 if (check_results(&obj, ODEBUG_STATE_ACTIVE, fixups, warnings))
3ac7fe5a
TG
967 goto out;
968 debug_object_init(&obj, &descr_type_test);
969 if (check_results(&obj, ODEBUG_STATE_INIT, ++fixups, ++warnings))
970 goto out;
971 debug_object_free(&obj, &descr_type_test);
972 if (check_results(&obj, ODEBUG_STATE_NONE, fixups, warnings))
973 goto out;
974
975#ifdef CONFIG_DEBUG_OBJECTS_FREE
976 debug_object_init(&obj, &descr_type_test);
977 if (check_results(&obj, ODEBUG_STATE_INIT, fixups, warnings))
978 goto out;
979 debug_object_activate(&obj, &descr_type_test);
980 if (check_results(&obj, ODEBUG_STATE_ACTIVE, fixups, warnings))
981 goto out;
982 __debug_check_no_obj_freed(&obj, sizeof(obj));
983 if (check_results(&obj, ODEBUG_STATE_NONE, ++fixups, ++warnings))
984 goto out;
985#endif
d7ffef28 986 pr_info("ODEBUG: selftest passed\n");
3ac7fe5a
TG
987
988out:
989 debug_objects_fixups = oldfixups;
990 debug_objects_warnings = oldwarnings;
991 descr_test = NULL;
992
993 local_irq_restore(flags);
994}
995#else
996static inline void debug_objects_selftest(void) { }
997#endif
998
999/*
1000 * Called during early boot to initialize the hash buckets and link
1001 * the static object pool objects into the poll list. After this call
1002 * the object tracker is fully operational.
1003 */
1004void __init debug_objects_early_init(void)
1005{
1006 int i;
1007
1008 for (i = 0; i < ODEBUG_HASH_SIZE; i++)
aef9cb05 1009 raw_spin_lock_init(&obj_hash[i].lock);
3ac7fe5a
TG
1010
1011 for (i = 0; i < ODEBUG_POOL_SIZE; i++)
1012 hlist_add_head(&obj_static_pool[i].node, &obj_pool);
1013}
1014
1be1cb7b
TG
1015/*
1016 * Convert the statically allocated objects to dynamic ones:
1017 */
1fb2f77c 1018static int __init debug_objects_replace_static_objects(void)
1be1cb7b
TG
1019{
1020 struct debug_bucket *db = obj_hash;
b67bfe0d 1021 struct hlist_node *tmp;
1be1cb7b
TG
1022 struct debug_obj *obj, *new;
1023 HLIST_HEAD(objects);
1024 int i, cnt = 0;
1025
1026 for (i = 0; i < ODEBUG_POOL_SIZE; i++) {
1027 obj = kmem_cache_zalloc(obj_cache, GFP_KERNEL);
1028 if (!obj)
1029 goto free;
1030 hlist_add_head(&obj->node, &objects);
1031 }
1032
1033 /*
1034 * When debug_objects_mem_init() is called we know that only
1035 * one CPU is up, so disabling interrupts is enough
1036 * protection. This avoids the lockdep hell of lock ordering.
1037 */
1038 local_irq_disable();
1039
1040 /* Remove the statically allocated objects from the pool */
b67bfe0d 1041 hlist_for_each_entry_safe(obj, tmp, &obj_pool, node)
1be1cb7b
TG
1042 hlist_del(&obj->node);
1043 /* Move the allocated objects to the pool */
1044 hlist_move_list(&objects, &obj_pool);
1045
1046 /* Replace the active object references */
1047 for (i = 0; i < ODEBUG_HASH_SIZE; i++, db++) {
1048 hlist_move_list(&db->list, &objects);
1049
b67bfe0d 1050 hlist_for_each_entry(obj, &objects, node) {
1be1cb7b
TG
1051 new = hlist_entry(obj_pool.first, typeof(*obj), node);
1052 hlist_del(&new->node);
1053 /* copy object data */
1054 *new = *obj;
1055 hlist_add_head(&new->node, &db->list);
1056 cnt++;
1057 }
1058 }
765a5e0c 1059 local_irq_enable();
1be1cb7b
TG
1060
1061 printk(KERN_DEBUG "ODEBUG: %d of %d active objects replaced\n", cnt,
1062 obj_pool_used);
1be1cb7b
TG
1063 return 0;
1064free:
b67bfe0d 1065 hlist_for_each_entry_safe(obj, tmp, &objects, node) {
1be1cb7b
TG
1066 hlist_del(&obj->node);
1067 kmem_cache_free(obj_cache, obj);
1068 }
1069 return -ENOMEM;
1070}
1071
3ac7fe5a
TG
1072/*
1073 * Called after the kmem_caches are functional to setup a dedicated
1074 * cache pool, which has the SLAB_DEBUG_OBJECTS flag set. This flag
1075 * prevents that the debug code is called on kmem_cache_free() for the
1076 * debug tracker objects to avoid recursive calls.
1077 */
1078void __init debug_objects_mem_init(void)
1079{
1080 if (!debug_objects_enabled)
1081 return;
1082
1083 obj_cache = kmem_cache_create("debug_objects_cache",
1084 sizeof (struct debug_obj), 0,
1085 SLAB_DEBUG_OBJECTS, NULL);
1086
1be1cb7b 1087 if (!obj_cache || debug_objects_replace_static_objects()) {
3ac7fe5a 1088 debug_objects_enabled = 0;
1be1cb7b
TG
1089 if (obj_cache)
1090 kmem_cache_destroy(obj_cache);
d7ffef28 1091 pr_warn("ODEBUG: out of memory.\n");
1be1cb7b 1092 } else
3ac7fe5a
TG
1093 debug_objects_selftest();
1094}