blob: ea4c7371ff941ec79d9af6413fbf46bfa77a836b [file] [log] [blame]
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -07001/*
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>
Alexey Dobriyand43c36d2009-10-07 17:09:06 +040012#include <linux/sched.h>
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -070013#include <linux/seq_file.h>
14#include <linux/debugfs.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090015#include <linux/slab.h>
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -070016#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;
Thomas Gleixneraef9cb02009-11-17 18:11:28 +010030 raw_spinlock_t lock;
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -070031};
32
33static struct debug_bucket obj_hash[ODEBUG_HASH_SIZE];
34
Thomas Gleixner1be1cb72009-03-16 18:53:18 +010035static struct debug_obj obj_static_pool[ODEBUG_POOL_SIZE] __initdata;
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -070036
Thomas Gleixneraef9cb02009-11-17 18:11:28 +010037static DEFINE_RAW_SPINLOCK(pool_lock);
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -070038
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;
Ingo Molnar3ae70202008-11-26 10:02:00 +010050static int debug_objects_enabled __read_mostly
51 = CONFIG_DEBUG_OBJECTS_ENABLE_DEFAULT;
52
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -070053static struct debug_obj_descr *descr_test __read_mostly;
54
Thomas Gleixner337fff82009-03-16 10:04:53 +010055static void free_obj_work(struct work_struct *work);
56static DECLARE_WORK(debug_obj_work, free_obj_work);
57
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -070058static int __init enable_object_debug(char *str)
59{
60 debug_objects_enabled = 1;
61 return 0;
62}
Kyle McMartin3e8ebb52009-03-01 20:41:41 -050063
64static int __init disable_object_debug(char *str)
65{
66 debug_objects_enabled = 0;
67 return 0;
68}
69
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -070070early_param("debug_objects", enable_object_debug);
Kyle McMartin3e8ebb52009-03-01 20:41:41 -050071early_param("no_debug_objects", disable_object_debug);
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -070072
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
Thomas Gleixner1fda1072012-04-11 11:52:18 +020082static void fill_pool(void)
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -070083{
84 gfp_t gfp = GFP_ATOMIC | __GFP_NORETRY | __GFP_NOWARN;
85 struct debug_obj *new;
Vegard Nossum50db04dd2008-06-15 00:47:36 +020086 unsigned long flags;
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -070087
88 if (likely(obj_pool_free >= ODEBUG_POOL_MIN_LEVEL))
Thomas Gleixner1fda1072012-04-11 11:52:18 +020089 return;
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -070090
91 if (unlikely(!obj_cache))
Thomas Gleixner1fda1072012-04-11 11:52:18 +020092 return;
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -070093
94 while (obj_pool_free < ODEBUG_POOL_MIN_LEVEL) {
95
96 new = kmem_cache_zalloc(obj_cache, gfp);
97 if (!new)
Dan Carpenter33408082012-04-18 14:28:10 +030098 return;
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -070099
Thomas Gleixneraef9cb02009-11-17 18:11:28 +0100100 raw_spin_lock_irqsave(&pool_lock, flags);
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -0700101 hlist_add_head(&new->node, &obj_pool);
102 obj_pool_free++;
Thomas Gleixneraef9cb02009-11-17 18:11:28 +0100103 raw_spin_unlock_irqrestore(&pool_lock, flags);
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -0700104 }
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -0700105}
106
107/*
108 * Lookup an object in the hash bucket.
109 */
110static struct debug_obj *lookup_object(void *addr, struct debug_bucket *b)
111{
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -0700112 struct debug_obj *obj;
113 int cnt = 0;
114
Sasha Levinb67bfe02013-02-27 17:06:00 -0800115 hlist_for_each_entry(obj, &b->list, node) {
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -0700116 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/*
Vegard Nossum50db04dd2008-06-15 00:47:36 +0200127 * Allocate a new object. If the pool is empty, switch off the debugger.
Vegard Nossum673d62cc2008-08-31 23:39:21 +0200128 * Must be called with interrupts disabled.
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -0700129 */
130static struct debug_obj *
131alloc_object(void *addr, struct debug_bucket *b, struct debug_obj_descr *descr)
132{
133 struct debug_obj *obj = NULL;
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -0700134
Thomas Gleixneraef9cb02009-11-17 18:11:28 +0100135 raw_spin_lock(&pool_lock);
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -0700136 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;
Mathieu Desnoyersa5d8e462010-04-17 08:48:38 -0400142 obj->astate = 0;
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -0700143 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 }
Thomas Gleixneraef9cb02009-11-17 18:11:28 +0100155 raw_spin_unlock(&pool_lock);
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -0700156
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -0700157 return obj;
158}
159
160/*
Thomas Gleixner337fff82009-03-16 10:04:53 +0100161 * workqueue function to free objects.
162 */
163static void free_obj_work(struct work_struct *work)
164{
165 struct debug_obj *obj;
166 unsigned long flags;
167
Thomas Gleixneraef9cb02009-11-17 18:11:28 +0100168 raw_spin_lock_irqsave(&pool_lock, flags);
Thomas Gleixner337fff82009-03-16 10:04:53 +0100169 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 */
Thomas Gleixneraef9cb02009-11-17 18:11:28 +0100177 raw_spin_unlock_irqrestore(&pool_lock, flags);
Thomas Gleixner337fff82009-03-16 10:04:53 +0100178 kmem_cache_free(obj_cache, obj);
Thomas Gleixneraef9cb02009-11-17 18:11:28 +0100179 raw_spin_lock_irqsave(&pool_lock, flags);
Thomas Gleixner337fff82009-03-16 10:04:53 +0100180 }
Thomas Gleixneraef9cb02009-11-17 18:11:28 +0100181 raw_spin_unlock_irqrestore(&pool_lock, flags);
Thomas Gleixner337fff82009-03-16 10:04:53 +0100182}
183
184/*
185 * Put the object back into the pool and schedule work to free objects
186 * if necessary.
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -0700187 */
188static void free_object(struct debug_obj *obj)
189{
Vegard Nossum673d62cc2008-08-31 23:39:21 +0200190 unsigned long flags;
Thomas Gleixner337fff82009-03-16 10:04:53 +0100191 int sched = 0;
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -0700192
Thomas Gleixneraef9cb02009-11-17 18:11:28 +0100193 raw_spin_lock_irqsave(&pool_lock, flags);
Thomas Gleixner337fff82009-03-16 10:04:53 +0100194 /*
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)
Xie XiuQid3773ba2013-11-12 15:09:49 -0800199 sched = keventd_up();
Thomas Gleixner337fff82009-03-16 10:04:53 +0100200 hlist_add_head(&obj->node, &obj_pool);
201 obj_pool_free++;
202 obj_pool_used--;
Thomas Gleixneraef9cb02009-11-17 18:11:28 +0100203 raw_spin_unlock_irqrestore(&pool_lock, flags);
Thomas Gleixner337fff82009-03-16 10:04:53 +0100204 if (sched)
205 schedule_work(&debug_obj_work);
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -0700206}
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;
Sasha Levinb67bfe02013-02-27 17:06:00 -0800215 struct hlist_node *tmp;
Vegard Nossum673d62cc2008-08-31 23:39:21 +0200216 HLIST_HEAD(freelist);
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -0700217 struct debug_obj *obj;
218 unsigned long flags;
219 int i;
220
Fabian Frederickd7ffef22014-06-04 16:06:00 -0700221 pr_warn("ODEBUG: Out of memory. ODEBUG disabled\n");
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -0700222
223 for (i = 0; i < ODEBUG_HASH_SIZE; i++, db++) {
Thomas Gleixneraef9cb02009-11-17 18:11:28 +0100224 raw_spin_lock_irqsave(&db->lock, flags);
Vegard Nossum673d62cc2008-08-31 23:39:21 +0200225 hlist_move_list(&db->list, &freelist);
Thomas Gleixneraef9cb02009-11-17 18:11:28 +0100226 raw_spin_unlock_irqrestore(&db->lock, flags);
Vegard Nossum673d62cc2008-08-31 23:39:21 +0200227
228 /* Now free them */
Sasha Levinb67bfe02013-02-27 17:06:00 -0800229 hlist_for_each_entry_safe(obj, tmp, &freelist, node) {
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -0700230 hlist_del(&obj->node);
231 free_object(obj);
232 }
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -0700233 }
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{
Stanislaw Gruszka99777282011-03-07 09:58:33 +0100250 struct debug_obj_descr *descr = obj->descr;
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -0700251 static int limit;
252
Stanislaw Gruszka99777282011-03-07 09:58:33 +0100253 if (limit < 5 && descr != descr_test) {
254 void *hint = descr->debug_hint ?
255 descr->debug_hint(obj->object) : NULL;
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -0700256 limit++;
Mathieu Desnoyersa5d8e462010-04-17 08:48:38 -0400257 WARN(1, KERN_ERR "ODEBUG: %s %s (active state %u) "
Stanislaw Gruszka99777282011-03-07 09:58:33 +0100258 "object type: %s hint: %pS\n",
Mathieu Desnoyersa5d8e462010-04-17 08:48:38 -0400259 msg, obj_states[obj->state], obj->astate,
Stanislaw Gruszka99777282011-03-07 09:58:33 +0100260 descr->name, hint);
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -0700261 }
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 */
Stephen Boydfeac18d2011-11-07 19:48:26 -0800269static int
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -0700270debug_object_fixup(int (*fixup)(void *addr, enum debug_obj_state state),
271 void * addr, enum debug_obj_state state)
272{
Stephen Boydfeac18d2011-11-07 19:48:26 -0800273 int fixed = 0;
274
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -0700275 if (fixup)
Stephen Boydfeac18d2011-11-07 19:48:26 -0800276 fixed = fixup(addr, state);
277 debug_objects_fixups += fixed;
278 return fixed;
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -0700279}
280
281static void debug_object_is_on_stack(void *addr, int onstack)
282{
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -0700283 int is_on_stack;
284 static int limit;
285
286 if (limit > 4)
287 return;
288
FUJITA Tomonori8b05c7e2008-07-23 21:26:53 -0700289 is_on_stack = object_is_on_stack(addr);
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -0700290 if (is_on_stack == onstack)
291 return;
292
293 limit++;
294 if (is_on_stack)
Fabian Frederickd7ffef22014-06-04 16:06:00 -0700295 pr_warn("ODEBUG: object is on stack, but not annotated\n");
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -0700296 else
Fabian Frederickd7ffef22014-06-04 16:06:00 -0700297 pr_warn("ODEBUG: object is not on stack, but annotated\n");
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -0700298 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
Vegard Nossum50db04dd2008-06-15 00:47:36 +0200309 fill_pool();
310
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -0700311 db = get_bucket((unsigned long) addr);
312
Thomas Gleixneraef9cb02009-11-17 18:11:28 +0100313 raw_spin_lock_irqsave(&db->lock, flags);
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -0700314
315 obj = lookup_object(addr, db);
316 if (!obj) {
317 obj = alloc_object(addr, db, descr);
318 if (!obj) {
319 debug_objects_enabled = 0;
Thomas Gleixneraef9cb02009-11-17 18:11:28 +0100320 raw_spin_unlock_irqrestore(&db->lock, flags);
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -0700321 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;
Thomas Gleixneraef9cb02009-11-17 18:11:28 +0100337 raw_spin_unlock_irqrestore(&db->lock, flags);
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -0700338 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
Thomas Gleixneraef9cb02009-11-17 18:11:28 +0100348 raw_spin_unlock_irqrestore(&db->lock, flags);
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -0700349}
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
Paul E. McKenneyb778ae22013-04-23 12:51:11 -0700382 * Returns 0 for success, -EINVAL for check failed.
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -0700383 */
Paul E. McKenneyb778ae22013-04-23 12:51:11 -0700384int debug_object_activate(void *addr, struct debug_obj_descr *descr)
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -0700385{
386 enum debug_obj_state state;
387 struct debug_bucket *db;
388 struct debug_obj *obj;
389 unsigned long flags;
Paul E. McKenneyb778ae22013-04-23 12:51:11 -0700390 int ret;
Stephen Boydfeac18d2011-11-07 19:48:26 -0800391 struct debug_obj o = { .object = addr,
392 .state = ODEBUG_STATE_NOTAVAILABLE,
393 .descr = descr };
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -0700394
395 if (!debug_objects_enabled)
Paul E. McKenneyb778ae22013-04-23 12:51:11 -0700396 return 0;
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -0700397
398 db = get_bucket((unsigned long) addr);
399
Thomas Gleixneraef9cb02009-11-17 18:11:28 +0100400 raw_spin_lock_irqsave(&db->lock, flags);
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -0700401
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;
Paul E. McKenneyb778ae22013-04-23 12:51:11 -0700408 ret = 0;
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -0700409 break;
410
411 case ODEBUG_STATE_ACTIVE:
412 debug_print_object(obj, "activate");
413 state = obj->state;
Thomas Gleixneraef9cb02009-11-17 18:11:28 +0100414 raw_spin_unlock_irqrestore(&db->lock, flags);
Paul E. McKenneyb778ae22013-04-23 12:51:11 -0700415 ret = debug_object_fixup(descr->fixup_activate, addr, state);
416 return ret ? -EINVAL : 0;
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -0700417
418 case ODEBUG_STATE_DESTROYED:
419 debug_print_object(obj, "activate");
Paul E. McKenneyb778ae22013-04-23 12:51:11 -0700420 ret = -EINVAL;
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -0700421 break;
422 default:
Paul E. McKenneyb778ae22013-04-23 12:51:11 -0700423 ret = 0;
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -0700424 break;
425 }
Thomas Gleixneraef9cb02009-11-17 18:11:28 +0100426 raw_spin_unlock_irqrestore(&db->lock, flags);
Paul E. McKenneyb778ae22013-04-23 12:51:11 -0700427 return ret;
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -0700428 }
429
Thomas Gleixneraef9cb02009-11-17 18:11:28 +0100430 raw_spin_unlock_irqrestore(&db->lock, flags);
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -0700431 /*
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 */
Stephen Boydfeac18d2011-11-07 19:48:26 -0800436 if (debug_object_fixup(descr->fixup_activate, addr,
Paul E. McKenneyb778ae22013-04-23 12:51:11 -0700437 ODEBUG_STATE_NOTAVAILABLE)) {
Stephen Boydfeac18d2011-11-07 19:48:26 -0800438 debug_print_object(&o, "activate");
Paul E. McKenneyb778ae22013-04-23 12:51:11 -0700439 return -EINVAL;
440 }
441 return 0;
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -0700442}
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
Thomas Gleixneraef9cb02009-11-17 18:11:28 +0100460 raw_spin_lock_irqsave(&db->lock, flags);
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -0700461
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:
Mathieu Desnoyersa5d8e462010-04-17 08:48:38 -0400468 if (!obj->astate)
469 obj->state = ODEBUG_STATE_INACTIVE;
470 else
471 debug_print_object(obj, "deactivate");
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -0700472 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
Thomas Gleixneraef9cb02009-11-17 18:11:28 +0100488 raw_spin_unlock_irqrestore(&db->lock, flags);
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -0700489}
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
Thomas Gleixneraef9cb02009-11-17 18:11:28 +0100508 raw_spin_lock_irqsave(&db->lock, flags);
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -0700509
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;
Thomas Gleixneraef9cb02009-11-17 18:11:28 +0100523 raw_spin_unlock_irqrestore(&db->lock, flags);
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -0700524 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:
Thomas Gleixneraef9cb02009-11-17 18:11:28 +0100534 raw_spin_unlock_irqrestore(&db->lock, flags);
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -0700535}
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
Thomas Gleixneraef9cb02009-11-17 18:11:28 +0100554 raw_spin_lock_irqsave(&db->lock, flags);
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -0700555
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;
Thomas Gleixneraef9cb02009-11-17 18:11:28 +0100564 raw_spin_unlock_irqrestore(&db->lock, flags);
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -0700565 debug_object_fixup(descr->fixup_free, addr, state);
566 return;
567 default:
568 hlist_del(&obj->node);
Thomas Gleixneraef9cb02009-11-17 18:11:28 +0100569 raw_spin_unlock_irqrestore(&db->lock, flags);
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -0700570 free_object(obj);
Vegard Nossum673d62cc2008-08-31 23:39:21 +0200571 return;
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -0700572 }
573out_unlock:
Thomas Gleixneraef9cb02009-11-17 18:11:28 +0100574 raw_spin_unlock_irqrestore(&db->lock, flags);
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -0700575}
576
Mathieu Desnoyersa5d8e462010-04-17 08:48:38 -0400577/**
Christine Chanb84d4352011-11-07 19:48:27 -0800578 * 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
615/**
Mathieu Desnoyersa5d8e462010-04-17 08:48:38 -0400616 * 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
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -0700662#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;
Sasha Levinb67bfe02013-02-27 17:06:00 -0800666 struct hlist_node *tmp;
Vegard Nossum673d62cc2008-08-31 23:39:21 +0200667 HLIST_HEAD(freelist);
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -0700668 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;
Thomas Gleixneraef9cb02009-11-17 18:11:28 +0100685 raw_spin_lock_irqsave(&db->lock, flags);
Sasha Levinb67bfe02013-02-27 17:06:00 -0800686 hlist_for_each_entry_safe(obj, tmp, &db->list, node) {
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -0700687 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;
Thomas Gleixneraef9cb02009-11-17 18:11:28 +0100697 raw_spin_unlock_irqrestore(&db->lock, flags);
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -0700698 debug_object_fixup(descr->fixup_free,
699 (void *) oaddr, state);
700 goto repeat;
701 default:
702 hlist_del(&obj->node);
Vegard Nossum673d62cc2008-08-31 23:39:21 +0200703 hlist_add_head(&obj->node, &freelist);
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -0700704 break;
705 }
706 }
Thomas Gleixneraef9cb02009-11-17 18:11:28 +0100707 raw_spin_unlock_irqrestore(&db->lock, flags);
Vegard Nossum673d62cc2008-08-31 23:39:21 +0200708
709 /* Now free them */
Sasha Levinb67bfe02013-02-27 17:06:00 -0800710 hlist_for_each_entry_safe(obj, tmp, &freelist, node) {
Vegard Nossum673d62cc2008-08-31 23:39:21 +0200711 hlist_del(&obj->node);
712 free_object(obj);
713 }
714
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -0700715 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);
Stephen Boyd9f78ff02012-03-05 14:59:17 -0800825 return 0;
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -0700826 }
Stephen Boyd9f78ff02012-03-05 14:59:17 -0800827 return 1;
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -0700828
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
Henrik Kretzschmar1fb2f772010-03-26 20:38:35 +0100875static int __init
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -0700876check_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
Thomas Gleixneraef9cb02009-11-17 18:11:28 +0100885 raw_spin_lock_irqsave(&db->lock, flags);
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -0700886
887 obj = lookup_object(addr, db);
888 if (!obj && state != ODEBUG_STATE_NONE) {
Arjan van de Ven5cd2b452008-07-25 19:45:39 -0700889 WARN(1, KERN_ERR "ODEBUG: selftest object not found\n");
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -0700890 goto out;
891 }
892 if (obj && obj->state != state) {
Arjan van de Ven5cd2b452008-07-25 19:45:39 -0700893 WARN(1, KERN_ERR "ODEBUG: selftest wrong state: %d != %d\n",
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -0700894 obj->state, state);
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -0700895 goto out;
896 }
897 if (fixups != debug_objects_fixups) {
Arjan van de Ven5cd2b452008-07-25 19:45:39 -0700898 WARN(1, KERN_ERR "ODEBUG: selftest fixups failed %d != %d\n",
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -0700899 fixups, debug_objects_fixups);
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -0700900 goto out;
901 }
902 if (warnings != debug_objects_warnings) {
Arjan van de Ven5cd2b452008-07-25 19:45:39 -0700903 WARN(1, KERN_ERR "ODEBUG: selftest warnings failed %d != %d\n",
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -0700904 warnings, debug_objects_warnings);
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -0700905 goto out;
906 }
907 res = 0;
908out:
Thomas Gleixneraef9cb02009-11-17 18:11:28 +0100909 raw_spin_unlock_irqrestore(&db->lock, flags);
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -0700910 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);
Stephen Boyd9f78ff02012-03-05 14:59:17 -0800966 if (check_results(&obj, ODEBUG_STATE_ACTIVE, fixups, warnings))
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -0700967 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
Fabian Frederickd7ffef22014-06-04 16:06:00 -0700986 pr_info("ODEBUG: selftest passed\n");
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -0700987
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++)
Thomas Gleixneraef9cb02009-11-17 18:11:28 +01001009 raw_spin_lock_init(&obj_hash[i].lock);
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -07001010
1011 for (i = 0; i < ODEBUG_POOL_SIZE; i++)
1012 hlist_add_head(&obj_static_pool[i].node, &obj_pool);
1013}
1014
1015/*
Thomas Gleixner1be1cb72009-03-16 18:53:18 +01001016 * Convert the statically allocated objects to dynamic ones:
1017 */
Henrik Kretzschmar1fb2f772010-03-26 20:38:35 +01001018static int __init debug_objects_replace_static_objects(void)
Thomas Gleixner1be1cb72009-03-16 18:53:18 +01001019{
1020 struct debug_bucket *db = obj_hash;
Sasha Levinb67bfe02013-02-27 17:06:00 -08001021 struct hlist_node *tmp;
Thomas Gleixner1be1cb72009-03-16 18:53:18 +01001022 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 */
Sasha Levinb67bfe02013-02-27 17:06:00 -08001041 hlist_for_each_entry_safe(obj, tmp, &obj_pool, node)
Thomas Gleixner1be1cb72009-03-16 18:53:18 +01001042 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
Sasha Levinb67bfe02013-02-27 17:06:00 -08001050 hlist_for_each_entry(obj, &objects, node) {
Thomas Gleixner1be1cb72009-03-16 18:53:18 +01001051 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 }
Thomas Gleixner765a5e02012-04-11 11:54:27 +02001059 local_irq_enable();
Thomas Gleixner1be1cb72009-03-16 18:53:18 +01001060
1061 printk(KERN_DEBUG "ODEBUG: %d of %d active objects replaced\n", cnt,
1062 obj_pool_used);
Thomas Gleixner1be1cb72009-03-16 18:53:18 +01001063 return 0;
1064free:
Sasha Levinb67bfe02013-02-27 17:06:00 -08001065 hlist_for_each_entry_safe(obj, tmp, &objects, node) {
Thomas Gleixner1be1cb72009-03-16 18:53:18 +01001066 hlist_del(&obj->node);
1067 kmem_cache_free(obj_cache, obj);
1068 }
1069 return -ENOMEM;
1070}
1071
1072/*
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -07001073 * 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
Thomas Gleixner1be1cb72009-03-16 18:53:18 +01001087 if (!obj_cache || debug_objects_replace_static_objects()) {
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -07001088 debug_objects_enabled = 0;
Thomas Gleixner1be1cb72009-03-16 18:53:18 +01001089 if (obj_cache)
1090 kmem_cache_destroy(obj_cache);
Fabian Frederickd7ffef22014-06-04 16:06:00 -07001091 pr_warn("ODEBUG: out of memory.\n");
Thomas Gleixner1be1cb72009-03-16 18:53:18 +01001092 } else
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -07001093 debug_objects_selftest();
1094}