1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _DYNAMIC_DEBUG_H
3 #define _DYNAMIC_DEBUG_H
5 #if defined(CONFIG_JUMP_LABEL)
6 #include <linux/jump_label.h>
10 * An instance of this structure is created in a special
11 * ELF section at every dynamic debug callsite. At runtime,
12 * the special section is treated as an array of these.
16 * These fields are used to drive the user interface
17 * for selecting and displaying debug callsites.
23 unsigned int lineno
:18;
25 * The flags field controls the behaviour at the callsite.
26 * The bits here are changed dynamically when the user
27 * writes commands to <debugfs>/dynamic_debug/control
29 #define _DPRINTK_FLAGS_NONE 0
30 #define _DPRINTK_FLAGS_PRINT (1<<0) /* printk() a message using the format */
31 #define _DPRINTK_FLAGS_INCL_MODNAME (1<<1)
32 #define _DPRINTK_FLAGS_INCL_FUNCNAME (1<<2)
33 #define _DPRINTK_FLAGS_INCL_LINENO (1<<3)
34 #define _DPRINTK_FLAGS_INCL_TID (1<<4)
36 #define _DPRINTK_FLAGS_DEFAULT _DPRINTK_FLAGS_PRINT
38 #define _DPRINTK_FLAGS_DEFAULT 0
41 #ifdef CONFIG_JUMP_LABEL
43 struct static_key_true dd_key_true
;
44 struct static_key_false dd_key_false
;
47 } __attribute__((aligned(8)));
51 #if defined(CONFIG_DYNAMIC_DEBUG)
52 int ddebug_add_module(struct _ddebug
*tab
, unsigned int n
,
54 extern int ddebug_remove_module(const char *mod_name
);
56 void __dynamic_pr_debug(struct _ddebug
*descriptor
, const char *fmt
, ...);
58 extern int ddebug_dyndbg_module_param_cb(char *param
, char *val
,
64 void __dynamic_dev_dbg(struct _ddebug
*descriptor
, const struct device
*dev
,
65 const char *fmt
, ...);
70 void __dynamic_netdev_dbg(struct _ddebug
*descriptor
,
71 const struct net_device
*dev
,
72 const char *fmt
, ...);
77 void __dynamic_ibdev_dbg(struct _ddebug
*descriptor
,
78 const struct ib_device
*ibdev
,
79 const char *fmt
, ...);
81 #define DEFINE_DYNAMIC_DEBUG_METADATA(name, fmt) \
82 static struct _ddebug __aligned(8) \
83 __attribute__((section("__verbose"))) name = { \
84 .modname = KBUILD_MODNAME, \
85 .function = __func__, \
86 .filename = __FILE__, \
89 .flags = _DPRINTK_FLAGS_DEFAULT, \
93 #ifdef CONFIG_JUMP_LABEL
97 #define _DPRINTK_KEY_INIT .key.dd_key_true = (STATIC_KEY_TRUE_INIT)
99 #define DYNAMIC_DEBUG_BRANCH(descriptor) \
100 static_branch_likely(&descriptor.key.dd_key_true)
102 #define _DPRINTK_KEY_INIT .key.dd_key_false = (STATIC_KEY_FALSE_INIT)
104 #define DYNAMIC_DEBUG_BRANCH(descriptor) \
105 static_branch_unlikely(&descriptor.key.dd_key_false)
108 #else /* !HAVE_JUMP_LABEL */
110 #define _DPRINTK_KEY_INIT
113 #define DYNAMIC_DEBUG_BRANCH(descriptor) \
114 likely(descriptor.flags & _DPRINTK_FLAGS_PRINT)
116 #define DYNAMIC_DEBUG_BRANCH(descriptor) \
117 unlikely(descriptor.flags & _DPRINTK_FLAGS_PRINT)
122 #define __dynamic_func_call(id, fmt, func, ...) do { \
123 DEFINE_DYNAMIC_DEBUG_METADATA(id, fmt); \
124 if (DYNAMIC_DEBUG_BRANCH(id)) \
125 func(&id, ##__VA_ARGS__); \
128 #define __dynamic_func_call_no_desc(id, fmt, func, ...) do { \
129 DEFINE_DYNAMIC_DEBUG_METADATA(id, fmt); \
130 if (DYNAMIC_DEBUG_BRANCH(id)) \
135 * "Factory macro" for generating a call to func, guarded by a
136 * DYNAMIC_DEBUG_BRANCH. The dynamic debug decriptor will be
137 * initialized using the fmt argument. The function will be called with
138 * the address of the descriptor as first argument, followed by all
139 * the varargs. Note that fmt is repeated in invocations of this
142 #define _dynamic_func_call(fmt, func, ...) \
143 __dynamic_func_call(__UNIQUE_ID(ddebug), fmt, func, ##__VA_ARGS__)
145 * A variant that does the same, except that the descriptor is not
146 * passed as the first argument to the function; it is only called
147 * with precisely the macro's varargs.
149 #define _dynamic_func_call_no_desc(fmt, func, ...) \
150 __dynamic_func_call_no_desc(__UNIQUE_ID(ddebug), fmt, func, ##__VA_ARGS__)
152 #define dynamic_pr_debug(fmt, ...) \
153 _dynamic_func_call(fmt, __dynamic_pr_debug, \
154 pr_fmt(fmt), ##__VA_ARGS__)
156 #define dynamic_dev_dbg(dev, fmt, ...) \
157 _dynamic_func_call(fmt,__dynamic_dev_dbg, \
158 dev, fmt, ##__VA_ARGS__)
160 #define dynamic_netdev_dbg(dev, fmt, ...) \
161 _dynamic_func_call(fmt, __dynamic_netdev_dbg, \
162 dev, fmt, ##__VA_ARGS__)
164 #define dynamic_ibdev_dbg(dev, fmt, ...) \
165 _dynamic_func_call(fmt, __dynamic_ibdev_dbg, \
166 dev, fmt, ##__VA_ARGS__)
168 #define dynamic_hex_dump(prefix_str, prefix_type, rowsize, \
169 groupsize, buf, len, ascii) \
170 _dynamic_func_call_no_desc(__builtin_constant_p(prefix_str) ? prefix_str : "hexdump", \
172 KERN_DEBUG, prefix_str, prefix_type, \
173 rowsize, groupsize, buf, len, ascii)
177 #include <linux/string.h>
178 #include <linux/errno.h>
180 static inline int ddebug_add_module(struct _ddebug
*tab
, unsigned int n
,
186 static inline int ddebug_remove_module(const char *mod
)
191 static inline int ddebug_dyndbg_module_param_cb(char *param
, char *val
,
194 if (strstr(param
, "dyndbg")) {
195 /* avoid pr_warn(), which wants pr_fmt() fully defined */
196 printk(KERN_WARNING
"dyndbg param is supported only in "
197 "CONFIG_DYNAMIC_DEBUG builds\n");
198 return 0; /* allow and ignore */
203 #define dynamic_pr_debug(fmt, ...) \
204 do { if (0) printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__); } while (0)
205 #define dynamic_dev_dbg(dev, fmt, ...) \
206 do { if (0) dev_printk(KERN_DEBUG, dev, fmt, ##__VA_ARGS__); } while (0)
207 #define dynamic_hex_dump(prefix_str, prefix_type, rowsize, \
208 groupsize, buf, len, ascii) \
210 print_hex_dump(KERN_DEBUG, prefix_str, prefix_type, \
211 rowsize, groupsize, buf, len, ascii); \