exec: do not sleep in TASK_TRACED under ->cred_guard_mutex
[linux-2.6/mini2440.git] / kernel / trace / trace_output.c
blobe0c2545622e8f7617b3e32bcb8c3df235aa3a929
1 /*
2 * trace_output.c
4 * Copyright (C) 2008 Red Hat Inc, Steven Rostedt <srostedt@redhat.com>
6 */
8 #include <linux/module.h>
9 #include <linux/mutex.h>
10 #include <linux/ftrace.h>
12 #include "trace_output.h"
14 /* must be a power of 2 */
15 #define EVENT_HASHSIZE 128
17 DECLARE_RWSEM(trace_event_mutex);
19 DEFINE_PER_CPU(struct trace_seq, ftrace_event_seq);
20 EXPORT_PER_CPU_SYMBOL(ftrace_event_seq);
22 static struct hlist_head event_hash[EVENT_HASHSIZE] __read_mostly;
24 static int next_event_type = __TRACE_LAST_TYPE + 1;
26 void trace_print_seq(struct seq_file *m, struct trace_seq *s)
28 int len = s->len >= PAGE_SIZE ? PAGE_SIZE - 1 : s->len;
30 seq_write(m, s->buffer, len);
32 trace_seq_init(s);
35 enum print_line_t trace_print_bprintk_msg_only(struct trace_iterator *iter)
37 struct trace_seq *s = &iter->seq;
38 struct trace_entry *entry = iter->ent;
39 struct bprint_entry *field;
40 int ret;
42 trace_assign_type(field, entry);
44 ret = trace_seq_bprintf(s, field->fmt, field->buf);
45 if (!ret)
46 return TRACE_TYPE_PARTIAL_LINE;
48 return TRACE_TYPE_HANDLED;
51 enum print_line_t trace_print_printk_msg_only(struct trace_iterator *iter)
53 struct trace_seq *s = &iter->seq;
54 struct trace_entry *entry = iter->ent;
55 struct print_entry *field;
56 int ret;
58 trace_assign_type(field, entry);
60 ret = trace_seq_printf(s, "%s", field->buf);
61 if (!ret)
62 return TRACE_TYPE_PARTIAL_LINE;
64 return TRACE_TYPE_HANDLED;
67 /**
68 * trace_seq_printf - sequence printing of trace information
69 * @s: trace sequence descriptor
70 * @fmt: printf format string
72 * The tracer may use either sequence operations or its own
73 * copy to user routines. To simplify formating of a trace
74 * trace_seq_printf is used to store strings into a special
75 * buffer (@s). Then the output may be either used by
76 * the sequencer or pulled into another buffer.
78 int
79 trace_seq_printf(struct trace_seq *s, const char *fmt, ...)
81 int len = (PAGE_SIZE - 1) - s->len;
82 va_list ap;
83 int ret;
85 if (!len)
86 return 0;
88 va_start(ap, fmt);
89 ret = vsnprintf(s->buffer + s->len, len, fmt, ap);
90 va_end(ap);
92 /* If we can't write it all, don't bother writing anything */
93 if (ret >= len)
94 return 0;
96 s->len += ret;
98 return len;
100 EXPORT_SYMBOL_GPL(trace_seq_printf);
103 * trace_seq_vprintf - sequence printing of trace information
104 * @s: trace sequence descriptor
105 * @fmt: printf format string
107 * The tracer may use either sequence operations or its own
108 * copy to user routines. To simplify formating of a trace
109 * trace_seq_printf is used to store strings into a special
110 * buffer (@s). Then the output may be either used by
111 * the sequencer or pulled into another buffer.
114 trace_seq_vprintf(struct trace_seq *s, const char *fmt, va_list args)
116 int len = (PAGE_SIZE - 1) - s->len;
117 int ret;
119 if (!len)
120 return 0;
122 ret = vsnprintf(s->buffer + s->len, len, fmt, args);
124 /* If we can't write it all, don't bother writing anything */
125 if (ret >= len)
126 return 0;
128 s->len += ret;
130 return len;
132 EXPORT_SYMBOL_GPL(trace_seq_vprintf);
134 int trace_seq_bprintf(struct trace_seq *s, const char *fmt, const u32 *binary)
136 int len = (PAGE_SIZE - 1) - s->len;
137 int ret;
139 if (!len)
140 return 0;
142 ret = bstr_printf(s->buffer + s->len, len, fmt, binary);
144 /* If we can't write it all, don't bother writing anything */
145 if (ret >= len)
146 return 0;
148 s->len += ret;
150 return len;
154 * trace_seq_puts - trace sequence printing of simple string
155 * @s: trace sequence descriptor
156 * @str: simple string to record
158 * The tracer may use either the sequence operations or its own
159 * copy to user routines. This function records a simple string
160 * into a special buffer (@s) for later retrieval by a sequencer
161 * or other mechanism.
163 int trace_seq_puts(struct trace_seq *s, const char *str)
165 int len = strlen(str);
167 if (len > ((PAGE_SIZE - 1) - s->len))
168 return 0;
170 memcpy(s->buffer + s->len, str, len);
171 s->len += len;
173 return len;
176 int trace_seq_putc(struct trace_seq *s, unsigned char c)
178 if (s->len >= (PAGE_SIZE - 1))
179 return 0;
181 s->buffer[s->len++] = c;
183 return 1;
186 int trace_seq_putmem(struct trace_seq *s, const void *mem, size_t len)
188 if (len > ((PAGE_SIZE - 1) - s->len))
189 return 0;
191 memcpy(s->buffer + s->len, mem, len);
192 s->len += len;
194 return len;
197 int trace_seq_putmem_hex(struct trace_seq *s, const void *mem, size_t len)
199 unsigned char hex[HEX_CHARS];
200 const unsigned char *data = mem;
201 int i, j;
203 #ifdef __BIG_ENDIAN
204 for (i = 0, j = 0; i < len; i++) {
205 #else
206 for (i = len-1, j = 0; i >= 0; i--) {
207 #endif
208 hex[j++] = hex_asc_hi(data[i]);
209 hex[j++] = hex_asc_lo(data[i]);
211 hex[j++] = ' ';
213 return trace_seq_putmem(s, hex, j);
216 void *trace_seq_reserve(struct trace_seq *s, size_t len)
218 void *ret;
220 if (len > ((PAGE_SIZE - 1) - s->len))
221 return NULL;
223 ret = s->buffer + s->len;
224 s->len += len;
226 return ret;
229 int trace_seq_path(struct trace_seq *s, struct path *path)
231 unsigned char *p;
233 if (s->len >= (PAGE_SIZE - 1))
234 return 0;
235 p = d_path(path, s->buffer + s->len, PAGE_SIZE - s->len);
236 if (!IS_ERR(p)) {
237 p = mangle_path(s->buffer + s->len, p, "\n");
238 if (p) {
239 s->len = p - s->buffer;
240 return 1;
242 } else {
243 s->buffer[s->len++] = '?';
244 return 1;
247 return 0;
250 const char *
251 ftrace_print_flags_seq(struct trace_seq *p, const char *delim,
252 unsigned long flags,
253 const struct trace_print_flags *flag_array)
255 unsigned long mask;
256 const char *str;
257 const char *ret = p->buffer + p->len;
258 int i;
260 for (i = 0; flag_array[i].name && flags; i++) {
262 mask = flag_array[i].mask;
263 if ((flags & mask) != mask)
264 continue;
266 str = flag_array[i].name;
267 flags &= ~mask;
268 if (p->len && delim)
269 trace_seq_puts(p, delim);
270 trace_seq_puts(p, str);
273 /* check for left over flags */
274 if (flags) {
275 if (p->len && delim)
276 trace_seq_puts(p, delim);
277 trace_seq_printf(p, "0x%lx", flags);
280 trace_seq_putc(p, 0);
282 return ret;
284 EXPORT_SYMBOL(ftrace_print_flags_seq);
286 const char *
287 ftrace_print_symbols_seq(struct trace_seq *p, unsigned long val,
288 const struct trace_print_flags *symbol_array)
290 int i;
291 const char *ret = p->buffer + p->len;
293 for (i = 0; symbol_array[i].name; i++) {
295 if (val != symbol_array[i].mask)
296 continue;
298 trace_seq_puts(p, symbol_array[i].name);
299 break;
302 if (!p->len)
303 trace_seq_printf(p, "0x%lx", val);
305 trace_seq_putc(p, 0);
307 return ret;
309 EXPORT_SYMBOL(ftrace_print_symbols_seq);
311 #ifdef CONFIG_KRETPROBES
312 static inline const char *kretprobed(const char *name)
314 static const char tramp_name[] = "kretprobe_trampoline";
315 int size = sizeof(tramp_name);
317 if (strncmp(tramp_name, name, size) == 0)
318 return "[unknown/kretprobe'd]";
319 return name;
321 #else
322 static inline const char *kretprobed(const char *name)
324 return name;
326 #endif /* CONFIG_KRETPROBES */
328 static int
329 seq_print_sym_short(struct trace_seq *s, const char *fmt, unsigned long address)
331 #ifdef CONFIG_KALLSYMS
332 char str[KSYM_SYMBOL_LEN];
333 const char *name;
335 kallsyms_lookup(address, NULL, NULL, NULL, str);
337 name = kretprobed(str);
339 return trace_seq_printf(s, fmt, name);
340 #endif
341 return 1;
344 static int
345 seq_print_sym_offset(struct trace_seq *s, const char *fmt,
346 unsigned long address)
348 #ifdef CONFIG_KALLSYMS
349 char str[KSYM_SYMBOL_LEN];
350 const char *name;
352 sprint_symbol(str, address);
353 name = kretprobed(str);
355 return trace_seq_printf(s, fmt, name);
356 #endif
357 return 1;
360 #ifndef CONFIG_64BIT
361 # define IP_FMT "%08lx"
362 #else
363 # define IP_FMT "%016lx"
364 #endif
366 int seq_print_user_ip(struct trace_seq *s, struct mm_struct *mm,
367 unsigned long ip, unsigned long sym_flags)
369 struct file *file = NULL;
370 unsigned long vmstart = 0;
371 int ret = 1;
373 if (mm) {
374 const struct vm_area_struct *vma;
376 down_read(&mm->mmap_sem);
377 vma = find_vma(mm, ip);
378 if (vma) {
379 file = vma->vm_file;
380 vmstart = vma->vm_start;
382 if (file) {
383 ret = trace_seq_path(s, &file->f_path);
384 if (ret)
385 ret = trace_seq_printf(s, "[+0x%lx]",
386 ip - vmstart);
388 up_read(&mm->mmap_sem);
390 if (ret && ((sym_flags & TRACE_ITER_SYM_ADDR) || !file))
391 ret = trace_seq_printf(s, " <" IP_FMT ">", ip);
392 return ret;
396 seq_print_userip_objs(const struct userstack_entry *entry, struct trace_seq *s,
397 unsigned long sym_flags)
399 struct mm_struct *mm = NULL;
400 int ret = 1;
401 unsigned int i;
403 if (trace_flags & TRACE_ITER_SYM_USEROBJ) {
404 struct task_struct *task;
406 * we do the lookup on the thread group leader,
407 * since individual threads might have already quit!
409 rcu_read_lock();
410 task = find_task_by_vpid(entry->ent.tgid);
411 if (task)
412 mm = get_task_mm(task);
413 rcu_read_unlock();
416 for (i = 0; i < FTRACE_STACK_ENTRIES; i++) {
417 unsigned long ip = entry->caller[i];
419 if (ip == ULONG_MAX || !ret)
420 break;
421 if (ret)
422 ret = trace_seq_puts(s, " => ");
423 if (!ip) {
424 if (ret)
425 ret = trace_seq_puts(s, "??");
426 if (ret)
427 ret = trace_seq_puts(s, "\n");
428 continue;
430 if (!ret)
431 break;
432 if (ret)
433 ret = seq_print_user_ip(s, mm, ip, sym_flags);
434 ret = trace_seq_puts(s, "\n");
437 if (mm)
438 mmput(mm);
439 return ret;
443 seq_print_ip_sym(struct trace_seq *s, unsigned long ip, unsigned long sym_flags)
445 int ret;
447 if (!ip)
448 return trace_seq_printf(s, "0");
450 if (sym_flags & TRACE_ITER_SYM_OFFSET)
451 ret = seq_print_sym_offset(s, "%s", ip);
452 else
453 ret = seq_print_sym_short(s, "%s", ip);
455 if (!ret)
456 return 0;
458 if (sym_flags & TRACE_ITER_SYM_ADDR)
459 ret = trace_seq_printf(s, " <" IP_FMT ">", ip);
460 return ret;
463 static int
464 lat_print_generic(struct trace_seq *s, struct trace_entry *entry, int cpu)
466 int hardirq, softirq;
467 char comm[TASK_COMM_LEN];
469 trace_find_cmdline(entry->pid, comm);
470 hardirq = entry->flags & TRACE_FLAG_HARDIRQ;
471 softirq = entry->flags & TRACE_FLAG_SOFTIRQ;
473 if (!trace_seq_printf(s, "%8.8s-%-5d %3d%c%c%c",
474 comm, entry->pid, cpu,
475 (entry->flags & TRACE_FLAG_IRQS_OFF) ? 'd' :
476 (entry->flags & TRACE_FLAG_IRQS_NOSUPPORT) ?
477 'X' : '.',
478 (entry->flags & TRACE_FLAG_NEED_RESCHED) ?
479 'N' : '.',
480 (hardirq && softirq) ? 'H' :
481 hardirq ? 'h' : softirq ? 's' : '.'))
482 return 0;
484 if (entry->preempt_count)
485 return trace_seq_printf(s, "%x", entry->preempt_count);
486 return trace_seq_puts(s, ".");
489 static unsigned long preempt_mark_thresh = 100;
491 static int
492 lat_print_timestamp(struct trace_seq *s, u64 abs_usecs,
493 unsigned long rel_usecs)
495 return trace_seq_printf(s, " %4lldus%c: ", abs_usecs,
496 rel_usecs > preempt_mark_thresh ? '!' :
497 rel_usecs > 1 ? '+' : ' ');
500 int trace_print_context(struct trace_iterator *iter)
502 struct trace_seq *s = &iter->seq;
503 struct trace_entry *entry = iter->ent;
504 unsigned long long t = ns2usecs(iter->ts);
505 unsigned long usec_rem = do_div(t, USEC_PER_SEC);
506 unsigned long secs = (unsigned long)t;
507 char comm[TASK_COMM_LEN];
509 trace_find_cmdline(entry->pid, comm);
511 return trace_seq_printf(s, "%16s-%-5d [%03d] %5lu.%06lu: ",
512 comm, entry->pid, iter->cpu, secs, usec_rem);
515 int trace_print_lat_context(struct trace_iterator *iter)
517 u64 next_ts;
518 int ret;
519 struct trace_seq *s = &iter->seq;
520 struct trace_entry *entry = iter->ent,
521 *next_entry = trace_find_next_entry(iter, NULL,
522 &next_ts);
523 unsigned long verbose = (trace_flags & TRACE_ITER_VERBOSE);
524 unsigned long abs_usecs = ns2usecs(iter->ts - iter->tr->time_start);
525 unsigned long rel_usecs;
527 if (!next_entry)
528 next_ts = iter->ts;
529 rel_usecs = ns2usecs(next_ts - iter->ts);
531 if (verbose) {
532 char comm[TASK_COMM_LEN];
534 trace_find_cmdline(entry->pid, comm);
536 ret = trace_seq_printf(s, "%16s %5d %3d %d %08x %08lx [%08llx]"
537 " %ld.%03ldms (+%ld.%03ldms): ", comm,
538 entry->pid, iter->cpu, entry->flags,
539 entry->preempt_count, iter->idx,
540 ns2usecs(iter->ts),
541 abs_usecs / USEC_PER_MSEC,
542 abs_usecs % USEC_PER_MSEC,
543 rel_usecs / USEC_PER_MSEC,
544 rel_usecs % USEC_PER_MSEC);
545 } else {
546 ret = lat_print_generic(s, entry, iter->cpu);
547 if (ret)
548 ret = lat_print_timestamp(s, abs_usecs, rel_usecs);
551 return ret;
554 static const char state_to_char[] = TASK_STATE_TO_CHAR_STR;
556 static int task_state_char(unsigned long state)
558 int bit = state ? __ffs(state) + 1 : 0;
560 return bit < sizeof(state_to_char) - 1 ? state_to_char[bit] : '?';
564 * ftrace_find_event - find a registered event
565 * @type: the type of event to look for
567 * Returns an event of type @type otherwise NULL
568 * Called with trace_event_read_lock() held.
570 struct trace_event *ftrace_find_event(int type)
572 struct trace_event *event;
573 struct hlist_node *n;
574 unsigned key;
576 key = type & (EVENT_HASHSIZE - 1);
578 hlist_for_each_entry(event, n, &event_hash[key], node) {
579 if (event->type == type)
580 return event;
583 return NULL;
586 static LIST_HEAD(ftrace_event_list);
588 static int trace_search_list(struct list_head **list)
590 struct trace_event *e;
591 int last = __TRACE_LAST_TYPE;
593 if (list_empty(&ftrace_event_list)) {
594 *list = &ftrace_event_list;
595 return last + 1;
599 * We used up all possible max events,
600 * lets see if somebody freed one.
602 list_for_each_entry(e, &ftrace_event_list, list) {
603 if (e->type != last + 1)
604 break;
605 last++;
608 /* Did we used up all 65 thousand events??? */
609 if ((last + 1) > FTRACE_MAX_EVENT)
610 return 0;
612 *list = &e->list;
613 return last + 1;
616 void trace_event_read_lock(void)
618 down_read(&trace_event_mutex);
621 void trace_event_read_unlock(void)
623 up_read(&trace_event_mutex);
627 * register_ftrace_event - register output for an event type
628 * @event: the event type to register
630 * Event types are stored in a hash and this hash is used to
631 * find a way to print an event. If the @event->type is set
632 * then it will use that type, otherwise it will assign a
633 * type to use.
635 * If you assign your own type, please make sure it is added
636 * to the trace_type enum in trace.h, to avoid collisions
637 * with the dynamic types.
639 * Returns the event type number or zero on error.
641 int register_ftrace_event(struct trace_event *event)
643 unsigned key;
644 int ret = 0;
646 down_write(&trace_event_mutex);
648 if (WARN_ON(!event))
649 goto out;
651 INIT_LIST_HEAD(&event->list);
653 if (!event->type) {
654 struct list_head *list = NULL;
656 if (next_event_type > FTRACE_MAX_EVENT) {
658 event->type = trace_search_list(&list);
659 if (!event->type)
660 goto out;
662 } else {
664 event->type = next_event_type++;
665 list = &ftrace_event_list;
668 if (WARN_ON(ftrace_find_event(event->type)))
669 goto out;
671 list_add_tail(&event->list, list);
673 } else if (event->type > __TRACE_LAST_TYPE) {
674 printk(KERN_WARNING "Need to add type to trace.h\n");
675 WARN_ON(1);
676 goto out;
677 } else {
678 /* Is this event already used */
679 if (ftrace_find_event(event->type))
680 goto out;
683 if (event->trace == NULL)
684 event->trace = trace_nop_print;
685 if (event->raw == NULL)
686 event->raw = trace_nop_print;
687 if (event->hex == NULL)
688 event->hex = trace_nop_print;
689 if (event->binary == NULL)
690 event->binary = trace_nop_print;
692 key = event->type & (EVENT_HASHSIZE - 1);
694 hlist_add_head(&event->node, &event_hash[key]);
696 ret = event->type;
697 out:
698 up_write(&trace_event_mutex);
700 return ret;
702 EXPORT_SYMBOL_GPL(register_ftrace_event);
705 * Used by module code with the trace_event_mutex held for write.
707 int __unregister_ftrace_event(struct trace_event *event)
709 hlist_del(&event->node);
710 list_del(&event->list);
711 return 0;
715 * unregister_ftrace_event - remove a no longer used event
716 * @event: the event to remove
718 int unregister_ftrace_event(struct trace_event *event)
720 down_write(&trace_event_mutex);
721 __unregister_ftrace_event(event);
722 up_write(&trace_event_mutex);
724 return 0;
726 EXPORT_SYMBOL_GPL(unregister_ftrace_event);
729 * Standard events
732 enum print_line_t trace_nop_print(struct trace_iterator *iter, int flags)
734 return TRACE_TYPE_HANDLED;
737 /* TRACE_FN */
738 static enum print_line_t trace_fn_trace(struct trace_iterator *iter, int flags)
740 struct ftrace_entry *field;
741 struct trace_seq *s = &iter->seq;
743 trace_assign_type(field, iter->ent);
745 if (!seq_print_ip_sym(s, field->ip, flags))
746 goto partial;
748 if ((flags & TRACE_ITER_PRINT_PARENT) && field->parent_ip) {
749 if (!trace_seq_printf(s, " <-"))
750 goto partial;
751 if (!seq_print_ip_sym(s,
752 field->parent_ip,
753 flags))
754 goto partial;
756 if (!trace_seq_printf(s, "\n"))
757 goto partial;
759 return TRACE_TYPE_HANDLED;
761 partial:
762 return TRACE_TYPE_PARTIAL_LINE;
765 static enum print_line_t trace_fn_raw(struct trace_iterator *iter, int flags)
767 struct ftrace_entry *field;
769 trace_assign_type(field, iter->ent);
771 if (!trace_seq_printf(&iter->seq, "%lx %lx\n",
772 field->ip,
773 field->parent_ip))
774 return TRACE_TYPE_PARTIAL_LINE;
776 return TRACE_TYPE_HANDLED;
779 static enum print_line_t trace_fn_hex(struct trace_iterator *iter, int flags)
781 struct ftrace_entry *field;
782 struct trace_seq *s = &iter->seq;
784 trace_assign_type(field, iter->ent);
786 SEQ_PUT_HEX_FIELD_RET(s, field->ip);
787 SEQ_PUT_HEX_FIELD_RET(s, field->parent_ip);
789 return TRACE_TYPE_HANDLED;
792 static enum print_line_t trace_fn_bin(struct trace_iterator *iter, int flags)
794 struct ftrace_entry *field;
795 struct trace_seq *s = &iter->seq;
797 trace_assign_type(field, iter->ent);
799 SEQ_PUT_FIELD_RET(s, field->ip);
800 SEQ_PUT_FIELD_RET(s, field->parent_ip);
802 return TRACE_TYPE_HANDLED;
805 static struct trace_event trace_fn_event = {
806 .type = TRACE_FN,
807 .trace = trace_fn_trace,
808 .raw = trace_fn_raw,
809 .hex = trace_fn_hex,
810 .binary = trace_fn_bin,
813 /* TRACE_CTX an TRACE_WAKE */
814 static enum print_line_t trace_ctxwake_print(struct trace_iterator *iter,
815 char *delim)
817 struct ctx_switch_entry *field;
818 char comm[TASK_COMM_LEN];
819 int S, T;
822 trace_assign_type(field, iter->ent);
824 T = task_state_char(field->next_state);
825 S = task_state_char(field->prev_state);
826 trace_find_cmdline(field->next_pid, comm);
827 if (!trace_seq_printf(&iter->seq,
828 " %5d:%3d:%c %s [%03d] %5d:%3d:%c %s\n",
829 field->prev_pid,
830 field->prev_prio,
831 S, delim,
832 field->next_cpu,
833 field->next_pid,
834 field->next_prio,
835 T, comm))
836 return TRACE_TYPE_PARTIAL_LINE;
838 return TRACE_TYPE_HANDLED;
841 static enum print_line_t trace_ctx_print(struct trace_iterator *iter, int flags)
843 return trace_ctxwake_print(iter, "==>");
846 static enum print_line_t trace_wake_print(struct trace_iterator *iter,
847 int flags)
849 return trace_ctxwake_print(iter, " +");
852 static int trace_ctxwake_raw(struct trace_iterator *iter, char S)
854 struct ctx_switch_entry *field;
855 int T;
857 trace_assign_type(field, iter->ent);
859 if (!S)
860 task_state_char(field->prev_state);
861 T = task_state_char(field->next_state);
862 if (!trace_seq_printf(&iter->seq, "%d %d %c %d %d %d %c\n",
863 field->prev_pid,
864 field->prev_prio,
866 field->next_cpu,
867 field->next_pid,
868 field->next_prio,
870 return TRACE_TYPE_PARTIAL_LINE;
872 return TRACE_TYPE_HANDLED;
875 static enum print_line_t trace_ctx_raw(struct trace_iterator *iter, int flags)
877 return trace_ctxwake_raw(iter, 0);
880 static enum print_line_t trace_wake_raw(struct trace_iterator *iter, int flags)
882 return trace_ctxwake_raw(iter, '+');
886 static int trace_ctxwake_hex(struct trace_iterator *iter, char S)
888 struct ctx_switch_entry *field;
889 struct trace_seq *s = &iter->seq;
890 int T;
892 trace_assign_type(field, iter->ent);
894 if (!S)
895 task_state_char(field->prev_state);
896 T = task_state_char(field->next_state);
898 SEQ_PUT_HEX_FIELD_RET(s, field->prev_pid);
899 SEQ_PUT_HEX_FIELD_RET(s, field->prev_prio);
900 SEQ_PUT_HEX_FIELD_RET(s, S);
901 SEQ_PUT_HEX_FIELD_RET(s, field->next_cpu);
902 SEQ_PUT_HEX_FIELD_RET(s, field->next_pid);
903 SEQ_PUT_HEX_FIELD_RET(s, field->next_prio);
904 SEQ_PUT_HEX_FIELD_RET(s, T);
906 return TRACE_TYPE_HANDLED;
909 static enum print_line_t trace_ctx_hex(struct trace_iterator *iter, int flags)
911 return trace_ctxwake_hex(iter, 0);
914 static enum print_line_t trace_wake_hex(struct trace_iterator *iter, int flags)
916 return trace_ctxwake_hex(iter, '+');
919 static enum print_line_t trace_ctxwake_bin(struct trace_iterator *iter,
920 int flags)
922 struct ctx_switch_entry *field;
923 struct trace_seq *s = &iter->seq;
925 trace_assign_type(field, iter->ent);
927 SEQ_PUT_FIELD_RET(s, field->prev_pid);
928 SEQ_PUT_FIELD_RET(s, field->prev_prio);
929 SEQ_PUT_FIELD_RET(s, field->prev_state);
930 SEQ_PUT_FIELD_RET(s, field->next_pid);
931 SEQ_PUT_FIELD_RET(s, field->next_prio);
932 SEQ_PUT_FIELD_RET(s, field->next_state);
934 return TRACE_TYPE_HANDLED;
937 static struct trace_event trace_ctx_event = {
938 .type = TRACE_CTX,
939 .trace = trace_ctx_print,
940 .raw = trace_ctx_raw,
941 .hex = trace_ctx_hex,
942 .binary = trace_ctxwake_bin,
945 static struct trace_event trace_wake_event = {
946 .type = TRACE_WAKE,
947 .trace = trace_wake_print,
948 .raw = trace_wake_raw,
949 .hex = trace_wake_hex,
950 .binary = trace_ctxwake_bin,
953 /* TRACE_SPECIAL */
954 static enum print_line_t trace_special_print(struct trace_iterator *iter,
955 int flags)
957 struct special_entry *field;
959 trace_assign_type(field, iter->ent);
961 if (!trace_seq_printf(&iter->seq, "# %ld %ld %ld\n",
962 field->arg1,
963 field->arg2,
964 field->arg3))
965 return TRACE_TYPE_PARTIAL_LINE;
967 return TRACE_TYPE_HANDLED;
970 static enum print_line_t trace_special_hex(struct trace_iterator *iter,
971 int flags)
973 struct special_entry *field;
974 struct trace_seq *s = &iter->seq;
976 trace_assign_type(field, iter->ent);
978 SEQ_PUT_HEX_FIELD_RET(s, field->arg1);
979 SEQ_PUT_HEX_FIELD_RET(s, field->arg2);
980 SEQ_PUT_HEX_FIELD_RET(s, field->arg3);
982 return TRACE_TYPE_HANDLED;
985 static enum print_line_t trace_special_bin(struct trace_iterator *iter,
986 int flags)
988 struct special_entry *field;
989 struct trace_seq *s = &iter->seq;
991 trace_assign_type(field, iter->ent);
993 SEQ_PUT_FIELD_RET(s, field->arg1);
994 SEQ_PUT_FIELD_RET(s, field->arg2);
995 SEQ_PUT_FIELD_RET(s, field->arg3);
997 return TRACE_TYPE_HANDLED;
1000 static struct trace_event trace_special_event = {
1001 .type = TRACE_SPECIAL,
1002 .trace = trace_special_print,
1003 .raw = trace_special_print,
1004 .hex = trace_special_hex,
1005 .binary = trace_special_bin,
1008 /* TRACE_STACK */
1010 static enum print_line_t trace_stack_print(struct trace_iterator *iter,
1011 int flags)
1013 struct stack_entry *field;
1014 struct trace_seq *s = &iter->seq;
1015 int i;
1017 trace_assign_type(field, iter->ent);
1019 if (!trace_seq_puts(s, "<stack trace>\n"))
1020 goto partial;
1021 for (i = 0; i < FTRACE_STACK_ENTRIES; i++) {
1022 if (!field->caller[i] || (field->caller[i] == ULONG_MAX))
1023 break;
1024 if (!trace_seq_puts(s, " => "))
1025 goto partial;
1027 if (!seq_print_ip_sym(s, field->caller[i], flags))
1028 goto partial;
1029 if (!trace_seq_puts(s, "\n"))
1030 goto partial;
1033 return TRACE_TYPE_HANDLED;
1035 partial:
1036 return TRACE_TYPE_PARTIAL_LINE;
1039 static struct trace_event trace_stack_event = {
1040 .type = TRACE_STACK,
1041 .trace = trace_stack_print,
1042 .raw = trace_special_print,
1043 .hex = trace_special_hex,
1044 .binary = trace_special_bin,
1047 /* TRACE_USER_STACK */
1048 static enum print_line_t trace_user_stack_print(struct trace_iterator *iter,
1049 int flags)
1051 struct userstack_entry *field;
1052 struct trace_seq *s = &iter->seq;
1054 trace_assign_type(field, iter->ent);
1056 if (!trace_seq_puts(s, "<user stack trace>\n"))
1057 goto partial;
1059 if (!seq_print_userip_objs(field, s, flags))
1060 goto partial;
1062 return TRACE_TYPE_HANDLED;
1064 partial:
1065 return TRACE_TYPE_PARTIAL_LINE;
1068 static struct trace_event trace_user_stack_event = {
1069 .type = TRACE_USER_STACK,
1070 .trace = trace_user_stack_print,
1071 .raw = trace_special_print,
1072 .hex = trace_special_hex,
1073 .binary = trace_special_bin,
1076 /* TRACE_BPRINT */
1077 static enum print_line_t
1078 trace_bprint_print(struct trace_iterator *iter, int flags)
1080 struct trace_entry *entry = iter->ent;
1081 struct trace_seq *s = &iter->seq;
1082 struct bprint_entry *field;
1084 trace_assign_type(field, entry);
1086 if (!seq_print_ip_sym(s, field->ip, flags))
1087 goto partial;
1089 if (!trace_seq_puts(s, ": "))
1090 goto partial;
1092 if (!trace_seq_bprintf(s, field->fmt, field->buf))
1093 goto partial;
1095 return TRACE_TYPE_HANDLED;
1097 partial:
1098 return TRACE_TYPE_PARTIAL_LINE;
1102 static enum print_line_t
1103 trace_bprint_raw(struct trace_iterator *iter, int flags)
1105 struct bprint_entry *field;
1106 struct trace_seq *s = &iter->seq;
1108 trace_assign_type(field, iter->ent);
1110 if (!trace_seq_printf(s, ": %lx : ", field->ip))
1111 goto partial;
1113 if (!trace_seq_bprintf(s, field->fmt, field->buf))
1114 goto partial;
1116 return TRACE_TYPE_HANDLED;
1118 partial:
1119 return TRACE_TYPE_PARTIAL_LINE;
1123 static struct trace_event trace_bprint_event = {
1124 .type = TRACE_BPRINT,
1125 .trace = trace_bprint_print,
1126 .raw = trace_bprint_raw,
1129 /* TRACE_PRINT */
1130 static enum print_line_t trace_print_print(struct trace_iterator *iter,
1131 int flags)
1133 struct print_entry *field;
1134 struct trace_seq *s = &iter->seq;
1136 trace_assign_type(field, iter->ent);
1138 if (!seq_print_ip_sym(s, field->ip, flags))
1139 goto partial;
1141 if (!trace_seq_printf(s, ": %s", field->buf))
1142 goto partial;
1144 return TRACE_TYPE_HANDLED;
1146 partial:
1147 return TRACE_TYPE_PARTIAL_LINE;
1150 static enum print_line_t trace_print_raw(struct trace_iterator *iter, int flags)
1152 struct print_entry *field;
1154 trace_assign_type(field, iter->ent);
1156 if (!trace_seq_printf(&iter->seq, "# %lx %s", field->ip, field->buf))
1157 goto partial;
1159 return TRACE_TYPE_HANDLED;
1161 partial:
1162 return TRACE_TYPE_PARTIAL_LINE;
1165 static struct trace_event trace_print_event = {
1166 .type = TRACE_PRINT,
1167 .trace = trace_print_print,
1168 .raw = trace_print_raw,
1172 static struct trace_event *events[] __initdata = {
1173 &trace_fn_event,
1174 &trace_ctx_event,
1175 &trace_wake_event,
1176 &trace_special_event,
1177 &trace_stack_event,
1178 &trace_user_stack_event,
1179 &trace_bprint_event,
1180 &trace_print_event,
1181 NULL
1184 __init static int init_events(void)
1186 struct trace_event *event;
1187 int i, ret;
1189 for (i = 0; events[i]; i++) {
1190 event = events[i];
1192 ret = register_ftrace_event(event);
1193 if (!ret) {
1194 printk(KERN_WARNING "event %d failed to register\n",
1195 event->type);
1196 WARN_ON_ONCE(1);
1200 return 0;
1202 device_initcall(init_events);