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_overwrite_offset;
41 int header_page_overwrite_size;
42 int header_page_data_offset;
43 int header_page_data_size;
47 static char *input_buf;
48 static unsigned long long input_buf_ptr;
49 static unsigned long long input_buf_siz;
53 static int is_flag_field;
54 static int is_symbolic_field;
56 static struct format_field *
57 find_any_field(struct event *event, const char *name);
59 static void init_input_buf(char *buf, unsigned long long size)
71 static struct cmdline *cmdlines;
72 static int cmdline_count;
74 static int cmdline_cmp(const void *a, const void *b)
76 const struct cmdline *ca = a;
77 const struct cmdline *cb = b;
79 if (ca->pid < cb->pid)
81 if (ca->pid > cb->pid)
87 void parse_cmdlines(char *file, int size __unused)
90 struct cmdline_list *next;
93 } *list = NULL, *item;
98 line = strtok_r(file, "\n", &next);
100 item = malloc_or_die(sizeof(*item));
101 sscanf(line, "%d %as", &item->pid,
102 (float *)(void *)&item->comm); /* workaround gcc warning */
105 line = strtok_r(NULL, "\n", &next);
109 cmdlines = malloc_or_die(sizeof(*cmdlines) * cmdline_count);
113 cmdlines[i].pid = list->pid;
114 cmdlines[i].comm = list->comm;
121 qsort(cmdlines, cmdline_count, sizeof(*cmdlines), cmdline_cmp);
124 static struct func_map {
125 unsigned long long addr;
129 static unsigned int func_count;
131 static int func_cmp(const void *a, const void *b)
133 const struct func_map *fa = a;
134 const struct func_map *fb = b;
136 if (fa->addr < fb->addr)
138 if (fa->addr > fb->addr)
144 void parse_proc_kallsyms(char *file, unsigned int size __unused)
147 struct func_list *next;
148 unsigned long long addr;
151 } *list = NULL, *item;
159 line = strtok_r(file, "\n", &next);
161 item = malloc_or_die(sizeof(*item));
163 ret = sscanf(line, "%as %c %as\t[%as",
164 (float *)(void *)&addr_str, /* workaround gcc warning */
166 (float *)(void *)&item->func,
167 (float *)(void *)&item->mod);
168 item->addr = strtoull(addr_str, NULL, 16);
171 /* truncate the extra ']' */
173 item->mod[strlen(item->mod) - 1] = 0;
178 line = strtok_r(NULL, "\n", &next);
182 func_list = malloc_or_die(sizeof(*func_list) * (func_count + 1));
186 func_list[i].func = list->func;
187 func_list[i].addr = list->addr;
188 func_list[i].mod = list->mod;
195 qsort(func_list, func_count, sizeof(*func_list), func_cmp);
198 * Add a special record at the end.
200 func_list[func_count].func = NULL;
201 func_list[func_count].addr = 0;
202 func_list[func_count].mod = NULL;
206 * We are searching for a record in between, not an exact
209 static int func_bcmp(const void *a, const void *b)
211 const struct func_map *fa = a;
212 const struct func_map *fb = b;
214 if ((fa->addr == fb->addr) ||
216 (fa->addr > fb->addr &&
217 fa->addr < (fb+1)->addr))
220 if (fa->addr < fb->addr)
226 static struct func_map *find_func(unsigned long long addr)
228 struct func_map *func;
233 func = bsearch(&key, func_list, func_count, sizeof(*func_list),
239 void print_funcs(void)
243 for (i = 0; i < (int)func_count; i++) {
247 if (func_list[i].mod)
248 printf(" [%s]\n", func_list[i].mod);
254 static struct printk_map {
255 unsigned long long addr;
258 static unsigned int printk_count;
260 static int printk_cmp(const void *a, const void *b)
262 const struct func_map *fa = a;
263 const struct func_map *fb = b;
265 if (fa->addr < fb->addr)
267 if (fa->addr > fb->addr)
273 static struct printk_map *find_printk(unsigned long long addr)
275 struct printk_map *printk;
276 struct printk_map key;
280 printk = bsearch(&key, printk_list, printk_count, sizeof(*printk_list),
286 void parse_ftrace_printk(char *file, unsigned int size __unused)
289 struct printk_list *next;
290 unsigned long long addr;
292 } *list = NULL, *item;
298 line = strtok_r(file, "\n", &next);
300 addr_str = strsep(&line, ":");
302 warning("error parsing print strings");
305 item = malloc_or_die(sizeof(*item));
306 item->addr = strtoull(addr_str, NULL, 16);
307 /* fmt still has a space, skip it */
308 item->printk = strdup(line+1);
311 line = strtok_r(NULL, "\n", &next);
315 printk_list = malloc_or_die(sizeof(*printk_list) * printk_count + 1);
319 printk_list[i].printk = list->printk;
320 printk_list[i].addr = list->addr;
327 qsort(printk_list, printk_count, sizeof(*printk_list), printk_cmp);
330 void print_printk(void)
334 for (i = 0; i < (int)printk_count; i++) {
335 printf("%016llx %s\n",
337 printk_list[i].printk);
341 static struct event *alloc_event(void)
345 event = malloc_or_die(sizeof(*event));
346 memset(event, 0, sizeof(*event));
363 static struct event *event_list;
365 static void add_event(struct event *event)
367 event->next = event_list;
371 static int event_item_type(enum event_type type)
374 case EVENT_ITEM ... EVENT_SQUOTE:
376 case EVENT_ERROR ... EVENT_DELIM:
382 static void free_arg(struct print_arg *arg)
390 free(arg->atom.atom);
393 case PRINT_FIELD ... PRINT_OP:
402 static enum event_type get_type(int ch)
405 return EVENT_NEWLINE;
408 if (isalnum(ch) || ch == '_')
416 if (ch == '(' || ch == ')' || ch == ',')
422 static int __read_char(void)
424 if (input_buf_ptr >= input_buf_siz)
427 return input_buf[input_buf_ptr++];
430 static int __peek_char(void)
432 if (input_buf_ptr >= input_buf_siz)
435 return input_buf[input_buf_ptr];
438 static enum event_type __read_token(char **tok)
441 int ch, last_ch, quote_ch, next_ch;
444 enum event_type type;
454 if (type == EVENT_NONE)
462 *tok = malloc_or_die(2);
470 next_ch = __peek_char();
471 if (next_ch == '>') {
472 buf[i++] = __read_char();
485 buf[i++] = __read_char();
497 default: /* what should we do instead? */
507 buf[i++] = __read_char();
512 /* don't keep quotes */
517 if (i == (BUFSIZ - 1)) {
520 *tok = realloc(*tok, tok_size + BUFSIZ);
535 /* the '\' '\' will cancel itself */
536 if (ch == '\\' && last_ch == '\\')
538 } while (ch != quote_ch || last_ch == '\\');
539 /* remove the last quote */
543 case EVENT_ERROR ... EVENT_SPACE:
549 while (get_type(__peek_char()) == type) {
550 if (i == (BUFSIZ - 1)) {
553 *tok = realloc(*tok, tok_size + BUFSIZ);
572 *tok = realloc(*tok, tok_size + i);
584 static void free_token(char *tok)
590 static enum event_type read_token(char **tok)
592 enum event_type type;
595 type = __read_token(tok);
596 if (type != EVENT_SPACE)
607 static enum event_type read_token_item(char **tok)
609 enum event_type type;
612 type = __read_token(tok);
613 if (type != EVENT_SPACE && type != EVENT_NEWLINE)
623 static int test_type(enum event_type type, enum event_type expect)
625 if (type != expect) {
626 warning("Error: expected type %d but read %d",
633 static int __test_type_token(enum event_type type, char *token,
634 enum event_type expect, const char *expect_tok,
637 if (type != expect) {
639 warning("Error: expected type %d but read %d",
644 if (strcmp(token, expect_tok) != 0) {
646 warning("Error: expected '%s' but read '%s'",
653 static int test_type_token(enum event_type type, char *token,
654 enum event_type expect, const char *expect_tok)
656 return __test_type_token(type, token, expect, expect_tok, true);
659 static int __read_expect_type(enum event_type expect, char **tok, int newline_ok)
661 enum event_type type;
664 type = read_token(tok);
666 type = read_token_item(tok);
667 return test_type(type, expect);
670 static int read_expect_type(enum event_type expect, char **tok)
672 return __read_expect_type(expect, tok, 1);
675 static int __read_expected(enum event_type expect, const char *str,
676 int newline_ok, bool warn)
678 enum event_type type;
683 type = read_token(&token);
685 type = read_token_item(&token);
687 ret = __test_type_token(type, token, expect, str, warn);
694 static int read_expected(enum event_type expect, const char *str)
696 return __read_expected(expect, str, 1, true);
699 static int read_expected_item(enum event_type expect, const char *str)
701 return __read_expected(expect, str, 0, true);
704 static char *event_read_name(void)
708 if (read_expected(EVENT_ITEM, "name") < 0)
711 if (read_expected(EVENT_OP, ":") < 0)
714 if (read_expect_type(EVENT_ITEM, &token) < 0)
724 static int event_read_id(void)
729 if (read_expected_item(EVENT_ITEM, "ID") < 0)
732 if (read_expected(EVENT_OP, ":") < 0)
735 if (read_expect_type(EVENT_ITEM, &token) < 0)
738 id = strtoul(token, NULL, 0);
747 static int field_is_string(struct format_field *field)
749 if ((field->flags & FIELD_IS_ARRAY) &&
750 (!strstr(field->type, "char") || !strstr(field->type, "u8") ||
751 !strstr(field->type, "s8")))
757 static int field_is_dynamic(struct format_field *field)
759 if (!strncmp(field->type, "__data_loc", 10))
765 static int event_read_fields(struct event *event, struct format_field **fields)
767 struct format_field *field = NULL;
768 enum event_type type;
774 type = read_token(&token);
775 if (type == EVENT_NEWLINE) {
782 if (test_type_token(type, token, EVENT_ITEM, "field"))
786 type = read_token(&token);
788 * The ftrace fields may still use the "special" name.
791 if (event->flags & EVENT_FL_ISFTRACE &&
792 type == EVENT_ITEM && strcmp(token, "special") == 0) {
794 type = read_token(&token);
797 if (test_type_token(type, token, EVENT_OP, ":") < 0)
800 if (read_expect_type(EVENT_ITEM, &token) < 0)
805 field = malloc_or_die(sizeof(*field));
806 memset(field, 0, sizeof(*field));
808 /* read the rest of the type */
810 type = read_token(&token);
811 if (type == EVENT_ITEM ||
812 (type == EVENT_OP && strcmp(token, "*") == 0) ||
814 * Some of the ftrace fields are broken and have
815 * an illegal "." in them.
817 (event->flags & EVENT_FL_ISFTRACE &&
818 type == EVENT_OP && strcmp(token, ".") == 0)) {
820 if (strcmp(token, "*") == 0)
821 field->flags |= FIELD_IS_POINTER;
824 field->type = realloc(field->type,
825 strlen(field->type) +
826 strlen(last_token) + 2);
827 strcat(field->type, " ");
828 strcat(field->type, last_token);
830 field->type = last_token;
839 die("no type found");
842 field->name = last_token;
844 if (test_type(type, EVENT_OP))
847 if (strcmp(token, "[") == 0) {
848 enum event_type last_type = type;
849 char *brackets = token;
852 field->flags |= FIELD_IS_ARRAY;
854 type = read_token(&token);
855 while (strcmp(token, "]") != 0) {
856 if (last_type == EVENT_ITEM &&
863 brackets = realloc(brackets,
865 strlen(token) + len);
867 strcat(brackets, " ");
868 strcat(brackets, token);
870 type = read_token(&token);
871 if (type == EVENT_NONE) {
872 die("failed to find token");
879 brackets = realloc(brackets, strlen(brackets) + 2);
880 strcat(brackets, "]");
882 /* add brackets to type */
884 type = read_token(&token);
886 * If the next token is not an OP, then it is of
887 * the format: type [] item;
889 if (type == EVENT_ITEM) {
890 field->type = realloc(field->type,
891 strlen(field->type) +
892 strlen(field->name) +
893 strlen(brackets) + 2);
894 strcat(field->type, " ");
895 strcat(field->type, field->name);
896 free_token(field->name);
897 strcat(field->type, brackets);
899 type = read_token(&token);
901 field->type = realloc(field->type,
902 strlen(field->type) +
903 strlen(brackets) + 1);
904 strcat(field->type, brackets);
909 if (field_is_string(field)) {
910 field->flags |= FIELD_IS_STRING;
911 if (field_is_dynamic(field))
912 field->flags |= FIELD_IS_DYNAMIC;
915 if (test_type_token(type, token, EVENT_OP, ";"))
919 if (read_expected(EVENT_ITEM, "offset") < 0)
922 if (read_expected(EVENT_OP, ":") < 0)
925 if (read_expect_type(EVENT_ITEM, &token))
927 field->offset = strtoul(token, NULL, 0);
930 if (read_expected(EVENT_OP, ";") < 0)
933 if (read_expected(EVENT_ITEM, "size") < 0)
936 if (read_expected(EVENT_OP, ":") < 0)
939 if (read_expect_type(EVENT_ITEM, &token))
941 field->size = strtoul(token, NULL, 0);
944 if (read_expected(EVENT_OP, ";") < 0)
947 type = read_token(&token);
948 if (type != EVENT_NEWLINE) {
949 /* newer versions of the kernel have a "signed" type */
950 if (test_type_token(type, token, EVENT_ITEM, "signed"))
955 if (read_expected(EVENT_OP, ":") < 0)
958 if (read_expect_type(EVENT_ITEM, &token))
961 if (strtoul(token, NULL, 0))
962 field->flags |= FIELD_IS_SIGNED;
965 if (read_expected(EVENT_OP, ";") < 0)
968 if (read_expect_type(EVENT_NEWLINE, &token))
975 fields = &field->next;
989 static int event_read_format(struct event *event)
994 if (read_expected_item(EVENT_ITEM, "format") < 0)
997 if (read_expected(EVENT_OP, ":") < 0)
1000 if (read_expect_type(EVENT_NEWLINE, &token))
1004 ret = event_read_fields(event, &event->format.common_fields);
1007 event->format.nr_common = ret;
1009 ret = event_read_fields(event, &event->format.fields);
1012 event->format.nr_fields = ret;
1022 process_arg_token(struct event *event, struct print_arg *arg,
1023 char **tok, enum event_type type);
1025 static enum event_type
1026 process_arg(struct event *event, struct print_arg *arg, char **tok)
1028 enum event_type type;
1031 type = read_token(&token);
1034 return process_arg_token(event, arg, tok, type);
1037 static enum event_type
1038 process_cond(struct event *event, struct print_arg *top, char **tok)
1040 struct print_arg *arg, *left, *right;
1041 enum event_type type;
1044 arg = malloc_or_die(sizeof(*arg));
1045 memset(arg, 0, sizeof(*arg));
1047 left = malloc_or_die(sizeof(*left));
1049 right = malloc_or_die(sizeof(*right));
1051 arg->type = PRINT_OP;
1052 arg->op.left = left;
1053 arg->op.right = right;
1056 type = process_arg(event, left, &token);
1057 if (test_type_token(type, token, EVENT_OP, ":"))
1062 type = process_arg(event, right, &token);
1064 top->op.right = arg;
1077 static enum event_type
1078 process_array(struct event *event, struct print_arg *top, char **tok)
1080 struct print_arg *arg;
1081 enum event_type type;
1084 arg = malloc_or_die(sizeof(*arg));
1085 memset(arg, 0, sizeof(*arg));
1088 type = process_arg(event, arg, &token);
1089 if (test_type_token(type, token, EVENT_OP, "]"))
1092 top->op.right = arg;
1095 type = read_token_item(&token);
1106 static int get_op_prio(char *op)
1117 /* '>>' and '<<' are 8 */
1121 /* '==' and '!=' are 10 */
1131 die("unknown op '%c'", op[0]);
1135 if (strcmp(op, "++") == 0 ||
1136 strcmp(op, "--") == 0) {
1138 } else if (strcmp(op, ">>") == 0 ||
1139 strcmp(op, "<<") == 0) {
1141 } else if (strcmp(op, ">=") == 0 ||
1142 strcmp(op, "<=") == 0) {
1144 } else if (strcmp(op, "==") == 0 ||
1145 strcmp(op, "!=") == 0) {
1147 } else if (strcmp(op, "&&") == 0) {
1149 } else if (strcmp(op, "||") == 0) {
1152 die("unknown op '%s'", op);
1158 static void set_op_prio(struct print_arg *arg)
1161 /* single ops are the greatest */
1162 if (!arg->op.left || arg->op.left->type == PRINT_NULL) {
1167 arg->op.prio = get_op_prio(arg->op.op);
1170 static enum event_type
1171 process_op(struct event *event, struct print_arg *arg, char **tok)
1173 struct print_arg *left, *right = NULL;
1174 enum event_type type;
1177 /* the op is passed in via tok */
1180 if (arg->type == PRINT_OP && !arg->op.left) {
1181 /* handle single op */
1183 die("bad op token %s", token);
1192 die("bad op token %s", token);
1196 /* make an empty left */
1197 left = malloc_or_die(sizeof(*left));
1198 left->type = PRINT_NULL;
1199 arg->op.left = left;
1201 right = malloc_or_die(sizeof(*right));
1202 arg->op.right = right;
1204 type = process_arg(event, right, tok);
1206 } else if (strcmp(token, "?") == 0) {
1208 left = malloc_or_die(sizeof(*left));
1209 /* copy the top arg to the left */
1212 arg->type = PRINT_OP;
1214 arg->op.left = left;
1217 type = process_cond(event, arg, tok);
1219 } else if (strcmp(token, ">>") == 0 ||
1220 strcmp(token, "<<") == 0 ||
1221 strcmp(token, "&") == 0 ||
1222 strcmp(token, "|") == 0 ||
1223 strcmp(token, "&&") == 0 ||
1224 strcmp(token, "||") == 0 ||
1225 strcmp(token, "-") == 0 ||
1226 strcmp(token, "+") == 0 ||
1227 strcmp(token, "*") == 0 ||
1228 strcmp(token, "^") == 0 ||
1229 strcmp(token, "/") == 0 ||
1230 strcmp(token, "<") == 0 ||
1231 strcmp(token, ">") == 0 ||
1232 strcmp(token, "==") == 0 ||
1233 strcmp(token, "!=") == 0) {
1235 left = malloc_or_die(sizeof(*left));
1237 /* copy the top arg to the left */
1240 arg->type = PRINT_OP;
1242 arg->op.left = left;
1246 right = malloc_or_die(sizeof(*right));
1248 type = read_token_item(&token);
1251 /* could just be a type pointer */
1252 if ((strcmp(arg->op.op, "*") == 0) &&
1253 type == EVENT_DELIM && (strcmp(token, ")") == 0)) {
1254 if (left->type != PRINT_ATOM)
1255 die("bad pointer type");
1256 left->atom.atom = realloc(left->atom.atom,
1257 sizeof(left->atom.atom) + 3);
1258 strcat(left->atom.atom, " *");
1265 type = process_arg_token(event, right, tok, type);
1267 arg->op.right = right;
1269 } else if (strcmp(token, "[") == 0) {
1271 left = malloc_or_die(sizeof(*left));
1274 arg->type = PRINT_OP;
1276 arg->op.left = left;
1279 type = process_array(event, arg, tok);
1282 warning("unknown op '%s'", token);
1283 event->flags |= EVENT_FL_FAILED;
1284 /* the arg is now the left side */
1288 if (type == EVENT_OP) {
1291 /* higher prios need to be closer to the root */
1292 prio = get_op_prio(*tok);
1294 if (prio > arg->op.prio)
1295 return process_op(event, arg, tok);
1297 return process_op(event, right, tok);
1303 static enum event_type
1304 process_entry(struct event *event __unused, struct print_arg *arg,
1307 enum event_type type;
1311 if (read_expected(EVENT_OP, "->") < 0)
1314 if (read_expect_type(EVENT_ITEM, &token) < 0)
1318 arg->type = PRINT_FIELD;
1319 arg->field.name = field;
1321 if (is_flag_field) {
1322 arg->field.field = find_any_field(event, arg->field.name);
1323 arg->field.field->flags |= FIELD_IS_FLAG;
1325 } else if (is_symbolic_field) {
1326 arg->field.field = find_any_field(event, arg->field.name);
1327 arg->field.field->flags |= FIELD_IS_SYMBOLIC;
1328 is_symbolic_field = 0;
1331 type = read_token(&token);
1341 static char *arg_eval (struct print_arg *arg);
1343 static long long arg_num_eval(struct print_arg *arg)
1345 long long left, right;
1348 switch (arg->type) {
1350 val = strtoll(arg->atom.atom, NULL, 0);
1353 val = arg_num_eval(arg->typecast.item);
1356 switch (arg->op.op[0]) {
1358 left = arg_num_eval(arg->op.left);
1359 right = arg_num_eval(arg->op.right);
1361 val = left || right;
1366 left = arg_num_eval(arg->op.left);
1367 right = arg_num_eval(arg->op.right);
1369 val = left && right;
1374 left = arg_num_eval(arg->op.left);
1375 right = arg_num_eval(arg->op.right);
1376 switch (arg->op.op[1]) {
1381 val = left << right;
1384 val = left <= right;
1387 die("unknown op '%s'", arg->op.op);
1391 left = arg_num_eval(arg->op.left);
1392 right = arg_num_eval(arg->op.right);
1393 switch (arg->op.op[1]) {
1398 val = left >> right;
1401 val = left >= right;
1404 die("unknown op '%s'", arg->op.op);
1408 left = arg_num_eval(arg->op.left);
1409 right = arg_num_eval(arg->op.right);
1411 if (arg->op.op[1] != '=')
1412 die("unknown op '%s'", arg->op.op);
1414 val = left == right;
1417 left = arg_num_eval(arg->op.left);
1418 right = arg_num_eval(arg->op.right);
1420 switch (arg->op.op[1]) {
1422 val = left != right;
1425 die("unknown op '%s'", arg->op.op);
1429 die("unknown op '%s'", arg->op.op);
1434 case PRINT_FIELD ... PRINT_SYMBOL:
1437 die("invalid eval type %d", arg->type);
1443 static char *arg_eval (struct print_arg *arg)
1446 static char buf[20];
1448 switch (arg->type) {
1450 return arg->atom.atom;
1452 return arg_eval(arg->typecast.item);
1454 val = arg_num_eval(arg);
1455 sprintf(buf, "%lld", val);
1459 case PRINT_FIELD ... PRINT_SYMBOL:
1462 die("invalid eval type %d", arg->type);
1469 static enum event_type
1470 process_fields(struct event *event, struct print_flag_sym **list, char **tok)
1472 enum event_type type;
1473 struct print_arg *arg = NULL;
1474 struct print_flag_sym *field;
1480 type = read_token_item(&token);
1481 if (test_type_token(type, token, EVENT_OP, "{"))
1484 arg = malloc_or_die(sizeof(*arg));
1487 type = process_arg(event, arg, &token);
1488 if (test_type_token(type, token, EVENT_DELIM, ","))
1491 field = malloc_or_die(sizeof(*field));
1492 memset(field, 0, sizeof(*field));
1494 value = arg_eval(arg);
1495 field->value = strdup(value);
1498 type = process_arg(event, arg, &token);
1499 if (test_type_token(type, token, EVENT_OP, "}"))
1502 value = arg_eval(arg);
1503 field->str = strdup(value);
1508 list = &field->next;
1511 type = read_token_item(&token);
1512 } while (type == EVENT_DELIM && strcmp(token, ",") == 0);
1524 static enum event_type
1525 process_flags(struct event *event, struct print_arg *arg, char **tok)
1527 struct print_arg *field;
1528 enum event_type type;
1531 memset(arg, 0, sizeof(*arg));
1532 arg->type = PRINT_FLAGS;
1534 if (read_expected_item(EVENT_DELIM, "(") < 0)
1537 field = malloc_or_die(sizeof(*field));
1539 type = process_arg(event, field, &token);
1540 if (test_type_token(type, token, EVENT_DELIM, ","))
1543 arg->flags.field = field;
1545 type = read_token_item(&token);
1546 if (event_item_type(type)) {
1547 arg->flags.delim = token;
1548 type = read_token_item(&token);
1551 if (test_type_token(type, token, EVENT_DELIM, ","))
1554 type = process_fields(event, &arg->flags.flags, &token);
1555 if (test_type_token(type, token, EVENT_DELIM, ")"))
1559 type = read_token_item(tok);
1567 static enum event_type
1568 process_symbols(struct event *event, struct print_arg *arg, char **tok)
1570 struct print_arg *field;
1571 enum event_type type;
1574 memset(arg, 0, sizeof(*arg));
1575 arg->type = PRINT_SYMBOL;
1577 if (read_expected_item(EVENT_DELIM, "(") < 0)
1580 field = malloc_or_die(sizeof(*field));
1582 type = process_arg(event, field, &token);
1583 if (test_type_token(type, token, EVENT_DELIM, ","))
1586 arg->symbol.field = field;
1588 type = process_fields(event, &arg->symbol.symbols, &token);
1589 if (test_type_token(type, token, EVENT_DELIM, ")"))
1593 type = read_token_item(tok);
1601 static enum event_type
1602 process_paren(struct event *event, struct print_arg *arg, char **tok)
1604 struct print_arg *item_arg;
1605 enum event_type type;
1608 type = process_arg(event, arg, &token);
1610 if (type == EVENT_ERROR)
1613 if (type == EVENT_OP)
1614 type = process_op(event, arg, &token);
1616 if (type == EVENT_ERROR)
1619 if (test_type_token(type, token, EVENT_DELIM, ")")) {
1625 type = read_token_item(&token);
1628 * If the next token is an item or another open paren, then
1629 * this was a typecast.
1631 if (event_item_type(type) ||
1632 (type == EVENT_DELIM && strcmp(token, "(") == 0)) {
1634 /* make this a typecast and contine */
1636 /* prevous must be an atom */
1637 if (arg->type != PRINT_ATOM)
1638 die("previous needed to be PRINT_ATOM");
1640 item_arg = malloc_or_die(sizeof(*item_arg));
1642 arg->type = PRINT_TYPE;
1643 arg->typecast.type = arg->atom.atom;
1644 arg->typecast.item = item_arg;
1645 type = process_arg_token(event, item_arg, &token, type);
1654 static enum event_type
1655 process_str(struct event *event __unused, struct print_arg *arg, char **tok)
1657 enum event_type type;
1660 if (read_expected(EVENT_DELIM, "(") < 0)
1663 if (read_expect_type(EVENT_ITEM, &token) < 0)
1666 arg->type = PRINT_STRING;
1667 arg->string.string = token;
1668 arg->string.offset = -1;
1670 if (read_expected(EVENT_DELIM, ")") < 0)
1673 type = read_token(&token);
1683 process_arg_token(struct event *event, struct print_arg *arg,
1684 char **tok, enum event_type type)
1693 if (strcmp(token, "REC") == 0) {
1695 type = process_entry(event, arg, &token);
1696 } else if (strcmp(token, "__print_flags") == 0) {
1699 type = process_flags(event, arg, &token);
1700 } else if (strcmp(token, "__print_symbolic") == 0) {
1702 is_symbolic_field = 1;
1703 type = process_symbols(event, arg, &token);
1704 } else if (strcmp(token, "__get_str") == 0) {
1706 type = process_str(event, arg, &token);
1709 /* test the next token */
1710 type = read_token_item(&token);
1712 /* atoms can be more than one token long */
1713 while (type == EVENT_ITEM) {
1714 atom = realloc(atom, strlen(atom) + strlen(token) + 2);
1716 strcat(atom, token);
1718 type = read_token_item(&token);
1721 /* todo, test for function */
1723 arg->type = PRINT_ATOM;
1724 arg->atom.atom = atom;
1729 arg->type = PRINT_ATOM;
1730 arg->atom.atom = token;
1731 type = read_token_item(&token);
1734 if (strcmp(token, "(") == 0) {
1736 type = process_paren(event, arg, &token);
1740 /* handle single ops */
1741 arg->type = PRINT_OP;
1743 arg->op.left = NULL;
1744 type = process_op(event, arg, &token);
1748 case EVENT_ERROR ... EVENT_NEWLINE:
1750 die("unexpected type %d", type);
1757 static int event_read_print_args(struct event *event, struct print_arg **list)
1759 enum event_type type = EVENT_ERROR;
1760 struct print_arg *arg;
1765 if (type == EVENT_NEWLINE) {
1767 type = read_token_item(&token);
1771 arg = malloc_or_die(sizeof(*arg));
1772 memset(arg, 0, sizeof(*arg));
1774 type = process_arg(event, arg, &token);
1776 if (type == EVENT_ERROR) {
1784 if (type == EVENT_OP) {
1785 type = process_op(event, arg, &token);
1790 if (type == EVENT_DELIM && strcmp(token, ",") == 0) {
1797 } while (type != EVENT_NONE);
1799 if (type != EVENT_NONE)
1805 static int event_read_print(struct event *event)
1807 enum event_type type;
1811 if (read_expected_item(EVENT_ITEM, "print") < 0)
1814 if (read_expected(EVENT_ITEM, "fmt") < 0)
1817 if (read_expected(EVENT_OP, ":") < 0)
1820 if (read_expect_type(EVENT_DQUOTE, &token) < 0)
1824 event->print_fmt.format = token;
1825 event->print_fmt.args = NULL;
1827 /* ok to have no arg */
1828 type = read_token_item(&token);
1830 if (type == EVENT_NONE)
1833 /* Handle concatination of print lines */
1834 if (type == EVENT_DQUOTE) {
1837 cat = malloc_or_die(strlen(event->print_fmt.format) +
1839 strcpy(cat, event->print_fmt.format);
1842 free_token(event->print_fmt.format);
1843 event->print_fmt.format = NULL;
1848 if (test_type_token(type, token, EVENT_DELIM, ","))
1853 ret = event_read_print_args(event, &event->print_fmt.args);
1864 static struct format_field *
1865 find_common_field(struct event *event, const char *name)
1867 struct format_field *format;
1869 for (format = event->format.common_fields;
1870 format; format = format->next) {
1871 if (strcmp(format->name, name) == 0)
1878 static struct format_field *
1879 find_field(struct event *event, const char *name)
1881 struct format_field *format;
1883 for (format = event->format.fields;
1884 format; format = format->next) {
1885 if (strcmp(format->name, name) == 0)
1892 static struct format_field *
1893 find_any_field(struct event *event, const char *name)
1895 struct format_field *format;
1897 format = find_common_field(event, name);
1900 return find_field(event, name);
1903 unsigned long long read_size(void *ptr, int size)
1907 return *(unsigned char *)ptr;
1909 return data2host2(ptr);
1911 return data2host4(ptr);
1913 return data2host8(ptr);
1921 raw_field_value(struct event *event, const char *name, void *data)
1923 struct format_field *field;
1925 field = find_any_field(event, name);
1929 return read_size(data + field->offset, field->size);
1932 void *raw_field_ptr(struct event *event, const char *name, void *data)
1934 struct format_field *field;
1936 field = find_any_field(event, name);
1940 if (field->flags & FIELD_IS_DYNAMIC) {
1943 offset = *(int *)(data + field->offset);
1946 return data + offset;
1949 return data + field->offset;
1952 static int get_common_info(const char *type, int *offset, int *size)
1954 struct event *event;
1955 struct format_field *field;
1958 * All events should have the same common elements.
1959 * Pick any event to find where the type is;
1962 die("no event_list!");
1965 field = find_common_field(event, type);
1967 die("field '%s' not found", type);
1969 *offset = field->offset;
1970 *size = field->size;
1975 static int __parse_common(void *data, int *size, int *offset,
1981 ret = get_common_info(name, offset, size);
1985 return read_size(data + *offset, *size);
1988 int trace_parse_common_type(void *data)
1990 static int type_offset;
1991 static int type_size;
1993 return __parse_common(data, &type_size, &type_offset,
1997 int trace_parse_common_pid(void *data)
1999 static int pid_offset;
2000 static int pid_size;
2002 return __parse_common(data, &pid_size, &pid_offset,
2006 int parse_common_pc(void *data)
2008 static int pc_offset;
2011 return __parse_common(data, &pc_size, &pc_offset,
2012 "common_preempt_count");
2015 int parse_common_flags(void *data)
2017 static int flags_offset;
2018 static int flags_size;
2020 return __parse_common(data, &flags_size, &flags_offset,
2024 int parse_common_lock_depth(void *data)
2026 static int ld_offset;
2030 ret = __parse_common(data, &ld_size, &ld_offset,
2031 "common_lock_depth");
2038 struct event *trace_find_event(int id)
2040 struct event *event;
2042 for (event = event_list; event; event = event->next) {
2043 if (event->id == id)
2049 struct event *trace_find_next_event(struct event *event)
2057 static unsigned long long eval_num_arg(void *data, int size,
2058 struct event *event, struct print_arg *arg)
2060 unsigned long long val = 0;
2061 unsigned long long left, right;
2062 struct print_arg *larg;
2064 switch (arg->type) {
2069 return strtoull(arg->atom.atom, NULL, 0);
2071 if (!arg->field.field) {
2072 arg->field.field = find_any_field(event, arg->field.name);
2073 if (!arg->field.field)
2074 die("field %s not found", arg->field.name);
2076 /* must be a number */
2077 val = read_size(data + arg->field.field->offset,
2078 arg->field.field->size);
2084 return eval_num_arg(data, size, event, arg->typecast.item);
2089 if (strcmp(arg->op.op, "[") == 0) {
2091 * Arrays are special, since we don't want
2092 * to read the arg as is.
2094 if (arg->op.left->type != PRINT_FIELD)
2095 goto default_op; /* oops, all bets off */
2096 larg = arg->op.left;
2097 if (!larg->field.field) {
2099 find_any_field(event, larg->field.name);
2100 if (!larg->field.field)
2101 die("field %s not found", larg->field.name);
2103 right = eval_num_arg(data, size, event, arg->op.right);
2104 val = read_size(data + larg->field.field->offset +
2105 right * long_size, long_size);
2109 left = eval_num_arg(data, size, event, arg->op.left);
2110 right = eval_num_arg(data, size, event, arg->op.right);
2111 switch (arg->op.op[0]) {
2114 val = left || right;
2120 val = left && right;
2125 switch (arg->op.op[1]) {
2130 val = left << right;
2133 val = left <= right;
2136 die("unknown op '%s'", arg->op.op);
2140 switch (arg->op.op[1]) {
2145 val = left >> right;
2148 val = left >= right;
2151 die("unknown op '%s'", arg->op.op);
2155 if (arg->op.op[1] != '=')
2156 die("unknown op '%s'", arg->op.op);
2157 val = left == right;
2166 die("unknown op '%s'", arg->op.op);
2169 default: /* not sure what to do there */
2177 unsigned long long value;
2180 static const struct flag flags[] = {
2181 { "HI_SOFTIRQ", 0 },
2182 { "TIMER_SOFTIRQ", 1 },
2183 { "NET_TX_SOFTIRQ", 2 },
2184 { "NET_RX_SOFTIRQ", 3 },
2185 { "BLOCK_SOFTIRQ", 4 },
2186 { "BLOCK_IOPOLL_SOFTIRQ", 5 },
2187 { "TASKLET_SOFTIRQ", 6 },
2188 { "SCHED_SOFTIRQ", 7 },
2189 { "HRTIMER_SOFTIRQ", 8 },
2190 { "RCU_SOFTIRQ", 9 },
2192 { "HRTIMER_NORESTART", 0 },
2193 { "HRTIMER_RESTART", 1 },
2196 unsigned long long eval_flag(const char *flag)
2201 * Some flags in the format files do not get converted.
2202 * If the flag is not numeric, see if it is something that
2203 * we already know about.
2205 if (isdigit(flag[0]))
2206 return strtoull(flag, NULL, 0);
2208 for (i = 0; i < (int)(sizeof(flags)/sizeof(flags[0])); i++)
2209 if (strcmp(flags[i].name, flag) == 0)
2210 return flags[i].value;
2215 static void print_str_arg(void *data, int size,
2216 struct event *event, struct print_arg *arg)
2218 struct print_flag_sym *flag;
2219 unsigned long long val, fval;
2223 switch (arg->type) {
2228 printf("%s", arg->atom.atom);
2231 if (!arg->field.field) {
2232 arg->field.field = find_any_field(event, arg->field.name);
2233 if (!arg->field.field)
2234 die("field %s not found", arg->field.name);
2236 str = malloc_or_die(arg->field.field->size + 1);
2237 memcpy(str, data + arg->field.field->offset,
2238 arg->field.field->size);
2239 str[arg->field.field->size] = 0;
2244 val = eval_num_arg(data, size, event, arg->flags.field);
2246 for (flag = arg->flags.flags; flag; flag = flag->next) {
2247 fval = eval_flag(flag->value);
2248 if (!val && !fval) {
2249 printf("%s", flag->str);
2252 if (fval && (val & fval) == fval) {
2253 if (print && arg->flags.delim)
2254 printf("%s", arg->flags.delim);
2255 printf("%s", flag->str);
2262 val = eval_num_arg(data, size, event, arg->symbol.field);
2263 for (flag = arg->symbol.symbols; flag; flag = flag->next) {
2264 fval = eval_flag(flag->value);
2266 printf("%s", flag->str);
2274 case PRINT_STRING: {
2277 if (arg->string.offset == -1) {
2278 struct format_field *f;
2280 f = find_any_field(event, arg->string.string);
2281 arg->string.offset = f->offset;
2283 str_offset = *(int *)(data + arg->string.offset);
2284 str_offset &= 0xffff;
2285 printf("%s", ((char *)data) + str_offset);
2290 * The only op for string should be ? :
2292 if (arg->op.op[0] != '?')
2294 val = eval_num_arg(data, size, event, arg->op.left);
2296 print_str_arg(data, size, event, arg->op.right->op.left);
2298 print_str_arg(data, size, event, arg->op.right->op.right);
2306 static struct print_arg *make_bprint_args(char *fmt, void *data, int size, struct event *event)
2308 static struct format_field *field, *ip_field;
2309 struct print_arg *args, *arg, **next;
2310 unsigned long long ip, val;
2315 field = find_field(event, "buf");
2317 die("can't find buffer field for binary printk");
2318 ip_field = find_field(event, "ip");
2320 die("can't find ip field for binary printk");
2323 ip = read_size(data + ip_field->offset, ip_field->size);
2326 * The first arg is the IP pointer.
2328 args = malloc_or_die(sizeof(*args));
2333 arg->type = PRINT_ATOM;
2334 arg->atom.atom = malloc_or_die(32);
2335 sprintf(arg->atom.atom, "%lld", ip);
2337 /* skip the first "%pf : " */
2338 for (ptr = fmt + 6, bptr = data + field->offset;
2339 bptr < data + size && *ptr; ptr++) {
2363 /* the pointers are always 4 bytes aligned */
2364 bptr = (void *)(((unsigned long)bptr + 3) &
2376 val = read_size(bptr, ls);
2378 arg = malloc_or_die(sizeof(*arg));
2380 arg->type = PRINT_ATOM;
2381 arg->atom.atom = malloc_or_die(32);
2382 sprintf(arg->atom.atom, "%lld", val);
2387 arg = malloc_or_die(sizeof(*arg));
2389 arg->type = PRINT_STRING;
2390 arg->string.string = strdup(bptr);
2391 bptr += strlen(bptr) + 1;
2403 static void free_args(struct print_arg *args)
2405 struct print_arg *next;
2410 if (args->type == PRINT_ATOM)
2411 free(args->atom.atom);
2413 free(args->string.string);
2419 static char *get_bprint_format(void *data, int size __unused, struct event *event)
2421 unsigned long long addr;
2422 static struct format_field *field;
2423 struct printk_map *printk;
2428 field = find_field(event, "fmt");
2430 die("can't find format field for binary printk");
2431 printf("field->offset = %d size=%d\n", field->offset, field->size);
2434 addr = read_size(data + field->offset, field->size);
2436 printk = find_printk(addr);
2438 format = malloc_or_die(45);
2439 sprintf(format, "%%pf : (NO FORMAT FOUND at %llx)\n",
2445 /* Remove any quotes. */
2448 format = malloc_or_die(strlen(p) + 10);
2449 sprintf(format, "%s : %s", "%pf", p);
2450 /* remove ending quotes and new line since we will add one too */
2451 p = format + strlen(format) - 1;
2456 if (strcmp(p, "\\n") == 0)
2462 static void pretty_print(void *data, int size, struct event *event)
2464 struct print_fmt *print_fmt = &event->print_fmt;
2465 struct print_arg *arg = print_fmt->args;
2466 struct print_arg *args = NULL;
2467 const char *ptr = print_fmt->format;
2468 unsigned long long val;
2469 struct func_map *func;
2470 const char *saveptr;
2471 char *bprint_fmt = NULL;
2477 if (event->flags & EVENT_FL_ISFUNC)
2478 ptr = " %pF <-- %pF";
2480 if (event->flags & EVENT_FL_ISBPRINT) {
2481 bprint_fmt = get_bprint_format(data, size, event);
2482 args = make_bprint_args(bprint_fmt, data, size, event);
2487 for (; *ptr; ptr++) {
2509 } else if (*ptr == '%') {
2534 if (*(ptr+1) == 'F' ||
2547 die("no argument match");
2549 len = ((unsigned long)ptr + 1) -
2550 (unsigned long)saveptr;
2552 /* should never happen */
2556 memcpy(format, saveptr, len);
2559 val = eval_num_arg(data, size, event, arg);
2563 func = find_func(val);
2565 printf("%s", func->func);
2566 if (show_func == 'F')
2574 printf(format, (int)val);
2577 printf(format, (long)val);
2580 printf(format, (long long)val);
2583 die("bad count (%d)", ls);
2588 die("no matching argument");
2590 print_str_arg(data, size, event, arg);
2594 printf(">%c<", *ptr);
2607 static inline int log10_cpu(int nb)
2616 static void print_lat_fmt(void *data, int size __unused)
2618 unsigned int lat_flags;
2624 lat_flags = parse_common_flags(data);
2625 pc = parse_common_pc(data);
2626 lock_depth = parse_common_lock_depth(data);
2628 hardirq = lat_flags & TRACE_FLAG_HARDIRQ;
2629 softirq = lat_flags & TRACE_FLAG_SOFTIRQ;
2632 (lat_flags & TRACE_FLAG_IRQS_OFF) ? 'd' :
2633 (lat_flags & TRACE_FLAG_IRQS_NOSUPPORT) ?
2635 (lat_flags & TRACE_FLAG_NEED_RESCHED) ?
2637 (hardirq && softirq) ? 'H' :
2638 hardirq ? 'h' : softirq ? 's' : '.');
2648 printf("%d", lock_depth);
2651 /* taken from Linux, written by Frederic Weisbecker */
2652 static void print_graph_cpu(int cpu)
2655 int log10_this = log10_cpu(cpu);
2656 int log10_all = log10_cpu(cpus);
2660 * Start with a space character - to make it stand out
2661 * to the right a bit when trace output is pasted into
2667 * Tricky - we space the CPU field according to the max
2668 * number of online CPUs. On a 2-cpu system it would take
2669 * a maximum of 1 digit - on a 128 cpu system it would
2670 * take up to 3 digits:
2672 for (i = 0; i < log10_all - log10_this; i++)
2675 printf("%d) ", cpu);
2678 #define TRACE_GRAPH_PROCINFO_LENGTH 14
2679 #define TRACE_GRAPH_INDENT 2
2681 static void print_graph_proc(int pid, const char *comm)
2683 /* sign + log10(MAX_INT) + '\0' */
2689 sprintf(pid_str, "%d", pid);
2691 /* 1 stands for the "-" character */
2692 len = strlen(comm) + strlen(pid_str) + 1;
2694 if (len < TRACE_GRAPH_PROCINFO_LENGTH)
2695 spaces = TRACE_GRAPH_PROCINFO_LENGTH - len;
2697 /* First spaces to align center */
2698 for (i = 0; i < spaces / 2; i++)
2701 printf("%s-%s", comm, pid_str);
2703 /* Last spaces to align center */
2704 for (i = 0; i < spaces - (spaces / 2); i++)
2708 static struct record *
2709 get_return_for_leaf(int cpu, int cur_pid, unsigned long long cur_func,
2710 struct record *next)
2712 struct format_field *field;
2713 struct event *event;
2718 type = trace_parse_common_type(next->data);
2719 event = trace_find_event(type);
2723 if (!(event->flags & EVENT_FL_ISFUNCRET))
2726 pid = trace_parse_common_pid(next->data);
2727 field = find_field(event, "func");
2729 die("function return does not have field func");
2731 val = read_size(next->data + field->offset, field->size);
2733 if (cur_pid != pid || cur_func != val)
2736 /* this is a leaf, now advance the iterator */
2737 return trace_read_data(cpu);
2740 /* Signal a overhead of time execution to the output */
2741 static void print_graph_overhead(unsigned long long duration)
2743 /* Non nested entry or return */
2744 if (duration == ~0ULL)
2745 return (void)printf(" ");
2747 /* Duration exceeded 100 msecs */
2748 if (duration > 100000ULL)
2749 return (void)printf("! ");
2751 /* Duration exceeded 10 msecs */
2752 if (duration > 10000ULL)
2753 return (void)printf("+ ");
2758 static void print_graph_duration(unsigned long long duration)
2760 unsigned long usecs = duration / 1000;
2761 unsigned long nsecs_rem = duration % 1000;
2762 /* log10(ULONG_MAX) + '\0' */
2768 sprintf(msecs_str, "%lu", usecs);
2771 len = printf("%lu", usecs);
2773 /* Print nsecs (we don't want to exceed 7 numbers) */
2775 snprintf(nsecs_str, 8 - len, "%03lu", nsecs_rem);
2776 len += printf(".%s", nsecs_str);
2781 /* Print remaining spaces to fit the row's width */
2782 for (i = len; i < 7; i++)
2789 print_graph_entry_leaf(struct event *event, void *data, struct record *ret_rec)
2791 unsigned long long rettime, calltime;
2792 unsigned long long duration, depth;
2793 unsigned long long val;
2794 struct format_field *field;
2795 struct func_map *func;
2796 struct event *ret_event;
2800 type = trace_parse_common_type(ret_rec->data);
2801 ret_event = trace_find_event(type);
2803 field = find_field(ret_event, "rettime");
2805 die("can't find rettime in return graph");
2806 rettime = read_size(ret_rec->data + field->offset, field->size);
2808 field = find_field(ret_event, "calltime");
2810 die("can't find rettime in return graph");
2811 calltime = read_size(ret_rec->data + field->offset, field->size);
2813 duration = rettime - calltime;
2816 print_graph_overhead(duration);
2819 print_graph_duration(duration);
2821 field = find_field(event, "depth");
2823 die("can't find depth in entry graph");
2824 depth = read_size(data + field->offset, field->size);
2827 for (i = 0; i < (int)(depth * TRACE_GRAPH_INDENT); i++)
2830 field = find_field(event, "func");
2832 die("can't find func in entry graph");
2833 val = read_size(data + field->offset, field->size);
2834 func = find_func(val);
2837 printf("%s();", func->func);
2839 printf("%llx();", val);
2842 static void print_graph_nested(struct event *event, void *data)
2844 struct format_field *field;
2845 unsigned long long depth;
2846 unsigned long long val;
2847 struct func_map *func;
2851 print_graph_overhead(-1);
2856 field = find_field(event, "depth");
2858 die("can't find depth in entry graph");
2859 depth = read_size(data + field->offset, field->size);
2862 for (i = 0; i < (int)(depth * TRACE_GRAPH_INDENT); i++)
2865 field = find_field(event, "func");
2867 die("can't find func in entry graph");
2868 val = read_size(data + field->offset, field->size);
2869 func = find_func(val);
2872 printf("%s() {", func->func);
2874 printf("%llx() {", val);
2878 pretty_print_func_ent(void *data, int size, struct event *event,
2879 int cpu, int pid, const char *comm,
2880 unsigned long secs, unsigned long usecs)
2882 struct format_field *field;
2887 printf("%5lu.%06lu | ", secs, usecs);
2889 print_graph_cpu(cpu);
2890 print_graph_proc(pid, comm);
2894 if (latency_format) {
2895 print_lat_fmt(data, size);
2899 field = find_field(event, "func");
2901 die("function entry does not have func field");
2903 val = read_size(data + field->offset, field->size);
2906 * peek_data may unmap the data pointer. Copy it first.
2908 copy_data = malloc_or_die(size);
2909 memcpy(copy_data, data, size);
2912 rec = trace_peek_data(cpu);
2914 rec = get_return_for_leaf(cpu, pid, val, rec);
2916 print_graph_entry_leaf(event, data, rec);
2920 print_graph_nested(event, data);
2926 pretty_print_func_ret(void *data, int size __unused, struct event *event,
2927 int cpu, int pid, const char *comm,
2928 unsigned long secs, unsigned long usecs)
2930 unsigned long long rettime, calltime;
2931 unsigned long long duration, depth;
2932 struct format_field *field;
2935 printf("%5lu.%06lu | ", secs, usecs);
2937 print_graph_cpu(cpu);
2938 print_graph_proc(pid, comm);
2942 if (latency_format) {
2943 print_lat_fmt(data, size);
2947 field = find_field(event, "rettime");
2949 die("can't find rettime in return graph");
2950 rettime = read_size(data + field->offset, field->size);
2952 field = find_field(event, "calltime");
2954 die("can't find calltime in return graph");
2955 calltime = read_size(data + field->offset, field->size);
2957 duration = rettime - calltime;
2960 print_graph_overhead(duration);
2963 print_graph_duration(duration);
2965 field = find_field(event, "depth");
2967 die("can't find depth in entry graph");
2968 depth = read_size(data + field->offset, field->size);
2971 for (i = 0; i < (int)(depth * TRACE_GRAPH_INDENT); i++)
2978 pretty_print_func_graph(void *data, int size, struct event *event,
2979 int cpu, int pid, const char *comm,
2980 unsigned long secs, unsigned long usecs)
2982 if (event->flags & EVENT_FL_ISFUNCENT)
2983 pretty_print_func_ent(data, size, event,
2984 cpu, pid, comm, secs, usecs);
2985 else if (event->flags & EVENT_FL_ISFUNCRET)
2986 pretty_print_func_ret(data, size, event,
2987 cpu, pid, comm, secs, usecs);
2991 void print_event(int cpu, void *data, int size, unsigned long long nsecs,
2994 struct event *event;
2996 unsigned long usecs;
3000 secs = nsecs / NSECS_PER_SEC;
3001 nsecs -= secs * NSECS_PER_SEC;
3002 usecs = nsecs / NSECS_PER_USEC;
3004 type = trace_parse_common_type(data);
3006 event = trace_find_event(type);
3008 warning("ug! no event found for type %d", type);
3012 pid = trace_parse_common_pid(data);
3014 if (event->flags & (EVENT_FL_ISFUNCENT | EVENT_FL_ISFUNCRET))
3015 return pretty_print_func_graph(data, size, event, cpu,
3016 pid, comm, secs, usecs);
3018 if (latency_format) {
3019 printf("%8.8s-%-5d %3d",
3021 print_lat_fmt(data, size);
3023 printf("%16s-%-5d [%03d]", comm, pid, cpu);
3025 printf(" %5lu.%06lu: %s: ", secs, usecs, event->name);
3027 if (event->flags & EVENT_FL_FAILED) {
3028 printf("EVENT '%s' FAILED TO PARSE\n",
3033 pretty_print(data, size, event);
3037 static void print_fields(struct print_flag_sym *field)
3039 printf("{ %s, %s }", field->value, field->str);
3042 print_fields(field->next);
3046 static void print_args(struct print_arg *args)
3048 int print_paren = 1;
3050 switch (args->type) {
3055 printf("%s", args->atom.atom);
3058 printf("REC->%s", args->field.name);
3061 printf("__print_flags(");
3062 print_args(args->flags.field);
3063 printf(", %s, ", args->flags.delim);
3064 print_fields(args->flags.flags);
3068 printf("__print_symbolic(");
3069 print_args(args->symbol.field);
3071 print_fields(args->symbol.symbols);
3075 printf("__get_str(%s)", args->string.string);
3078 printf("(%s)", args->typecast.type);
3079 print_args(args->typecast.item);
3082 if (strcmp(args->op.op, ":") == 0)
3086 print_args(args->op.left);
3087 printf(" %s ", args->op.op);
3088 print_args(args->op.right);
3093 /* we should warn... */
3098 print_args(args->next);
3102 int parse_ftrace_file(char *buf, unsigned long size)
3104 struct format_field *field;
3105 struct print_arg *arg, **list;
3106 struct event *event;
3109 init_input_buf(buf, size);
3111 event = alloc_event();
3115 event->flags |= EVENT_FL_ISFTRACE;
3117 event->name = event_read_name();
3119 die("failed to read ftrace event name");
3121 if (strcmp(event->name, "function") == 0)
3122 event->flags |= EVENT_FL_ISFUNC;
3124 else if (strcmp(event->name, "funcgraph_entry") == 0)
3125 event->flags |= EVENT_FL_ISFUNCENT;
3127 else if (strcmp(event->name, "funcgraph_exit") == 0)
3128 event->flags |= EVENT_FL_ISFUNCRET;
3130 else if (strcmp(event->name, "bprint") == 0)
3131 event->flags |= EVENT_FL_ISBPRINT;
3133 event->id = event_read_id();
3135 die("failed to read ftrace event id");
3139 ret = event_read_format(event);
3141 die("failed to read ftrace event format");
3143 ret = event_read_print(event);
3145 die("failed to read ftrace event print fmt");
3147 /* New ftrace handles args */
3151 * The arguments for ftrace files are parsed by the fields.
3152 * Set up the fields as their arguments.
3154 list = &event->print_fmt.args;
3155 for (field = event->format.fields; field; field = field->next) {
3156 arg = malloc_or_die(sizeof(*arg));
3157 memset(arg, 0, sizeof(*arg));
3160 arg->type = PRINT_FIELD;
3161 arg->field.name = field->name;
3162 arg->field.field = field;
3167 int parse_event_file(char *buf, unsigned long size, char *sys)
3169 struct event *event;
3172 init_input_buf(buf, size);
3174 event = alloc_event();
3178 event->name = event_read_name();
3180 die("failed to read event name");
3182 event->id = event_read_id();
3184 die("failed to read event id");
3186 ret = event_read_format(event);
3188 warning("failed to read event format for %s", event->name);
3192 ret = event_read_print(event);
3194 warning("failed to read event print fmt for %s", event->name);
3198 event->system = strdup(sys);
3200 #define PRINT_ARGS 0
3201 if (PRINT_ARGS && event->print_fmt.args)
3202 print_args(event->print_fmt.args);
3208 event->flags |= EVENT_FL_FAILED;
3209 /* still add it even if it failed */
3214 void parse_set_info(int nr_cpus, int long_sz)
3217 long_size = long_sz;
3220 int common_pc(struct scripting_context *context)
3222 return parse_common_pc(context->event_data);
3225 int common_flags(struct scripting_context *context)
3227 return parse_common_flags(context->event_data);
3230 int common_lock_depth(struct scripting_context *context)
3232 return parse_common_lock_depth(context->event_data);