blob: 63d02be5480f10d0723751ba67d5be3be7d3a5e0 [file] [log] [blame]
Steven Rostedtf7d82352012-04-06 00:47:53 +02001/*
2 * Copyright (C) 2009, 2010 Red Hat Inc, Steven Rostedt <srostedt@redhat.com>
3 *
4 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation;
8 * version 2.1 of the License (not later!)
9 *
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 Lesser General Public License for more details.
14 *
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 *
19 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
20 *
21 * The parts for function graph printing was taken and modified from the
22 * Linux Kernel that were written by
23 * - Copyright (C) 2009 Frederic Weisbecker,
24 * Frederic Weisbecker gave his permission to relicense the code to
25 * the Lesser General Public License.
26 */
27#define _GNU_SOURCE
28#include <stdio.h>
29#include <stdlib.h>
30#include <string.h>
31#include <stdarg.h>
32#include <ctype.h>
33#include <errno.h>
34
35#include "event-parse.h"
Steven Rostedt668fe012012-04-06 00:47:55 +020036#include "event-utils.h"
Steven Rostedtf7d82352012-04-06 00:47:53 +020037
38static const char *input_buf;
39static unsigned long long input_buf_ptr;
40static unsigned long long input_buf_siz;
41
Tom Zanussi5205aec2012-04-06 00:47:58 +020042static int is_flag_field;
43static int is_symbolic_field;
44
Steven Rostedtf7d82352012-04-06 00:47:53 +020045static int show_warning = 1;
46
47#define do_warning(fmt, ...) \
48 do { \
49 if (show_warning) \
50 warning(fmt, ##__VA_ARGS__); \
51 } while (0)
52
53static void init_input_buf(const char *buf, unsigned long long size)
54{
55 input_buf = buf;
56 input_buf_siz = size;
57 input_buf_ptr = 0;
58}
59
60const char *pevent_get_input_buf(void)
61{
62 return input_buf;
63}
64
65unsigned long long pevent_get_input_buf_ptr(void)
66{
67 return input_buf_ptr;
68}
69
70struct event_handler {
71 struct event_handler *next;
72 int id;
73 const char *sys_name;
74 const char *event_name;
75 pevent_event_handler_func func;
76 void *context;
77};
78
79struct pevent_func_params {
80 struct pevent_func_params *next;
81 enum pevent_func_arg_type type;
82};
83
84struct pevent_function_handler {
85 struct pevent_function_handler *next;
86 enum pevent_func_arg_type ret_type;
87 char *name;
88 pevent_func_handler func;
89 struct pevent_func_params *params;
90 int nr_args;
91};
92
93static unsigned long long
94process_defined_func(struct trace_seq *s, void *data, int size,
95 struct event_format *event, struct print_arg *arg);
96
97static void free_func_handle(struct pevent_function_handler *func);
98
99/**
100 * pevent_buffer_init - init buffer for parsing
101 * @buf: buffer to parse
102 * @size: the size of the buffer
103 *
104 * For use with pevent_read_token(), this initializes the internal
105 * buffer that pevent_read_token() will parse.
106 */
107void pevent_buffer_init(const char *buf, unsigned long long size)
108{
109 init_input_buf(buf, size);
110}
111
112void breakpoint(void)
113{
114 static int x;
115 x++;
116}
117
118struct print_arg *alloc_arg(void)
119{
120 struct print_arg *arg;
121
122 arg = malloc_or_die(sizeof(*arg));
123 if (!arg)
124 return NULL;
125 memset(arg, 0, sizeof(*arg));
126
127 return arg;
128}
129
130struct cmdline {
131 char *comm;
132 int pid;
133};
134
135static int cmdline_cmp(const void *a, const void *b)
136{
137 const struct cmdline *ca = a;
138 const struct cmdline *cb = b;
139
140 if (ca->pid < cb->pid)
141 return -1;
142 if (ca->pid > cb->pid)
143 return 1;
144
145 return 0;
146}
147
148struct cmdline_list {
149 struct cmdline_list *next;
150 char *comm;
151 int pid;
152};
153
154static int cmdline_init(struct pevent *pevent)
155{
156 struct cmdline_list *cmdlist = pevent->cmdlist;
157 struct cmdline_list *item;
158 struct cmdline *cmdlines;
159 int i;
160
161 cmdlines = malloc_or_die(sizeof(*cmdlines) * pevent->cmdline_count);
162
163 i = 0;
164 while (cmdlist) {
165 cmdlines[i].pid = cmdlist->pid;
166 cmdlines[i].comm = cmdlist->comm;
167 i++;
168 item = cmdlist;
169 cmdlist = cmdlist->next;
170 free(item);
171 }
172
173 qsort(cmdlines, pevent->cmdline_count, sizeof(*cmdlines), cmdline_cmp);
174
175 pevent->cmdlines = cmdlines;
176 pevent->cmdlist = NULL;
177
178 return 0;
179}
180
181static char *find_cmdline(struct pevent *pevent, int pid)
182{
183 const struct cmdline *comm;
184 struct cmdline key;
185
186 if (!pid)
187 return "<idle>";
188
189 if (!pevent->cmdlines)
190 cmdline_init(pevent);
191
192 key.pid = pid;
193
194 comm = bsearch(&key, pevent->cmdlines, pevent->cmdline_count,
195 sizeof(*pevent->cmdlines), cmdline_cmp);
196
197 if (comm)
198 return comm->comm;
199 return "<...>";
200}
201
202/**
203 * pevent_pid_is_registered - return if a pid has a cmdline registered
204 * @pevent: handle for the pevent
205 * @pid: The pid to check if it has a cmdline registered with.
206 *
207 * Returns 1 if the pid has a cmdline mapped to it
208 * 0 otherwise.
209 */
210int pevent_pid_is_registered(struct pevent *pevent, int pid)
211{
212 const struct cmdline *comm;
213 struct cmdline key;
214
215 if (!pid)
216 return 1;
217
218 if (!pevent->cmdlines)
219 cmdline_init(pevent);
220
221 key.pid = pid;
222
223 comm = bsearch(&key, pevent->cmdlines, pevent->cmdline_count,
224 sizeof(*pevent->cmdlines), cmdline_cmp);
225
226 if (comm)
227 return 1;
228 return 0;
229}
230
231/*
232 * If the command lines have been converted to an array, then
233 * we must add this pid. This is much slower than when cmdlines
234 * are added before the array is initialized.
235 */
236static int add_new_comm(struct pevent *pevent, const char *comm, int pid)
237{
238 struct cmdline *cmdlines = pevent->cmdlines;
239 const struct cmdline *cmdline;
240 struct cmdline key;
241
242 if (!pid)
243 return 0;
244
245 /* avoid duplicates */
246 key.pid = pid;
247
248 cmdline = bsearch(&key, pevent->cmdlines, pevent->cmdline_count,
249 sizeof(*pevent->cmdlines), cmdline_cmp);
250 if (cmdline) {
251 errno = EEXIST;
252 return -1;
253 }
254
255 cmdlines = realloc(cmdlines, sizeof(*cmdlines) * (pevent->cmdline_count + 1));
256 if (!cmdlines) {
257 errno = ENOMEM;
258 return -1;
259 }
260
261 cmdlines[pevent->cmdline_count].pid = pid;
262 cmdlines[pevent->cmdline_count].comm = strdup(comm);
263 if (!cmdlines[pevent->cmdline_count].comm)
264 die("malloc comm");
265
266 if (cmdlines[pevent->cmdline_count].comm)
267 pevent->cmdline_count++;
268
269 qsort(cmdlines, pevent->cmdline_count, sizeof(*cmdlines), cmdline_cmp);
270 pevent->cmdlines = cmdlines;
271
272 return 0;
273}
274
275/**
276 * pevent_register_comm - register a pid / comm mapping
277 * @pevent: handle for the pevent
278 * @comm: the command line to register
279 * @pid: the pid to map the command line to
280 *
281 * This adds a mapping to search for command line names with
282 * a given pid. The comm is duplicated.
283 */
284int pevent_register_comm(struct pevent *pevent, const char *comm, int pid)
285{
286 struct cmdline_list *item;
287
288 if (pevent->cmdlines)
289 return add_new_comm(pevent, comm, pid);
290
291 item = malloc_or_die(sizeof(*item));
292 item->comm = strdup(comm);
293 if (!item->comm)
294 die("malloc comm");
295 item->pid = pid;
296 item->next = pevent->cmdlist;
297
298 pevent->cmdlist = item;
299 pevent->cmdline_count++;
300
301 return 0;
302}
303
304struct func_map {
305 unsigned long long addr;
306 char *func;
307 char *mod;
308};
309
310struct func_list {
311 struct func_list *next;
312 unsigned long long addr;
313 char *func;
314 char *mod;
315};
316
317static int func_cmp(const void *a, const void *b)
318{
319 const struct func_map *fa = a;
320 const struct func_map *fb = b;
321
322 if (fa->addr < fb->addr)
323 return -1;
324 if (fa->addr > fb->addr)
325 return 1;
326
327 return 0;
328}
329
330/*
331 * We are searching for a record in between, not an exact
332 * match.
333 */
334static int func_bcmp(const void *a, const void *b)
335{
336 const struct func_map *fa = a;
337 const struct func_map *fb = b;
338
339 if ((fa->addr == fb->addr) ||
340
341 (fa->addr > fb->addr &&
342 fa->addr < (fb+1)->addr))
343 return 0;
344
345 if (fa->addr < fb->addr)
346 return -1;
347
348 return 1;
349}
350
351static int func_map_init(struct pevent *pevent)
352{
353 struct func_list *funclist;
354 struct func_list *item;
355 struct func_map *func_map;
356 int i;
357
358 func_map = malloc_or_die(sizeof(*func_map) * (pevent->func_count + 1));
359 funclist = pevent->funclist;
360
361 i = 0;
362 while (funclist) {
363 func_map[i].func = funclist->func;
364 func_map[i].addr = funclist->addr;
365 func_map[i].mod = funclist->mod;
366 i++;
367 item = funclist;
368 funclist = funclist->next;
369 free(item);
370 }
371
372 qsort(func_map, pevent->func_count, sizeof(*func_map), func_cmp);
373
374 /*
375 * Add a special record at the end.
376 */
377 func_map[pevent->func_count].func = NULL;
378 func_map[pevent->func_count].addr = 0;
379 func_map[pevent->func_count].mod = NULL;
380
381 pevent->func_map = func_map;
382 pevent->funclist = NULL;
383
384 return 0;
385}
386
387static struct func_map *
388find_func(struct pevent *pevent, unsigned long long addr)
389{
390 struct func_map *func;
391 struct func_map key;
392
393 if (!pevent->func_map)
394 func_map_init(pevent);
395
396 key.addr = addr;
397
398 func = bsearch(&key, pevent->func_map, pevent->func_count,
399 sizeof(*pevent->func_map), func_bcmp);
400
401 return func;
402}
403
404/**
405 * pevent_find_function - find a function by a given address
406 * @pevent: handle for the pevent
407 * @addr: the address to find the function with
408 *
409 * Returns a pointer to the function stored that has the given
410 * address. Note, the address does not have to be exact, it
411 * will select the function that would contain the address.
412 */
413const char *pevent_find_function(struct pevent *pevent, unsigned long long addr)
414{
415 struct func_map *map;
416
417 map = find_func(pevent, addr);
418 if (!map)
419 return NULL;
420
421 return map->func;
422}
423
424/**
425 * pevent_find_function_address - find a function address by a given address
426 * @pevent: handle for the pevent
427 * @addr: the address to find the function with
428 *
429 * Returns the address the function starts at. This can be used in
430 * conjunction with pevent_find_function to print both the function
431 * name and the function offset.
432 */
433unsigned long long
434pevent_find_function_address(struct pevent *pevent, unsigned long long addr)
435{
436 struct func_map *map;
437
438 map = find_func(pevent, addr);
439 if (!map)
440 return 0;
441
442 return map->addr;
443}
444
445/**
446 * pevent_register_function - register a function with a given address
447 * @pevent: handle for the pevent
448 * @function: the function name to register
449 * @addr: the address the function starts at
450 * @mod: the kernel module the function may be in (NULL for none)
451 *
452 * This registers a function name with an address and module.
453 * The @func passed in is duplicated.
454 */
455int pevent_register_function(struct pevent *pevent, char *func,
456 unsigned long long addr, char *mod)
457{
458 struct func_list *item;
459
460 item = malloc_or_die(sizeof(*item));
461
462 item->next = pevent->funclist;
463 item->func = strdup(func);
464 if (mod)
465 item->mod = strdup(mod);
466 else
467 item->mod = NULL;
468 item->addr = addr;
469
470 pevent->funclist = item;
471
472 pevent->func_count++;
473
474 return 0;
475}
476
477/**
478 * pevent_print_funcs - print out the stored functions
479 * @pevent: handle for the pevent
480 *
481 * This prints out the stored functions.
482 */
483void pevent_print_funcs(struct pevent *pevent)
484{
485 int i;
486
487 if (!pevent->func_map)
488 func_map_init(pevent);
489
490 for (i = 0; i < (int)pevent->func_count; i++) {
491 printf("%016llx %s",
492 pevent->func_map[i].addr,
493 pevent->func_map[i].func);
494 if (pevent->func_map[i].mod)
495 printf(" [%s]\n", pevent->func_map[i].mod);
496 else
497 printf("\n");
498 }
499}
500
501struct printk_map {
502 unsigned long long addr;
503 char *printk;
504};
505
506struct printk_list {
507 struct printk_list *next;
508 unsigned long long addr;
509 char *printk;
510};
511
512static int printk_cmp(const void *a, const void *b)
513{
514 const struct func_map *fa = a;
515 const struct func_map *fb = b;
516
517 if (fa->addr < fb->addr)
518 return -1;
519 if (fa->addr > fb->addr)
520 return 1;
521
522 return 0;
523}
524
525static void printk_map_init(struct pevent *pevent)
526{
527 struct printk_list *printklist;
528 struct printk_list *item;
529 struct printk_map *printk_map;
530 int i;
531
532 printk_map = malloc_or_die(sizeof(*printk_map) * (pevent->printk_count + 1));
533
534 printklist = pevent->printklist;
535
536 i = 0;
537 while (printklist) {
538 printk_map[i].printk = printklist->printk;
539 printk_map[i].addr = printklist->addr;
540 i++;
541 item = printklist;
542 printklist = printklist->next;
543 free(item);
544 }
545
546 qsort(printk_map, pevent->printk_count, sizeof(*printk_map), printk_cmp);
547
548 pevent->printk_map = printk_map;
549 pevent->printklist = NULL;
550}
551
552static struct printk_map *
553find_printk(struct pevent *pevent, unsigned long long addr)
554{
555 struct printk_map *printk;
556 struct printk_map key;
557
558 if (!pevent->printk_map)
559 printk_map_init(pevent);
560
561 key.addr = addr;
562
563 printk = bsearch(&key, pevent->printk_map, pevent->printk_count,
564 sizeof(*pevent->printk_map), printk_cmp);
565
566 return printk;
567}
568
569/**
570 * pevent_register_print_string - register a string by its address
571 * @pevent: handle for the pevent
572 * @fmt: the string format to register
573 * @addr: the address the string was located at
574 *
575 * This registers a string by the address it was stored in the kernel.
576 * The @fmt passed in is duplicated.
577 */
578int pevent_register_print_string(struct pevent *pevent, char *fmt,
579 unsigned long long addr)
580{
581 struct printk_list *item;
582
583 item = malloc_or_die(sizeof(*item));
584
585 item->next = pevent->printklist;
586 pevent->printklist = item;
587 item->printk = strdup(fmt);
588 item->addr = addr;
589
590 pevent->printk_count++;
591
592 return 0;
593}
594
595/**
596 * pevent_print_printk - print out the stored strings
597 * @pevent: handle for the pevent
598 *
599 * This prints the string formats that were stored.
600 */
601void pevent_print_printk(struct pevent *pevent)
602{
603 int i;
604
605 if (!pevent->printk_map)
606 printk_map_init(pevent);
607
608 for (i = 0; i < (int)pevent->printk_count; i++) {
609 printf("%016llx %s\n",
610 pevent->printk_map[i].addr,
611 pevent->printk_map[i].printk);
612 }
613}
614
615static struct event_format *alloc_event(void)
616{
617 struct event_format *event;
618
619 event = malloc_or_die(sizeof(*event));
620 memset(event, 0, sizeof(*event));
621
622 return event;
623}
624
625static void add_event(struct pevent *pevent, struct event_format *event)
626{
627 int i;
628
629 if (!pevent->events)
630 pevent->events = malloc_or_die(sizeof(event));
631 else
632 pevent->events =
633 realloc(pevent->events, sizeof(event) *
634 (pevent->nr_events + 1));
635 if (!pevent->events)
636 die("Can not allocate events");
637
638 for (i = 0; i < pevent->nr_events; i++) {
639 if (pevent->events[i]->id > event->id)
640 break;
641 }
642 if (i < pevent->nr_events)
643 memmove(&pevent->events[i + 1],
644 &pevent->events[i],
645 sizeof(event) * (pevent->nr_events - i));
646
647 pevent->events[i] = event;
648 pevent->nr_events++;
649
650 event->pevent = pevent;
651}
652
653static int event_item_type(enum event_type type)
654{
655 switch (type) {
656 case EVENT_ITEM ... EVENT_SQUOTE:
657 return 1;
658 case EVENT_ERROR ... EVENT_DELIM:
659 default:
660 return 0;
661 }
662}
663
664static void free_flag_sym(struct print_flag_sym *fsym)
665{
666 struct print_flag_sym *next;
667
668 while (fsym) {
669 next = fsym->next;
670 free(fsym->value);
671 free(fsym->str);
672 free(fsym);
673 fsym = next;
674 }
675}
676
677static void free_arg(struct print_arg *arg)
678{
679 struct print_arg *farg;
680
681 if (!arg)
682 return;
683
684 switch (arg->type) {
685 case PRINT_ATOM:
686 free(arg->atom.atom);
687 break;
688 case PRINT_FIELD:
689 free(arg->field.name);
690 break;
691 case PRINT_FLAGS:
692 free_arg(arg->flags.field);
693 free(arg->flags.delim);
694 free_flag_sym(arg->flags.flags);
695 break;
696 case PRINT_SYMBOL:
697 free_arg(arg->symbol.field);
698 free_flag_sym(arg->symbol.symbols);
699 break;
700 case PRINT_TYPE:
701 free(arg->typecast.type);
702 free_arg(arg->typecast.item);
703 break;
704 case PRINT_STRING:
705 case PRINT_BSTRING:
706 free(arg->string.string);
707 break;
708 case PRINT_DYNAMIC_ARRAY:
709 free(arg->dynarray.index);
710 break;
711 case PRINT_OP:
712 free(arg->op.op);
713 free_arg(arg->op.left);
714 free_arg(arg->op.right);
715 break;
716 case PRINT_FUNC:
717 while (arg->func.args) {
718 farg = arg->func.args;
719 arg->func.args = farg->next;
720 free_arg(farg);
721 }
722 break;
723
724 case PRINT_NULL:
725 default:
726 break;
727 }
728
729 free(arg);
730}
731
732static enum event_type get_type(int ch)
733{
734 if (ch == '\n')
735 return EVENT_NEWLINE;
736 if (isspace(ch))
737 return EVENT_SPACE;
738 if (isalnum(ch) || ch == '_')
739 return EVENT_ITEM;
740 if (ch == '\'')
741 return EVENT_SQUOTE;
742 if (ch == '"')
743 return EVENT_DQUOTE;
744 if (!isprint(ch))
745 return EVENT_NONE;
746 if (ch == '(' || ch == ')' || ch == ',')
747 return EVENT_DELIM;
748
749 return EVENT_OP;
750}
751
752static int __read_char(void)
753{
754 if (input_buf_ptr >= input_buf_siz)
755 return -1;
756
757 return input_buf[input_buf_ptr++];
758}
759
760static int __peek_char(void)
761{
762 if (input_buf_ptr >= input_buf_siz)
763 return -1;
764
765 return input_buf[input_buf_ptr];
766}
767
768/**
769 * pevent_peek_char - peek at the next character that will be read
770 *
771 * Returns the next character read, or -1 if end of buffer.
772 */
773int pevent_peek_char(void)
774{
775 return __peek_char();
776}
777
778static enum event_type force_token(const char *str, char **tok);
779
780static enum event_type __read_token(char **tok)
781{
782 char buf[BUFSIZ];
783 int ch, last_ch, quote_ch, next_ch;
784 int i = 0;
785 int tok_size = 0;
786 enum event_type type;
787
788 *tok = NULL;
789
790
791 ch = __read_char();
792 if (ch < 0)
793 return EVENT_NONE;
794
795 type = get_type(ch);
796 if (type == EVENT_NONE)
797 return type;
798
799 buf[i++] = ch;
800
801 switch (type) {
802 case EVENT_NEWLINE:
803 case EVENT_DELIM:
804 *tok = malloc_or_die(2);
805 (*tok)[0] = ch;
806 (*tok)[1] = 0;
807 return type;
808
809 case EVENT_OP:
810 switch (ch) {
811 case '-':
812 next_ch = __peek_char();
813 if (next_ch == '>') {
814 buf[i++] = __read_char();
815 break;
816 }
817 /* fall through */
818 case '+':
819 case '|':
820 case '&':
821 case '>':
822 case '<':
823 last_ch = ch;
824 ch = __peek_char();
825 if (ch != last_ch)
826 goto test_equal;
827 buf[i++] = __read_char();
828 switch (last_ch) {
829 case '>':
830 case '<':
831 goto test_equal;
832 default:
833 break;
834 }
835 break;
836 case '!':
837 case '=':
838 goto test_equal;
839 default: /* what should we do instead? */
840 break;
841 }
842 buf[i] = 0;
843 *tok = strdup(buf);
844 return type;
845
846 test_equal:
847 ch = __peek_char();
848 if (ch == '=')
849 buf[i++] = __read_char();
850 goto out;
851
852 case EVENT_DQUOTE:
853 case EVENT_SQUOTE:
854 /* don't keep quotes */
855 i--;
856 quote_ch = ch;
857 last_ch = 0;
858 concat:
859 do {
860 if (i == (BUFSIZ - 1)) {
861 buf[i] = 0;
862 if (*tok) {
863 *tok = realloc(*tok, tok_size + BUFSIZ);
864 if (!*tok)
865 return EVENT_NONE;
866 strcat(*tok, buf);
867 } else
868 *tok = strdup(buf);
869
870 if (!*tok)
871 return EVENT_NONE;
872 tok_size += BUFSIZ;
873 i = 0;
874 }
875 last_ch = ch;
876 ch = __read_char();
877 buf[i++] = ch;
878 /* the '\' '\' will cancel itself */
879 if (ch == '\\' && last_ch == '\\')
880 last_ch = 0;
881 } while (ch != quote_ch || last_ch == '\\');
882 /* remove the last quote */
883 i--;
884
885 /*
886 * For strings (double quotes) check the next token.
887 * If it is another string, concatinate the two.
888 */
889 if (type == EVENT_DQUOTE) {
890 unsigned long long save_input_buf_ptr = input_buf_ptr;
891
892 do {
893 ch = __read_char();
894 } while (isspace(ch));
895 if (ch == '"')
896 goto concat;
897 input_buf_ptr = save_input_buf_ptr;
898 }
899
900 goto out;
901
902 case EVENT_ERROR ... EVENT_SPACE:
903 case EVENT_ITEM:
904 default:
905 break;
906 }
907
908 while (get_type(__peek_char()) == type) {
909 if (i == (BUFSIZ - 1)) {
910 buf[i] = 0;
911 if (*tok) {
912 *tok = realloc(*tok, tok_size + BUFSIZ);
913 if (!*tok)
914 return EVENT_NONE;
915 strcat(*tok, buf);
916 } else
917 *tok = strdup(buf);
918
919 if (!*tok)
920 return EVENT_NONE;
921 tok_size += BUFSIZ;
922 i = 0;
923 }
924 ch = __read_char();
925 buf[i++] = ch;
926 }
927
928 out:
929 buf[i] = 0;
930 if (*tok) {
931 *tok = realloc(*tok, tok_size + i);
932 if (!*tok)
933 return EVENT_NONE;
934 strcat(*tok, buf);
935 } else
936 *tok = strdup(buf);
937 if (!*tok)
938 return EVENT_NONE;
939
940 if (type == EVENT_ITEM) {
941 /*
942 * Older versions of the kernel has a bug that
943 * creates invalid symbols and will break the mac80211
944 * parsing. This is a work around to that bug.
945 *
946 * See Linux kernel commit:
947 * 811cb50baf63461ce0bdb234927046131fc7fa8b
948 */
949 if (strcmp(*tok, "LOCAL_PR_FMT") == 0) {
950 free(*tok);
951 *tok = NULL;
952 return force_token("\"\%s\" ", tok);
953 } else if (strcmp(*tok, "STA_PR_FMT") == 0) {
954 free(*tok);
955 *tok = NULL;
956 return force_token("\" sta:%pM\" ", tok);
957 } else if (strcmp(*tok, "VIF_PR_FMT") == 0) {
958 free(*tok);
959 *tok = NULL;
960 return force_token("\" vif:%p(%d)\" ", tok);
961 }
962 }
963
964 return type;
965}
966
967static enum event_type force_token(const char *str, char **tok)
968{
969 const char *save_input_buf;
970 unsigned long long save_input_buf_ptr;
971 unsigned long long save_input_buf_siz;
972 enum event_type type;
973
974 /* save off the current input pointers */
975 save_input_buf = input_buf;
976 save_input_buf_ptr = input_buf_ptr;
977 save_input_buf_siz = input_buf_siz;
978
979 init_input_buf(str, strlen(str));
980
981 type = __read_token(tok);
982
983 /* reset back to original token */
984 input_buf = save_input_buf;
985 input_buf_ptr = save_input_buf_ptr;
986 input_buf_siz = save_input_buf_siz;
987
988 return type;
989}
990
991static void free_token(char *tok)
992{
993 if (tok)
994 free(tok);
995}
996
997static enum event_type read_token(char **tok)
998{
999 enum event_type type;
1000
1001 for (;;) {
1002 type = __read_token(tok);
1003 if (type != EVENT_SPACE)
1004 return type;
1005
1006 free_token(*tok);
1007 }
1008
1009 /* not reached */
1010 *tok = NULL;
1011 return EVENT_NONE;
1012}
1013
1014/**
1015 * pevent_read_token - access to utilites to use the pevent parser
1016 * @tok: The token to return
1017 *
1018 * This will parse tokens from the string given by
1019 * pevent_init_data().
1020 *
1021 * Returns the token type.
1022 */
1023enum event_type pevent_read_token(char **tok)
1024{
1025 return read_token(tok);
1026}
1027
1028/**
1029 * pevent_free_token - free a token returned by pevent_read_token
1030 * @token: the token to free
1031 */
1032void pevent_free_token(char *token)
1033{
1034 free_token(token);
1035}
1036
1037/* no newline */
1038static enum event_type read_token_item(char **tok)
1039{
1040 enum event_type type;
1041
1042 for (;;) {
1043 type = __read_token(tok);
1044 if (type != EVENT_SPACE && type != EVENT_NEWLINE)
1045 return type;
1046 free_token(*tok);
1047 *tok = NULL;
1048 }
1049
1050 /* not reached */
1051 *tok = NULL;
1052 return EVENT_NONE;
1053}
1054
1055static int test_type(enum event_type type, enum event_type expect)
1056{
1057 if (type != expect) {
1058 do_warning("Error: expected type %d but read %d",
1059 expect, type);
1060 return -1;
1061 }
1062 return 0;
1063}
1064
1065static int test_type_token(enum event_type type, const char *token,
1066 enum event_type expect, const char *expect_tok)
1067{
1068 if (type != expect) {
1069 do_warning("Error: expected type %d but read %d",
1070 expect, type);
1071 return -1;
1072 }
1073
1074 if (strcmp(token, expect_tok) != 0) {
1075 do_warning("Error: expected '%s' but read '%s'",
1076 expect_tok, token);
1077 return -1;
1078 }
1079 return 0;
1080}
1081
1082static int __read_expect_type(enum event_type expect, char **tok, int newline_ok)
1083{
1084 enum event_type type;
1085
1086 if (newline_ok)
1087 type = read_token(tok);
1088 else
1089 type = read_token_item(tok);
1090 return test_type(type, expect);
1091}
1092
1093static int read_expect_type(enum event_type expect, char **tok)
1094{
1095 return __read_expect_type(expect, tok, 1);
1096}
1097
1098static int __read_expected(enum event_type expect, const char *str,
1099 int newline_ok)
1100{
1101 enum event_type type;
1102 char *token;
1103 int ret;
1104
1105 if (newline_ok)
1106 type = read_token(&token);
1107 else
1108 type = read_token_item(&token);
1109
1110 ret = test_type_token(type, token, expect, str);
1111
1112 free_token(token);
1113
1114 return ret;
1115}
1116
1117static int read_expected(enum event_type expect, const char *str)
1118{
1119 return __read_expected(expect, str, 1);
1120}
1121
1122static int read_expected_item(enum event_type expect, const char *str)
1123{
1124 return __read_expected(expect, str, 0);
1125}
1126
1127static char *event_read_name(void)
1128{
1129 char *token;
1130
1131 if (read_expected(EVENT_ITEM, "name") < 0)
1132 return NULL;
1133
1134 if (read_expected(EVENT_OP, ":") < 0)
1135 return NULL;
1136
1137 if (read_expect_type(EVENT_ITEM, &token) < 0)
1138 goto fail;
1139
1140 return token;
1141
1142 fail:
1143 free_token(token);
1144 return NULL;
1145}
1146
1147static int event_read_id(void)
1148{
1149 char *token;
1150 int id;
1151
1152 if (read_expected_item(EVENT_ITEM, "ID") < 0)
1153 return -1;
1154
1155 if (read_expected(EVENT_OP, ":") < 0)
1156 return -1;
1157
1158 if (read_expect_type(EVENT_ITEM, &token) < 0)
1159 goto fail;
1160
1161 id = strtoul(token, NULL, 0);
1162 free_token(token);
1163 return id;
1164
1165 fail:
1166 free_token(token);
1167 return -1;
1168}
1169
1170static int field_is_string(struct format_field *field)
1171{
1172 if ((field->flags & FIELD_IS_ARRAY) &&
1173 (strstr(field->type, "char") || strstr(field->type, "u8") ||
1174 strstr(field->type, "s8")))
1175 return 1;
1176
1177 return 0;
1178}
1179
1180static int field_is_dynamic(struct format_field *field)
1181{
1182 if (strncmp(field->type, "__data_loc", 10) == 0)
1183 return 1;
1184
1185 return 0;
1186}
1187
1188static int field_is_long(struct format_field *field)
1189{
1190 /* includes long long */
1191 if (strstr(field->type, "long"))
1192 return 1;
1193
1194 return 0;
1195}
1196
1197static int event_read_fields(struct event_format *event, struct format_field **fields)
1198{
1199 struct format_field *field = NULL;
1200 enum event_type type;
1201 char *token;
1202 char *last_token;
1203 int count = 0;
1204
1205 do {
1206 type = read_token(&token);
1207 if (type == EVENT_NEWLINE) {
1208 free_token(token);
1209 return count;
1210 }
1211
1212 count++;
1213
1214 if (test_type_token(type, token, EVENT_ITEM, "field"))
1215 goto fail;
1216 free_token(token);
1217
1218 type = read_token(&token);
1219 /*
1220 * The ftrace fields may still use the "special" name.
1221 * Just ignore it.
1222 */
1223 if (event->flags & EVENT_FL_ISFTRACE &&
1224 type == EVENT_ITEM && strcmp(token, "special") == 0) {
1225 free_token(token);
1226 type = read_token(&token);
1227 }
1228
1229 if (test_type_token(type, token, EVENT_OP, ":") < 0)
1230 goto fail;
1231
1232 free_token(token);
1233 if (read_expect_type(EVENT_ITEM, &token) < 0)
1234 goto fail;
1235
1236 last_token = token;
1237
1238 field = malloc_or_die(sizeof(*field));
1239 memset(field, 0, sizeof(*field));
1240 field->event = event;
1241
1242 /* read the rest of the type */
1243 for (;;) {
1244 type = read_token(&token);
1245 if (type == EVENT_ITEM ||
1246 (type == EVENT_OP && strcmp(token, "*") == 0) ||
1247 /*
1248 * Some of the ftrace fields are broken and have
1249 * an illegal "." in them.
1250 */
1251 (event->flags & EVENT_FL_ISFTRACE &&
1252 type == EVENT_OP && strcmp(token, ".") == 0)) {
1253
1254 if (strcmp(token, "*") == 0)
1255 field->flags |= FIELD_IS_POINTER;
1256
1257 if (field->type) {
1258 field->type = realloc(field->type,
1259 strlen(field->type) +
1260 strlen(last_token) + 2);
1261 strcat(field->type, " ");
1262 strcat(field->type, last_token);
1263 free(last_token);
1264 } else
1265 field->type = last_token;
1266 last_token = token;
1267 continue;
1268 }
1269
1270 break;
1271 }
1272
1273 if (!field->type) {
1274 die("no type found");
1275 goto fail;
1276 }
1277 field->name = last_token;
1278
1279 if (test_type(type, EVENT_OP))
1280 goto fail;
1281
1282 if (strcmp(token, "[") == 0) {
1283 enum event_type last_type = type;
1284 char *brackets = token;
1285 int len;
1286
1287 field->flags |= FIELD_IS_ARRAY;
1288
1289 type = read_token(&token);
1290
1291 if (type == EVENT_ITEM)
1292 field->arraylen = strtoul(token, NULL, 0);
1293 else
1294 field->arraylen = 0;
1295
1296 while (strcmp(token, "]") != 0) {
1297 if (last_type == EVENT_ITEM &&
1298 type == EVENT_ITEM)
1299 len = 2;
1300 else
1301 len = 1;
1302 last_type = type;
1303
1304 brackets = realloc(brackets,
1305 strlen(brackets) +
1306 strlen(token) + len);
1307 if (len == 2)
1308 strcat(brackets, " ");
1309 strcat(brackets, token);
1310 /* We only care about the last token */
1311 field->arraylen = strtoul(token, NULL, 0);
1312 free_token(token);
1313 type = read_token(&token);
1314 if (type == EVENT_NONE) {
1315 die("failed to find token");
1316 goto fail;
1317 }
1318 }
1319
1320 free_token(token);
1321
1322 brackets = realloc(brackets, strlen(brackets) + 2);
1323 strcat(brackets, "]");
1324
1325 /* add brackets to type */
1326
1327 type = read_token(&token);
1328 /*
1329 * If the next token is not an OP, then it is of
1330 * the format: type [] item;
1331 */
1332 if (type == EVENT_ITEM) {
1333 field->type = realloc(field->type,
1334 strlen(field->type) +
1335 strlen(field->name) +
1336 strlen(brackets) + 2);
1337 strcat(field->type, " ");
1338 strcat(field->type, field->name);
1339 free_token(field->name);
1340 strcat(field->type, brackets);
1341 field->name = token;
1342 type = read_token(&token);
1343 } else {
1344 field->type = realloc(field->type,
1345 strlen(field->type) +
1346 strlen(brackets) + 1);
1347 strcat(field->type, brackets);
1348 }
1349 free(brackets);
1350 }
1351
1352 if (field_is_string(field))
1353 field->flags |= FIELD_IS_STRING;
1354 if (field_is_dynamic(field))
1355 field->flags |= FIELD_IS_DYNAMIC;
1356 if (field_is_long(field))
1357 field->flags |= FIELD_IS_LONG;
1358
1359 if (test_type_token(type, token, EVENT_OP, ";"))
1360 goto fail;
1361 free_token(token);
1362
1363 if (read_expected(EVENT_ITEM, "offset") < 0)
1364 goto fail_expect;
1365
1366 if (read_expected(EVENT_OP, ":") < 0)
1367 goto fail_expect;
1368
1369 if (read_expect_type(EVENT_ITEM, &token))
1370 goto fail;
1371 field->offset = strtoul(token, NULL, 0);
1372 free_token(token);
1373
1374 if (read_expected(EVENT_OP, ";") < 0)
1375 goto fail_expect;
1376
1377 if (read_expected(EVENT_ITEM, "size") < 0)
1378 goto fail_expect;
1379
1380 if (read_expected(EVENT_OP, ":") < 0)
1381 goto fail_expect;
1382
1383 if (read_expect_type(EVENT_ITEM, &token))
1384 goto fail;
1385 field->size = strtoul(token, NULL, 0);
1386 free_token(token);
1387
1388 if (read_expected(EVENT_OP, ";") < 0)
1389 goto fail_expect;
1390
1391 type = read_token(&token);
1392 if (type != EVENT_NEWLINE) {
1393 /* newer versions of the kernel have a "signed" type */
1394 if (test_type_token(type, token, EVENT_ITEM, "signed"))
1395 goto fail;
1396
1397 free_token(token);
1398
1399 if (read_expected(EVENT_OP, ":") < 0)
1400 goto fail_expect;
1401
1402 if (read_expect_type(EVENT_ITEM, &token))
1403 goto fail;
1404
1405 /* add signed type */
1406
1407 free_token(token);
1408 if (read_expected(EVENT_OP, ";") < 0)
1409 goto fail_expect;
1410
1411 if (read_expect_type(EVENT_NEWLINE, &token))
1412 goto fail;
1413 }
1414
1415 free_token(token);
1416
1417 if (field->flags & FIELD_IS_ARRAY) {
1418 if (field->arraylen)
1419 field->elementsize = field->size / field->arraylen;
1420 else if (field->flags & FIELD_IS_STRING)
1421 field->elementsize = 1;
1422 else
1423 field->elementsize = event->pevent->long_size;
1424 } else
1425 field->elementsize = field->size;
1426
1427 *fields = field;
1428 fields = &field->next;
1429
1430 } while (1);
1431
1432 return 0;
1433
1434fail:
1435 free_token(token);
1436fail_expect:
Namhyung Kim57d34dc2012-05-23 11:36:47 +09001437 if (field) {
1438 free(field->type);
1439 free(field->name);
Steven Rostedtf7d82352012-04-06 00:47:53 +02001440 free(field);
Namhyung Kim57d34dc2012-05-23 11:36:47 +09001441 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02001442 return -1;
1443}
1444
1445static int event_read_format(struct event_format *event)
1446{
1447 char *token;
1448 int ret;
1449
1450 if (read_expected_item(EVENT_ITEM, "format") < 0)
1451 return -1;
1452
1453 if (read_expected(EVENT_OP, ":") < 0)
1454 return -1;
1455
1456 if (read_expect_type(EVENT_NEWLINE, &token))
1457 goto fail;
1458 free_token(token);
1459
1460 ret = event_read_fields(event, &event->format.common_fields);
1461 if (ret < 0)
1462 return ret;
1463 event->format.nr_common = ret;
1464
1465 ret = event_read_fields(event, &event->format.fields);
1466 if (ret < 0)
1467 return ret;
1468 event->format.nr_fields = ret;
1469
1470 return 0;
1471
1472 fail:
1473 free_token(token);
1474 return -1;
1475}
1476
1477static enum event_type
1478process_arg_token(struct event_format *event, struct print_arg *arg,
1479 char **tok, enum event_type type);
1480
1481static enum event_type
1482process_arg(struct event_format *event, struct print_arg *arg, char **tok)
1483{
1484 enum event_type type;
1485 char *token;
1486
1487 type = read_token(&token);
1488 *tok = token;
1489
1490 return process_arg_token(event, arg, tok, type);
1491}
1492
1493static enum event_type
1494process_op(struct event_format *event, struct print_arg *arg, char **tok);
1495
1496static enum event_type
1497process_cond(struct event_format *event, struct print_arg *top, char **tok)
1498{
1499 struct print_arg *arg, *left, *right;
1500 enum event_type type;
1501 char *token = NULL;
1502
1503 arg = alloc_arg();
1504 left = alloc_arg();
1505 right = alloc_arg();
1506
1507 arg->type = PRINT_OP;
1508 arg->op.left = left;
1509 arg->op.right = right;
1510
1511 *tok = NULL;
1512 type = process_arg(event, left, &token);
1513
1514 again:
1515 /* Handle other operations in the arguments */
1516 if (type == EVENT_OP && strcmp(token, ":") != 0) {
1517 type = process_op(event, left, &token);
1518 goto again;
1519 }
1520
1521 if (test_type_token(type, token, EVENT_OP, ":"))
1522 goto out_free;
1523
1524 arg->op.op = token;
1525
1526 type = process_arg(event, right, &token);
1527
1528 top->op.right = arg;
1529
1530 *tok = token;
1531 return type;
1532
1533out_free:
1534 /* Top may point to itself */
1535 top->op.right = NULL;
1536 free_token(token);
1537 free_arg(arg);
1538 return EVENT_ERROR;
1539}
1540
1541static enum event_type
1542process_array(struct event_format *event, struct print_arg *top, char **tok)
1543{
1544 struct print_arg *arg;
1545 enum event_type type;
1546 char *token = NULL;
1547
1548 arg = alloc_arg();
1549
1550 *tok = NULL;
1551 type = process_arg(event, arg, &token);
1552 if (test_type_token(type, token, EVENT_OP, "]"))
1553 goto out_free;
1554
1555 top->op.right = arg;
1556
1557 free_token(token);
1558 type = read_token_item(&token);
1559 *tok = token;
1560
1561 return type;
1562
1563out_free:
1564 free_token(*tok);
1565 *tok = NULL;
1566 free_arg(arg);
1567 return EVENT_ERROR;
1568}
1569
1570static int get_op_prio(char *op)
1571{
1572 if (!op[1]) {
1573 switch (op[0]) {
1574 case '~':
1575 case '!':
1576 return 4;
1577 case '*':
1578 case '/':
1579 case '%':
1580 return 6;
1581 case '+':
1582 case '-':
1583 return 7;
1584 /* '>>' and '<<' are 8 */
1585 case '<':
1586 case '>':
1587 return 9;
1588 /* '==' and '!=' are 10 */
1589 case '&':
1590 return 11;
1591 case '^':
1592 return 12;
1593 case '|':
1594 return 13;
1595 case '?':
1596 return 16;
1597 default:
Vaibhav Nagarnaik14ffde02012-04-06 00:48:01 +02001598 do_warning("unknown op '%c'", op[0]);
Steven Rostedtf7d82352012-04-06 00:47:53 +02001599 return -1;
1600 }
1601 } else {
1602 if (strcmp(op, "++") == 0 ||
1603 strcmp(op, "--") == 0) {
1604 return 3;
1605 } else if (strcmp(op, ">>") == 0 ||
1606 strcmp(op, "<<") == 0) {
1607 return 8;
1608 } else if (strcmp(op, ">=") == 0 ||
1609 strcmp(op, "<=") == 0) {
1610 return 9;
1611 } else if (strcmp(op, "==") == 0 ||
1612 strcmp(op, "!=") == 0) {
1613 return 10;
1614 } else if (strcmp(op, "&&") == 0) {
1615 return 14;
1616 } else if (strcmp(op, "||") == 0) {
1617 return 15;
1618 } else {
Vaibhav Nagarnaik14ffde02012-04-06 00:48:01 +02001619 do_warning("unknown op '%s'", op);
Steven Rostedtf7d82352012-04-06 00:47:53 +02001620 return -1;
1621 }
1622 }
1623}
1624
Vaibhav Nagarnaik14ffde02012-04-06 00:48:01 +02001625static int set_op_prio(struct print_arg *arg)
Steven Rostedtf7d82352012-04-06 00:47:53 +02001626{
1627
1628 /* single ops are the greatest */
Vaibhav Nagarnaik14ffde02012-04-06 00:48:01 +02001629 if (!arg->op.left || arg->op.left->type == PRINT_NULL)
Steven Rostedtf7d82352012-04-06 00:47:53 +02001630 arg->op.prio = 0;
Vaibhav Nagarnaik14ffde02012-04-06 00:48:01 +02001631 else
1632 arg->op.prio = get_op_prio(arg->op.op);
Steven Rostedtf7d82352012-04-06 00:47:53 +02001633
Vaibhav Nagarnaik14ffde02012-04-06 00:48:01 +02001634 return arg->op.prio;
Steven Rostedtf7d82352012-04-06 00:47:53 +02001635}
1636
1637/* Note, *tok does not get freed, but will most likely be saved */
1638static enum event_type
1639process_op(struct event_format *event, struct print_arg *arg, char **tok)
1640{
1641 struct print_arg *left, *right = NULL;
1642 enum event_type type;
1643 char *token;
1644
1645 /* the op is passed in via tok */
1646 token = *tok;
1647
1648 if (arg->type == PRINT_OP && !arg->op.left) {
1649 /* handle single op */
1650 if (token[1]) {
1651 die("bad op token %s", token);
1652 goto out_free;
1653 }
1654 switch (token[0]) {
1655 case '~':
1656 case '!':
1657 case '+':
1658 case '-':
1659 break;
1660 default:
1661 do_warning("bad op token %s", token);
1662 goto out_free;
1663
1664 }
1665
1666 /* make an empty left */
1667 left = alloc_arg();
1668 left->type = PRINT_NULL;
1669 arg->op.left = left;
1670
1671 right = alloc_arg();
1672 arg->op.right = right;
1673
1674 /* do not free the token, it belongs to an op */
1675 *tok = NULL;
1676 type = process_arg(event, right, tok);
1677
1678 } else if (strcmp(token, "?") == 0) {
1679
1680 left = alloc_arg();
1681 /* copy the top arg to the left */
1682 *left = *arg;
1683
1684 arg->type = PRINT_OP;
1685 arg->op.op = token;
1686 arg->op.left = left;
1687 arg->op.prio = 0;
1688
1689 type = process_cond(event, arg, tok);
1690
1691 } else if (strcmp(token, ">>") == 0 ||
1692 strcmp(token, "<<") == 0 ||
1693 strcmp(token, "&") == 0 ||
1694 strcmp(token, "|") == 0 ||
1695 strcmp(token, "&&") == 0 ||
1696 strcmp(token, "||") == 0 ||
1697 strcmp(token, "-") == 0 ||
1698 strcmp(token, "+") == 0 ||
1699 strcmp(token, "*") == 0 ||
1700 strcmp(token, "^") == 0 ||
1701 strcmp(token, "/") == 0 ||
1702 strcmp(token, "<") == 0 ||
1703 strcmp(token, ">") == 0 ||
1704 strcmp(token, "==") == 0 ||
1705 strcmp(token, "!=") == 0) {
1706
1707 left = alloc_arg();
1708
1709 /* copy the top arg to the left */
1710 *left = *arg;
1711
1712 arg->type = PRINT_OP;
1713 arg->op.op = token;
1714 arg->op.left = left;
1715
Vaibhav Nagarnaik14ffde02012-04-06 00:48:01 +02001716 if (set_op_prio(arg) == -1) {
1717 event->flags |= EVENT_FL_FAILED;
Namhyung Kimd1de1082012-05-23 11:36:49 +09001718 /* arg->op.op (= token) will be freed at out_free */
1719 arg->op.op = NULL;
Vaibhav Nagarnaik14ffde02012-04-06 00:48:01 +02001720 goto out_free;
1721 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02001722
1723 type = read_token_item(&token);
1724 *tok = token;
1725
1726 /* could just be a type pointer */
1727 if ((strcmp(arg->op.op, "*") == 0) &&
1728 type == EVENT_DELIM && (strcmp(token, ")") == 0)) {
1729 if (left->type != PRINT_ATOM)
1730 die("bad pointer type");
1731 left->atom.atom = realloc(left->atom.atom,
1732 strlen(left->atom.atom) + 3);
1733 strcat(left->atom.atom, " *");
1734 free(arg->op.op);
1735 *arg = *left;
1736 free(left);
1737
1738 return type;
1739 }
1740
1741 right = alloc_arg();
1742 type = process_arg_token(event, right, tok, type);
1743 arg->op.right = right;
1744
1745 } else if (strcmp(token, "[") == 0) {
1746
1747 left = alloc_arg();
1748 *left = *arg;
1749
1750 arg->type = PRINT_OP;
1751 arg->op.op = token;
1752 arg->op.left = left;
1753
1754 arg->op.prio = 0;
1755
1756 type = process_array(event, arg, tok);
1757
1758 } else {
1759 do_warning("unknown op '%s'", token);
1760 event->flags |= EVENT_FL_FAILED;
1761 /* the arg is now the left side */
1762 goto out_free;
1763 }
1764
1765 if (type == EVENT_OP && strcmp(*tok, ":") != 0) {
1766 int prio;
1767
1768 /* higher prios need to be closer to the root */
1769 prio = get_op_prio(*tok);
1770
1771 if (prio > arg->op.prio)
1772 return process_op(event, arg, tok);
1773
1774 return process_op(event, right, tok);
1775 }
1776
1777 return type;
1778
1779 out_free:
1780 free_token(token);
1781 *tok = NULL;
1782 return EVENT_ERROR;
1783}
1784
1785static enum event_type
1786process_entry(struct event_format *event __unused, struct print_arg *arg,
1787 char **tok)
1788{
1789 enum event_type type;
1790 char *field;
1791 char *token;
1792
1793 if (read_expected(EVENT_OP, "->") < 0)
1794 goto out_err;
1795
1796 if (read_expect_type(EVENT_ITEM, &token) < 0)
1797 goto out_free;
1798 field = token;
1799
1800 arg->type = PRINT_FIELD;
1801 arg->field.name = field;
1802
Tom Zanussi5205aec2012-04-06 00:47:58 +02001803 if (is_flag_field) {
1804 arg->field.field = pevent_find_any_field(event, arg->field.name);
1805 arg->field.field->flags |= FIELD_IS_FLAG;
1806 is_flag_field = 0;
1807 } else if (is_symbolic_field) {
1808 arg->field.field = pevent_find_any_field(event, arg->field.name);
1809 arg->field.field->flags |= FIELD_IS_SYMBOLIC;
1810 is_symbolic_field = 0;
1811 }
1812
Steven Rostedtf7d82352012-04-06 00:47:53 +02001813 type = read_token(&token);
1814 *tok = token;
1815
1816 return type;
1817
1818 out_free:
1819 free_token(token);
1820 out_err:
1821 *tok = NULL;
1822 return EVENT_ERROR;
1823}
1824
1825static char *arg_eval (struct print_arg *arg);
1826
1827static unsigned long long
1828eval_type_str(unsigned long long val, const char *type, int pointer)
1829{
1830 int sign = 0;
1831 char *ref;
1832 int len;
1833
1834 len = strlen(type);
1835
1836 if (pointer) {
1837
1838 if (type[len-1] != '*') {
1839 do_warning("pointer expected with non pointer type");
1840 return val;
1841 }
1842
1843 ref = malloc_or_die(len);
1844 memcpy(ref, type, len);
1845
1846 /* chop off the " *" */
1847 ref[len - 2] = 0;
1848
1849 val = eval_type_str(val, ref, 0);
1850 free(ref);
1851 return val;
1852 }
1853
1854 /* check if this is a pointer */
1855 if (type[len - 1] == '*')
1856 return val;
1857
1858 /* Try to figure out the arg size*/
1859 if (strncmp(type, "struct", 6) == 0)
1860 /* all bets off */
1861 return val;
1862
1863 if (strcmp(type, "u8") == 0)
1864 return val & 0xff;
1865
1866 if (strcmp(type, "u16") == 0)
1867 return val & 0xffff;
1868
1869 if (strcmp(type, "u32") == 0)
1870 return val & 0xffffffff;
1871
1872 if (strcmp(type, "u64") == 0 ||
1873 strcmp(type, "s64"))
1874 return val;
1875
1876 if (strcmp(type, "s8") == 0)
1877 return (unsigned long long)(char)val & 0xff;
1878
1879 if (strcmp(type, "s16") == 0)
1880 return (unsigned long long)(short)val & 0xffff;
1881
1882 if (strcmp(type, "s32") == 0)
1883 return (unsigned long long)(int)val & 0xffffffff;
1884
1885 if (strncmp(type, "unsigned ", 9) == 0) {
1886 sign = 0;
1887 type += 9;
1888 }
1889
1890 if (strcmp(type, "char") == 0) {
1891 if (sign)
1892 return (unsigned long long)(char)val & 0xff;
1893 else
1894 return val & 0xff;
1895 }
1896
1897 if (strcmp(type, "short") == 0) {
1898 if (sign)
1899 return (unsigned long long)(short)val & 0xffff;
1900 else
1901 return val & 0xffff;
1902 }
1903
1904 if (strcmp(type, "int") == 0) {
1905 if (sign)
1906 return (unsigned long long)(int)val & 0xffffffff;
1907 else
1908 return val & 0xffffffff;
1909 }
1910
1911 return val;
1912}
1913
1914/*
1915 * Try to figure out the type.
1916 */
1917static unsigned long long
1918eval_type(unsigned long long val, struct print_arg *arg, int pointer)
1919{
1920 if (arg->type != PRINT_TYPE)
1921 die("expected type argument");
1922
1923 return eval_type_str(val, arg->typecast.type, pointer);
1924}
1925
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02001926static int arg_num_eval(struct print_arg *arg, long long *val)
Steven Rostedtf7d82352012-04-06 00:47:53 +02001927{
1928 long long left, right;
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02001929 int ret = 1;
Steven Rostedtf7d82352012-04-06 00:47:53 +02001930
1931 switch (arg->type) {
1932 case PRINT_ATOM:
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02001933 *val = strtoll(arg->atom.atom, NULL, 0);
Steven Rostedtf7d82352012-04-06 00:47:53 +02001934 break;
1935 case PRINT_TYPE:
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02001936 ret = arg_num_eval(arg->typecast.item, val);
1937 if (!ret)
1938 break;
1939 *val = eval_type(*val, arg, 0);
Steven Rostedtf7d82352012-04-06 00:47:53 +02001940 break;
1941 case PRINT_OP:
1942 switch (arg->op.op[0]) {
1943 case '|':
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02001944 ret = arg_num_eval(arg->op.left, &left);
1945 if (!ret)
1946 break;
1947 ret = arg_num_eval(arg->op.right, &right);
1948 if (!ret)
1949 break;
Steven Rostedtf7d82352012-04-06 00:47:53 +02001950 if (arg->op.op[1])
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02001951 *val = left || right;
Steven Rostedtf7d82352012-04-06 00:47:53 +02001952 else
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02001953 *val = left | right;
Steven Rostedtf7d82352012-04-06 00:47:53 +02001954 break;
1955 case '&':
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02001956 ret = arg_num_eval(arg->op.left, &left);
1957 if (!ret)
1958 break;
1959 ret = arg_num_eval(arg->op.right, &right);
1960 if (!ret)
1961 break;
Steven Rostedtf7d82352012-04-06 00:47:53 +02001962 if (arg->op.op[1])
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02001963 *val = left && right;
Steven Rostedtf7d82352012-04-06 00:47:53 +02001964 else
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02001965 *val = left & right;
Steven Rostedtf7d82352012-04-06 00:47:53 +02001966 break;
1967 case '<':
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02001968 ret = arg_num_eval(arg->op.left, &left);
1969 if (!ret)
1970 break;
1971 ret = arg_num_eval(arg->op.right, &right);
1972 if (!ret)
1973 break;
Steven Rostedtf7d82352012-04-06 00:47:53 +02001974 switch (arg->op.op[1]) {
1975 case 0:
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02001976 *val = left < right;
Steven Rostedtf7d82352012-04-06 00:47:53 +02001977 break;
1978 case '<':
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02001979 *val = left << right;
Steven Rostedtf7d82352012-04-06 00:47:53 +02001980 break;
1981 case '=':
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02001982 *val = left <= right;
Steven Rostedtf7d82352012-04-06 00:47:53 +02001983 break;
1984 default:
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02001985 do_warning("unknown op '%s'", arg->op.op);
1986 ret = 0;
Steven Rostedtf7d82352012-04-06 00:47:53 +02001987 }
1988 break;
1989 case '>':
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02001990 ret = arg_num_eval(arg->op.left, &left);
1991 if (!ret)
1992 break;
1993 ret = arg_num_eval(arg->op.right, &right);
1994 if (!ret)
1995 break;
Steven Rostedtf7d82352012-04-06 00:47:53 +02001996 switch (arg->op.op[1]) {
1997 case 0:
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02001998 *val = left > right;
Steven Rostedtf7d82352012-04-06 00:47:53 +02001999 break;
2000 case '>':
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02002001 *val = left >> right;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002002 break;
2003 case '=':
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02002004 *val = left >= right;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002005 break;
2006 default:
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02002007 do_warning("unknown op '%s'", arg->op.op);
2008 ret = 0;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002009 }
2010 break;
2011 case '=':
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02002012 ret = arg_num_eval(arg->op.left, &left);
2013 if (!ret)
2014 break;
2015 ret = arg_num_eval(arg->op.right, &right);
2016 if (!ret)
2017 break;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002018
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02002019 if (arg->op.op[1] != '=') {
2020 do_warning("unknown op '%s'", arg->op.op);
2021 ret = 0;
2022 } else
2023 *val = left == right;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002024 break;
2025 case '!':
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02002026 ret = arg_num_eval(arg->op.left, &left);
2027 if (!ret)
2028 break;
2029 ret = arg_num_eval(arg->op.right, &right);
2030 if (!ret)
2031 break;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002032
2033 switch (arg->op.op[1]) {
2034 case '=':
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02002035 *val = left != right;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002036 break;
2037 default:
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02002038 do_warning("unknown op '%s'", arg->op.op);
2039 ret = 0;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002040 }
2041 break;
2042 case '-':
2043 /* check for negative */
2044 if (arg->op.left->type == PRINT_NULL)
2045 left = 0;
2046 else
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02002047 ret = arg_num_eval(arg->op.left, &left);
2048 if (!ret)
2049 break;
2050 ret = arg_num_eval(arg->op.right, &right);
2051 if (!ret)
2052 break;
2053 *val = left - right;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002054 break;
Vaibhav Nagarnaikb4828592012-04-06 00:48:03 +02002055 case '+':
2056 if (arg->op.left->type == PRINT_NULL)
2057 left = 0;
2058 else
2059 ret = arg_num_eval(arg->op.left, &left);
2060 if (!ret)
2061 break;
2062 ret = arg_num_eval(arg->op.right, &right);
2063 if (!ret)
2064 break;
2065 *val = left + right;
2066 break;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002067 default:
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02002068 do_warning("unknown op '%s'", arg->op.op);
2069 ret = 0;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002070 }
2071 break;
2072
2073 case PRINT_NULL:
2074 case PRINT_FIELD ... PRINT_SYMBOL:
2075 case PRINT_STRING:
2076 case PRINT_BSTRING:
2077 default:
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02002078 do_warning("invalid eval type %d", arg->type);
2079 ret = 0;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002080
2081 }
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02002082 return ret;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002083}
2084
2085static char *arg_eval (struct print_arg *arg)
2086{
2087 long long val;
2088 static char buf[20];
2089
2090 switch (arg->type) {
2091 case PRINT_ATOM:
2092 return arg->atom.atom;
2093 case PRINT_TYPE:
2094 return arg_eval(arg->typecast.item);
2095 case PRINT_OP:
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02002096 if (!arg_num_eval(arg, &val))
2097 break;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002098 sprintf(buf, "%lld", val);
2099 return buf;
2100
2101 case PRINT_NULL:
2102 case PRINT_FIELD ... PRINT_SYMBOL:
2103 case PRINT_STRING:
2104 case PRINT_BSTRING:
2105 default:
2106 die("invalid eval type %d", arg->type);
2107 break;
2108 }
2109
2110 return NULL;
2111}
2112
2113static enum event_type
2114process_fields(struct event_format *event, struct print_flag_sym **list, char **tok)
2115{
2116 enum event_type type;
2117 struct print_arg *arg = NULL;
2118 struct print_flag_sym *field;
2119 char *token = *tok;
2120 char *value;
2121
2122 do {
2123 free_token(token);
2124 type = read_token_item(&token);
2125 if (test_type_token(type, token, EVENT_OP, "{"))
2126 break;
2127
2128 arg = alloc_arg();
2129
2130 free_token(token);
2131 type = process_arg(event, arg, &token);
Stefan Hajnoczi00b9da72012-05-23 11:36:42 +09002132
2133 if (type == EVENT_OP)
2134 type = process_op(event, arg, &token);
2135
2136 if (type == EVENT_ERROR)
2137 goto out_free;
2138
Steven Rostedtf7d82352012-04-06 00:47:53 +02002139 if (test_type_token(type, token, EVENT_DELIM, ","))
2140 goto out_free;
2141
2142 field = malloc_or_die(sizeof(*field));
Julia Lawall54a36252012-04-06 00:47:59 +02002143 memset(field, 0, sizeof(*field));
Steven Rostedtf7d82352012-04-06 00:47:53 +02002144
2145 value = arg_eval(arg);
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02002146 if (value == NULL)
2147 goto out_free;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002148 field->value = strdup(value);
2149
2150 free_arg(arg);
2151 arg = alloc_arg();
2152
2153 free_token(token);
2154 type = process_arg(event, arg, &token);
2155 if (test_type_token(type, token, EVENT_OP, "}"))
2156 goto out_free;
2157
2158 value = arg_eval(arg);
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02002159 if (value == NULL)
2160 goto out_free;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002161 field->str = strdup(value);
2162 free_arg(arg);
2163 arg = NULL;
2164
2165 *list = field;
2166 list = &field->next;
2167
2168 free_token(token);
2169 type = read_token_item(&token);
2170 } while (type == EVENT_DELIM && strcmp(token, ",") == 0);
2171
2172 *tok = token;
2173 return type;
2174
2175out_free:
2176 free_arg(arg);
2177 free_token(token);
2178 *tok = NULL;
2179
2180 return EVENT_ERROR;
2181}
2182
2183static enum event_type
2184process_flags(struct event_format *event, struct print_arg *arg, char **tok)
2185{
2186 struct print_arg *field;
2187 enum event_type type;
2188 char *token;
2189
2190 memset(arg, 0, sizeof(*arg));
2191 arg->type = PRINT_FLAGS;
2192
2193 field = alloc_arg();
2194
2195 type = process_arg(event, field, &token);
2196
2197 /* Handle operations in the first argument */
2198 while (type == EVENT_OP)
2199 type = process_op(event, field, &token);
2200
2201 if (test_type_token(type, token, EVENT_DELIM, ","))
2202 goto out_free;
2203 free_token(token);
2204
2205 arg->flags.field = field;
2206
2207 type = read_token_item(&token);
2208 if (event_item_type(type)) {
2209 arg->flags.delim = token;
2210 type = read_token_item(&token);
2211 }
2212
2213 if (test_type_token(type, token, EVENT_DELIM, ","))
2214 goto out_free;
2215
2216 type = process_fields(event, &arg->flags.flags, &token);
2217 if (test_type_token(type, token, EVENT_DELIM, ")"))
2218 goto out_free;
2219
2220 free_token(token);
2221 type = read_token_item(tok);
2222 return type;
2223
2224 out_free:
2225 free_token(token);
2226 *tok = NULL;
2227 return EVENT_ERROR;
2228}
2229
2230static enum event_type
2231process_symbols(struct event_format *event, struct print_arg *arg, char **tok)
2232{
2233 struct print_arg *field;
2234 enum event_type type;
2235 char *token;
2236
2237 memset(arg, 0, sizeof(*arg));
2238 arg->type = PRINT_SYMBOL;
2239
2240 field = alloc_arg();
2241
2242 type = process_arg(event, field, &token);
2243 if (test_type_token(type, token, EVENT_DELIM, ","))
2244 goto out_free;
2245
2246 arg->symbol.field = field;
2247
2248 type = process_fields(event, &arg->symbol.symbols, &token);
2249 if (test_type_token(type, token, EVENT_DELIM, ")"))
2250 goto out_free;
2251
2252 free_token(token);
2253 type = read_token_item(tok);
2254 return type;
2255
2256 out_free:
2257 free_token(token);
2258 *tok = NULL;
2259 return EVENT_ERROR;
2260}
2261
2262static enum event_type
2263process_dynamic_array(struct event_format *event, struct print_arg *arg, char **tok)
2264{
2265 struct format_field *field;
2266 enum event_type type;
2267 char *token;
2268
2269 memset(arg, 0, sizeof(*arg));
2270 arg->type = PRINT_DYNAMIC_ARRAY;
2271
2272 /*
2273 * The item within the parenthesis is another field that holds
2274 * the index into where the array starts.
2275 */
2276 type = read_token(&token);
2277 *tok = token;
2278 if (type != EVENT_ITEM)
2279 goto out_free;
2280
2281 /* Find the field */
2282
2283 field = pevent_find_field(event, token);
2284 if (!field)
2285 goto out_free;
2286
2287 arg->dynarray.field = field;
2288 arg->dynarray.index = 0;
2289
2290 if (read_expected(EVENT_DELIM, ")") < 0)
2291 goto out_free;
2292
2293 free_token(token);
2294 type = read_token_item(&token);
2295 *tok = token;
2296 if (type != EVENT_OP || strcmp(token, "[") != 0)
2297 return type;
2298
2299 free_token(token);
2300 arg = alloc_arg();
2301 type = process_arg(event, arg, &token);
2302 if (type == EVENT_ERROR)
Namhyung Kimb3511d02012-05-23 11:36:50 +09002303 goto out_free_arg;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002304
2305 if (!test_type_token(type, token, EVENT_OP, "]"))
Namhyung Kimb3511d02012-05-23 11:36:50 +09002306 goto out_free_arg;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002307
2308 free_token(token);
2309 type = read_token_item(tok);
2310 return type;
2311
Namhyung Kimb3511d02012-05-23 11:36:50 +09002312 out_free_arg:
2313 free_arg(arg);
Steven Rostedtf7d82352012-04-06 00:47:53 +02002314 out_free:
Steven Rostedtf7d82352012-04-06 00:47:53 +02002315 free_token(token);
2316 *tok = NULL;
2317 return EVENT_ERROR;
2318}
2319
2320static enum event_type
2321process_paren(struct event_format *event, struct print_arg *arg, char **tok)
2322{
2323 struct print_arg *item_arg;
2324 enum event_type type;
2325 char *token;
2326
2327 type = process_arg(event, arg, &token);
2328
2329 if (type == EVENT_ERROR)
2330 goto out_free;
2331
2332 if (type == EVENT_OP)
2333 type = process_op(event, arg, &token);
2334
2335 if (type == EVENT_ERROR)
2336 goto out_free;
2337
2338 if (test_type_token(type, token, EVENT_DELIM, ")"))
2339 goto out_free;
2340
2341 free_token(token);
2342 type = read_token_item(&token);
2343
2344 /*
2345 * If the next token is an item or another open paren, then
2346 * this was a typecast.
2347 */
2348 if (event_item_type(type) ||
2349 (type == EVENT_DELIM && strcmp(token, "(") == 0)) {
2350
2351 /* make this a typecast and contine */
2352
2353 /* prevous must be an atom */
2354 if (arg->type != PRINT_ATOM)
2355 die("previous needed to be PRINT_ATOM");
2356
2357 item_arg = alloc_arg();
2358
2359 arg->type = PRINT_TYPE;
2360 arg->typecast.type = arg->atom.atom;
2361 arg->typecast.item = item_arg;
2362 type = process_arg_token(event, item_arg, &token, type);
2363
2364 }
2365
2366 *tok = token;
2367 return type;
2368
2369 out_free:
2370 free_token(token);
2371 *tok = NULL;
2372 return EVENT_ERROR;
2373}
2374
2375
2376static enum event_type
2377process_str(struct event_format *event __unused, struct print_arg *arg, char **tok)
2378{
2379 enum event_type type;
2380 char *token;
2381
2382 if (read_expect_type(EVENT_ITEM, &token) < 0)
2383 goto out_free;
2384
2385 arg->type = PRINT_STRING;
2386 arg->string.string = token;
2387 arg->string.offset = -1;
2388
2389 if (read_expected(EVENT_DELIM, ")") < 0)
2390 goto out_err;
2391
2392 type = read_token(&token);
2393 *tok = token;
2394
2395 return type;
2396
2397 out_free:
2398 free_token(token);
2399 out_err:
2400 *tok = NULL;
2401 return EVENT_ERROR;
2402}
2403
2404static struct pevent_function_handler *
2405find_func_handler(struct pevent *pevent, char *func_name)
2406{
2407 struct pevent_function_handler *func;
2408
2409 for (func = pevent->func_handlers; func; func = func->next) {
2410 if (strcmp(func->name, func_name) == 0)
2411 break;
2412 }
2413
2414 return func;
2415}
2416
2417static void remove_func_handler(struct pevent *pevent, char *func_name)
2418{
2419 struct pevent_function_handler *func;
2420 struct pevent_function_handler **next;
2421
2422 next = &pevent->func_handlers;
2423 while ((func = *next)) {
2424 if (strcmp(func->name, func_name) == 0) {
2425 *next = func->next;
2426 free_func_handle(func);
2427 break;
2428 }
2429 next = &func->next;
2430 }
2431}
2432
2433static enum event_type
2434process_func_handler(struct event_format *event, struct pevent_function_handler *func,
2435 struct print_arg *arg, char **tok)
2436{
2437 struct print_arg **next_arg;
2438 struct print_arg *farg;
2439 enum event_type type;
2440 char *token;
2441 char *test;
2442 int i;
2443
2444 arg->type = PRINT_FUNC;
2445 arg->func.func = func;
2446
2447 *tok = NULL;
2448
2449 next_arg = &(arg->func.args);
2450 for (i = 0; i < func->nr_args; i++) {
2451 farg = alloc_arg();
2452 type = process_arg(event, farg, &token);
2453 if (i < (func->nr_args - 1))
2454 test = ",";
2455 else
2456 test = ")";
2457
2458 if (test_type_token(type, token, EVENT_DELIM, test)) {
2459 free_arg(farg);
2460 free_token(token);
2461 return EVENT_ERROR;
2462 }
2463
2464 *next_arg = farg;
2465 next_arg = &(farg->next);
2466 free_token(token);
2467 }
2468
2469 type = read_token(&token);
2470 *tok = token;
2471
2472 return type;
2473}
2474
2475static enum event_type
2476process_function(struct event_format *event, struct print_arg *arg,
2477 char *token, char **tok)
2478{
2479 struct pevent_function_handler *func;
2480
2481 if (strcmp(token, "__print_flags") == 0) {
2482 free_token(token);
Tom Zanussi5205aec2012-04-06 00:47:58 +02002483 is_flag_field = 1;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002484 return process_flags(event, arg, tok);
2485 }
2486 if (strcmp(token, "__print_symbolic") == 0) {
2487 free_token(token);
Tom Zanussi5205aec2012-04-06 00:47:58 +02002488 is_symbolic_field = 1;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002489 return process_symbols(event, arg, tok);
2490 }
2491 if (strcmp(token, "__get_str") == 0) {
2492 free_token(token);
2493 return process_str(event, arg, tok);
2494 }
2495 if (strcmp(token, "__get_dynamic_array") == 0) {
2496 free_token(token);
2497 return process_dynamic_array(event, arg, tok);
2498 }
2499
2500 func = find_func_handler(event->pevent, token);
2501 if (func) {
2502 free_token(token);
2503 return process_func_handler(event, func, arg, tok);
2504 }
2505
2506 do_warning("function %s not defined", token);
2507 free_token(token);
2508 return EVENT_ERROR;
2509}
2510
2511static enum event_type
2512process_arg_token(struct event_format *event, struct print_arg *arg,
2513 char **tok, enum event_type type)
2514{
2515 char *token;
2516 char *atom;
2517
2518 token = *tok;
2519
2520 switch (type) {
2521 case EVENT_ITEM:
2522 if (strcmp(token, "REC") == 0) {
2523 free_token(token);
2524 type = process_entry(event, arg, &token);
2525 break;
2526 }
2527 atom = token;
2528 /* test the next token */
2529 type = read_token_item(&token);
2530
2531 /*
2532 * If the next token is a parenthesis, then this
2533 * is a function.
2534 */
2535 if (type == EVENT_DELIM && strcmp(token, "(") == 0) {
2536 free_token(token);
2537 token = NULL;
2538 /* this will free atom. */
2539 type = process_function(event, arg, atom, &token);
2540 break;
2541 }
2542 /* atoms can be more than one token long */
2543 while (type == EVENT_ITEM) {
2544 atom = realloc(atom, strlen(atom) + strlen(token) + 2);
2545 strcat(atom, " ");
2546 strcat(atom, token);
2547 free_token(token);
2548 type = read_token_item(&token);
2549 }
2550
2551 arg->type = PRINT_ATOM;
2552 arg->atom.atom = atom;
2553 break;
2554
2555 case EVENT_DQUOTE:
2556 case EVENT_SQUOTE:
2557 arg->type = PRINT_ATOM;
2558 arg->atom.atom = token;
2559 type = read_token_item(&token);
2560 break;
2561 case EVENT_DELIM:
2562 if (strcmp(token, "(") == 0) {
2563 free_token(token);
2564 type = process_paren(event, arg, &token);
2565 break;
2566 }
2567 case EVENT_OP:
2568 /* handle single ops */
2569 arg->type = PRINT_OP;
2570 arg->op.op = token;
2571 arg->op.left = NULL;
2572 type = process_op(event, arg, &token);
2573
2574 /* On error, the op is freed */
2575 if (type == EVENT_ERROR)
2576 arg->op.op = NULL;
2577
2578 /* return error type if errored */
2579 break;
2580
2581 case EVENT_ERROR ... EVENT_NEWLINE:
2582 default:
2583 die("unexpected type %d", type);
2584 }
2585 *tok = token;
2586
2587 return type;
2588}
2589
2590static int event_read_print_args(struct event_format *event, struct print_arg **list)
2591{
2592 enum event_type type = EVENT_ERROR;
2593 struct print_arg *arg;
2594 char *token;
2595 int args = 0;
2596
2597 do {
2598 if (type == EVENT_NEWLINE) {
2599 type = read_token_item(&token);
2600 continue;
2601 }
2602
2603 arg = alloc_arg();
2604
2605 type = process_arg(event, arg, &token);
2606
2607 if (type == EVENT_ERROR) {
2608 free_token(token);
2609 free_arg(arg);
2610 return -1;
2611 }
2612
2613 *list = arg;
2614 args++;
2615
2616 if (type == EVENT_OP) {
2617 type = process_op(event, arg, &token);
2618 free_token(token);
2619 if (type == EVENT_ERROR) {
2620 *list = NULL;
2621 free_arg(arg);
2622 return -1;
2623 }
2624 list = &arg->next;
2625 continue;
2626 }
2627
2628 if (type == EVENT_DELIM && strcmp(token, ",") == 0) {
2629 free_token(token);
2630 *list = arg;
2631 list = &arg->next;
2632 continue;
2633 }
2634 break;
2635 } while (type != EVENT_NONE);
2636
2637 if (type != EVENT_NONE && type != EVENT_ERROR)
2638 free_token(token);
2639
2640 return args;
2641}
2642
2643static int event_read_print(struct event_format *event)
2644{
2645 enum event_type type;
2646 char *token;
2647 int ret;
2648
2649 if (read_expected_item(EVENT_ITEM, "print") < 0)
2650 return -1;
2651
2652 if (read_expected(EVENT_ITEM, "fmt") < 0)
2653 return -1;
2654
2655 if (read_expected(EVENT_OP, ":") < 0)
2656 return -1;
2657
2658 if (read_expect_type(EVENT_DQUOTE, &token) < 0)
2659 goto fail;
2660
2661 concat:
2662 event->print_fmt.format = token;
2663 event->print_fmt.args = NULL;
2664
2665 /* ok to have no arg */
2666 type = read_token_item(&token);
2667
2668 if (type == EVENT_NONE)
2669 return 0;
2670
2671 /* Handle concatenation of print lines */
2672 if (type == EVENT_DQUOTE) {
2673 char *cat;
2674
2675 cat = malloc_or_die(strlen(event->print_fmt.format) +
2676 strlen(token) + 1);
2677 strcpy(cat, event->print_fmt.format);
2678 strcat(cat, token);
2679 free_token(token);
2680 free_token(event->print_fmt.format);
2681 event->print_fmt.format = NULL;
2682 token = cat;
2683 goto concat;
2684 }
2685
2686 if (test_type_token(type, token, EVENT_DELIM, ","))
2687 goto fail;
2688
2689 free_token(token);
2690
2691 ret = event_read_print_args(event, &event->print_fmt.args);
2692 if (ret < 0)
2693 return -1;
2694
2695 return ret;
2696
2697 fail:
2698 free_token(token);
2699 return -1;
2700}
2701
2702/**
2703 * pevent_find_common_field - return a common field by event
2704 * @event: handle for the event
2705 * @name: the name of the common field to return
2706 *
2707 * Returns a common field from the event by the given @name.
2708 * This only searchs the common fields and not all field.
2709 */
2710struct format_field *
2711pevent_find_common_field(struct event_format *event, const char *name)
2712{
2713 struct format_field *format;
2714
2715 for (format = event->format.common_fields;
2716 format; format = format->next) {
2717 if (strcmp(format->name, name) == 0)
2718 break;
2719 }
2720
2721 return format;
2722}
2723
2724/**
2725 * pevent_find_field - find a non-common field
2726 * @event: handle for the event
2727 * @name: the name of the non-common field
2728 *
2729 * Returns a non-common field by the given @name.
2730 * This does not search common fields.
2731 */
2732struct format_field *
2733pevent_find_field(struct event_format *event, const char *name)
2734{
2735 struct format_field *format;
2736
2737 for (format = event->format.fields;
2738 format; format = format->next) {
2739 if (strcmp(format->name, name) == 0)
2740 break;
2741 }
2742
2743 return format;
2744}
2745
2746/**
2747 * pevent_find_any_field - find any field by name
2748 * @event: handle for the event
2749 * @name: the name of the field
2750 *
2751 * Returns a field by the given @name.
2752 * This searchs the common field names first, then
2753 * the non-common ones if a common one was not found.
2754 */
2755struct format_field *
2756pevent_find_any_field(struct event_format *event, const char *name)
2757{
2758 struct format_field *format;
2759
2760 format = pevent_find_common_field(event, name);
2761 if (format)
2762 return format;
2763 return pevent_find_field(event, name);
2764}
2765
2766/**
2767 * pevent_read_number - read a number from data
2768 * @pevent: handle for the pevent
2769 * @ptr: the raw data
2770 * @size: the size of the data that holds the number
2771 *
2772 * Returns the number (converted to host) from the
2773 * raw data.
2774 */
2775unsigned long long pevent_read_number(struct pevent *pevent,
2776 const void *ptr, int size)
2777{
2778 switch (size) {
2779 case 1:
2780 return *(unsigned char *)ptr;
2781 case 2:
2782 return data2host2(pevent, ptr);
2783 case 4:
2784 return data2host4(pevent, ptr);
2785 case 8:
2786 return data2host8(pevent, ptr);
2787 default:
2788 /* BUG! */
2789 return 0;
2790 }
2791}
2792
2793/**
2794 * pevent_read_number_field - read a number from data
2795 * @field: a handle to the field
2796 * @data: the raw data to read
2797 * @value: the value to place the number in
2798 *
2799 * Reads raw data according to a field offset and size,
2800 * and translates it into @value.
2801 *
2802 * Returns 0 on success, -1 otherwise.
2803 */
2804int pevent_read_number_field(struct format_field *field, const void *data,
2805 unsigned long long *value)
2806{
2807 if (!field)
2808 return -1;
2809 switch (field->size) {
2810 case 1:
2811 case 2:
2812 case 4:
2813 case 8:
2814 *value = pevent_read_number(field->event->pevent,
2815 data + field->offset, field->size);
2816 return 0;
2817 default:
2818 return -1;
2819 }
2820}
2821
2822static int get_common_info(struct pevent *pevent,
2823 const char *type, int *offset, int *size)
2824{
2825 struct event_format *event;
2826 struct format_field *field;
2827
2828 /*
2829 * All events should have the same common elements.
2830 * Pick any event to find where the type is;
2831 */
2832 if (!pevent->events)
2833 die("no event_list!");
2834
2835 event = pevent->events[0];
2836 field = pevent_find_common_field(event, type);
2837 if (!field)
2838 die("field '%s' not found", type);
2839
2840 *offset = field->offset;
2841 *size = field->size;
2842
2843 return 0;
2844}
2845
2846static int __parse_common(struct pevent *pevent, void *data,
2847 int *size, int *offset, const char *name)
2848{
2849 int ret;
2850
2851 if (!*size) {
2852 ret = get_common_info(pevent, name, offset, size);
2853 if (ret < 0)
2854 return ret;
2855 }
2856 return pevent_read_number(pevent, data + *offset, *size);
2857}
2858
2859static int trace_parse_common_type(struct pevent *pevent, void *data)
2860{
2861 return __parse_common(pevent, data,
2862 &pevent->type_size, &pevent->type_offset,
2863 "common_type");
2864}
2865
2866static int parse_common_pid(struct pevent *pevent, void *data)
2867{
2868 return __parse_common(pevent, data,
2869 &pevent->pid_size, &pevent->pid_offset,
2870 "common_pid");
2871}
2872
2873static int parse_common_pc(struct pevent *pevent, void *data)
2874{
2875 return __parse_common(pevent, data,
2876 &pevent->pc_size, &pevent->pc_offset,
2877 "common_preempt_count");
2878}
2879
2880static int parse_common_flags(struct pevent *pevent, void *data)
2881{
2882 return __parse_common(pevent, data,
2883 &pevent->flags_size, &pevent->flags_offset,
2884 "common_flags");
2885}
2886
2887static int parse_common_lock_depth(struct pevent *pevent, void *data)
2888{
2889 int ret;
2890
2891 ret = __parse_common(pevent, data,
2892 &pevent->ld_size, &pevent->ld_offset,
2893 "common_lock_depth");
2894 if (ret < 0)
2895 return -1;
2896
2897 return ret;
2898}
2899
2900static int events_id_cmp(const void *a, const void *b);
2901
2902/**
2903 * pevent_find_event - find an event by given id
2904 * @pevent: a handle to the pevent
2905 * @id: the id of the event
2906 *
2907 * Returns an event that has a given @id.
2908 */
2909struct event_format *pevent_find_event(struct pevent *pevent, int id)
2910{
2911 struct event_format **eventptr;
2912 struct event_format key;
2913 struct event_format *pkey = &key;
2914
2915 /* Check cache first */
2916 if (pevent->last_event && pevent->last_event->id == id)
2917 return pevent->last_event;
2918
2919 key.id = id;
2920
2921 eventptr = bsearch(&pkey, pevent->events, pevent->nr_events,
2922 sizeof(*pevent->events), events_id_cmp);
2923
2924 if (eventptr) {
2925 pevent->last_event = *eventptr;
2926 return *eventptr;
2927 }
2928
2929 return NULL;
2930}
2931
2932/**
2933 * pevent_find_event_by_name - find an event by given name
2934 * @pevent: a handle to the pevent
2935 * @sys: the system name to search for
2936 * @name: the name of the event to search for
2937 *
2938 * This returns an event with a given @name and under the system
2939 * @sys. If @sys is NULL the first event with @name is returned.
2940 */
2941struct event_format *
2942pevent_find_event_by_name(struct pevent *pevent,
2943 const char *sys, const char *name)
2944{
2945 struct event_format *event;
2946 int i;
2947
2948 if (pevent->last_event &&
2949 strcmp(pevent->last_event->name, name) == 0 &&
2950 (!sys || strcmp(pevent->last_event->system, sys) == 0))
2951 return pevent->last_event;
2952
2953 for (i = 0; i < pevent->nr_events; i++) {
2954 event = pevent->events[i];
2955 if (strcmp(event->name, name) == 0) {
2956 if (!sys)
2957 break;
2958 if (strcmp(event->system, sys) == 0)
2959 break;
2960 }
2961 }
2962 if (i == pevent->nr_events)
2963 event = NULL;
2964
2965 pevent->last_event = event;
2966 return event;
2967}
2968
2969static unsigned long long
2970eval_num_arg(void *data, int size, struct event_format *event, struct print_arg *arg)
2971{
2972 struct pevent *pevent = event->pevent;
2973 unsigned long long val = 0;
2974 unsigned long long left, right;
2975 struct print_arg *typearg = NULL;
2976 struct print_arg *larg;
2977 unsigned long offset;
2978 unsigned int field_size;
2979
2980 switch (arg->type) {
2981 case PRINT_NULL:
2982 /* ?? */
2983 return 0;
2984 case PRINT_ATOM:
2985 return strtoull(arg->atom.atom, NULL, 0);
2986 case PRINT_FIELD:
2987 if (!arg->field.field) {
2988 arg->field.field = pevent_find_any_field(event, arg->field.name);
2989 if (!arg->field.field)
2990 die("field %s not found", arg->field.name);
2991 }
2992 /* must be a number */
2993 val = pevent_read_number(pevent, data + arg->field.field->offset,
2994 arg->field.field->size);
2995 break;
2996 case PRINT_FLAGS:
2997 case PRINT_SYMBOL:
2998 break;
2999 case PRINT_TYPE:
3000 val = eval_num_arg(data, size, event, arg->typecast.item);
3001 return eval_type(val, arg, 0);
3002 case PRINT_STRING:
3003 case PRINT_BSTRING:
3004 return 0;
3005 case PRINT_FUNC: {
3006 struct trace_seq s;
3007 trace_seq_init(&s);
3008 val = process_defined_func(&s, data, size, event, arg);
3009 trace_seq_destroy(&s);
3010 return val;
3011 }
3012 case PRINT_OP:
3013 if (strcmp(arg->op.op, "[") == 0) {
3014 /*
3015 * Arrays are special, since we don't want
3016 * to read the arg as is.
3017 */
3018 right = eval_num_arg(data, size, event, arg->op.right);
3019
3020 /* handle typecasts */
3021 larg = arg->op.left;
3022 while (larg->type == PRINT_TYPE) {
3023 if (!typearg)
3024 typearg = larg;
3025 larg = larg->typecast.item;
3026 }
3027
3028 /* Default to long size */
3029 field_size = pevent->long_size;
3030
3031 switch (larg->type) {
3032 case PRINT_DYNAMIC_ARRAY:
3033 offset = pevent_read_number(pevent,
3034 data + larg->dynarray.field->offset,
3035 larg->dynarray.field->size);
3036 if (larg->dynarray.field->elementsize)
3037 field_size = larg->dynarray.field->elementsize;
3038 /*
3039 * The actual length of the dynamic array is stored
3040 * in the top half of the field, and the offset
3041 * is in the bottom half of the 32 bit field.
3042 */
3043 offset &= 0xffff;
3044 offset += right;
3045 break;
3046 case PRINT_FIELD:
3047 if (!larg->field.field) {
3048 larg->field.field =
3049 pevent_find_any_field(event, larg->field.name);
3050 if (!larg->field.field)
3051 die("field %s not found", larg->field.name);
3052 }
3053 field_size = larg->field.field->elementsize;
3054 offset = larg->field.field->offset +
3055 right * larg->field.field->elementsize;
3056 break;
3057 default:
3058 goto default_op; /* oops, all bets off */
3059 }
3060 val = pevent_read_number(pevent,
3061 data + offset, field_size);
3062 if (typearg)
3063 val = eval_type(val, typearg, 1);
3064 break;
3065 } else if (strcmp(arg->op.op, "?") == 0) {
3066 left = eval_num_arg(data, size, event, arg->op.left);
3067 arg = arg->op.right;
3068 if (left)
3069 val = eval_num_arg(data, size, event, arg->op.left);
3070 else
3071 val = eval_num_arg(data, size, event, arg->op.right);
3072 break;
3073 }
3074 default_op:
3075 left = eval_num_arg(data, size, event, arg->op.left);
3076 right = eval_num_arg(data, size, event, arg->op.right);
3077 switch (arg->op.op[0]) {
3078 case '!':
3079 switch (arg->op.op[1]) {
3080 case 0:
3081 val = !right;
3082 break;
3083 case '=':
3084 val = left != right;
3085 break;
3086 default:
3087 die("unknown op '%s'", arg->op.op);
3088 }
3089 break;
3090 case '~':
3091 val = ~right;
3092 break;
3093 case '|':
3094 if (arg->op.op[1])
3095 val = left || right;
3096 else
3097 val = left | right;
3098 break;
3099 case '&':
3100 if (arg->op.op[1])
3101 val = left && right;
3102 else
3103 val = left & right;
3104 break;
3105 case '<':
3106 switch (arg->op.op[1]) {
3107 case 0:
3108 val = left < right;
3109 break;
3110 case '<':
3111 val = left << right;
3112 break;
3113 case '=':
3114 val = left <= right;
3115 break;
3116 default:
3117 die("unknown op '%s'", arg->op.op);
3118 }
3119 break;
3120 case '>':
3121 switch (arg->op.op[1]) {
3122 case 0:
3123 val = left > right;
3124 break;
3125 case '>':
3126 val = left >> right;
3127 break;
3128 case '=':
3129 val = left >= right;
3130 break;
3131 default:
3132 die("unknown op '%s'", arg->op.op);
3133 }
3134 break;
3135 case '=':
3136 if (arg->op.op[1] != '=')
3137 die("unknown op '%s'", arg->op.op);
3138 val = left == right;
3139 break;
3140 case '-':
3141 val = left - right;
3142 break;
3143 case '+':
3144 val = left + right;
3145 break;
Steven Rostedt2e7a5fc2012-04-06 00:48:04 +02003146 case '/':
3147 val = left / right;
3148 break;
3149 case '*':
3150 val = left * right;
3151 break;
Steven Rostedtf7d82352012-04-06 00:47:53 +02003152 default:
3153 die("unknown op '%s'", arg->op.op);
3154 }
3155 break;
3156 default: /* not sure what to do there */
3157 return 0;
3158 }
3159 return val;
3160}
3161
3162struct flag {
3163 const char *name;
3164 unsigned long long value;
3165};
3166
3167static const struct flag flags[] = {
3168 { "HI_SOFTIRQ", 0 },
3169 { "TIMER_SOFTIRQ", 1 },
3170 { "NET_TX_SOFTIRQ", 2 },
3171 { "NET_RX_SOFTIRQ", 3 },
3172 { "BLOCK_SOFTIRQ", 4 },
3173 { "BLOCK_IOPOLL_SOFTIRQ", 5 },
3174 { "TASKLET_SOFTIRQ", 6 },
3175 { "SCHED_SOFTIRQ", 7 },
3176 { "HRTIMER_SOFTIRQ", 8 },
3177 { "RCU_SOFTIRQ", 9 },
3178
3179 { "HRTIMER_NORESTART", 0 },
3180 { "HRTIMER_RESTART", 1 },
3181};
3182
3183static unsigned long long eval_flag(const char *flag)
3184{
3185 int i;
3186
3187 /*
3188 * Some flags in the format files do not get converted.
3189 * If the flag is not numeric, see if it is something that
3190 * we already know about.
3191 */
3192 if (isdigit(flag[0]))
3193 return strtoull(flag, NULL, 0);
3194
3195 for (i = 0; i < (int)(sizeof(flags)/sizeof(flags[0])); i++)
3196 if (strcmp(flags[i].name, flag) == 0)
3197 return flags[i].value;
3198
3199 return 0;
3200}
3201
3202static void print_str_to_seq(struct trace_seq *s, const char *format,
3203 int len_arg, const char *str)
3204{
3205 if (len_arg >= 0)
3206 trace_seq_printf(s, format, len_arg, str);
3207 else
3208 trace_seq_printf(s, format, str);
3209}
3210
3211static void print_str_arg(struct trace_seq *s, void *data, int size,
3212 struct event_format *event, const char *format,
3213 int len_arg, struct print_arg *arg)
3214{
3215 struct pevent *pevent = event->pevent;
3216 struct print_flag_sym *flag;
Namhyung Kimb7008072012-06-27 09:41:40 +09003217 struct format_field *field;
Steven Rostedtf7d82352012-04-06 00:47:53 +02003218 unsigned long long val, fval;
3219 unsigned long addr;
3220 char *str;
3221 int print;
3222 int len;
3223
3224 switch (arg->type) {
3225 case PRINT_NULL:
3226 /* ?? */
3227 return;
3228 case PRINT_ATOM:
3229 print_str_to_seq(s, format, len_arg, arg->atom.atom);
3230 return;
3231 case PRINT_FIELD:
Namhyung Kimb7008072012-06-27 09:41:40 +09003232 field = arg->field.field;
3233 if (!field) {
3234 field = pevent_find_any_field(event, arg->field.name);
3235 if (!field)
Steven Rostedtf7d82352012-04-06 00:47:53 +02003236 die("field %s not found", arg->field.name);
Namhyung Kimb7008072012-06-27 09:41:40 +09003237 arg->field.field = field;
Steven Rostedtf7d82352012-04-06 00:47:53 +02003238 }
3239 /* Zero sized fields, mean the rest of the data */
Namhyung Kimb7008072012-06-27 09:41:40 +09003240 len = field->size ? : size - field->offset;
Steven Rostedtf7d82352012-04-06 00:47:53 +02003241
3242 /*
3243 * Some events pass in pointers. If this is not an array
3244 * and the size is the same as long_size, assume that it
3245 * is a pointer.
3246 */
Namhyung Kimb7008072012-06-27 09:41:40 +09003247 if (!(field->flags & FIELD_IS_ARRAY) &&
3248 field->size == pevent->long_size) {
3249 addr = *(unsigned long *)(data + field->offset);
Steven Rostedtf7d82352012-04-06 00:47:53 +02003250 trace_seq_printf(s, "%lx", addr);
3251 break;
3252 }
3253 str = malloc_or_die(len + 1);
Namhyung Kimb7008072012-06-27 09:41:40 +09003254 memcpy(str, data + field->offset, len);
Steven Rostedtf7d82352012-04-06 00:47:53 +02003255 str[len] = 0;
3256 print_str_to_seq(s, format, len_arg, str);
3257 free(str);
3258 break;
3259 case PRINT_FLAGS:
3260 val = eval_num_arg(data, size, event, arg->flags.field);
3261 print = 0;
3262 for (flag = arg->flags.flags; flag; flag = flag->next) {
3263 fval = eval_flag(flag->value);
3264 if (!val && !fval) {
3265 print_str_to_seq(s, format, len_arg, flag->str);
3266 break;
3267 }
3268 if (fval && (val & fval) == fval) {
3269 if (print && arg->flags.delim)
3270 trace_seq_puts(s, arg->flags.delim);
3271 print_str_to_seq(s, format, len_arg, flag->str);
3272 print = 1;
3273 val &= ~fval;
3274 }
3275 }
3276 break;
3277 case PRINT_SYMBOL:
3278 val = eval_num_arg(data, size, event, arg->symbol.field);
3279 for (flag = arg->symbol.symbols; flag; flag = flag->next) {
3280 fval = eval_flag(flag->value);
3281 if (val == fval) {
3282 print_str_to_seq(s, format, len_arg, flag->str);
3283 break;
3284 }
3285 }
3286 break;
3287
3288 case PRINT_TYPE:
3289 break;
3290 case PRINT_STRING: {
3291 int str_offset;
3292
3293 if (arg->string.offset == -1) {
3294 struct format_field *f;
3295
3296 f = pevent_find_any_field(event, arg->string.string);
3297 arg->string.offset = f->offset;
3298 }
3299 str_offset = data2host4(pevent, data + arg->string.offset);
3300 str_offset &= 0xffff;
3301 print_str_to_seq(s, format, len_arg, ((char *)data) + str_offset);
3302 break;
3303 }
3304 case PRINT_BSTRING:
3305 trace_seq_printf(s, format, arg->string.string);
3306 break;
3307 case PRINT_OP:
3308 /*
3309 * The only op for string should be ? :
3310 */
3311 if (arg->op.op[0] != '?')
3312 return;
3313 val = eval_num_arg(data, size, event, arg->op.left);
3314 if (val)
3315 print_str_arg(s, data, size, event,
3316 format, len_arg, arg->op.right->op.left);
3317 else
3318 print_str_arg(s, data, size, event,
3319 format, len_arg, arg->op.right->op.right);
3320 break;
3321 case PRINT_FUNC:
3322 process_defined_func(s, data, size, event, arg);
3323 break;
3324 default:
3325 /* well... */
3326 break;
3327 }
3328}
3329
3330static unsigned long long
3331process_defined_func(struct trace_seq *s, void *data, int size,
3332 struct event_format *event, struct print_arg *arg)
3333{
3334 struct pevent_function_handler *func_handle = arg->func.func;
3335 struct pevent_func_params *param;
3336 unsigned long long *args;
3337 unsigned long long ret;
3338 struct print_arg *farg;
3339 struct trace_seq str;
3340 struct save_str {
3341 struct save_str *next;
3342 char *str;
3343 } *strings = NULL, *string;
3344 int i;
3345
3346 if (!func_handle->nr_args) {
3347 ret = (*func_handle->func)(s, NULL);
3348 goto out;
3349 }
3350
3351 farg = arg->func.args;
3352 param = func_handle->params;
3353
3354 args = malloc_or_die(sizeof(*args) * func_handle->nr_args);
3355 for (i = 0; i < func_handle->nr_args; i++) {
3356 switch (param->type) {
3357 case PEVENT_FUNC_ARG_INT:
3358 case PEVENT_FUNC_ARG_LONG:
3359 case PEVENT_FUNC_ARG_PTR:
3360 args[i] = eval_num_arg(data, size, event, farg);
3361 break;
3362 case PEVENT_FUNC_ARG_STRING:
3363 trace_seq_init(&str);
3364 print_str_arg(&str, data, size, event, "%s", -1, farg);
3365 trace_seq_terminate(&str);
3366 string = malloc_or_die(sizeof(*string));
3367 string->next = strings;
3368 string->str = strdup(str.buffer);
3369 strings = string;
3370 trace_seq_destroy(&str);
3371 break;
3372 default:
3373 /*
3374 * Something went totally wrong, this is not
3375 * an input error, something in this code broke.
3376 */
3377 die("Unexpected end of arguments\n");
3378 break;
3379 }
3380 farg = farg->next;
Namhyung Kim21c69e72012-05-23 11:36:51 +09003381 param = param->next;
Steven Rostedtf7d82352012-04-06 00:47:53 +02003382 }
3383
3384 ret = (*func_handle->func)(s, args);
3385 free(args);
3386 while (strings) {
3387 string = strings;
3388 strings = string->next;
3389 free(string->str);
3390 free(string);
3391 }
3392
3393 out:
3394 /* TBD : handle return type here */
3395 return ret;
3396}
3397
3398static struct print_arg *make_bprint_args(char *fmt, void *data, int size, struct event_format *event)
3399{
3400 struct pevent *pevent = event->pevent;
3401 struct format_field *field, *ip_field;
3402 struct print_arg *args, *arg, **next;
3403 unsigned long long ip, val;
3404 char *ptr;
3405 void *bptr;
3406
3407 field = pevent->bprint_buf_field;
3408 ip_field = pevent->bprint_ip_field;
3409
3410 if (!field) {
3411 field = pevent_find_field(event, "buf");
3412 if (!field)
3413 die("can't find buffer field for binary printk");
3414 ip_field = pevent_find_field(event, "ip");
3415 if (!ip_field)
3416 die("can't find ip field for binary printk");
3417 pevent->bprint_buf_field = field;
3418 pevent->bprint_ip_field = ip_field;
3419 }
3420
3421 ip = pevent_read_number(pevent, data + ip_field->offset, ip_field->size);
3422
3423 /*
3424 * The first arg is the IP pointer.
3425 */
3426 args = alloc_arg();
3427 arg = args;
3428 arg->next = NULL;
3429 next = &arg->next;
3430
3431 arg->type = PRINT_ATOM;
3432 arg->atom.atom = malloc_or_die(32);
3433 sprintf(arg->atom.atom, "%lld", ip);
3434
3435 /* skip the first "%pf : " */
3436 for (ptr = fmt + 6, bptr = data + field->offset;
3437 bptr < data + size && *ptr; ptr++) {
3438 int ls = 0;
3439
3440 if (*ptr == '%') {
3441 process_again:
3442 ptr++;
3443 switch (*ptr) {
3444 case '%':
3445 break;
3446 case 'l':
3447 ls++;
3448 goto process_again;
3449 case 'L':
3450 ls = 2;
3451 goto process_again;
3452 case '0' ... '9':
3453 goto process_again;
3454 case 'p':
3455 ls = 1;
3456 /* fall through */
3457 case 'd':
3458 case 'u':
3459 case 'x':
3460 case 'i':
3461 /* the pointers are always 4 bytes aligned */
3462 bptr = (void *)(((unsigned long)bptr + 3) &
3463 ~3);
3464 switch (ls) {
3465 case 0:
3466 ls = 4;
3467 break;
3468 case 1:
3469 ls = pevent->long_size;
3470 break;
3471 case 2:
3472 ls = 8;
3473 default:
3474 break;
3475 }
3476 val = pevent_read_number(pevent, bptr, ls);
3477 bptr += ls;
3478 arg = alloc_arg();
3479 arg->next = NULL;
3480 arg->type = PRINT_ATOM;
3481 arg->atom.atom = malloc_or_die(32);
3482 sprintf(arg->atom.atom, "%lld", val);
3483 *next = arg;
3484 next = &arg->next;
3485 break;
3486 case 's':
3487 arg = alloc_arg();
3488 arg->next = NULL;
3489 arg->type = PRINT_BSTRING;
3490 arg->string.string = strdup(bptr);
3491 bptr += strlen(bptr) + 1;
3492 *next = arg;
3493 next = &arg->next;
3494 default:
3495 break;
3496 }
3497 }
3498 }
3499
3500 return args;
3501}
3502
3503static void free_args(struct print_arg *args)
3504{
3505 struct print_arg *next;
3506
3507 while (args) {
3508 next = args->next;
3509
3510 free_arg(args);
3511 args = next;
3512 }
3513}
3514
3515static char *
3516get_bprint_format(void *data, int size __unused, struct event_format *event)
3517{
3518 struct pevent *pevent = event->pevent;
3519 unsigned long long addr;
3520 struct format_field *field;
3521 struct printk_map *printk;
3522 char *format;
3523 char *p;
3524
3525 field = pevent->bprint_fmt_field;
3526
3527 if (!field) {
3528 field = pevent_find_field(event, "fmt");
3529 if (!field)
3530 die("can't find format field for binary printk");
3531 pevent->bprint_fmt_field = field;
3532 }
3533
3534 addr = pevent_read_number(pevent, data + field->offset, field->size);
3535
3536 printk = find_printk(pevent, addr);
3537 if (!printk) {
3538 format = malloc_or_die(45);
3539 sprintf(format, "%%pf : (NO FORMAT FOUND at %llx)\n",
3540 addr);
3541 return format;
3542 }
3543
3544 p = printk->printk;
3545 /* Remove any quotes. */
3546 if (*p == '"')
3547 p++;
3548 format = malloc_or_die(strlen(p) + 10);
3549 sprintf(format, "%s : %s", "%pf", p);
3550 /* remove ending quotes and new line since we will add one too */
3551 p = format + strlen(format) - 1;
3552 if (*p == '"')
3553 *p = 0;
3554
3555 p -= 2;
3556 if (strcmp(p, "\\n") == 0)
3557 *p = 0;
3558
3559 return format;
3560}
3561
3562static void print_mac_arg(struct trace_seq *s, int mac, void *data, int size,
3563 struct event_format *event, struct print_arg *arg)
3564{
3565 unsigned char *buf;
3566 char *fmt = "%.2x:%.2x:%.2x:%.2x:%.2x:%.2x";
3567
3568 if (arg->type == PRINT_FUNC) {
3569 process_defined_func(s, data, size, event, arg);
3570 return;
3571 }
3572
3573 if (arg->type != PRINT_FIELD) {
3574 trace_seq_printf(s, "ARG TYPE NOT FIELD BUT %d",
3575 arg->type);
3576 return;
3577 }
3578
3579 if (mac == 'm')
3580 fmt = "%.2x%.2x%.2x%.2x%.2x%.2x";
3581 if (!arg->field.field) {
3582 arg->field.field =
3583 pevent_find_any_field(event, arg->field.name);
3584 if (!arg->field.field)
3585 die("field %s not found", arg->field.name);
3586 }
3587 if (arg->field.field->size != 6) {
3588 trace_seq_printf(s, "INVALIDMAC");
3589 return;
3590 }
3591 buf = data + arg->field.field->offset;
3592 trace_seq_printf(s, fmt, buf[0], buf[1], buf[2], buf[3], buf[4], buf[5]);
3593}
3594
Namhyung Kim600da3c2012-06-22 17:10:15 +09003595static int is_printable_array(char *p, unsigned int len)
3596{
3597 unsigned int i;
3598
3599 for (i = 0; i < len && p[i]; i++)
3600 if (!isprint(p[i]))
3601 return 0;
3602 return 1;
3603}
3604
Steven Rostedtf7d82352012-04-06 00:47:53 +02003605static void print_event_fields(struct trace_seq *s, void *data, int size,
3606 struct event_format *event)
3607{
3608 struct format_field *field;
3609 unsigned long long val;
3610 unsigned int offset, len, i;
3611
3612 field = event->format.fields;
3613 while (field) {
3614 trace_seq_printf(s, " %s=", field->name);
3615 if (field->flags & FIELD_IS_ARRAY) {
3616 offset = field->offset;
3617 len = field->size;
3618 if (field->flags & FIELD_IS_DYNAMIC) {
3619 val = pevent_read_number(event->pevent, data + offset, len);
3620 offset = val;
3621 len = offset >> 16;
3622 offset &= 0xffff;
3623 }
Namhyung Kim600da3c2012-06-22 17:10:15 +09003624 if (field->flags & FIELD_IS_STRING &&
3625 is_printable_array(data + offset, len)) {
Steven Rostedtf7d82352012-04-06 00:47:53 +02003626 trace_seq_printf(s, "%s", (char *)data + offset);
3627 } else {
3628 trace_seq_puts(s, "ARRAY[");
3629 for (i = 0; i < len; i++) {
3630 if (i)
3631 trace_seq_puts(s, ", ");
3632 trace_seq_printf(s, "%02x",
3633 *((unsigned char *)data + offset + i));
3634 }
3635 trace_seq_putc(s, ']');
Namhyung Kim600da3c2012-06-22 17:10:15 +09003636 field->flags &= ~FIELD_IS_STRING;
Steven Rostedtf7d82352012-04-06 00:47:53 +02003637 }
3638 } else {
3639 val = pevent_read_number(event->pevent, data + field->offset,
3640 field->size);
3641 if (field->flags & FIELD_IS_POINTER) {
3642 trace_seq_printf(s, "0x%llx", val);
3643 } else if (field->flags & FIELD_IS_SIGNED) {
3644 switch (field->size) {
3645 case 4:
3646 /*
3647 * If field is long then print it in hex.
3648 * A long usually stores pointers.
3649 */
3650 if (field->flags & FIELD_IS_LONG)
3651 trace_seq_printf(s, "0x%x", (int)val);
3652 else
3653 trace_seq_printf(s, "%d", (int)val);
3654 break;
3655 case 2:
3656 trace_seq_printf(s, "%2d", (short)val);
3657 break;
3658 case 1:
3659 trace_seq_printf(s, "%1d", (char)val);
3660 break;
3661 default:
3662 trace_seq_printf(s, "%lld", val);
3663 }
3664 } else {
3665 if (field->flags & FIELD_IS_LONG)
3666 trace_seq_printf(s, "0x%llx", val);
3667 else
3668 trace_seq_printf(s, "%llu", val);
3669 }
3670 }
3671 field = field->next;
3672 }
3673}
3674
3675static void pretty_print(struct trace_seq *s, void *data, int size, struct event_format *event)
3676{
3677 struct pevent *pevent = event->pevent;
3678 struct print_fmt *print_fmt = &event->print_fmt;
3679 struct print_arg *arg = print_fmt->args;
3680 struct print_arg *args = NULL;
3681 const char *ptr = print_fmt->format;
3682 unsigned long long val;
3683 struct func_map *func;
3684 const char *saveptr;
3685 char *bprint_fmt = NULL;
3686 char format[32];
3687 int show_func;
3688 int len_as_arg;
3689 int len_arg;
3690 int len;
3691 int ls;
3692
3693 if (event->flags & EVENT_FL_FAILED) {
3694 trace_seq_printf(s, "[FAILED TO PARSE]");
3695 print_event_fields(s, data, size, event);
3696 return;
3697 }
3698
3699 if (event->flags & EVENT_FL_ISBPRINT) {
3700 bprint_fmt = get_bprint_format(data, size, event);
3701 args = make_bprint_args(bprint_fmt, data, size, event);
3702 arg = args;
3703 ptr = bprint_fmt;
3704 }
3705
3706 for (; *ptr; ptr++) {
3707 ls = 0;
3708 if (*ptr == '\\') {
3709 ptr++;
3710 switch (*ptr) {
3711 case 'n':
3712 trace_seq_putc(s, '\n');
3713 break;
3714 case 't':
3715 trace_seq_putc(s, '\t');
3716 break;
3717 case 'r':
3718 trace_seq_putc(s, '\r');
3719 break;
3720 case '\\':
3721 trace_seq_putc(s, '\\');
3722 break;
3723 default:
3724 trace_seq_putc(s, *ptr);
3725 break;
3726 }
3727
3728 } else if (*ptr == '%') {
3729 saveptr = ptr;
3730 show_func = 0;
3731 len_as_arg = 0;
3732 cont_process:
3733 ptr++;
3734 switch (*ptr) {
3735 case '%':
3736 trace_seq_putc(s, '%');
3737 break;
3738 case '#':
3739 /* FIXME: need to handle properly */
3740 goto cont_process;
3741 case 'h':
3742 ls--;
3743 goto cont_process;
3744 case 'l':
3745 ls++;
3746 goto cont_process;
3747 case 'L':
3748 ls = 2;
3749 goto cont_process;
3750 case '*':
3751 /* The argument is the length. */
3752 if (!arg)
3753 die("no argument match");
3754 len_arg = eval_num_arg(data, size, event, arg);
3755 len_as_arg = 1;
3756 arg = arg->next;
3757 goto cont_process;
3758 case '.':
3759 case 'z':
3760 case 'Z':
3761 case '0' ... '9':
3762 goto cont_process;
3763 case 'p':
3764 if (pevent->long_size == 4)
3765 ls = 1;
3766 else
3767 ls = 2;
3768
3769 if (*(ptr+1) == 'F' ||
3770 *(ptr+1) == 'f') {
3771 ptr++;
3772 show_func = *ptr;
3773 } else if (*(ptr+1) == 'M' || *(ptr+1) == 'm') {
3774 print_mac_arg(s, *(ptr+1), data, size, event, arg);
3775 ptr++;
3776 break;
3777 }
3778
3779 /* fall through */
3780 case 'd':
3781 case 'i':
3782 case 'x':
3783 case 'X':
3784 case 'u':
3785 if (!arg)
3786 die("no argument match");
3787
3788 len = ((unsigned long)ptr + 1) -
3789 (unsigned long)saveptr;
3790
3791 /* should never happen */
3792 if (len > 31)
3793 die("bad format!");
3794
3795 memcpy(format, saveptr, len);
3796 format[len] = 0;
3797
3798 val = eval_num_arg(data, size, event, arg);
3799 arg = arg->next;
3800
3801 if (show_func) {
3802 func = find_func(pevent, val);
3803 if (func) {
3804 trace_seq_puts(s, func->func);
3805 if (show_func == 'F')
3806 trace_seq_printf(s,
3807 "+0x%llx",
3808 val - func->addr);
3809 break;
3810 }
3811 }
3812 if (pevent->long_size == 8 && ls) {
3813 char *p;
3814
3815 ls = 2;
3816 /* make %l into %ll */
3817 p = strchr(format, 'l');
3818 if (p)
3819 memmove(p, p+1, strlen(p)+1);
3820 else if (strcmp(format, "%p") == 0)
3821 strcpy(format, "0x%llx");
3822 }
3823 switch (ls) {
3824 case -2:
3825 if (len_as_arg)
3826 trace_seq_printf(s, format, len_arg, (char)val);
3827 else
3828 trace_seq_printf(s, format, (char)val);
3829 break;
3830 case -1:
3831 if (len_as_arg)
3832 trace_seq_printf(s, format, len_arg, (short)val);
3833 else
3834 trace_seq_printf(s, format, (short)val);
3835 break;
3836 case 0:
3837 if (len_as_arg)
3838 trace_seq_printf(s, format, len_arg, (int)val);
3839 else
3840 trace_seq_printf(s, format, (int)val);
3841 break;
3842 case 1:
3843 if (len_as_arg)
3844 trace_seq_printf(s, format, len_arg, (long)val);
3845 else
3846 trace_seq_printf(s, format, (long)val);
3847 break;
3848 case 2:
3849 if (len_as_arg)
3850 trace_seq_printf(s, format, len_arg,
3851 (long long)val);
3852 else
3853 trace_seq_printf(s, format, (long long)val);
3854 break;
3855 default:
3856 die("bad count (%d)", ls);
3857 }
3858 break;
3859 case 's':
3860 if (!arg)
3861 die("no matching argument");
3862
3863 len = ((unsigned long)ptr + 1) -
3864 (unsigned long)saveptr;
3865
3866 /* should never happen */
3867 if (len > 31)
3868 die("bad format!");
3869
3870 memcpy(format, saveptr, len);
3871 format[len] = 0;
3872 if (!len_as_arg)
3873 len_arg = -1;
3874 print_str_arg(s, data, size, event,
3875 format, len_arg, arg);
3876 arg = arg->next;
3877 break;
3878 default:
3879 trace_seq_printf(s, ">%c<", *ptr);
3880
3881 }
3882 } else
3883 trace_seq_putc(s, *ptr);
3884 }
3885
3886 if (args) {
3887 free_args(args);
3888 free(bprint_fmt);
3889 }
3890}
3891
3892/**
3893 * pevent_data_lat_fmt - parse the data for the latency format
3894 * @pevent: a handle to the pevent
3895 * @s: the trace_seq to write to
3896 * @data: the raw data to read from
3897 * @size: currently unused.
3898 *
3899 * This parses out the Latency format (interrupts disabled,
3900 * need rescheduling, in hard/soft interrupt, preempt count
3901 * and lock depth) and places it into the trace_seq.
3902 */
3903void pevent_data_lat_fmt(struct pevent *pevent,
Steven Rostedt1c698182012-04-06 00:48:06 +02003904 struct trace_seq *s, struct pevent_record *record)
Steven Rostedtf7d82352012-04-06 00:47:53 +02003905{
3906 static int check_lock_depth = 1;
3907 static int lock_depth_exists;
3908 unsigned int lat_flags;
3909 unsigned int pc;
3910 int lock_depth;
3911 int hardirq;
3912 int softirq;
3913 void *data = record->data;
3914
3915 lat_flags = parse_common_flags(pevent, data);
3916 pc = parse_common_pc(pevent, data);
3917 /* lock_depth may not always exist */
3918 if (check_lock_depth) {
3919 struct format_field *field;
3920 struct event_format *event;
3921
3922 check_lock_depth = 0;
3923 event = pevent->events[0];
3924 field = pevent_find_common_field(event, "common_lock_depth");
3925 if (field)
3926 lock_depth_exists = 1;
3927 }
3928 if (lock_depth_exists)
3929 lock_depth = parse_common_lock_depth(pevent, data);
3930
3931 hardirq = lat_flags & TRACE_FLAG_HARDIRQ;
3932 softirq = lat_flags & TRACE_FLAG_SOFTIRQ;
3933
3934 trace_seq_printf(s, "%c%c%c",
3935 (lat_flags & TRACE_FLAG_IRQS_OFF) ? 'd' :
3936 (lat_flags & TRACE_FLAG_IRQS_NOSUPPORT) ?
3937 'X' : '.',
3938 (lat_flags & TRACE_FLAG_NEED_RESCHED) ?
3939 'N' : '.',
3940 (hardirq && softirq) ? 'H' :
3941 hardirq ? 'h' : softirq ? 's' : '.');
3942
3943 if (pc)
3944 trace_seq_printf(s, "%x", pc);
3945 else
3946 trace_seq_putc(s, '.');
3947
3948 if (lock_depth_exists) {
3949 if (lock_depth < 0)
3950 trace_seq_putc(s, '.');
3951 else
3952 trace_seq_printf(s, "%d", lock_depth);
3953 }
3954
3955 trace_seq_terminate(s);
3956}
3957
3958/**
3959 * pevent_data_type - parse out the given event type
3960 * @pevent: a handle to the pevent
3961 * @rec: the record to read from
3962 *
3963 * This returns the event id from the @rec.
3964 */
Steven Rostedt1c698182012-04-06 00:48:06 +02003965int pevent_data_type(struct pevent *pevent, struct pevent_record *rec)
Steven Rostedtf7d82352012-04-06 00:47:53 +02003966{
3967 return trace_parse_common_type(pevent, rec->data);
3968}
3969
3970/**
3971 * pevent_data_event_from_type - find the event by a given type
3972 * @pevent: a handle to the pevent
3973 * @type: the type of the event.
3974 *
3975 * This returns the event form a given @type;
3976 */
3977struct event_format *pevent_data_event_from_type(struct pevent *pevent, int type)
3978{
3979 return pevent_find_event(pevent, type);
3980}
3981
3982/**
3983 * pevent_data_pid - parse the PID from raw data
3984 * @pevent: a handle to the pevent
3985 * @rec: the record to parse
3986 *
3987 * This returns the PID from a raw data.
3988 */
Steven Rostedt1c698182012-04-06 00:48:06 +02003989int pevent_data_pid(struct pevent *pevent, struct pevent_record *rec)
Steven Rostedtf7d82352012-04-06 00:47:53 +02003990{
3991 return parse_common_pid(pevent, rec->data);
3992}
3993
3994/**
3995 * pevent_data_comm_from_pid - return the command line from PID
3996 * @pevent: a handle to the pevent
3997 * @pid: the PID of the task to search for
3998 *
3999 * This returns a pointer to the command line that has the given
4000 * @pid.
4001 */
4002const char *pevent_data_comm_from_pid(struct pevent *pevent, int pid)
4003{
4004 const char *comm;
4005
4006 comm = find_cmdline(pevent, pid);
4007 return comm;
4008}
4009
4010/**
4011 * pevent_data_comm_from_pid - parse the data into the print format
4012 * @s: the trace_seq to write to
4013 * @event: the handle to the event
4014 * @cpu: the cpu the event was recorded on
4015 * @data: the raw data
4016 * @size: the size of the raw data
4017 * @nsecs: the timestamp of the event
4018 *
4019 * This parses the raw @data using the given @event information and
4020 * writes the print format into the trace_seq.
4021 */
4022void pevent_event_info(struct trace_seq *s, struct event_format *event,
Steven Rostedt1c698182012-04-06 00:48:06 +02004023 struct pevent_record *record)
Steven Rostedtf7d82352012-04-06 00:47:53 +02004024{
4025 int print_pretty = 1;
4026
4027 if (event->pevent->print_raw)
4028 print_event_fields(s, record->data, record->size, event);
4029 else {
4030
4031 if (event->handler)
4032 print_pretty = event->handler(s, record, event,
4033 event->context);
4034
4035 if (print_pretty)
4036 pretty_print(s, record->data, record->size, event);
4037 }
4038
4039 trace_seq_terminate(s);
4040}
4041
4042void pevent_print_event(struct pevent *pevent, struct trace_seq *s,
Steven Rostedt1c698182012-04-06 00:48:06 +02004043 struct pevent_record *record)
Steven Rostedtf7d82352012-04-06 00:47:53 +02004044{
4045 static char *spaces = " "; /* 20 spaces */
4046 struct event_format *event;
4047 unsigned long secs;
4048 unsigned long usecs;
Steven Rostedt4dc10242012-04-06 00:47:57 +02004049 unsigned long nsecs;
Steven Rostedtf7d82352012-04-06 00:47:53 +02004050 const char *comm;
4051 void *data = record->data;
4052 int type;
4053 int pid;
4054 int len;
Steven Rostedt4dc10242012-04-06 00:47:57 +02004055 int p;
Steven Rostedtf7d82352012-04-06 00:47:53 +02004056
4057 secs = record->ts / NSECS_PER_SEC;
Steven Rostedt4dc10242012-04-06 00:47:57 +02004058 nsecs = record->ts - secs * NSECS_PER_SEC;
Steven Rostedtf7d82352012-04-06 00:47:53 +02004059
4060 if (record->size < 0) {
4061 do_warning("ug! negative record size %d", record->size);
4062 return;
4063 }
4064
4065 type = trace_parse_common_type(pevent, data);
4066
4067 event = pevent_find_event(pevent, type);
4068 if (!event) {
4069 do_warning("ug! no event found for type %d", type);
4070 return;
4071 }
4072
4073 pid = parse_common_pid(pevent, data);
4074 comm = find_cmdline(pevent, pid);
4075
4076 if (pevent->latency_format) {
4077 trace_seq_printf(s, "%8.8s-%-5d %3d",
4078 comm, pid, record->cpu);
4079 pevent_data_lat_fmt(pevent, s, record);
4080 } else
4081 trace_seq_printf(s, "%16s-%-5d [%03d]", comm, pid, record->cpu);
4082
Steven Rostedt4dc10242012-04-06 00:47:57 +02004083 if (pevent->flags & PEVENT_NSEC_OUTPUT) {
4084 usecs = nsecs;
4085 p = 9;
4086 } else {
4087 usecs = (nsecs + 500) / NSECS_PER_USEC;
4088 p = 6;
4089 }
4090
4091 trace_seq_printf(s, " %5lu.%0*lu: %s: ", secs, p, usecs, event->name);
Steven Rostedtf7d82352012-04-06 00:47:53 +02004092
4093 /* Space out the event names evenly. */
4094 len = strlen(event->name);
4095 if (len < 20)
4096 trace_seq_printf(s, "%.*s", 20 - len, spaces);
4097
4098 pevent_event_info(s, event, record);
4099}
4100
4101static int events_id_cmp(const void *a, const void *b)
4102{
4103 struct event_format * const * ea = a;
4104 struct event_format * const * eb = b;
4105
4106 if ((*ea)->id < (*eb)->id)
4107 return -1;
4108
4109 if ((*ea)->id > (*eb)->id)
4110 return 1;
4111
4112 return 0;
4113}
4114
4115static int events_name_cmp(const void *a, const void *b)
4116{
4117 struct event_format * const * ea = a;
4118 struct event_format * const * eb = b;
4119 int res;
4120
4121 res = strcmp((*ea)->name, (*eb)->name);
4122 if (res)
4123 return res;
4124
4125 res = strcmp((*ea)->system, (*eb)->system);
4126 if (res)
4127 return res;
4128
4129 return events_id_cmp(a, b);
4130}
4131
4132static int events_system_cmp(const void *a, const void *b)
4133{
4134 struct event_format * const * ea = a;
4135 struct event_format * const * eb = b;
4136 int res;
4137
4138 res = strcmp((*ea)->system, (*eb)->system);
4139 if (res)
4140 return res;
4141
4142 res = strcmp((*ea)->name, (*eb)->name);
4143 if (res)
4144 return res;
4145
4146 return events_id_cmp(a, b);
4147}
4148
4149struct event_format **pevent_list_events(struct pevent *pevent, enum event_sort_type sort_type)
4150{
4151 struct event_format **events;
4152 int (*sort)(const void *a, const void *b);
4153
4154 events = pevent->sort_events;
4155
4156 if (events && pevent->last_type == sort_type)
4157 return events;
4158
4159 if (!events) {
4160 events = malloc(sizeof(*events) * (pevent->nr_events + 1));
4161 if (!events)
4162 return NULL;
4163
4164 memcpy(events, pevent->events, sizeof(*events) * pevent->nr_events);
4165 events[pevent->nr_events] = NULL;
4166
4167 pevent->sort_events = events;
4168
4169 /* the internal events are sorted by id */
4170 if (sort_type == EVENT_SORT_ID) {
4171 pevent->last_type = sort_type;
4172 return events;
4173 }
4174 }
4175
4176 switch (sort_type) {
4177 case EVENT_SORT_ID:
4178 sort = events_id_cmp;
4179 break;
4180 case EVENT_SORT_NAME:
4181 sort = events_name_cmp;
4182 break;
4183 case EVENT_SORT_SYSTEM:
4184 sort = events_system_cmp;
4185 break;
4186 default:
4187 return events;
4188 }
4189
4190 qsort(events, pevent->nr_events, sizeof(*events), sort);
4191 pevent->last_type = sort_type;
4192
4193 return events;
4194}
4195
4196static struct format_field **
4197get_event_fields(const char *type, const char *name,
4198 int count, struct format_field *list)
4199{
4200 struct format_field **fields;
4201 struct format_field *field;
4202 int i = 0;
4203
4204 fields = malloc_or_die(sizeof(*fields) * (count + 1));
4205 for (field = list; field; field = field->next) {
4206 fields[i++] = field;
4207 if (i == count + 1) {
4208 do_warning("event %s has more %s fields than specified",
4209 name, type);
4210 i--;
4211 break;
4212 }
4213 }
4214
4215 if (i != count)
4216 do_warning("event %s has less %s fields than specified",
4217 name, type);
4218
4219 fields[i] = NULL;
4220
4221 return fields;
4222}
4223
4224/**
4225 * pevent_event_common_fields - return a list of common fields for an event
4226 * @event: the event to return the common fields of.
4227 *
4228 * Returns an allocated array of fields. The last item in the array is NULL.
4229 * The array must be freed with free().
4230 */
4231struct format_field **pevent_event_common_fields(struct event_format *event)
4232{
4233 return get_event_fields("common", event->name,
4234 event->format.nr_common,
4235 event->format.common_fields);
4236}
4237
4238/**
4239 * pevent_event_fields - return a list of event specific fields for an event
4240 * @event: the event to return the fields of.
4241 *
4242 * Returns an allocated array of fields. The last item in the array is NULL.
4243 * The array must be freed with free().
4244 */
4245struct format_field **pevent_event_fields(struct event_format *event)
4246{
4247 return get_event_fields("event", event->name,
4248 event->format.nr_fields,
4249 event->format.fields);
4250}
4251
4252static void print_fields(struct trace_seq *s, struct print_flag_sym *field)
4253{
4254 trace_seq_printf(s, "{ %s, %s }", field->value, field->str);
4255 if (field->next) {
4256 trace_seq_puts(s, ", ");
4257 print_fields(s, field->next);
4258 }
4259}
4260
4261/* for debugging */
4262static void print_args(struct print_arg *args)
4263{
4264 int print_paren = 1;
4265 struct trace_seq s;
4266
4267 switch (args->type) {
4268 case PRINT_NULL:
4269 printf("null");
4270 break;
4271 case PRINT_ATOM:
4272 printf("%s", args->atom.atom);
4273 break;
4274 case PRINT_FIELD:
4275 printf("REC->%s", args->field.name);
4276 break;
4277 case PRINT_FLAGS:
4278 printf("__print_flags(");
4279 print_args(args->flags.field);
4280 printf(", %s, ", args->flags.delim);
4281 trace_seq_init(&s);
4282 print_fields(&s, args->flags.flags);
4283 trace_seq_do_printf(&s);
4284 trace_seq_destroy(&s);
4285 printf(")");
4286 break;
4287 case PRINT_SYMBOL:
4288 printf("__print_symbolic(");
4289 print_args(args->symbol.field);
4290 printf(", ");
4291 trace_seq_init(&s);
4292 print_fields(&s, args->symbol.symbols);
4293 trace_seq_do_printf(&s);
4294 trace_seq_destroy(&s);
4295 printf(")");
4296 break;
4297 case PRINT_STRING:
4298 case PRINT_BSTRING:
4299 printf("__get_str(%s)", args->string.string);
4300 break;
4301 case PRINT_TYPE:
4302 printf("(%s)", args->typecast.type);
4303 print_args(args->typecast.item);
4304 break;
4305 case PRINT_OP:
4306 if (strcmp(args->op.op, ":") == 0)
4307 print_paren = 0;
4308 if (print_paren)
4309 printf("(");
4310 print_args(args->op.left);
4311 printf(" %s ", args->op.op);
4312 print_args(args->op.right);
4313 if (print_paren)
4314 printf(")");
4315 break;
4316 default:
4317 /* we should warn... */
4318 return;
4319 }
4320 if (args->next) {
4321 printf("\n");
4322 print_args(args->next);
4323 }
4324}
4325
4326static void parse_header_field(const char *field,
4327 int *offset, int *size, int mandatory)
4328{
4329 unsigned long long save_input_buf_ptr;
4330 unsigned long long save_input_buf_siz;
4331 char *token;
4332 int type;
4333
4334 save_input_buf_ptr = input_buf_ptr;
4335 save_input_buf_siz = input_buf_siz;
4336
4337 if (read_expected(EVENT_ITEM, "field") < 0)
4338 return;
4339 if (read_expected(EVENT_OP, ":") < 0)
4340 return;
4341
4342 /* type */
4343 if (read_expect_type(EVENT_ITEM, &token) < 0)
4344 goto fail;
4345 free_token(token);
4346
4347 /*
4348 * If this is not a mandatory field, then test it first.
4349 */
4350 if (mandatory) {
4351 if (read_expected(EVENT_ITEM, field) < 0)
4352 return;
4353 } else {
4354 if (read_expect_type(EVENT_ITEM, &token) < 0)
4355 goto fail;
4356 if (strcmp(token, field) != 0)
4357 goto discard;
4358 free_token(token);
4359 }
4360
4361 if (read_expected(EVENT_OP, ";") < 0)
4362 return;
4363 if (read_expected(EVENT_ITEM, "offset") < 0)
4364 return;
4365 if (read_expected(EVENT_OP, ":") < 0)
4366 return;
4367 if (read_expect_type(EVENT_ITEM, &token) < 0)
4368 goto fail;
4369 *offset = atoi(token);
4370 free_token(token);
4371 if (read_expected(EVENT_OP, ";") < 0)
4372 return;
4373 if (read_expected(EVENT_ITEM, "size") < 0)
4374 return;
4375 if (read_expected(EVENT_OP, ":") < 0)
4376 return;
4377 if (read_expect_type(EVENT_ITEM, &token) < 0)
4378 goto fail;
4379 *size = atoi(token);
4380 free_token(token);
4381 if (read_expected(EVENT_OP, ";") < 0)
4382 return;
4383 type = read_token(&token);
4384 if (type != EVENT_NEWLINE) {
4385 /* newer versions of the kernel have a "signed" type */
4386 if (type != EVENT_ITEM)
4387 goto fail;
4388
4389 if (strcmp(token, "signed") != 0)
4390 goto fail;
4391
4392 free_token(token);
4393
4394 if (read_expected(EVENT_OP, ":") < 0)
4395 return;
4396
4397 if (read_expect_type(EVENT_ITEM, &token))
4398 goto fail;
4399
4400 free_token(token);
4401 if (read_expected(EVENT_OP, ";") < 0)
4402 return;
4403
4404 if (read_expect_type(EVENT_NEWLINE, &token))
4405 goto fail;
4406 }
4407 fail:
4408 free_token(token);
4409 return;
4410
4411 discard:
4412 input_buf_ptr = save_input_buf_ptr;
4413 input_buf_siz = save_input_buf_siz;
4414 *offset = 0;
4415 *size = 0;
4416 free_token(token);
4417}
4418
4419/**
4420 * pevent_parse_header_page - parse the data stored in the header page
4421 * @pevent: the handle to the pevent
4422 * @buf: the buffer storing the header page format string
4423 * @size: the size of @buf
4424 * @long_size: the long size to use if there is no header
4425 *
4426 * This parses the header page format for information on the
4427 * ring buffer used. The @buf should be copied from
4428 *
4429 * /sys/kernel/debug/tracing/events/header_page
4430 */
4431int pevent_parse_header_page(struct pevent *pevent, char *buf, unsigned long size,
4432 int long_size)
4433{
4434 int ignore;
4435
4436 if (!size) {
4437 /*
4438 * Old kernels did not have header page info.
4439 * Sorry but we just use what we find here in user space.
4440 */
4441 pevent->header_page_ts_size = sizeof(long long);
4442 pevent->header_page_size_size = long_size;
4443 pevent->header_page_data_offset = sizeof(long long) + long_size;
4444 pevent->old_format = 1;
4445 return -1;
4446 }
4447 init_input_buf(buf, size);
4448
4449 parse_header_field("timestamp", &pevent->header_page_ts_offset,
4450 &pevent->header_page_ts_size, 1);
4451 parse_header_field("commit", &pevent->header_page_size_offset,
4452 &pevent->header_page_size_size, 1);
4453 parse_header_field("overwrite", &pevent->header_page_overwrite,
4454 &ignore, 0);
4455 parse_header_field("data", &pevent->header_page_data_offset,
4456 &pevent->header_page_data_size, 1);
4457
4458 return 0;
4459}
4460
4461static int event_matches(struct event_format *event,
4462 int id, const char *sys_name,
4463 const char *event_name)
4464{
4465 if (id >= 0 && id != event->id)
4466 return 0;
4467
4468 if (event_name && (strcmp(event_name, event->name) != 0))
4469 return 0;
4470
4471 if (sys_name && (strcmp(sys_name, event->system) != 0))
4472 return 0;
4473
4474 return 1;
4475}
4476
4477static void free_handler(struct event_handler *handle)
4478{
4479 free((void *)handle->sys_name);
4480 free((void *)handle->event_name);
4481 free(handle);
4482}
4483
4484static int find_event_handle(struct pevent *pevent, struct event_format *event)
4485{
4486 struct event_handler *handle, **next;
4487
4488 for (next = &pevent->handlers; *next;
4489 next = &(*next)->next) {
4490 handle = *next;
4491 if (event_matches(event, handle->id,
4492 handle->sys_name,
4493 handle->event_name))
4494 break;
4495 }
4496
4497 if (!(*next))
4498 return 0;
4499
4500 pr_stat("overriding event (%d) %s:%s with new print handler",
4501 event->id, event->system, event->name);
4502
4503 event->handler = handle->func;
4504 event->context = handle->context;
4505
4506 *next = handle->next;
4507 free_handler(handle);
4508
4509 return 1;
4510}
4511
4512/**
4513 * pevent_parse_event - parse the event format
4514 * @pevent: the handle to the pevent
4515 * @buf: the buffer storing the event format string
4516 * @size: the size of @buf
4517 * @sys: the system the event belongs to
4518 *
4519 * This parses the event format and creates an event structure
4520 * to quickly parse raw data for a given event.
4521 *
4522 * These files currently come from:
4523 *
4524 * /sys/kernel/debug/tracing/events/.../.../format
4525 */
4526int pevent_parse_event(struct pevent *pevent,
4527 const char *buf, unsigned long size,
4528 const char *sys)
4529{
4530 struct event_format *event;
4531 int ret;
4532
4533 init_input_buf(buf, size);
4534
4535 event = alloc_event();
4536 if (!event)
4537 return -ENOMEM;
4538
4539 event->name = event_read_name();
4540 if (!event->name) {
4541 /* Bad event? */
4542 free(event);
4543 return -1;
4544 }
4545
4546 if (strcmp(sys, "ftrace") == 0) {
4547
4548 event->flags |= EVENT_FL_ISFTRACE;
4549
4550 if (strcmp(event->name, "bprint") == 0)
4551 event->flags |= EVENT_FL_ISBPRINT;
4552 }
4553
4554 event->id = event_read_id();
4555 if (event->id < 0)
4556 die("failed to read event id");
4557
4558 event->system = strdup(sys);
4559
4560 /* Add pevent to event so that it can be referenced */
4561 event->pevent = pevent;
4562
4563 ret = event_read_format(event);
4564 if (ret < 0) {
4565 do_warning("failed to read event format for %s", event->name);
4566 goto event_failed;
4567 }
4568
4569 /*
4570 * If the event has an override, don't print warnings if the event
4571 * print format fails to parse.
4572 */
4573 if (find_event_handle(pevent, event))
4574 show_warning = 0;
4575
4576 ret = event_read_print(event);
4577 if (ret < 0) {
4578 do_warning("failed to read event print fmt for %s",
4579 event->name);
4580 show_warning = 1;
4581 goto event_failed;
4582 }
4583 show_warning = 1;
4584
4585 add_event(pevent, event);
4586
4587 if (!ret && (event->flags & EVENT_FL_ISFTRACE)) {
4588 struct format_field *field;
4589 struct print_arg *arg, **list;
4590
4591 /* old ftrace had no args */
4592
4593 list = &event->print_fmt.args;
4594 for (field = event->format.fields; field; field = field->next) {
4595 arg = alloc_arg();
4596 *list = arg;
4597 list = &arg->next;
4598 arg->type = PRINT_FIELD;
4599 arg->field.name = strdup(field->name);
4600 arg->field.field = field;
4601 }
4602 return 0;
4603 }
4604
4605#define PRINT_ARGS 0
4606 if (PRINT_ARGS && event->print_fmt.args)
4607 print_args(event->print_fmt.args);
4608
4609 return 0;
4610
4611 event_failed:
4612 event->flags |= EVENT_FL_FAILED;
4613 /* still add it even if it failed */
4614 add_event(pevent, event);
4615 return -1;
4616}
4617
4618int get_field_val(struct trace_seq *s, struct format_field *field,
Steven Rostedt1c698182012-04-06 00:48:06 +02004619 const char *name, struct pevent_record *record,
Steven Rostedtf7d82352012-04-06 00:47:53 +02004620 unsigned long long *val, int err)
4621{
4622 if (!field) {
4623 if (err)
4624 trace_seq_printf(s, "<CANT FIND FIELD %s>", name);
4625 return -1;
4626 }
4627
4628 if (pevent_read_number_field(field, record->data, val)) {
4629 if (err)
4630 trace_seq_printf(s, " %s=INVALID", name);
4631 return -1;
4632 }
4633
4634 return 0;
4635}
4636
4637/**
4638 * pevent_get_field_raw - return the raw pointer into the data field
4639 * @s: The seq to print to on error
4640 * @event: the event that the field is for
4641 * @name: The name of the field
4642 * @record: The record with the field name.
4643 * @len: place to store the field length.
4644 * @err: print default error if failed.
4645 *
4646 * Returns a pointer into record->data of the field and places
4647 * the length of the field in @len.
4648 *
4649 * On failure, it returns NULL.
4650 */
4651void *pevent_get_field_raw(struct trace_seq *s, struct event_format *event,
Steven Rostedt1c698182012-04-06 00:48:06 +02004652 const char *name, struct pevent_record *record,
Steven Rostedtf7d82352012-04-06 00:47:53 +02004653 int *len, int err)
4654{
4655 struct format_field *field;
4656 void *data = record->data;
4657 unsigned offset;
4658 int dummy;
4659
4660 if (!event)
4661 return NULL;
4662
4663 field = pevent_find_field(event, name);
4664
4665 if (!field) {
4666 if (err)
4667 trace_seq_printf(s, "<CANT FIND FIELD %s>", name);
4668 return NULL;
4669 }
4670
4671 /* Allow @len to be NULL */
4672 if (!len)
4673 len = &dummy;
4674
4675 offset = field->offset;
4676 if (field->flags & FIELD_IS_DYNAMIC) {
4677 offset = pevent_read_number(event->pevent,
4678 data + offset, field->size);
4679 *len = offset >> 16;
4680 offset &= 0xffff;
4681 } else
4682 *len = field->size;
4683
4684 return data + offset;
4685}
4686
4687/**
4688 * pevent_get_field_val - find a field and return its value
4689 * @s: The seq to print to on error
4690 * @event: the event that the field is for
4691 * @name: The name of the field
4692 * @record: The record with the field name.
4693 * @val: place to store the value of the field.
4694 * @err: print default error if failed.
4695 *
4696 * Returns 0 on success -1 on field not found.
4697 */
4698int pevent_get_field_val(struct trace_seq *s, struct event_format *event,
Steven Rostedt1c698182012-04-06 00:48:06 +02004699 const char *name, struct pevent_record *record,
Steven Rostedtf7d82352012-04-06 00:47:53 +02004700 unsigned long long *val, int err)
4701{
4702 struct format_field *field;
4703
4704 if (!event)
4705 return -1;
4706
4707 field = pevent_find_field(event, name);
4708
4709 return get_field_val(s, field, name, record, val, err);
4710}
4711
4712/**
4713 * pevent_get_common_field_val - find a common field and return its value
4714 * @s: The seq to print to on error
4715 * @event: the event that the field is for
4716 * @name: The name of the field
4717 * @record: The record with the field name.
4718 * @val: place to store the value of the field.
4719 * @err: print default error if failed.
4720 *
4721 * Returns 0 on success -1 on field not found.
4722 */
4723int pevent_get_common_field_val(struct trace_seq *s, struct event_format *event,
Steven Rostedt1c698182012-04-06 00:48:06 +02004724 const char *name, struct pevent_record *record,
Steven Rostedtf7d82352012-04-06 00:47:53 +02004725 unsigned long long *val, int err)
4726{
4727 struct format_field *field;
4728
4729 if (!event)
4730 return -1;
4731
4732 field = pevent_find_common_field(event, name);
4733
4734 return get_field_val(s, field, name, record, val, err);
4735}
4736
4737/**
4738 * pevent_get_any_field_val - find a any field and return its value
4739 * @s: The seq to print to on error
4740 * @event: the event that the field is for
4741 * @name: The name of the field
4742 * @record: The record with the field name.
4743 * @val: place to store the value of the field.
4744 * @err: print default error if failed.
4745 *
4746 * Returns 0 on success -1 on field not found.
4747 */
4748int pevent_get_any_field_val(struct trace_seq *s, struct event_format *event,
Steven Rostedt1c698182012-04-06 00:48:06 +02004749 const char *name, struct pevent_record *record,
Steven Rostedtf7d82352012-04-06 00:47:53 +02004750 unsigned long long *val, int err)
4751{
4752 struct format_field *field;
4753
4754 if (!event)
4755 return -1;
4756
4757 field = pevent_find_any_field(event, name);
4758
4759 return get_field_val(s, field, name, record, val, err);
4760}
4761
4762/**
4763 * pevent_print_num_field - print a field and a format
4764 * @s: The seq to print to
4765 * @fmt: The printf format to print the field with.
4766 * @event: the event that the field is for
4767 * @name: The name of the field
4768 * @record: The record with the field name.
4769 * @err: print default error if failed.
4770 *
4771 * Returns: 0 on success, -1 field not fould, or 1 if buffer is full.
4772 */
4773int pevent_print_num_field(struct trace_seq *s, const char *fmt,
4774 struct event_format *event, const char *name,
Steven Rostedt1c698182012-04-06 00:48:06 +02004775 struct pevent_record *record, int err)
Steven Rostedtf7d82352012-04-06 00:47:53 +02004776{
4777 struct format_field *field = pevent_find_field(event, name);
4778 unsigned long long val;
4779
4780 if (!field)
4781 goto failed;
4782
4783 if (pevent_read_number_field(field, record->data, &val))
4784 goto failed;
4785
4786 return trace_seq_printf(s, fmt, val);
4787
4788 failed:
4789 if (err)
4790 trace_seq_printf(s, "CAN'T FIND FIELD \"%s\"", name);
4791 return -1;
4792}
4793
4794static void free_func_handle(struct pevent_function_handler *func)
4795{
4796 struct pevent_func_params *params;
4797
4798 free(func->name);
4799
4800 while (func->params) {
4801 params = func->params;
4802 func->params = params->next;
4803 free(params);
4804 }
4805
4806 free(func);
4807}
4808
4809/**
4810 * pevent_register_print_function - register a helper function
4811 * @pevent: the handle to the pevent
4812 * @func: the function to process the helper function
4813 * @name: the name of the helper function
4814 * @parameters: A list of enum pevent_func_arg_type
4815 *
4816 * Some events may have helper functions in the print format arguments.
4817 * This allows a plugin to dynmically create a way to process one
4818 * of these functions.
4819 *
4820 * The @parameters is a variable list of pevent_func_arg_type enums that
4821 * must end with PEVENT_FUNC_ARG_VOID.
4822 */
4823int pevent_register_print_function(struct pevent *pevent,
4824 pevent_func_handler func,
4825 enum pevent_func_arg_type ret_type,
4826 char *name, ...)
4827{
4828 struct pevent_function_handler *func_handle;
4829 struct pevent_func_params **next_param;
4830 struct pevent_func_params *param;
4831 enum pevent_func_arg_type type;
4832 va_list ap;
4833
4834 func_handle = find_func_handler(pevent, name);
4835 if (func_handle) {
4836 /*
4837 * This is most like caused by the users own
4838 * plugins updating the function. This overrides the
4839 * system defaults.
4840 */
4841 pr_stat("override of function helper '%s'", name);
4842 remove_func_handler(pevent, name);
4843 }
4844
4845 func_handle = malloc_or_die(sizeof(*func_handle));
4846 memset(func_handle, 0, sizeof(*func_handle));
4847
4848 func_handle->ret_type = ret_type;
4849 func_handle->name = strdup(name);
4850 func_handle->func = func;
4851 if (!func_handle->name)
4852 die("Failed to allocate function name");
4853
4854 next_param = &(func_handle->params);
4855 va_start(ap, name);
4856 for (;;) {
4857 type = va_arg(ap, enum pevent_func_arg_type);
4858 if (type == PEVENT_FUNC_ARG_VOID)
4859 break;
4860
4861 if (type < 0 || type >= PEVENT_FUNC_ARG_MAX_TYPES) {
4862 warning("Invalid argument type %d", type);
4863 goto out_free;
4864 }
4865
4866 param = malloc_or_die(sizeof(*param));
4867 param->type = type;
4868 param->next = NULL;
4869
4870 *next_param = param;
4871 next_param = &(param->next);
4872
4873 func_handle->nr_args++;
4874 }
4875 va_end(ap);
4876
4877 func_handle->next = pevent->func_handlers;
4878 pevent->func_handlers = func_handle;
4879
4880 return 0;
4881 out_free:
4882 va_end(ap);
4883 free_func_handle(func_handle);
4884 return -1;
4885}
4886
4887/**
4888 * pevent_register_event_handle - register a way to parse an event
4889 * @pevent: the handle to the pevent
4890 * @id: the id of the event to register
4891 * @sys_name: the system name the event belongs to
4892 * @event_name: the name of the event
4893 * @func: the function to call to parse the event information
4894 *
4895 * This function allows a developer to override the parsing of
4896 * a given event. If for some reason the default print format
4897 * is not sufficient, this function will register a function
4898 * for an event to be used to parse the data instead.
4899 *
4900 * If @id is >= 0, then it is used to find the event.
4901 * else @sys_name and @event_name are used.
4902 */
4903int pevent_register_event_handler(struct pevent *pevent,
4904 int id, char *sys_name, char *event_name,
4905 pevent_event_handler_func func,
4906 void *context)
4907{
4908 struct event_format *event;
4909 struct event_handler *handle;
4910
4911 if (id >= 0) {
4912 /* search by id */
4913 event = pevent_find_event(pevent, id);
4914 if (!event)
4915 goto not_found;
4916 if (event_name && (strcmp(event_name, event->name) != 0))
4917 goto not_found;
4918 if (sys_name && (strcmp(sys_name, event->system) != 0))
4919 goto not_found;
4920 } else {
4921 event = pevent_find_event_by_name(pevent, sys_name, event_name);
4922 if (!event)
4923 goto not_found;
4924 }
4925
4926 pr_stat("overriding event (%d) %s:%s with new print handler",
4927 event->id, event->system, event->name);
4928
4929 event->handler = func;
4930 event->context = context;
4931 return 0;
4932
4933 not_found:
4934 /* Save for later use. */
4935 handle = malloc_or_die(sizeof(*handle));
Steven Rostedt42c80132012-04-06 00:48:05 +02004936 memset(handle, 0, sizeof(*handle));
Steven Rostedtf7d82352012-04-06 00:47:53 +02004937 handle->id = id;
4938 if (event_name)
4939 handle->event_name = strdup(event_name);
4940 if (sys_name)
4941 handle->sys_name = strdup(sys_name);
4942
4943 handle->func = func;
4944 handle->next = pevent->handlers;
4945 pevent->handlers = handle;
4946 handle->context = context;
4947
4948 return -1;
4949}
4950
4951/**
4952 * pevent_alloc - create a pevent handle
4953 */
4954struct pevent *pevent_alloc(void)
4955{
4956 struct pevent *pevent;
4957
4958 pevent = malloc(sizeof(*pevent));
4959 if (!pevent)
4960 return NULL;
4961 memset(pevent, 0, sizeof(*pevent));
4962 pevent->ref_count = 1;
4963
4964 return pevent;
4965}
4966
4967void pevent_ref(struct pevent *pevent)
4968{
4969 pevent->ref_count++;
4970}
4971
4972static void free_format_fields(struct format_field *field)
4973{
4974 struct format_field *next;
4975
4976 while (field) {
4977 next = field->next;
4978 free(field->type);
4979 free(field->name);
4980 free(field);
4981 field = next;
4982 }
4983}
4984
4985static void free_formats(struct format *format)
4986{
4987 free_format_fields(format->common_fields);
4988 free_format_fields(format->fields);
4989}
4990
4991static void free_event(struct event_format *event)
4992{
4993 free(event->name);
4994 free(event->system);
4995
4996 free_formats(&event->format);
4997
4998 free(event->print_fmt.format);
4999 free_args(event->print_fmt.args);
5000
5001 free(event);
5002}
5003
5004/**
5005 * pevent_free - free a pevent handle
5006 * @pevent: the pevent handle to free
5007 */
5008void pevent_free(struct pevent *pevent)
5009{
Steven Rostedta2525a02012-04-06 00:48:02 +02005010 struct cmdline_list *cmdlist, *cmdnext;
5011 struct func_list *funclist, *funcnext;
5012 struct printk_list *printklist, *printknext;
Steven Rostedtf7d82352012-04-06 00:47:53 +02005013 struct pevent_function_handler *func_handler;
5014 struct event_handler *handle;
5015 int i;
5016
Steven Rostedta2525a02012-04-06 00:48:02 +02005017 if (!pevent)
5018 return;
5019
5020 cmdlist = pevent->cmdlist;
5021 funclist = pevent->funclist;
5022 printklist = pevent->printklist;
5023
Steven Rostedtf7d82352012-04-06 00:47:53 +02005024 pevent->ref_count--;
5025 if (pevent->ref_count)
5026 return;
5027
5028 if (pevent->cmdlines) {
5029 for (i = 0; i < pevent->cmdline_count; i++)
5030 free(pevent->cmdlines[i].comm);
5031 free(pevent->cmdlines);
5032 }
5033
5034 while (cmdlist) {
5035 cmdnext = cmdlist->next;
5036 free(cmdlist->comm);
5037 free(cmdlist);
5038 cmdlist = cmdnext;
5039 }
5040
5041 if (pevent->func_map) {
5042 for (i = 0; i < pevent->func_count; i++) {
5043 free(pevent->func_map[i].func);
5044 free(pevent->func_map[i].mod);
5045 }
5046 free(pevent->func_map);
5047 }
5048
5049 while (funclist) {
5050 funcnext = funclist->next;
5051 free(funclist->func);
5052 free(funclist->mod);
5053 free(funclist);
5054 funclist = funcnext;
5055 }
5056
5057 while (pevent->func_handlers) {
5058 func_handler = pevent->func_handlers;
5059 pevent->func_handlers = func_handler->next;
5060 free_func_handle(func_handler);
5061 }
5062
5063 if (pevent->printk_map) {
5064 for (i = 0; i < pevent->printk_count; i++)
5065 free(pevent->printk_map[i].printk);
5066 free(pevent->printk_map);
5067 }
5068
5069 while (printklist) {
5070 printknext = printklist->next;
5071 free(printklist->printk);
5072 free(printklist);
5073 printklist = printknext;
5074 }
5075
5076 for (i = 0; i < pevent->nr_events; i++)
5077 free_event(pevent->events[i]);
5078
5079 while (pevent->handlers) {
5080 handle = pevent->handlers;
5081 pevent->handlers = handle->next;
5082 free_handler(handle);
5083 }
5084
5085 free(pevent->events);
5086 free(pevent->sort_events);
5087
5088 free(pevent);
5089}
5090
5091void pevent_unref(struct pevent *pevent)
5092{
5093 pevent_free(pevent);
5094}