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