blob: 16da20c552bc4de5c5f13ce702ffe7cf15211b0f [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:
1437 if (field)
1438 free(field);
1439 return -1;
1440}
1441
1442static int event_read_format(struct event_format *event)
1443{
1444 char *token;
1445 int ret;
1446
1447 if (read_expected_item(EVENT_ITEM, "format") < 0)
1448 return -1;
1449
1450 if (read_expected(EVENT_OP, ":") < 0)
1451 return -1;
1452
1453 if (read_expect_type(EVENT_NEWLINE, &token))
1454 goto fail;
1455 free_token(token);
1456
1457 ret = event_read_fields(event, &event->format.common_fields);
1458 if (ret < 0)
1459 return ret;
1460 event->format.nr_common = ret;
1461
1462 ret = event_read_fields(event, &event->format.fields);
1463 if (ret < 0)
1464 return ret;
1465 event->format.nr_fields = ret;
1466
1467 return 0;
1468
1469 fail:
1470 free_token(token);
1471 return -1;
1472}
1473
1474static enum event_type
1475process_arg_token(struct event_format *event, struct print_arg *arg,
1476 char **tok, enum event_type type);
1477
1478static enum event_type
1479process_arg(struct event_format *event, struct print_arg *arg, char **tok)
1480{
1481 enum event_type type;
1482 char *token;
1483
1484 type = read_token(&token);
1485 *tok = token;
1486
1487 return process_arg_token(event, arg, tok, type);
1488}
1489
1490static enum event_type
1491process_op(struct event_format *event, struct print_arg *arg, char **tok);
1492
1493static enum event_type
1494process_cond(struct event_format *event, struct print_arg *top, char **tok)
1495{
1496 struct print_arg *arg, *left, *right;
1497 enum event_type type;
1498 char *token = NULL;
1499
1500 arg = alloc_arg();
1501 left = alloc_arg();
1502 right = alloc_arg();
1503
1504 arg->type = PRINT_OP;
1505 arg->op.left = left;
1506 arg->op.right = right;
1507
1508 *tok = NULL;
1509 type = process_arg(event, left, &token);
1510
1511 again:
1512 /* Handle other operations in the arguments */
1513 if (type == EVENT_OP && strcmp(token, ":") != 0) {
1514 type = process_op(event, left, &token);
1515 goto again;
1516 }
1517
1518 if (test_type_token(type, token, EVENT_OP, ":"))
1519 goto out_free;
1520
1521 arg->op.op = token;
1522
1523 type = process_arg(event, right, &token);
1524
1525 top->op.right = arg;
1526
1527 *tok = token;
1528 return type;
1529
1530out_free:
1531 /* Top may point to itself */
1532 top->op.right = NULL;
1533 free_token(token);
1534 free_arg(arg);
1535 return EVENT_ERROR;
1536}
1537
1538static enum event_type
1539process_array(struct event_format *event, struct print_arg *top, char **tok)
1540{
1541 struct print_arg *arg;
1542 enum event_type type;
1543 char *token = NULL;
1544
1545 arg = alloc_arg();
1546
1547 *tok = NULL;
1548 type = process_arg(event, arg, &token);
1549 if (test_type_token(type, token, EVENT_OP, "]"))
1550 goto out_free;
1551
1552 top->op.right = arg;
1553
1554 free_token(token);
1555 type = read_token_item(&token);
1556 *tok = token;
1557
1558 return type;
1559
1560out_free:
1561 free_token(*tok);
1562 *tok = NULL;
1563 free_arg(arg);
1564 return EVENT_ERROR;
1565}
1566
1567static int get_op_prio(char *op)
1568{
1569 if (!op[1]) {
1570 switch (op[0]) {
1571 case '~':
1572 case '!':
1573 return 4;
1574 case '*':
1575 case '/':
1576 case '%':
1577 return 6;
1578 case '+':
1579 case '-':
1580 return 7;
1581 /* '>>' and '<<' are 8 */
1582 case '<':
1583 case '>':
1584 return 9;
1585 /* '==' and '!=' are 10 */
1586 case '&':
1587 return 11;
1588 case '^':
1589 return 12;
1590 case '|':
1591 return 13;
1592 case '?':
1593 return 16;
1594 default:
1595 die("unknown op '%c'", op[0]);
1596 return -1;
1597 }
1598 } else {
1599 if (strcmp(op, "++") == 0 ||
1600 strcmp(op, "--") == 0) {
1601 return 3;
1602 } else if (strcmp(op, ">>") == 0 ||
1603 strcmp(op, "<<") == 0) {
1604 return 8;
1605 } else if (strcmp(op, ">=") == 0 ||
1606 strcmp(op, "<=") == 0) {
1607 return 9;
1608 } else if (strcmp(op, "==") == 0 ||
1609 strcmp(op, "!=") == 0) {
1610 return 10;
1611 } else if (strcmp(op, "&&") == 0) {
1612 return 14;
1613 } else if (strcmp(op, "||") == 0) {
1614 return 15;
1615 } else {
1616 die("unknown op '%s'", op);
1617 return -1;
1618 }
1619 }
1620}
1621
1622static void set_op_prio(struct print_arg *arg)
1623{
1624
1625 /* single ops are the greatest */
1626 if (!arg->op.left || arg->op.left->type == PRINT_NULL) {
1627 arg->op.prio = 0;
1628 return;
1629 }
1630
1631 arg->op.prio = get_op_prio(arg->op.op);
1632}
1633
1634/* Note, *tok does not get freed, but will most likely be saved */
1635static enum event_type
1636process_op(struct event_format *event, struct print_arg *arg, char **tok)
1637{
1638 struct print_arg *left, *right = NULL;
1639 enum event_type type;
1640 char *token;
1641
1642 /* the op is passed in via tok */
1643 token = *tok;
1644
1645 if (arg->type == PRINT_OP && !arg->op.left) {
1646 /* handle single op */
1647 if (token[1]) {
1648 die("bad op token %s", token);
1649 goto out_free;
1650 }
1651 switch (token[0]) {
1652 case '~':
1653 case '!':
1654 case '+':
1655 case '-':
1656 break;
1657 default:
1658 do_warning("bad op token %s", token);
1659 goto out_free;
1660
1661 }
1662
1663 /* make an empty left */
1664 left = alloc_arg();
1665 left->type = PRINT_NULL;
1666 arg->op.left = left;
1667
1668 right = alloc_arg();
1669 arg->op.right = right;
1670
1671 /* do not free the token, it belongs to an op */
1672 *tok = NULL;
1673 type = process_arg(event, right, tok);
1674
1675 } else if (strcmp(token, "?") == 0) {
1676
1677 left = alloc_arg();
1678 /* copy the top arg to the left */
1679 *left = *arg;
1680
1681 arg->type = PRINT_OP;
1682 arg->op.op = token;
1683 arg->op.left = left;
1684 arg->op.prio = 0;
1685
1686 type = process_cond(event, arg, tok);
1687
1688 } else if (strcmp(token, ">>") == 0 ||
1689 strcmp(token, "<<") == 0 ||
1690 strcmp(token, "&") == 0 ||
1691 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
1704 left = alloc_arg();
1705
1706 /* copy the top arg to the left */
1707 *left = *arg;
1708
1709 arg->type = PRINT_OP;
1710 arg->op.op = token;
1711 arg->op.left = left;
1712
1713 set_op_prio(arg);
1714
1715 type = read_token_item(&token);
1716 *tok = token;
1717
1718 /* could just be a type pointer */
1719 if ((strcmp(arg->op.op, "*") == 0) &&
1720 type == EVENT_DELIM && (strcmp(token, ")") == 0)) {
1721 if (left->type != PRINT_ATOM)
1722 die("bad pointer type");
1723 left->atom.atom = realloc(left->atom.atom,
1724 strlen(left->atom.atom) + 3);
1725 strcat(left->atom.atom, " *");
1726 free(arg->op.op);
1727 *arg = *left;
1728 free(left);
1729
1730 return type;
1731 }
1732
1733 right = alloc_arg();
1734 type = process_arg_token(event, right, tok, type);
1735 arg->op.right = right;
1736
1737 } else if (strcmp(token, "[") == 0) {
1738
1739 left = alloc_arg();
1740 *left = *arg;
1741
1742 arg->type = PRINT_OP;
1743 arg->op.op = token;
1744 arg->op.left = left;
1745
1746 arg->op.prio = 0;
1747
1748 type = process_array(event, arg, tok);
1749
1750 } else {
1751 do_warning("unknown op '%s'", token);
1752 event->flags |= EVENT_FL_FAILED;
1753 /* the arg is now the left side */
1754 goto out_free;
1755 }
1756
1757 if (type == EVENT_OP && strcmp(*tok, ":") != 0) {
1758 int prio;
1759
1760 /* higher prios need to be closer to the root */
1761 prio = get_op_prio(*tok);
1762
1763 if (prio > arg->op.prio)
1764 return process_op(event, arg, tok);
1765
1766 return process_op(event, right, tok);
1767 }
1768
1769 return type;
1770
1771 out_free:
1772 free_token(token);
1773 *tok = NULL;
1774 return EVENT_ERROR;
1775}
1776
1777static enum event_type
1778process_entry(struct event_format *event __unused, struct print_arg *arg,
1779 char **tok)
1780{
1781 enum event_type type;
1782 char *field;
1783 char *token;
1784
1785 if (read_expected(EVENT_OP, "->") < 0)
1786 goto out_err;
1787
1788 if (read_expect_type(EVENT_ITEM, &token) < 0)
1789 goto out_free;
1790 field = token;
1791
1792 arg->type = PRINT_FIELD;
1793 arg->field.name = field;
1794
Tom Zanussi5205aec2012-04-06 00:47:58 +02001795 if (is_flag_field) {
1796 arg->field.field = pevent_find_any_field(event, arg->field.name);
1797 arg->field.field->flags |= FIELD_IS_FLAG;
1798 is_flag_field = 0;
1799 } else if (is_symbolic_field) {
1800 arg->field.field = pevent_find_any_field(event, arg->field.name);
1801 arg->field.field->flags |= FIELD_IS_SYMBOLIC;
1802 is_symbolic_field = 0;
1803 }
1804
Steven Rostedtf7d82352012-04-06 00:47:53 +02001805 type = read_token(&token);
1806 *tok = token;
1807
1808 return type;
1809
1810 out_free:
1811 free_token(token);
1812 out_err:
1813 *tok = NULL;
1814 return EVENT_ERROR;
1815}
1816
1817static char *arg_eval (struct print_arg *arg);
1818
1819static unsigned long long
1820eval_type_str(unsigned long long val, const char *type, int pointer)
1821{
1822 int sign = 0;
1823 char *ref;
1824 int len;
1825
1826 len = strlen(type);
1827
1828 if (pointer) {
1829
1830 if (type[len-1] != '*') {
1831 do_warning("pointer expected with non pointer type");
1832 return val;
1833 }
1834
1835 ref = malloc_or_die(len);
1836 memcpy(ref, type, len);
1837
1838 /* chop off the " *" */
1839 ref[len - 2] = 0;
1840
1841 val = eval_type_str(val, ref, 0);
1842 free(ref);
1843 return val;
1844 }
1845
1846 /* check if this is a pointer */
1847 if (type[len - 1] == '*')
1848 return val;
1849
1850 /* Try to figure out the arg size*/
1851 if (strncmp(type, "struct", 6) == 0)
1852 /* all bets off */
1853 return val;
1854
1855 if (strcmp(type, "u8") == 0)
1856 return val & 0xff;
1857
1858 if (strcmp(type, "u16") == 0)
1859 return val & 0xffff;
1860
1861 if (strcmp(type, "u32") == 0)
1862 return val & 0xffffffff;
1863
1864 if (strcmp(type, "u64") == 0 ||
1865 strcmp(type, "s64"))
1866 return val;
1867
1868 if (strcmp(type, "s8") == 0)
1869 return (unsigned long long)(char)val & 0xff;
1870
1871 if (strcmp(type, "s16") == 0)
1872 return (unsigned long long)(short)val & 0xffff;
1873
1874 if (strcmp(type, "s32") == 0)
1875 return (unsigned long long)(int)val & 0xffffffff;
1876
1877 if (strncmp(type, "unsigned ", 9) == 0) {
1878 sign = 0;
1879 type += 9;
1880 }
1881
1882 if (strcmp(type, "char") == 0) {
1883 if (sign)
1884 return (unsigned long long)(char)val & 0xff;
1885 else
1886 return val & 0xff;
1887 }
1888
1889 if (strcmp(type, "short") == 0) {
1890 if (sign)
1891 return (unsigned long long)(short)val & 0xffff;
1892 else
1893 return val & 0xffff;
1894 }
1895
1896 if (strcmp(type, "int") == 0) {
1897 if (sign)
1898 return (unsigned long long)(int)val & 0xffffffff;
1899 else
1900 return val & 0xffffffff;
1901 }
1902
1903 return val;
1904}
1905
1906/*
1907 * Try to figure out the type.
1908 */
1909static unsigned long long
1910eval_type(unsigned long long val, struct print_arg *arg, int pointer)
1911{
1912 if (arg->type != PRINT_TYPE)
1913 die("expected type argument");
1914
1915 return eval_type_str(val, arg->typecast.type, pointer);
1916}
1917
1918static long long arg_num_eval(struct print_arg *arg)
1919{
1920 long long left, right;
1921 long long val = 0;
1922
1923 switch (arg->type) {
1924 case PRINT_ATOM:
1925 val = strtoll(arg->atom.atom, NULL, 0);
1926 break;
1927 case PRINT_TYPE:
1928 val = arg_num_eval(arg->typecast.item);
1929 val = eval_type(val, arg, 0);
1930 break;
1931 case PRINT_OP:
1932 switch (arg->op.op[0]) {
1933 case '|':
1934 left = arg_num_eval(arg->op.left);
1935 right = arg_num_eval(arg->op.right);
1936 if (arg->op.op[1])
1937 val = left || right;
1938 else
1939 val = left | right;
1940 break;
1941 case '&':
1942 left = arg_num_eval(arg->op.left);
1943 right = arg_num_eval(arg->op.right);
1944 if (arg->op.op[1])
1945 val = left && right;
1946 else
1947 val = left & right;
1948 break;
1949 case '<':
1950 left = arg_num_eval(arg->op.left);
1951 right = arg_num_eval(arg->op.right);
1952 switch (arg->op.op[1]) {
1953 case 0:
1954 val = left < right;
1955 break;
1956 case '<':
1957 val = left << right;
1958 break;
1959 case '=':
1960 val = left <= right;
1961 break;
1962 default:
1963 die("unknown op '%s'", arg->op.op);
1964 }
1965 break;
1966 case '>':
1967 left = arg_num_eval(arg->op.left);
1968 right = arg_num_eval(arg->op.right);
1969 switch (arg->op.op[1]) {
1970 case 0:
1971 val = left > right;
1972 break;
1973 case '>':
1974 val = left >> right;
1975 break;
1976 case '=':
1977 val = left >= right;
1978 break;
1979 default:
1980 die("unknown op '%s'", arg->op.op);
1981 }
1982 break;
1983 case '=':
1984 left = arg_num_eval(arg->op.left);
1985 right = arg_num_eval(arg->op.right);
1986
1987 if (arg->op.op[1] != '=')
1988 die("unknown op '%s'", arg->op.op);
1989
1990 val = left == right;
1991 break;
1992 case '!':
1993 left = arg_num_eval(arg->op.left);
1994 right = arg_num_eval(arg->op.right);
1995
1996 switch (arg->op.op[1]) {
1997 case '=':
1998 val = left != right;
1999 break;
2000 default:
2001 die("unknown op '%s'", arg->op.op);
2002 }
2003 break;
2004 case '-':
2005 /* check for negative */
2006 if (arg->op.left->type == PRINT_NULL)
2007 left = 0;
2008 else
2009 left = arg_num_eval(arg->op.left);
2010 right = arg_num_eval(arg->op.right);
2011 val = left - right;
2012 break;
2013 default:
2014 die("unknown op '%s'", arg->op.op);
2015 }
2016 break;
2017
2018 case PRINT_NULL:
2019 case PRINT_FIELD ... PRINT_SYMBOL:
2020 case PRINT_STRING:
2021 case PRINT_BSTRING:
2022 default:
2023 die("invalid eval type %d", arg->type);
2024
2025 }
2026 return val;
2027}
2028
2029static char *arg_eval (struct print_arg *arg)
2030{
2031 long long val;
2032 static char buf[20];
2033
2034 switch (arg->type) {
2035 case PRINT_ATOM:
2036 return arg->atom.atom;
2037 case PRINT_TYPE:
2038 return arg_eval(arg->typecast.item);
2039 case PRINT_OP:
2040 val = arg_num_eval(arg);
2041 sprintf(buf, "%lld", val);
2042 return buf;
2043
2044 case PRINT_NULL:
2045 case PRINT_FIELD ... PRINT_SYMBOL:
2046 case PRINT_STRING:
2047 case PRINT_BSTRING:
2048 default:
2049 die("invalid eval type %d", arg->type);
2050 break;
2051 }
2052
2053 return NULL;
2054}
2055
2056static enum event_type
2057process_fields(struct event_format *event, struct print_flag_sym **list, char **tok)
2058{
2059 enum event_type type;
2060 struct print_arg *arg = NULL;
2061 struct print_flag_sym *field;
2062 char *token = *tok;
2063 char *value;
2064
2065 do {
2066 free_token(token);
2067 type = read_token_item(&token);
2068 if (test_type_token(type, token, EVENT_OP, "{"))
2069 break;
2070
2071 arg = alloc_arg();
2072
2073 free_token(token);
2074 type = process_arg(event, arg, &token);
2075 if (test_type_token(type, token, EVENT_DELIM, ","))
2076 goto out_free;
2077
2078 field = malloc_or_die(sizeof(*field));
Julia Lawall54a36252012-04-06 00:47:59 +02002079 memset(field, 0, sizeof(*field));
Steven Rostedtf7d82352012-04-06 00:47:53 +02002080
2081 value = arg_eval(arg);
2082 field->value = strdup(value);
2083
2084 free_arg(arg);
2085 arg = alloc_arg();
2086
2087 free_token(token);
2088 type = process_arg(event, arg, &token);
2089 if (test_type_token(type, token, EVENT_OP, "}"))
2090 goto out_free;
2091
2092 value = arg_eval(arg);
2093 field->str = strdup(value);
2094 free_arg(arg);
2095 arg = NULL;
2096
2097 *list = field;
2098 list = &field->next;
2099
2100 free_token(token);
2101 type = read_token_item(&token);
2102 } while (type == EVENT_DELIM && strcmp(token, ",") == 0);
2103
2104 *tok = token;
2105 return type;
2106
2107out_free:
2108 free_arg(arg);
2109 free_token(token);
2110 *tok = NULL;
2111
2112 return EVENT_ERROR;
2113}
2114
2115static enum event_type
2116process_flags(struct event_format *event, struct print_arg *arg, char **tok)
2117{
2118 struct print_arg *field;
2119 enum event_type type;
2120 char *token;
2121
2122 memset(arg, 0, sizeof(*arg));
2123 arg->type = PRINT_FLAGS;
2124
2125 field = alloc_arg();
2126
2127 type = process_arg(event, field, &token);
2128
2129 /* Handle operations in the first argument */
2130 while (type == EVENT_OP)
2131 type = process_op(event, field, &token);
2132
2133 if (test_type_token(type, token, EVENT_DELIM, ","))
2134 goto out_free;
2135 free_token(token);
2136
2137 arg->flags.field = field;
2138
2139 type = read_token_item(&token);
2140 if (event_item_type(type)) {
2141 arg->flags.delim = token;
2142 type = read_token_item(&token);
2143 }
2144
2145 if (test_type_token(type, token, EVENT_DELIM, ","))
2146 goto out_free;
2147
2148 type = process_fields(event, &arg->flags.flags, &token);
2149 if (test_type_token(type, token, EVENT_DELIM, ")"))
2150 goto out_free;
2151
2152 free_token(token);
2153 type = read_token_item(tok);
2154 return type;
2155
2156 out_free:
2157 free_token(token);
2158 *tok = NULL;
2159 return EVENT_ERROR;
2160}
2161
2162static enum event_type
2163process_symbols(struct event_format *event, struct print_arg *arg, char **tok)
2164{
2165 struct print_arg *field;
2166 enum event_type type;
2167 char *token;
2168
2169 memset(arg, 0, sizeof(*arg));
2170 arg->type = PRINT_SYMBOL;
2171
2172 field = alloc_arg();
2173
2174 type = process_arg(event, field, &token);
2175 if (test_type_token(type, token, EVENT_DELIM, ","))
2176 goto out_free;
2177
2178 arg->symbol.field = field;
2179
2180 type = process_fields(event, &arg->symbol.symbols, &token);
2181 if (test_type_token(type, token, EVENT_DELIM, ")"))
2182 goto out_free;
2183
2184 free_token(token);
2185 type = read_token_item(tok);
2186 return type;
2187
2188 out_free:
2189 free_token(token);
2190 *tok = NULL;
2191 return EVENT_ERROR;
2192}
2193
2194static enum event_type
2195process_dynamic_array(struct event_format *event, struct print_arg *arg, char **tok)
2196{
2197 struct format_field *field;
2198 enum event_type type;
2199 char *token;
2200
2201 memset(arg, 0, sizeof(*arg));
2202 arg->type = PRINT_DYNAMIC_ARRAY;
2203
2204 /*
2205 * The item within the parenthesis is another field that holds
2206 * the index into where the array starts.
2207 */
2208 type = read_token(&token);
2209 *tok = token;
2210 if (type != EVENT_ITEM)
2211 goto out_free;
2212
2213 /* Find the field */
2214
2215 field = pevent_find_field(event, token);
2216 if (!field)
2217 goto out_free;
2218
2219 arg->dynarray.field = field;
2220 arg->dynarray.index = 0;
2221
2222 if (read_expected(EVENT_DELIM, ")") < 0)
2223 goto out_free;
2224
2225 free_token(token);
2226 type = read_token_item(&token);
2227 *tok = token;
2228 if (type != EVENT_OP || strcmp(token, "[") != 0)
2229 return type;
2230
2231 free_token(token);
2232 arg = alloc_arg();
2233 type = process_arg(event, arg, &token);
2234 if (type == EVENT_ERROR)
2235 goto out_free;
2236
2237 if (!test_type_token(type, token, EVENT_OP, "]"))
2238 goto out_free;
2239
2240 free_token(token);
2241 type = read_token_item(tok);
2242 return type;
2243
2244 out_free:
2245 free(arg);
2246 free_token(token);
2247 *tok = NULL;
2248 return EVENT_ERROR;
2249}
2250
2251static enum event_type
2252process_paren(struct event_format *event, struct print_arg *arg, char **tok)
2253{
2254 struct print_arg *item_arg;
2255 enum event_type type;
2256 char *token;
2257
2258 type = process_arg(event, arg, &token);
2259
2260 if (type == EVENT_ERROR)
2261 goto out_free;
2262
2263 if (type == EVENT_OP)
2264 type = process_op(event, arg, &token);
2265
2266 if (type == EVENT_ERROR)
2267 goto out_free;
2268
2269 if (test_type_token(type, token, EVENT_DELIM, ")"))
2270 goto out_free;
2271
2272 free_token(token);
2273 type = read_token_item(&token);
2274
2275 /*
2276 * If the next token is an item or another open paren, then
2277 * this was a typecast.
2278 */
2279 if (event_item_type(type) ||
2280 (type == EVENT_DELIM && strcmp(token, "(") == 0)) {
2281
2282 /* make this a typecast and contine */
2283
2284 /* prevous must be an atom */
2285 if (arg->type != PRINT_ATOM)
2286 die("previous needed to be PRINT_ATOM");
2287
2288 item_arg = alloc_arg();
2289
2290 arg->type = PRINT_TYPE;
2291 arg->typecast.type = arg->atom.atom;
2292 arg->typecast.item = item_arg;
2293 type = process_arg_token(event, item_arg, &token, type);
2294
2295 }
2296
2297 *tok = token;
2298 return type;
2299
2300 out_free:
2301 free_token(token);
2302 *tok = NULL;
2303 return EVENT_ERROR;
2304}
2305
2306
2307static enum event_type
2308process_str(struct event_format *event __unused, struct print_arg *arg, char **tok)
2309{
2310 enum event_type type;
2311 char *token;
2312
2313 if (read_expect_type(EVENT_ITEM, &token) < 0)
2314 goto out_free;
2315
2316 arg->type = PRINT_STRING;
2317 arg->string.string = token;
2318 arg->string.offset = -1;
2319
2320 if (read_expected(EVENT_DELIM, ")") < 0)
2321 goto out_err;
2322
2323 type = read_token(&token);
2324 *tok = token;
2325
2326 return type;
2327
2328 out_free:
2329 free_token(token);
2330 out_err:
2331 *tok = NULL;
2332 return EVENT_ERROR;
2333}
2334
2335static struct pevent_function_handler *
2336find_func_handler(struct pevent *pevent, char *func_name)
2337{
2338 struct pevent_function_handler *func;
2339
2340 for (func = pevent->func_handlers; func; func = func->next) {
2341 if (strcmp(func->name, func_name) == 0)
2342 break;
2343 }
2344
2345 return func;
2346}
2347
2348static void remove_func_handler(struct pevent *pevent, char *func_name)
2349{
2350 struct pevent_function_handler *func;
2351 struct pevent_function_handler **next;
2352
2353 next = &pevent->func_handlers;
2354 while ((func = *next)) {
2355 if (strcmp(func->name, func_name) == 0) {
2356 *next = func->next;
2357 free_func_handle(func);
2358 break;
2359 }
2360 next = &func->next;
2361 }
2362}
2363
2364static enum event_type
2365process_func_handler(struct event_format *event, struct pevent_function_handler *func,
2366 struct print_arg *arg, char **tok)
2367{
2368 struct print_arg **next_arg;
2369 struct print_arg *farg;
2370 enum event_type type;
2371 char *token;
2372 char *test;
2373 int i;
2374
2375 arg->type = PRINT_FUNC;
2376 arg->func.func = func;
2377
2378 *tok = NULL;
2379
2380 next_arg = &(arg->func.args);
2381 for (i = 0; i < func->nr_args; i++) {
2382 farg = alloc_arg();
2383 type = process_arg(event, farg, &token);
2384 if (i < (func->nr_args - 1))
2385 test = ",";
2386 else
2387 test = ")";
2388
2389 if (test_type_token(type, token, EVENT_DELIM, test)) {
2390 free_arg(farg);
2391 free_token(token);
2392 return EVENT_ERROR;
2393 }
2394
2395 *next_arg = farg;
2396 next_arg = &(farg->next);
2397 free_token(token);
2398 }
2399
2400 type = read_token(&token);
2401 *tok = token;
2402
2403 return type;
2404}
2405
2406static enum event_type
2407process_function(struct event_format *event, struct print_arg *arg,
2408 char *token, char **tok)
2409{
2410 struct pevent_function_handler *func;
2411
2412 if (strcmp(token, "__print_flags") == 0) {
2413 free_token(token);
Tom Zanussi5205aec2012-04-06 00:47:58 +02002414 is_flag_field = 1;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002415 return process_flags(event, arg, tok);
2416 }
2417 if (strcmp(token, "__print_symbolic") == 0) {
2418 free_token(token);
Tom Zanussi5205aec2012-04-06 00:47:58 +02002419 is_symbolic_field = 1;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002420 return process_symbols(event, arg, tok);
2421 }
2422 if (strcmp(token, "__get_str") == 0) {
2423 free_token(token);
2424 return process_str(event, arg, tok);
2425 }
2426 if (strcmp(token, "__get_dynamic_array") == 0) {
2427 free_token(token);
2428 return process_dynamic_array(event, arg, tok);
2429 }
2430
2431 func = find_func_handler(event->pevent, token);
2432 if (func) {
2433 free_token(token);
2434 return process_func_handler(event, func, arg, tok);
2435 }
2436
2437 do_warning("function %s not defined", token);
2438 free_token(token);
2439 return EVENT_ERROR;
2440}
2441
2442static enum event_type
2443process_arg_token(struct event_format *event, struct print_arg *arg,
2444 char **tok, enum event_type type)
2445{
2446 char *token;
2447 char *atom;
2448
2449 token = *tok;
2450
2451 switch (type) {
2452 case EVENT_ITEM:
2453 if (strcmp(token, "REC") == 0) {
2454 free_token(token);
2455 type = process_entry(event, arg, &token);
2456 break;
2457 }
2458 atom = token;
2459 /* test the next token */
2460 type = read_token_item(&token);
2461
2462 /*
2463 * If the next token is a parenthesis, then this
2464 * is a function.
2465 */
2466 if (type == EVENT_DELIM && strcmp(token, "(") == 0) {
2467 free_token(token);
2468 token = NULL;
2469 /* this will free atom. */
2470 type = process_function(event, arg, atom, &token);
2471 break;
2472 }
2473 /* atoms can be more than one token long */
2474 while (type == EVENT_ITEM) {
2475 atom = realloc(atom, strlen(atom) + strlen(token) + 2);
2476 strcat(atom, " ");
2477 strcat(atom, token);
2478 free_token(token);
2479 type = read_token_item(&token);
2480 }
2481
2482 arg->type = PRINT_ATOM;
2483 arg->atom.atom = atom;
2484 break;
2485
2486 case EVENT_DQUOTE:
2487 case EVENT_SQUOTE:
2488 arg->type = PRINT_ATOM;
2489 arg->atom.atom = token;
2490 type = read_token_item(&token);
2491 break;
2492 case EVENT_DELIM:
2493 if (strcmp(token, "(") == 0) {
2494 free_token(token);
2495 type = process_paren(event, arg, &token);
2496 break;
2497 }
2498 case EVENT_OP:
2499 /* handle single ops */
2500 arg->type = PRINT_OP;
2501 arg->op.op = token;
2502 arg->op.left = NULL;
2503 type = process_op(event, arg, &token);
2504
2505 /* On error, the op is freed */
2506 if (type == EVENT_ERROR)
2507 arg->op.op = NULL;
2508
2509 /* return error type if errored */
2510 break;
2511
2512 case EVENT_ERROR ... EVENT_NEWLINE:
2513 default:
2514 die("unexpected type %d", type);
2515 }
2516 *tok = token;
2517
2518 return type;
2519}
2520
2521static int event_read_print_args(struct event_format *event, struct print_arg **list)
2522{
2523 enum event_type type = EVENT_ERROR;
2524 struct print_arg *arg;
2525 char *token;
2526 int args = 0;
2527
2528 do {
2529 if (type == EVENT_NEWLINE) {
2530 type = read_token_item(&token);
2531 continue;
2532 }
2533
2534 arg = alloc_arg();
2535
2536 type = process_arg(event, arg, &token);
2537
2538 if (type == EVENT_ERROR) {
2539 free_token(token);
2540 free_arg(arg);
2541 return -1;
2542 }
2543
2544 *list = arg;
2545 args++;
2546
2547 if (type == EVENT_OP) {
2548 type = process_op(event, arg, &token);
2549 free_token(token);
2550 if (type == EVENT_ERROR) {
2551 *list = NULL;
2552 free_arg(arg);
2553 return -1;
2554 }
2555 list = &arg->next;
2556 continue;
2557 }
2558
2559 if (type == EVENT_DELIM && strcmp(token, ",") == 0) {
2560 free_token(token);
2561 *list = arg;
2562 list = &arg->next;
2563 continue;
2564 }
2565 break;
2566 } while (type != EVENT_NONE);
2567
2568 if (type != EVENT_NONE && type != EVENT_ERROR)
2569 free_token(token);
2570
2571 return args;
2572}
2573
2574static int event_read_print(struct event_format *event)
2575{
2576 enum event_type type;
2577 char *token;
2578 int ret;
2579
2580 if (read_expected_item(EVENT_ITEM, "print") < 0)
2581 return -1;
2582
2583 if (read_expected(EVENT_ITEM, "fmt") < 0)
2584 return -1;
2585
2586 if (read_expected(EVENT_OP, ":") < 0)
2587 return -1;
2588
2589 if (read_expect_type(EVENT_DQUOTE, &token) < 0)
2590 goto fail;
2591
2592 concat:
2593 event->print_fmt.format = token;
2594 event->print_fmt.args = NULL;
2595
2596 /* ok to have no arg */
2597 type = read_token_item(&token);
2598
2599 if (type == EVENT_NONE)
2600 return 0;
2601
2602 /* Handle concatenation of print lines */
2603 if (type == EVENT_DQUOTE) {
2604 char *cat;
2605
2606 cat = malloc_or_die(strlen(event->print_fmt.format) +
2607 strlen(token) + 1);
2608 strcpy(cat, event->print_fmt.format);
2609 strcat(cat, token);
2610 free_token(token);
2611 free_token(event->print_fmt.format);
2612 event->print_fmt.format = NULL;
2613 token = cat;
2614 goto concat;
2615 }
2616
2617 if (test_type_token(type, token, EVENT_DELIM, ","))
2618 goto fail;
2619
2620 free_token(token);
2621
2622 ret = event_read_print_args(event, &event->print_fmt.args);
2623 if (ret < 0)
2624 return -1;
2625
2626 return ret;
2627
2628 fail:
2629 free_token(token);
2630 return -1;
2631}
2632
2633/**
2634 * pevent_find_common_field - return a common field by event
2635 * @event: handle for the event
2636 * @name: the name of the common field to return
2637 *
2638 * Returns a common field from the event by the given @name.
2639 * This only searchs the common fields and not all field.
2640 */
2641struct format_field *
2642pevent_find_common_field(struct event_format *event, const char *name)
2643{
2644 struct format_field *format;
2645
2646 for (format = event->format.common_fields;
2647 format; format = format->next) {
2648 if (strcmp(format->name, name) == 0)
2649 break;
2650 }
2651
2652 return format;
2653}
2654
2655/**
2656 * pevent_find_field - find a non-common field
2657 * @event: handle for the event
2658 * @name: the name of the non-common field
2659 *
2660 * Returns a non-common field by the given @name.
2661 * This does not search common fields.
2662 */
2663struct format_field *
2664pevent_find_field(struct event_format *event, const char *name)
2665{
2666 struct format_field *format;
2667
2668 for (format = event->format.fields;
2669 format; format = format->next) {
2670 if (strcmp(format->name, name) == 0)
2671 break;
2672 }
2673
2674 return format;
2675}
2676
2677/**
2678 * pevent_find_any_field - find any field by name
2679 * @event: handle for the event
2680 * @name: the name of the field
2681 *
2682 * Returns a field by the given @name.
2683 * This searchs the common field names first, then
2684 * the non-common ones if a common one was not found.
2685 */
2686struct format_field *
2687pevent_find_any_field(struct event_format *event, const char *name)
2688{
2689 struct format_field *format;
2690
2691 format = pevent_find_common_field(event, name);
2692 if (format)
2693 return format;
2694 return pevent_find_field(event, name);
2695}
2696
2697/**
2698 * pevent_read_number - read a number from data
2699 * @pevent: handle for the pevent
2700 * @ptr: the raw data
2701 * @size: the size of the data that holds the number
2702 *
2703 * Returns the number (converted to host) from the
2704 * raw data.
2705 */
2706unsigned long long pevent_read_number(struct pevent *pevent,
2707 const void *ptr, int size)
2708{
2709 switch (size) {
2710 case 1:
2711 return *(unsigned char *)ptr;
2712 case 2:
2713 return data2host2(pevent, ptr);
2714 case 4:
2715 return data2host4(pevent, ptr);
2716 case 8:
2717 return data2host8(pevent, ptr);
2718 default:
2719 /* BUG! */
2720 return 0;
2721 }
2722}
2723
2724/**
2725 * pevent_read_number_field - read a number from data
2726 * @field: a handle to the field
2727 * @data: the raw data to read
2728 * @value: the value to place the number in
2729 *
2730 * Reads raw data according to a field offset and size,
2731 * and translates it into @value.
2732 *
2733 * Returns 0 on success, -1 otherwise.
2734 */
2735int pevent_read_number_field(struct format_field *field, const void *data,
2736 unsigned long long *value)
2737{
2738 if (!field)
2739 return -1;
2740 switch (field->size) {
2741 case 1:
2742 case 2:
2743 case 4:
2744 case 8:
2745 *value = pevent_read_number(field->event->pevent,
2746 data + field->offset, field->size);
2747 return 0;
2748 default:
2749 return -1;
2750 }
2751}
2752
2753static int get_common_info(struct pevent *pevent,
2754 const char *type, int *offset, int *size)
2755{
2756 struct event_format *event;
2757 struct format_field *field;
2758
2759 /*
2760 * All events should have the same common elements.
2761 * Pick any event to find where the type is;
2762 */
2763 if (!pevent->events)
2764 die("no event_list!");
2765
2766 event = pevent->events[0];
2767 field = pevent_find_common_field(event, type);
2768 if (!field)
2769 die("field '%s' not found", type);
2770
2771 *offset = field->offset;
2772 *size = field->size;
2773
2774 return 0;
2775}
2776
2777static int __parse_common(struct pevent *pevent, void *data,
2778 int *size, int *offset, const char *name)
2779{
2780 int ret;
2781
2782 if (!*size) {
2783 ret = get_common_info(pevent, name, offset, size);
2784 if (ret < 0)
2785 return ret;
2786 }
2787 return pevent_read_number(pevent, data + *offset, *size);
2788}
2789
2790static int trace_parse_common_type(struct pevent *pevent, void *data)
2791{
2792 return __parse_common(pevent, data,
2793 &pevent->type_size, &pevent->type_offset,
2794 "common_type");
2795}
2796
2797static int parse_common_pid(struct pevent *pevent, void *data)
2798{
2799 return __parse_common(pevent, data,
2800 &pevent->pid_size, &pevent->pid_offset,
2801 "common_pid");
2802}
2803
2804static int parse_common_pc(struct pevent *pevent, void *data)
2805{
2806 return __parse_common(pevent, data,
2807 &pevent->pc_size, &pevent->pc_offset,
2808 "common_preempt_count");
2809}
2810
2811static int parse_common_flags(struct pevent *pevent, void *data)
2812{
2813 return __parse_common(pevent, data,
2814 &pevent->flags_size, &pevent->flags_offset,
2815 "common_flags");
2816}
2817
2818static int parse_common_lock_depth(struct pevent *pevent, void *data)
2819{
2820 int ret;
2821
2822 ret = __parse_common(pevent, data,
2823 &pevent->ld_size, &pevent->ld_offset,
2824 "common_lock_depth");
2825 if (ret < 0)
2826 return -1;
2827
2828 return ret;
2829}
2830
2831static int events_id_cmp(const void *a, const void *b);
2832
2833/**
2834 * pevent_find_event - find an event by given id
2835 * @pevent: a handle to the pevent
2836 * @id: the id of the event
2837 *
2838 * Returns an event that has a given @id.
2839 */
2840struct event_format *pevent_find_event(struct pevent *pevent, int id)
2841{
2842 struct event_format **eventptr;
2843 struct event_format key;
2844 struct event_format *pkey = &key;
2845
2846 /* Check cache first */
2847 if (pevent->last_event && pevent->last_event->id == id)
2848 return pevent->last_event;
2849
2850 key.id = id;
2851
2852 eventptr = bsearch(&pkey, pevent->events, pevent->nr_events,
2853 sizeof(*pevent->events), events_id_cmp);
2854
2855 if (eventptr) {
2856 pevent->last_event = *eventptr;
2857 return *eventptr;
2858 }
2859
2860 return NULL;
2861}
2862
2863/**
2864 * pevent_find_event_by_name - find an event by given name
2865 * @pevent: a handle to the pevent
2866 * @sys: the system name to search for
2867 * @name: the name of the event to search for
2868 *
2869 * This returns an event with a given @name and under the system
2870 * @sys. If @sys is NULL the first event with @name is returned.
2871 */
2872struct event_format *
2873pevent_find_event_by_name(struct pevent *pevent,
2874 const char *sys, const char *name)
2875{
2876 struct event_format *event;
2877 int i;
2878
2879 if (pevent->last_event &&
2880 strcmp(pevent->last_event->name, name) == 0 &&
2881 (!sys || strcmp(pevent->last_event->system, sys) == 0))
2882 return pevent->last_event;
2883
2884 for (i = 0; i < pevent->nr_events; i++) {
2885 event = pevent->events[i];
2886 if (strcmp(event->name, name) == 0) {
2887 if (!sys)
2888 break;
2889 if (strcmp(event->system, sys) == 0)
2890 break;
2891 }
2892 }
2893 if (i == pevent->nr_events)
2894 event = NULL;
2895
2896 pevent->last_event = event;
2897 return event;
2898}
2899
2900static unsigned long long
2901eval_num_arg(void *data, int size, struct event_format *event, struct print_arg *arg)
2902{
2903 struct pevent *pevent = event->pevent;
2904 unsigned long long val = 0;
2905 unsigned long long left, right;
2906 struct print_arg *typearg = NULL;
2907 struct print_arg *larg;
2908 unsigned long offset;
2909 unsigned int field_size;
2910
2911 switch (arg->type) {
2912 case PRINT_NULL:
2913 /* ?? */
2914 return 0;
2915 case PRINT_ATOM:
2916 return strtoull(arg->atom.atom, NULL, 0);
2917 case PRINT_FIELD:
2918 if (!arg->field.field) {
2919 arg->field.field = pevent_find_any_field(event, arg->field.name);
2920 if (!arg->field.field)
2921 die("field %s not found", arg->field.name);
2922 }
2923 /* must be a number */
2924 val = pevent_read_number(pevent, data + arg->field.field->offset,
2925 arg->field.field->size);
2926 break;
2927 case PRINT_FLAGS:
2928 case PRINT_SYMBOL:
2929 break;
2930 case PRINT_TYPE:
2931 val = eval_num_arg(data, size, event, arg->typecast.item);
2932 return eval_type(val, arg, 0);
2933 case PRINT_STRING:
2934 case PRINT_BSTRING:
2935 return 0;
2936 case PRINT_FUNC: {
2937 struct trace_seq s;
2938 trace_seq_init(&s);
2939 val = process_defined_func(&s, data, size, event, arg);
2940 trace_seq_destroy(&s);
2941 return val;
2942 }
2943 case PRINT_OP:
2944 if (strcmp(arg->op.op, "[") == 0) {
2945 /*
2946 * Arrays are special, since we don't want
2947 * to read the arg as is.
2948 */
2949 right = eval_num_arg(data, size, event, arg->op.right);
2950
2951 /* handle typecasts */
2952 larg = arg->op.left;
2953 while (larg->type == PRINT_TYPE) {
2954 if (!typearg)
2955 typearg = larg;
2956 larg = larg->typecast.item;
2957 }
2958
2959 /* Default to long size */
2960 field_size = pevent->long_size;
2961
2962 switch (larg->type) {
2963 case PRINT_DYNAMIC_ARRAY:
2964 offset = pevent_read_number(pevent,
2965 data + larg->dynarray.field->offset,
2966 larg->dynarray.field->size);
2967 if (larg->dynarray.field->elementsize)
2968 field_size = larg->dynarray.field->elementsize;
2969 /*
2970 * The actual length of the dynamic array is stored
2971 * in the top half of the field, and the offset
2972 * is in the bottom half of the 32 bit field.
2973 */
2974 offset &= 0xffff;
2975 offset += right;
2976 break;
2977 case PRINT_FIELD:
2978 if (!larg->field.field) {
2979 larg->field.field =
2980 pevent_find_any_field(event, larg->field.name);
2981 if (!larg->field.field)
2982 die("field %s not found", larg->field.name);
2983 }
2984 field_size = larg->field.field->elementsize;
2985 offset = larg->field.field->offset +
2986 right * larg->field.field->elementsize;
2987 break;
2988 default:
2989 goto default_op; /* oops, all bets off */
2990 }
2991 val = pevent_read_number(pevent,
2992 data + offset, field_size);
2993 if (typearg)
2994 val = eval_type(val, typearg, 1);
2995 break;
2996 } else if (strcmp(arg->op.op, "?") == 0) {
2997 left = eval_num_arg(data, size, event, arg->op.left);
2998 arg = arg->op.right;
2999 if (left)
3000 val = eval_num_arg(data, size, event, arg->op.left);
3001 else
3002 val = eval_num_arg(data, size, event, arg->op.right);
3003 break;
3004 }
3005 default_op:
3006 left = eval_num_arg(data, size, event, arg->op.left);
3007 right = eval_num_arg(data, size, event, arg->op.right);
3008 switch (arg->op.op[0]) {
3009 case '!':
3010 switch (arg->op.op[1]) {
3011 case 0:
3012 val = !right;
3013 break;
3014 case '=':
3015 val = left != right;
3016 break;
3017 default:
3018 die("unknown op '%s'", arg->op.op);
3019 }
3020 break;
3021 case '~':
3022 val = ~right;
3023 break;
3024 case '|':
3025 if (arg->op.op[1])
3026 val = left || right;
3027 else
3028 val = left | right;
3029 break;
3030 case '&':
3031 if (arg->op.op[1])
3032 val = left && right;
3033 else
3034 val = left & right;
3035 break;
3036 case '<':
3037 switch (arg->op.op[1]) {
3038 case 0:
3039 val = left < right;
3040 break;
3041 case '<':
3042 val = left << right;
3043 break;
3044 case '=':
3045 val = left <= right;
3046 break;
3047 default:
3048 die("unknown op '%s'", arg->op.op);
3049 }
3050 break;
3051 case '>':
3052 switch (arg->op.op[1]) {
3053 case 0:
3054 val = left > right;
3055 break;
3056 case '>':
3057 val = left >> right;
3058 break;
3059 case '=':
3060 val = left >= right;
3061 break;
3062 default:
3063 die("unknown op '%s'", arg->op.op);
3064 }
3065 break;
3066 case '=':
3067 if (arg->op.op[1] != '=')
3068 die("unknown op '%s'", arg->op.op);
3069 val = left == right;
3070 break;
3071 case '-':
3072 val = left - right;
3073 break;
3074 case '+':
3075 val = left + right;
3076 break;
3077 default:
3078 die("unknown op '%s'", arg->op.op);
3079 }
3080 break;
3081 default: /* not sure what to do there */
3082 return 0;
3083 }
3084 return val;
3085}
3086
3087struct flag {
3088 const char *name;
3089 unsigned long long value;
3090};
3091
3092static const struct flag flags[] = {
3093 { "HI_SOFTIRQ", 0 },
3094 { "TIMER_SOFTIRQ", 1 },
3095 { "NET_TX_SOFTIRQ", 2 },
3096 { "NET_RX_SOFTIRQ", 3 },
3097 { "BLOCK_SOFTIRQ", 4 },
3098 { "BLOCK_IOPOLL_SOFTIRQ", 5 },
3099 { "TASKLET_SOFTIRQ", 6 },
3100 { "SCHED_SOFTIRQ", 7 },
3101 { "HRTIMER_SOFTIRQ", 8 },
3102 { "RCU_SOFTIRQ", 9 },
3103
3104 { "HRTIMER_NORESTART", 0 },
3105 { "HRTIMER_RESTART", 1 },
3106};
3107
3108static unsigned long long eval_flag(const char *flag)
3109{
3110 int i;
3111
3112 /*
3113 * Some flags in the format files do not get converted.
3114 * If the flag is not numeric, see if it is something that
3115 * we already know about.
3116 */
3117 if (isdigit(flag[0]))
3118 return strtoull(flag, NULL, 0);
3119
3120 for (i = 0; i < (int)(sizeof(flags)/sizeof(flags[0])); i++)
3121 if (strcmp(flags[i].name, flag) == 0)
3122 return flags[i].value;
3123
3124 return 0;
3125}
3126
3127static void print_str_to_seq(struct trace_seq *s, const char *format,
3128 int len_arg, const char *str)
3129{
3130 if (len_arg >= 0)
3131 trace_seq_printf(s, format, len_arg, str);
3132 else
3133 trace_seq_printf(s, format, str);
3134}
3135
3136static void print_str_arg(struct trace_seq *s, void *data, int size,
3137 struct event_format *event, const char *format,
3138 int len_arg, struct print_arg *arg)
3139{
3140 struct pevent *pevent = event->pevent;
3141 struct print_flag_sym *flag;
3142 unsigned long long val, fval;
3143 unsigned long addr;
3144 char *str;
3145 int print;
3146 int len;
3147
3148 switch (arg->type) {
3149 case PRINT_NULL:
3150 /* ?? */
3151 return;
3152 case PRINT_ATOM:
3153 print_str_to_seq(s, format, len_arg, arg->atom.atom);
3154 return;
3155 case PRINT_FIELD:
3156 if (!arg->field.field) {
3157 arg->field.field = pevent_find_any_field(event, arg->field.name);
3158 if (!arg->field.field)
3159 die("field %s not found", arg->field.name);
3160 }
3161 /* Zero sized fields, mean the rest of the data */
3162 len = arg->field.field->size ? : size - arg->field.field->offset;
3163
3164 /*
3165 * Some events pass in pointers. If this is not an array
3166 * and the size is the same as long_size, assume that it
3167 * is a pointer.
3168 */
3169 if (!(arg->field.field->flags & FIELD_IS_ARRAY) &&
3170 arg->field.field->size == pevent->long_size) {
3171 addr = *(unsigned long *)(data + arg->field.field->offset);
3172 trace_seq_printf(s, "%lx", addr);
3173 break;
3174 }
3175 str = malloc_or_die(len + 1);
3176 memcpy(str, data + arg->field.field->offset, len);
3177 str[len] = 0;
3178 print_str_to_seq(s, format, len_arg, str);
3179 free(str);
3180 break;
3181 case PRINT_FLAGS:
3182 val = eval_num_arg(data, size, event, arg->flags.field);
3183 print = 0;
3184 for (flag = arg->flags.flags; flag; flag = flag->next) {
3185 fval = eval_flag(flag->value);
3186 if (!val && !fval) {
3187 print_str_to_seq(s, format, len_arg, flag->str);
3188 break;
3189 }
3190 if (fval && (val & fval) == fval) {
3191 if (print && arg->flags.delim)
3192 trace_seq_puts(s, arg->flags.delim);
3193 print_str_to_seq(s, format, len_arg, flag->str);
3194 print = 1;
3195 val &= ~fval;
3196 }
3197 }
3198 break;
3199 case PRINT_SYMBOL:
3200 val = eval_num_arg(data, size, event, arg->symbol.field);
3201 for (flag = arg->symbol.symbols; flag; flag = flag->next) {
3202 fval = eval_flag(flag->value);
3203 if (val == fval) {
3204 print_str_to_seq(s, format, len_arg, flag->str);
3205 break;
3206 }
3207 }
3208 break;
3209
3210 case PRINT_TYPE:
3211 break;
3212 case PRINT_STRING: {
3213 int str_offset;
3214
3215 if (arg->string.offset == -1) {
3216 struct format_field *f;
3217
3218 f = pevent_find_any_field(event, arg->string.string);
3219 arg->string.offset = f->offset;
3220 }
3221 str_offset = data2host4(pevent, data + arg->string.offset);
3222 str_offset &= 0xffff;
3223 print_str_to_seq(s, format, len_arg, ((char *)data) + str_offset);
3224 break;
3225 }
3226 case PRINT_BSTRING:
3227 trace_seq_printf(s, format, arg->string.string);
3228 break;
3229 case PRINT_OP:
3230 /*
3231 * The only op for string should be ? :
3232 */
3233 if (arg->op.op[0] != '?')
3234 return;
3235 val = eval_num_arg(data, size, event, arg->op.left);
3236 if (val)
3237 print_str_arg(s, data, size, event,
3238 format, len_arg, arg->op.right->op.left);
3239 else
3240 print_str_arg(s, data, size, event,
3241 format, len_arg, arg->op.right->op.right);
3242 break;
3243 case PRINT_FUNC:
3244 process_defined_func(s, data, size, event, arg);
3245 break;
3246 default:
3247 /* well... */
3248 break;
3249 }
3250}
3251
3252static unsigned long long
3253process_defined_func(struct trace_seq *s, void *data, int size,
3254 struct event_format *event, struct print_arg *arg)
3255{
3256 struct pevent_function_handler *func_handle = arg->func.func;
3257 struct pevent_func_params *param;
3258 unsigned long long *args;
3259 unsigned long long ret;
3260 struct print_arg *farg;
3261 struct trace_seq str;
3262 struct save_str {
3263 struct save_str *next;
3264 char *str;
3265 } *strings = NULL, *string;
3266 int i;
3267
3268 if (!func_handle->nr_args) {
3269 ret = (*func_handle->func)(s, NULL);
3270 goto out;
3271 }
3272
3273 farg = arg->func.args;
3274 param = func_handle->params;
3275
3276 args = malloc_or_die(sizeof(*args) * func_handle->nr_args);
3277 for (i = 0; i < func_handle->nr_args; i++) {
3278 switch (param->type) {
3279 case PEVENT_FUNC_ARG_INT:
3280 case PEVENT_FUNC_ARG_LONG:
3281 case PEVENT_FUNC_ARG_PTR:
3282 args[i] = eval_num_arg(data, size, event, farg);
3283 break;
3284 case PEVENT_FUNC_ARG_STRING:
3285 trace_seq_init(&str);
3286 print_str_arg(&str, data, size, event, "%s", -1, farg);
3287 trace_seq_terminate(&str);
3288 string = malloc_or_die(sizeof(*string));
3289 string->next = strings;
3290 string->str = strdup(str.buffer);
3291 strings = string;
3292 trace_seq_destroy(&str);
3293 break;
3294 default:
3295 /*
3296 * Something went totally wrong, this is not
3297 * an input error, something in this code broke.
3298 */
3299 die("Unexpected end of arguments\n");
3300 break;
3301 }
3302 farg = farg->next;
3303 }
3304
3305 ret = (*func_handle->func)(s, args);
3306 free(args);
3307 while (strings) {
3308 string = strings;
3309 strings = string->next;
3310 free(string->str);
3311 free(string);
3312 }
3313
3314 out:
3315 /* TBD : handle return type here */
3316 return ret;
3317}
3318
3319static struct print_arg *make_bprint_args(char *fmt, void *data, int size, struct event_format *event)
3320{
3321 struct pevent *pevent = event->pevent;
3322 struct format_field *field, *ip_field;
3323 struct print_arg *args, *arg, **next;
3324 unsigned long long ip, val;
3325 char *ptr;
3326 void *bptr;
3327
3328 field = pevent->bprint_buf_field;
3329 ip_field = pevent->bprint_ip_field;
3330
3331 if (!field) {
3332 field = pevent_find_field(event, "buf");
3333 if (!field)
3334 die("can't find buffer field for binary printk");
3335 ip_field = pevent_find_field(event, "ip");
3336 if (!ip_field)
3337 die("can't find ip field for binary printk");
3338 pevent->bprint_buf_field = field;
3339 pevent->bprint_ip_field = ip_field;
3340 }
3341
3342 ip = pevent_read_number(pevent, data + ip_field->offset, ip_field->size);
3343
3344 /*
3345 * The first arg is the IP pointer.
3346 */
3347 args = alloc_arg();
3348 arg = args;
3349 arg->next = NULL;
3350 next = &arg->next;
3351
3352 arg->type = PRINT_ATOM;
3353 arg->atom.atom = malloc_or_die(32);
3354 sprintf(arg->atom.atom, "%lld", ip);
3355
3356 /* skip the first "%pf : " */
3357 for (ptr = fmt + 6, bptr = data + field->offset;
3358 bptr < data + size && *ptr; ptr++) {
3359 int ls = 0;
3360
3361 if (*ptr == '%') {
3362 process_again:
3363 ptr++;
3364 switch (*ptr) {
3365 case '%':
3366 break;
3367 case 'l':
3368 ls++;
3369 goto process_again;
3370 case 'L':
3371 ls = 2;
3372 goto process_again;
3373 case '0' ... '9':
3374 goto process_again;
3375 case 'p':
3376 ls = 1;
3377 /* fall through */
3378 case 'd':
3379 case 'u':
3380 case 'x':
3381 case 'i':
3382 /* the pointers are always 4 bytes aligned */
3383 bptr = (void *)(((unsigned long)bptr + 3) &
3384 ~3);
3385 switch (ls) {
3386 case 0:
3387 ls = 4;
3388 break;
3389 case 1:
3390 ls = pevent->long_size;
3391 break;
3392 case 2:
3393 ls = 8;
3394 default:
3395 break;
3396 }
3397 val = pevent_read_number(pevent, bptr, ls);
3398 bptr += ls;
3399 arg = alloc_arg();
3400 arg->next = NULL;
3401 arg->type = PRINT_ATOM;
3402 arg->atom.atom = malloc_or_die(32);
3403 sprintf(arg->atom.atom, "%lld", val);
3404 *next = arg;
3405 next = &arg->next;
3406 break;
3407 case 's':
3408 arg = alloc_arg();
3409 arg->next = NULL;
3410 arg->type = PRINT_BSTRING;
3411 arg->string.string = strdup(bptr);
3412 bptr += strlen(bptr) + 1;
3413 *next = arg;
3414 next = &arg->next;
3415 default:
3416 break;
3417 }
3418 }
3419 }
3420
3421 return args;
3422}
3423
3424static void free_args(struct print_arg *args)
3425{
3426 struct print_arg *next;
3427
3428 while (args) {
3429 next = args->next;
3430
3431 free_arg(args);
3432 args = next;
3433 }
3434}
3435
3436static char *
3437get_bprint_format(void *data, int size __unused, struct event_format *event)
3438{
3439 struct pevent *pevent = event->pevent;
3440 unsigned long long addr;
3441 struct format_field *field;
3442 struct printk_map *printk;
3443 char *format;
3444 char *p;
3445
3446 field = pevent->bprint_fmt_field;
3447
3448 if (!field) {
3449 field = pevent_find_field(event, "fmt");
3450 if (!field)
3451 die("can't find format field for binary printk");
3452 pevent->bprint_fmt_field = field;
3453 }
3454
3455 addr = pevent_read_number(pevent, data + field->offset, field->size);
3456
3457 printk = find_printk(pevent, addr);
3458 if (!printk) {
3459 format = malloc_or_die(45);
3460 sprintf(format, "%%pf : (NO FORMAT FOUND at %llx)\n",
3461 addr);
3462 return format;
3463 }
3464
3465 p = printk->printk;
3466 /* Remove any quotes. */
3467 if (*p == '"')
3468 p++;
3469 format = malloc_or_die(strlen(p) + 10);
3470 sprintf(format, "%s : %s", "%pf", p);
3471 /* remove ending quotes and new line since we will add one too */
3472 p = format + strlen(format) - 1;
3473 if (*p == '"')
3474 *p = 0;
3475
3476 p -= 2;
3477 if (strcmp(p, "\\n") == 0)
3478 *p = 0;
3479
3480 return format;
3481}
3482
3483static void print_mac_arg(struct trace_seq *s, int mac, void *data, int size,
3484 struct event_format *event, struct print_arg *arg)
3485{
3486 unsigned char *buf;
3487 char *fmt = "%.2x:%.2x:%.2x:%.2x:%.2x:%.2x";
3488
3489 if (arg->type == PRINT_FUNC) {
3490 process_defined_func(s, data, size, event, arg);
3491 return;
3492 }
3493
3494 if (arg->type != PRINT_FIELD) {
3495 trace_seq_printf(s, "ARG TYPE NOT FIELD BUT %d",
3496 arg->type);
3497 return;
3498 }
3499
3500 if (mac == 'm')
3501 fmt = "%.2x%.2x%.2x%.2x%.2x%.2x";
3502 if (!arg->field.field) {
3503 arg->field.field =
3504 pevent_find_any_field(event, arg->field.name);
3505 if (!arg->field.field)
3506 die("field %s not found", arg->field.name);
3507 }
3508 if (arg->field.field->size != 6) {
3509 trace_seq_printf(s, "INVALIDMAC");
3510 return;
3511 }
3512 buf = data + arg->field.field->offset;
3513 trace_seq_printf(s, fmt, buf[0], buf[1], buf[2], buf[3], buf[4], buf[5]);
3514}
3515
3516static void print_event_fields(struct trace_seq *s, void *data, int size,
3517 struct event_format *event)
3518{
3519 struct format_field *field;
3520 unsigned long long val;
3521 unsigned int offset, len, i;
3522
3523 field = event->format.fields;
3524 while (field) {
3525 trace_seq_printf(s, " %s=", field->name);
3526 if (field->flags & FIELD_IS_ARRAY) {
3527 offset = field->offset;
3528 len = field->size;
3529 if (field->flags & FIELD_IS_DYNAMIC) {
3530 val = pevent_read_number(event->pevent, data + offset, len);
3531 offset = val;
3532 len = offset >> 16;
3533 offset &= 0xffff;
3534 }
3535 if (field->flags & FIELD_IS_STRING) {
3536 trace_seq_printf(s, "%s", (char *)data + offset);
3537 } else {
3538 trace_seq_puts(s, "ARRAY[");
3539 for (i = 0; i < len; i++) {
3540 if (i)
3541 trace_seq_puts(s, ", ");
3542 trace_seq_printf(s, "%02x",
3543 *((unsigned char *)data + offset + i));
3544 }
3545 trace_seq_putc(s, ']');
3546 }
3547 } else {
3548 val = pevent_read_number(event->pevent, data + field->offset,
3549 field->size);
3550 if (field->flags & FIELD_IS_POINTER) {
3551 trace_seq_printf(s, "0x%llx", val);
3552 } else if (field->flags & FIELD_IS_SIGNED) {
3553 switch (field->size) {
3554 case 4:
3555 /*
3556 * If field is long then print it in hex.
3557 * A long usually stores pointers.
3558 */
3559 if (field->flags & FIELD_IS_LONG)
3560 trace_seq_printf(s, "0x%x", (int)val);
3561 else
3562 trace_seq_printf(s, "%d", (int)val);
3563 break;
3564 case 2:
3565 trace_seq_printf(s, "%2d", (short)val);
3566 break;
3567 case 1:
3568 trace_seq_printf(s, "%1d", (char)val);
3569 break;
3570 default:
3571 trace_seq_printf(s, "%lld", val);
3572 }
3573 } else {
3574 if (field->flags & FIELD_IS_LONG)
3575 trace_seq_printf(s, "0x%llx", val);
3576 else
3577 trace_seq_printf(s, "%llu", val);
3578 }
3579 }
3580 field = field->next;
3581 }
3582}
3583
3584static void pretty_print(struct trace_seq *s, void *data, int size, struct event_format *event)
3585{
3586 struct pevent *pevent = event->pevent;
3587 struct print_fmt *print_fmt = &event->print_fmt;
3588 struct print_arg *arg = print_fmt->args;
3589 struct print_arg *args = NULL;
3590 const char *ptr = print_fmt->format;
3591 unsigned long long val;
3592 struct func_map *func;
3593 const char *saveptr;
3594 char *bprint_fmt = NULL;
3595 char format[32];
3596 int show_func;
3597 int len_as_arg;
3598 int len_arg;
3599 int len;
3600 int ls;
3601
3602 if (event->flags & EVENT_FL_FAILED) {
3603 trace_seq_printf(s, "[FAILED TO PARSE]");
3604 print_event_fields(s, data, size, event);
3605 return;
3606 }
3607
3608 if (event->flags & EVENT_FL_ISBPRINT) {
3609 bprint_fmt = get_bprint_format(data, size, event);
3610 args = make_bprint_args(bprint_fmt, data, size, event);
3611 arg = args;
3612 ptr = bprint_fmt;
3613 }
3614
3615 for (; *ptr; ptr++) {
3616 ls = 0;
3617 if (*ptr == '\\') {
3618 ptr++;
3619 switch (*ptr) {
3620 case 'n':
3621 trace_seq_putc(s, '\n');
3622 break;
3623 case 't':
3624 trace_seq_putc(s, '\t');
3625 break;
3626 case 'r':
3627 trace_seq_putc(s, '\r');
3628 break;
3629 case '\\':
3630 trace_seq_putc(s, '\\');
3631 break;
3632 default:
3633 trace_seq_putc(s, *ptr);
3634 break;
3635 }
3636
3637 } else if (*ptr == '%') {
3638 saveptr = ptr;
3639 show_func = 0;
3640 len_as_arg = 0;
3641 cont_process:
3642 ptr++;
3643 switch (*ptr) {
3644 case '%':
3645 trace_seq_putc(s, '%');
3646 break;
3647 case '#':
3648 /* FIXME: need to handle properly */
3649 goto cont_process;
3650 case 'h':
3651 ls--;
3652 goto cont_process;
3653 case 'l':
3654 ls++;
3655 goto cont_process;
3656 case 'L':
3657 ls = 2;
3658 goto cont_process;
3659 case '*':
3660 /* The argument is the length. */
3661 if (!arg)
3662 die("no argument match");
3663 len_arg = eval_num_arg(data, size, event, arg);
3664 len_as_arg = 1;
3665 arg = arg->next;
3666 goto cont_process;
3667 case '.':
3668 case 'z':
3669 case 'Z':
3670 case '0' ... '9':
3671 goto cont_process;
3672 case 'p':
3673 if (pevent->long_size == 4)
3674 ls = 1;
3675 else
3676 ls = 2;
3677
3678 if (*(ptr+1) == 'F' ||
3679 *(ptr+1) == 'f') {
3680 ptr++;
3681 show_func = *ptr;
3682 } else if (*(ptr+1) == 'M' || *(ptr+1) == 'm') {
3683 print_mac_arg(s, *(ptr+1), data, size, event, arg);
3684 ptr++;
3685 break;
3686 }
3687
3688 /* fall through */
3689 case 'd':
3690 case 'i':
3691 case 'x':
3692 case 'X':
3693 case 'u':
3694 if (!arg)
3695 die("no argument match");
3696
3697 len = ((unsigned long)ptr + 1) -
3698 (unsigned long)saveptr;
3699
3700 /* should never happen */
3701 if (len > 31)
3702 die("bad format!");
3703
3704 memcpy(format, saveptr, len);
3705 format[len] = 0;
3706
3707 val = eval_num_arg(data, size, event, arg);
3708 arg = arg->next;
3709
3710 if (show_func) {
3711 func = find_func(pevent, val);
3712 if (func) {
3713 trace_seq_puts(s, func->func);
3714 if (show_func == 'F')
3715 trace_seq_printf(s,
3716 "+0x%llx",
3717 val - func->addr);
3718 break;
3719 }
3720 }
3721 if (pevent->long_size == 8 && ls) {
3722 char *p;
3723
3724 ls = 2;
3725 /* make %l into %ll */
3726 p = strchr(format, 'l');
3727 if (p)
3728 memmove(p, p+1, strlen(p)+1);
3729 else if (strcmp(format, "%p") == 0)
3730 strcpy(format, "0x%llx");
3731 }
3732 switch (ls) {
3733 case -2:
3734 if (len_as_arg)
3735 trace_seq_printf(s, format, len_arg, (char)val);
3736 else
3737 trace_seq_printf(s, format, (char)val);
3738 break;
3739 case -1:
3740 if (len_as_arg)
3741 trace_seq_printf(s, format, len_arg, (short)val);
3742 else
3743 trace_seq_printf(s, format, (short)val);
3744 break;
3745 case 0:
3746 if (len_as_arg)
3747 trace_seq_printf(s, format, len_arg, (int)val);
3748 else
3749 trace_seq_printf(s, format, (int)val);
3750 break;
3751 case 1:
3752 if (len_as_arg)
3753 trace_seq_printf(s, format, len_arg, (long)val);
3754 else
3755 trace_seq_printf(s, format, (long)val);
3756 break;
3757 case 2:
3758 if (len_as_arg)
3759 trace_seq_printf(s, format, len_arg,
3760 (long long)val);
3761 else
3762 trace_seq_printf(s, format, (long long)val);
3763 break;
3764 default:
3765 die("bad count (%d)", ls);
3766 }
3767 break;
3768 case 's':
3769 if (!arg)
3770 die("no matching argument");
3771
3772 len = ((unsigned long)ptr + 1) -
3773 (unsigned long)saveptr;
3774
3775 /* should never happen */
3776 if (len > 31)
3777 die("bad format!");
3778
3779 memcpy(format, saveptr, len);
3780 format[len] = 0;
3781 if (!len_as_arg)
3782 len_arg = -1;
3783 print_str_arg(s, data, size, event,
3784 format, len_arg, arg);
3785 arg = arg->next;
3786 break;
3787 default:
3788 trace_seq_printf(s, ">%c<", *ptr);
3789
3790 }
3791 } else
3792 trace_seq_putc(s, *ptr);
3793 }
3794
3795 if (args) {
3796 free_args(args);
3797 free(bprint_fmt);
3798 }
3799}
3800
3801/**
3802 * pevent_data_lat_fmt - parse the data for the latency format
3803 * @pevent: a handle to the pevent
3804 * @s: the trace_seq to write to
3805 * @data: the raw data to read from
3806 * @size: currently unused.
3807 *
3808 * This parses out the Latency format (interrupts disabled,
3809 * need rescheduling, in hard/soft interrupt, preempt count
3810 * and lock depth) and places it into the trace_seq.
3811 */
3812void pevent_data_lat_fmt(struct pevent *pevent,
3813 struct trace_seq *s, struct record *record)
3814{
3815 static int check_lock_depth = 1;
3816 static int lock_depth_exists;
3817 unsigned int lat_flags;
3818 unsigned int pc;
3819 int lock_depth;
3820 int hardirq;
3821 int softirq;
3822 void *data = record->data;
3823
3824 lat_flags = parse_common_flags(pevent, data);
3825 pc = parse_common_pc(pevent, data);
3826 /* lock_depth may not always exist */
3827 if (check_lock_depth) {
3828 struct format_field *field;
3829 struct event_format *event;
3830
3831 check_lock_depth = 0;
3832 event = pevent->events[0];
3833 field = pevent_find_common_field(event, "common_lock_depth");
3834 if (field)
3835 lock_depth_exists = 1;
3836 }
3837 if (lock_depth_exists)
3838 lock_depth = parse_common_lock_depth(pevent, data);
3839
3840 hardirq = lat_flags & TRACE_FLAG_HARDIRQ;
3841 softirq = lat_flags & TRACE_FLAG_SOFTIRQ;
3842
3843 trace_seq_printf(s, "%c%c%c",
3844 (lat_flags & TRACE_FLAG_IRQS_OFF) ? 'd' :
3845 (lat_flags & TRACE_FLAG_IRQS_NOSUPPORT) ?
3846 'X' : '.',
3847 (lat_flags & TRACE_FLAG_NEED_RESCHED) ?
3848 'N' : '.',
3849 (hardirq && softirq) ? 'H' :
3850 hardirq ? 'h' : softirq ? 's' : '.');
3851
3852 if (pc)
3853 trace_seq_printf(s, "%x", pc);
3854 else
3855 trace_seq_putc(s, '.');
3856
3857 if (lock_depth_exists) {
3858 if (lock_depth < 0)
3859 trace_seq_putc(s, '.');
3860 else
3861 trace_seq_printf(s, "%d", lock_depth);
3862 }
3863
3864 trace_seq_terminate(s);
3865}
3866
3867/**
3868 * pevent_data_type - parse out the given event type
3869 * @pevent: a handle to the pevent
3870 * @rec: the record to read from
3871 *
3872 * This returns the event id from the @rec.
3873 */
3874int pevent_data_type(struct pevent *pevent, struct record *rec)
3875{
3876 return trace_parse_common_type(pevent, rec->data);
3877}
3878
3879/**
3880 * pevent_data_event_from_type - find the event by a given type
3881 * @pevent: a handle to the pevent
3882 * @type: the type of the event.
3883 *
3884 * This returns the event form a given @type;
3885 */
3886struct event_format *pevent_data_event_from_type(struct pevent *pevent, int type)
3887{
3888 return pevent_find_event(pevent, type);
3889}
3890
3891/**
3892 * pevent_data_pid - parse the PID from raw data
3893 * @pevent: a handle to the pevent
3894 * @rec: the record to parse
3895 *
3896 * This returns the PID from a raw data.
3897 */
3898int pevent_data_pid(struct pevent *pevent, struct record *rec)
3899{
3900 return parse_common_pid(pevent, rec->data);
3901}
3902
3903/**
3904 * pevent_data_comm_from_pid - return the command line from PID
3905 * @pevent: a handle to the pevent
3906 * @pid: the PID of the task to search for
3907 *
3908 * This returns a pointer to the command line that has the given
3909 * @pid.
3910 */
3911const char *pevent_data_comm_from_pid(struct pevent *pevent, int pid)
3912{
3913 const char *comm;
3914
3915 comm = find_cmdline(pevent, pid);
3916 return comm;
3917}
3918
3919/**
3920 * pevent_data_comm_from_pid - parse the data into the print format
3921 * @s: the trace_seq to write to
3922 * @event: the handle to the event
3923 * @cpu: the cpu the event was recorded on
3924 * @data: the raw data
3925 * @size: the size of the raw data
3926 * @nsecs: the timestamp of the event
3927 *
3928 * This parses the raw @data using the given @event information and
3929 * writes the print format into the trace_seq.
3930 */
3931void pevent_event_info(struct trace_seq *s, struct event_format *event,
3932 struct record *record)
3933{
3934 int print_pretty = 1;
3935
3936 if (event->pevent->print_raw)
3937 print_event_fields(s, record->data, record->size, event);
3938 else {
3939
3940 if (event->handler)
3941 print_pretty = event->handler(s, record, event,
3942 event->context);
3943
3944 if (print_pretty)
3945 pretty_print(s, record->data, record->size, event);
3946 }
3947
3948 trace_seq_terminate(s);
3949}
3950
3951void pevent_print_event(struct pevent *pevent, struct trace_seq *s,
3952 struct record *record)
3953{
3954 static char *spaces = " "; /* 20 spaces */
3955 struct event_format *event;
3956 unsigned long secs;
3957 unsigned long usecs;
Steven Rostedt4dc10242012-04-06 00:47:57 +02003958 unsigned long nsecs;
Steven Rostedtf7d82352012-04-06 00:47:53 +02003959 const char *comm;
3960 void *data = record->data;
3961 int type;
3962 int pid;
3963 int len;
Steven Rostedt4dc10242012-04-06 00:47:57 +02003964 int p;
Steven Rostedtf7d82352012-04-06 00:47:53 +02003965
3966 secs = record->ts / NSECS_PER_SEC;
Steven Rostedt4dc10242012-04-06 00:47:57 +02003967 nsecs = record->ts - secs * NSECS_PER_SEC;
Steven Rostedtf7d82352012-04-06 00:47:53 +02003968
3969 if (record->size < 0) {
3970 do_warning("ug! negative record size %d", record->size);
3971 return;
3972 }
3973
3974 type = trace_parse_common_type(pevent, data);
3975
3976 event = pevent_find_event(pevent, type);
3977 if (!event) {
3978 do_warning("ug! no event found for type %d", type);
3979 return;
3980 }
3981
3982 pid = parse_common_pid(pevent, data);
3983 comm = find_cmdline(pevent, pid);
3984
3985 if (pevent->latency_format) {
3986 trace_seq_printf(s, "%8.8s-%-5d %3d",
3987 comm, pid, record->cpu);
3988 pevent_data_lat_fmt(pevent, s, record);
3989 } else
3990 trace_seq_printf(s, "%16s-%-5d [%03d]", comm, pid, record->cpu);
3991
Steven Rostedt4dc10242012-04-06 00:47:57 +02003992 if (pevent->flags & PEVENT_NSEC_OUTPUT) {
3993 usecs = nsecs;
3994 p = 9;
3995 } else {
3996 usecs = (nsecs + 500) / NSECS_PER_USEC;
3997 p = 6;
3998 }
3999
4000 trace_seq_printf(s, " %5lu.%0*lu: %s: ", secs, p, usecs, event->name);
Steven Rostedtf7d82352012-04-06 00:47:53 +02004001
4002 /* Space out the event names evenly. */
4003 len = strlen(event->name);
4004 if (len < 20)
4005 trace_seq_printf(s, "%.*s", 20 - len, spaces);
4006
4007 pevent_event_info(s, event, record);
4008}
4009
4010static int events_id_cmp(const void *a, const void *b)
4011{
4012 struct event_format * const * ea = a;
4013 struct event_format * const * eb = b;
4014
4015 if ((*ea)->id < (*eb)->id)
4016 return -1;
4017
4018 if ((*ea)->id > (*eb)->id)
4019 return 1;
4020
4021 return 0;
4022}
4023
4024static int events_name_cmp(const void *a, const void *b)
4025{
4026 struct event_format * const * ea = a;
4027 struct event_format * const * eb = b;
4028 int res;
4029
4030 res = strcmp((*ea)->name, (*eb)->name);
4031 if (res)
4032 return res;
4033
4034 res = strcmp((*ea)->system, (*eb)->system);
4035 if (res)
4036 return res;
4037
4038 return events_id_cmp(a, b);
4039}
4040
4041static int events_system_cmp(const void *a, const void *b)
4042{
4043 struct event_format * const * ea = a;
4044 struct event_format * const * eb = b;
4045 int res;
4046
4047 res = strcmp((*ea)->system, (*eb)->system);
4048 if (res)
4049 return res;
4050
4051 res = strcmp((*ea)->name, (*eb)->name);
4052 if (res)
4053 return res;
4054
4055 return events_id_cmp(a, b);
4056}
4057
4058struct event_format **pevent_list_events(struct pevent *pevent, enum event_sort_type sort_type)
4059{
4060 struct event_format **events;
4061 int (*sort)(const void *a, const void *b);
4062
4063 events = pevent->sort_events;
4064
4065 if (events && pevent->last_type == sort_type)
4066 return events;
4067
4068 if (!events) {
4069 events = malloc(sizeof(*events) * (pevent->nr_events + 1));
4070 if (!events)
4071 return NULL;
4072
4073 memcpy(events, pevent->events, sizeof(*events) * pevent->nr_events);
4074 events[pevent->nr_events] = NULL;
4075
4076 pevent->sort_events = events;
4077
4078 /* the internal events are sorted by id */
4079 if (sort_type == EVENT_SORT_ID) {
4080 pevent->last_type = sort_type;
4081 return events;
4082 }
4083 }
4084
4085 switch (sort_type) {
4086 case EVENT_SORT_ID:
4087 sort = events_id_cmp;
4088 break;
4089 case EVENT_SORT_NAME:
4090 sort = events_name_cmp;
4091 break;
4092 case EVENT_SORT_SYSTEM:
4093 sort = events_system_cmp;
4094 break;
4095 default:
4096 return events;
4097 }
4098
4099 qsort(events, pevent->nr_events, sizeof(*events), sort);
4100 pevent->last_type = sort_type;
4101
4102 return events;
4103}
4104
4105static struct format_field **
4106get_event_fields(const char *type, const char *name,
4107 int count, struct format_field *list)
4108{
4109 struct format_field **fields;
4110 struct format_field *field;
4111 int i = 0;
4112
4113 fields = malloc_or_die(sizeof(*fields) * (count + 1));
4114 for (field = list; field; field = field->next) {
4115 fields[i++] = field;
4116 if (i == count + 1) {
4117 do_warning("event %s has more %s fields than specified",
4118 name, type);
4119 i--;
4120 break;
4121 }
4122 }
4123
4124 if (i != count)
4125 do_warning("event %s has less %s fields than specified",
4126 name, type);
4127
4128 fields[i] = NULL;
4129
4130 return fields;
4131}
4132
4133/**
4134 * pevent_event_common_fields - return a list of common fields for an event
4135 * @event: the event to return the common fields of.
4136 *
4137 * Returns an allocated array of fields. The last item in the array is NULL.
4138 * The array must be freed with free().
4139 */
4140struct format_field **pevent_event_common_fields(struct event_format *event)
4141{
4142 return get_event_fields("common", event->name,
4143 event->format.nr_common,
4144 event->format.common_fields);
4145}
4146
4147/**
4148 * pevent_event_fields - return a list of event specific fields for an event
4149 * @event: the event to return the fields of.
4150 *
4151 * Returns an allocated array of fields. The last item in the array is NULL.
4152 * The array must be freed with free().
4153 */
4154struct format_field **pevent_event_fields(struct event_format *event)
4155{
4156 return get_event_fields("event", event->name,
4157 event->format.nr_fields,
4158 event->format.fields);
4159}
4160
4161static void print_fields(struct trace_seq *s, struct print_flag_sym *field)
4162{
4163 trace_seq_printf(s, "{ %s, %s }", field->value, field->str);
4164 if (field->next) {
4165 trace_seq_puts(s, ", ");
4166 print_fields(s, field->next);
4167 }
4168}
4169
4170/* for debugging */
4171static void print_args(struct print_arg *args)
4172{
4173 int print_paren = 1;
4174 struct trace_seq s;
4175
4176 switch (args->type) {
4177 case PRINT_NULL:
4178 printf("null");
4179 break;
4180 case PRINT_ATOM:
4181 printf("%s", args->atom.atom);
4182 break;
4183 case PRINT_FIELD:
4184 printf("REC->%s", args->field.name);
4185 break;
4186 case PRINT_FLAGS:
4187 printf("__print_flags(");
4188 print_args(args->flags.field);
4189 printf(", %s, ", args->flags.delim);
4190 trace_seq_init(&s);
4191 print_fields(&s, args->flags.flags);
4192 trace_seq_do_printf(&s);
4193 trace_seq_destroy(&s);
4194 printf(")");
4195 break;
4196 case PRINT_SYMBOL:
4197 printf("__print_symbolic(");
4198 print_args(args->symbol.field);
4199 printf(", ");
4200 trace_seq_init(&s);
4201 print_fields(&s, args->symbol.symbols);
4202 trace_seq_do_printf(&s);
4203 trace_seq_destroy(&s);
4204 printf(")");
4205 break;
4206 case PRINT_STRING:
4207 case PRINT_BSTRING:
4208 printf("__get_str(%s)", args->string.string);
4209 break;
4210 case PRINT_TYPE:
4211 printf("(%s)", args->typecast.type);
4212 print_args(args->typecast.item);
4213 break;
4214 case PRINT_OP:
4215 if (strcmp(args->op.op, ":") == 0)
4216 print_paren = 0;
4217 if (print_paren)
4218 printf("(");
4219 print_args(args->op.left);
4220 printf(" %s ", args->op.op);
4221 print_args(args->op.right);
4222 if (print_paren)
4223 printf(")");
4224 break;
4225 default:
4226 /* we should warn... */
4227 return;
4228 }
4229 if (args->next) {
4230 printf("\n");
4231 print_args(args->next);
4232 }
4233}
4234
4235static void parse_header_field(const char *field,
4236 int *offset, int *size, int mandatory)
4237{
4238 unsigned long long save_input_buf_ptr;
4239 unsigned long long save_input_buf_siz;
4240 char *token;
4241 int type;
4242
4243 save_input_buf_ptr = input_buf_ptr;
4244 save_input_buf_siz = input_buf_siz;
4245
4246 if (read_expected(EVENT_ITEM, "field") < 0)
4247 return;
4248 if (read_expected(EVENT_OP, ":") < 0)
4249 return;
4250
4251 /* type */
4252 if (read_expect_type(EVENT_ITEM, &token) < 0)
4253 goto fail;
4254 free_token(token);
4255
4256 /*
4257 * If this is not a mandatory field, then test it first.
4258 */
4259 if (mandatory) {
4260 if (read_expected(EVENT_ITEM, field) < 0)
4261 return;
4262 } else {
4263 if (read_expect_type(EVENT_ITEM, &token) < 0)
4264 goto fail;
4265 if (strcmp(token, field) != 0)
4266 goto discard;
4267 free_token(token);
4268 }
4269
4270 if (read_expected(EVENT_OP, ";") < 0)
4271 return;
4272 if (read_expected(EVENT_ITEM, "offset") < 0)
4273 return;
4274 if (read_expected(EVENT_OP, ":") < 0)
4275 return;
4276 if (read_expect_type(EVENT_ITEM, &token) < 0)
4277 goto fail;
4278 *offset = atoi(token);
4279 free_token(token);
4280 if (read_expected(EVENT_OP, ";") < 0)
4281 return;
4282 if (read_expected(EVENT_ITEM, "size") < 0)
4283 return;
4284 if (read_expected(EVENT_OP, ":") < 0)
4285 return;
4286 if (read_expect_type(EVENT_ITEM, &token) < 0)
4287 goto fail;
4288 *size = atoi(token);
4289 free_token(token);
4290 if (read_expected(EVENT_OP, ";") < 0)
4291 return;
4292 type = read_token(&token);
4293 if (type != EVENT_NEWLINE) {
4294 /* newer versions of the kernel have a "signed" type */
4295 if (type != EVENT_ITEM)
4296 goto fail;
4297
4298 if (strcmp(token, "signed") != 0)
4299 goto fail;
4300
4301 free_token(token);
4302
4303 if (read_expected(EVENT_OP, ":") < 0)
4304 return;
4305
4306 if (read_expect_type(EVENT_ITEM, &token))
4307 goto fail;
4308
4309 free_token(token);
4310 if (read_expected(EVENT_OP, ";") < 0)
4311 return;
4312
4313 if (read_expect_type(EVENT_NEWLINE, &token))
4314 goto fail;
4315 }
4316 fail:
4317 free_token(token);
4318 return;
4319
4320 discard:
4321 input_buf_ptr = save_input_buf_ptr;
4322 input_buf_siz = save_input_buf_siz;
4323 *offset = 0;
4324 *size = 0;
4325 free_token(token);
4326}
4327
4328/**
4329 * pevent_parse_header_page - parse the data stored in the header page
4330 * @pevent: the handle to the pevent
4331 * @buf: the buffer storing the header page format string
4332 * @size: the size of @buf
4333 * @long_size: the long size to use if there is no header
4334 *
4335 * This parses the header page format for information on the
4336 * ring buffer used. The @buf should be copied from
4337 *
4338 * /sys/kernel/debug/tracing/events/header_page
4339 */
4340int pevent_parse_header_page(struct pevent *pevent, char *buf, unsigned long size,
4341 int long_size)
4342{
4343 int ignore;
4344
4345 if (!size) {
4346 /*
4347 * Old kernels did not have header page info.
4348 * Sorry but we just use what we find here in user space.
4349 */
4350 pevent->header_page_ts_size = sizeof(long long);
4351 pevent->header_page_size_size = long_size;
4352 pevent->header_page_data_offset = sizeof(long long) + long_size;
4353 pevent->old_format = 1;
4354 return -1;
4355 }
4356 init_input_buf(buf, size);
4357
4358 parse_header_field("timestamp", &pevent->header_page_ts_offset,
4359 &pevent->header_page_ts_size, 1);
4360 parse_header_field("commit", &pevent->header_page_size_offset,
4361 &pevent->header_page_size_size, 1);
4362 parse_header_field("overwrite", &pevent->header_page_overwrite,
4363 &ignore, 0);
4364 parse_header_field("data", &pevent->header_page_data_offset,
4365 &pevent->header_page_data_size, 1);
4366
4367 return 0;
4368}
4369
4370static int event_matches(struct event_format *event,
4371 int id, const char *sys_name,
4372 const char *event_name)
4373{
4374 if (id >= 0 && id != event->id)
4375 return 0;
4376
4377 if (event_name && (strcmp(event_name, event->name) != 0))
4378 return 0;
4379
4380 if (sys_name && (strcmp(sys_name, event->system) != 0))
4381 return 0;
4382
4383 return 1;
4384}
4385
4386static void free_handler(struct event_handler *handle)
4387{
4388 free((void *)handle->sys_name);
4389 free((void *)handle->event_name);
4390 free(handle);
4391}
4392
4393static int find_event_handle(struct pevent *pevent, struct event_format *event)
4394{
4395 struct event_handler *handle, **next;
4396
4397 for (next = &pevent->handlers; *next;
4398 next = &(*next)->next) {
4399 handle = *next;
4400 if (event_matches(event, handle->id,
4401 handle->sys_name,
4402 handle->event_name))
4403 break;
4404 }
4405
4406 if (!(*next))
4407 return 0;
4408
4409 pr_stat("overriding event (%d) %s:%s with new print handler",
4410 event->id, event->system, event->name);
4411
4412 event->handler = handle->func;
4413 event->context = handle->context;
4414
4415 *next = handle->next;
4416 free_handler(handle);
4417
4418 return 1;
4419}
4420
4421/**
4422 * pevent_parse_event - parse the event format
4423 * @pevent: the handle to the pevent
4424 * @buf: the buffer storing the event format string
4425 * @size: the size of @buf
4426 * @sys: the system the event belongs to
4427 *
4428 * This parses the event format and creates an event structure
4429 * to quickly parse raw data for a given event.
4430 *
4431 * These files currently come from:
4432 *
4433 * /sys/kernel/debug/tracing/events/.../.../format
4434 */
4435int pevent_parse_event(struct pevent *pevent,
4436 const char *buf, unsigned long size,
4437 const char *sys)
4438{
4439 struct event_format *event;
4440 int ret;
4441
4442 init_input_buf(buf, size);
4443
4444 event = alloc_event();
4445 if (!event)
4446 return -ENOMEM;
4447
4448 event->name = event_read_name();
4449 if (!event->name) {
4450 /* Bad event? */
4451 free(event);
4452 return -1;
4453 }
4454
4455 if (strcmp(sys, "ftrace") == 0) {
4456
4457 event->flags |= EVENT_FL_ISFTRACE;
4458
4459 if (strcmp(event->name, "bprint") == 0)
4460 event->flags |= EVENT_FL_ISBPRINT;
4461 }
4462
4463 event->id = event_read_id();
4464 if (event->id < 0)
4465 die("failed to read event id");
4466
4467 event->system = strdup(sys);
4468
4469 /* Add pevent to event so that it can be referenced */
4470 event->pevent = pevent;
4471
4472 ret = event_read_format(event);
4473 if (ret < 0) {
4474 do_warning("failed to read event format for %s", event->name);
4475 goto event_failed;
4476 }
4477
4478 /*
4479 * If the event has an override, don't print warnings if the event
4480 * print format fails to parse.
4481 */
4482 if (find_event_handle(pevent, event))
4483 show_warning = 0;
4484
4485 ret = event_read_print(event);
4486 if (ret < 0) {
4487 do_warning("failed to read event print fmt for %s",
4488 event->name);
4489 show_warning = 1;
4490 goto event_failed;
4491 }
4492 show_warning = 1;
4493
4494 add_event(pevent, event);
4495
4496 if (!ret && (event->flags & EVENT_FL_ISFTRACE)) {
4497 struct format_field *field;
4498 struct print_arg *arg, **list;
4499
4500 /* old ftrace had no args */
4501
4502 list = &event->print_fmt.args;
4503 for (field = event->format.fields; field; field = field->next) {
4504 arg = alloc_arg();
4505 *list = arg;
4506 list = &arg->next;
4507 arg->type = PRINT_FIELD;
4508 arg->field.name = strdup(field->name);
4509 arg->field.field = field;
4510 }
4511 return 0;
4512 }
4513
4514#define PRINT_ARGS 0
4515 if (PRINT_ARGS && event->print_fmt.args)
4516 print_args(event->print_fmt.args);
4517
4518 return 0;
4519
4520 event_failed:
4521 event->flags |= EVENT_FL_FAILED;
4522 /* still add it even if it failed */
4523 add_event(pevent, event);
4524 return -1;
4525}
4526
4527int get_field_val(struct trace_seq *s, struct format_field *field,
4528 const char *name, struct record *record,
4529 unsigned long long *val, int err)
4530{
4531 if (!field) {
4532 if (err)
4533 trace_seq_printf(s, "<CANT FIND FIELD %s>", name);
4534 return -1;
4535 }
4536
4537 if (pevent_read_number_field(field, record->data, val)) {
4538 if (err)
4539 trace_seq_printf(s, " %s=INVALID", name);
4540 return -1;
4541 }
4542
4543 return 0;
4544}
4545
4546/**
4547 * pevent_get_field_raw - return the raw pointer into the data field
4548 * @s: The seq to print to on error
4549 * @event: the event that the field is for
4550 * @name: The name of the field
4551 * @record: The record with the field name.
4552 * @len: place to store the field length.
4553 * @err: print default error if failed.
4554 *
4555 * Returns a pointer into record->data of the field and places
4556 * the length of the field in @len.
4557 *
4558 * On failure, it returns NULL.
4559 */
4560void *pevent_get_field_raw(struct trace_seq *s, struct event_format *event,
4561 const char *name, struct record *record,
4562 int *len, int err)
4563{
4564 struct format_field *field;
4565 void *data = record->data;
4566 unsigned offset;
4567 int dummy;
4568
4569 if (!event)
4570 return NULL;
4571
4572 field = pevent_find_field(event, name);
4573
4574 if (!field) {
4575 if (err)
4576 trace_seq_printf(s, "<CANT FIND FIELD %s>", name);
4577 return NULL;
4578 }
4579
4580 /* Allow @len to be NULL */
4581 if (!len)
4582 len = &dummy;
4583
4584 offset = field->offset;
4585 if (field->flags & FIELD_IS_DYNAMIC) {
4586 offset = pevent_read_number(event->pevent,
4587 data + offset, field->size);
4588 *len = offset >> 16;
4589 offset &= 0xffff;
4590 } else
4591 *len = field->size;
4592
4593 return data + offset;
4594}
4595
4596/**
4597 * pevent_get_field_val - find a field and return its value
4598 * @s: The seq to print to on error
4599 * @event: the event that the field is for
4600 * @name: The name of the field
4601 * @record: The record with the field name.
4602 * @val: place to store the value of the field.
4603 * @err: print default error if failed.
4604 *
4605 * Returns 0 on success -1 on field not found.
4606 */
4607int pevent_get_field_val(struct trace_seq *s, struct event_format *event,
4608 const char *name, struct record *record,
4609 unsigned long long *val, int err)
4610{
4611 struct format_field *field;
4612
4613 if (!event)
4614 return -1;
4615
4616 field = pevent_find_field(event, name);
4617
4618 return get_field_val(s, field, name, record, val, err);
4619}
4620
4621/**
4622 * pevent_get_common_field_val - find a common field and return its value
4623 * @s: The seq to print to on error
4624 * @event: the event that the field is for
4625 * @name: The name of the field
4626 * @record: The record with the field name.
4627 * @val: place to store the value of the field.
4628 * @err: print default error if failed.
4629 *
4630 * Returns 0 on success -1 on field not found.
4631 */
4632int pevent_get_common_field_val(struct trace_seq *s, struct event_format *event,
4633 const char *name, struct record *record,
4634 unsigned long long *val, int err)
4635{
4636 struct format_field *field;
4637
4638 if (!event)
4639 return -1;
4640
4641 field = pevent_find_common_field(event, name);
4642
4643 return get_field_val(s, field, name, record, val, err);
4644}
4645
4646/**
4647 * pevent_get_any_field_val - find a any field and return its value
4648 * @s: The seq to print to on error
4649 * @event: the event that the field is for
4650 * @name: The name of the field
4651 * @record: The record with the field name.
4652 * @val: place to store the value of the field.
4653 * @err: print default error if failed.
4654 *
4655 * Returns 0 on success -1 on field not found.
4656 */
4657int pevent_get_any_field_val(struct trace_seq *s, struct event_format *event,
4658 const char *name, struct record *record,
4659 unsigned long long *val, int err)
4660{
4661 struct format_field *field;
4662
4663 if (!event)
4664 return -1;
4665
4666 field = pevent_find_any_field(event, name);
4667
4668 return get_field_val(s, field, name, record, val, err);
4669}
4670
4671/**
4672 * pevent_print_num_field - print a field and a format
4673 * @s: The seq to print to
4674 * @fmt: The printf format to print the field with.
4675 * @event: the event that the field is for
4676 * @name: The name of the field
4677 * @record: The record with the field name.
4678 * @err: print default error if failed.
4679 *
4680 * Returns: 0 on success, -1 field not fould, or 1 if buffer is full.
4681 */
4682int pevent_print_num_field(struct trace_seq *s, const char *fmt,
4683 struct event_format *event, const char *name,
4684 struct record *record, int err)
4685{
4686 struct format_field *field = pevent_find_field(event, name);
4687 unsigned long long val;
4688
4689 if (!field)
4690 goto failed;
4691
4692 if (pevent_read_number_field(field, record->data, &val))
4693 goto failed;
4694
4695 return trace_seq_printf(s, fmt, val);
4696
4697 failed:
4698 if (err)
4699 trace_seq_printf(s, "CAN'T FIND FIELD \"%s\"", name);
4700 return -1;
4701}
4702
4703static void free_func_handle(struct pevent_function_handler *func)
4704{
4705 struct pevent_func_params *params;
4706
4707 free(func->name);
4708
4709 while (func->params) {
4710 params = func->params;
4711 func->params = params->next;
4712 free(params);
4713 }
4714
4715 free(func);
4716}
4717
4718/**
4719 * pevent_register_print_function - register a helper function
4720 * @pevent: the handle to the pevent
4721 * @func: the function to process the helper function
4722 * @name: the name of the helper function
4723 * @parameters: A list of enum pevent_func_arg_type
4724 *
4725 * Some events may have helper functions in the print format arguments.
4726 * This allows a plugin to dynmically create a way to process one
4727 * of these functions.
4728 *
4729 * The @parameters is a variable list of pevent_func_arg_type enums that
4730 * must end with PEVENT_FUNC_ARG_VOID.
4731 */
4732int pevent_register_print_function(struct pevent *pevent,
4733 pevent_func_handler func,
4734 enum pevent_func_arg_type ret_type,
4735 char *name, ...)
4736{
4737 struct pevent_function_handler *func_handle;
4738 struct pevent_func_params **next_param;
4739 struct pevent_func_params *param;
4740 enum pevent_func_arg_type type;
4741 va_list ap;
4742
4743 func_handle = find_func_handler(pevent, name);
4744 if (func_handle) {
4745 /*
4746 * This is most like caused by the users own
4747 * plugins updating the function. This overrides the
4748 * system defaults.
4749 */
4750 pr_stat("override of function helper '%s'", name);
4751 remove_func_handler(pevent, name);
4752 }
4753
4754 func_handle = malloc_or_die(sizeof(*func_handle));
4755 memset(func_handle, 0, sizeof(*func_handle));
4756
4757 func_handle->ret_type = ret_type;
4758 func_handle->name = strdup(name);
4759 func_handle->func = func;
4760 if (!func_handle->name)
4761 die("Failed to allocate function name");
4762
4763 next_param = &(func_handle->params);
4764 va_start(ap, name);
4765 for (;;) {
4766 type = va_arg(ap, enum pevent_func_arg_type);
4767 if (type == PEVENT_FUNC_ARG_VOID)
4768 break;
4769
4770 if (type < 0 || type >= PEVENT_FUNC_ARG_MAX_TYPES) {
4771 warning("Invalid argument type %d", type);
4772 goto out_free;
4773 }
4774
4775 param = malloc_or_die(sizeof(*param));
4776 param->type = type;
4777 param->next = NULL;
4778
4779 *next_param = param;
4780 next_param = &(param->next);
4781
4782 func_handle->nr_args++;
4783 }
4784 va_end(ap);
4785
4786 func_handle->next = pevent->func_handlers;
4787 pevent->func_handlers = func_handle;
4788
4789 return 0;
4790 out_free:
4791 va_end(ap);
4792 free_func_handle(func_handle);
4793 return -1;
4794}
4795
4796/**
4797 * pevent_register_event_handle - register a way to parse an event
4798 * @pevent: the handle to the pevent
4799 * @id: the id of the event to register
4800 * @sys_name: the system name the event belongs to
4801 * @event_name: the name of the event
4802 * @func: the function to call to parse the event information
4803 *
4804 * This function allows a developer to override the parsing of
4805 * a given event. If for some reason the default print format
4806 * is not sufficient, this function will register a function
4807 * for an event to be used to parse the data instead.
4808 *
4809 * If @id is >= 0, then it is used to find the event.
4810 * else @sys_name and @event_name are used.
4811 */
4812int pevent_register_event_handler(struct pevent *pevent,
4813 int id, char *sys_name, char *event_name,
4814 pevent_event_handler_func func,
4815 void *context)
4816{
4817 struct event_format *event;
4818 struct event_handler *handle;
4819
4820 if (id >= 0) {
4821 /* search by id */
4822 event = pevent_find_event(pevent, id);
4823 if (!event)
4824 goto not_found;
4825 if (event_name && (strcmp(event_name, event->name) != 0))
4826 goto not_found;
4827 if (sys_name && (strcmp(sys_name, event->system) != 0))
4828 goto not_found;
4829 } else {
4830 event = pevent_find_event_by_name(pevent, sys_name, event_name);
4831 if (!event)
4832 goto not_found;
4833 }
4834
4835 pr_stat("overriding event (%d) %s:%s with new print handler",
4836 event->id, event->system, event->name);
4837
4838 event->handler = func;
4839 event->context = context;
4840 return 0;
4841
4842 not_found:
4843 /* Save for later use. */
4844 handle = malloc_or_die(sizeof(*handle));
4845 memset(handle, 0, sizeof(handle));
4846 handle->id = id;
4847 if (event_name)
4848 handle->event_name = strdup(event_name);
4849 if (sys_name)
4850 handle->sys_name = strdup(sys_name);
4851
4852 handle->func = func;
4853 handle->next = pevent->handlers;
4854 pevent->handlers = handle;
4855 handle->context = context;
4856
4857 return -1;
4858}
4859
4860/**
4861 * pevent_alloc - create a pevent handle
4862 */
4863struct pevent *pevent_alloc(void)
4864{
4865 struct pevent *pevent;
4866
4867 pevent = malloc(sizeof(*pevent));
4868 if (!pevent)
4869 return NULL;
4870 memset(pevent, 0, sizeof(*pevent));
4871 pevent->ref_count = 1;
4872
4873 return pevent;
4874}
4875
4876void pevent_ref(struct pevent *pevent)
4877{
4878 pevent->ref_count++;
4879}
4880
4881static void free_format_fields(struct format_field *field)
4882{
4883 struct format_field *next;
4884
4885 while (field) {
4886 next = field->next;
4887 free(field->type);
4888 free(field->name);
4889 free(field);
4890 field = next;
4891 }
4892}
4893
4894static void free_formats(struct format *format)
4895{
4896 free_format_fields(format->common_fields);
4897 free_format_fields(format->fields);
4898}
4899
4900static void free_event(struct event_format *event)
4901{
4902 free(event->name);
4903 free(event->system);
4904
4905 free_formats(&event->format);
4906
4907 free(event->print_fmt.format);
4908 free_args(event->print_fmt.args);
4909
4910 free(event);
4911}
4912
4913/**
4914 * pevent_free - free a pevent handle
4915 * @pevent: the pevent handle to free
4916 */
4917void pevent_free(struct pevent *pevent)
4918{
4919 struct cmdline_list *cmdlist = pevent->cmdlist, *cmdnext;
4920 struct func_list *funclist = pevent->funclist, *funcnext;
4921 struct printk_list *printklist = pevent->printklist, *printknext;
4922 struct pevent_function_handler *func_handler;
4923 struct event_handler *handle;
4924 int i;
4925
4926 pevent->ref_count--;
4927 if (pevent->ref_count)
4928 return;
4929
4930 if (pevent->cmdlines) {
4931 for (i = 0; i < pevent->cmdline_count; i++)
4932 free(pevent->cmdlines[i].comm);
4933 free(pevent->cmdlines);
4934 }
4935
4936 while (cmdlist) {
4937 cmdnext = cmdlist->next;
4938 free(cmdlist->comm);
4939 free(cmdlist);
4940 cmdlist = cmdnext;
4941 }
4942
4943 if (pevent->func_map) {
4944 for (i = 0; i < pevent->func_count; i++) {
4945 free(pevent->func_map[i].func);
4946 free(pevent->func_map[i].mod);
4947 }
4948 free(pevent->func_map);
4949 }
4950
4951 while (funclist) {
4952 funcnext = funclist->next;
4953 free(funclist->func);
4954 free(funclist->mod);
4955 free(funclist);
4956 funclist = funcnext;
4957 }
4958
4959 while (pevent->func_handlers) {
4960 func_handler = pevent->func_handlers;
4961 pevent->func_handlers = func_handler->next;
4962 free_func_handle(func_handler);
4963 }
4964
4965 if (pevent->printk_map) {
4966 for (i = 0; i < pevent->printk_count; i++)
4967 free(pevent->printk_map[i].printk);
4968 free(pevent->printk_map);
4969 }
4970
4971 while (printklist) {
4972 printknext = printklist->next;
4973 free(printklist->printk);
4974 free(printklist);
4975 printklist = printknext;
4976 }
4977
4978 for (i = 0; i < pevent->nr_events; i++)
4979 free_event(pevent->events[i]);
4980
4981 while (pevent->handlers) {
4982 handle = pevent->handlers;
4983 pevent->handlers = handle->next;
4984 free_handler(handle);
4985 }
4986
4987 free(pevent->events);
4988 free(pevent->sort_events);
4989
4990 free(pevent);
4991}
4992
4993void pevent_unref(struct pevent *pevent)
4994{
4995 pevent_free(pevent);
4996}