Merge tag 'scsi-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi
[deliverable/linux.git] / kernel / trace / trace_output.c
CommitLineData
f0868d1e
SR
1/*
2 * trace_output.c
3 *
4 * Copyright (C) 2008 Red Hat Inc, Steven Rostedt <srostedt@redhat.com>
5 *
6 */
7
8#include <linux/module.h>
9#include <linux/mutex.h>
10#include <linux/ftrace.h>
11
12#include "trace_output.h"
13
14/* must be a power of 2 */
15#define EVENT_HASHSIZE 128
16
52f6ad6d 17DECLARE_RWSEM(trace_event_sem);
be74b73a 18
f0868d1e
SR
19static struct hlist_head event_hash[EVENT_HASHSIZE] __read_mostly;
20
21static int next_event_type = __TRACE_LAST_TYPE + 1;
22
09ae7234
SRRH
23enum print_line_t trace_print_bputs_msg_only(struct trace_iterator *iter)
24{
25 struct trace_seq *s = &iter->seq;
26 struct trace_entry *entry = iter->ent;
27 struct bputs_entry *field;
09ae7234
SRRH
28
29 trace_assign_type(field, entry);
30
19a7fe20 31 trace_seq_puts(s, field->str);
09ae7234 32
19a7fe20 33 return trace_handle_return(s);
09ae7234
SRRH
34}
35
5ef841f6
SR
36enum print_line_t trace_print_bprintk_msg_only(struct trace_iterator *iter)
37{
38 struct trace_seq *s = &iter->seq;
39 struct trace_entry *entry = iter->ent;
40 struct bprint_entry *field;
5ef841f6
SR
41
42 trace_assign_type(field, entry);
43
19a7fe20 44 trace_seq_bprintf(s, field->fmt, field->buf);
5ef841f6 45
19a7fe20 46 return trace_handle_return(s);
5ef841f6
SR
47}
48
49enum print_line_t trace_print_printk_msg_only(struct trace_iterator *iter)
50{
51 struct trace_seq *s = &iter->seq;
52 struct trace_entry *entry = iter->ent;
53 struct print_entry *field;
5ef841f6
SR
54
55 trace_assign_type(field, entry);
56
19a7fe20 57 trace_seq_puts(s, field->buf);
5ef841f6 58
19a7fe20 59 return trace_handle_return(s);
5ef841f6
SR
60}
61
be74b73a 62const char *
645df987
SRRH
63trace_print_flags_seq(struct trace_seq *p, const char *delim,
64 unsigned long flags,
65 const struct trace_print_flags *flag_array)
be74b73a
SR
66{
67 unsigned long mask;
68 const char *str;
7b039cb4 69 const char *ret = trace_seq_buffer_ptr(p);
e404b321 70 int i, first = 1;
be74b73a 71
be74b73a
SR
72 for (i = 0; flag_array[i].name && flags; i++) {
73
74 mask = flag_array[i].mask;
75 if ((flags & mask) != mask)
76 continue;
77
78 str = flag_array[i].name;
79 flags &= ~mask;
e404b321 80 if (!first && delim)
be74b73a 81 trace_seq_puts(p, delim);
e404b321
AV
82 else
83 first = 0;
be74b73a
SR
84 trace_seq_puts(p, str);
85 }
86
87 /* check for left over flags */
88 if (flags) {
5b349261 89 if (!first && delim)
be74b73a
SR
90 trace_seq_puts(p, delim);
91 trace_seq_printf(p, "0x%lx", flags);
92 }
93
94 trace_seq_putc(p, 0);
95
56d8bd3f 96 return ret;
be74b73a 97}
645df987 98EXPORT_SYMBOL(trace_print_flags_seq);
be74b73a 99
0f4fc29d 100const char *
645df987
SRRH
101trace_print_symbols_seq(struct trace_seq *p, unsigned long val,
102 const struct trace_print_flags *symbol_array)
0f4fc29d
SR
103{
104 int i;
7b039cb4 105 const char *ret = trace_seq_buffer_ptr(p);
0f4fc29d
SR
106
107 for (i = 0; symbol_array[i].name; i++) {
108
109 if (val != symbol_array[i].mask)
110 continue;
111
112 trace_seq_puts(p, symbol_array[i].name);
113 break;
114 }
115
7b039cb4 116 if (ret == (const char *)(trace_seq_buffer_ptr(p)))
0f4fc29d 117 trace_seq_printf(p, "0x%lx", val);
8e1e1df2 118
0f4fc29d
SR
119 trace_seq_putc(p, 0);
120
56d8bd3f 121 return ret;
0f4fc29d 122}
645df987 123EXPORT_SYMBOL(trace_print_symbols_seq);
0f4fc29d 124
2fc1b6f0 125#if BITS_PER_LONG == 32
126const char *
645df987 127trace_print_symbols_seq_u64(struct trace_seq *p, unsigned long long val,
2fc1b6f0 128 const struct trace_print_flags_u64 *symbol_array)
129{
130 int i;
7b039cb4 131 const char *ret = trace_seq_buffer_ptr(p);
2fc1b6f0 132
133 for (i = 0; symbol_array[i].name; i++) {
134
135 if (val != symbol_array[i].mask)
136 continue;
137
138 trace_seq_puts(p, symbol_array[i].name);
139 break;
140 }
141
7b039cb4 142 if (ret == (const char *)(trace_seq_buffer_ptr(p)))
2fc1b6f0 143 trace_seq_printf(p, "0x%llx", val);
144
145 trace_seq_putc(p, 0);
146
147 return ret;
148}
645df987 149EXPORT_SYMBOL(trace_print_symbols_seq_u64);
2fc1b6f0 150#endif
151
4449bf92 152const char *
645df987
SRRH
153trace_print_bitmask_seq(struct trace_seq *p, void *bitmask_ptr,
154 unsigned int bitmask_size)
4449bf92 155{
7b039cb4 156 const char *ret = trace_seq_buffer_ptr(p);
4449bf92
SRRH
157
158 trace_seq_bitmask(p, bitmask_ptr, bitmask_size * 8);
159 trace_seq_putc(p, 0);
160
161 return ret;
162}
645df987 163EXPORT_SYMBOL_GPL(trace_print_bitmask_seq);
4449bf92 164
5a2e3995 165const char *
645df987 166trace_print_hex_seq(struct trace_seq *p, const unsigned char *buf, int buf_len)
5a2e3995
KT
167{
168 int i;
7b039cb4 169 const char *ret = trace_seq_buffer_ptr(p);
5a2e3995
KT
170
171 for (i = 0; i < buf_len; i++)
172 trace_seq_printf(p, "%s%2.2x", i == 0 ? "" : " ", buf[i]);
173
174 trace_seq_putc(p, 0);
175
176 return ret;
177}
645df987 178EXPORT_SYMBOL(trace_print_hex_seq);
5a2e3995 179
6ea22486 180const char *
645df987
SRRH
181trace_print_array_seq(struct trace_seq *p, const void *buf, int count,
182 size_t el_size)
6ea22486
DM
183{
184 const char *ret = trace_seq_buffer_ptr(p);
185 const char *prefix = "";
186 void *ptr = (void *)buf;
ac01ce14 187 size_t buf_len = count * el_size;
6ea22486
DM
188
189 trace_seq_putc(p, '{');
190
191 while (ptr < buf + buf_len) {
192 switch (el_size) {
193 case 1:
194 trace_seq_printf(p, "%s0x%x", prefix,
195 *(u8 *)ptr);
196 break;
197 case 2:
198 trace_seq_printf(p, "%s0x%x", prefix,
199 *(u16 *)ptr);
200 break;
201 case 4:
202 trace_seq_printf(p, "%s0x%x", prefix,
203 *(u32 *)ptr);
204 break;
205 case 8:
206 trace_seq_printf(p, "%s0x%llx", prefix,
207 *(u64 *)ptr);
208 break;
209 default:
210 trace_seq_printf(p, "BAD SIZE:%zu 0x%x", el_size,
211 *(u8 *)ptr);
212 el_size = 1;
213 }
214 prefix = ",";
215 ptr += el_size;
216 }
217
218 trace_seq_putc(p, '}');
219 trace_seq_putc(p, 0);
220
221 return ret;
222}
645df987 223EXPORT_SYMBOL(trace_print_array_seq);
6ea22486 224
892c505a
SRRH
225int trace_raw_output_prep(struct trace_iterator *iter,
226 struct trace_event *trace_event)
f71130de 227{
2425bcb9 228 struct trace_event_call *event;
f71130de
LZ
229 struct trace_seq *s = &iter->seq;
230 struct trace_seq *p = &iter->tmp_seq;
231 struct trace_entry *entry;
f71130de 232
2425bcb9 233 event = container_of(trace_event, struct trace_event_call, event);
f71130de
LZ
234 entry = iter->ent;
235
236 if (entry->type != event->event.type) {
237 WARN_ON_ONCE(1);
238 return TRACE_TYPE_UNHANDLED;
239 }
240
241 trace_seq_init(p);
687fcc4a 242 trace_seq_printf(s, "%s: ", trace_event_name(event));
19a7fe20 243
8e2e095c 244 return trace_handle_return(s);
f71130de 245}
892c505a 246EXPORT_SYMBOL(trace_raw_output_prep);
f71130de 247
892c505a
SRRH
248static int trace_output_raw(struct trace_iterator *iter, char *name,
249 char *fmt, va_list ap)
1d6bae96
SR
250{
251 struct trace_seq *s = &iter->seq;
1d6bae96 252
19a7fe20
SRRH
253 trace_seq_printf(s, "%s: ", name);
254 trace_seq_vprintf(s, fmt, ap);
1d6bae96 255
19a7fe20 256 return trace_handle_return(s);
1d6bae96
SR
257}
258
892c505a 259int trace_output_call(struct trace_iterator *iter, char *name, char *fmt, ...)
1d6bae96
SR
260{
261 va_list ap;
262 int ret;
263
264 va_start(ap, fmt);
892c505a 265 ret = trace_output_raw(iter, name, fmt, ap);
1d6bae96
SR
266 va_end(ap);
267
268 return ret;
269}
892c505a 270EXPORT_SYMBOL_GPL(trace_output_call);
1d6bae96 271
f0868d1e
SR
272#ifdef CONFIG_KRETPROBES
273static inline const char *kretprobed(const char *name)
274{
275 static const char tramp_name[] = "kretprobe_trampoline";
276 int size = sizeof(tramp_name);
277
278 if (strncmp(tramp_name, name, size) == 0)
279 return "[unknown/kretprobe'd]";
280 return name;
281}
282#else
283static inline const char *kretprobed(const char *name)
284{
285 return name;
286}
287#endif /* CONFIG_KRETPROBES */
288
19a7fe20 289static void
f0868d1e
SR
290seq_print_sym_short(struct trace_seq *s, const char *fmt, unsigned long address)
291{
292#ifdef CONFIG_KALLSYMS
293 char str[KSYM_SYMBOL_LEN];
294 const char *name;
295
296 kallsyms_lookup(address, NULL, NULL, NULL, str);
297
298 name = kretprobed(str);
299
19a7fe20 300 trace_seq_printf(s, fmt, name);
f0868d1e 301#endif
f0868d1e
SR
302}
303
19a7fe20 304static void
f0868d1e
SR
305seq_print_sym_offset(struct trace_seq *s, const char *fmt,
306 unsigned long address)
307{
308#ifdef CONFIG_KALLSYMS
309 char str[KSYM_SYMBOL_LEN];
310 const char *name;
311
312 sprint_symbol(str, address);
313 name = kretprobed(str);
314
19a7fe20 315 trace_seq_printf(s, fmt, name);
f0868d1e 316#endif
f0868d1e
SR
317}
318
319#ifndef CONFIG_64BIT
320# define IP_FMT "%08lx"
321#else
322# define IP_FMT "%016lx"
323#endif
324
ef92480a
SRRH
325static int seq_print_user_ip(struct trace_seq *s, struct mm_struct *mm,
326 unsigned long ip, unsigned long sym_flags)
f0868d1e
SR
327{
328 struct file *file = NULL;
329 unsigned long vmstart = 0;
330 int ret = 1;
331
d184b31c
JB
332 if (s->full)
333 return 0;
334
f0868d1e
SR
335 if (mm) {
336 const struct vm_area_struct *vma;
337
338 down_read(&mm->mmap_sem);
339 vma = find_vma(mm, ip);
340 if (vma) {
341 file = vma->vm_file;
342 vmstart = vma->vm_start;
343 }
344 if (file) {
345 ret = trace_seq_path(s, &file->f_path);
346 if (ret)
19a7fe20
SRRH
347 trace_seq_printf(s, "[+0x%lx]",
348 ip - vmstart);
f0868d1e
SR
349 }
350 up_read(&mm->mmap_sem);
351 }
352 if (ret && ((sym_flags & TRACE_ITER_SYM_ADDR) || !file))
19a7fe20
SRRH
353 trace_seq_printf(s, " <" IP_FMT ">", ip);
354 return !trace_seq_has_overflowed(s);
f0868d1e
SR
355}
356
f0868d1e
SR
357int
358seq_print_ip_sym(struct trace_seq *s, unsigned long ip, unsigned long sym_flags)
359{
19a7fe20
SRRH
360 if (!ip) {
361 trace_seq_putc(s, '0');
362 goto out;
363 }
f0868d1e
SR
364
365 if (sym_flags & TRACE_ITER_SYM_OFFSET)
19a7fe20 366 seq_print_sym_offset(s, "%s", ip);
f0868d1e 367 else
19a7fe20 368 seq_print_sym_short(s, "%s", ip);
f0868d1e
SR
369
370 if (sym_flags & TRACE_ITER_SYM_ADDR)
19a7fe20
SRRH
371 trace_seq_printf(s, " <" IP_FMT ">", ip);
372
373 out:
374 return !trace_seq_has_overflowed(s);
f0868d1e
SR
375}
376
f81c972d
SR
377/**
378 * trace_print_lat_fmt - print the irq, preempt and lockdep fields
379 * @s: trace seq struct to write to
380 * @entry: The trace entry field from the ring buffer
381 *
382 * Prints the generic fields of irqs off, in hard or softirq, preempt
e6e1e259 383 * count.
f81c972d
SR
384 */
385int trace_print_lat_fmt(struct trace_seq *s, struct trace_entry *entry)
c4a8e8be 386{
10da37a6
DS
387 char hardsoft_irq;
388 char need_resched;
389 char irqs_off;
390 int hardirq;
391 int softirq;
c4a8e8be 392
c4a8e8be
FW
393 hardirq = entry->flags & TRACE_FLAG_HARDIRQ;
394 softirq = entry->flags & TRACE_FLAG_SOFTIRQ;
d9793bd8 395
10da37a6
DS
396 irqs_off =
397 (entry->flags & TRACE_FLAG_IRQS_OFF) ? 'd' :
398 (entry->flags & TRACE_FLAG_IRQS_NOSUPPORT) ? 'X' :
399 '.';
e5137b50
PZ
400
401 switch (entry->flags & (TRACE_FLAG_NEED_RESCHED |
402 TRACE_FLAG_PREEMPT_RESCHED)) {
403 case TRACE_FLAG_NEED_RESCHED | TRACE_FLAG_PREEMPT_RESCHED:
404 need_resched = 'N';
405 break;
406 case TRACE_FLAG_NEED_RESCHED:
407 need_resched = 'n';
408 break;
409 case TRACE_FLAG_PREEMPT_RESCHED:
410 need_resched = 'p';
411 break;
412 default:
413 need_resched = '.';
414 break;
415 }
416
10da37a6
DS
417 hardsoft_irq =
418 (hardirq && softirq) ? 'H' :
419 hardirq ? 'h' :
420 softirq ? 's' :
421 '.';
422
19a7fe20
SRRH
423 trace_seq_printf(s, "%c%c%c",
424 irqs_off, need_resched, hardsoft_irq);
c4a8e8be 425
829b876d 426 if (entry->preempt_count)
19a7fe20 427 trace_seq_printf(s, "%x", entry->preempt_count);
637e7e86 428 else
19a7fe20 429 trace_seq_putc(s, '.');
829b876d 430
19a7fe20 431 return !trace_seq_has_overflowed(s);
c4a8e8be
FW
432}
433
f81c972d
SR
434static int
435lat_print_generic(struct trace_seq *s, struct trace_entry *entry, int cpu)
436{
437 char comm[TASK_COMM_LEN];
438
439 trace_find_cmdline(entry->pid, comm);
440
19a7fe20
SRRH
441 trace_seq_printf(s, "%8.8s-%-5d %3d",
442 comm, entry->pid, cpu);
f81c972d
SR
443
444 return trace_print_lat_fmt(s, entry);
445}
446
8e1e1df2
BP
447#undef MARK
448#define MARK(v, s) {.val = v, .sym = s}
449/* trace overhead mark */
450static const struct trace_mark {
451 unsigned long long val; /* unit: nsec */
452 char sym;
453} mark[] = {
454 MARK(1000000000ULL , '$'), /* 1 sec */
b838e1d9
JL
455 MARK(100000000ULL , '@'), /* 100 msec */
456 MARK(10000000ULL , '*'), /* 10 msec */
8e1e1df2
BP
457 MARK(1000000ULL , '#'), /* 1000 usecs */
458 MARK(100000ULL , '!'), /* 100 usecs */
459 MARK(10000ULL , '+'), /* 10 usecs */
460};
461#undef MARK
462
463char trace_find_mark(unsigned long long d)
464{
465 int i;
466 int size = ARRAY_SIZE(mark);
467
468 for (i = 0; i < size; i++) {
b838e1d9 469 if (d > mark[i].val)
8e1e1df2
BP
470 break;
471 }
472
473 return (i == size) ? ' ' : mark[i].sym;
474}
c4a8e8be 475
d9793bd8 476static int
8be0709f 477lat_print_timestamp(struct trace_iterator *iter, u64 next_ts)
c4a8e8be 478{
983f938a
SRRH
479 struct trace_array *tr = iter->tr;
480 unsigned long verbose = tr->trace_flags & TRACE_ITER_VERBOSE;
8be0709f 481 unsigned long in_ns = iter->iter_flags & TRACE_FILE_TIME_IN_NS;
12883efb 482 unsigned long long abs_ts = iter->ts - iter->trace_buffer->time_start;
8be0709f
DS
483 unsigned long long rel_ts = next_ts - iter->ts;
484 struct trace_seq *s = &iter->seq;
485
486 if (in_ns) {
487 abs_ts = ns2usecs(abs_ts);
488 rel_ts = ns2usecs(rel_ts);
489 }
490
491 if (verbose && in_ns) {
492 unsigned long abs_usec = do_div(abs_ts, USEC_PER_MSEC);
493 unsigned long abs_msec = (unsigned long)abs_ts;
494 unsigned long rel_usec = do_div(rel_ts, USEC_PER_MSEC);
495 unsigned long rel_msec = (unsigned long)rel_ts;
496
19a7fe20
SRRH
497 trace_seq_printf(
498 s, "[%08llx] %ld.%03ldms (+%ld.%03ldms): ",
499 ns2usecs(iter->ts),
500 abs_msec, abs_usec,
501 rel_msec, rel_usec);
502
8be0709f 503 } else if (verbose && !in_ns) {
19a7fe20
SRRH
504 trace_seq_printf(
505 s, "[%016llx] %lld (+%lld): ",
506 iter->ts, abs_ts, rel_ts);
507
8be0709f 508 } else if (!verbose && in_ns) {
19a7fe20
SRRH
509 trace_seq_printf(
510 s, " %4lldus%c: ",
511 abs_ts,
8e1e1df2 512 trace_find_mark(rel_ts * NSEC_PER_USEC));
19a7fe20 513
8be0709f 514 } else { /* !verbose && !in_ns */
19a7fe20 515 trace_seq_printf(s, " %4lld: ", abs_ts);
8be0709f 516 }
19a7fe20
SRRH
517
518 return !trace_seq_has_overflowed(s);
c4a8e8be
FW
519}
520
521int trace_print_context(struct trace_iterator *iter)
522{
983f938a 523 struct trace_array *tr = iter->tr;
c4a8e8be
FW
524 struct trace_seq *s = &iter->seq;
525 struct trace_entry *entry = iter->ent;
8be0709f
DS
526 unsigned long long t;
527 unsigned long secs, usec_rem;
4ca53085
SR
528 char comm[TASK_COMM_LEN];
529
530 trace_find_cmdline(entry->pid, comm);
c4a8e8be 531
19a7fe20 532 trace_seq_printf(s, "%16s-%-5d [%03d] ",
77271ce4 533 comm, entry->pid, iter->cpu);
77271ce4 534
983f938a 535 if (tr->trace_flags & TRACE_ITER_IRQ_INFO)
19a7fe20 536 trace_print_lat_fmt(s, entry);
77271ce4 537
8be0709f
DS
538 if (iter->iter_flags & TRACE_FILE_TIME_IN_NS) {
539 t = ns2usecs(iter->ts);
540 usec_rem = do_div(t, USEC_PER_SEC);
541 secs = (unsigned long)t;
19a7fe20 542 trace_seq_printf(s, " %5lu.%06lu: ", secs, usec_rem);
8be0709f 543 } else
19a7fe20
SRRH
544 trace_seq_printf(s, " %12llu: ", iter->ts);
545
546 return !trace_seq_has_overflowed(s);
c4a8e8be
FW
547}
548
549int trace_print_lat_context(struct trace_iterator *iter)
550{
983f938a 551 struct trace_array *tr = iter->tr;
db4c75cb
SR
552 /* trace_find_next_entry will reset ent_size */
553 int ent_size = iter->ent_size;
c4a8e8be 554 struct trace_seq *s = &iter->seq;
983f938a 555 u64 next_ts;
c4a8e8be
FW
556 struct trace_entry *entry = iter->ent,
557 *next_entry = trace_find_next_entry(iter, NULL,
558 &next_ts);
983f938a 559 unsigned long verbose = (tr->trace_flags & TRACE_ITER_VERBOSE);
c4a8e8be 560
db4c75cb
SR
561 /* Restore the original ent_size */
562 iter->ent_size = ent_size;
563
c4a8e8be
FW
564 if (!next_entry)
565 next_ts = iter->ts;
c4a8e8be
FW
566
567 if (verbose) {
4ca53085
SR
568 char comm[TASK_COMM_LEN];
569
570 trace_find_cmdline(entry->pid, comm);
571
19a7fe20
SRRH
572 trace_seq_printf(
573 s, "%16s %5d %3d %d %08x %08lx ",
574 comm, entry->pid, iter->cpu, entry->flags,
575 entry->preempt_count, iter->idx);
c4a8e8be 576 } else {
19a7fe20 577 lat_print_generic(s, entry, iter->cpu);
c4a8e8be
FW
578 }
579
19a7fe20 580 lat_print_timestamp(iter, next_ts);
8be0709f 581
19a7fe20 582 return !trace_seq_has_overflowed(s);
c4a8e8be
FW
583}
584
f633cef0
SR
585static const char state_to_char[] = TASK_STATE_TO_CHAR_STR;
586
587static int task_state_char(unsigned long state)
588{
589 int bit = state ? __ffs(state) + 1 : 0;
590
591 return bit < sizeof(state_to_char) - 1 ? state_to_char[bit] : '?';
592}
593
f0868d1e
SR
594/**
595 * ftrace_find_event - find a registered event
596 * @type: the type of event to look for
597 *
598 * Returns an event of type @type otherwise NULL
4f535968 599 * Called with trace_event_read_lock() held.
f0868d1e
SR
600 */
601struct trace_event *ftrace_find_event(int type)
602{
603 struct trace_event *event;
f0868d1e
SR
604 unsigned key;
605
606 key = type & (EVENT_HASHSIZE - 1);
607
b67bfe0d 608 hlist_for_each_entry(event, &event_hash[key], node) {
f0868d1e
SR
609 if (event->type == type)
610 return event;
611 }
612
613 return NULL;
614}
615
060fa5c8
SR
616static LIST_HEAD(ftrace_event_list);
617
618static int trace_search_list(struct list_head **list)
619{
620 struct trace_event *e;
621 int last = __TRACE_LAST_TYPE;
622
623 if (list_empty(&ftrace_event_list)) {
624 *list = &ftrace_event_list;
625 return last + 1;
626 }
627
628 /*
629 * We used up all possible max events,
630 * lets see if somebody freed one.
631 */
632 list_for_each_entry(e, &ftrace_event_list, list) {
633 if (e->type != last + 1)
634 break;
635 last++;
636 }
637
638 /* Did we used up all 65 thousand events??? */
609a7404 639 if ((last + 1) > TRACE_EVENT_TYPE_MAX)
060fa5c8
SR
640 return 0;
641
642 *list = &e->list;
643 return last + 1;
644}
645
4f535968
LJ
646void trace_event_read_lock(void)
647{
52f6ad6d 648 down_read(&trace_event_sem);
4f535968
LJ
649}
650
651void trace_event_read_unlock(void)
652{
52f6ad6d 653 up_read(&trace_event_sem);
4f535968
LJ
654}
655
f0868d1e 656/**
9023c930 657 * register_trace_event - register output for an event type
f0868d1e
SR
658 * @event: the event type to register
659 *
660 * Event types are stored in a hash and this hash is used to
661 * find a way to print an event. If the @event->type is set
662 * then it will use that type, otherwise it will assign a
663 * type to use.
664 *
665 * If you assign your own type, please make sure it is added
666 * to the trace_type enum in trace.h, to avoid collisions
667 * with the dynamic types.
668 *
669 * Returns the event type number or zero on error.
670 */
9023c930 671int register_trace_event(struct trace_event *event)
f0868d1e
SR
672{
673 unsigned key;
674 int ret = 0;
675
52f6ad6d 676 down_write(&trace_event_sem);
f0868d1e 677
060fa5c8 678 if (WARN_ON(!event))
28bea271 679 goto out;
28bea271 680
a9a57763
SR
681 if (WARN_ON(!event->funcs))
682 goto out;
683
060fa5c8
SR
684 INIT_LIST_HEAD(&event->list);
685
686 if (!event->type) {
48dd0fed 687 struct list_head *list = NULL;
060fa5c8 688
609a7404 689 if (next_event_type > TRACE_EVENT_TYPE_MAX) {
060fa5c8
SR
690
691 event->type = trace_search_list(&list);
692 if (!event->type)
693 goto out;
694
695 } else {
8e1e1df2 696
060fa5c8
SR
697 event->type = next_event_type++;
698 list = &ftrace_event_list;
699 }
700
701 if (WARN_ON(ftrace_find_event(event->type)))
702 goto out;
703
704 list_add_tail(&event->list, list);
705
706 } else if (event->type > __TRACE_LAST_TYPE) {
f0868d1e
SR
707 printk(KERN_WARNING "Need to add type to trace.h\n");
708 WARN_ON(1);
f0868d1e 709 goto out;
060fa5c8
SR
710 } else {
711 /* Is this event already used */
712 if (ftrace_find_event(event->type))
713 goto out;
714 }
f0868d1e 715
a9a57763
SR
716 if (event->funcs->trace == NULL)
717 event->funcs->trace = trace_nop_print;
718 if (event->funcs->raw == NULL)
719 event->funcs->raw = trace_nop_print;
720 if (event->funcs->hex == NULL)
721 event->funcs->hex = trace_nop_print;
722 if (event->funcs->binary == NULL)
723 event->funcs->binary = trace_nop_print;
268ccda0 724
f0868d1e
SR
725 key = event->type & (EVENT_HASHSIZE - 1);
726
4f535968 727 hlist_add_head(&event->node, &event_hash[key]);
f0868d1e
SR
728
729 ret = event->type;
730 out:
52f6ad6d 731 up_write(&trace_event_sem);
f0868d1e
SR
732
733 return ret;
734}
9023c930 735EXPORT_SYMBOL_GPL(register_trace_event);
f0868d1e 736
110bf2b7 737/*
52f6ad6d 738 * Used by module code with the trace_event_sem held for write.
110bf2b7 739 */
9023c930 740int __unregister_trace_event(struct trace_event *event)
110bf2b7
SR
741{
742 hlist_del(&event->node);
743 list_del(&event->list);
744 return 0;
745}
746
f0868d1e 747/**
9023c930 748 * unregister_trace_event - remove a no longer used event
f0868d1e
SR
749 * @event: the event to remove
750 */
9023c930 751int unregister_trace_event(struct trace_event *event)
f0868d1e 752{
52f6ad6d 753 down_write(&trace_event_sem);
9023c930 754 __unregister_trace_event(event);
52f6ad6d 755 up_write(&trace_event_sem);
f0868d1e
SR
756
757 return 0;
758}
9023c930 759EXPORT_SYMBOL_GPL(unregister_trace_event);
f633cef0
SR
760
761/*
762 * Standard events
763 */
764
a9a57763
SR
765enum print_line_t trace_nop_print(struct trace_iterator *iter, int flags,
766 struct trace_event *event)
f633cef0 767{
19a7fe20 768 trace_seq_printf(&iter->seq, "type: %d\n", iter->ent->type);
ee5e51f5 769
19a7fe20 770 return trace_handle_return(&iter->seq);
f633cef0
SR
771}
772
773/* TRACE_FN */
a9a57763
SR
774static enum print_line_t trace_fn_trace(struct trace_iterator *iter, int flags,
775 struct trace_event *event)
f633cef0
SR
776{
777 struct ftrace_entry *field;
2c9b238e 778 struct trace_seq *s = &iter->seq;
f633cef0 779
2c9b238e 780 trace_assign_type(field, iter->ent);
f633cef0 781
19a7fe20 782 seq_print_ip_sym(s, field->ip, flags);
f633cef0
SR
783
784 if ((flags & TRACE_ITER_PRINT_PARENT) && field->parent_ip) {
19a7fe20
SRRH
785 trace_seq_puts(s, " <-");
786 seq_print_ip_sym(s, field->parent_ip, flags);
f633cef0 787 }
f633cef0 788
19a7fe20 789 trace_seq_putc(s, '\n');
f633cef0 790
19a7fe20 791 return trace_handle_return(s);
f633cef0
SR
792}
793
a9a57763
SR
794static enum print_line_t trace_fn_raw(struct trace_iterator *iter, int flags,
795 struct trace_event *event)
f633cef0
SR
796{
797 struct ftrace_entry *field;
798
2c9b238e 799 trace_assign_type(field, iter->ent);
f633cef0 800
19a7fe20
SRRH
801 trace_seq_printf(&iter->seq, "%lx %lx\n",
802 field->ip,
803 field->parent_ip);
f633cef0 804
19a7fe20 805 return trace_handle_return(&iter->seq);
f633cef0
SR
806}
807
a9a57763
SR
808static enum print_line_t trace_fn_hex(struct trace_iterator *iter, int flags,
809 struct trace_event *event)
f633cef0
SR
810{
811 struct ftrace_entry *field;
2c9b238e 812 struct trace_seq *s = &iter->seq;
f633cef0 813
2c9b238e 814 trace_assign_type(field, iter->ent);
f633cef0 815
19a7fe20
SRRH
816 SEQ_PUT_HEX_FIELD(s, field->ip);
817 SEQ_PUT_HEX_FIELD(s, field->parent_ip);
f633cef0 818
19a7fe20 819 return trace_handle_return(s);
f633cef0
SR
820}
821
a9a57763
SR
822static enum print_line_t trace_fn_bin(struct trace_iterator *iter, int flags,
823 struct trace_event *event)
f633cef0
SR
824{
825 struct ftrace_entry *field;
2c9b238e 826 struct trace_seq *s = &iter->seq;
f633cef0 827
2c9b238e 828 trace_assign_type(field, iter->ent);
f633cef0 829
19a7fe20
SRRH
830 SEQ_PUT_FIELD(s, field->ip);
831 SEQ_PUT_FIELD(s, field->parent_ip);
f633cef0 832
19a7fe20 833 return trace_handle_return(s);
f633cef0
SR
834}
835
a9a57763 836static struct trace_event_functions trace_fn_funcs = {
f633cef0 837 .trace = trace_fn_trace,
f633cef0
SR
838 .raw = trace_fn_raw,
839 .hex = trace_fn_hex,
840 .binary = trace_fn_bin,
841};
842
a9a57763
SR
843static struct trace_event trace_fn_event = {
844 .type = TRACE_FN,
845 .funcs = &trace_fn_funcs,
846};
847
f633cef0 848/* TRACE_CTX an TRACE_WAKE */
ae7462b4
ACM
849static enum print_line_t trace_ctxwake_print(struct trace_iterator *iter,
850 char *delim)
f633cef0
SR
851{
852 struct ctx_switch_entry *field;
4ca53085 853 char comm[TASK_COMM_LEN];
f633cef0
SR
854 int S, T;
855
4ca53085 856
2c9b238e 857 trace_assign_type(field, iter->ent);
f633cef0
SR
858
859 T = task_state_char(field->next_state);
860 S = task_state_char(field->prev_state);
4ca53085 861 trace_find_cmdline(field->next_pid, comm);
19a7fe20
SRRH
862 trace_seq_printf(&iter->seq,
863 " %5d:%3d:%c %s [%03d] %5d:%3d:%c %s\n",
864 field->prev_pid,
865 field->prev_prio,
866 S, delim,
867 field->next_cpu,
868 field->next_pid,
869 field->next_prio,
870 T, comm);
871
872 return trace_handle_return(&iter->seq);
f633cef0
SR
873}
874
a9a57763
SR
875static enum print_line_t trace_ctx_print(struct trace_iterator *iter, int flags,
876 struct trace_event *event)
f633cef0 877{
2c9b238e 878 return trace_ctxwake_print(iter, "==>");
f633cef0
SR
879}
880
ae7462b4 881static enum print_line_t trace_wake_print(struct trace_iterator *iter,
a9a57763 882 int flags, struct trace_event *event)
f633cef0 883{
2c9b238e 884 return trace_ctxwake_print(iter, " +");
f633cef0
SR
885}
886
2c9b238e 887static int trace_ctxwake_raw(struct trace_iterator *iter, char S)
f633cef0
SR
888{
889 struct ctx_switch_entry *field;
890 int T;
891
2c9b238e 892 trace_assign_type(field, iter->ent);
f633cef0
SR
893
894 if (!S)
b0f56f1a 895 S = task_state_char(field->prev_state);
f633cef0 896 T = task_state_char(field->next_state);
19a7fe20
SRRH
897 trace_seq_printf(&iter->seq, "%d %d %c %d %d %d %c\n",
898 field->prev_pid,
899 field->prev_prio,
900 S,
901 field->next_cpu,
902 field->next_pid,
903 field->next_prio,
904 T);
905
906 return trace_handle_return(&iter->seq);
f633cef0
SR
907}
908
a9a57763
SR
909static enum print_line_t trace_ctx_raw(struct trace_iterator *iter, int flags,
910 struct trace_event *event)
f633cef0 911{
2c9b238e 912 return trace_ctxwake_raw(iter, 0);
f633cef0
SR
913}
914
a9a57763
SR
915static enum print_line_t trace_wake_raw(struct trace_iterator *iter, int flags,
916 struct trace_event *event)
f633cef0 917{
2c9b238e 918 return trace_ctxwake_raw(iter, '+');
f633cef0
SR
919}
920
921
2c9b238e 922static int trace_ctxwake_hex(struct trace_iterator *iter, char S)
f633cef0
SR
923{
924 struct ctx_switch_entry *field;
2c9b238e 925 struct trace_seq *s = &iter->seq;
f633cef0
SR
926 int T;
927
2c9b238e 928 trace_assign_type(field, iter->ent);
f633cef0
SR
929
930 if (!S)
b0f56f1a 931 S = task_state_char(field->prev_state);
f633cef0
SR
932 T = task_state_char(field->next_state);
933
19a7fe20
SRRH
934 SEQ_PUT_HEX_FIELD(s, field->prev_pid);
935 SEQ_PUT_HEX_FIELD(s, field->prev_prio);
936 SEQ_PUT_HEX_FIELD(s, S);
937 SEQ_PUT_HEX_FIELD(s, field->next_cpu);
938 SEQ_PUT_HEX_FIELD(s, field->next_pid);
939 SEQ_PUT_HEX_FIELD(s, field->next_prio);
940 SEQ_PUT_HEX_FIELD(s, T);
f633cef0 941
19a7fe20 942 return trace_handle_return(s);
f633cef0
SR
943}
944
a9a57763
SR
945static enum print_line_t trace_ctx_hex(struct trace_iterator *iter, int flags,
946 struct trace_event *event)
f633cef0 947{
2c9b238e 948 return trace_ctxwake_hex(iter, 0);
f633cef0
SR
949}
950
a9a57763
SR
951static enum print_line_t trace_wake_hex(struct trace_iterator *iter, int flags,
952 struct trace_event *event)
f633cef0 953{
2c9b238e 954 return trace_ctxwake_hex(iter, '+');
f633cef0
SR
955}
956
ae7462b4 957static enum print_line_t trace_ctxwake_bin(struct trace_iterator *iter,
a9a57763 958 int flags, struct trace_event *event)
f633cef0
SR
959{
960 struct ctx_switch_entry *field;
2c9b238e 961 struct trace_seq *s = &iter->seq;
f633cef0 962
2c9b238e 963 trace_assign_type(field, iter->ent);
f633cef0 964
19a7fe20
SRRH
965 SEQ_PUT_FIELD(s, field->prev_pid);
966 SEQ_PUT_FIELD(s, field->prev_prio);
967 SEQ_PUT_FIELD(s, field->prev_state);
968 SEQ_PUT_FIELD(s, field->next_cpu);
969 SEQ_PUT_FIELD(s, field->next_pid);
970 SEQ_PUT_FIELD(s, field->next_prio);
971 SEQ_PUT_FIELD(s, field->next_state);
f633cef0 972
19a7fe20 973 return trace_handle_return(s);
f633cef0
SR
974}
975
a9a57763 976static struct trace_event_functions trace_ctx_funcs = {
f633cef0 977 .trace = trace_ctx_print,
f633cef0
SR
978 .raw = trace_ctx_raw,
979 .hex = trace_ctx_hex,
980 .binary = trace_ctxwake_bin,
981};
982
a9a57763
SR
983static struct trace_event trace_ctx_event = {
984 .type = TRACE_CTX,
985 .funcs = &trace_ctx_funcs,
986};
987
988static struct trace_event_functions trace_wake_funcs = {
f633cef0 989 .trace = trace_wake_print,
f633cef0
SR
990 .raw = trace_wake_raw,
991 .hex = trace_wake_hex,
992 .binary = trace_ctxwake_bin,
993};
994
a9a57763
SR
995static struct trace_event trace_wake_event = {
996 .type = TRACE_WAKE,
997 .funcs = &trace_wake_funcs,
998};
999
f633cef0
SR
1000/* TRACE_STACK */
1001
ae7462b4 1002static enum print_line_t trace_stack_print(struct trace_iterator *iter,
a9a57763 1003 int flags, struct trace_event *event)
f633cef0
SR
1004{
1005 struct stack_entry *field;
2c9b238e 1006 struct trace_seq *s = &iter->seq;
4a9bd3f1
SR
1007 unsigned long *p;
1008 unsigned long *end;
f633cef0 1009
2c9b238e 1010 trace_assign_type(field, iter->ent);
4a9bd3f1 1011 end = (unsigned long *)((long)iter->ent + iter->ent_size);
f633cef0 1012
19a7fe20 1013 trace_seq_puts(s, "<stack trace>\n");
4a9bd3f1
SR
1014
1015 for (p = field->caller; p && *p != ULONG_MAX && p < end; p++) {
f633cef0 1016
19a7fe20
SRRH
1017 if (trace_seq_has_overflowed(s))
1018 break;
f633cef0 1019
19a7fe20
SRRH
1020 trace_seq_puts(s, " => ");
1021 seq_print_ip_sym(s, *p, flags);
1022 trace_seq_putc(s, '\n');
1023 }
f633cef0 1024
19a7fe20 1025 return trace_handle_return(s);
f633cef0
SR
1026}
1027
a9a57763 1028static struct trace_event_functions trace_stack_funcs = {
f633cef0 1029 .trace = trace_stack_print,
f633cef0
SR
1030};
1031
a9a57763
SR
1032static struct trace_event trace_stack_event = {
1033 .type = TRACE_STACK,
1034 .funcs = &trace_stack_funcs,
1035};
1036
f633cef0 1037/* TRACE_USER_STACK */
ae7462b4 1038static enum print_line_t trace_user_stack_print(struct trace_iterator *iter,
a9a57763 1039 int flags, struct trace_event *event)
f633cef0 1040{
983f938a 1041 struct trace_array *tr = iter->tr;
f633cef0 1042 struct userstack_entry *field;
2c9b238e 1043 struct trace_seq *s = &iter->seq;
6b1032d5
SRRH
1044 struct mm_struct *mm = NULL;
1045 unsigned int i;
f633cef0 1046
2c9b238e 1047 trace_assign_type(field, iter->ent);
f633cef0 1048
19a7fe20 1049 trace_seq_puts(s, "<user stack trace>\n");
6b1032d5 1050
983f938a 1051 if (tr->trace_flags & TRACE_ITER_SYM_USEROBJ) {
6b1032d5
SRRH
1052 struct task_struct *task;
1053 /*
1054 * we do the lookup on the thread group leader,
1055 * since individual threads might have already quit!
1056 */
1057 rcu_read_lock();
1058 task = find_task_by_vpid(field->tgid);
1059 if (task)
1060 mm = get_task_mm(task);
1061 rcu_read_unlock();
1062 }
1063
1064 for (i = 0; i < FTRACE_STACK_ENTRIES; i++) {
1065 unsigned long ip = field->caller[i];
1066
1067 if (ip == ULONG_MAX || trace_seq_has_overflowed(s))
1068 break;
1069
1070 trace_seq_puts(s, " => ");
1071
1072 if (!ip) {
1073 trace_seq_puts(s, "??");
1074 trace_seq_putc(s, '\n');
1075 continue;
1076 }
1077
1078 seq_print_user_ip(s, mm, ip, flags);
1079 trace_seq_putc(s, '\n');
1080 }
1081
1082 if (mm)
1083 mmput(mm);
f633cef0 1084
19a7fe20 1085 return trace_handle_return(s);
f633cef0
SR
1086}
1087
a9a57763 1088static struct trace_event_functions trace_user_stack_funcs = {
f633cef0 1089 .trace = trace_user_stack_print,
f633cef0
SR
1090};
1091
a9a57763
SR
1092static struct trace_event trace_user_stack_event = {
1093 .type = TRACE_USER_STACK,
1094 .funcs = &trace_user_stack_funcs,
1095};
1096
09ae7234
SRRH
1097/* TRACE_BPUTS */
1098static enum print_line_t
1099trace_bputs_print(struct trace_iterator *iter, int flags,
1100 struct trace_event *event)
1101{
1102 struct trace_entry *entry = iter->ent;
1103 struct trace_seq *s = &iter->seq;
1104 struct bputs_entry *field;
1105
1106 trace_assign_type(field, entry);
1107
19a7fe20
SRRH
1108 seq_print_ip_sym(s, field->ip, flags);
1109 trace_seq_puts(s, ": ");
1110 trace_seq_puts(s, field->str);
09ae7234 1111
19a7fe20 1112 return trace_handle_return(s);
09ae7234
SRRH
1113}
1114
1115
1116static enum print_line_t
1117trace_bputs_raw(struct trace_iterator *iter, int flags,
1118 struct trace_event *event)
1119{
1120 struct bputs_entry *field;
1121 struct trace_seq *s = &iter->seq;
1122
1123 trace_assign_type(field, iter->ent);
1124
19a7fe20
SRRH
1125 trace_seq_printf(s, ": %lx : ", field->ip);
1126 trace_seq_puts(s, field->str);
09ae7234 1127
19a7fe20 1128 return trace_handle_return(s);
09ae7234
SRRH
1129}
1130
1131static struct trace_event_functions trace_bputs_funcs = {
1132 .trace = trace_bputs_print,
1133 .raw = trace_bputs_raw,
1134};
1135
1136static struct trace_event trace_bputs_event = {
1137 .type = TRACE_BPUTS,
1138 .funcs = &trace_bputs_funcs,
1139};
1140
48ead020 1141/* TRACE_BPRINT */
1427cdf0 1142static enum print_line_t
a9a57763
SR
1143trace_bprint_print(struct trace_iterator *iter, int flags,
1144 struct trace_event *event)
1427cdf0
LJ
1145{
1146 struct trace_entry *entry = iter->ent;
1147 struct trace_seq *s = &iter->seq;
48ead020 1148 struct bprint_entry *field;
1427cdf0
LJ
1149
1150 trace_assign_type(field, entry);
1151
19a7fe20
SRRH
1152 seq_print_ip_sym(s, field->ip, flags);
1153 trace_seq_puts(s, ": ");
1154 trace_seq_bprintf(s, field->fmt, field->buf);
1427cdf0 1155
19a7fe20 1156 return trace_handle_return(s);
1427cdf0
LJ
1157}
1158
769b0441 1159
48ead020 1160static enum print_line_t
a9a57763
SR
1161trace_bprint_raw(struct trace_iterator *iter, int flags,
1162 struct trace_event *event)
1427cdf0 1163{
48ead020 1164 struct bprint_entry *field;
1427cdf0 1165 struct trace_seq *s = &iter->seq;
1427cdf0 1166
769b0441 1167 trace_assign_type(field, iter->ent);
1427cdf0 1168
19a7fe20
SRRH
1169 trace_seq_printf(s, ": %lx : ", field->ip);
1170 trace_seq_bprintf(s, field->fmt, field->buf);
1427cdf0 1171
19a7fe20 1172 return trace_handle_return(s);
1427cdf0
LJ
1173}
1174
a9a57763
SR
1175static struct trace_event_functions trace_bprint_funcs = {
1176 .trace = trace_bprint_print,
1177 .raw = trace_bprint_raw,
1178};
769b0441 1179
48ead020
FW
1180static struct trace_event trace_bprint_event = {
1181 .type = TRACE_BPRINT,
a9a57763 1182 .funcs = &trace_bprint_funcs,
48ead020
FW
1183};
1184
1185/* TRACE_PRINT */
1186static enum print_line_t trace_print_print(struct trace_iterator *iter,
a9a57763 1187 int flags, struct trace_event *event)
48ead020
FW
1188{
1189 struct print_entry *field;
1190 struct trace_seq *s = &iter->seq;
1191
1192 trace_assign_type(field, iter->ent);
1193
19a7fe20
SRRH
1194 seq_print_ip_sym(s, field->ip, flags);
1195 trace_seq_printf(s, ": %s", field->buf);
48ead020 1196
19a7fe20 1197 return trace_handle_return(s);
48ead020
FW
1198}
1199
a9a57763
SR
1200static enum print_line_t trace_print_raw(struct trace_iterator *iter, int flags,
1201 struct trace_event *event)
48ead020
FW
1202{
1203 struct print_entry *field;
1204
1205 trace_assign_type(field, iter->ent);
1206
19a7fe20 1207 trace_seq_printf(&iter->seq, "# %lx %s", field->ip, field->buf);
48ead020 1208
19a7fe20 1209 return trace_handle_return(&iter->seq);
48ead020
FW
1210}
1211
a9a57763 1212static struct trace_event_functions trace_print_funcs = {
769b0441
FW
1213 .trace = trace_print_print,
1214 .raw = trace_print_raw,
1427cdf0
LJ
1215};
1216
a9a57763
SR
1217static struct trace_event trace_print_event = {
1218 .type = TRACE_PRINT,
1219 .funcs = &trace_print_funcs,
1220};
1221
48ead020 1222
f633cef0
SR
1223static struct trace_event *events[] __initdata = {
1224 &trace_fn_event,
1225 &trace_ctx_event,
1226 &trace_wake_event,
f633cef0
SR
1227 &trace_stack_event,
1228 &trace_user_stack_event,
09ae7234 1229 &trace_bputs_event,
48ead020 1230 &trace_bprint_event,
f633cef0
SR
1231 &trace_print_event,
1232 NULL
1233};
1234
1235__init static int init_events(void)
1236{
1237 struct trace_event *event;
1238 int i, ret;
1239
1240 for (i = 0; events[i]; i++) {
1241 event = events[i];
1242
9023c930 1243 ret = register_trace_event(event);
f633cef0
SR
1244 if (!ret) {
1245 printk(KERN_WARNING "event %d failed to register\n",
1246 event->type);
1247 WARN_ON_ONCE(1);
1248 }
1249 }
1250
1251 return 0;
1252}
7374e827 1253early_initcall(init_events);
This page took 0.34647 seconds and 5 git commands to generate.