]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - lib/dynamic_debug.c
dynamic_debug: Add __dynamic_dev_dbg
[mirror_ubuntu-bionic-kernel.git] / lib / dynamic_debug.c
CommitLineData
e9d376f0
JB
1/*
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.
8ba6ebf5 10 * Copyright (C) 2011 Bart Van Assche. All Rights Reserved.
e9d376f0
JB
11 */
12
13#include <linux/kernel.h>
14#include <linux/module.h>
15#include <linux/moduleparam.h>
16#include <linux/kallsyms.h>
17#include <linux/version.h>
18#include <linux/types.h>
19#include <linux/mutex.h>
20#include <linux/proc_fs.h>
21#include <linux/seq_file.h>
22#include <linux/list.h>
23#include <linux/sysctl.h>
24#include <linux/ctype.h>
e7d2860b 25#include <linux/string.h>
e9d376f0
JB
26#include <linux/uaccess.h>
27#include <linux/dynamic_debug.h>
28#include <linux/debugfs.h>
5a0e3ad6 29#include <linux/slab.h>
52159d98 30#include <linux/jump_label.h>
8ba6ebf5 31#include <linux/hardirq.h>
e8d9792a 32#include <linux/sched.h>
cbc46635 33#include <linux/device.h>
e9d376f0
JB
34
35extern struct _ddebug __start___verbose[];
36extern struct _ddebug __stop___verbose[];
37
e9d376f0
JB
38struct ddebug_table {
39 struct list_head link;
40 char *mod_name;
41 unsigned int num_ddebugs;
42 unsigned int num_enabled;
43 struct _ddebug *ddebugs;
44};
45
46struct ddebug_query {
47 const char *filename;
48 const char *module;
49 const char *function;
50 const char *format;
51 unsigned int first_lineno, last_lineno;
52};
53
54struct ddebug_iter {
55 struct ddebug_table *table;
56 unsigned int idx;
57};
58
59static DEFINE_MUTEX(ddebug_lock);
60static LIST_HEAD(ddebug_tables);
61static int verbose = 0;
62
63/* Return the last part of a pathname */
64static inline const char *basename(const char *path)
65{
66 const char *tail = strrchr(path, '/');
67 return tail ? tail+1 : path;
68}
69
8ba6ebf5
BVA
70static struct { unsigned flag:8; char opt_char; } opt_array[] = {
71 { _DPRINTK_FLAGS_PRINT, 'p' },
72 { _DPRINTK_FLAGS_INCL_MODNAME, 'm' },
73 { _DPRINTK_FLAGS_INCL_FUNCNAME, 'f' },
74 { _DPRINTK_FLAGS_INCL_LINENO, 'l' },
75 { _DPRINTK_FLAGS_INCL_TID, 't' },
76};
77
e9d376f0
JB
78/* format a string into buf[] which describes the _ddebug's flags */
79static char *ddebug_describe_flags(struct _ddebug *dp, char *buf,
80 size_t maxlen)
81{
82 char *p = buf;
8ba6ebf5 83 int i;
e9d376f0
JB
84
85 BUG_ON(maxlen < 4);
8ba6ebf5
BVA
86 for (i = 0; i < ARRAY_SIZE(opt_array); ++i)
87 if (dp->flags & opt_array[i].flag)
88 *p++ = opt_array[i].opt_char;
e9d376f0
JB
89 if (p == buf)
90 *p++ = '-';
91 *p = '\0';
92
93 return buf;
94}
95
e9d376f0
JB
96/*
97 * Search the tables for _ddebug's which match the given
98 * `query' and apply the `flags' and `mask' to them. Tells
99 * the user which ddebug's were changed, or whether none
100 * were matched.
101 */
102static void ddebug_change(const struct ddebug_query *query,
103 unsigned int flags, unsigned int mask)
104{
105 int i;
106 struct ddebug_table *dt;
107 unsigned int newflags;
108 unsigned int nfound = 0;
109 char flagbuf[8];
110
111 /* search for matching ddebugs */
112 mutex_lock(&ddebug_lock);
113 list_for_each_entry(dt, &ddebug_tables, link) {
114
115 /* match against the module name */
116 if (query->module != NULL &&
117 strcmp(query->module, dt->mod_name))
118 continue;
119
120 for (i = 0 ; i < dt->num_ddebugs ; i++) {
121 struct _ddebug *dp = &dt->ddebugs[i];
122
123 /* match against the source filename */
124 if (query->filename != NULL &&
125 strcmp(query->filename, dp->filename) &&
126 strcmp(query->filename, basename(dp->filename)))
127 continue;
128
129 /* match against the function */
130 if (query->function != NULL &&
131 strcmp(query->function, dp->function))
132 continue;
133
134 /* match against the format */
135 if (query->format != NULL &&
136 strstr(dp->format, query->format) == NULL)
137 continue;
138
139 /* match against the line number range */
140 if (query->first_lineno &&
141 dp->lineno < query->first_lineno)
142 continue;
143 if (query->last_lineno &&
144 dp->lineno > query->last_lineno)
145 continue;
146
147 nfound++;
148
149 newflags = (dp->flags & mask) | flags;
150 if (newflags == dp->flags)
151 continue;
152
153 if (!newflags)
154 dt->num_enabled--;
4df7b3e0 155 else if (!dp->flags)
e9d376f0
JB
156 dt->num_enabled++;
157 dp->flags = newflags;
2d75af2f
JB
158 if (newflags)
159 dp->enabled = 1;
160 else
161 dp->enabled = 0;
e9d376f0
JB
162 if (verbose)
163 printk(KERN_INFO
164 "ddebug: changed %s:%d [%s]%s %s\n",
165 dp->filename, dp->lineno,
166 dt->mod_name, dp->function,
167 ddebug_describe_flags(dp, flagbuf,
168 sizeof(flagbuf)));
169 }
170 }
171 mutex_unlock(&ddebug_lock);
172
173 if (!nfound && verbose)
174 printk(KERN_INFO "ddebug: no matches for query\n");
175}
176
e9d376f0
JB
177/*
178 * Split the buffer `buf' into space-separated words.
9898abb3
GB
179 * Handles simple " and ' quoting, i.e. without nested,
180 * embedded or escaped \". Return the number of words
181 * or <0 on error.
e9d376f0
JB
182 */
183static int ddebug_tokenize(char *buf, char *words[], int maxwords)
184{
185 int nwords = 0;
186
9898abb3
GB
187 while (*buf) {
188 char *end;
189
190 /* Skip leading whitespace */
e7d2860b 191 buf = skip_spaces(buf);
9898abb3
GB
192 if (!*buf)
193 break; /* oh, it was trailing whitespace */
194
195 /* Run `end' over a word, either whitespace separated or quoted */
196 if (*buf == '"' || *buf == '\'') {
197 int quote = *buf++;
198 for (end = buf ; *end && *end != quote ; end++)
199 ;
200 if (!*end)
201 return -EINVAL; /* unclosed quote */
202 } else {
203 for (end = buf ; *end && !isspace(*end) ; end++)
204 ;
205 BUG_ON(end == buf);
206 }
207 /* Here `buf' is the start of the word, `end' is one past the end */
208
209 if (nwords == maxwords)
210 return -EINVAL; /* ran out of words[] before bytes */
211 if (*end)
212 *end++ = '\0'; /* terminate the word */
213 words[nwords++] = buf;
214 buf = end;
215 }
e9d376f0
JB
216
217 if (verbose) {
218 int i;
219 printk(KERN_INFO "%s: split into words:", __func__);
220 for (i = 0 ; i < nwords ; i++)
221 printk(" \"%s\"", words[i]);
222 printk("\n");
223 }
224
225 return nwords;
226}
227
228/*
229 * Parse a single line number. Note that the empty string ""
230 * is treated as a special case and converted to zero, which
231 * is later treated as a "don't care" value.
232 */
233static inline int parse_lineno(const char *str, unsigned int *val)
234{
235 char *end = NULL;
236 BUG_ON(str == NULL);
237 if (*str == '\0') {
238 *val = 0;
239 return 0;
240 }
241 *val = simple_strtoul(str, &end, 10);
242 return end == NULL || end == str || *end != '\0' ? -EINVAL : 0;
243}
244
245/*
246 * Undo octal escaping in a string, inplace. This is useful to
247 * allow the user to express a query which matches a format
248 * containing embedded spaces.
249 */
250#define isodigit(c) ((c) >= '0' && (c) <= '7')
251static char *unescape(char *str)
252{
253 char *in = str;
254 char *out = str;
255
256 while (*in) {
257 if (*in == '\\') {
258 if (in[1] == '\\') {
259 *out++ = '\\';
260 in += 2;
261 continue;
262 } else if (in[1] == 't') {
263 *out++ = '\t';
264 in += 2;
265 continue;
266 } else if (in[1] == 'n') {
267 *out++ = '\n';
268 in += 2;
269 continue;
270 } else if (isodigit(in[1]) &&
271 isodigit(in[2]) &&
272 isodigit(in[3])) {
273 *out++ = ((in[1] - '0')<<6) |
274 ((in[2] - '0')<<3) |
275 (in[3] - '0');
276 in += 4;
277 continue;
278 }
279 }
280 *out++ = *in++;
281 }
282 *out = '\0';
283
284 return str;
285}
286
287/*
288 * Parse words[] as a ddebug query specification, which is a series
289 * of (keyword, value) pairs chosen from these possibilities:
290 *
291 * func <function-name>
292 * file <full-pathname>
293 * file <base-filename>
294 * module <module-name>
295 * format <escaped-string-to-find-in-format>
296 * line <lineno>
297 * line <first-lineno>-<last-lineno> // where either may be empty
298 */
299static int ddebug_parse_query(char *words[], int nwords,
300 struct ddebug_query *query)
301{
302 unsigned int i;
303
304 /* check we have an even number of words */
305 if (nwords % 2 != 0)
306 return -EINVAL;
307 memset(query, 0, sizeof(*query));
308
309 for (i = 0 ; i < nwords ; i += 2) {
310 if (!strcmp(words[i], "func"))
311 query->function = words[i+1];
312 else if (!strcmp(words[i], "file"))
313 query->filename = words[i+1];
314 else if (!strcmp(words[i], "module"))
315 query->module = words[i+1];
316 else if (!strcmp(words[i], "format"))
317 query->format = unescape(words[i+1]);
318 else if (!strcmp(words[i], "line")) {
319 char *first = words[i+1];
320 char *last = strchr(first, '-');
321 if (last)
322 *last++ = '\0';
323 if (parse_lineno(first, &query->first_lineno) < 0)
324 return -EINVAL;
325 if (last != NULL) {
326 /* range <first>-<last> */
327 if (parse_lineno(last, &query->last_lineno) < 0)
328 return -EINVAL;
329 } else {
330 query->last_lineno = query->first_lineno;
331 }
332 } else {
333 if (verbose)
334 printk(KERN_ERR "%s: unknown keyword \"%s\"\n",
335 __func__, words[i]);
336 return -EINVAL;
337 }
338 }
339
340 if (verbose)
341 printk(KERN_INFO "%s: q->function=\"%s\" q->filename=\"%s\" "
342 "q->module=\"%s\" q->format=\"%s\" q->lineno=%u-%u\n",
343 __func__, query->function, query->filename,
344 query->module, query->format, query->first_lineno,
345 query->last_lineno);
346
347 return 0;
348}
349
350/*
351 * Parse `str' as a flags specification, format [-+=][p]+.
352 * Sets up *maskp and *flagsp to be used when changing the
353 * flags fields of matched _ddebug's. Returns 0 on success
354 * or <0 on error.
355 */
356static int ddebug_parse_flags(const char *str, unsigned int *flagsp,
357 unsigned int *maskp)
358{
359 unsigned flags = 0;
8ba6ebf5 360 int op = '=', i;
e9d376f0
JB
361
362 switch (*str) {
363 case '+':
364 case '-':
365 case '=':
366 op = *str++;
367 break;
368 default:
369 return -EINVAL;
370 }
371 if (verbose)
372 printk(KERN_INFO "%s: op='%c'\n", __func__, op);
373
374 for ( ; *str ; ++str) {
8ba6ebf5
BVA
375 for (i = ARRAY_SIZE(opt_array) - 1; i >= 0; i--) {
376 if (*str == opt_array[i].opt_char) {
377 flags |= opt_array[i].flag;
378 break;
379 }
e9d376f0 380 }
8ba6ebf5
BVA
381 if (i < 0)
382 return -EINVAL;
e9d376f0
JB
383 }
384 if (flags == 0)
385 return -EINVAL;
386 if (verbose)
387 printk(KERN_INFO "%s: flags=0x%x\n", __func__, flags);
388
389 /* calculate final *flagsp, *maskp according to mask and op */
390 switch (op) {
391 case '=':
392 *maskp = 0;
393 *flagsp = flags;
394 break;
395 case '+':
396 *maskp = ~0U;
397 *flagsp = flags;
398 break;
399 case '-':
400 *maskp = ~flags;
401 *flagsp = 0;
402 break;
403 }
404 if (verbose)
405 printk(KERN_INFO "%s: *flagsp=0x%x *maskp=0x%x\n",
406 __func__, *flagsp, *maskp);
407 return 0;
408}
409
fd89cfb8
TR
410static int ddebug_exec_query(char *query_string)
411{
412 unsigned int flags = 0, mask = 0;
413 struct ddebug_query query;
414#define MAXWORDS 9
415 int nwords;
416 char *words[MAXWORDS];
417
418 nwords = ddebug_tokenize(query_string, words, MAXWORDS);
419 if (nwords <= 0)
420 return -EINVAL;
421 if (ddebug_parse_query(words, nwords-1, &query))
422 return -EINVAL;
423 if (ddebug_parse_flags(words[nwords-1], &flags, &mask))
424 return -EINVAL;
425
426 /* actually go and implement the change */
427 ddebug_change(&query, flags, mask);
428 return 0;
429}
430
8ba6ebf5
BVA
431int __dynamic_pr_debug(struct _ddebug *descriptor, const char *fmt, ...)
432{
433 va_list args;
434 int res;
435
436 BUG_ON(!descriptor);
437 BUG_ON(!fmt);
438
439 va_start(args, fmt);
440 res = printk(KERN_DEBUG);
441 if (descriptor->flags & _DPRINTK_FLAGS_INCL_TID) {
442 if (in_interrupt())
443 res += printk(KERN_CONT "<intr> ");
444 else
445 res += printk(KERN_CONT "[%d] ", task_pid_vnr(current));
446 }
447 if (descriptor->flags & _DPRINTK_FLAGS_INCL_MODNAME)
448 res += printk(KERN_CONT "%s:", descriptor->modname);
449 if (descriptor->flags & _DPRINTK_FLAGS_INCL_FUNCNAME)
450 res += printk(KERN_CONT "%s:", descriptor->function);
451 if (descriptor->flags & _DPRINTK_FLAGS_INCL_LINENO)
452 res += printk(KERN_CONT "%d ", descriptor->lineno);
453 res += vprintk(fmt, args);
454 va_end(args);
455
456 return res;
457}
458EXPORT_SYMBOL(__dynamic_pr_debug);
459
cbc46635
JP
460int __dynamic_dev_dbg(struct _ddebug *descriptor,
461 const struct device *dev, const char *fmt, ...)
462{
463 struct va_format vaf;
464 va_list args;
465 int res;
466
467 BUG_ON(!descriptor);
468 BUG_ON(!fmt);
469
470 va_start(args, fmt);
471
472 vaf.fmt = fmt;
473 vaf.va = &args;
474
475 res = printk(KERN_DEBUG);
476 if (descriptor->flags & _DPRINTK_FLAGS_INCL_TID) {
477 if (in_interrupt())
478 res += printk(KERN_CONT "<intr> ");
479 else
480 res += printk(KERN_CONT "[%d] ", task_pid_vnr(current));
481 }
482 if (descriptor->flags & _DPRINTK_FLAGS_INCL_MODNAME)
483 res += printk(KERN_CONT "%s:", descriptor->modname);
484 if (descriptor->flags & _DPRINTK_FLAGS_INCL_FUNCNAME)
485 res += printk(KERN_CONT "%s:", descriptor->function);
486 if (descriptor->flags & _DPRINTK_FLAGS_INCL_LINENO)
487 res += printk(KERN_CONT "%d ", descriptor->lineno);
488
489 res += __dev_printk(KERN_CONT, dev, &vaf);
490
491 va_end(args);
492
493 return res;
494}
495EXPORT_SYMBOL(__dynamic_dev_dbg);
496
a648ec05
TR
497static __initdata char ddebug_setup_string[1024];
498static __init int ddebug_setup_query(char *str)
499{
500 if (strlen(str) >= 1024) {
501 pr_warning("ddebug boot param string too large\n");
502 return 0;
503 }
504 strcpy(ddebug_setup_string, str);
505 return 1;
506}
507
508__setup("ddebug_query=", ddebug_setup_query);
509
e9d376f0
JB
510/*
511 * File_ops->write method for <debugfs>/dynamic_debug/conrol. Gathers the
512 * command text from userspace, parses and executes it.
513 */
514static ssize_t ddebug_proc_write(struct file *file, const char __user *ubuf,
515 size_t len, loff_t *offp)
516{
e9d376f0 517 char tmpbuf[256];
fd89cfb8 518 int ret;
e9d376f0
JB
519
520 if (len == 0)
521 return 0;
522 /* we don't check *offp -- multiple writes() are allowed */
523 if (len > sizeof(tmpbuf)-1)
524 return -E2BIG;
525 if (copy_from_user(tmpbuf, ubuf, len))
526 return -EFAULT;
527 tmpbuf[len] = '\0';
528 if (verbose)
529 printk(KERN_INFO "%s: read %d bytes from userspace\n",
530 __func__, (int)len);
531
fd89cfb8
TR
532 ret = ddebug_exec_query(tmpbuf);
533 if (ret)
534 return ret;
e9d376f0
JB
535
536 *offp += len;
537 return len;
538}
539
540/*
541 * Set the iterator to point to the first _ddebug object
542 * and return a pointer to that first object. Returns
543 * NULL if there are no _ddebugs at all.
544 */
545static struct _ddebug *ddebug_iter_first(struct ddebug_iter *iter)
546{
547 if (list_empty(&ddebug_tables)) {
548 iter->table = NULL;
549 iter->idx = 0;
550 return NULL;
551 }
552 iter->table = list_entry(ddebug_tables.next,
553 struct ddebug_table, link);
554 iter->idx = 0;
555 return &iter->table->ddebugs[iter->idx];
556}
557
558/*
559 * Advance the iterator to point to the next _ddebug
560 * object from the one the iterator currently points at,
561 * and returns a pointer to the new _ddebug. Returns
562 * NULL if the iterator has seen all the _ddebugs.
563 */
564static struct _ddebug *ddebug_iter_next(struct ddebug_iter *iter)
565{
566 if (iter->table == NULL)
567 return NULL;
568 if (++iter->idx == iter->table->num_ddebugs) {
569 /* iterate to next table */
570 iter->idx = 0;
571 if (list_is_last(&iter->table->link, &ddebug_tables)) {
572 iter->table = NULL;
573 return NULL;
574 }
575 iter->table = list_entry(iter->table->link.next,
576 struct ddebug_table, link);
577 }
578 return &iter->table->ddebugs[iter->idx];
579}
580
581/*
582 * Seq_ops start method. Called at the start of every
583 * read() call from userspace. Takes the ddebug_lock and
584 * seeks the seq_file's iterator to the given position.
585 */
586static void *ddebug_proc_start(struct seq_file *m, loff_t *pos)
587{
588 struct ddebug_iter *iter = m->private;
589 struct _ddebug *dp;
590 int n = *pos;
591
592 if (verbose)
593 printk(KERN_INFO "%s: called m=%p *pos=%lld\n",
594 __func__, m, (unsigned long long)*pos);
595
596 mutex_lock(&ddebug_lock);
597
598 if (!n)
599 return SEQ_START_TOKEN;
600 if (n < 0)
601 return NULL;
602 dp = ddebug_iter_first(iter);
603 while (dp != NULL && --n > 0)
604 dp = ddebug_iter_next(iter);
605 return dp;
606}
607
608/*
609 * Seq_ops next method. Called several times within a read()
610 * call from userspace, with ddebug_lock held. Walks to the
611 * next _ddebug object with a special case for the header line.
612 */
613static void *ddebug_proc_next(struct seq_file *m, void *p, loff_t *pos)
614{
615 struct ddebug_iter *iter = m->private;
616 struct _ddebug *dp;
617
618 if (verbose)
619 printk(KERN_INFO "%s: called m=%p p=%p *pos=%lld\n",
620 __func__, m, p, (unsigned long long)*pos);
621
622 if (p == SEQ_START_TOKEN)
623 dp = ddebug_iter_first(iter);
624 else
625 dp = ddebug_iter_next(iter);
626 ++*pos;
627 return dp;
628}
629
630/*
631 * Seq_ops show method. Called several times within a read()
632 * call from userspace, with ddebug_lock held. Formats the
633 * current _ddebug as a single human-readable line, with a
634 * special case for the header line.
635 */
636static int ddebug_proc_show(struct seq_file *m, void *p)
637{
638 struct ddebug_iter *iter = m->private;
639 struct _ddebug *dp = p;
640 char flagsbuf[8];
641
642 if (verbose)
643 printk(KERN_INFO "%s: called m=%p p=%p\n",
644 __func__, m, p);
645
646 if (p == SEQ_START_TOKEN) {
647 seq_puts(m,
648 "# filename:lineno [module]function flags format\n");
649 return 0;
650 }
651
652 seq_printf(m, "%s:%u [%s]%s %s \"",
653 dp->filename, dp->lineno,
654 iter->table->mod_name, dp->function,
655 ddebug_describe_flags(dp, flagsbuf, sizeof(flagsbuf)));
656 seq_escape(m, dp->format, "\t\r\n\"");
657 seq_puts(m, "\"\n");
658
659 return 0;
660}
661
662/*
663 * Seq_ops stop method. Called at the end of each read()
664 * call from userspace. Drops ddebug_lock.
665 */
666static void ddebug_proc_stop(struct seq_file *m, void *p)
667{
668 if (verbose)
669 printk(KERN_INFO "%s: called m=%p p=%p\n",
670 __func__, m, p);
671 mutex_unlock(&ddebug_lock);
672}
673
674static const struct seq_operations ddebug_proc_seqops = {
675 .start = ddebug_proc_start,
676 .next = ddebug_proc_next,
677 .show = ddebug_proc_show,
678 .stop = ddebug_proc_stop
679};
680
681/*
682 * File_ops->open method for <debugfs>/dynamic_debug/control. Does the seq_file
683 * setup dance, and also creates an iterator to walk the _ddebugs.
684 * Note that we create a seq_file always, even for O_WRONLY files
685 * where it's not needed, as doing so simplifies the ->release method.
686 */
687static int ddebug_proc_open(struct inode *inode, struct file *file)
688{
689 struct ddebug_iter *iter;
690 int err;
691
692 if (verbose)
693 printk(KERN_INFO "%s: called\n", __func__);
694
695 iter = kzalloc(sizeof(*iter), GFP_KERNEL);
696 if (iter == NULL)
697 return -ENOMEM;
698
699 err = seq_open(file, &ddebug_proc_seqops);
700 if (err) {
701 kfree(iter);
702 return err;
703 }
704 ((struct seq_file *) file->private_data)->private = iter;
705 return 0;
706}
707
708static const struct file_operations ddebug_proc_fops = {
709 .owner = THIS_MODULE,
710 .open = ddebug_proc_open,
711 .read = seq_read,
712 .llseek = seq_lseek,
713 .release = seq_release_private,
714 .write = ddebug_proc_write
715};
716
717/*
718 * Allocate a new ddebug_table for the given module
719 * and add it to the global list.
720 */
721int ddebug_add_module(struct _ddebug *tab, unsigned int n,
722 const char *name)
723{
724 struct ddebug_table *dt;
725 char *new_name;
726
727 dt = kzalloc(sizeof(*dt), GFP_KERNEL);
728 if (dt == NULL)
729 return -ENOMEM;
730 new_name = kstrdup(name, GFP_KERNEL);
731 if (new_name == NULL) {
732 kfree(dt);
733 return -ENOMEM;
734 }
735 dt->mod_name = new_name;
736 dt->num_ddebugs = n;
737 dt->num_enabled = 0;
738 dt->ddebugs = tab;
739
740 mutex_lock(&ddebug_lock);
741 list_add_tail(&dt->link, &ddebug_tables);
742 mutex_unlock(&ddebug_lock);
743
744 if (verbose)
745 printk(KERN_INFO "%u debug prints in module %s\n",
746 n, dt->mod_name);
747 return 0;
748}
749EXPORT_SYMBOL_GPL(ddebug_add_module);
750
751static void ddebug_table_free(struct ddebug_table *dt)
752{
753 list_del_init(&dt->link);
754 kfree(dt->mod_name);
755 kfree(dt);
756}
757
758/*
759 * Called in response to a module being unloaded. Removes
760 * any ddebug_table's which point at the module.
761 */
ff49d74a 762int ddebug_remove_module(const char *mod_name)
e9d376f0
JB
763{
764 struct ddebug_table *dt, *nextdt;
765 int ret = -ENOENT;
766
767 if (verbose)
768 printk(KERN_INFO "%s: removing module \"%s\"\n",
769 __func__, mod_name);
770
771 mutex_lock(&ddebug_lock);
772 list_for_each_entry_safe(dt, nextdt, &ddebug_tables, link) {
773 if (!strcmp(dt->mod_name, mod_name)) {
774 ddebug_table_free(dt);
775 ret = 0;
776 }
777 }
778 mutex_unlock(&ddebug_lock);
779 return ret;
780}
781EXPORT_SYMBOL_GPL(ddebug_remove_module);
782
783static void ddebug_remove_all_tables(void)
784{
785 mutex_lock(&ddebug_lock);
786 while (!list_empty(&ddebug_tables)) {
787 struct ddebug_table *dt = list_entry(ddebug_tables.next,
788 struct ddebug_table,
789 link);
790 ddebug_table_free(dt);
791 }
792 mutex_unlock(&ddebug_lock);
793}
794
6a5c083d
TR
795static __initdata int ddebug_init_success;
796
797static int __init dynamic_debug_init_debugfs(void)
e9d376f0
JB
798{
799 struct dentry *dir, *file;
6a5c083d
TR
800
801 if (!ddebug_init_success)
802 return -ENODEV;
e9d376f0
JB
803
804 dir = debugfs_create_dir("dynamic_debug", NULL);
805 if (!dir)
806 return -ENOMEM;
807 file = debugfs_create_file("control", 0644, dir, NULL,
808 &ddebug_proc_fops);
809 if (!file) {
810 debugfs_remove(dir);
811 return -ENOMEM;
812 }
6a5c083d
TR
813 return 0;
814}
815
816static int __init dynamic_debug_init(void)
817{
818 struct _ddebug *iter, *iter_start;
819 const char *modname = NULL;
820 int ret = 0;
821 int n = 0;
822
e9d376f0
JB
823 if (__start___verbose != __stop___verbose) {
824 iter = __start___verbose;
825 modname = iter->modname;
826 iter_start = iter;
827 for (; iter < __stop___verbose; iter++) {
828 if (strcmp(modname, iter->modname)) {
829 ret = ddebug_add_module(iter_start, n, modname);
830 if (ret)
831 goto out_free;
832 n = 0;
833 modname = iter->modname;
834 iter_start = iter;
835 }
836 n++;
837 }
838 ret = ddebug_add_module(iter_start, n, modname);
839 }
a648ec05
TR
840
841 /* ddebug_query boot param got passed -> set it up */
842 if (ddebug_setup_string[0] != '\0') {
843 ret = ddebug_exec_query(ddebug_setup_string);
844 if (ret)
845 pr_warning("Invalid ddebug boot param %s",
846 ddebug_setup_string);
847 else
848 pr_info("ddebug initialized with string %s",
849 ddebug_setup_string);
850 }
851
e9d376f0 852out_free:
6a5c083d 853 if (ret)
e9d376f0 854 ddebug_remove_all_tables();
6a5c083d
TR
855 else
856 ddebug_init_success = 1;
e9d376f0
JB
857 return 0;
858}
6a5c083d
TR
859/* Allow early initialization for boot messages via boot param */
860arch_initcall(dynamic_debug_init);
861/* Debugfs setup must be done later */
862module_init(dynamic_debug_init_debugfs);