4 * Copyright (C) 2008 Lai Jiangshan <laijs@cn.fujitsu.com>
7 #include <linux/seq_file.h>
8 #include <linux/debugfs.h>
9 #include <linux/uaccess.h>
10 #include <linux/kernel.h>
11 #include <linux/ftrace.h>
12 #include <linux/string.h>
13 #include <linux/module.h>
14 #include <linux/marker.h>
15 #include <linux/mutex.h>
16 #include <linux/ctype.h>
17 #include <linux/list.h>
18 #include <linux/slab.h>
26 * modules trace_printk()'s formats are autosaved in struct trace_bprintk_fmt
27 * which are queued on trace_bprintk_fmt_list.
29 static LIST_HEAD(trace_bprintk_fmt_list
);
31 /* serialize accesses to trace_bprintk_fmt_list */
32 static DEFINE_MUTEX(btrace_mutex
);
34 struct trace_bprintk_fmt
{
35 struct list_head list
;
39 static inline struct trace_bprintk_fmt
*lookup_format(const char *fmt
)
41 struct trace_bprintk_fmt
*pos
;
42 list_for_each_entry(pos
, &trace_bprintk_fmt_list
, list
) {
43 if (!strcmp(pos
->fmt
, fmt
))
50 void hold_module_trace_bprintk_format(const char **start
, const char **end
)
54 mutex_lock(&btrace_mutex
);
55 for (iter
= start
; iter
< end
; iter
++) {
56 struct trace_bprintk_fmt
*tb_fmt
= lookup_format(*iter
);
62 tb_fmt
= kmalloc(offsetof(struct trace_bprintk_fmt
, fmt
)
63 + strlen(*iter
) + 1, GFP_KERNEL
);
65 list_add_tail(&tb_fmt
->list
, &trace_bprintk_fmt_list
);
66 strcpy(tb_fmt
->fmt
, *iter
);
71 mutex_unlock(&btrace_mutex
);
74 static int module_trace_bprintk_format_notify(struct notifier_block
*self
,
75 unsigned long val
, void *data
)
77 struct module
*mod
= data
;
78 if (mod
->num_trace_bprintk_fmt
) {
79 const char **start
= mod
->trace_bprintk_fmt_start
;
80 const char **end
= start
+ mod
->num_trace_bprintk_fmt
;
82 if (val
== MODULE_STATE_COMING
)
83 hold_module_trace_bprintk_format(start
, end
);
88 #else /* !CONFIG_MODULES */
90 module_trace_bprintk_format_notify(struct notifier_block
*self
,
91 unsigned long val
, void *data
)
95 #endif /* CONFIG_MODULES */
98 __initdata_or_module
static
99 struct notifier_block module_trace_bprintk_format_nb
= {
100 .notifier_call
= module_trace_bprintk_format_notify
,
103 int __trace_bprintk(unsigned long ip
, const char *fmt
, ...)
111 if (!(trace_flags
& TRACE_ITER_PRINTK
))
115 ret
= trace_vbprintk(ip
, fmt
, ap
);
119 EXPORT_SYMBOL_GPL(__trace_bprintk
);
121 int __ftrace_vbprintk(unsigned long ip
, const char *fmt
, va_list ap
)
126 if (!(trace_flags
& TRACE_ITER_PRINTK
))
129 return trace_vbprintk(ip
, fmt
, ap
);
131 EXPORT_SYMBOL_GPL(__ftrace_vbprintk
);
133 int __trace_printk(unsigned long ip
, const char *fmt
, ...)
138 if (!(trace_flags
& TRACE_ITER_PRINTK
))
142 ret
= trace_vprintk(ip
, fmt
, ap
);
146 EXPORT_SYMBOL_GPL(__trace_printk
);
148 int __ftrace_vprintk(unsigned long ip
, const char *fmt
, va_list ap
)
150 if (!(trace_flags
& TRACE_ITER_PRINTK
))
153 return trace_vprintk(ip
, fmt
, ap
);
155 EXPORT_SYMBOL_GPL(__ftrace_vprintk
);
158 t_start(struct seq_file
*m
, loff_t
*pos
)
160 const char **fmt
= __start___trace_bprintk_fmt
+ *pos
;
162 if ((unsigned long)fmt
>= (unsigned long)__stop___trace_bprintk_fmt
)
167 static void *t_next(struct seq_file
*m
, void * v
, loff_t
*pos
)
170 return t_start(m
, pos
);
173 static int t_show(struct seq_file
*m
, void *v
)
175 const char **fmt
= v
;
176 const char *str
= *fmt
;
179 seq_printf(m
, "0x%lx : \"", *(unsigned long *)fmt
);
182 * Tabs and new lines need to be converted.
184 for (i
= 0; str
[i
]; i
++) {
207 static void t_stop(struct seq_file
*m
, void *p
)
211 static const struct seq_operations show_format_seq_ops
= {
219 ftrace_formats_open(struct inode
*inode
, struct file
*file
)
221 return seq_open(file
, &show_format_seq_ops
);
224 static const struct file_operations ftrace_formats_fops
= {
225 .open
= ftrace_formats_open
,
228 .release
= seq_release
,
231 static __init
int init_trace_printk_function_export(void)
233 struct dentry
*d_tracer
;
235 d_tracer
= tracing_init_dentry();
239 trace_create_file("printk_formats", 0444, d_tracer
,
240 NULL
, &ftrace_formats_fops
);
245 fs_initcall(init_trace_printk_function_export
);
247 static __init
int init_trace_printk(void)
249 return register_module_notifier(&module_trace_bprintk_format_nb
);
252 early_initcall(init_trace_printk
);