]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - kernel/trace/trace_output.c
tracing: Make ftrace_trace_stack() static
[mirror_ubuntu-bionic-kernel.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
325int seq_print_user_ip(struct trace_seq *s, struct mm_struct *mm,
326 unsigned long ip, unsigned long sym_flags)
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
357int
358seq_print_userip_objs(const struct userstack_entry *entry, struct trace_seq *s,
359 unsigned long sym_flags)
360{
361 struct mm_struct *mm = NULL;
f0868d1e
SR
362 unsigned int i;
363
364 if (trace_flags & TRACE_ITER_SYM_USEROBJ) {
365 struct task_struct *task;
366 /*
367 * we do the lookup on the thread group leader,
368 * since individual threads might have already quit!
369 */
370 rcu_read_lock();
48659d31 371 task = find_task_by_vpid(entry->tgid);
f0868d1e
SR
372 if (task)
373 mm = get_task_mm(task);
374 rcu_read_unlock();
375 }
376
377 for (i = 0; i < FTRACE_STACK_ENTRIES; i++) {
378 unsigned long ip = entry->caller[i];
379
19a7fe20 380 if (ip == ULONG_MAX || trace_seq_has_overflowed(s))
f0868d1e 381 break;
19a7fe20
SRRH
382
383 trace_seq_puts(s, " => ");
384
f0868d1e 385 if (!ip) {
19a7fe20
SRRH
386 trace_seq_puts(s, "??");
387 trace_seq_putc(s, '\n');
f0868d1e
SR
388 continue;
389 }
19a7fe20
SRRH
390
391 seq_print_user_ip(s, mm, ip, sym_flags);
392 trace_seq_putc(s, '\n');
f0868d1e
SR
393 }
394
395 if (mm)
396 mmput(mm);
19a7fe20
SRRH
397
398 return !trace_seq_has_overflowed(s);
f0868d1e
SR
399}
400
401int
402seq_print_ip_sym(struct trace_seq *s, unsigned long ip, unsigned long sym_flags)
403{
19a7fe20
SRRH
404 if (!ip) {
405 trace_seq_putc(s, '0');
406 goto out;
407 }
f0868d1e
SR
408
409 if (sym_flags & TRACE_ITER_SYM_OFFSET)
19a7fe20 410 seq_print_sym_offset(s, "%s", ip);
f0868d1e 411 else
19a7fe20 412 seq_print_sym_short(s, "%s", ip);
f0868d1e
SR
413
414 if (sym_flags & TRACE_ITER_SYM_ADDR)
19a7fe20
SRRH
415 trace_seq_printf(s, " <" IP_FMT ">", ip);
416
417 out:
418 return !trace_seq_has_overflowed(s);
f0868d1e
SR
419}
420
f81c972d
SR
421/**
422 * trace_print_lat_fmt - print the irq, preempt and lockdep fields
423 * @s: trace seq struct to write to
424 * @entry: The trace entry field from the ring buffer
425 *
426 * Prints the generic fields of irqs off, in hard or softirq, preempt
e6e1e259 427 * count.
f81c972d
SR
428 */
429int trace_print_lat_fmt(struct trace_seq *s, struct trace_entry *entry)
c4a8e8be 430{
10da37a6
DS
431 char hardsoft_irq;
432 char need_resched;
433 char irqs_off;
434 int hardirq;
435 int softirq;
c4a8e8be 436
c4a8e8be
FW
437 hardirq = entry->flags & TRACE_FLAG_HARDIRQ;
438 softirq = entry->flags & TRACE_FLAG_SOFTIRQ;
d9793bd8 439
10da37a6
DS
440 irqs_off =
441 (entry->flags & TRACE_FLAG_IRQS_OFF) ? 'd' :
442 (entry->flags & TRACE_FLAG_IRQS_NOSUPPORT) ? 'X' :
443 '.';
e5137b50
PZ
444
445 switch (entry->flags & (TRACE_FLAG_NEED_RESCHED |
446 TRACE_FLAG_PREEMPT_RESCHED)) {
447 case TRACE_FLAG_NEED_RESCHED | TRACE_FLAG_PREEMPT_RESCHED:
448 need_resched = 'N';
449 break;
450 case TRACE_FLAG_NEED_RESCHED:
451 need_resched = 'n';
452 break;
453 case TRACE_FLAG_PREEMPT_RESCHED:
454 need_resched = 'p';
455 break;
456 default:
457 need_resched = '.';
458 break;
459 }
460
10da37a6
DS
461 hardsoft_irq =
462 (hardirq && softirq) ? 'H' :
463 hardirq ? 'h' :
464 softirq ? 's' :
465 '.';
466
19a7fe20
SRRH
467 trace_seq_printf(s, "%c%c%c",
468 irqs_off, need_resched, hardsoft_irq);
c4a8e8be 469
829b876d 470 if (entry->preempt_count)
19a7fe20 471 trace_seq_printf(s, "%x", entry->preempt_count);
637e7e86 472 else
19a7fe20 473 trace_seq_putc(s, '.');
829b876d 474
19a7fe20 475 return !trace_seq_has_overflowed(s);
c4a8e8be
FW
476}
477
f81c972d
SR
478static int
479lat_print_generic(struct trace_seq *s, struct trace_entry *entry, int cpu)
480{
481 char comm[TASK_COMM_LEN];
482
483 trace_find_cmdline(entry->pid, comm);
484
19a7fe20
SRRH
485 trace_seq_printf(s, "%8.8s-%-5d %3d",
486 comm, entry->pid, cpu);
f81c972d
SR
487
488 return trace_print_lat_fmt(s, entry);
489}
490
8e1e1df2
BP
491#undef MARK
492#define MARK(v, s) {.val = v, .sym = s}
493/* trace overhead mark */
494static const struct trace_mark {
495 unsigned long long val; /* unit: nsec */
496 char sym;
497} mark[] = {
498 MARK(1000000000ULL , '$'), /* 1 sec */
b838e1d9
JL
499 MARK(100000000ULL , '@'), /* 100 msec */
500 MARK(10000000ULL , '*'), /* 10 msec */
8e1e1df2
BP
501 MARK(1000000ULL , '#'), /* 1000 usecs */
502 MARK(100000ULL , '!'), /* 100 usecs */
503 MARK(10000ULL , '+'), /* 10 usecs */
504};
505#undef MARK
506
507char trace_find_mark(unsigned long long d)
508{
509 int i;
510 int size = ARRAY_SIZE(mark);
511
512 for (i = 0; i < size; i++) {
b838e1d9 513 if (d > mark[i].val)
8e1e1df2
BP
514 break;
515 }
516
517 return (i == size) ? ' ' : mark[i].sym;
518}
c4a8e8be 519
d9793bd8 520static int
8be0709f 521lat_print_timestamp(struct trace_iterator *iter, u64 next_ts)
c4a8e8be 522{
8be0709f
DS
523 unsigned long verbose = trace_flags & TRACE_ITER_VERBOSE;
524 unsigned long in_ns = iter->iter_flags & TRACE_FILE_TIME_IN_NS;
12883efb 525 unsigned long long abs_ts = iter->ts - iter->trace_buffer->time_start;
8be0709f
DS
526 unsigned long long rel_ts = next_ts - iter->ts;
527 struct trace_seq *s = &iter->seq;
528
529 if (in_ns) {
530 abs_ts = ns2usecs(abs_ts);
531 rel_ts = ns2usecs(rel_ts);
532 }
533
534 if (verbose && in_ns) {
535 unsigned long abs_usec = do_div(abs_ts, USEC_PER_MSEC);
536 unsigned long abs_msec = (unsigned long)abs_ts;
537 unsigned long rel_usec = do_div(rel_ts, USEC_PER_MSEC);
538 unsigned long rel_msec = (unsigned long)rel_ts;
539
19a7fe20
SRRH
540 trace_seq_printf(
541 s, "[%08llx] %ld.%03ldms (+%ld.%03ldms): ",
542 ns2usecs(iter->ts),
543 abs_msec, abs_usec,
544 rel_msec, rel_usec);
545
8be0709f 546 } else if (verbose && !in_ns) {
19a7fe20
SRRH
547 trace_seq_printf(
548 s, "[%016llx] %lld (+%lld): ",
549 iter->ts, abs_ts, rel_ts);
550
8be0709f 551 } else if (!verbose && in_ns) {
19a7fe20
SRRH
552 trace_seq_printf(
553 s, " %4lldus%c: ",
554 abs_ts,
8e1e1df2 555 trace_find_mark(rel_ts * NSEC_PER_USEC));
19a7fe20 556
8be0709f 557 } else { /* !verbose && !in_ns */
19a7fe20 558 trace_seq_printf(s, " %4lld: ", abs_ts);
8be0709f 559 }
19a7fe20
SRRH
560
561 return !trace_seq_has_overflowed(s);
c4a8e8be
FW
562}
563
564int trace_print_context(struct trace_iterator *iter)
565{
566 struct trace_seq *s = &iter->seq;
567 struct trace_entry *entry = iter->ent;
8be0709f
DS
568 unsigned long long t;
569 unsigned long secs, usec_rem;
4ca53085
SR
570 char comm[TASK_COMM_LEN];
571
572 trace_find_cmdline(entry->pid, comm);
c4a8e8be 573
19a7fe20 574 trace_seq_printf(s, "%16s-%-5d [%03d] ",
77271ce4 575 comm, entry->pid, iter->cpu);
77271ce4 576
19a7fe20
SRRH
577 if (trace_flags & TRACE_ITER_IRQ_INFO)
578 trace_print_lat_fmt(s, entry);
77271ce4 579
8be0709f
DS
580 if (iter->iter_flags & TRACE_FILE_TIME_IN_NS) {
581 t = ns2usecs(iter->ts);
582 usec_rem = do_div(t, USEC_PER_SEC);
583 secs = (unsigned long)t;
19a7fe20 584 trace_seq_printf(s, " %5lu.%06lu: ", secs, usec_rem);
8be0709f 585 } else
19a7fe20
SRRH
586 trace_seq_printf(s, " %12llu: ", iter->ts);
587
588 return !trace_seq_has_overflowed(s);
c4a8e8be
FW
589}
590
591int trace_print_lat_context(struct trace_iterator *iter)
592{
593 u64 next_ts;
db4c75cb
SR
594 /* trace_find_next_entry will reset ent_size */
595 int ent_size = iter->ent_size;
c4a8e8be
FW
596 struct trace_seq *s = &iter->seq;
597 struct trace_entry *entry = iter->ent,
598 *next_entry = trace_find_next_entry(iter, NULL,
599 &next_ts);
600 unsigned long verbose = (trace_flags & TRACE_ITER_VERBOSE);
c4a8e8be 601
db4c75cb
SR
602 /* Restore the original ent_size */
603 iter->ent_size = ent_size;
604
c4a8e8be
FW
605 if (!next_entry)
606 next_ts = iter->ts;
c4a8e8be
FW
607
608 if (verbose) {
4ca53085
SR
609 char comm[TASK_COMM_LEN];
610
611 trace_find_cmdline(entry->pid, comm);
612
19a7fe20
SRRH
613 trace_seq_printf(
614 s, "%16s %5d %3d %d %08x %08lx ",
615 comm, entry->pid, iter->cpu, entry->flags,
616 entry->preempt_count, iter->idx);
c4a8e8be 617 } else {
19a7fe20 618 lat_print_generic(s, entry, iter->cpu);
c4a8e8be
FW
619 }
620
19a7fe20 621 lat_print_timestamp(iter, next_ts);
8be0709f 622
19a7fe20 623 return !trace_seq_has_overflowed(s);
c4a8e8be
FW
624}
625
f633cef0
SR
626static const char state_to_char[] = TASK_STATE_TO_CHAR_STR;
627
628static int task_state_char(unsigned long state)
629{
630 int bit = state ? __ffs(state) + 1 : 0;
631
632 return bit < sizeof(state_to_char) - 1 ? state_to_char[bit] : '?';
633}
634
f0868d1e
SR
635/**
636 * ftrace_find_event - find a registered event
637 * @type: the type of event to look for
638 *
639 * Returns an event of type @type otherwise NULL
4f535968 640 * Called with trace_event_read_lock() held.
f0868d1e
SR
641 */
642struct trace_event *ftrace_find_event(int type)
643{
644 struct trace_event *event;
f0868d1e
SR
645 unsigned key;
646
647 key = type & (EVENT_HASHSIZE - 1);
648
b67bfe0d 649 hlist_for_each_entry(event, &event_hash[key], node) {
f0868d1e
SR
650 if (event->type == type)
651 return event;
652 }
653
654 return NULL;
655}
656
060fa5c8
SR
657static LIST_HEAD(ftrace_event_list);
658
659static int trace_search_list(struct list_head **list)
660{
661 struct trace_event *e;
662 int last = __TRACE_LAST_TYPE;
663
664 if (list_empty(&ftrace_event_list)) {
665 *list = &ftrace_event_list;
666 return last + 1;
667 }
668
669 /*
670 * We used up all possible max events,
671 * lets see if somebody freed one.
672 */
673 list_for_each_entry(e, &ftrace_event_list, list) {
674 if (e->type != last + 1)
675 break;
676 last++;
677 }
678
679 /* Did we used up all 65 thousand events??? */
609a7404 680 if ((last + 1) > TRACE_EVENT_TYPE_MAX)
060fa5c8
SR
681 return 0;
682
683 *list = &e->list;
684 return last + 1;
685}
686
4f535968
LJ
687void trace_event_read_lock(void)
688{
52f6ad6d 689 down_read(&trace_event_sem);
4f535968
LJ
690}
691
692void trace_event_read_unlock(void)
693{
52f6ad6d 694 up_read(&trace_event_sem);
4f535968
LJ
695}
696
f0868d1e 697/**
9023c930 698 * register_trace_event - register output for an event type
f0868d1e
SR
699 * @event: the event type to register
700 *
701 * Event types are stored in a hash and this hash is used to
702 * find a way to print an event. If the @event->type is set
703 * then it will use that type, otherwise it will assign a
704 * type to use.
705 *
706 * If you assign your own type, please make sure it is added
707 * to the trace_type enum in trace.h, to avoid collisions
708 * with the dynamic types.
709 *
710 * Returns the event type number or zero on error.
711 */
9023c930 712int register_trace_event(struct trace_event *event)
f0868d1e
SR
713{
714 unsigned key;
715 int ret = 0;
716
52f6ad6d 717 down_write(&trace_event_sem);
f0868d1e 718
060fa5c8 719 if (WARN_ON(!event))
28bea271 720 goto out;
28bea271 721
a9a57763
SR
722 if (WARN_ON(!event->funcs))
723 goto out;
724
060fa5c8
SR
725 INIT_LIST_HEAD(&event->list);
726
727 if (!event->type) {
48dd0fed 728 struct list_head *list = NULL;
060fa5c8 729
609a7404 730 if (next_event_type > TRACE_EVENT_TYPE_MAX) {
060fa5c8
SR
731
732 event->type = trace_search_list(&list);
733 if (!event->type)
734 goto out;
735
736 } else {
8e1e1df2 737
060fa5c8
SR
738 event->type = next_event_type++;
739 list = &ftrace_event_list;
740 }
741
742 if (WARN_ON(ftrace_find_event(event->type)))
743 goto out;
744
745 list_add_tail(&event->list, list);
746
747 } else if (event->type > __TRACE_LAST_TYPE) {
f0868d1e
SR
748 printk(KERN_WARNING "Need to add type to trace.h\n");
749 WARN_ON(1);
f0868d1e 750 goto out;
060fa5c8
SR
751 } else {
752 /* Is this event already used */
753 if (ftrace_find_event(event->type))
754 goto out;
755 }
f0868d1e 756
a9a57763
SR
757 if (event->funcs->trace == NULL)
758 event->funcs->trace = trace_nop_print;
759 if (event->funcs->raw == NULL)
760 event->funcs->raw = trace_nop_print;
761 if (event->funcs->hex == NULL)
762 event->funcs->hex = trace_nop_print;
763 if (event->funcs->binary == NULL)
764 event->funcs->binary = trace_nop_print;
268ccda0 765
f0868d1e
SR
766 key = event->type & (EVENT_HASHSIZE - 1);
767
4f535968 768 hlist_add_head(&event->node, &event_hash[key]);
f0868d1e
SR
769
770 ret = event->type;
771 out:
52f6ad6d 772 up_write(&trace_event_sem);
f0868d1e
SR
773
774 return ret;
775}
9023c930 776EXPORT_SYMBOL_GPL(register_trace_event);
f0868d1e 777
110bf2b7 778/*
52f6ad6d 779 * Used by module code with the trace_event_sem held for write.
110bf2b7 780 */
9023c930 781int __unregister_trace_event(struct trace_event *event)
110bf2b7
SR
782{
783 hlist_del(&event->node);
784 list_del(&event->list);
785 return 0;
786}
787
f0868d1e 788/**
9023c930 789 * unregister_trace_event - remove a no longer used event
f0868d1e
SR
790 * @event: the event to remove
791 */
9023c930 792int unregister_trace_event(struct trace_event *event)
f0868d1e 793{
52f6ad6d 794 down_write(&trace_event_sem);
9023c930 795 __unregister_trace_event(event);
52f6ad6d 796 up_write(&trace_event_sem);
f0868d1e
SR
797
798 return 0;
799}
9023c930 800EXPORT_SYMBOL_GPL(unregister_trace_event);
f633cef0
SR
801
802/*
803 * Standard events
804 */
805
a9a57763
SR
806enum print_line_t trace_nop_print(struct trace_iterator *iter, int flags,
807 struct trace_event *event)
f633cef0 808{
19a7fe20 809 trace_seq_printf(&iter->seq, "type: %d\n", iter->ent->type);
ee5e51f5 810
19a7fe20 811 return trace_handle_return(&iter->seq);
f633cef0
SR
812}
813
814/* TRACE_FN */
a9a57763
SR
815static enum print_line_t trace_fn_trace(struct trace_iterator *iter, int flags,
816 struct trace_event *event)
f633cef0
SR
817{
818 struct ftrace_entry *field;
2c9b238e 819 struct trace_seq *s = &iter->seq;
f633cef0 820
2c9b238e 821 trace_assign_type(field, iter->ent);
f633cef0 822
19a7fe20 823 seq_print_ip_sym(s, field->ip, flags);
f633cef0
SR
824
825 if ((flags & TRACE_ITER_PRINT_PARENT) && field->parent_ip) {
19a7fe20
SRRH
826 trace_seq_puts(s, " <-");
827 seq_print_ip_sym(s, field->parent_ip, flags);
f633cef0 828 }
f633cef0 829
19a7fe20 830 trace_seq_putc(s, '\n');
f633cef0 831
19a7fe20 832 return trace_handle_return(s);
f633cef0
SR
833}
834
a9a57763
SR
835static enum print_line_t trace_fn_raw(struct trace_iterator *iter, int flags,
836 struct trace_event *event)
f633cef0
SR
837{
838 struct ftrace_entry *field;
839
2c9b238e 840 trace_assign_type(field, iter->ent);
f633cef0 841
19a7fe20
SRRH
842 trace_seq_printf(&iter->seq, "%lx %lx\n",
843 field->ip,
844 field->parent_ip);
f633cef0 845
19a7fe20 846 return trace_handle_return(&iter->seq);
f633cef0
SR
847}
848
a9a57763
SR
849static enum print_line_t trace_fn_hex(struct trace_iterator *iter, int flags,
850 struct trace_event *event)
f633cef0
SR
851{
852 struct ftrace_entry *field;
2c9b238e 853 struct trace_seq *s = &iter->seq;
f633cef0 854
2c9b238e 855 trace_assign_type(field, iter->ent);
f633cef0 856
19a7fe20
SRRH
857 SEQ_PUT_HEX_FIELD(s, field->ip);
858 SEQ_PUT_HEX_FIELD(s, field->parent_ip);
f633cef0 859
19a7fe20 860 return trace_handle_return(s);
f633cef0
SR
861}
862
a9a57763
SR
863static enum print_line_t trace_fn_bin(struct trace_iterator *iter, int flags,
864 struct trace_event *event)
f633cef0
SR
865{
866 struct ftrace_entry *field;
2c9b238e 867 struct trace_seq *s = &iter->seq;
f633cef0 868
2c9b238e 869 trace_assign_type(field, iter->ent);
f633cef0 870
19a7fe20
SRRH
871 SEQ_PUT_FIELD(s, field->ip);
872 SEQ_PUT_FIELD(s, field->parent_ip);
f633cef0 873
19a7fe20 874 return trace_handle_return(s);
f633cef0
SR
875}
876
a9a57763 877static struct trace_event_functions trace_fn_funcs = {
f633cef0 878 .trace = trace_fn_trace,
f633cef0
SR
879 .raw = trace_fn_raw,
880 .hex = trace_fn_hex,
881 .binary = trace_fn_bin,
882};
883
a9a57763
SR
884static struct trace_event trace_fn_event = {
885 .type = TRACE_FN,
886 .funcs = &trace_fn_funcs,
887};
888
f633cef0 889/* TRACE_CTX an TRACE_WAKE */
ae7462b4
ACM
890static enum print_line_t trace_ctxwake_print(struct trace_iterator *iter,
891 char *delim)
f633cef0
SR
892{
893 struct ctx_switch_entry *field;
4ca53085 894 char comm[TASK_COMM_LEN];
f633cef0
SR
895 int S, T;
896
4ca53085 897
2c9b238e 898 trace_assign_type(field, iter->ent);
f633cef0
SR
899
900 T = task_state_char(field->next_state);
901 S = task_state_char(field->prev_state);
4ca53085 902 trace_find_cmdline(field->next_pid, comm);
19a7fe20
SRRH
903 trace_seq_printf(&iter->seq,
904 " %5d:%3d:%c %s [%03d] %5d:%3d:%c %s\n",
905 field->prev_pid,
906 field->prev_prio,
907 S, delim,
908 field->next_cpu,
909 field->next_pid,
910 field->next_prio,
911 T, comm);
912
913 return trace_handle_return(&iter->seq);
f633cef0
SR
914}
915
a9a57763
SR
916static enum print_line_t trace_ctx_print(struct trace_iterator *iter, int flags,
917 struct trace_event *event)
f633cef0 918{
2c9b238e 919 return trace_ctxwake_print(iter, "==>");
f633cef0
SR
920}
921
ae7462b4 922static enum print_line_t trace_wake_print(struct trace_iterator *iter,
a9a57763 923 int flags, struct trace_event *event)
f633cef0 924{
2c9b238e 925 return trace_ctxwake_print(iter, " +");
f633cef0
SR
926}
927
2c9b238e 928static int trace_ctxwake_raw(struct trace_iterator *iter, char S)
f633cef0
SR
929{
930 struct ctx_switch_entry *field;
931 int T;
932
2c9b238e 933 trace_assign_type(field, iter->ent);
f633cef0
SR
934
935 if (!S)
b0f56f1a 936 S = task_state_char(field->prev_state);
f633cef0 937 T = task_state_char(field->next_state);
19a7fe20
SRRH
938 trace_seq_printf(&iter->seq, "%d %d %c %d %d %d %c\n",
939 field->prev_pid,
940 field->prev_prio,
941 S,
942 field->next_cpu,
943 field->next_pid,
944 field->next_prio,
945 T);
946
947 return trace_handle_return(&iter->seq);
f633cef0
SR
948}
949
a9a57763
SR
950static enum print_line_t trace_ctx_raw(struct trace_iterator *iter, int flags,
951 struct trace_event *event)
f633cef0 952{
2c9b238e 953 return trace_ctxwake_raw(iter, 0);
f633cef0
SR
954}
955
a9a57763
SR
956static enum print_line_t trace_wake_raw(struct trace_iterator *iter, int flags,
957 struct trace_event *event)
f633cef0 958{
2c9b238e 959 return trace_ctxwake_raw(iter, '+');
f633cef0
SR
960}
961
962
2c9b238e 963static int trace_ctxwake_hex(struct trace_iterator *iter, char S)
f633cef0
SR
964{
965 struct ctx_switch_entry *field;
2c9b238e 966 struct trace_seq *s = &iter->seq;
f633cef0
SR
967 int T;
968
2c9b238e 969 trace_assign_type(field, iter->ent);
f633cef0
SR
970
971 if (!S)
b0f56f1a 972 S = task_state_char(field->prev_state);
f633cef0
SR
973 T = task_state_char(field->next_state);
974
19a7fe20
SRRH
975 SEQ_PUT_HEX_FIELD(s, field->prev_pid);
976 SEQ_PUT_HEX_FIELD(s, field->prev_prio);
977 SEQ_PUT_HEX_FIELD(s, S);
978 SEQ_PUT_HEX_FIELD(s, field->next_cpu);
979 SEQ_PUT_HEX_FIELD(s, field->next_pid);
980 SEQ_PUT_HEX_FIELD(s, field->next_prio);
981 SEQ_PUT_HEX_FIELD(s, T);
f633cef0 982
19a7fe20 983 return trace_handle_return(s);
f633cef0
SR
984}
985
a9a57763
SR
986static enum print_line_t trace_ctx_hex(struct trace_iterator *iter, int flags,
987 struct trace_event *event)
f633cef0 988{
2c9b238e 989 return trace_ctxwake_hex(iter, 0);
f633cef0
SR
990}
991
a9a57763
SR
992static enum print_line_t trace_wake_hex(struct trace_iterator *iter, int flags,
993 struct trace_event *event)
f633cef0 994{
2c9b238e 995 return trace_ctxwake_hex(iter, '+');
f633cef0
SR
996}
997
ae7462b4 998static enum print_line_t trace_ctxwake_bin(struct trace_iterator *iter,
a9a57763 999 int flags, struct trace_event *event)
f633cef0
SR
1000{
1001 struct ctx_switch_entry *field;
2c9b238e 1002 struct trace_seq *s = &iter->seq;
f633cef0 1003
2c9b238e 1004 trace_assign_type(field, iter->ent);
f633cef0 1005
19a7fe20
SRRH
1006 SEQ_PUT_FIELD(s, field->prev_pid);
1007 SEQ_PUT_FIELD(s, field->prev_prio);
1008 SEQ_PUT_FIELD(s, field->prev_state);
1009 SEQ_PUT_FIELD(s, field->next_cpu);
1010 SEQ_PUT_FIELD(s, field->next_pid);
1011 SEQ_PUT_FIELD(s, field->next_prio);
1012 SEQ_PUT_FIELD(s, field->next_state);
f633cef0 1013
19a7fe20 1014 return trace_handle_return(s);
f633cef0
SR
1015}
1016
a9a57763 1017static struct trace_event_functions trace_ctx_funcs = {
f633cef0 1018 .trace = trace_ctx_print,
f633cef0
SR
1019 .raw = trace_ctx_raw,
1020 .hex = trace_ctx_hex,
1021 .binary = trace_ctxwake_bin,
1022};
1023
a9a57763
SR
1024static struct trace_event trace_ctx_event = {
1025 .type = TRACE_CTX,
1026 .funcs = &trace_ctx_funcs,
1027};
1028
1029static struct trace_event_functions trace_wake_funcs = {
f633cef0 1030 .trace = trace_wake_print,
f633cef0
SR
1031 .raw = trace_wake_raw,
1032 .hex = trace_wake_hex,
1033 .binary = trace_ctxwake_bin,
1034};
1035
a9a57763
SR
1036static struct trace_event trace_wake_event = {
1037 .type = TRACE_WAKE,
1038 .funcs = &trace_wake_funcs,
1039};
1040
f633cef0
SR
1041/* TRACE_STACK */
1042
ae7462b4 1043static enum print_line_t trace_stack_print(struct trace_iterator *iter,
a9a57763 1044 int flags, struct trace_event *event)
f633cef0
SR
1045{
1046 struct stack_entry *field;
2c9b238e 1047 struct trace_seq *s = &iter->seq;
4a9bd3f1
SR
1048 unsigned long *p;
1049 unsigned long *end;
f633cef0 1050
2c9b238e 1051 trace_assign_type(field, iter->ent);
4a9bd3f1 1052 end = (unsigned long *)((long)iter->ent + iter->ent_size);
f633cef0 1053
19a7fe20 1054 trace_seq_puts(s, "<stack trace>\n");
4a9bd3f1
SR
1055
1056 for (p = field->caller; p && *p != ULONG_MAX && p < end; p++) {
f633cef0 1057
19a7fe20
SRRH
1058 if (trace_seq_has_overflowed(s))
1059 break;
f633cef0 1060
19a7fe20
SRRH
1061 trace_seq_puts(s, " => ");
1062 seq_print_ip_sym(s, *p, flags);
1063 trace_seq_putc(s, '\n');
1064 }
f633cef0 1065
19a7fe20 1066 return trace_handle_return(s);
f633cef0
SR
1067}
1068
a9a57763 1069static struct trace_event_functions trace_stack_funcs = {
f633cef0 1070 .trace = trace_stack_print,
f633cef0
SR
1071};
1072
a9a57763
SR
1073static struct trace_event trace_stack_event = {
1074 .type = TRACE_STACK,
1075 .funcs = &trace_stack_funcs,
1076};
1077
f633cef0 1078/* TRACE_USER_STACK */
ae7462b4 1079static enum print_line_t trace_user_stack_print(struct trace_iterator *iter,
a9a57763 1080 int flags, struct trace_event *event)
f633cef0
SR
1081{
1082 struct userstack_entry *field;
2c9b238e 1083 struct trace_seq *s = &iter->seq;
f633cef0 1084
2c9b238e 1085 trace_assign_type(field, iter->ent);
f633cef0 1086
19a7fe20
SRRH
1087 trace_seq_puts(s, "<user stack trace>\n");
1088 seq_print_userip_objs(field, s, flags);
f633cef0 1089
19a7fe20 1090 return trace_handle_return(s);
f633cef0
SR
1091}
1092
a9a57763 1093static struct trace_event_functions trace_user_stack_funcs = {
f633cef0 1094 .trace = trace_user_stack_print,
f633cef0
SR
1095};
1096
a9a57763
SR
1097static struct trace_event trace_user_stack_event = {
1098 .type = TRACE_USER_STACK,
1099 .funcs = &trace_user_stack_funcs,
1100};
1101
09ae7234
SRRH
1102/* TRACE_BPUTS */
1103static enum print_line_t
1104trace_bputs_print(struct trace_iterator *iter, int flags,
1105 struct trace_event *event)
1106{
1107 struct trace_entry *entry = iter->ent;
1108 struct trace_seq *s = &iter->seq;
1109 struct bputs_entry *field;
1110
1111 trace_assign_type(field, entry);
1112
19a7fe20
SRRH
1113 seq_print_ip_sym(s, field->ip, flags);
1114 trace_seq_puts(s, ": ");
1115 trace_seq_puts(s, field->str);
09ae7234 1116
19a7fe20 1117 return trace_handle_return(s);
09ae7234
SRRH
1118}
1119
1120
1121static enum print_line_t
1122trace_bputs_raw(struct trace_iterator *iter, int flags,
1123 struct trace_event *event)
1124{
1125 struct bputs_entry *field;
1126 struct trace_seq *s = &iter->seq;
1127
1128 trace_assign_type(field, iter->ent);
1129
19a7fe20
SRRH
1130 trace_seq_printf(s, ": %lx : ", field->ip);
1131 trace_seq_puts(s, field->str);
09ae7234 1132
19a7fe20 1133 return trace_handle_return(s);
09ae7234
SRRH
1134}
1135
1136static struct trace_event_functions trace_bputs_funcs = {
1137 .trace = trace_bputs_print,
1138 .raw = trace_bputs_raw,
1139};
1140
1141static struct trace_event trace_bputs_event = {
1142 .type = TRACE_BPUTS,
1143 .funcs = &trace_bputs_funcs,
1144};
1145
48ead020 1146/* TRACE_BPRINT */
1427cdf0 1147static enum print_line_t
a9a57763
SR
1148trace_bprint_print(struct trace_iterator *iter, int flags,
1149 struct trace_event *event)
1427cdf0
LJ
1150{
1151 struct trace_entry *entry = iter->ent;
1152 struct trace_seq *s = &iter->seq;
48ead020 1153 struct bprint_entry *field;
1427cdf0
LJ
1154
1155 trace_assign_type(field, entry);
1156
19a7fe20
SRRH
1157 seq_print_ip_sym(s, field->ip, flags);
1158 trace_seq_puts(s, ": ");
1159 trace_seq_bprintf(s, field->fmt, field->buf);
1427cdf0 1160
19a7fe20 1161 return trace_handle_return(s);
1427cdf0
LJ
1162}
1163
769b0441 1164
48ead020 1165static enum print_line_t
a9a57763
SR
1166trace_bprint_raw(struct trace_iterator *iter, int flags,
1167 struct trace_event *event)
1427cdf0 1168{
48ead020 1169 struct bprint_entry *field;
1427cdf0 1170 struct trace_seq *s = &iter->seq;
1427cdf0 1171
769b0441 1172 trace_assign_type(field, iter->ent);
1427cdf0 1173
19a7fe20
SRRH
1174 trace_seq_printf(s, ": %lx : ", field->ip);
1175 trace_seq_bprintf(s, field->fmt, field->buf);
1427cdf0 1176
19a7fe20 1177 return trace_handle_return(s);
1427cdf0
LJ
1178}
1179
a9a57763
SR
1180static struct trace_event_functions trace_bprint_funcs = {
1181 .trace = trace_bprint_print,
1182 .raw = trace_bprint_raw,
1183};
769b0441 1184
48ead020
FW
1185static struct trace_event trace_bprint_event = {
1186 .type = TRACE_BPRINT,
a9a57763 1187 .funcs = &trace_bprint_funcs,
48ead020
FW
1188};
1189
1190/* TRACE_PRINT */
1191static enum print_line_t trace_print_print(struct trace_iterator *iter,
a9a57763 1192 int flags, struct trace_event *event)
48ead020
FW
1193{
1194 struct print_entry *field;
1195 struct trace_seq *s = &iter->seq;
1196
1197 trace_assign_type(field, iter->ent);
1198
19a7fe20
SRRH
1199 seq_print_ip_sym(s, field->ip, flags);
1200 trace_seq_printf(s, ": %s", field->buf);
48ead020 1201
19a7fe20 1202 return trace_handle_return(s);
48ead020
FW
1203}
1204
a9a57763
SR
1205static enum print_line_t trace_print_raw(struct trace_iterator *iter, int flags,
1206 struct trace_event *event)
48ead020
FW
1207{
1208 struct print_entry *field;
1209
1210 trace_assign_type(field, iter->ent);
1211
19a7fe20 1212 trace_seq_printf(&iter->seq, "# %lx %s", field->ip, field->buf);
48ead020 1213
19a7fe20 1214 return trace_handle_return(&iter->seq);
48ead020
FW
1215}
1216
a9a57763 1217static struct trace_event_functions trace_print_funcs = {
769b0441
FW
1218 .trace = trace_print_print,
1219 .raw = trace_print_raw,
1427cdf0
LJ
1220};
1221
a9a57763
SR
1222static struct trace_event trace_print_event = {
1223 .type = TRACE_PRINT,
1224 .funcs = &trace_print_funcs,
1225};
1226
48ead020 1227
f633cef0
SR
1228static struct trace_event *events[] __initdata = {
1229 &trace_fn_event,
1230 &trace_ctx_event,
1231 &trace_wake_event,
f633cef0
SR
1232 &trace_stack_event,
1233 &trace_user_stack_event,
09ae7234 1234 &trace_bputs_event,
48ead020 1235 &trace_bprint_event,
f633cef0
SR
1236 &trace_print_event,
1237 NULL
1238};
1239
1240__init static int init_events(void)
1241{
1242 struct trace_event *event;
1243 int i, ret;
1244
1245 for (i = 0; events[i]; i++) {
1246 event = events[i];
1247
9023c930 1248 ret = register_trace_event(event);
f633cef0
SR
1249 if (!ret) {
1250 printk(KERN_WARNING "event %d failed to register\n",
1251 event->type);
1252 WARN_ON_ONCE(1);
1253 }
1254 }
1255
1256 return 0;
1257}
7374e827 1258early_initcall(init_events);