2 * Copyright (C) 2009, Steven Rostedt <srostedt@redhat.com>
4 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 2 of the License (not later!)
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
21 * The parts for function graph printing was taken and modified from the
22 * Linux Kernel that were written by Frederic Weisbecker.
34 #include "trace-event.h"
36 int header_page_ts_offset
;
37 int header_page_ts_size
;
38 int header_page_size_offset
;
39 int header_page_size_size
;
40 int header_page_data_offset
;
41 int header_page_data_size
;
45 static char *input_buf
;
46 static unsigned long long input_buf_ptr
;
47 static unsigned long long input_buf_siz
;
51 static int is_flag_field
;
52 static int is_symbolic_field
;
54 static struct format_field
*
55 find_any_field(struct event
*event
, const char *name
);
57 static void init_input_buf(char *buf
, unsigned long long size
)
69 static struct cmdline
*cmdlines
;
70 static int cmdline_count
;
72 static int cmdline_cmp(const void *a
, const void *b
)
74 const struct cmdline
*ca
= a
;
75 const struct cmdline
*cb
= b
;
77 if (ca
->pid
< cb
->pid
)
79 if (ca
->pid
> cb
->pid
)
85 void parse_cmdlines(char *file
, int size __unused
)
88 struct cmdline_list
*next
;
91 } *list
= NULL
, *item
;
96 line
= strtok_r(file
, "\n", &next
);
98 item
= malloc_or_die(sizeof(*item
));
99 sscanf(line
, "%d %as", &item
->pid
,
100 (float *)(void *)&item
->comm
); /* workaround gcc warning */
103 line
= strtok_r(NULL
, "\n", &next
);
107 cmdlines
= malloc_or_die(sizeof(*cmdlines
) * cmdline_count
);
111 cmdlines
[i
].pid
= list
->pid
;
112 cmdlines
[i
].comm
= list
->comm
;
119 qsort(cmdlines
, cmdline_count
, sizeof(*cmdlines
), cmdline_cmp
);
122 static struct func_map
{
123 unsigned long long addr
;
127 static unsigned int func_count
;
129 static int func_cmp(const void *a
, const void *b
)
131 const struct func_map
*fa
= a
;
132 const struct func_map
*fb
= b
;
134 if (fa
->addr
< fb
->addr
)
136 if (fa
->addr
> fb
->addr
)
142 void parse_proc_kallsyms(char *file
, unsigned int size __unused
)
145 struct func_list
*next
;
146 unsigned long long addr
;
149 } *list
= NULL
, *item
;
157 line
= strtok_r(file
, "\n", &next
);
159 item
= malloc_or_die(sizeof(*item
));
161 ret
= sscanf(line
, "%as %c %as\t[%as",
162 (float *)(void *)&addr_str
, /* workaround gcc warning */
164 (float *)(void *)&item
->func
,
165 (float *)(void *)&item
->mod
);
166 item
->addr
= strtoull(addr_str
, NULL
, 16);
169 /* truncate the extra ']' */
171 item
->mod
[strlen(item
->mod
) - 1] = 0;
176 line
= strtok_r(NULL
, "\n", &next
);
180 func_list
= malloc_or_die(sizeof(*func_list
) * (func_count
+ 1));
184 func_list
[i
].func
= list
->func
;
185 func_list
[i
].addr
= list
->addr
;
186 func_list
[i
].mod
= list
->mod
;
193 qsort(func_list
, func_count
, sizeof(*func_list
), func_cmp
);
196 * Add a special record at the end.
198 func_list
[func_count
].func
= NULL
;
199 func_list
[func_count
].addr
= 0;
200 func_list
[func_count
].mod
= NULL
;
204 * We are searching for a record in between, not an exact
207 static int func_bcmp(const void *a
, const void *b
)
209 const struct func_map
*fa
= a
;
210 const struct func_map
*fb
= b
;
212 if ((fa
->addr
== fb
->addr
) ||
214 (fa
->addr
> fb
->addr
&&
215 fa
->addr
< (fb
+1)->addr
))
218 if (fa
->addr
< fb
->addr
)
224 static struct func_map
*find_func(unsigned long long addr
)
226 struct func_map
*func
;
231 func
= bsearch(&key
, func_list
, func_count
, sizeof(*func_list
),
237 void print_funcs(void)
241 for (i
= 0; i
< (int)func_count
; i
++) {
245 if (func_list
[i
].mod
)
246 printf(" [%s]\n", func_list
[i
].mod
);
252 static struct printk_map
{
253 unsigned long long addr
;
256 static unsigned int printk_count
;
258 static int printk_cmp(const void *a
, const void *b
)
260 const struct func_map
*fa
= a
;
261 const struct func_map
*fb
= b
;
263 if (fa
->addr
< fb
->addr
)
265 if (fa
->addr
> fb
->addr
)
271 static struct printk_map
*find_printk(unsigned long long addr
)
273 struct printk_map
*printk
;
274 struct printk_map key
;
278 printk
= bsearch(&key
, printk_list
, printk_count
, sizeof(*printk_list
),
284 void parse_ftrace_printk(char *file
, unsigned int size __unused
)
287 struct printk_list
*next
;
288 unsigned long long addr
;
290 } *list
= NULL
, *item
;
296 line
= strtok_r(file
, "\n", &next
);
298 addr_str
= strsep(&line
, ":");
300 warning("error parsing print strings");
303 item
= malloc_or_die(sizeof(*item
));
304 item
->addr
= strtoull(addr_str
, NULL
, 16);
305 /* fmt still has a space, skip it */
306 item
->printk
= strdup(line
+1);
309 line
= strtok_r(NULL
, "\n", &next
);
313 printk_list
= malloc_or_die(sizeof(*printk_list
) * printk_count
+ 1);
317 printk_list
[i
].printk
= list
->printk
;
318 printk_list
[i
].addr
= list
->addr
;
325 qsort(printk_list
, printk_count
, sizeof(*printk_list
), printk_cmp
);
328 void print_printk(void)
332 for (i
= 0; i
< (int)printk_count
; i
++) {
333 printf("%016llx %s\n",
335 printk_list
[i
].printk
);
339 static struct event
*alloc_event(void)
343 event
= malloc_or_die(sizeof(*event
));
344 memset(event
, 0, sizeof(*event
));
361 static struct event
*event_list
;
363 static void add_event(struct event
*event
)
365 event
->next
= event_list
;
369 static int event_item_type(enum event_type type
)
372 case EVENT_ITEM
... EVENT_SQUOTE
:
374 case EVENT_ERROR
... EVENT_DELIM
:
380 static void free_arg(struct print_arg
*arg
)
388 free(arg
->atom
.atom
);
391 case PRINT_FIELD
... PRINT_OP
:
400 static enum event_type
get_type(int ch
)
403 return EVENT_NEWLINE
;
406 if (isalnum(ch
) || ch
== '_')
414 if (ch
== '(' || ch
== ')' || ch
== ',')
420 static int __read_char(void)
422 if (input_buf_ptr
>= input_buf_siz
)
425 return input_buf
[input_buf_ptr
++];
428 static int __peek_char(void)
430 if (input_buf_ptr
>= input_buf_siz
)
433 return input_buf
[input_buf_ptr
];
436 static enum event_type
__read_token(char **tok
)
439 int ch
, last_ch
, quote_ch
, next_ch
;
442 enum event_type type
;
452 if (type
== EVENT_NONE
)
460 *tok
= malloc_or_die(2);
468 next_ch
= __peek_char();
469 if (next_ch
== '>') {
470 buf
[i
++] = __read_char();
483 buf
[i
++] = __read_char();
495 default: /* what should we do instead? */
505 buf
[i
++] = __read_char();
510 /* don't keep quotes */
515 if (i
== (BUFSIZ
- 1)) {
518 *tok
= realloc(*tok
, tok_size
+ BUFSIZ
);
533 /* the '\' '\' will cancel itself */
534 if (ch
== '\\' && last_ch
== '\\')
536 } while (ch
!= quote_ch
|| last_ch
== '\\');
537 /* remove the last quote */
541 case EVENT_ERROR
... EVENT_SPACE
:
547 while (get_type(__peek_char()) == type
) {
548 if (i
== (BUFSIZ
- 1)) {
551 *tok
= realloc(*tok
, tok_size
+ BUFSIZ
);
570 *tok
= realloc(*tok
, tok_size
+ i
);
582 static void free_token(char *tok
)
588 static enum event_type
read_token(char **tok
)
590 enum event_type type
;
593 type
= __read_token(tok
);
594 if (type
!= EVENT_SPACE
)
605 static enum event_type
read_token_item(char **tok
)
607 enum event_type type
;
610 type
= __read_token(tok
);
611 if (type
!= EVENT_SPACE
&& type
!= EVENT_NEWLINE
)
621 static int test_type(enum event_type type
, enum event_type expect
)
623 if (type
!= expect
) {
624 warning("Error: expected type %d but read %d",
631 static int test_type_token(enum event_type type
, char *token
,
632 enum event_type expect
, const char *expect_tok
)
634 if (type
!= expect
) {
635 warning("Error: expected type %d but read %d",
640 if (strcmp(token
, expect_tok
) != 0) {
641 warning("Error: expected '%s' but read '%s'",
648 static int __read_expect_type(enum event_type expect
, char **tok
, int newline_ok
)
650 enum event_type type
;
653 type
= read_token(tok
);
655 type
= read_token_item(tok
);
656 return test_type(type
, expect
);
659 static int read_expect_type(enum event_type expect
, char **tok
)
661 return __read_expect_type(expect
, tok
, 1);
664 static int __read_expected(enum event_type expect
, const char *str
, int newline_ok
)
666 enum event_type type
;
671 type
= read_token(&token
);
673 type
= read_token_item(&token
);
675 ret
= test_type_token(type
, token
, expect
, str
);
682 static int read_expected(enum event_type expect
, const char *str
)
684 return __read_expected(expect
, str
, 1);
687 static int read_expected_item(enum event_type expect
, const char *str
)
689 return __read_expected(expect
, str
, 0);
692 static char *event_read_name(void)
696 if (read_expected(EVENT_ITEM
, "name") < 0)
699 if (read_expected(EVENT_OP
, ":") < 0)
702 if (read_expect_type(EVENT_ITEM
, &token
) < 0)
712 static int event_read_id(void)
717 if (read_expected_item(EVENT_ITEM
, "ID") < 0)
720 if (read_expected(EVENT_OP
, ":") < 0)
723 if (read_expect_type(EVENT_ITEM
, &token
) < 0)
726 id
= strtoul(token
, NULL
, 0);
735 static int field_is_string(struct format_field
*field
)
737 if ((field
->flags
& FIELD_IS_ARRAY
) &&
738 (!strstr(field
->type
, "char") || !strstr(field
->type
, "u8") ||
739 !strstr(field
->type
, "s8")))
745 static int field_is_dynamic(struct format_field
*field
)
747 if (!strcmp(field
->type
, "__data_loc"))
753 static int event_read_fields(struct event
*event
, struct format_field
**fields
)
755 struct format_field
*field
= NULL
;
756 enum event_type type
;
762 type
= read_token(&token
);
763 if (type
== EVENT_NEWLINE
) {
770 if (test_type_token(type
, token
, EVENT_ITEM
, "field"))
774 type
= read_token(&token
);
776 * The ftrace fields may still use the "special" name.
779 if (event
->flags
& EVENT_FL_ISFTRACE
&&
780 type
== EVENT_ITEM
&& strcmp(token
, "special") == 0) {
782 type
= read_token(&token
);
785 if (test_type_token(type
, token
, EVENT_OP
, ":") < 0)
788 if (read_expect_type(EVENT_ITEM
, &token
) < 0)
793 field
= malloc_or_die(sizeof(*field
));
794 memset(field
, 0, sizeof(*field
));
796 /* read the rest of the type */
798 type
= read_token(&token
);
799 if (type
== EVENT_ITEM
||
800 (type
== EVENT_OP
&& strcmp(token
, "*") == 0) ||
802 * Some of the ftrace fields are broken and have
803 * an illegal "." in them.
805 (event
->flags
& EVENT_FL_ISFTRACE
&&
806 type
== EVENT_OP
&& strcmp(token
, ".") == 0)) {
808 if (strcmp(token
, "*") == 0)
809 field
->flags
|= FIELD_IS_POINTER
;
812 field
->type
= realloc(field
->type
,
813 strlen(field
->type
) +
814 strlen(last_token
) + 2);
815 strcat(field
->type
, " ");
816 strcat(field
->type
, last_token
);
818 field
->type
= last_token
;
827 die("no type found");
830 field
->name
= last_token
;
832 if (test_type(type
, EVENT_OP
))
835 if (strcmp(token
, "[") == 0) {
836 enum event_type last_type
= type
;
837 char *brackets
= token
;
840 field
->flags
|= FIELD_IS_ARRAY
;
842 type
= read_token(&token
);
843 while (strcmp(token
, "]") != 0) {
844 if (last_type
== EVENT_ITEM
&&
851 brackets
= realloc(brackets
,
853 strlen(token
) + len
);
855 strcat(brackets
, " ");
856 strcat(brackets
, token
);
858 type
= read_token(&token
);
859 if (type
== EVENT_NONE
) {
860 die("failed to find token");
867 brackets
= realloc(brackets
, strlen(brackets
) + 2);
868 strcat(brackets
, "]");
870 /* add brackets to type */
872 type
= read_token(&token
);
874 * If the next token is not an OP, then it is of
875 * the format: type [] item;
877 if (type
== EVENT_ITEM
) {
878 field
->type
= realloc(field
->type
,
879 strlen(field
->type
) +
880 strlen(field
->name
) +
881 strlen(brackets
) + 2);
882 strcat(field
->type
, " ");
883 strcat(field
->type
, field
->name
);
884 free_token(field
->name
);
885 strcat(field
->type
, brackets
);
887 type
= read_token(&token
);
889 field
->type
= realloc(field
->type
,
890 strlen(field
->type
) +
891 strlen(brackets
) + 1);
892 strcat(field
->type
, brackets
);
897 if (field_is_string(field
)) {
898 field
->flags
|= FIELD_IS_STRING
;
899 if (field_is_dynamic(field
))
900 field
->flags
|= FIELD_IS_DYNAMIC
;
903 if (test_type_token(type
, token
, EVENT_OP
, ";"))
907 if (read_expected(EVENT_ITEM
, "offset") < 0)
910 if (read_expected(EVENT_OP
, ":") < 0)
913 if (read_expect_type(EVENT_ITEM
, &token
))
915 field
->offset
= strtoul(token
, NULL
, 0);
918 if (read_expected(EVENT_OP
, ";") < 0)
921 if (read_expected(EVENT_ITEM
, "size") < 0)
924 if (read_expected(EVENT_OP
, ":") < 0)
927 if (read_expect_type(EVENT_ITEM
, &token
))
929 field
->size
= strtoul(token
, NULL
, 0);
932 if (read_expected(EVENT_OP
, ";") < 0)
935 type
= read_token(&token
);
936 if (type
!= EVENT_NEWLINE
) {
937 /* newer versions of the kernel have a "signed" type */
938 if (test_type_token(type
, token
, EVENT_ITEM
, "signed"))
943 if (read_expected(EVENT_OP
, ":") < 0)
946 if (read_expect_type(EVENT_ITEM
, &token
))
949 if (strtoul(token
, NULL
, 0))
950 field
->flags
|= FIELD_IS_SIGNED
;
953 if (read_expected(EVENT_OP
, ";") < 0)
956 if (read_expect_type(EVENT_NEWLINE
, &token
))
963 fields
= &field
->next
;
977 static int event_read_format(struct event
*event
)
982 if (read_expected_item(EVENT_ITEM
, "format") < 0)
985 if (read_expected(EVENT_OP
, ":") < 0)
988 if (read_expect_type(EVENT_NEWLINE
, &token
))
992 ret
= event_read_fields(event
, &event
->format
.common_fields
);
995 event
->format
.nr_common
= ret
;
997 ret
= event_read_fields(event
, &event
->format
.fields
);
1000 event
->format
.nr_fields
= ret
;
1010 process_arg_token(struct event
*event
, struct print_arg
*arg
,
1011 char **tok
, enum event_type type
);
1013 static enum event_type
1014 process_arg(struct event
*event
, struct print_arg
*arg
, char **tok
)
1016 enum event_type type
;
1019 type
= read_token(&token
);
1022 return process_arg_token(event
, arg
, tok
, type
);
1025 static enum event_type
1026 process_cond(struct event
*event
, struct print_arg
*top
, char **tok
)
1028 struct print_arg
*arg
, *left
, *right
;
1029 enum event_type type
;
1032 arg
= malloc_or_die(sizeof(*arg
));
1033 memset(arg
, 0, sizeof(*arg
));
1035 left
= malloc_or_die(sizeof(*left
));
1037 right
= malloc_or_die(sizeof(*right
));
1039 arg
->type
= PRINT_OP
;
1040 arg
->op
.left
= left
;
1041 arg
->op
.right
= right
;
1044 type
= process_arg(event
, left
, &token
);
1045 if (test_type_token(type
, token
, EVENT_OP
, ":"))
1050 type
= process_arg(event
, right
, &token
);
1052 top
->op
.right
= arg
;
1065 static enum event_type
1066 process_array(struct event
*event
, struct print_arg
*top
, char **tok
)
1068 struct print_arg
*arg
;
1069 enum event_type type
;
1072 arg
= malloc_or_die(sizeof(*arg
));
1073 memset(arg
, 0, sizeof(*arg
));
1076 type
= process_arg(event
, arg
, &token
);
1077 if (test_type_token(type
, token
, EVENT_OP
, "]"))
1080 top
->op
.right
= arg
;
1083 type
= read_token_item(&token
);
1094 static int get_op_prio(char *op
)
1105 /* '>>' and '<<' are 8 */
1109 /* '==' and '!=' are 10 */
1119 die("unknown op '%c'", op
[0]);
1123 if (strcmp(op
, "++") == 0 ||
1124 strcmp(op
, "--") == 0) {
1126 } else if (strcmp(op
, ">>") == 0 ||
1127 strcmp(op
, "<<") == 0) {
1129 } else if (strcmp(op
, ">=") == 0 ||
1130 strcmp(op
, "<=") == 0) {
1132 } else if (strcmp(op
, "==") == 0 ||
1133 strcmp(op
, "!=") == 0) {
1135 } else if (strcmp(op
, "&&") == 0) {
1137 } else if (strcmp(op
, "||") == 0) {
1140 die("unknown op '%s'", op
);
1146 static void set_op_prio(struct print_arg
*arg
)
1149 /* single ops are the greatest */
1150 if (!arg
->op
.left
|| arg
->op
.left
->type
== PRINT_NULL
) {
1155 arg
->op
.prio
= get_op_prio(arg
->op
.op
);
1158 static enum event_type
1159 process_op(struct event
*event
, struct print_arg
*arg
, char **tok
)
1161 struct print_arg
*left
, *right
= NULL
;
1162 enum event_type type
;
1165 /* the op is passed in via tok */
1168 if (arg
->type
== PRINT_OP
&& !arg
->op
.left
) {
1169 /* handle single op */
1171 die("bad op token %s", token
);
1180 die("bad op token %s", token
);
1184 /* make an empty left */
1185 left
= malloc_or_die(sizeof(*left
));
1186 left
->type
= PRINT_NULL
;
1187 arg
->op
.left
= left
;
1189 right
= malloc_or_die(sizeof(*right
));
1190 arg
->op
.right
= right
;
1192 type
= process_arg(event
, right
, tok
);
1194 } else if (strcmp(token
, "?") == 0) {
1196 left
= malloc_or_die(sizeof(*left
));
1197 /* copy the top arg to the left */
1200 arg
->type
= PRINT_OP
;
1202 arg
->op
.left
= left
;
1205 type
= process_cond(event
, arg
, tok
);
1207 } else if (strcmp(token
, ">>") == 0 ||
1208 strcmp(token
, "<<") == 0 ||
1209 strcmp(token
, "&") == 0 ||
1210 strcmp(token
, "|") == 0 ||
1211 strcmp(token
, "&&") == 0 ||
1212 strcmp(token
, "||") == 0 ||
1213 strcmp(token
, "-") == 0 ||
1214 strcmp(token
, "+") == 0 ||
1215 strcmp(token
, "*") == 0 ||
1216 strcmp(token
, "^") == 0 ||
1217 strcmp(token
, "/") == 0 ||
1218 strcmp(token
, "<") == 0 ||
1219 strcmp(token
, ">") == 0 ||
1220 strcmp(token
, "==") == 0 ||
1221 strcmp(token
, "!=") == 0) {
1223 left
= malloc_or_die(sizeof(*left
));
1225 /* copy the top arg to the left */
1228 arg
->type
= PRINT_OP
;
1230 arg
->op
.left
= left
;
1234 right
= malloc_or_die(sizeof(*right
));
1236 type
= read_token_item(&token
);
1239 /* could just be a type pointer */
1240 if ((strcmp(arg
->op
.op
, "*") == 0) &&
1241 type
== EVENT_DELIM
&& (strcmp(token
, ")") == 0)) {
1242 if (left
->type
!= PRINT_ATOM
)
1243 die("bad pointer type");
1244 left
->atom
.atom
= realloc(left
->atom
.atom
,
1245 sizeof(left
->atom
.atom
) + 3);
1246 strcat(left
->atom
.atom
, " *");
1253 type
= process_arg_token(event
, right
, tok
, type
);
1255 arg
->op
.right
= right
;
1257 } else if (strcmp(token
, "[") == 0) {
1259 left
= malloc_or_die(sizeof(*left
));
1262 arg
->type
= PRINT_OP
;
1264 arg
->op
.left
= left
;
1267 type
= process_array(event
, arg
, tok
);
1270 warning("unknown op '%s'", token
);
1271 event
->flags
|= EVENT_FL_FAILED
;
1272 /* the arg is now the left side */
1276 if (type
== EVENT_OP
) {
1279 /* higher prios need to be closer to the root */
1280 prio
= get_op_prio(*tok
);
1282 if (prio
> arg
->op
.prio
)
1283 return process_op(event
, arg
, tok
);
1285 return process_op(event
, right
, tok
);
1291 static enum event_type
1292 process_entry(struct event
*event __unused
, struct print_arg
*arg
,
1295 enum event_type type
;
1299 if (read_expected(EVENT_OP
, "->") < 0)
1302 if (read_expect_type(EVENT_ITEM
, &token
) < 0)
1306 arg
->type
= PRINT_FIELD
;
1307 arg
->field
.name
= field
;
1309 if (is_flag_field
) {
1310 arg
->field
.field
= find_any_field(event
, arg
->field
.name
);
1311 arg
->field
.field
->flags
|= FIELD_IS_FLAG
;
1313 } else if (is_symbolic_field
) {
1314 arg
->field
.field
= find_any_field(event
, arg
->field
.name
);
1315 arg
->field
.field
->flags
|= FIELD_IS_SYMBOLIC
;
1316 is_symbolic_field
= 0;
1319 type
= read_token(&token
);
1329 static char *arg_eval (struct print_arg
*arg
);
1331 static long long arg_num_eval(struct print_arg
*arg
)
1333 long long left
, right
;
1336 switch (arg
->type
) {
1338 val
= strtoll(arg
->atom
.atom
, NULL
, 0);
1341 val
= arg_num_eval(arg
->typecast
.item
);
1344 switch (arg
->op
.op
[0]) {
1346 left
= arg_num_eval(arg
->op
.left
);
1347 right
= arg_num_eval(arg
->op
.right
);
1349 val
= left
|| right
;
1354 left
= arg_num_eval(arg
->op
.left
);
1355 right
= arg_num_eval(arg
->op
.right
);
1357 val
= left
&& right
;
1362 left
= arg_num_eval(arg
->op
.left
);
1363 right
= arg_num_eval(arg
->op
.right
);
1364 switch (arg
->op
.op
[1]) {
1369 val
= left
<< right
;
1372 val
= left
<= right
;
1375 die("unknown op '%s'", arg
->op
.op
);
1379 left
= arg_num_eval(arg
->op
.left
);
1380 right
= arg_num_eval(arg
->op
.right
);
1381 switch (arg
->op
.op
[1]) {
1386 val
= left
>> right
;
1389 val
= left
>= right
;
1392 die("unknown op '%s'", arg
->op
.op
);
1396 left
= arg_num_eval(arg
->op
.left
);
1397 right
= arg_num_eval(arg
->op
.right
);
1399 if (arg
->op
.op
[1] != '=')
1400 die("unknown op '%s'", arg
->op
.op
);
1402 val
= left
== right
;
1405 left
= arg_num_eval(arg
->op
.left
);
1406 right
= arg_num_eval(arg
->op
.right
);
1408 switch (arg
->op
.op
[1]) {
1410 val
= left
!= right
;
1413 die("unknown op '%s'", arg
->op
.op
);
1417 die("unknown op '%s'", arg
->op
.op
);
1422 case PRINT_FIELD
... PRINT_SYMBOL
:
1425 die("invalid eval type %d", arg
->type
);
1431 static char *arg_eval (struct print_arg
*arg
)
1434 static char buf
[20];
1436 switch (arg
->type
) {
1438 return arg
->atom
.atom
;
1440 return arg_eval(arg
->typecast
.item
);
1442 val
= arg_num_eval(arg
);
1443 sprintf(buf
, "%lld", val
);
1447 case PRINT_FIELD
... PRINT_SYMBOL
:
1450 die("invalid eval type %d", arg
->type
);
1457 static enum event_type
1458 process_fields(struct event
*event
, struct print_flag_sym
**list
, char **tok
)
1460 enum event_type type
;
1461 struct print_arg
*arg
= NULL
;
1462 struct print_flag_sym
*field
;
1468 type
= read_token_item(&token
);
1469 if (test_type_token(type
, token
, EVENT_OP
, "{"))
1472 arg
= malloc_or_die(sizeof(*arg
));
1475 type
= process_arg(event
, arg
, &token
);
1476 if (test_type_token(type
, token
, EVENT_DELIM
, ","))
1479 field
= malloc_or_die(sizeof(*field
));
1480 memset(field
, 0, sizeof(*field
));
1482 value
= arg_eval(arg
);
1483 field
->value
= strdup(value
);
1486 type
= process_arg(event
, arg
, &token
);
1487 if (test_type_token(type
, token
, EVENT_OP
, "}"))
1490 value
= arg_eval(arg
);
1491 field
->str
= strdup(value
);
1496 list
= &field
->next
;
1499 type
= read_token_item(&token
);
1500 } while (type
== EVENT_DELIM
&& strcmp(token
, ",") == 0);
1512 static enum event_type
1513 process_flags(struct event
*event
, struct print_arg
*arg
, char **tok
)
1515 struct print_arg
*field
;
1516 enum event_type type
;
1519 memset(arg
, 0, sizeof(*arg
));
1520 arg
->type
= PRINT_FLAGS
;
1522 if (read_expected_item(EVENT_DELIM
, "(") < 0)
1525 field
= malloc_or_die(sizeof(*field
));
1527 type
= process_arg(event
, field
, &token
);
1528 if (test_type_token(type
, token
, EVENT_DELIM
, ","))
1531 arg
->flags
.field
= field
;
1533 type
= read_token_item(&token
);
1534 if (event_item_type(type
)) {
1535 arg
->flags
.delim
= token
;
1536 type
= read_token_item(&token
);
1539 if (test_type_token(type
, token
, EVENT_DELIM
, ","))
1542 type
= process_fields(event
, &arg
->flags
.flags
, &token
);
1543 if (test_type_token(type
, token
, EVENT_DELIM
, ")"))
1547 type
= read_token_item(tok
);
1555 static enum event_type
1556 process_symbols(struct event
*event
, struct print_arg
*arg
, char **tok
)
1558 struct print_arg
*field
;
1559 enum event_type type
;
1562 memset(arg
, 0, sizeof(*arg
));
1563 arg
->type
= PRINT_SYMBOL
;
1565 if (read_expected_item(EVENT_DELIM
, "(") < 0)
1568 field
= malloc_or_die(sizeof(*field
));
1570 type
= process_arg(event
, field
, &token
);
1571 if (test_type_token(type
, token
, EVENT_DELIM
, ","))
1574 arg
->symbol
.field
= field
;
1576 type
= process_fields(event
, &arg
->symbol
.symbols
, &token
);
1577 if (test_type_token(type
, token
, EVENT_DELIM
, ")"))
1581 type
= read_token_item(tok
);
1589 static enum event_type
1590 process_paren(struct event
*event
, struct print_arg
*arg
, char **tok
)
1592 struct print_arg
*item_arg
;
1593 enum event_type type
;
1596 type
= process_arg(event
, arg
, &token
);
1598 if (type
== EVENT_ERROR
)
1601 if (type
== EVENT_OP
)
1602 type
= process_op(event
, arg
, &token
);
1604 if (type
== EVENT_ERROR
)
1607 if (test_type_token(type
, token
, EVENT_DELIM
, ")")) {
1613 type
= read_token_item(&token
);
1616 * If the next token is an item or another open paren, then
1617 * this was a typecast.
1619 if (event_item_type(type
) ||
1620 (type
== EVENT_DELIM
&& strcmp(token
, "(") == 0)) {
1622 /* make this a typecast and contine */
1624 /* prevous must be an atom */
1625 if (arg
->type
!= PRINT_ATOM
)
1626 die("previous needed to be PRINT_ATOM");
1628 item_arg
= malloc_or_die(sizeof(*item_arg
));
1630 arg
->type
= PRINT_TYPE
;
1631 arg
->typecast
.type
= arg
->atom
.atom
;
1632 arg
->typecast
.item
= item_arg
;
1633 type
= process_arg_token(event
, item_arg
, &token
, type
);
1642 static enum event_type
1643 process_str(struct event
*event __unused
, struct print_arg
*arg
, char **tok
)
1645 enum event_type type
;
1648 if (read_expected(EVENT_DELIM
, "(") < 0)
1651 if (read_expect_type(EVENT_ITEM
, &token
) < 0)
1654 arg
->type
= PRINT_STRING
;
1655 arg
->string
.string
= token
;
1656 arg
->string
.offset
= -1;
1658 if (read_expected(EVENT_DELIM
, ")") < 0)
1661 type
= read_token(&token
);
1671 process_arg_token(struct event
*event
, struct print_arg
*arg
,
1672 char **tok
, enum event_type type
)
1681 if (strcmp(token
, "REC") == 0) {
1683 type
= process_entry(event
, arg
, &token
);
1684 } else if (strcmp(token
, "__print_flags") == 0) {
1687 type
= process_flags(event
, arg
, &token
);
1688 } else if (strcmp(token
, "__print_symbolic") == 0) {
1690 is_symbolic_field
= 1;
1691 type
= process_symbols(event
, arg
, &token
);
1692 } else if (strcmp(token
, "__get_str") == 0) {
1694 type
= process_str(event
, arg
, &token
);
1697 /* test the next token */
1698 type
= read_token_item(&token
);
1700 /* atoms can be more than one token long */
1701 while (type
== EVENT_ITEM
) {
1702 atom
= realloc(atom
, strlen(atom
) + strlen(token
) + 2);
1704 strcat(atom
, token
);
1706 type
= read_token_item(&token
);
1709 /* todo, test for function */
1711 arg
->type
= PRINT_ATOM
;
1712 arg
->atom
.atom
= atom
;
1717 arg
->type
= PRINT_ATOM
;
1718 arg
->atom
.atom
= token
;
1719 type
= read_token_item(&token
);
1722 if (strcmp(token
, "(") == 0) {
1724 type
= process_paren(event
, arg
, &token
);
1728 /* handle single ops */
1729 arg
->type
= PRINT_OP
;
1731 arg
->op
.left
= NULL
;
1732 type
= process_op(event
, arg
, &token
);
1736 case EVENT_ERROR
... EVENT_NEWLINE
:
1738 die("unexpected type %d", type
);
1745 static int event_read_print_args(struct event
*event
, struct print_arg
**list
)
1747 enum event_type type
= EVENT_ERROR
;
1748 struct print_arg
*arg
;
1753 if (type
== EVENT_NEWLINE
) {
1755 type
= read_token_item(&token
);
1759 arg
= malloc_or_die(sizeof(*arg
));
1760 memset(arg
, 0, sizeof(*arg
));
1762 type
= process_arg(event
, arg
, &token
);
1764 if (type
== EVENT_ERROR
) {
1772 if (type
== EVENT_OP
) {
1773 type
= process_op(event
, arg
, &token
);
1778 if (type
== EVENT_DELIM
&& strcmp(token
, ",") == 0) {
1785 } while (type
!= EVENT_NONE
);
1787 if (type
!= EVENT_NONE
)
1793 static int event_read_print(struct event
*event
)
1795 enum event_type type
;
1799 if (read_expected_item(EVENT_ITEM
, "print") < 0)
1802 if (read_expected(EVENT_ITEM
, "fmt") < 0)
1805 if (read_expected(EVENT_OP
, ":") < 0)
1808 if (read_expect_type(EVENT_DQUOTE
, &token
) < 0)
1812 event
->print_fmt
.format
= token
;
1813 event
->print_fmt
.args
= NULL
;
1815 /* ok to have no arg */
1816 type
= read_token_item(&token
);
1818 if (type
== EVENT_NONE
)
1821 /* Handle concatination of print lines */
1822 if (type
== EVENT_DQUOTE
) {
1825 cat
= malloc_or_die(strlen(event
->print_fmt
.format
) +
1827 strcpy(cat
, event
->print_fmt
.format
);
1830 free_token(event
->print_fmt
.format
);
1831 event
->print_fmt
.format
= NULL
;
1836 if (test_type_token(type
, token
, EVENT_DELIM
, ","))
1841 ret
= event_read_print_args(event
, &event
->print_fmt
.args
);
1852 static struct format_field
*
1853 find_common_field(struct event
*event
, const char *name
)
1855 struct format_field
*format
;
1857 for (format
= event
->format
.common_fields
;
1858 format
; format
= format
->next
) {
1859 if (strcmp(format
->name
, name
) == 0)
1866 static struct format_field
*
1867 find_field(struct event
*event
, const char *name
)
1869 struct format_field
*format
;
1871 for (format
= event
->format
.fields
;
1872 format
; format
= format
->next
) {
1873 if (strcmp(format
->name
, name
) == 0)
1880 static struct format_field
*
1881 find_any_field(struct event
*event
, const char *name
)
1883 struct format_field
*format
;
1885 format
= find_common_field(event
, name
);
1888 return find_field(event
, name
);
1891 unsigned long long read_size(void *ptr
, int size
)
1895 return *(unsigned char *)ptr
;
1897 return data2host2(ptr
);
1899 return data2host4(ptr
);
1901 return data2host8(ptr
);
1909 raw_field_value(struct event
*event
, const char *name
, void *data
)
1911 struct format_field
*field
;
1913 field
= find_any_field(event
, name
);
1917 return read_size(data
+ field
->offset
, field
->size
);
1920 void *raw_field_ptr(struct event
*event
, const char *name
, void *data
)
1922 struct format_field
*field
;
1924 field
= find_any_field(event
, name
);
1928 return data
+ field
->offset
;
1931 static int get_common_info(const char *type
, int *offset
, int *size
)
1933 struct event
*event
;
1934 struct format_field
*field
;
1937 * All events should have the same common elements.
1938 * Pick any event to find where the type is;
1941 die("no event_list!");
1944 field
= find_common_field(event
, type
);
1946 die("field '%s' not found", type
);
1948 *offset
= field
->offset
;
1949 *size
= field
->size
;
1954 static int __parse_common(void *data
, int *size
, int *offset
,
1960 ret
= get_common_info(name
, offset
, size
);
1964 return read_size(data
+ *offset
, *size
);
1967 int trace_parse_common_type(void *data
)
1969 static int type_offset
;
1970 static int type_size
;
1972 return __parse_common(data
, &type_size
, &type_offset
,
1976 int trace_parse_common_pid(void *data
)
1978 static int pid_offset
;
1979 static int pid_size
;
1981 return __parse_common(data
, &pid_size
, &pid_offset
,
1985 int parse_common_pc(void *data
)
1987 static int pc_offset
;
1990 return __parse_common(data
, &pc_size
, &pc_offset
,
1991 "common_preempt_count");
1994 int parse_common_flags(void *data
)
1996 static int flags_offset
;
1997 static int flags_size
;
1999 return __parse_common(data
, &flags_size
, &flags_offset
,
2003 int parse_common_lock_depth(void *data
)
2005 static int ld_offset
;
2009 ret
= __parse_common(data
, &ld_size
, &ld_offset
,
2010 "common_lock_depth");
2017 struct event
*trace_find_event(int id
)
2019 struct event
*event
;
2021 for (event
= event_list
; event
; event
= event
->next
) {
2022 if (event
->id
== id
)
2028 struct event
*trace_find_next_event(struct event
*event
)
2036 static unsigned long long eval_num_arg(void *data
, int size
,
2037 struct event
*event
, struct print_arg
*arg
)
2039 unsigned long long val
= 0;
2040 unsigned long long left
, right
;
2041 struct print_arg
*larg
;
2043 switch (arg
->type
) {
2048 return strtoull(arg
->atom
.atom
, NULL
, 0);
2050 if (!arg
->field
.field
) {
2051 arg
->field
.field
= find_any_field(event
, arg
->field
.name
);
2052 if (!arg
->field
.field
)
2053 die("field %s not found", arg
->field
.name
);
2055 /* must be a number */
2056 val
= read_size(data
+ arg
->field
.field
->offset
,
2057 arg
->field
.field
->size
);
2063 return eval_num_arg(data
, size
, event
, arg
->typecast
.item
);
2068 if (strcmp(arg
->op
.op
, "[") == 0) {
2070 * Arrays are special, since we don't want
2071 * to read the arg as is.
2073 if (arg
->op
.left
->type
!= PRINT_FIELD
)
2074 goto default_op
; /* oops, all bets off */
2075 larg
= arg
->op
.left
;
2076 if (!larg
->field
.field
) {
2078 find_any_field(event
, larg
->field
.name
);
2079 if (!larg
->field
.field
)
2080 die("field %s not found", larg
->field
.name
);
2082 right
= eval_num_arg(data
, size
, event
, arg
->op
.right
);
2083 val
= read_size(data
+ larg
->field
.field
->offset
+
2084 right
* long_size
, long_size
);
2088 left
= eval_num_arg(data
, size
, event
, arg
->op
.left
);
2089 right
= eval_num_arg(data
, size
, event
, arg
->op
.right
);
2090 switch (arg
->op
.op
[0]) {
2093 val
= left
|| right
;
2099 val
= left
&& right
;
2104 switch (arg
->op
.op
[1]) {
2109 val
= left
<< right
;
2112 val
= left
<= right
;
2115 die("unknown op '%s'", arg
->op
.op
);
2119 switch (arg
->op
.op
[1]) {
2124 val
= left
>> right
;
2127 val
= left
>= right
;
2130 die("unknown op '%s'", arg
->op
.op
);
2134 if (arg
->op
.op
[1] != '=')
2135 die("unknown op '%s'", arg
->op
.op
);
2136 val
= left
== right
;
2145 die("unknown op '%s'", arg
->op
.op
);
2148 default: /* not sure what to do there */
2156 unsigned long long value
;
2159 static const struct flag flags
[] = {
2160 { "HI_SOFTIRQ", 0 },
2161 { "TIMER_SOFTIRQ", 1 },
2162 { "NET_TX_SOFTIRQ", 2 },
2163 { "NET_RX_SOFTIRQ", 3 },
2164 { "BLOCK_SOFTIRQ", 4 },
2165 { "BLOCK_IOPOLL_SOFTIRQ", 5 },
2166 { "TASKLET_SOFTIRQ", 6 },
2167 { "SCHED_SOFTIRQ", 7 },
2168 { "HRTIMER_SOFTIRQ", 8 },
2169 { "RCU_SOFTIRQ", 9 },
2171 { "HRTIMER_NORESTART", 0 },
2172 { "HRTIMER_RESTART", 1 },
2175 unsigned long long eval_flag(const char *flag
)
2180 * Some flags in the format files do not get converted.
2181 * If the flag is not numeric, see if it is something that
2182 * we already know about.
2184 if (isdigit(flag
[0]))
2185 return strtoull(flag
, NULL
, 0);
2187 for (i
= 0; i
< (int)(sizeof(flags
)/sizeof(flags
[0])); i
++)
2188 if (strcmp(flags
[i
].name
, flag
) == 0)
2189 return flags
[i
].value
;
2194 static void print_str_arg(void *data
, int size
,
2195 struct event
*event
, struct print_arg
*arg
)
2197 struct print_flag_sym
*flag
;
2198 unsigned long long val
, fval
;
2202 switch (arg
->type
) {
2207 printf("%s", arg
->atom
.atom
);
2210 if (!arg
->field
.field
) {
2211 arg
->field
.field
= find_any_field(event
, arg
->field
.name
);
2212 if (!arg
->field
.field
)
2213 die("field %s not found", arg
->field
.name
);
2215 str
= malloc_or_die(arg
->field
.field
->size
+ 1);
2216 memcpy(str
, data
+ arg
->field
.field
->offset
,
2217 arg
->field
.field
->size
);
2218 str
[arg
->field
.field
->size
] = 0;
2223 val
= eval_num_arg(data
, size
, event
, arg
->flags
.field
);
2225 for (flag
= arg
->flags
.flags
; flag
; flag
= flag
->next
) {
2226 fval
= eval_flag(flag
->value
);
2227 if (!val
&& !fval
) {
2228 printf("%s", flag
->str
);
2231 if (fval
&& (val
& fval
) == fval
) {
2232 if (print
&& arg
->flags
.delim
)
2233 printf("%s", arg
->flags
.delim
);
2234 printf("%s", flag
->str
);
2241 val
= eval_num_arg(data
, size
, event
, arg
->symbol
.field
);
2242 for (flag
= arg
->symbol
.symbols
; flag
; flag
= flag
->next
) {
2243 fval
= eval_flag(flag
->value
);
2245 printf("%s", flag
->str
);
2253 case PRINT_STRING
: {
2256 if (arg
->string
.offset
== -1) {
2257 struct format_field
*f
;
2259 f
= find_any_field(event
, arg
->string
.string
);
2260 arg
->string
.offset
= f
->offset
;
2262 str_offset
= *(int *)(data
+ arg
->string
.offset
);
2263 str_offset
&= 0xffff;
2264 printf("%s", ((char *)data
) + str_offset
);
2269 * The only op for string should be ? :
2271 if (arg
->op
.op
[0] != '?')
2273 val
= eval_num_arg(data
, size
, event
, arg
->op
.left
);
2275 print_str_arg(data
, size
, event
, arg
->op
.right
->op
.left
);
2277 print_str_arg(data
, size
, event
, arg
->op
.right
->op
.right
);
2285 static struct print_arg
*make_bprint_args(char *fmt
, void *data
, int size
, struct event
*event
)
2287 static struct format_field
*field
, *ip_field
;
2288 struct print_arg
*args
, *arg
, **next
;
2289 unsigned long long ip
, val
;
2294 field
= find_field(event
, "buf");
2296 die("can't find buffer field for binary printk");
2297 ip_field
= find_field(event
, "ip");
2299 die("can't find ip field for binary printk");
2302 ip
= read_size(data
+ ip_field
->offset
, ip_field
->size
);
2305 * The first arg is the IP pointer.
2307 args
= malloc_or_die(sizeof(*args
));
2312 arg
->type
= PRINT_ATOM
;
2313 arg
->atom
.atom
= malloc_or_die(32);
2314 sprintf(arg
->atom
.atom
, "%lld", ip
);
2316 /* skip the first "%pf : " */
2317 for (ptr
= fmt
+ 6, bptr
= data
+ field
->offset
;
2318 bptr
< data
+ size
&& *ptr
; ptr
++) {
2342 /* the pointers are always 4 bytes aligned */
2343 bptr
= (void *)(((unsigned long)bptr
+ 3) &
2355 val
= read_size(bptr
, ls
);
2357 arg
= malloc_or_die(sizeof(*arg
));
2359 arg
->type
= PRINT_ATOM
;
2360 arg
->atom
.atom
= malloc_or_die(32);
2361 sprintf(arg
->atom
.atom
, "%lld", val
);
2366 arg
= malloc_or_die(sizeof(*arg
));
2368 arg
->type
= PRINT_STRING
;
2369 arg
->string
.string
= strdup(bptr
);
2370 bptr
+= strlen(bptr
) + 1;
2382 static void free_args(struct print_arg
*args
)
2384 struct print_arg
*next
;
2389 if (args
->type
== PRINT_ATOM
)
2390 free(args
->atom
.atom
);
2392 free(args
->string
.string
);
2398 static char *get_bprint_format(void *data
, int size __unused
, struct event
*event
)
2400 unsigned long long addr
;
2401 static struct format_field
*field
;
2402 struct printk_map
*printk
;
2407 field
= find_field(event
, "fmt");
2409 die("can't find format field for binary printk");
2410 printf("field->offset = %d size=%d\n", field
->offset
, field
->size
);
2413 addr
= read_size(data
+ field
->offset
, field
->size
);
2415 printk
= find_printk(addr
);
2417 format
= malloc_or_die(45);
2418 sprintf(format
, "%%pf : (NO FORMAT FOUND at %llx)\n",
2424 /* Remove any quotes. */
2427 format
= malloc_or_die(strlen(p
) + 10);
2428 sprintf(format
, "%s : %s", "%pf", p
);
2429 /* remove ending quotes and new line since we will add one too */
2430 p
= format
+ strlen(format
) - 1;
2435 if (strcmp(p
, "\\n") == 0)
2441 static void pretty_print(void *data
, int size
, struct event
*event
)
2443 struct print_fmt
*print_fmt
= &event
->print_fmt
;
2444 struct print_arg
*arg
= print_fmt
->args
;
2445 struct print_arg
*args
= NULL
;
2446 const char *ptr
= print_fmt
->format
;
2447 unsigned long long val
;
2448 struct func_map
*func
;
2449 const char *saveptr
;
2450 char *bprint_fmt
= NULL
;
2456 if (event
->flags
& EVENT_FL_ISFUNC
)
2457 ptr
= " %pF <-- %pF";
2459 if (event
->flags
& EVENT_FL_ISBPRINT
) {
2460 bprint_fmt
= get_bprint_format(data
, size
, event
);
2461 args
= make_bprint_args(bprint_fmt
, data
, size
, event
);
2466 for (; *ptr
; ptr
++) {
2488 } else if (*ptr
== '%') {
2513 if (*(ptr
+1) == 'F' ||
2526 die("no argument match");
2528 len
= ((unsigned long)ptr
+ 1) -
2529 (unsigned long)saveptr
;
2531 /* should never happen */
2535 memcpy(format
, saveptr
, len
);
2538 val
= eval_num_arg(data
, size
, event
, arg
);
2542 func
= find_func(val
);
2544 printf("%s", func
->func
);
2545 if (show_func
== 'F')
2553 printf(format
, (int)val
);
2556 printf(format
, (long)val
);
2559 printf(format
, (long long)val
);
2562 die("bad count (%d)", ls
);
2567 die("no matching argument");
2569 print_str_arg(data
, size
, event
, arg
);
2573 printf(">%c<", *ptr
);
2586 static inline int log10_cpu(int nb
)
2595 static void print_lat_fmt(void *data
, int size __unused
)
2597 unsigned int lat_flags
;
2603 lat_flags
= parse_common_flags(data
);
2604 pc
= parse_common_pc(data
);
2605 lock_depth
= parse_common_lock_depth(data
);
2607 hardirq
= lat_flags
& TRACE_FLAG_HARDIRQ
;
2608 softirq
= lat_flags
& TRACE_FLAG_SOFTIRQ
;
2611 (lat_flags
& TRACE_FLAG_IRQS_OFF
) ? 'd' :
2612 (lat_flags
& TRACE_FLAG_IRQS_NOSUPPORT
) ?
2614 (lat_flags
& TRACE_FLAG_NEED_RESCHED
) ?
2616 (hardirq
&& softirq
) ? 'H' :
2617 hardirq
? 'h' : softirq
? 's' : '.');
2627 printf("%d", lock_depth
);
2630 /* taken from Linux, written by Frederic Weisbecker */
2631 static void print_graph_cpu(int cpu
)
2634 int log10_this
= log10_cpu(cpu
);
2635 int log10_all
= log10_cpu(cpus
);
2639 * Start with a space character - to make it stand out
2640 * to the right a bit when trace output is pasted into
2646 * Tricky - we space the CPU field according to the max
2647 * number of online CPUs. On a 2-cpu system it would take
2648 * a maximum of 1 digit - on a 128 cpu system it would
2649 * take up to 3 digits:
2651 for (i
= 0; i
< log10_all
- log10_this
; i
++)
2654 printf("%d) ", cpu
);
2657 #define TRACE_GRAPH_PROCINFO_LENGTH 14
2658 #define TRACE_GRAPH_INDENT 2
2660 static void print_graph_proc(int pid
, const char *comm
)
2662 /* sign + log10(MAX_INT) + '\0' */
2668 sprintf(pid_str
, "%d", pid
);
2670 /* 1 stands for the "-" character */
2671 len
= strlen(comm
) + strlen(pid_str
) + 1;
2673 if (len
< TRACE_GRAPH_PROCINFO_LENGTH
)
2674 spaces
= TRACE_GRAPH_PROCINFO_LENGTH
- len
;
2676 /* First spaces to align center */
2677 for (i
= 0; i
< spaces
/ 2; i
++)
2680 printf("%s-%s", comm
, pid_str
);
2682 /* Last spaces to align center */
2683 for (i
= 0; i
< spaces
- (spaces
/ 2); i
++)
2687 static struct record
*
2688 get_return_for_leaf(int cpu
, int cur_pid
, unsigned long long cur_func
,
2689 struct record
*next
)
2691 struct format_field
*field
;
2692 struct event
*event
;
2697 type
= trace_parse_common_type(next
->data
);
2698 event
= trace_find_event(type
);
2702 if (!(event
->flags
& EVENT_FL_ISFUNCRET
))
2705 pid
= trace_parse_common_pid(next
->data
);
2706 field
= find_field(event
, "func");
2708 die("function return does not have field func");
2710 val
= read_size(next
->data
+ field
->offset
, field
->size
);
2712 if (cur_pid
!= pid
|| cur_func
!= val
)
2715 /* this is a leaf, now advance the iterator */
2716 return trace_read_data(cpu
);
2719 /* Signal a overhead of time execution to the output */
2720 static void print_graph_overhead(unsigned long long duration
)
2722 /* Non nested entry or return */
2723 if (duration
== ~0ULL)
2724 return (void)printf(" ");
2726 /* Duration exceeded 100 msecs */
2727 if (duration
> 100000ULL)
2728 return (void)printf("! ");
2730 /* Duration exceeded 10 msecs */
2731 if (duration
> 10000ULL)
2732 return (void)printf("+ ");
2737 static void print_graph_duration(unsigned long long duration
)
2739 unsigned long usecs
= duration
/ 1000;
2740 unsigned long nsecs_rem
= duration
% 1000;
2741 /* log10(ULONG_MAX) + '\0' */
2747 sprintf(msecs_str
, "%lu", usecs
);
2750 len
= printf("%lu", usecs
);
2752 /* Print nsecs (we don't want to exceed 7 numbers) */
2754 snprintf(nsecs_str
, 8 - len
, "%03lu", nsecs_rem
);
2755 len
+= printf(".%s", nsecs_str
);
2760 /* Print remaining spaces to fit the row's width */
2761 for (i
= len
; i
< 7; i
++)
2768 print_graph_entry_leaf(struct event
*event
, void *data
, struct record
*ret_rec
)
2770 unsigned long long rettime
, calltime
;
2771 unsigned long long duration
, depth
;
2772 unsigned long long val
;
2773 struct format_field
*field
;
2774 struct func_map
*func
;
2775 struct event
*ret_event
;
2779 type
= trace_parse_common_type(ret_rec
->data
);
2780 ret_event
= trace_find_event(type
);
2782 field
= find_field(ret_event
, "rettime");
2784 die("can't find rettime in return graph");
2785 rettime
= read_size(ret_rec
->data
+ field
->offset
, field
->size
);
2787 field
= find_field(ret_event
, "calltime");
2789 die("can't find rettime in return graph");
2790 calltime
= read_size(ret_rec
->data
+ field
->offset
, field
->size
);
2792 duration
= rettime
- calltime
;
2795 print_graph_overhead(duration
);
2798 print_graph_duration(duration
);
2800 field
= find_field(event
, "depth");
2802 die("can't find depth in entry graph");
2803 depth
= read_size(data
+ field
->offset
, field
->size
);
2806 for (i
= 0; i
< (int)(depth
* TRACE_GRAPH_INDENT
); i
++)
2809 field
= find_field(event
, "func");
2811 die("can't find func in entry graph");
2812 val
= read_size(data
+ field
->offset
, field
->size
);
2813 func
= find_func(val
);
2816 printf("%s();", func
->func
);
2818 printf("%llx();", val
);
2821 static void print_graph_nested(struct event
*event
, void *data
)
2823 struct format_field
*field
;
2824 unsigned long long depth
;
2825 unsigned long long val
;
2826 struct func_map
*func
;
2830 print_graph_overhead(-1);
2835 field
= find_field(event
, "depth");
2837 die("can't find depth in entry graph");
2838 depth
= read_size(data
+ field
->offset
, field
->size
);
2841 for (i
= 0; i
< (int)(depth
* TRACE_GRAPH_INDENT
); i
++)
2844 field
= find_field(event
, "func");
2846 die("can't find func in entry graph");
2847 val
= read_size(data
+ field
->offset
, field
->size
);
2848 func
= find_func(val
);
2851 printf("%s() {", func
->func
);
2853 printf("%llx() {", val
);
2857 pretty_print_func_ent(void *data
, int size
, struct event
*event
,
2858 int cpu
, int pid
, const char *comm
,
2859 unsigned long secs
, unsigned long usecs
)
2861 struct format_field
*field
;
2866 printf("%5lu.%06lu | ", secs
, usecs
);
2868 print_graph_cpu(cpu
);
2869 print_graph_proc(pid
, comm
);
2873 if (latency_format
) {
2874 print_lat_fmt(data
, size
);
2878 field
= find_field(event
, "func");
2880 die("function entry does not have func field");
2882 val
= read_size(data
+ field
->offset
, field
->size
);
2885 * peek_data may unmap the data pointer. Copy it first.
2887 copy_data
= malloc_or_die(size
);
2888 memcpy(copy_data
, data
, size
);
2891 rec
= trace_peek_data(cpu
);
2893 rec
= get_return_for_leaf(cpu
, pid
, val
, rec
);
2895 print_graph_entry_leaf(event
, data
, rec
);
2899 print_graph_nested(event
, data
);
2905 pretty_print_func_ret(void *data
, int size __unused
, struct event
*event
,
2906 int cpu
, int pid
, const char *comm
,
2907 unsigned long secs
, unsigned long usecs
)
2909 unsigned long long rettime
, calltime
;
2910 unsigned long long duration
, depth
;
2911 struct format_field
*field
;
2914 printf("%5lu.%06lu | ", secs
, usecs
);
2916 print_graph_cpu(cpu
);
2917 print_graph_proc(pid
, comm
);
2921 if (latency_format
) {
2922 print_lat_fmt(data
, size
);
2926 field
= find_field(event
, "rettime");
2928 die("can't find rettime in return graph");
2929 rettime
= read_size(data
+ field
->offset
, field
->size
);
2931 field
= find_field(event
, "calltime");
2933 die("can't find calltime in return graph");
2934 calltime
= read_size(data
+ field
->offset
, field
->size
);
2936 duration
= rettime
- calltime
;
2939 print_graph_overhead(duration
);
2942 print_graph_duration(duration
);
2944 field
= find_field(event
, "depth");
2946 die("can't find depth in entry graph");
2947 depth
= read_size(data
+ field
->offset
, field
->size
);
2950 for (i
= 0; i
< (int)(depth
* TRACE_GRAPH_INDENT
); i
++)
2957 pretty_print_func_graph(void *data
, int size
, struct event
*event
,
2958 int cpu
, int pid
, const char *comm
,
2959 unsigned long secs
, unsigned long usecs
)
2961 if (event
->flags
& EVENT_FL_ISFUNCENT
)
2962 pretty_print_func_ent(data
, size
, event
,
2963 cpu
, pid
, comm
, secs
, usecs
);
2964 else if (event
->flags
& EVENT_FL_ISFUNCRET
)
2965 pretty_print_func_ret(data
, size
, event
,
2966 cpu
, pid
, comm
, secs
, usecs
);
2970 void print_event(int cpu
, void *data
, int size
, unsigned long long nsecs
,
2973 struct event
*event
;
2975 unsigned long usecs
;
2979 secs
= nsecs
/ NSECS_PER_SEC
;
2980 nsecs
-= secs
* NSECS_PER_SEC
;
2981 usecs
= nsecs
/ NSECS_PER_USEC
;
2983 type
= trace_parse_common_type(data
);
2985 event
= trace_find_event(type
);
2987 warning("ug! no event found for type %d", type
);
2991 pid
= trace_parse_common_pid(data
);
2993 if (event
->flags
& (EVENT_FL_ISFUNCENT
| EVENT_FL_ISFUNCRET
))
2994 return pretty_print_func_graph(data
, size
, event
, cpu
,
2995 pid
, comm
, secs
, usecs
);
2997 if (latency_format
) {
2998 printf("%8.8s-%-5d %3d",
3000 print_lat_fmt(data
, size
);
3002 printf("%16s-%-5d [%03d]", comm
, pid
, cpu
);
3004 printf(" %5lu.%06lu: %s: ", secs
, usecs
, event
->name
);
3006 if (event
->flags
& EVENT_FL_FAILED
) {
3007 printf("EVENT '%s' FAILED TO PARSE\n",
3012 pretty_print(data
, size
, event
);
3016 static void print_fields(struct print_flag_sym
*field
)
3018 printf("{ %s, %s }", field
->value
, field
->str
);
3021 print_fields(field
->next
);
3025 static void print_args(struct print_arg
*args
)
3027 int print_paren
= 1;
3029 switch (args
->type
) {
3034 printf("%s", args
->atom
.atom
);
3037 printf("REC->%s", args
->field
.name
);
3040 printf("__print_flags(");
3041 print_args(args
->flags
.field
);
3042 printf(", %s, ", args
->flags
.delim
);
3043 print_fields(args
->flags
.flags
);
3047 printf("__print_symbolic(");
3048 print_args(args
->symbol
.field
);
3050 print_fields(args
->symbol
.symbols
);
3054 printf("__get_str(%s)", args
->string
.string
);
3057 printf("(%s)", args
->typecast
.type
);
3058 print_args(args
->typecast
.item
);
3061 if (strcmp(args
->op
.op
, ":") == 0)
3065 print_args(args
->op
.left
);
3066 printf(" %s ", args
->op
.op
);
3067 print_args(args
->op
.right
);
3072 /* we should warn... */
3077 print_args(args
->next
);
3081 static void parse_header_field(const char *field
,
3082 int *offset
, int *size
)
3087 if (read_expected(EVENT_ITEM
, "field") < 0)
3089 if (read_expected(EVENT_OP
, ":") < 0)
3093 if (read_expect_type(EVENT_ITEM
, &token
) < 0)
3097 if (read_expected(EVENT_ITEM
, field
) < 0)
3099 if (read_expected(EVENT_OP
, ";") < 0)
3101 if (read_expected(EVENT_ITEM
, "offset") < 0)
3103 if (read_expected(EVENT_OP
, ":") < 0)
3105 if (read_expect_type(EVENT_ITEM
, &token
) < 0)
3107 *offset
= atoi(token
);
3109 if (read_expected(EVENT_OP
, ";") < 0)
3111 if (read_expected(EVENT_ITEM
, "size") < 0)
3113 if (read_expected(EVENT_OP
, ":") < 0)
3115 if (read_expect_type(EVENT_ITEM
, &token
) < 0)
3117 *size
= atoi(token
);
3119 if (read_expected(EVENT_OP
, ";") < 0)
3121 type
= read_token(&token
);
3122 if (type
!= EVENT_NEWLINE
) {
3123 /* newer versions of the kernel have a "signed" type */
3124 if (type
!= EVENT_ITEM
)
3127 if (strcmp(token
, "signed") != 0)
3132 if (read_expected(EVENT_OP
, ":") < 0)
3135 if (read_expect_type(EVENT_ITEM
, &token
))
3139 if (read_expected(EVENT_OP
, ";") < 0)
3142 if (read_expect_type(EVENT_NEWLINE
, &token
))
3149 int parse_header_page(char *buf
, unsigned long size
)
3151 init_input_buf(buf
, size
);
3153 parse_header_field("timestamp", &header_page_ts_offset
,
3154 &header_page_ts_size
);
3155 parse_header_field("commit", &header_page_size_offset
,
3156 &header_page_size_size
);
3157 parse_header_field("data", &header_page_data_offset
,
3158 &header_page_data_size
);
3163 int parse_ftrace_file(char *buf
, unsigned long size
)
3165 struct format_field
*field
;
3166 struct print_arg
*arg
, **list
;
3167 struct event
*event
;
3170 init_input_buf(buf
, size
);
3172 event
= alloc_event();
3176 event
->flags
|= EVENT_FL_ISFTRACE
;
3178 event
->name
= event_read_name();
3180 die("failed to read ftrace event name");
3182 if (strcmp(event
->name
, "function") == 0)
3183 event
->flags
|= EVENT_FL_ISFUNC
;
3185 else if (strcmp(event
->name
, "funcgraph_entry") == 0)
3186 event
->flags
|= EVENT_FL_ISFUNCENT
;
3188 else if (strcmp(event
->name
, "funcgraph_exit") == 0)
3189 event
->flags
|= EVENT_FL_ISFUNCRET
;
3191 else if (strcmp(event
->name
, "bprint") == 0)
3192 event
->flags
|= EVENT_FL_ISBPRINT
;
3194 event
->id
= event_read_id();
3196 die("failed to read ftrace event id");
3200 ret
= event_read_format(event
);
3202 die("failed to read ftrace event format");
3204 ret
= event_read_print(event
);
3206 die("failed to read ftrace event print fmt");
3208 /* New ftrace handles args */
3212 * The arguments for ftrace files are parsed by the fields.
3213 * Set up the fields as their arguments.
3215 list
= &event
->print_fmt
.args
;
3216 for (field
= event
->format
.fields
; field
; field
= field
->next
) {
3217 arg
= malloc_or_die(sizeof(*arg
));
3218 memset(arg
, 0, sizeof(*arg
));
3221 arg
->type
= PRINT_FIELD
;
3222 arg
->field
.name
= field
->name
;
3223 arg
->field
.field
= field
;
3228 int parse_event_file(char *buf
, unsigned long size
, char *sys
)
3230 struct event
*event
;
3233 init_input_buf(buf
, size
);
3235 event
= alloc_event();
3239 event
->name
= event_read_name();
3241 die("failed to read event name");
3243 event
->id
= event_read_id();
3245 die("failed to read event id");
3247 ret
= event_read_format(event
);
3249 warning("failed to read event format for %s", event
->name
);
3253 ret
= event_read_print(event
);
3255 warning("failed to read event print fmt for %s", event
->name
);
3259 event
->system
= strdup(sys
);
3261 #define PRINT_ARGS 0
3262 if (PRINT_ARGS
&& event
->print_fmt
.args
)
3263 print_args(event
->print_fmt
.args
);
3269 event
->flags
|= EVENT_FL_FAILED
;
3270 /* still add it even if it failed */
3275 void parse_set_info(int nr_cpus
, int long_sz
)
3278 long_size
= long_sz
;