blob: fc5d270751a7a532703a6b8e7efcb6ac94478219 [file] [log] [blame]
Jason Barone9d376f2009-02-05 11:51:38 -05001/*
2 * lib/dynamic_debug.c
3 *
4 * make pr_debug()/dev_dbg() calls runtime configurable based upon their
5 * source module.
6 *
7 * Copyright (C) 2008 Jason Baron <jbaron@redhat.com>
8 * By Greg Banks <gnb@melbourne.sgi.com>
9 * Copyright (c) 2008 Silicon Graphics Inc. All Rights Reserved.
Bart Van Assche8ba6ebf2011-01-23 17:17:24 +010010 * Copyright (C) 2011 Bart Van Assche. All Rights Reserved.
Jason Barone9d376f2009-02-05 11:51:38 -050011 */
12
Joe Perches4ad275e2011-08-11 14:36:33 -040013#define pr_fmt(fmt) KBUILD_MODNAME ":%s: " fmt, __func__
14
Jason Barone9d376f2009-02-05 11:51:38 -050015#include <linux/kernel.h>
16#include <linux/module.h>
Jason Barone9d376f2009-02-05 11:51:38 -050017#include <linux/mutex.h>
Jason Barone9d376f2009-02-05 11:51:38 -050018#include <linux/seq_file.h>
Jason Barone9d376f2009-02-05 11:51:38 -050019#include <linux/ctype.h>
Jason Barone9d376f2009-02-05 11:51:38 -050020#include <linux/dynamic_debug.h>
21#include <linux/debugfs.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090022#include <linux/slab.h>
Bart Van Assche8ba6ebf2011-01-23 17:17:24 +010023#include <linux/hardirq.h>
Greg Kroah-Hartmane8d97922011-02-03 15:59:58 -080024#include <linux/sched.h>
Jason Baronffa10cb2011-08-11 14:36:48 -040025#include <linux/netdevice.h>
Jason Barone9d376f2009-02-05 11:51:38 -050026
27extern struct _ddebug __start___verbose[];
28extern struct _ddebug __stop___verbose[];
29
Jason Barone9d376f2009-02-05 11:51:38 -050030struct ddebug_table {
31 struct list_head link;
32 char *mod_name;
33 unsigned int num_ddebugs;
Jason Barone9d376f2009-02-05 11:51:38 -050034 struct _ddebug *ddebugs;
35};
36
37struct ddebug_query {
38 const char *filename;
39 const char *module;
40 const char *function;
41 const char *format;
42 unsigned int first_lineno, last_lineno;
43};
44
45struct ddebug_iter {
46 struct ddebug_table *table;
47 unsigned int idx;
48};
49
50static DEFINE_MUTEX(ddebug_lock);
51static LIST_HEAD(ddebug_tables);
52static int verbose = 0;
Jim Cromie74df1382011-12-19 17:12:24 -050053module_param(verbose, int, 0644);
Jason Barone9d376f2009-02-05 11:51:38 -050054
55/* Return the last part of a pathname */
56static inline const char *basename(const char *path)
57{
58 const char *tail = strrchr(path, '/');
59 return tail ? tail+1 : path;
60}
61
Jim Cromie2b678312011-12-19 17:13:12 -050062/* Return the path relative to source root */
63static inline const char *trim_prefix(const char *path)
64{
65 int skip = strlen(__FILE__) - strlen("lib/dynamic_debug.c");
66
67 if (strncmp(path, __FILE__, skip))
68 skip = 0; /* prefix mismatch, don't skip */
69
70 return path + skip;
71}
72
Bart Van Assche8ba6ebf2011-01-23 17:17:24 +010073static struct { unsigned flag:8; char opt_char; } opt_array[] = {
74 { _DPRINTK_FLAGS_PRINT, 'p' },
75 { _DPRINTK_FLAGS_INCL_MODNAME, 'm' },
76 { _DPRINTK_FLAGS_INCL_FUNCNAME, 'f' },
77 { _DPRINTK_FLAGS_INCL_LINENO, 'l' },
78 { _DPRINTK_FLAGS_INCL_TID, 't' },
Jim Cromie5ca7d2a2011-12-19 17:12:44 -050079 { _DPRINTK_FLAGS_NONE, '_' },
Bart Van Assche8ba6ebf2011-01-23 17:17:24 +010080};
81
Jason Barone9d376f2009-02-05 11:51:38 -050082/* format a string into buf[] which describes the _ddebug's flags */
83static char *ddebug_describe_flags(struct _ddebug *dp, char *buf,
84 size_t maxlen)
85{
86 char *p = buf;
Bart Van Assche8ba6ebf2011-01-23 17:17:24 +010087 int i;
Jason Barone9d376f2009-02-05 11:51:38 -050088
Jim Cromie5ca7d2a2011-12-19 17:12:44 -050089 BUG_ON(maxlen < 6);
Bart Van Assche8ba6ebf2011-01-23 17:17:24 +010090 for (i = 0; i < ARRAY_SIZE(opt_array); ++i)
91 if (dp->flags & opt_array[i].flag)
92 *p++ = opt_array[i].opt_char;
Jason Barone9d376f2009-02-05 11:51:38 -050093 if (p == buf)
Jim Cromie5ca7d2a2011-12-19 17:12:44 -050094 *p++ = '_';
Jason Barone9d376f2009-02-05 11:51:38 -050095 *p = '\0';
96
97 return buf;
98}
99
Jim Cromieb8ccd5d2012-04-27 14:30:32 -0600100#define vpr_info(fmt, ...) \
101 if (verbose) do { pr_info(fmt, ##__VA_ARGS__); } while (0)
102
103#define vpr_info_dq(q, msg) \
104do { \
105 /* trim last char off format print */ \
106 vpr_info("%s: func=\"%s\" file=\"%s\" " \
107 "module=\"%s\" format=\"%.*s\" " \
108 "lineno=%u-%u", \
109 msg, \
110 q->function ? q->function : "", \
111 q->filename ? q->filename : "", \
112 q->module ? q->module : "", \
113 (int)(q->format ? strlen(q->format) - 1 : 0), \
114 q->format ? q->format : "", \
115 q->first_lineno, q->last_lineno); \
Jim Cromie574b3722011-12-19 17:13:16 -0500116} while (0)
117
Jason Barone9d376f2009-02-05 11:51:38 -0500118/*
Jim Cromie85f7f6c2011-12-19 17:13:21 -0500119 * Search the tables for _ddebug's which match the given `query' and
120 * apply the `flags' and `mask' to them. Returns number of matching
121 * callsites, normally the same as number of changes. If verbose,
122 * logs the changes. Takes ddebug_lock.
Jason Barone9d376f2009-02-05 11:51:38 -0500123 */
Jim Cromie85f7f6c2011-12-19 17:13:21 -0500124static int ddebug_change(const struct ddebug_query *query,
125 unsigned int flags, unsigned int mask)
Jason Barone9d376f2009-02-05 11:51:38 -0500126{
127 int i;
128 struct ddebug_table *dt;
129 unsigned int newflags;
130 unsigned int nfound = 0;
Jim Cromie5ca7d2a2011-12-19 17:12:44 -0500131 char flagbuf[10];
Jason Barone9d376f2009-02-05 11:51:38 -0500132
133 /* search for matching ddebugs */
134 mutex_lock(&ddebug_lock);
135 list_for_each_entry(dt, &ddebug_tables, link) {
136
137 /* match against the module name */
Jim Cromied6a238d2011-12-19 17:12:39 -0500138 if (query->module && strcmp(query->module, dt->mod_name))
Jason Barone9d376f2009-02-05 11:51:38 -0500139 continue;
140
141 for (i = 0 ; i < dt->num_ddebugs ; i++) {
142 struct _ddebug *dp = &dt->ddebugs[i];
143
144 /* match against the source filename */
Jim Cromied6a238d2011-12-19 17:12:39 -0500145 if (query->filename &&
Jason Barone9d376f2009-02-05 11:51:38 -0500146 strcmp(query->filename, dp->filename) &&
Jim Cromie2b678312011-12-19 17:13:12 -0500147 strcmp(query->filename, basename(dp->filename)) &&
148 strcmp(query->filename, trim_prefix(dp->filename)))
Jason Barone9d376f2009-02-05 11:51:38 -0500149 continue;
150
151 /* match against the function */
Jim Cromied6a238d2011-12-19 17:12:39 -0500152 if (query->function &&
Jason Barone9d376f2009-02-05 11:51:38 -0500153 strcmp(query->function, dp->function))
154 continue;
155
156 /* match against the format */
Jim Cromied6a238d2011-12-19 17:12:39 -0500157 if (query->format &&
158 !strstr(dp->format, query->format))
Jason Barone9d376f2009-02-05 11:51:38 -0500159 continue;
160
161 /* match against the line number range */
162 if (query->first_lineno &&
163 dp->lineno < query->first_lineno)
164 continue;
165 if (query->last_lineno &&
166 dp->lineno > query->last_lineno)
167 continue;
168
169 nfound++;
170
171 newflags = (dp->flags & mask) | flags;
172 if (newflags == dp->flags)
173 continue;
Jason Barone9d376f2009-02-05 11:51:38 -0500174 dp->flags = newflags;
Jim Cromieb8ccd5d2012-04-27 14:30:32 -0600175 vpr_info("changed %s:%d [%s]%s =%s\n",
176 trim_prefix(dp->filename), dp->lineno,
177 dt->mod_name, dp->function,
178 ddebug_describe_flags(dp, flagbuf,
179 sizeof(flagbuf)));
Jason Barone9d376f2009-02-05 11:51:38 -0500180 }
181 }
182 mutex_unlock(&ddebug_lock);
183
184 if (!nfound && verbose)
Joe Perches4ad275e2011-08-11 14:36:33 -0400185 pr_info("no matches for query\n");
Jim Cromie85f7f6c2011-12-19 17:13:21 -0500186
187 return nfound;
Jason Barone9d376f2009-02-05 11:51:38 -0500188}
189
190/*
Jason Barone9d376f2009-02-05 11:51:38 -0500191 * Split the buffer `buf' into space-separated words.
Greg Banks9898abb2009-02-06 12:54:26 +1100192 * Handles simple " and ' quoting, i.e. without nested,
193 * embedded or escaped \". Return the number of words
194 * or <0 on error.
Jason Barone9d376f2009-02-05 11:51:38 -0500195 */
196static int ddebug_tokenize(char *buf, char *words[], int maxwords)
197{
198 int nwords = 0;
199
Greg Banks9898abb2009-02-06 12:54:26 +1100200 while (*buf) {
201 char *end;
202
203 /* Skip leading whitespace */
André Goddard Rosae7d28602009-12-14 18:01:06 -0800204 buf = skip_spaces(buf);
Greg Banks9898abb2009-02-06 12:54:26 +1100205 if (!*buf)
206 break; /* oh, it was trailing whitespace */
Jim Cromie8bd60262011-12-19 17:13:03 -0500207 if (*buf == '#')
208 break; /* token starts comment, skip rest of line */
Greg Banks9898abb2009-02-06 12:54:26 +1100209
Jim Cromie07100be2011-12-19 17:11:09 -0500210 /* find `end' of word, whitespace separated or quoted */
Greg Banks9898abb2009-02-06 12:54:26 +1100211 if (*buf == '"' || *buf == '\'') {
212 int quote = *buf++;
213 for (end = buf ; *end && *end != quote ; end++)
214 ;
215 if (!*end)
216 return -EINVAL; /* unclosed quote */
217 } else {
218 for (end = buf ; *end && !isspace(*end) ; end++)
219 ;
220 BUG_ON(end == buf);
221 }
Greg Banks9898abb2009-02-06 12:54:26 +1100222
Jim Cromie07100be2011-12-19 17:11:09 -0500223 /* `buf' is start of word, `end' is one past its end */
Greg Banks9898abb2009-02-06 12:54:26 +1100224 if (nwords == maxwords)
225 return -EINVAL; /* ran out of words[] before bytes */
226 if (*end)
227 *end++ = '\0'; /* terminate the word */
228 words[nwords++] = buf;
229 buf = end;
230 }
Jason Barone9d376f2009-02-05 11:51:38 -0500231
232 if (verbose) {
233 int i;
Joe Perches4ad275e2011-08-11 14:36:33 -0400234 pr_info("split into words:");
Jason Barone9d376f2009-02-05 11:51:38 -0500235 for (i = 0 ; i < nwords ; i++)
Joe Perches4ad275e2011-08-11 14:36:33 -0400236 pr_cont(" \"%s\"", words[i]);
237 pr_cont("\n");
Jason Barone9d376f2009-02-05 11:51:38 -0500238 }
239
240 return nwords;
241}
242
243/*
244 * Parse a single line number. Note that the empty string ""
245 * is treated as a special case and converted to zero, which
246 * is later treated as a "don't care" value.
247 */
248static inline int parse_lineno(const char *str, unsigned int *val)
249{
250 char *end = NULL;
251 BUG_ON(str == NULL);
252 if (*str == '\0') {
253 *val = 0;
254 return 0;
255 }
256 *val = simple_strtoul(str, &end, 10);
257 return end == NULL || end == str || *end != '\0' ? -EINVAL : 0;
258}
259
260/*
261 * Undo octal escaping in a string, inplace. This is useful to
262 * allow the user to express a query which matches a format
263 * containing embedded spaces.
264 */
265#define isodigit(c) ((c) >= '0' && (c) <= '7')
266static char *unescape(char *str)
267{
268 char *in = str;
269 char *out = str;
270
271 while (*in) {
272 if (*in == '\\') {
273 if (in[1] == '\\') {
274 *out++ = '\\';
275 in += 2;
276 continue;
277 } else if (in[1] == 't') {
278 *out++ = '\t';
279 in += 2;
280 continue;
281 } else if (in[1] == 'n') {
282 *out++ = '\n';
283 in += 2;
284 continue;
285 } else if (isodigit(in[1]) &&
286 isodigit(in[2]) &&
287 isodigit(in[3])) {
288 *out++ = ((in[1] - '0')<<6) |
289 ((in[2] - '0')<<3) |
290 (in[3] - '0');
291 in += 4;
292 continue;
293 }
294 }
295 *out++ = *in++;
296 }
297 *out = '\0';
298
299 return str;
300}
301
Jim Cromie820874c2011-12-19 17:12:49 -0500302static int check_set(const char **dest, char *src, char *name)
303{
304 int rc = 0;
305
306 if (*dest) {
307 rc = -EINVAL;
308 pr_err("match-spec:%s val:%s overridden by %s",
309 name, *dest, src);
310 }
311 *dest = src;
312 return rc;
313}
314
Jason Barone9d376f2009-02-05 11:51:38 -0500315/*
316 * Parse words[] as a ddebug query specification, which is a series
317 * of (keyword, value) pairs chosen from these possibilities:
318 *
319 * func <function-name>
320 * file <full-pathname>
321 * file <base-filename>
322 * module <module-name>
323 * format <escaped-string-to-find-in-format>
324 * line <lineno>
325 * line <first-lineno>-<last-lineno> // where either may be empty
Jim Cromie820874c2011-12-19 17:12:49 -0500326 *
327 * Only 1 of each type is allowed.
328 * Returns 0 on success, <0 on error.
Jason Barone9d376f2009-02-05 11:51:38 -0500329 */
330static int ddebug_parse_query(char *words[], int nwords,
Jim Cromie8e59b5cf2012-04-27 14:30:40 -0600331 struct ddebug_query *query, const char *modname)
Jason Barone9d376f2009-02-05 11:51:38 -0500332{
333 unsigned int i;
Jim Cromie820874c2011-12-19 17:12:49 -0500334 int rc;
Jason Barone9d376f2009-02-05 11:51:38 -0500335
336 /* check we have an even number of words */
337 if (nwords % 2 != 0)
338 return -EINVAL;
339 memset(query, 0, sizeof(*query));
340
Jim Cromie8e59b5cf2012-04-27 14:30:40 -0600341 if (modname)
342 /* support $modname.dyndbg=<multiple queries> */
343 query->module = modname;
344
Jason Barone9d376f2009-02-05 11:51:38 -0500345 for (i = 0 ; i < nwords ; i += 2) {
346 if (!strcmp(words[i], "func"))
Jim Cromie820874c2011-12-19 17:12:49 -0500347 rc = check_set(&query->function, words[i+1], "func");
Jason Barone9d376f2009-02-05 11:51:38 -0500348 else if (!strcmp(words[i], "file"))
Jim Cromie820874c2011-12-19 17:12:49 -0500349 rc = check_set(&query->filename, words[i+1], "file");
Jason Barone9d376f2009-02-05 11:51:38 -0500350 else if (!strcmp(words[i], "module"))
Jim Cromie820874c2011-12-19 17:12:49 -0500351 rc = check_set(&query->module, words[i+1], "module");
Jason Barone9d376f2009-02-05 11:51:38 -0500352 else if (!strcmp(words[i], "format"))
Jim Cromie820874c2011-12-19 17:12:49 -0500353 rc = check_set(&query->format, unescape(words[i+1]),
354 "format");
Jason Barone9d376f2009-02-05 11:51:38 -0500355 else if (!strcmp(words[i], "line")) {
356 char *first = words[i+1];
357 char *last = strchr(first, '-');
Jim Cromie820874c2011-12-19 17:12:49 -0500358 if (query->first_lineno || query->last_lineno) {
359 pr_err("match-spec:line given 2 times\n");
360 return -EINVAL;
361 }
Jason Barone9d376f2009-02-05 11:51:38 -0500362 if (last)
363 *last++ = '\0';
364 if (parse_lineno(first, &query->first_lineno) < 0)
365 return -EINVAL;
Jim Cromie820874c2011-12-19 17:12:49 -0500366 if (last) {
Jason Barone9d376f2009-02-05 11:51:38 -0500367 /* range <first>-<last> */
Jim Cromie820874c2011-12-19 17:12:49 -0500368 if (parse_lineno(last, &query->last_lineno)
369 < query->first_lineno) {
370 pr_err("last-line < 1st-line\n");
Jason Barone9d376f2009-02-05 11:51:38 -0500371 return -EINVAL;
Jim Cromie820874c2011-12-19 17:12:49 -0500372 }
Jason Barone9d376f2009-02-05 11:51:38 -0500373 } else {
374 query->last_lineno = query->first_lineno;
375 }
376 } else {
Jim Cromieae27f862011-12-19 17:12:34 -0500377 pr_err("unknown keyword \"%s\"\n", words[i]);
Jason Barone9d376f2009-02-05 11:51:38 -0500378 return -EINVAL;
379 }
Jim Cromie820874c2011-12-19 17:12:49 -0500380 if (rc)
381 return rc;
Jason Barone9d376f2009-02-05 11:51:38 -0500382 }
Jim Cromie574b3722011-12-19 17:13:16 -0500383 vpr_info_dq(query, "parsed");
Jason Barone9d376f2009-02-05 11:51:38 -0500384 return 0;
385}
386
387/*
388 * Parse `str' as a flags specification, format [-+=][p]+.
389 * Sets up *maskp and *flagsp to be used when changing the
390 * flags fields of matched _ddebug's. Returns 0 on success
391 * or <0 on error.
392 */
393static int ddebug_parse_flags(const char *str, unsigned int *flagsp,
394 unsigned int *maskp)
395{
396 unsigned flags = 0;
Bart Van Assche8ba6ebf2011-01-23 17:17:24 +0100397 int op = '=', i;
Jason Barone9d376f2009-02-05 11:51:38 -0500398
399 switch (*str) {
400 case '+':
401 case '-':
402 case '=':
403 op = *str++;
404 break;
405 default:
406 return -EINVAL;
407 }
Jim Cromieb8ccd5d2012-04-27 14:30:32 -0600408 vpr_info("op='%c'\n", op);
Jason Barone9d376f2009-02-05 11:51:38 -0500409
410 for ( ; *str ; ++str) {
Bart Van Assche8ba6ebf2011-01-23 17:17:24 +0100411 for (i = ARRAY_SIZE(opt_array) - 1; i >= 0; i--) {
412 if (*str == opt_array[i].opt_char) {
413 flags |= opt_array[i].flag;
414 break;
415 }
Jason Barone9d376f2009-02-05 11:51:38 -0500416 }
Bart Van Assche8ba6ebf2011-01-23 17:17:24 +0100417 if (i < 0)
418 return -EINVAL;
Jason Barone9d376f2009-02-05 11:51:38 -0500419 }
Jim Cromieb8ccd5d2012-04-27 14:30:32 -0600420 vpr_info("flags=0x%x\n", flags);
Jason Barone9d376f2009-02-05 11:51:38 -0500421
422 /* calculate final *flagsp, *maskp according to mask and op */
423 switch (op) {
424 case '=':
425 *maskp = 0;
426 *flagsp = flags;
427 break;
428 case '+':
429 *maskp = ~0U;
430 *flagsp = flags;
431 break;
432 case '-':
433 *maskp = ~flags;
434 *flagsp = 0;
435 break;
436 }
Jim Cromieb8ccd5d2012-04-27 14:30:32 -0600437 vpr_info("*flagsp=0x%x *maskp=0x%x\n", *flagsp, *maskp);
Jason Barone9d376f2009-02-05 11:51:38 -0500438 return 0;
439}
440
Jim Cromie8e59b5cf2012-04-27 14:30:40 -0600441static int ddebug_exec_query(char *query_string, const char *modname)
Thomas Renningerfd89cfb2010-08-06 16:11:01 +0200442{
443 unsigned int flags = 0, mask = 0;
444 struct ddebug_query query;
445#define MAXWORDS 9
Jim Cromie85f7f6c2011-12-19 17:13:21 -0500446 int nwords, nfound;
Thomas Renningerfd89cfb2010-08-06 16:11:01 +0200447 char *words[MAXWORDS];
448
449 nwords = ddebug_tokenize(query_string, words, MAXWORDS);
450 if (nwords <= 0)
451 return -EINVAL;
Jim Cromie8e59b5cf2012-04-27 14:30:40 -0600452 if (ddebug_parse_query(words, nwords-1, &query, modname))
Thomas Renningerfd89cfb2010-08-06 16:11:01 +0200453 return -EINVAL;
454 if (ddebug_parse_flags(words[nwords-1], &flags, &mask))
455 return -EINVAL;
456
457 /* actually go and implement the change */
Jim Cromie85f7f6c2011-12-19 17:13:21 -0500458 nfound = ddebug_change(&query, flags, mask);
459 vpr_info_dq((&query), (nfound) ? "applied" : "no-match");
460
461 return nfound;
462}
463
464/* handle multiple queries in query string, continue on error, return
465 last error or number of matching callsites. Module name is either
466 in param (for boot arg) or perhaps in query string.
467*/
Jim Cromie8e59b5cf2012-04-27 14:30:40 -0600468static int ddebug_exec_queries(char *query, const char *modname)
Jim Cromie85f7f6c2011-12-19 17:13:21 -0500469{
470 char *split;
471 int i, errs = 0, exitcode = 0, rc, nfound = 0;
472
473 for (i = 0; query; query = split) {
474 split = strpbrk(query, ";\n");
475 if (split)
476 *split++ = '\0';
477
478 query = skip_spaces(query);
479 if (!query || !*query || *query == '#')
480 continue;
481
Jim Cromieb8ccd5d2012-04-27 14:30:32 -0600482 vpr_info("query %d: \"%s\"\n", i, query);
Jim Cromie85f7f6c2011-12-19 17:13:21 -0500483
Jim Cromie8e59b5cf2012-04-27 14:30:40 -0600484 rc = ddebug_exec_query(query, modname);
Jim Cromie85f7f6c2011-12-19 17:13:21 -0500485 if (rc < 0) {
486 errs++;
487 exitcode = rc;
488 } else
489 nfound += rc;
490 i++;
491 }
Jim Cromieb8ccd5d2012-04-27 14:30:32 -0600492 vpr_info("processed %d queries, with %d matches, %d errs\n",
Jim Cromie85f7f6c2011-12-19 17:13:21 -0500493 i, nfound, errs);
494
495 if (exitcode)
496 return exitcode;
497 return nfound;
Thomas Renningerfd89cfb2010-08-06 16:11:01 +0200498}
499
Jason Baron431625d2011-10-04 14:13:19 -0700500#define PREFIX_SIZE 64
501
502static int remaining(int wrote)
Bart Van Assche8ba6ebf2011-01-23 17:17:24 +0100503{
Jason Baron431625d2011-10-04 14:13:19 -0700504 if (PREFIX_SIZE - wrote > 0)
505 return PREFIX_SIZE - wrote;
506 return 0;
507}
Bart Van Assche8ba6ebf2011-01-23 17:17:24 +0100508
Jason Baron431625d2011-10-04 14:13:19 -0700509static char *dynamic_emit_prefix(const struct _ddebug *desc, char *buf)
510{
511 int pos_after_tid;
512 int pos = 0;
513
514 pos += snprintf(buf + pos, remaining(pos), "%s", KERN_DEBUG);
515 if (desc->flags & _DPRINTK_FLAGS_INCL_TID) {
Bart Van Assche8ba6ebf2011-01-23 17:17:24 +0100516 if (in_interrupt())
Jason Baron431625d2011-10-04 14:13:19 -0700517 pos += snprintf(buf + pos, remaining(pos), "%s ",
518 "<intr>");
Bart Van Assche8ba6ebf2011-01-23 17:17:24 +0100519 else
Jason Baron431625d2011-10-04 14:13:19 -0700520 pos += snprintf(buf + pos, remaining(pos), "[%d] ",
521 task_pid_vnr(current));
Bart Van Assche8ba6ebf2011-01-23 17:17:24 +0100522 }
Jason Baron431625d2011-10-04 14:13:19 -0700523 pos_after_tid = pos;
524 if (desc->flags & _DPRINTK_FLAGS_INCL_MODNAME)
525 pos += snprintf(buf + pos, remaining(pos), "%s:",
526 desc->modname);
527 if (desc->flags & _DPRINTK_FLAGS_INCL_FUNCNAME)
528 pos += snprintf(buf + pos, remaining(pos), "%s:",
529 desc->function);
530 if (desc->flags & _DPRINTK_FLAGS_INCL_LINENO)
Jim Cromie07100be2011-12-19 17:11:09 -0500531 pos += snprintf(buf + pos, remaining(pos), "%d:",
532 desc->lineno);
Jason Baron431625d2011-10-04 14:13:19 -0700533 if (pos - pos_after_tid)
534 pos += snprintf(buf + pos, remaining(pos), " ");
535 if (pos >= PREFIX_SIZE)
536 buf[PREFIX_SIZE - 1] = '\0';
Joe Perches6c2140e2011-08-11 14:36:25 -0400537
Jason Baron431625d2011-10-04 14:13:19 -0700538 return buf;
Joe Perches6c2140e2011-08-11 14:36:25 -0400539}
540
Bart Van Assche8ba6ebf2011-01-23 17:17:24 +0100541int __dynamic_pr_debug(struct _ddebug *descriptor, const char *fmt, ...)
542{
543 va_list args;
544 int res;
Jason Baron431625d2011-10-04 14:13:19 -0700545 struct va_format vaf;
546 char buf[PREFIX_SIZE];
Bart Van Assche8ba6ebf2011-01-23 17:17:24 +0100547
548 BUG_ON(!descriptor);
549 BUG_ON(!fmt);
550
551 va_start(args, fmt);
Jason Baron431625d2011-10-04 14:13:19 -0700552 vaf.fmt = fmt;
553 vaf.va = &args;
554 res = printk("%s%pV", dynamic_emit_prefix(descriptor, buf), &vaf);
Bart Van Assche8ba6ebf2011-01-23 17:17:24 +0100555 va_end(args);
556
557 return res;
558}
559EXPORT_SYMBOL(__dynamic_pr_debug);
560
Joe Perchescbc46632011-08-11 14:36:21 -0400561int __dynamic_dev_dbg(struct _ddebug *descriptor,
562 const struct device *dev, const char *fmt, ...)
563{
564 struct va_format vaf;
565 va_list args;
566 int res;
Jason Baron431625d2011-10-04 14:13:19 -0700567 char buf[PREFIX_SIZE];
Joe Perchescbc46632011-08-11 14:36:21 -0400568
569 BUG_ON(!descriptor);
570 BUG_ON(!fmt);
571
572 va_start(args, fmt);
Joe Perchescbc46632011-08-11 14:36:21 -0400573 vaf.fmt = fmt;
574 vaf.va = &args;
Jason Baron431625d2011-10-04 14:13:19 -0700575 res = __dev_printk(dynamic_emit_prefix(descriptor, buf), dev, &vaf);
Joe Perchescbc46632011-08-11 14:36:21 -0400576 va_end(args);
577
578 return res;
579}
580EXPORT_SYMBOL(__dynamic_dev_dbg);
581
Jason Baron0feefd92011-10-04 14:13:22 -0700582#ifdef CONFIG_NET
583
Jason Baronffa10cb2011-08-11 14:36:48 -0400584int __dynamic_netdev_dbg(struct _ddebug *descriptor,
585 const struct net_device *dev, const char *fmt, ...)
586{
587 struct va_format vaf;
588 va_list args;
589 int res;
Jason Baron431625d2011-10-04 14:13:19 -0700590 char buf[PREFIX_SIZE];
Jason Baronffa10cb2011-08-11 14:36:48 -0400591
592 BUG_ON(!descriptor);
593 BUG_ON(!fmt);
594
595 va_start(args, fmt);
Jason Baronffa10cb2011-08-11 14:36:48 -0400596 vaf.fmt = fmt;
597 vaf.va = &args;
Jason Baron431625d2011-10-04 14:13:19 -0700598 res = __netdev_printk(dynamic_emit_prefix(descriptor, buf), dev, &vaf);
Jason Baronffa10cb2011-08-11 14:36:48 -0400599 va_end(args);
600
601 return res;
602}
603EXPORT_SYMBOL(__dynamic_netdev_dbg);
604
Jason Baron0feefd92011-10-04 14:13:22 -0700605#endif
606
Jim Cromiebc757f62011-12-19 17:12:29 -0500607#define DDEBUG_STRING_SIZE 1024
608static __initdata char ddebug_setup_string[DDEBUG_STRING_SIZE];
609
Thomas Renningera648ec02010-08-06 16:11:02 +0200610static __init int ddebug_setup_query(char *str)
611{
Jim Cromiebc757f62011-12-19 17:12:29 -0500612 if (strlen(str) >= DDEBUG_STRING_SIZE) {
Joe Perches4ad275e2011-08-11 14:36:33 -0400613 pr_warn("ddebug boot param string too large\n");
Thomas Renningera648ec02010-08-06 16:11:02 +0200614 return 0;
615 }
Jim Cromiebc757f62011-12-19 17:12:29 -0500616 strlcpy(ddebug_setup_string, str, DDEBUG_STRING_SIZE);
Thomas Renningera648ec02010-08-06 16:11:02 +0200617 return 1;
618}
619
620__setup("ddebug_query=", ddebug_setup_query);
621
Jason Barone9d376f2009-02-05 11:51:38 -0500622/*
623 * File_ops->write method for <debugfs>/dynamic_debug/conrol. Gathers the
624 * command text from userspace, parses and executes it.
625 */
Jim Cromie72814912011-12-19 17:13:07 -0500626#define USER_BUF_PAGE 4096
Jason Barone9d376f2009-02-05 11:51:38 -0500627static ssize_t ddebug_proc_write(struct file *file, const char __user *ubuf,
628 size_t len, loff_t *offp)
629{
Jim Cromie72814912011-12-19 17:13:07 -0500630 char *tmpbuf;
Thomas Renningerfd89cfb2010-08-06 16:11:01 +0200631 int ret;
Jason Barone9d376f2009-02-05 11:51:38 -0500632
633 if (len == 0)
634 return 0;
Jim Cromie72814912011-12-19 17:13:07 -0500635 if (len > USER_BUF_PAGE - 1) {
636 pr_warn("expected <%d bytes into control\n", USER_BUF_PAGE);
Jason Barone9d376f2009-02-05 11:51:38 -0500637 return -E2BIG;
Jim Cromie72814912011-12-19 17:13:07 -0500638 }
639 tmpbuf = kmalloc(len + 1, GFP_KERNEL);
640 if (!tmpbuf)
641 return -ENOMEM;
642 if (copy_from_user(tmpbuf, ubuf, len)) {
643 kfree(tmpbuf);
Jason Barone9d376f2009-02-05 11:51:38 -0500644 return -EFAULT;
Jim Cromie72814912011-12-19 17:13:07 -0500645 }
Jason Barone9d376f2009-02-05 11:51:38 -0500646 tmpbuf[len] = '\0';
Jim Cromieb8ccd5d2012-04-27 14:30:32 -0600647 vpr_info("read %d bytes from userspace\n", (int)len);
Jason Barone9d376f2009-02-05 11:51:38 -0500648
Jim Cromie8e59b5cf2012-04-27 14:30:40 -0600649 ret = ddebug_exec_queries(tmpbuf, NULL);
Jim Cromie72814912011-12-19 17:13:07 -0500650 kfree(tmpbuf);
Jim Cromie85f7f6c2011-12-19 17:13:21 -0500651 if (ret < 0)
Thomas Renningerfd89cfb2010-08-06 16:11:01 +0200652 return ret;
Jason Barone9d376f2009-02-05 11:51:38 -0500653
654 *offp += len;
655 return len;
656}
657
658/*
659 * Set the iterator to point to the first _ddebug object
660 * and return a pointer to that first object. Returns
661 * NULL if there are no _ddebugs at all.
662 */
663static struct _ddebug *ddebug_iter_first(struct ddebug_iter *iter)
664{
665 if (list_empty(&ddebug_tables)) {
666 iter->table = NULL;
667 iter->idx = 0;
668 return NULL;
669 }
670 iter->table = list_entry(ddebug_tables.next,
671 struct ddebug_table, link);
672 iter->idx = 0;
673 return &iter->table->ddebugs[iter->idx];
674}
675
676/*
677 * Advance the iterator to point to the next _ddebug
678 * object from the one the iterator currently points at,
679 * and returns a pointer to the new _ddebug. Returns
680 * NULL if the iterator has seen all the _ddebugs.
681 */
682static struct _ddebug *ddebug_iter_next(struct ddebug_iter *iter)
683{
684 if (iter->table == NULL)
685 return NULL;
686 if (++iter->idx == iter->table->num_ddebugs) {
687 /* iterate to next table */
688 iter->idx = 0;
689 if (list_is_last(&iter->table->link, &ddebug_tables)) {
690 iter->table = NULL;
691 return NULL;
692 }
693 iter->table = list_entry(iter->table->link.next,
694 struct ddebug_table, link);
695 }
696 return &iter->table->ddebugs[iter->idx];
697}
698
699/*
700 * Seq_ops start method. Called at the start of every
701 * read() call from userspace. Takes the ddebug_lock and
702 * seeks the seq_file's iterator to the given position.
703 */
704static void *ddebug_proc_start(struct seq_file *m, loff_t *pos)
705{
706 struct ddebug_iter *iter = m->private;
707 struct _ddebug *dp;
708 int n = *pos;
709
Jim Cromieb8ccd5d2012-04-27 14:30:32 -0600710 vpr_info("called m=%p *pos=%lld\n", m, (unsigned long long)*pos);
Jason Barone9d376f2009-02-05 11:51:38 -0500711
712 mutex_lock(&ddebug_lock);
713
714 if (!n)
715 return SEQ_START_TOKEN;
716 if (n < 0)
717 return NULL;
718 dp = ddebug_iter_first(iter);
719 while (dp != NULL && --n > 0)
720 dp = ddebug_iter_next(iter);
721 return dp;
722}
723
724/*
725 * Seq_ops next method. Called several times within a read()
726 * call from userspace, with ddebug_lock held. Walks to the
727 * next _ddebug object with a special case for the header line.
728 */
729static void *ddebug_proc_next(struct seq_file *m, void *p, loff_t *pos)
730{
731 struct ddebug_iter *iter = m->private;
732 struct _ddebug *dp;
733
Jim Cromieb8ccd5d2012-04-27 14:30:32 -0600734 vpr_info("called m=%p p=%p *pos=%lld\n",
735 m, p, (unsigned long long)*pos);
Jason Barone9d376f2009-02-05 11:51:38 -0500736
737 if (p == SEQ_START_TOKEN)
738 dp = ddebug_iter_first(iter);
739 else
740 dp = ddebug_iter_next(iter);
741 ++*pos;
742 return dp;
743}
744
745/*
746 * Seq_ops show method. Called several times within a read()
747 * call from userspace, with ddebug_lock held. Formats the
748 * current _ddebug as a single human-readable line, with a
749 * special case for the header line.
750 */
751static int ddebug_proc_show(struct seq_file *m, void *p)
752{
753 struct ddebug_iter *iter = m->private;
754 struct _ddebug *dp = p;
Jim Cromie5ca7d2a2011-12-19 17:12:44 -0500755 char flagsbuf[10];
Jason Barone9d376f2009-02-05 11:51:38 -0500756
Jim Cromieb8ccd5d2012-04-27 14:30:32 -0600757 vpr_info("called m=%p p=%p\n", m, p);
Jason Barone9d376f2009-02-05 11:51:38 -0500758
759 if (p == SEQ_START_TOKEN) {
760 seq_puts(m,
761 "# filename:lineno [module]function flags format\n");
762 return 0;
763 }
764
Jim Cromie5ca7d2a2011-12-19 17:12:44 -0500765 seq_printf(m, "%s:%u [%s]%s =%s \"",
Jim Cromie2b678312011-12-19 17:13:12 -0500766 trim_prefix(dp->filename), dp->lineno,
Jim Cromie5ca7d2a2011-12-19 17:12:44 -0500767 iter->table->mod_name, dp->function,
768 ddebug_describe_flags(dp, flagsbuf, sizeof(flagsbuf)));
Jason Barone9d376f2009-02-05 11:51:38 -0500769 seq_escape(m, dp->format, "\t\r\n\"");
770 seq_puts(m, "\"\n");
771
772 return 0;
773}
774
775/*
776 * Seq_ops stop method. Called at the end of each read()
777 * call from userspace. Drops ddebug_lock.
778 */
779static void ddebug_proc_stop(struct seq_file *m, void *p)
780{
Jim Cromieb8ccd5d2012-04-27 14:30:32 -0600781 vpr_info("called m=%p p=%p\n", m, p);
Jason Barone9d376f2009-02-05 11:51:38 -0500782 mutex_unlock(&ddebug_lock);
783}
784
785static const struct seq_operations ddebug_proc_seqops = {
786 .start = ddebug_proc_start,
787 .next = ddebug_proc_next,
788 .show = ddebug_proc_show,
789 .stop = ddebug_proc_stop
790};
791
792/*
Jim Cromie07100be2011-12-19 17:11:09 -0500793 * File_ops->open method for <debugfs>/dynamic_debug/control. Does
794 * the seq_file setup dance, and also creates an iterator to walk the
795 * _ddebugs. Note that we create a seq_file always, even for O_WRONLY
796 * files where it's not needed, as doing so simplifies the ->release
797 * method.
Jason Barone9d376f2009-02-05 11:51:38 -0500798 */
799static int ddebug_proc_open(struct inode *inode, struct file *file)
800{
801 struct ddebug_iter *iter;
802 int err;
803
Jim Cromieb8ccd5d2012-04-27 14:30:32 -0600804 vpr_info("called\n");
Jason Barone9d376f2009-02-05 11:51:38 -0500805
806 iter = kzalloc(sizeof(*iter), GFP_KERNEL);
807 if (iter == NULL)
808 return -ENOMEM;
809
810 err = seq_open(file, &ddebug_proc_seqops);
811 if (err) {
812 kfree(iter);
813 return err;
814 }
815 ((struct seq_file *) file->private_data)->private = iter;
816 return 0;
817}
818
819static const struct file_operations ddebug_proc_fops = {
820 .owner = THIS_MODULE,
821 .open = ddebug_proc_open,
822 .read = seq_read,
823 .llseek = seq_lseek,
824 .release = seq_release_private,
825 .write = ddebug_proc_write
826};
827
828/*
829 * Allocate a new ddebug_table for the given module
830 * and add it to the global list.
831 */
832int ddebug_add_module(struct _ddebug *tab, unsigned int n,
833 const char *name)
834{
835 struct ddebug_table *dt;
836 char *new_name;
837
838 dt = kzalloc(sizeof(*dt), GFP_KERNEL);
839 if (dt == NULL)
840 return -ENOMEM;
841 new_name = kstrdup(name, GFP_KERNEL);
842 if (new_name == NULL) {
843 kfree(dt);
844 return -ENOMEM;
845 }
846 dt->mod_name = new_name;
847 dt->num_ddebugs = n;
Jason Barone9d376f2009-02-05 11:51:38 -0500848 dt->ddebugs = tab;
849
850 mutex_lock(&ddebug_lock);
851 list_add_tail(&dt->link, &ddebug_tables);
852 mutex_unlock(&ddebug_lock);
853
Jim Cromieb8ccd5d2012-04-27 14:30:32 -0600854 vpr_info("%u debug prints in module %s\n", n, dt->mod_name);
Jason Barone9d376f2009-02-05 11:51:38 -0500855 return 0;
856}
857EXPORT_SYMBOL_GPL(ddebug_add_module);
858
Jim Cromie6ab676e2012-04-27 14:30:37 -0600859/* helper for ddebug_dyndbg_(boot|module)_param_cb */
860static int ddebug_dyndbg_param_cb(char *param, char *val,
861 const char *modname, int on_err)
Jim Cromieb48420c2012-04-27 14:30:35 -0600862{
Jim Cromieb48420c2012-04-27 14:30:35 -0600863 char *sep;
864
865 sep = strchr(param, '.');
866 if (sep) {
Jim Cromie6ab676e2012-04-27 14:30:37 -0600867 /* needed only for ddebug_dyndbg_boot_param_cb */
Jim Cromieb48420c2012-04-27 14:30:35 -0600868 *sep = '\0';
869 modname = param;
870 param = sep + 1;
871 }
872 if (strcmp(param, "dyndbg"))
Jim Cromie6ab676e2012-04-27 14:30:37 -0600873 return on_err; /* determined by caller */
Jim Cromieb48420c2012-04-27 14:30:35 -0600874
Jim Cromie8e59b5cf2012-04-27 14:30:40 -0600875 ddebug_exec_queries((val ? val : "+p"), modname);
876
Jim Cromieb48420c2012-04-27 14:30:35 -0600877 return 0; /* query failure shouldnt stop module load */
878}
879
Jim Cromie6ab676e2012-04-27 14:30:37 -0600880/* handle both dyndbg and $module.dyndbg params at boot */
881static int ddebug_dyndbg_boot_param_cb(char *param, char *val,
882 const char *unused)
Jim Cromieb48420c2012-04-27 14:30:35 -0600883{
Jim Cromie6ab676e2012-04-27 14:30:37 -0600884 vpr_info("%s=\"%s\"\n", param, val);
885 return ddebug_dyndbg_param_cb(param, val, NULL, 0);
886}
Jim Cromieb48420c2012-04-27 14:30:35 -0600887
Jim Cromie6ab676e2012-04-27 14:30:37 -0600888/*
889 * modprobe foo finds foo.params in boot-args, strips "foo.", and
890 * passes them to load_module(). This callback gets unknown params,
891 * processes dyndbg params, rejects others.
892 */
893int ddebug_dyndbg_module_param_cb(char *param, char *val, const char *module)
894{
895 vpr_info("module: %s %s=\"%s\"\n", module, param, val);
896 return ddebug_dyndbg_param_cb(param, val, module, -ENOENT);
Jim Cromieb48420c2012-04-27 14:30:35 -0600897}
898
Jason Barone9d376f2009-02-05 11:51:38 -0500899static void ddebug_table_free(struct ddebug_table *dt)
900{
901 list_del_init(&dt->link);
902 kfree(dt->mod_name);
903 kfree(dt);
904}
905
906/*
907 * Called in response to a module being unloaded. Removes
908 * any ddebug_table's which point at the module.
909 */
Yehuda Sadehff49d742010-07-03 13:07:35 +1000910int ddebug_remove_module(const char *mod_name)
Jason Barone9d376f2009-02-05 11:51:38 -0500911{
912 struct ddebug_table *dt, *nextdt;
913 int ret = -ENOENT;
914
Jim Cromieb8ccd5d2012-04-27 14:30:32 -0600915 vpr_info("removing module \"%s\"\n", mod_name);
Jason Barone9d376f2009-02-05 11:51:38 -0500916
917 mutex_lock(&ddebug_lock);
918 list_for_each_entry_safe(dt, nextdt, &ddebug_tables, link) {
919 if (!strcmp(dt->mod_name, mod_name)) {
920 ddebug_table_free(dt);
921 ret = 0;
922 }
923 }
924 mutex_unlock(&ddebug_lock);
925 return ret;
926}
927EXPORT_SYMBOL_GPL(ddebug_remove_module);
928
929static void ddebug_remove_all_tables(void)
930{
931 mutex_lock(&ddebug_lock);
932 while (!list_empty(&ddebug_tables)) {
933 struct ddebug_table *dt = list_entry(ddebug_tables.next,
934 struct ddebug_table,
935 link);
936 ddebug_table_free(dt);
937 }
938 mutex_unlock(&ddebug_lock);
939}
940
Thomas Renninger6a5c0832010-08-06 16:11:03 +0200941static __initdata int ddebug_init_success;
942
943static int __init dynamic_debug_init_debugfs(void)
Jason Barone9d376f2009-02-05 11:51:38 -0500944{
945 struct dentry *dir, *file;
Thomas Renninger6a5c0832010-08-06 16:11:03 +0200946
947 if (!ddebug_init_success)
948 return -ENODEV;
Jason Barone9d376f2009-02-05 11:51:38 -0500949
950 dir = debugfs_create_dir("dynamic_debug", NULL);
951 if (!dir)
952 return -ENOMEM;
953 file = debugfs_create_file("control", 0644, dir, NULL,
954 &ddebug_proc_fops);
955 if (!file) {
956 debugfs_remove(dir);
957 return -ENOMEM;
958 }
Thomas Renninger6a5c0832010-08-06 16:11:03 +0200959 return 0;
960}
961
962static int __init dynamic_debug_init(void)
963{
964 struct _ddebug *iter, *iter_start;
965 const char *modname = NULL;
Jim Cromieb48420c2012-04-27 14:30:35 -0600966 char *cmdline;
Thomas Renninger6a5c0832010-08-06 16:11:03 +0200967 int ret = 0;
Jim Cromie41076922012-04-27 14:30:39 -0600968 int n = 0, entries = 0, modct = 0;
969 int verbose_bytes = 0;
Thomas Renninger6a5c0832010-08-06 16:11:03 +0200970
Jim Cromieb5b78f82011-12-19 17:12:54 -0500971 if (__start___verbose == __stop___verbose) {
972 pr_warn("_ddebug table is empty in a "
973 "CONFIG_DYNAMIC_DEBUG build");
974 return 1;
Jason Barone9d376f2009-02-05 11:51:38 -0500975 }
Jim Cromieb5b78f82011-12-19 17:12:54 -0500976 iter = __start___verbose;
977 modname = iter->modname;
978 iter_start = iter;
979 for (; iter < __stop___verbose; iter++) {
Jim Cromie41076922012-04-27 14:30:39 -0600980 entries++;
981 verbose_bytes += strlen(iter->modname) + strlen(iter->function)
982 + strlen(iter->filename) + strlen(iter->format);
983
Jim Cromieb5b78f82011-12-19 17:12:54 -0500984 if (strcmp(modname, iter->modname)) {
Jim Cromie41076922012-04-27 14:30:39 -0600985 modct++;
Jim Cromieb5b78f82011-12-19 17:12:54 -0500986 ret = ddebug_add_module(iter_start, n, modname);
987 if (ret)
Jim Cromieaf442392012-04-27 14:30:38 -0600988 goto out_err;
Jim Cromieb5b78f82011-12-19 17:12:54 -0500989 n = 0;
990 modname = iter->modname;
991 iter_start = iter;
992 }
993 n++;
994 }
995 ret = ddebug_add_module(iter_start, n, modname);
996 if (ret)
Jim Cromieaf442392012-04-27 14:30:38 -0600997 goto out_err;
Thomas Renningera648ec02010-08-06 16:11:02 +0200998
Jim Cromieaf442392012-04-27 14:30:38 -0600999 ddebug_init_success = 1;
Jim Cromie41076922012-04-27 14:30:39 -06001000 vpr_info("%d modules, %d entries and %d bytes in ddebug tables,"
1001 " %d bytes in (readonly) verbose section\n",
1002 modct, entries, (int)( modct * sizeof(struct ddebug_table)),
1003 verbose_bytes + (int)(__stop___verbose - __start___verbose));
Jim Cromieaf442392012-04-27 14:30:38 -06001004
1005 /* apply ddebug_query boot param, dont unload tables on err */
Thomas Renningera648ec02010-08-06 16:11:02 +02001006 if (ddebug_setup_string[0] != '\0') {
Jim Cromief0b919d2012-04-27 14:30:36 -06001007 pr_warn("ddebug_query param name is deprecated,"
1008 " change it to dyndbg\n");
Jim Cromie8e59b5cf2012-04-27 14:30:40 -06001009 ret = ddebug_exec_queries(ddebug_setup_string, NULL);
Jim Cromie85f7f6c2011-12-19 17:13:21 -05001010 if (ret < 0)
Joe Perches4ad275e2011-08-11 14:36:33 -04001011 pr_warn("Invalid ddebug boot param %s",
1012 ddebug_setup_string);
Thomas Renningera648ec02010-08-06 16:11:02 +02001013 else
Jim Cromie85f7f6c2011-12-19 17:13:21 -05001014 pr_info("%d changes by ddebug_query\n", ret);
Jason Barone9d376f2009-02-05 11:51:38 -05001015 }
Jim Cromieb48420c2012-04-27 14:30:35 -06001016 /* now that ddebug tables are loaded, process all boot args
1017 * again to find and activate queries given in dyndbg params.
1018 * While this has already been done for known boot params, it
1019 * ignored the unknown ones (dyndbg in particular). Reusing
1020 * parse_args avoids ad-hoc parsing. This will also attempt
1021 * to activate queries for not-yet-loaded modules, which is
1022 * slightly noisy if verbose, but harmless.
1023 */
1024 cmdline = kstrdup(saved_command_line, GFP_KERNEL);
1025 parse_args("dyndbg params", cmdline, NULL,
1026 0, 0, 0, &ddebug_dyndbg_boot_param_cb);
1027 kfree(cmdline);
Jim Cromieaf442392012-04-27 14:30:38 -06001028 return 0;
Thomas Renningera648ec02010-08-06 16:11:02 +02001029
Jim Cromieaf442392012-04-27 14:30:38 -06001030out_err:
1031 ddebug_remove_all_tables();
Jason Barone9d376f2009-02-05 11:51:38 -05001032 return 0;
1033}
Thomas Renninger6a5c0832010-08-06 16:11:03 +02001034/* Allow early initialization for boot messages via boot param */
Jim Cromie3ec56522012-04-27 14:30:42 -06001035early_initcall(dynamic_debug_init);
Jim Cromieb48420c2012-04-27 14:30:35 -06001036
Thomas Renninger6a5c0832010-08-06 16:11:03 +02001037/* Debugfs setup must be done later */
Jim Cromie3ec56522012-04-27 14:30:42 -06001038fs_initcall(dynamic_debug_init_debugfs);