blob: a899f10c93654c2cbe605d38cd163f309091ebe4 [file] [log] [blame]
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -07001#ifndef _LINUX_DEBUGOBJECTS_H
2#define _LINUX_DEBUGOBJECTS_H
3
4#include <linux/list.h>
5#include <linux/spinlock.h>
6
7enum debug_obj_state {
8 ODEBUG_STATE_NONE,
9 ODEBUG_STATE_INIT,
10 ODEBUG_STATE_INACTIVE,
11 ODEBUG_STATE_ACTIVE,
12 ODEBUG_STATE_DESTROYED,
13 ODEBUG_STATE_NOTAVAILABLE,
14 ODEBUG_STATE_MAX,
15};
16
17struct debug_obj_descr;
18
19/**
20 * struct debug_obj - representaion of an tracked object
21 * @node: hlist node to link the object into the tracker list
22 * @state: tracked object state
Mathieu Desnoyersa5d8e462010-04-17 08:48:38 -040023 * @astate: current active state
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -070024 * @object: pointer to the real object
25 * @descr: pointer to an object type specific debug description structure
26 */
27struct debug_obj {
28 struct hlist_node node;
29 enum debug_obj_state state;
Mathieu Desnoyersa5d8e462010-04-17 08:48:38 -040030 unsigned int astate;
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -070031 void *object;
32 struct debug_obj_descr *descr;
33};
34
35/**
36 * struct debug_obj_descr - object type specific debug description structure
Stanislaw Gruszka99777282011-03-07 09:58:33 +010037 *
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -070038 * @name: name of the object typee
Stanislaw Gruszka99777282011-03-07 09:58:33 +010039 * @debug_hint: function returning address, which have associated
40 * kernel symbol, to allow identify the object
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -070041 * @fixup_init: fixup function, which is called when the init check
Du, Changbinb1e4d9d2016-05-19 17:09:20 -070042 * fails. All fixup functions must return true if fixup
43 * was successful, otherwise return false
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -070044 * @fixup_activate: fixup function, which is called when the activate check
45 * fails
46 * @fixup_destroy: fixup function, which is called when the destroy check
47 * fails
48 * @fixup_free: fixup function, which is called when the free check
49 * fails
Christine Chanb84d4352011-11-07 19:48:27 -080050 * @fixup_assert_init: fixup function, which is called when the assert_init
51 * check fails
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -070052 */
53struct debug_obj_descr {
54 const char *name;
Du, Changbinb1e4d9d2016-05-19 17:09:20 -070055 void *(*debug_hint)(void *addr);
56 bool (*fixup_init)(void *addr, enum debug_obj_state state);
57 bool (*fixup_activate)(void *addr, enum debug_obj_state state);
58 bool (*fixup_destroy)(void *addr, enum debug_obj_state state);
59 bool (*fixup_free)(void *addr, enum debug_obj_state state);
60 bool (*fixup_assert_init)(void *addr, enum debug_obj_state state);
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -070061};
62
63#ifdef CONFIG_DEBUG_OBJECTS
64extern void debug_object_init (void *addr, struct debug_obj_descr *descr);
65extern void
66debug_object_init_on_stack(void *addr, struct debug_obj_descr *descr);
Paul E. McKenneyb778ae22013-04-23 12:51:11 -070067extern int debug_object_activate (void *addr, struct debug_obj_descr *descr);
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -070068extern void debug_object_deactivate(void *addr, struct debug_obj_descr *descr);
69extern void debug_object_destroy (void *addr, struct debug_obj_descr *descr);
70extern void debug_object_free (void *addr, struct debug_obj_descr *descr);
Christine Chanb84d4352011-11-07 19:48:27 -080071extern void debug_object_assert_init(void *addr, struct debug_obj_descr *descr);
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -070072
Mathieu Desnoyersa5d8e462010-04-17 08:48:38 -040073/*
74 * Active state:
75 * - Set at 0 upon initialization.
76 * - Must return to 0 before deactivation.
77 */
78extern void
79debug_object_active_state(void *addr, struct debug_obj_descr *descr,
80 unsigned int expect, unsigned int next);
81
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -070082extern void debug_objects_early_init(void);
83extern void debug_objects_mem_init(void);
84#else
85static inline void
86debug_object_init (void *addr, struct debug_obj_descr *descr) { }
87static inline void
88debug_object_init_on_stack(void *addr, struct debug_obj_descr *descr) { }
Paul E. McKenneyb778ae22013-04-23 12:51:11 -070089static inline int
90debug_object_activate (void *addr, struct debug_obj_descr *descr) { return 0; }
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -070091static inline void
92debug_object_deactivate(void *addr, struct debug_obj_descr *descr) { }
93static inline void
94debug_object_destroy (void *addr, struct debug_obj_descr *descr) { }
95static inline void
96debug_object_free (void *addr, struct debug_obj_descr *descr) { }
Christine Chanb84d4352011-11-07 19:48:27 -080097static inline void
98debug_object_assert_init(void *addr, struct debug_obj_descr *descr) { }
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -070099
100static inline void debug_objects_early_init(void) { }
101static inline void debug_objects_mem_init(void) { }
102#endif
103
104#ifdef CONFIG_DEBUG_OBJECTS_FREE
105extern void debug_check_no_obj_freed(const void *address, unsigned long size);
106#else
107static inline void
108debug_check_no_obj_freed(const void *address, unsigned long size) { }
109#endif
110
111#endif