blob: acf40381b48b029072649deef30a3c05dd5da9a8 [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 */
Steven Rostedtf7d82352012-04-06 00:47:53 +020027#include <stdio.h>
28#include <stdlib.h>
29#include <string.h>
30#include <stdarg.h>
31#include <ctype.h>
32#include <errno.h>
Robert Richter0cf26012012-08-07 19:43:14 +020033#include <stdint.h>
Steven Rostedtf7d82352012-04-06 00:47:53 +020034
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
Namhyung Kimca638582012-04-09 11:54:31 +0900470 if (!item->func || (mod && !item->mod))
471 die("malloc func");
Steven Rostedtf7d82352012-04-06 00:47:53 +0200472
Namhyung Kimca638582012-04-09 11:54:31 +0900473 pevent->funclist = item;
Steven Rostedtf7d82352012-04-06 00:47:53 +0200474 pevent->func_count++;
475
476 return 0;
477}
478
479/**
480 * pevent_print_funcs - print out the stored functions
481 * @pevent: handle for the pevent
482 *
483 * This prints out the stored functions.
484 */
485void pevent_print_funcs(struct pevent *pevent)
486{
487 int i;
488
489 if (!pevent->func_map)
490 func_map_init(pevent);
491
492 for (i = 0; i < (int)pevent->func_count; i++) {
493 printf("%016llx %s",
494 pevent->func_map[i].addr,
495 pevent->func_map[i].func);
496 if (pevent->func_map[i].mod)
497 printf(" [%s]\n", pevent->func_map[i].mod);
498 else
499 printf("\n");
500 }
501}
502
503struct printk_map {
504 unsigned long long addr;
505 char *printk;
506};
507
508struct printk_list {
509 struct printk_list *next;
510 unsigned long long addr;
511 char *printk;
512};
513
514static int printk_cmp(const void *a, const void *b)
515{
Namhyung Kim0fc45ef2012-04-09 11:54:29 +0900516 const struct printk_map *pa = a;
517 const struct printk_map *pb = b;
Steven Rostedtf7d82352012-04-06 00:47:53 +0200518
Namhyung Kim0fc45ef2012-04-09 11:54:29 +0900519 if (pa->addr < pb->addr)
Steven Rostedtf7d82352012-04-06 00:47:53 +0200520 return -1;
Namhyung Kim0fc45ef2012-04-09 11:54:29 +0900521 if (pa->addr > pb->addr)
Steven Rostedtf7d82352012-04-06 00:47:53 +0200522 return 1;
523
524 return 0;
525}
526
527static void printk_map_init(struct pevent *pevent)
528{
529 struct printk_list *printklist;
530 struct printk_list *item;
531 struct printk_map *printk_map;
532 int i;
533
534 printk_map = malloc_or_die(sizeof(*printk_map) * (pevent->printk_count + 1));
535
536 printklist = pevent->printklist;
537
538 i = 0;
539 while (printklist) {
540 printk_map[i].printk = printklist->printk;
541 printk_map[i].addr = printklist->addr;
542 i++;
543 item = printklist;
544 printklist = printklist->next;
545 free(item);
546 }
547
548 qsort(printk_map, pevent->printk_count, sizeof(*printk_map), printk_cmp);
549
550 pevent->printk_map = printk_map;
551 pevent->printklist = NULL;
552}
553
554static struct printk_map *
555find_printk(struct pevent *pevent, unsigned long long addr)
556{
557 struct printk_map *printk;
558 struct printk_map key;
559
560 if (!pevent->printk_map)
561 printk_map_init(pevent);
562
563 key.addr = addr;
564
565 printk = bsearch(&key, pevent->printk_map, pevent->printk_count,
566 sizeof(*pevent->printk_map), printk_cmp);
567
568 return printk;
569}
570
571/**
572 * pevent_register_print_string - register a string by its address
573 * @pevent: handle for the pevent
574 * @fmt: the string format to register
575 * @addr: the address the string was located at
576 *
577 * This registers a string by the address it was stored in the kernel.
578 * The @fmt passed in is duplicated.
579 */
580int pevent_register_print_string(struct pevent *pevent, char *fmt,
581 unsigned long long addr)
582{
583 struct printk_list *item;
584
585 item = malloc_or_die(sizeof(*item));
586
587 item->next = pevent->printklist;
Steven Rostedtf7d82352012-04-06 00:47:53 +0200588 item->printk = strdup(fmt);
589 item->addr = addr;
590
Namhyung Kimca638582012-04-09 11:54:31 +0900591 if (!item->printk)
592 die("malloc fmt");
593
594 pevent->printklist = item;
Steven Rostedtf7d82352012-04-06 00:47:53 +0200595 pevent->printk_count++;
596
597 return 0;
598}
599
600/**
601 * pevent_print_printk - print out the stored strings
602 * @pevent: handle for the pevent
603 *
604 * This prints the string formats that were stored.
605 */
606void pevent_print_printk(struct pevent *pevent)
607{
608 int i;
609
610 if (!pevent->printk_map)
611 printk_map_init(pevent);
612
613 for (i = 0; i < (int)pevent->printk_count; i++) {
614 printf("%016llx %s\n",
615 pevent->printk_map[i].addr,
616 pevent->printk_map[i].printk);
617 }
618}
619
620static struct event_format *alloc_event(void)
621{
622 struct event_format *event;
623
Namhyung Kim50d8f9e2012-06-11 15:28:53 +0900624 event = malloc(sizeof(*event));
625 if (!event)
626 return NULL;
Steven Rostedtf7d82352012-04-06 00:47:53 +0200627 memset(event, 0, sizeof(*event));
628
629 return event;
630}
631
632static void add_event(struct pevent *pevent, struct event_format *event)
633{
634 int i;
635
Namhyung Kimf6ced602012-04-24 10:29:44 +0900636 pevent->events = realloc(pevent->events, sizeof(event) *
637 (pevent->nr_events + 1));
Steven Rostedtf7d82352012-04-06 00:47:53 +0200638 if (!pevent->events)
639 die("Can not allocate events");
640
641 for (i = 0; i < pevent->nr_events; i++) {
642 if (pevent->events[i]->id > event->id)
643 break;
644 }
645 if (i < pevent->nr_events)
646 memmove(&pevent->events[i + 1],
647 &pevent->events[i],
648 sizeof(event) * (pevent->nr_events - i));
649
650 pevent->events[i] = event;
651 pevent->nr_events++;
652
653 event->pevent = pevent;
654}
655
656static int event_item_type(enum event_type type)
657{
658 switch (type) {
659 case EVENT_ITEM ... EVENT_SQUOTE:
660 return 1;
661 case EVENT_ERROR ... EVENT_DELIM:
662 default:
663 return 0;
664 }
665}
666
667static void free_flag_sym(struct print_flag_sym *fsym)
668{
669 struct print_flag_sym *next;
670
671 while (fsym) {
672 next = fsym->next;
673 free(fsym->value);
674 free(fsym->str);
675 free(fsym);
676 fsym = next;
677 }
678}
679
680static void free_arg(struct print_arg *arg)
681{
682 struct print_arg *farg;
683
684 if (!arg)
685 return;
686
687 switch (arg->type) {
688 case PRINT_ATOM:
689 free(arg->atom.atom);
690 break;
691 case PRINT_FIELD:
692 free(arg->field.name);
693 break;
694 case PRINT_FLAGS:
695 free_arg(arg->flags.field);
696 free(arg->flags.delim);
697 free_flag_sym(arg->flags.flags);
698 break;
699 case PRINT_SYMBOL:
700 free_arg(arg->symbol.field);
701 free_flag_sym(arg->symbol.symbols);
702 break;
Namhyung Kime080e6f2012-06-27 09:41:41 +0900703 case PRINT_HEX:
704 free_arg(arg->hex.field);
705 free_arg(arg->hex.size);
706 break;
Steven Rostedtf7d82352012-04-06 00:47:53 +0200707 case PRINT_TYPE:
708 free(arg->typecast.type);
709 free_arg(arg->typecast.item);
710 break;
711 case PRINT_STRING:
712 case PRINT_BSTRING:
713 free(arg->string.string);
714 break;
715 case PRINT_DYNAMIC_ARRAY:
716 free(arg->dynarray.index);
717 break;
718 case PRINT_OP:
719 free(arg->op.op);
720 free_arg(arg->op.left);
721 free_arg(arg->op.right);
722 break;
723 case PRINT_FUNC:
724 while (arg->func.args) {
725 farg = arg->func.args;
726 arg->func.args = farg->next;
727 free_arg(farg);
728 }
729 break;
730
731 case PRINT_NULL:
732 default:
733 break;
734 }
735
736 free(arg);
737}
738
739static enum event_type get_type(int ch)
740{
741 if (ch == '\n')
742 return EVENT_NEWLINE;
743 if (isspace(ch))
744 return EVENT_SPACE;
745 if (isalnum(ch) || ch == '_')
746 return EVENT_ITEM;
747 if (ch == '\'')
748 return EVENT_SQUOTE;
749 if (ch == '"')
750 return EVENT_DQUOTE;
751 if (!isprint(ch))
752 return EVENT_NONE;
753 if (ch == '(' || ch == ')' || ch == ',')
754 return EVENT_DELIM;
755
756 return EVENT_OP;
757}
758
759static int __read_char(void)
760{
761 if (input_buf_ptr >= input_buf_siz)
762 return -1;
763
764 return input_buf[input_buf_ptr++];
765}
766
767static int __peek_char(void)
768{
769 if (input_buf_ptr >= input_buf_siz)
770 return -1;
771
772 return input_buf[input_buf_ptr];
773}
774
775/**
776 * pevent_peek_char - peek at the next character that will be read
777 *
778 * Returns the next character read, or -1 if end of buffer.
779 */
780int pevent_peek_char(void)
781{
782 return __peek_char();
783}
784
Namhyung Kimdeba3fb2012-04-09 11:54:30 +0900785static int extend_token(char **tok, char *buf, int size)
786{
787 char *newtok = realloc(*tok, size);
788
789 if (!newtok) {
790 free(*tok);
791 *tok = NULL;
792 return -1;
793 }
794
795 if (!*tok)
796 strcpy(newtok, buf);
797 else
798 strcat(newtok, buf);
799 *tok = newtok;
800
801 return 0;
802}
803
Steven Rostedtf7d82352012-04-06 00:47:53 +0200804static enum event_type force_token(const char *str, char **tok);
805
806static enum event_type __read_token(char **tok)
807{
808 char buf[BUFSIZ];
809 int ch, last_ch, quote_ch, next_ch;
810 int i = 0;
811 int tok_size = 0;
812 enum event_type type;
813
814 *tok = NULL;
815
816
817 ch = __read_char();
818 if (ch < 0)
819 return EVENT_NONE;
820
821 type = get_type(ch);
822 if (type == EVENT_NONE)
823 return type;
824
825 buf[i++] = ch;
826
827 switch (type) {
828 case EVENT_NEWLINE:
829 case EVENT_DELIM:
830 *tok = malloc_or_die(2);
831 (*tok)[0] = ch;
832 (*tok)[1] = 0;
833 return type;
834
835 case EVENT_OP:
836 switch (ch) {
837 case '-':
838 next_ch = __peek_char();
839 if (next_ch == '>') {
840 buf[i++] = __read_char();
841 break;
842 }
843 /* fall through */
844 case '+':
845 case '|':
846 case '&':
847 case '>':
848 case '<':
849 last_ch = ch;
850 ch = __peek_char();
851 if (ch != last_ch)
852 goto test_equal;
853 buf[i++] = __read_char();
854 switch (last_ch) {
855 case '>':
856 case '<':
857 goto test_equal;
858 default:
859 break;
860 }
861 break;
862 case '!':
863 case '=':
864 goto test_equal;
865 default: /* what should we do instead? */
866 break;
867 }
868 buf[i] = 0;
869 *tok = strdup(buf);
870 return type;
871
872 test_equal:
873 ch = __peek_char();
874 if (ch == '=')
875 buf[i++] = __read_char();
876 goto out;
877
878 case EVENT_DQUOTE:
879 case EVENT_SQUOTE:
880 /* don't keep quotes */
881 i--;
882 quote_ch = ch;
883 last_ch = 0;
884 concat:
885 do {
886 if (i == (BUFSIZ - 1)) {
887 buf[i] = 0;
Steven Rostedtf7d82352012-04-06 00:47:53 +0200888 tok_size += BUFSIZ;
Namhyung Kimdeba3fb2012-04-09 11:54:30 +0900889
890 if (extend_token(tok, buf, tok_size) < 0)
891 return EVENT_NONE;
Steven Rostedtf7d82352012-04-06 00:47:53 +0200892 i = 0;
893 }
894 last_ch = ch;
895 ch = __read_char();
896 buf[i++] = ch;
897 /* the '\' '\' will cancel itself */
898 if (ch == '\\' && last_ch == '\\')
899 last_ch = 0;
900 } while (ch != quote_ch || last_ch == '\\');
901 /* remove the last quote */
902 i--;
903
904 /*
905 * For strings (double quotes) check the next token.
906 * If it is another string, concatinate the two.
907 */
908 if (type == EVENT_DQUOTE) {
909 unsigned long long save_input_buf_ptr = input_buf_ptr;
910
911 do {
912 ch = __read_char();
913 } while (isspace(ch));
914 if (ch == '"')
915 goto concat;
916 input_buf_ptr = save_input_buf_ptr;
917 }
918
919 goto out;
920
921 case EVENT_ERROR ... EVENT_SPACE:
922 case EVENT_ITEM:
923 default:
924 break;
925 }
926
927 while (get_type(__peek_char()) == type) {
928 if (i == (BUFSIZ - 1)) {
929 buf[i] = 0;
Steven Rostedtf7d82352012-04-06 00:47:53 +0200930 tok_size += BUFSIZ;
Namhyung Kimdeba3fb2012-04-09 11:54:30 +0900931
932 if (extend_token(tok, buf, tok_size) < 0)
933 return EVENT_NONE;
Steven Rostedtf7d82352012-04-06 00:47:53 +0200934 i = 0;
935 }
936 ch = __read_char();
937 buf[i++] = ch;
938 }
939
940 out:
941 buf[i] = 0;
Namhyung Kimdeba3fb2012-04-09 11:54:30 +0900942 if (extend_token(tok, buf, tok_size + i + 1) < 0)
Steven Rostedtf7d82352012-04-06 00:47:53 +0200943 return EVENT_NONE;
944
945 if (type == EVENT_ITEM) {
946 /*
947 * Older versions of the kernel has a bug that
948 * creates invalid symbols and will break the mac80211
949 * parsing. This is a work around to that bug.
950 *
951 * See Linux kernel commit:
952 * 811cb50baf63461ce0bdb234927046131fc7fa8b
953 */
954 if (strcmp(*tok, "LOCAL_PR_FMT") == 0) {
955 free(*tok);
956 *tok = NULL;
957 return force_token("\"\%s\" ", tok);
958 } else if (strcmp(*tok, "STA_PR_FMT") == 0) {
959 free(*tok);
960 *tok = NULL;
961 return force_token("\" sta:%pM\" ", tok);
962 } else if (strcmp(*tok, "VIF_PR_FMT") == 0) {
963 free(*tok);
964 *tok = NULL;
965 return force_token("\" vif:%p(%d)\" ", tok);
966 }
967 }
968
969 return type;
970}
971
972static enum event_type force_token(const char *str, char **tok)
973{
974 const char *save_input_buf;
975 unsigned long long save_input_buf_ptr;
976 unsigned long long save_input_buf_siz;
977 enum event_type type;
978
979 /* save off the current input pointers */
980 save_input_buf = input_buf;
981 save_input_buf_ptr = input_buf_ptr;
982 save_input_buf_siz = input_buf_siz;
983
984 init_input_buf(str, strlen(str));
985
986 type = __read_token(tok);
987
988 /* reset back to original token */
989 input_buf = save_input_buf;
990 input_buf_ptr = save_input_buf_ptr;
991 input_buf_siz = save_input_buf_siz;
992
993 return type;
994}
995
996static void free_token(char *tok)
997{
998 if (tok)
999 free(tok);
1000}
1001
1002static enum event_type read_token(char **tok)
1003{
1004 enum event_type type;
1005
1006 for (;;) {
1007 type = __read_token(tok);
1008 if (type != EVENT_SPACE)
1009 return type;
1010
1011 free_token(*tok);
1012 }
1013
1014 /* not reached */
1015 *tok = NULL;
1016 return EVENT_NONE;
1017}
1018
1019/**
1020 * pevent_read_token - access to utilites to use the pevent parser
1021 * @tok: The token to return
1022 *
1023 * This will parse tokens from the string given by
1024 * pevent_init_data().
1025 *
1026 * Returns the token type.
1027 */
1028enum event_type pevent_read_token(char **tok)
1029{
1030 return read_token(tok);
1031}
1032
1033/**
1034 * pevent_free_token - free a token returned by pevent_read_token
1035 * @token: the token to free
1036 */
1037void pevent_free_token(char *token)
1038{
1039 free_token(token);
1040}
1041
1042/* no newline */
1043static enum event_type read_token_item(char **tok)
1044{
1045 enum event_type type;
1046
1047 for (;;) {
1048 type = __read_token(tok);
1049 if (type != EVENT_SPACE && type != EVENT_NEWLINE)
1050 return type;
1051 free_token(*tok);
1052 *tok = NULL;
1053 }
1054
1055 /* not reached */
1056 *tok = NULL;
1057 return EVENT_NONE;
1058}
1059
1060static int test_type(enum event_type type, enum event_type expect)
1061{
1062 if (type != expect) {
1063 do_warning("Error: expected type %d but read %d",
1064 expect, type);
1065 return -1;
1066 }
1067 return 0;
1068}
1069
1070static int test_type_token(enum event_type type, const char *token,
1071 enum event_type expect, const char *expect_tok)
1072{
1073 if (type != expect) {
1074 do_warning("Error: expected type %d but read %d",
1075 expect, type);
1076 return -1;
1077 }
1078
1079 if (strcmp(token, expect_tok) != 0) {
1080 do_warning("Error: expected '%s' but read '%s'",
1081 expect_tok, token);
1082 return -1;
1083 }
1084 return 0;
1085}
1086
1087static int __read_expect_type(enum event_type expect, char **tok, int newline_ok)
1088{
1089 enum event_type type;
1090
1091 if (newline_ok)
1092 type = read_token(tok);
1093 else
1094 type = read_token_item(tok);
1095 return test_type(type, expect);
1096}
1097
1098static int read_expect_type(enum event_type expect, char **tok)
1099{
1100 return __read_expect_type(expect, tok, 1);
1101}
1102
1103static int __read_expected(enum event_type expect, const char *str,
1104 int newline_ok)
1105{
1106 enum event_type type;
1107 char *token;
1108 int ret;
1109
1110 if (newline_ok)
1111 type = read_token(&token);
1112 else
1113 type = read_token_item(&token);
1114
1115 ret = test_type_token(type, token, expect, str);
1116
1117 free_token(token);
1118
1119 return ret;
1120}
1121
1122static int read_expected(enum event_type expect, const char *str)
1123{
1124 return __read_expected(expect, str, 1);
1125}
1126
1127static int read_expected_item(enum event_type expect, const char *str)
1128{
1129 return __read_expected(expect, str, 0);
1130}
1131
1132static char *event_read_name(void)
1133{
1134 char *token;
1135
1136 if (read_expected(EVENT_ITEM, "name") < 0)
1137 return NULL;
1138
1139 if (read_expected(EVENT_OP, ":") < 0)
1140 return NULL;
1141
1142 if (read_expect_type(EVENT_ITEM, &token) < 0)
1143 goto fail;
1144
1145 return token;
1146
1147 fail:
1148 free_token(token);
1149 return NULL;
1150}
1151
1152static int event_read_id(void)
1153{
1154 char *token;
1155 int id;
1156
1157 if (read_expected_item(EVENT_ITEM, "ID") < 0)
1158 return -1;
1159
1160 if (read_expected(EVENT_OP, ":") < 0)
1161 return -1;
1162
1163 if (read_expect_type(EVENT_ITEM, &token) < 0)
1164 goto fail;
1165
1166 id = strtoul(token, NULL, 0);
1167 free_token(token);
1168 return id;
1169
1170 fail:
1171 free_token(token);
1172 return -1;
1173}
1174
1175static int field_is_string(struct format_field *field)
1176{
1177 if ((field->flags & FIELD_IS_ARRAY) &&
1178 (strstr(field->type, "char") || strstr(field->type, "u8") ||
1179 strstr(field->type, "s8")))
1180 return 1;
1181
1182 return 0;
1183}
1184
1185static int field_is_dynamic(struct format_field *field)
1186{
1187 if (strncmp(field->type, "__data_loc", 10) == 0)
1188 return 1;
1189
1190 return 0;
1191}
1192
1193static int field_is_long(struct format_field *field)
1194{
1195 /* includes long long */
1196 if (strstr(field->type, "long"))
1197 return 1;
1198
1199 return 0;
1200}
1201
1202static int event_read_fields(struct event_format *event, struct format_field **fields)
1203{
1204 struct format_field *field = NULL;
1205 enum event_type type;
1206 char *token;
1207 char *last_token;
1208 int count = 0;
1209
1210 do {
1211 type = read_token(&token);
1212 if (type == EVENT_NEWLINE) {
1213 free_token(token);
1214 return count;
1215 }
1216
1217 count++;
1218
1219 if (test_type_token(type, token, EVENT_ITEM, "field"))
1220 goto fail;
1221 free_token(token);
1222
1223 type = read_token(&token);
1224 /*
1225 * The ftrace fields may still use the "special" name.
1226 * Just ignore it.
1227 */
1228 if (event->flags & EVENT_FL_ISFTRACE &&
1229 type == EVENT_ITEM && strcmp(token, "special") == 0) {
1230 free_token(token);
1231 type = read_token(&token);
1232 }
1233
1234 if (test_type_token(type, token, EVENT_OP, ":") < 0)
1235 goto fail;
1236
1237 free_token(token);
1238 if (read_expect_type(EVENT_ITEM, &token) < 0)
1239 goto fail;
1240
1241 last_token = token;
1242
1243 field = malloc_or_die(sizeof(*field));
1244 memset(field, 0, sizeof(*field));
1245 field->event = event;
1246
1247 /* read the rest of the type */
1248 for (;;) {
1249 type = read_token(&token);
1250 if (type == EVENT_ITEM ||
1251 (type == EVENT_OP && strcmp(token, "*") == 0) ||
1252 /*
1253 * Some of the ftrace fields are broken and have
1254 * an illegal "." in them.
1255 */
1256 (event->flags & EVENT_FL_ISFTRACE &&
1257 type == EVENT_OP && strcmp(token, ".") == 0)) {
1258
1259 if (strcmp(token, "*") == 0)
1260 field->flags |= FIELD_IS_POINTER;
1261
1262 if (field->type) {
Namhyung Kimd2864472012-04-09 11:54:33 +09001263 char *new_type;
1264 new_type = realloc(field->type,
1265 strlen(field->type) +
1266 strlen(last_token) + 2);
1267 if (!new_type) {
1268 free(last_token);
1269 goto fail;
1270 }
1271 field->type = new_type;
Steven Rostedtf7d82352012-04-06 00:47:53 +02001272 strcat(field->type, " ");
1273 strcat(field->type, last_token);
1274 free(last_token);
1275 } else
1276 field->type = last_token;
1277 last_token = token;
1278 continue;
1279 }
1280
1281 break;
1282 }
1283
1284 if (!field->type) {
1285 die("no type found");
1286 goto fail;
1287 }
1288 field->name = last_token;
1289
1290 if (test_type(type, EVENT_OP))
1291 goto fail;
1292
1293 if (strcmp(token, "[") == 0) {
1294 enum event_type last_type = type;
1295 char *brackets = token;
Namhyung Kimd2864472012-04-09 11:54:33 +09001296 char *new_brackets;
Steven Rostedtf7d82352012-04-06 00:47:53 +02001297 int len;
1298
1299 field->flags |= FIELD_IS_ARRAY;
1300
1301 type = read_token(&token);
1302
1303 if (type == EVENT_ITEM)
1304 field->arraylen = strtoul(token, NULL, 0);
1305 else
1306 field->arraylen = 0;
1307
1308 while (strcmp(token, "]") != 0) {
1309 if (last_type == EVENT_ITEM &&
1310 type == EVENT_ITEM)
1311 len = 2;
1312 else
1313 len = 1;
1314 last_type = type;
1315
Namhyung Kimd2864472012-04-09 11:54:33 +09001316 new_brackets = realloc(brackets,
1317 strlen(brackets) +
1318 strlen(token) + len);
1319 if (!new_brackets) {
1320 free(brackets);
1321 goto fail;
1322 }
1323 brackets = new_brackets;
Steven Rostedtf7d82352012-04-06 00:47:53 +02001324 if (len == 2)
1325 strcat(brackets, " ");
1326 strcat(brackets, token);
1327 /* We only care about the last token */
1328 field->arraylen = strtoul(token, NULL, 0);
1329 free_token(token);
1330 type = read_token(&token);
1331 if (type == EVENT_NONE) {
1332 die("failed to find token");
1333 goto fail;
1334 }
1335 }
1336
1337 free_token(token);
1338
Namhyung Kimd2864472012-04-09 11:54:33 +09001339 new_brackets = realloc(brackets, strlen(brackets) + 2);
1340 if (!new_brackets) {
1341 free(brackets);
1342 goto fail;
1343 }
1344 brackets = new_brackets;
Steven Rostedtf7d82352012-04-06 00:47:53 +02001345 strcat(brackets, "]");
1346
1347 /* add brackets to type */
1348
1349 type = read_token(&token);
1350 /*
1351 * If the next token is not an OP, then it is of
1352 * the format: type [] item;
1353 */
1354 if (type == EVENT_ITEM) {
Namhyung Kimd2864472012-04-09 11:54:33 +09001355 char *new_type;
1356 new_type = realloc(field->type,
1357 strlen(field->type) +
1358 strlen(field->name) +
1359 strlen(brackets) + 2);
1360 if (!new_type) {
1361 free(brackets);
1362 goto fail;
1363 }
1364 field->type = new_type;
Steven Rostedtf7d82352012-04-06 00:47:53 +02001365 strcat(field->type, " ");
1366 strcat(field->type, field->name);
1367 free_token(field->name);
1368 strcat(field->type, brackets);
1369 field->name = token;
1370 type = read_token(&token);
1371 } else {
Namhyung Kimd2864472012-04-09 11:54:33 +09001372 char *new_type;
1373 new_type = realloc(field->type,
1374 strlen(field->type) +
1375 strlen(brackets) + 1);
1376 if (!new_type) {
1377 free(brackets);
1378 goto fail;
1379 }
1380 field->type = new_type;
Steven Rostedtf7d82352012-04-06 00:47:53 +02001381 strcat(field->type, brackets);
1382 }
1383 free(brackets);
1384 }
1385
1386 if (field_is_string(field))
1387 field->flags |= FIELD_IS_STRING;
1388 if (field_is_dynamic(field))
1389 field->flags |= FIELD_IS_DYNAMIC;
1390 if (field_is_long(field))
1391 field->flags |= FIELD_IS_LONG;
1392
1393 if (test_type_token(type, token, EVENT_OP, ";"))
1394 goto fail;
1395 free_token(token);
1396
1397 if (read_expected(EVENT_ITEM, "offset") < 0)
1398 goto fail_expect;
1399
1400 if (read_expected(EVENT_OP, ":") < 0)
1401 goto fail_expect;
1402
1403 if (read_expect_type(EVENT_ITEM, &token))
1404 goto fail;
1405 field->offset = strtoul(token, NULL, 0);
1406 free_token(token);
1407
1408 if (read_expected(EVENT_OP, ";") < 0)
1409 goto fail_expect;
1410
1411 if (read_expected(EVENT_ITEM, "size") < 0)
1412 goto fail_expect;
1413
1414 if (read_expected(EVENT_OP, ":") < 0)
1415 goto fail_expect;
1416
1417 if (read_expect_type(EVENT_ITEM, &token))
1418 goto fail;
1419 field->size = strtoul(token, NULL, 0);
1420 free_token(token);
1421
1422 if (read_expected(EVENT_OP, ";") < 0)
1423 goto fail_expect;
1424
1425 type = read_token(&token);
1426 if (type != EVENT_NEWLINE) {
1427 /* newer versions of the kernel have a "signed" type */
1428 if (test_type_token(type, token, EVENT_ITEM, "signed"))
1429 goto fail;
1430
1431 free_token(token);
1432
1433 if (read_expected(EVENT_OP, ":") < 0)
1434 goto fail_expect;
1435
1436 if (read_expect_type(EVENT_ITEM, &token))
1437 goto fail;
1438
1439 /* add signed type */
1440
1441 free_token(token);
1442 if (read_expected(EVENT_OP, ";") < 0)
1443 goto fail_expect;
1444
1445 if (read_expect_type(EVENT_NEWLINE, &token))
1446 goto fail;
1447 }
1448
1449 free_token(token);
1450
1451 if (field->flags & FIELD_IS_ARRAY) {
1452 if (field->arraylen)
1453 field->elementsize = field->size / field->arraylen;
1454 else if (field->flags & FIELD_IS_STRING)
1455 field->elementsize = 1;
1456 else
1457 field->elementsize = event->pevent->long_size;
1458 } else
1459 field->elementsize = field->size;
1460
1461 *fields = field;
1462 fields = &field->next;
1463
1464 } while (1);
1465
1466 return 0;
1467
1468fail:
1469 free_token(token);
1470fail_expect:
Namhyung Kim57d34dc2012-05-23 11:36:47 +09001471 if (field) {
1472 free(field->type);
1473 free(field->name);
Steven Rostedtf7d82352012-04-06 00:47:53 +02001474 free(field);
Namhyung Kim57d34dc2012-05-23 11:36:47 +09001475 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02001476 return -1;
1477}
1478
1479static int event_read_format(struct event_format *event)
1480{
1481 char *token;
1482 int ret;
1483
1484 if (read_expected_item(EVENT_ITEM, "format") < 0)
1485 return -1;
1486
1487 if (read_expected(EVENT_OP, ":") < 0)
1488 return -1;
1489
1490 if (read_expect_type(EVENT_NEWLINE, &token))
1491 goto fail;
1492 free_token(token);
1493
1494 ret = event_read_fields(event, &event->format.common_fields);
1495 if (ret < 0)
1496 return ret;
1497 event->format.nr_common = ret;
1498
1499 ret = event_read_fields(event, &event->format.fields);
1500 if (ret < 0)
1501 return ret;
1502 event->format.nr_fields = ret;
1503
1504 return 0;
1505
1506 fail:
1507 free_token(token);
1508 return -1;
1509}
1510
1511static enum event_type
1512process_arg_token(struct event_format *event, struct print_arg *arg,
1513 char **tok, enum event_type type);
1514
1515static enum event_type
1516process_arg(struct event_format *event, struct print_arg *arg, char **tok)
1517{
1518 enum event_type type;
1519 char *token;
1520
1521 type = read_token(&token);
1522 *tok = token;
1523
1524 return process_arg_token(event, arg, tok, type);
1525}
1526
1527static enum event_type
1528process_op(struct event_format *event, struct print_arg *arg, char **tok);
1529
1530static enum event_type
1531process_cond(struct event_format *event, struct print_arg *top, char **tok)
1532{
1533 struct print_arg *arg, *left, *right;
1534 enum event_type type;
1535 char *token = NULL;
1536
1537 arg = alloc_arg();
1538 left = alloc_arg();
1539 right = alloc_arg();
1540
1541 arg->type = PRINT_OP;
1542 arg->op.left = left;
1543 arg->op.right = right;
1544
1545 *tok = NULL;
1546 type = process_arg(event, left, &token);
1547
1548 again:
1549 /* Handle other operations in the arguments */
1550 if (type == EVENT_OP && strcmp(token, ":") != 0) {
1551 type = process_op(event, left, &token);
1552 goto again;
1553 }
1554
1555 if (test_type_token(type, token, EVENT_OP, ":"))
1556 goto out_free;
1557
1558 arg->op.op = token;
1559
1560 type = process_arg(event, right, &token);
1561
1562 top->op.right = arg;
1563
1564 *tok = token;
1565 return type;
1566
1567out_free:
1568 /* Top may point to itself */
1569 top->op.right = NULL;
1570 free_token(token);
1571 free_arg(arg);
1572 return EVENT_ERROR;
1573}
1574
1575static enum event_type
1576process_array(struct event_format *event, struct print_arg *top, char **tok)
1577{
1578 struct print_arg *arg;
1579 enum event_type type;
1580 char *token = NULL;
1581
1582 arg = alloc_arg();
1583
1584 *tok = NULL;
1585 type = process_arg(event, arg, &token);
1586 if (test_type_token(type, token, EVENT_OP, "]"))
1587 goto out_free;
1588
1589 top->op.right = arg;
1590
1591 free_token(token);
1592 type = read_token_item(&token);
1593 *tok = token;
1594
1595 return type;
1596
1597out_free:
Namhyung Kim1bce6e02012-09-19 15:58:41 +09001598 free_token(token);
Steven Rostedtf7d82352012-04-06 00:47:53 +02001599 free_arg(arg);
1600 return EVENT_ERROR;
1601}
1602
1603static int get_op_prio(char *op)
1604{
1605 if (!op[1]) {
1606 switch (op[0]) {
1607 case '~':
1608 case '!':
1609 return 4;
1610 case '*':
1611 case '/':
1612 case '%':
1613 return 6;
1614 case '+':
1615 case '-':
1616 return 7;
1617 /* '>>' and '<<' are 8 */
1618 case '<':
1619 case '>':
1620 return 9;
1621 /* '==' and '!=' are 10 */
1622 case '&':
1623 return 11;
1624 case '^':
1625 return 12;
1626 case '|':
1627 return 13;
1628 case '?':
1629 return 16;
1630 default:
Vaibhav Nagarnaik14ffde02012-04-06 00:48:01 +02001631 do_warning("unknown op '%c'", op[0]);
Steven Rostedtf7d82352012-04-06 00:47:53 +02001632 return -1;
1633 }
1634 } else {
1635 if (strcmp(op, "++") == 0 ||
1636 strcmp(op, "--") == 0) {
1637 return 3;
1638 } else if (strcmp(op, ">>") == 0 ||
1639 strcmp(op, "<<") == 0) {
1640 return 8;
1641 } else if (strcmp(op, ">=") == 0 ||
1642 strcmp(op, "<=") == 0) {
1643 return 9;
1644 } else if (strcmp(op, "==") == 0 ||
1645 strcmp(op, "!=") == 0) {
1646 return 10;
1647 } else if (strcmp(op, "&&") == 0) {
1648 return 14;
1649 } else if (strcmp(op, "||") == 0) {
1650 return 15;
1651 } else {
Vaibhav Nagarnaik14ffde02012-04-06 00:48:01 +02001652 do_warning("unknown op '%s'", op);
Steven Rostedtf7d82352012-04-06 00:47:53 +02001653 return -1;
1654 }
1655 }
1656}
1657
Vaibhav Nagarnaik14ffde02012-04-06 00:48:01 +02001658static int set_op_prio(struct print_arg *arg)
Steven Rostedtf7d82352012-04-06 00:47:53 +02001659{
1660
1661 /* single ops are the greatest */
Vaibhav Nagarnaik14ffde02012-04-06 00:48:01 +02001662 if (!arg->op.left || arg->op.left->type == PRINT_NULL)
Steven Rostedtf7d82352012-04-06 00:47:53 +02001663 arg->op.prio = 0;
Vaibhav Nagarnaik14ffde02012-04-06 00:48:01 +02001664 else
1665 arg->op.prio = get_op_prio(arg->op.op);
Steven Rostedtf7d82352012-04-06 00:47:53 +02001666
Vaibhav Nagarnaik14ffde02012-04-06 00:48:01 +02001667 return arg->op.prio;
Steven Rostedtf7d82352012-04-06 00:47:53 +02001668}
1669
1670/* Note, *tok does not get freed, but will most likely be saved */
1671static enum event_type
1672process_op(struct event_format *event, struct print_arg *arg, char **tok)
1673{
1674 struct print_arg *left, *right = NULL;
1675 enum event_type type;
1676 char *token;
1677
1678 /* the op is passed in via tok */
1679 token = *tok;
1680
1681 if (arg->type == PRINT_OP && !arg->op.left) {
1682 /* handle single op */
1683 if (token[1]) {
1684 die("bad op token %s", token);
1685 goto out_free;
1686 }
1687 switch (token[0]) {
1688 case '~':
1689 case '!':
1690 case '+':
1691 case '-':
1692 break;
1693 default:
1694 do_warning("bad op token %s", token);
1695 goto out_free;
1696
1697 }
1698
1699 /* make an empty left */
1700 left = alloc_arg();
1701 left->type = PRINT_NULL;
1702 arg->op.left = left;
1703
1704 right = alloc_arg();
1705 arg->op.right = right;
1706
1707 /* do not free the token, it belongs to an op */
1708 *tok = NULL;
1709 type = process_arg(event, right, tok);
1710
1711 } else if (strcmp(token, "?") == 0) {
1712
1713 left = alloc_arg();
1714 /* copy the top arg to the left */
1715 *left = *arg;
1716
1717 arg->type = PRINT_OP;
1718 arg->op.op = token;
1719 arg->op.left = left;
1720 arg->op.prio = 0;
1721
Namhyung Kim41e51a22012-09-19 15:58:42 +09001722 /* it will set arg->op.right */
Steven Rostedtf7d82352012-04-06 00:47:53 +02001723 type = process_cond(event, arg, tok);
1724
1725 } else if (strcmp(token, ">>") == 0 ||
1726 strcmp(token, "<<") == 0 ||
1727 strcmp(token, "&") == 0 ||
1728 strcmp(token, "|") == 0 ||
1729 strcmp(token, "&&") == 0 ||
1730 strcmp(token, "||") == 0 ||
1731 strcmp(token, "-") == 0 ||
1732 strcmp(token, "+") == 0 ||
1733 strcmp(token, "*") == 0 ||
1734 strcmp(token, "^") == 0 ||
1735 strcmp(token, "/") == 0 ||
1736 strcmp(token, "<") == 0 ||
1737 strcmp(token, ">") == 0 ||
1738 strcmp(token, "==") == 0 ||
1739 strcmp(token, "!=") == 0) {
1740
1741 left = alloc_arg();
1742
1743 /* copy the top arg to the left */
1744 *left = *arg;
1745
1746 arg->type = PRINT_OP;
1747 arg->op.op = token;
1748 arg->op.left = left;
Namhyung Kim41e51a22012-09-19 15:58:42 +09001749 arg->op.right = NULL;
Steven Rostedtf7d82352012-04-06 00:47:53 +02001750
Vaibhav Nagarnaik14ffde02012-04-06 00:48:01 +02001751 if (set_op_prio(arg) == -1) {
1752 event->flags |= EVENT_FL_FAILED;
Namhyung Kimd1de1082012-05-23 11:36:49 +09001753 /* arg->op.op (= token) will be freed at out_free */
1754 arg->op.op = NULL;
Vaibhav Nagarnaik14ffde02012-04-06 00:48:01 +02001755 goto out_free;
1756 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02001757
1758 type = read_token_item(&token);
1759 *tok = token;
1760
1761 /* could just be a type pointer */
1762 if ((strcmp(arg->op.op, "*") == 0) &&
1763 type == EVENT_DELIM && (strcmp(token, ")") == 0)) {
Namhyung Kimd2864472012-04-09 11:54:33 +09001764 char *new_atom;
1765
Steven Rostedtf7d82352012-04-06 00:47:53 +02001766 if (left->type != PRINT_ATOM)
1767 die("bad pointer type");
Namhyung Kimd2864472012-04-09 11:54:33 +09001768 new_atom = realloc(left->atom.atom,
Steven Rostedtf7d82352012-04-06 00:47:53 +02001769 strlen(left->atom.atom) + 3);
Namhyung Kimd2864472012-04-09 11:54:33 +09001770 if (!new_atom)
1771 goto out_free;
1772
1773 left->atom.atom = new_atom;
Steven Rostedtf7d82352012-04-06 00:47:53 +02001774 strcat(left->atom.atom, " *");
1775 free(arg->op.op);
1776 *arg = *left;
1777 free(left);
1778
1779 return type;
1780 }
1781
1782 right = alloc_arg();
1783 type = process_arg_token(event, right, tok, type);
1784 arg->op.right = right;
1785
1786 } else if (strcmp(token, "[") == 0) {
1787
1788 left = alloc_arg();
1789 *left = *arg;
1790
1791 arg->type = PRINT_OP;
1792 arg->op.op = token;
1793 arg->op.left = left;
1794
1795 arg->op.prio = 0;
1796
Namhyung Kim41e51a22012-09-19 15:58:42 +09001797 /* it will set arg->op.right */
Steven Rostedtf7d82352012-04-06 00:47:53 +02001798 type = process_array(event, arg, tok);
1799
1800 } else {
1801 do_warning("unknown op '%s'", token);
1802 event->flags |= EVENT_FL_FAILED;
1803 /* the arg is now the left side */
1804 goto out_free;
1805 }
1806
1807 if (type == EVENT_OP && strcmp(*tok, ":") != 0) {
1808 int prio;
1809
1810 /* higher prios need to be closer to the root */
1811 prio = get_op_prio(*tok);
1812
1813 if (prio > arg->op.prio)
1814 return process_op(event, arg, tok);
1815
1816 return process_op(event, right, tok);
1817 }
1818
1819 return type;
1820
1821 out_free:
1822 free_token(token);
1823 *tok = NULL;
1824 return EVENT_ERROR;
1825}
1826
1827static enum event_type
Irina Tirdea1d037ca2012-09-11 01:15:03 +03001828process_entry(struct event_format *event __maybe_unused, struct print_arg *arg,
Steven Rostedtf7d82352012-04-06 00:47:53 +02001829 char **tok)
1830{
1831 enum event_type type;
1832 char *field;
1833 char *token;
1834
1835 if (read_expected(EVENT_OP, "->") < 0)
1836 goto out_err;
1837
1838 if (read_expect_type(EVENT_ITEM, &token) < 0)
1839 goto out_free;
1840 field = token;
1841
1842 arg->type = PRINT_FIELD;
1843 arg->field.name = field;
1844
Tom Zanussi5205aec2012-04-06 00:47:58 +02001845 if (is_flag_field) {
1846 arg->field.field = pevent_find_any_field(event, arg->field.name);
1847 arg->field.field->flags |= FIELD_IS_FLAG;
1848 is_flag_field = 0;
1849 } else if (is_symbolic_field) {
1850 arg->field.field = pevent_find_any_field(event, arg->field.name);
1851 arg->field.field->flags |= FIELD_IS_SYMBOLIC;
1852 is_symbolic_field = 0;
1853 }
1854
Steven Rostedtf7d82352012-04-06 00:47:53 +02001855 type = read_token(&token);
1856 *tok = token;
1857
1858 return type;
1859
1860 out_free:
1861 free_token(token);
1862 out_err:
1863 *tok = NULL;
1864 return EVENT_ERROR;
1865}
1866
1867static char *arg_eval (struct print_arg *arg);
1868
1869static unsigned long long
1870eval_type_str(unsigned long long val, const char *type, int pointer)
1871{
1872 int sign = 0;
1873 char *ref;
1874 int len;
1875
1876 len = strlen(type);
1877
1878 if (pointer) {
1879
1880 if (type[len-1] != '*') {
1881 do_warning("pointer expected with non pointer type");
1882 return val;
1883 }
1884
1885 ref = malloc_or_die(len);
1886 memcpy(ref, type, len);
1887
1888 /* chop off the " *" */
1889 ref[len - 2] = 0;
1890
1891 val = eval_type_str(val, ref, 0);
1892 free(ref);
1893 return val;
1894 }
1895
1896 /* check if this is a pointer */
1897 if (type[len - 1] == '*')
1898 return val;
1899
1900 /* Try to figure out the arg size*/
1901 if (strncmp(type, "struct", 6) == 0)
1902 /* all bets off */
1903 return val;
1904
1905 if (strcmp(type, "u8") == 0)
1906 return val & 0xff;
1907
1908 if (strcmp(type, "u16") == 0)
1909 return val & 0xffff;
1910
1911 if (strcmp(type, "u32") == 0)
1912 return val & 0xffffffff;
1913
1914 if (strcmp(type, "u64") == 0 ||
1915 strcmp(type, "s64"))
1916 return val;
1917
1918 if (strcmp(type, "s8") == 0)
1919 return (unsigned long long)(char)val & 0xff;
1920
1921 if (strcmp(type, "s16") == 0)
1922 return (unsigned long long)(short)val & 0xffff;
1923
1924 if (strcmp(type, "s32") == 0)
1925 return (unsigned long long)(int)val & 0xffffffff;
1926
1927 if (strncmp(type, "unsigned ", 9) == 0) {
1928 sign = 0;
1929 type += 9;
1930 }
1931
1932 if (strcmp(type, "char") == 0) {
1933 if (sign)
1934 return (unsigned long long)(char)val & 0xff;
1935 else
1936 return val & 0xff;
1937 }
1938
1939 if (strcmp(type, "short") == 0) {
1940 if (sign)
1941 return (unsigned long long)(short)val & 0xffff;
1942 else
1943 return val & 0xffff;
1944 }
1945
1946 if (strcmp(type, "int") == 0) {
1947 if (sign)
1948 return (unsigned long long)(int)val & 0xffffffff;
1949 else
1950 return val & 0xffffffff;
1951 }
1952
1953 return val;
1954}
1955
1956/*
1957 * Try to figure out the type.
1958 */
1959static unsigned long long
1960eval_type(unsigned long long val, struct print_arg *arg, int pointer)
1961{
1962 if (arg->type != PRINT_TYPE)
1963 die("expected type argument");
1964
1965 return eval_type_str(val, arg->typecast.type, pointer);
1966}
1967
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02001968static int arg_num_eval(struct print_arg *arg, long long *val)
Steven Rostedtf7d82352012-04-06 00:47:53 +02001969{
1970 long long left, right;
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02001971 int ret = 1;
Steven Rostedtf7d82352012-04-06 00:47:53 +02001972
1973 switch (arg->type) {
1974 case PRINT_ATOM:
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02001975 *val = strtoll(arg->atom.atom, NULL, 0);
Steven Rostedtf7d82352012-04-06 00:47:53 +02001976 break;
1977 case PRINT_TYPE:
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02001978 ret = arg_num_eval(arg->typecast.item, val);
1979 if (!ret)
1980 break;
1981 *val = eval_type(*val, arg, 0);
Steven Rostedtf7d82352012-04-06 00:47:53 +02001982 break;
1983 case PRINT_OP:
1984 switch (arg->op.op[0]) {
1985 case '|':
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02001986 ret = arg_num_eval(arg->op.left, &left);
1987 if (!ret)
1988 break;
1989 ret = arg_num_eval(arg->op.right, &right);
1990 if (!ret)
1991 break;
Steven Rostedtf7d82352012-04-06 00:47:53 +02001992 if (arg->op.op[1])
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02001993 *val = left || right;
Steven Rostedtf7d82352012-04-06 00:47:53 +02001994 else
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02001995 *val = left | right;
Steven Rostedtf7d82352012-04-06 00:47:53 +02001996 break;
1997 case '&':
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02001998 ret = arg_num_eval(arg->op.left, &left);
1999 if (!ret)
2000 break;
2001 ret = arg_num_eval(arg->op.right, &right);
2002 if (!ret)
2003 break;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002004 if (arg->op.op[1])
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02002005 *val = left && right;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002006 else
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02002007 *val = left & right;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002008 break;
2009 case '<':
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02002010 ret = arg_num_eval(arg->op.left, &left);
2011 if (!ret)
2012 break;
2013 ret = arg_num_eval(arg->op.right, &right);
2014 if (!ret)
2015 break;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002016 switch (arg->op.op[1]) {
2017 case 0:
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02002018 *val = left < right;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002019 break;
2020 case '<':
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02002021 *val = left << right;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002022 break;
2023 case '=':
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02002024 *val = left <= right;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002025 break;
2026 default:
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02002027 do_warning("unknown op '%s'", arg->op.op);
2028 ret = 0;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002029 }
2030 break;
2031 case '>':
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02002032 ret = arg_num_eval(arg->op.left, &left);
2033 if (!ret)
2034 break;
2035 ret = arg_num_eval(arg->op.right, &right);
2036 if (!ret)
2037 break;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002038 switch (arg->op.op[1]) {
2039 case 0:
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02002040 *val = left > right;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002041 break;
2042 case '>':
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02002043 *val = left >> right;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002044 break;
2045 case '=':
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02002046 *val = left >= right;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002047 break;
2048 default:
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02002049 do_warning("unknown op '%s'", arg->op.op);
2050 ret = 0;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002051 }
2052 break;
2053 case '=':
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02002054 ret = arg_num_eval(arg->op.left, &left);
2055 if (!ret)
2056 break;
2057 ret = arg_num_eval(arg->op.right, &right);
2058 if (!ret)
2059 break;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002060
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02002061 if (arg->op.op[1] != '=') {
2062 do_warning("unknown op '%s'", arg->op.op);
2063 ret = 0;
2064 } else
2065 *val = left == right;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002066 break;
2067 case '!':
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02002068 ret = arg_num_eval(arg->op.left, &left);
2069 if (!ret)
2070 break;
2071 ret = arg_num_eval(arg->op.right, &right);
2072 if (!ret)
2073 break;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002074
2075 switch (arg->op.op[1]) {
2076 case '=':
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02002077 *val = left != right;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002078 break;
2079 default:
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02002080 do_warning("unknown op '%s'", arg->op.op);
2081 ret = 0;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002082 }
2083 break;
2084 case '-':
2085 /* check for negative */
2086 if (arg->op.left->type == PRINT_NULL)
2087 left = 0;
2088 else
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02002089 ret = arg_num_eval(arg->op.left, &left);
2090 if (!ret)
2091 break;
2092 ret = arg_num_eval(arg->op.right, &right);
2093 if (!ret)
2094 break;
2095 *val = left - right;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002096 break;
Vaibhav Nagarnaikb4828592012-04-06 00:48:03 +02002097 case '+':
2098 if (arg->op.left->type == PRINT_NULL)
2099 left = 0;
2100 else
2101 ret = arg_num_eval(arg->op.left, &left);
2102 if (!ret)
2103 break;
2104 ret = arg_num_eval(arg->op.right, &right);
2105 if (!ret)
2106 break;
2107 *val = left + right;
2108 break;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002109 default:
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02002110 do_warning("unknown op '%s'", arg->op.op);
2111 ret = 0;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002112 }
2113 break;
2114
2115 case PRINT_NULL:
2116 case PRINT_FIELD ... PRINT_SYMBOL:
2117 case PRINT_STRING:
2118 case PRINT_BSTRING:
2119 default:
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02002120 do_warning("invalid eval type %d", arg->type);
2121 ret = 0;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002122
2123 }
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02002124 return ret;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002125}
2126
2127static char *arg_eval (struct print_arg *arg)
2128{
2129 long long val;
2130 static char buf[20];
2131
2132 switch (arg->type) {
2133 case PRINT_ATOM:
2134 return arg->atom.atom;
2135 case PRINT_TYPE:
2136 return arg_eval(arg->typecast.item);
2137 case PRINT_OP:
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02002138 if (!arg_num_eval(arg, &val))
2139 break;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002140 sprintf(buf, "%lld", val);
2141 return buf;
2142
2143 case PRINT_NULL:
2144 case PRINT_FIELD ... PRINT_SYMBOL:
2145 case PRINT_STRING:
2146 case PRINT_BSTRING:
2147 default:
2148 die("invalid eval type %d", arg->type);
2149 break;
2150 }
2151
2152 return NULL;
2153}
2154
2155static enum event_type
2156process_fields(struct event_format *event, struct print_flag_sym **list, char **tok)
2157{
2158 enum event_type type;
2159 struct print_arg *arg = NULL;
2160 struct print_flag_sym *field;
2161 char *token = *tok;
2162 char *value;
2163
2164 do {
2165 free_token(token);
2166 type = read_token_item(&token);
2167 if (test_type_token(type, token, EVENT_OP, "{"))
2168 break;
2169
2170 arg = alloc_arg();
2171
2172 free_token(token);
2173 type = process_arg(event, arg, &token);
Stefan Hajnoczi00b9da72012-05-23 11:36:42 +09002174
2175 if (type == EVENT_OP)
2176 type = process_op(event, arg, &token);
2177
2178 if (type == EVENT_ERROR)
2179 goto out_free;
2180
Steven Rostedtf7d82352012-04-06 00:47:53 +02002181 if (test_type_token(type, token, EVENT_DELIM, ","))
2182 goto out_free;
2183
2184 field = malloc_or_die(sizeof(*field));
Julia Lawall54a36252012-04-06 00:47:59 +02002185 memset(field, 0, sizeof(*field));
Steven Rostedtf7d82352012-04-06 00:47:53 +02002186
2187 value = arg_eval(arg);
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02002188 if (value == NULL)
Namhyung Kimf8c49d22012-09-19 15:58:43 +09002189 goto out_free_field;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002190 field->value = strdup(value);
Namhyung Kimca638582012-04-09 11:54:31 +09002191 if (field->value == NULL)
Namhyung Kimf8c49d22012-09-19 15:58:43 +09002192 goto out_free_field;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002193
2194 free_arg(arg);
2195 arg = alloc_arg();
2196
2197 free_token(token);
2198 type = process_arg(event, arg, &token);
2199 if (test_type_token(type, token, EVENT_OP, "}"))
Namhyung Kimf8c49d22012-09-19 15:58:43 +09002200 goto out_free_field;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002201
2202 value = arg_eval(arg);
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02002203 if (value == NULL)
Namhyung Kimf8c49d22012-09-19 15:58:43 +09002204 goto out_free_field;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002205 field->str = strdup(value);
Namhyung Kimca638582012-04-09 11:54:31 +09002206 if (field->str == NULL)
Namhyung Kimf8c49d22012-09-19 15:58:43 +09002207 goto out_free_field;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002208 free_arg(arg);
2209 arg = NULL;
2210
2211 *list = field;
2212 list = &field->next;
2213
2214 free_token(token);
2215 type = read_token_item(&token);
2216 } while (type == EVENT_DELIM && strcmp(token, ",") == 0);
2217
2218 *tok = token;
2219 return type;
2220
Namhyung Kimf8c49d22012-09-19 15:58:43 +09002221out_free_field:
2222 free_flag_sym(field);
Steven Rostedtf7d82352012-04-06 00:47:53 +02002223out_free:
2224 free_arg(arg);
2225 free_token(token);
2226 *tok = NULL;
2227
2228 return EVENT_ERROR;
2229}
2230
2231static enum event_type
2232process_flags(struct event_format *event, struct print_arg *arg, char **tok)
2233{
2234 struct print_arg *field;
2235 enum event_type type;
2236 char *token;
2237
2238 memset(arg, 0, sizeof(*arg));
2239 arg->type = PRINT_FLAGS;
2240
2241 field = alloc_arg();
2242
2243 type = process_arg(event, field, &token);
2244
2245 /* Handle operations in the first argument */
2246 while (type == EVENT_OP)
2247 type = process_op(event, field, &token);
2248
2249 if (test_type_token(type, token, EVENT_DELIM, ","))
Namhyung Kim70d93042012-09-19 15:58:44 +09002250 goto out_free_field;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002251 free_token(token);
2252
2253 arg->flags.field = field;
2254
2255 type = read_token_item(&token);
2256 if (event_item_type(type)) {
2257 arg->flags.delim = token;
2258 type = read_token_item(&token);
2259 }
2260
2261 if (test_type_token(type, token, EVENT_DELIM, ","))
2262 goto out_free;
2263
2264 type = process_fields(event, &arg->flags.flags, &token);
2265 if (test_type_token(type, token, EVENT_DELIM, ")"))
2266 goto out_free;
2267
2268 free_token(token);
2269 type = read_token_item(tok);
2270 return type;
2271
Namhyung Kim70d93042012-09-19 15:58:44 +09002272out_free_field:
2273 free_arg(field);
2274out_free:
Steven Rostedtf7d82352012-04-06 00:47:53 +02002275 free_token(token);
2276 *tok = NULL;
2277 return EVENT_ERROR;
2278}
2279
2280static enum event_type
2281process_symbols(struct event_format *event, struct print_arg *arg, char **tok)
2282{
2283 struct print_arg *field;
2284 enum event_type type;
2285 char *token;
2286
2287 memset(arg, 0, sizeof(*arg));
2288 arg->type = PRINT_SYMBOL;
2289
2290 field = alloc_arg();
2291
2292 type = process_arg(event, field, &token);
2293 if (test_type_token(type, token, EVENT_DELIM, ","))
Namhyung Kim70d93042012-09-19 15:58:44 +09002294 goto out_free_field;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002295
2296 arg->symbol.field = field;
2297
2298 type = process_fields(event, &arg->symbol.symbols, &token);
2299 if (test_type_token(type, token, EVENT_DELIM, ")"))
2300 goto out_free;
2301
2302 free_token(token);
2303 type = read_token_item(tok);
2304 return type;
2305
Namhyung Kim70d93042012-09-19 15:58:44 +09002306out_free_field:
2307 free_arg(field);
2308out_free:
Steven Rostedtf7d82352012-04-06 00:47:53 +02002309 free_token(token);
2310 *tok = NULL;
2311 return EVENT_ERROR;
2312}
2313
2314static enum event_type
Namhyung Kime080e6f2012-06-27 09:41:41 +09002315process_hex(struct event_format *event, struct print_arg *arg, char **tok)
2316{
2317 struct print_arg *field;
2318 enum event_type type;
2319 char *token;
2320
2321 memset(arg, 0, sizeof(*arg));
2322 arg->type = PRINT_HEX;
2323
2324 field = alloc_arg();
2325 type = process_arg(event, field, &token);
2326
2327 if (test_type_token(type, token, EVENT_DELIM, ","))
2328 goto out_free;
2329
2330 arg->hex.field = field;
2331
2332 free_token(token);
2333
2334 field = alloc_arg();
2335 type = process_arg(event, field, &token);
2336
2337 if (test_type_token(type, token, EVENT_DELIM, ")"))
2338 goto out_free;
2339
2340 arg->hex.size = field;
2341
2342 free_token(token);
2343 type = read_token_item(tok);
2344 return type;
2345
2346 out_free:
2347 free_arg(field);
2348 free_token(token);
2349 *tok = NULL;
2350 return EVENT_ERROR;
2351}
2352
2353static enum event_type
Steven Rostedtf7d82352012-04-06 00:47:53 +02002354process_dynamic_array(struct event_format *event, struct print_arg *arg, char **tok)
2355{
2356 struct format_field *field;
2357 enum event_type type;
2358 char *token;
2359
2360 memset(arg, 0, sizeof(*arg));
2361 arg->type = PRINT_DYNAMIC_ARRAY;
2362
2363 /*
2364 * The item within the parenthesis is another field that holds
2365 * the index into where the array starts.
2366 */
2367 type = read_token(&token);
2368 *tok = token;
2369 if (type != EVENT_ITEM)
2370 goto out_free;
2371
2372 /* Find the field */
2373
2374 field = pevent_find_field(event, token);
2375 if (!field)
2376 goto out_free;
2377
2378 arg->dynarray.field = field;
2379 arg->dynarray.index = 0;
2380
2381 if (read_expected(EVENT_DELIM, ")") < 0)
2382 goto out_free;
2383
2384 free_token(token);
2385 type = read_token_item(&token);
2386 *tok = token;
2387 if (type != EVENT_OP || strcmp(token, "[") != 0)
2388 return type;
2389
2390 free_token(token);
2391 arg = alloc_arg();
2392 type = process_arg(event, arg, &token);
2393 if (type == EVENT_ERROR)
Namhyung Kimb3511d02012-05-23 11:36:50 +09002394 goto out_free_arg;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002395
2396 if (!test_type_token(type, token, EVENT_OP, "]"))
Namhyung Kimb3511d02012-05-23 11:36:50 +09002397 goto out_free_arg;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002398
2399 free_token(token);
2400 type = read_token_item(tok);
2401 return type;
2402
Namhyung Kimb3511d02012-05-23 11:36:50 +09002403 out_free_arg:
2404 free_arg(arg);
Steven Rostedtf7d82352012-04-06 00:47:53 +02002405 out_free:
Steven Rostedtf7d82352012-04-06 00:47:53 +02002406 free_token(token);
2407 *tok = NULL;
2408 return EVENT_ERROR;
2409}
2410
2411static enum event_type
2412process_paren(struct event_format *event, struct print_arg *arg, char **tok)
2413{
2414 struct print_arg *item_arg;
2415 enum event_type type;
2416 char *token;
2417
2418 type = process_arg(event, arg, &token);
2419
2420 if (type == EVENT_ERROR)
2421 goto out_free;
2422
2423 if (type == EVENT_OP)
2424 type = process_op(event, arg, &token);
2425
2426 if (type == EVENT_ERROR)
2427 goto out_free;
2428
2429 if (test_type_token(type, token, EVENT_DELIM, ")"))
2430 goto out_free;
2431
2432 free_token(token);
2433 type = read_token_item(&token);
2434
2435 /*
2436 * If the next token is an item or another open paren, then
2437 * this was a typecast.
2438 */
2439 if (event_item_type(type) ||
2440 (type == EVENT_DELIM && strcmp(token, "(") == 0)) {
2441
2442 /* make this a typecast and contine */
2443
2444 /* prevous must be an atom */
2445 if (arg->type != PRINT_ATOM)
2446 die("previous needed to be PRINT_ATOM");
2447
2448 item_arg = alloc_arg();
2449
2450 arg->type = PRINT_TYPE;
2451 arg->typecast.type = arg->atom.atom;
2452 arg->typecast.item = item_arg;
2453 type = process_arg_token(event, item_arg, &token, type);
2454
2455 }
2456
2457 *tok = token;
2458 return type;
2459
2460 out_free:
2461 free_token(token);
2462 *tok = NULL;
2463 return EVENT_ERROR;
2464}
2465
2466
2467static enum event_type
Irina Tirdea1d037ca2012-09-11 01:15:03 +03002468process_str(struct event_format *event __maybe_unused, struct print_arg *arg,
2469 char **tok)
Steven Rostedtf7d82352012-04-06 00:47:53 +02002470{
2471 enum event_type type;
2472 char *token;
2473
2474 if (read_expect_type(EVENT_ITEM, &token) < 0)
2475 goto out_free;
2476
2477 arg->type = PRINT_STRING;
2478 arg->string.string = token;
2479 arg->string.offset = -1;
2480
2481 if (read_expected(EVENT_DELIM, ")") < 0)
2482 goto out_err;
2483
2484 type = read_token(&token);
2485 *tok = token;
2486
2487 return type;
2488
2489 out_free:
2490 free_token(token);
2491 out_err:
2492 *tok = NULL;
2493 return EVENT_ERROR;
2494}
2495
2496static struct pevent_function_handler *
2497find_func_handler(struct pevent *pevent, char *func_name)
2498{
2499 struct pevent_function_handler *func;
2500
2501 for (func = pevent->func_handlers; func; func = func->next) {
2502 if (strcmp(func->name, func_name) == 0)
2503 break;
2504 }
2505
2506 return func;
2507}
2508
2509static void remove_func_handler(struct pevent *pevent, char *func_name)
2510{
2511 struct pevent_function_handler *func;
2512 struct pevent_function_handler **next;
2513
2514 next = &pevent->func_handlers;
2515 while ((func = *next)) {
2516 if (strcmp(func->name, func_name) == 0) {
2517 *next = func->next;
2518 free_func_handle(func);
2519 break;
2520 }
2521 next = &func->next;
2522 }
2523}
2524
2525static enum event_type
2526process_func_handler(struct event_format *event, struct pevent_function_handler *func,
2527 struct print_arg *arg, char **tok)
2528{
2529 struct print_arg **next_arg;
2530 struct print_arg *farg;
2531 enum event_type type;
2532 char *token;
2533 char *test;
2534 int i;
2535
2536 arg->type = PRINT_FUNC;
2537 arg->func.func = func;
2538
2539 *tok = NULL;
2540
2541 next_arg = &(arg->func.args);
2542 for (i = 0; i < func->nr_args; i++) {
2543 farg = alloc_arg();
2544 type = process_arg(event, farg, &token);
2545 if (i < (func->nr_args - 1))
2546 test = ",";
2547 else
2548 test = ")";
2549
2550 if (test_type_token(type, token, EVENT_DELIM, test)) {
2551 free_arg(farg);
2552 free_token(token);
2553 return EVENT_ERROR;
2554 }
2555
2556 *next_arg = farg;
2557 next_arg = &(farg->next);
2558 free_token(token);
2559 }
2560
2561 type = read_token(&token);
2562 *tok = token;
2563
2564 return type;
2565}
2566
2567static enum event_type
2568process_function(struct event_format *event, struct print_arg *arg,
2569 char *token, char **tok)
2570{
2571 struct pevent_function_handler *func;
2572
2573 if (strcmp(token, "__print_flags") == 0) {
2574 free_token(token);
Tom Zanussi5205aec2012-04-06 00:47:58 +02002575 is_flag_field = 1;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002576 return process_flags(event, arg, tok);
2577 }
2578 if (strcmp(token, "__print_symbolic") == 0) {
2579 free_token(token);
Tom Zanussi5205aec2012-04-06 00:47:58 +02002580 is_symbolic_field = 1;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002581 return process_symbols(event, arg, tok);
2582 }
Namhyung Kime080e6f2012-06-27 09:41:41 +09002583 if (strcmp(token, "__print_hex") == 0) {
2584 free_token(token);
2585 return process_hex(event, arg, tok);
2586 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02002587 if (strcmp(token, "__get_str") == 0) {
2588 free_token(token);
2589 return process_str(event, arg, tok);
2590 }
2591 if (strcmp(token, "__get_dynamic_array") == 0) {
2592 free_token(token);
2593 return process_dynamic_array(event, arg, tok);
2594 }
2595
2596 func = find_func_handler(event->pevent, token);
2597 if (func) {
2598 free_token(token);
2599 return process_func_handler(event, func, arg, tok);
2600 }
2601
2602 do_warning("function %s not defined", token);
2603 free_token(token);
2604 return EVENT_ERROR;
2605}
2606
2607static enum event_type
2608process_arg_token(struct event_format *event, struct print_arg *arg,
2609 char **tok, enum event_type type)
2610{
2611 char *token;
2612 char *atom;
2613
2614 token = *tok;
2615
2616 switch (type) {
2617 case EVENT_ITEM:
2618 if (strcmp(token, "REC") == 0) {
2619 free_token(token);
2620 type = process_entry(event, arg, &token);
2621 break;
2622 }
2623 atom = token;
2624 /* test the next token */
2625 type = read_token_item(&token);
2626
2627 /*
2628 * If the next token is a parenthesis, then this
2629 * is a function.
2630 */
2631 if (type == EVENT_DELIM && strcmp(token, "(") == 0) {
2632 free_token(token);
2633 token = NULL;
2634 /* this will free atom. */
2635 type = process_function(event, arg, atom, &token);
2636 break;
2637 }
2638 /* atoms can be more than one token long */
2639 while (type == EVENT_ITEM) {
Namhyung Kimd2864472012-04-09 11:54:33 +09002640 char *new_atom;
2641 new_atom = realloc(atom,
2642 strlen(atom) + strlen(token) + 2);
2643 if (!new_atom) {
2644 free(atom);
2645 *tok = NULL;
2646 free_token(token);
2647 return EVENT_ERROR;
2648 }
2649 atom = new_atom;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002650 strcat(atom, " ");
2651 strcat(atom, token);
2652 free_token(token);
2653 type = read_token_item(&token);
2654 }
2655
2656 arg->type = PRINT_ATOM;
2657 arg->atom.atom = atom;
2658 break;
2659
2660 case EVENT_DQUOTE:
2661 case EVENT_SQUOTE:
2662 arg->type = PRINT_ATOM;
2663 arg->atom.atom = token;
2664 type = read_token_item(&token);
2665 break;
2666 case EVENT_DELIM:
2667 if (strcmp(token, "(") == 0) {
2668 free_token(token);
2669 type = process_paren(event, arg, &token);
2670 break;
2671 }
2672 case EVENT_OP:
2673 /* handle single ops */
2674 arg->type = PRINT_OP;
2675 arg->op.op = token;
2676 arg->op.left = NULL;
2677 type = process_op(event, arg, &token);
2678
2679 /* On error, the op is freed */
2680 if (type == EVENT_ERROR)
2681 arg->op.op = NULL;
2682
2683 /* return error type if errored */
2684 break;
2685
2686 case EVENT_ERROR ... EVENT_NEWLINE:
2687 default:
2688 die("unexpected type %d", type);
2689 }
2690 *tok = token;
2691
2692 return type;
2693}
2694
2695static int event_read_print_args(struct event_format *event, struct print_arg **list)
2696{
2697 enum event_type type = EVENT_ERROR;
2698 struct print_arg *arg;
2699 char *token;
2700 int args = 0;
2701
2702 do {
2703 if (type == EVENT_NEWLINE) {
2704 type = read_token_item(&token);
2705 continue;
2706 }
2707
2708 arg = alloc_arg();
2709
2710 type = process_arg(event, arg, &token);
2711
2712 if (type == EVENT_ERROR) {
2713 free_token(token);
2714 free_arg(arg);
2715 return -1;
2716 }
2717
2718 *list = arg;
2719 args++;
2720
2721 if (type == EVENT_OP) {
2722 type = process_op(event, arg, &token);
2723 free_token(token);
2724 if (type == EVENT_ERROR) {
2725 *list = NULL;
2726 free_arg(arg);
2727 return -1;
2728 }
2729 list = &arg->next;
2730 continue;
2731 }
2732
2733 if (type == EVENT_DELIM && strcmp(token, ",") == 0) {
2734 free_token(token);
2735 *list = arg;
2736 list = &arg->next;
2737 continue;
2738 }
2739 break;
2740 } while (type != EVENT_NONE);
2741
2742 if (type != EVENT_NONE && type != EVENT_ERROR)
2743 free_token(token);
2744
2745 return args;
2746}
2747
2748static int event_read_print(struct event_format *event)
2749{
2750 enum event_type type;
2751 char *token;
2752 int ret;
2753
2754 if (read_expected_item(EVENT_ITEM, "print") < 0)
2755 return -1;
2756
2757 if (read_expected(EVENT_ITEM, "fmt") < 0)
2758 return -1;
2759
2760 if (read_expected(EVENT_OP, ":") < 0)
2761 return -1;
2762
2763 if (read_expect_type(EVENT_DQUOTE, &token) < 0)
2764 goto fail;
2765
2766 concat:
2767 event->print_fmt.format = token;
2768 event->print_fmt.args = NULL;
2769
2770 /* ok to have no arg */
2771 type = read_token_item(&token);
2772
2773 if (type == EVENT_NONE)
2774 return 0;
2775
2776 /* Handle concatenation of print lines */
2777 if (type == EVENT_DQUOTE) {
2778 char *cat;
2779
2780 cat = malloc_or_die(strlen(event->print_fmt.format) +
2781 strlen(token) + 1);
2782 strcpy(cat, event->print_fmt.format);
2783 strcat(cat, token);
2784 free_token(token);
2785 free_token(event->print_fmt.format);
2786 event->print_fmt.format = NULL;
2787 token = cat;
2788 goto concat;
2789 }
2790
2791 if (test_type_token(type, token, EVENT_DELIM, ","))
2792 goto fail;
2793
2794 free_token(token);
2795
2796 ret = event_read_print_args(event, &event->print_fmt.args);
2797 if (ret < 0)
2798 return -1;
2799
2800 return ret;
2801
2802 fail:
2803 free_token(token);
2804 return -1;
2805}
2806
2807/**
2808 * pevent_find_common_field - return a common field by event
2809 * @event: handle for the event
2810 * @name: the name of the common field to return
2811 *
2812 * Returns a common field from the event by the given @name.
2813 * This only searchs the common fields and not all field.
2814 */
2815struct format_field *
2816pevent_find_common_field(struct event_format *event, const char *name)
2817{
2818 struct format_field *format;
2819
2820 for (format = event->format.common_fields;
2821 format; format = format->next) {
2822 if (strcmp(format->name, name) == 0)
2823 break;
2824 }
2825
2826 return format;
2827}
2828
2829/**
2830 * pevent_find_field - find a non-common field
2831 * @event: handle for the event
2832 * @name: the name of the non-common field
2833 *
2834 * Returns a non-common field by the given @name.
2835 * This does not search common fields.
2836 */
2837struct format_field *
2838pevent_find_field(struct event_format *event, const char *name)
2839{
2840 struct format_field *format;
2841
2842 for (format = event->format.fields;
2843 format; format = format->next) {
2844 if (strcmp(format->name, name) == 0)
2845 break;
2846 }
2847
2848 return format;
2849}
2850
2851/**
2852 * pevent_find_any_field - find any field by name
2853 * @event: handle for the event
2854 * @name: the name of the field
2855 *
2856 * Returns a field by the given @name.
2857 * This searchs the common field names first, then
2858 * the non-common ones if a common one was not found.
2859 */
2860struct format_field *
2861pevent_find_any_field(struct event_format *event, const char *name)
2862{
2863 struct format_field *format;
2864
2865 format = pevent_find_common_field(event, name);
2866 if (format)
2867 return format;
2868 return pevent_find_field(event, name);
2869}
2870
2871/**
2872 * pevent_read_number - read a number from data
2873 * @pevent: handle for the pevent
2874 * @ptr: the raw data
2875 * @size: the size of the data that holds the number
2876 *
2877 * Returns the number (converted to host) from the
2878 * raw data.
2879 */
2880unsigned long long pevent_read_number(struct pevent *pevent,
2881 const void *ptr, int size)
2882{
2883 switch (size) {
2884 case 1:
2885 return *(unsigned char *)ptr;
2886 case 2:
2887 return data2host2(pevent, ptr);
2888 case 4:
2889 return data2host4(pevent, ptr);
2890 case 8:
2891 return data2host8(pevent, ptr);
2892 default:
2893 /* BUG! */
2894 return 0;
2895 }
2896}
2897
2898/**
2899 * pevent_read_number_field - read a number from data
2900 * @field: a handle to the field
2901 * @data: the raw data to read
2902 * @value: the value to place the number in
2903 *
2904 * Reads raw data according to a field offset and size,
2905 * and translates it into @value.
2906 *
2907 * Returns 0 on success, -1 otherwise.
2908 */
2909int pevent_read_number_field(struct format_field *field, const void *data,
2910 unsigned long long *value)
2911{
2912 if (!field)
2913 return -1;
2914 switch (field->size) {
2915 case 1:
2916 case 2:
2917 case 4:
2918 case 8:
2919 *value = pevent_read_number(field->event->pevent,
2920 data + field->offset, field->size);
2921 return 0;
2922 default:
2923 return -1;
2924 }
2925}
2926
2927static int get_common_info(struct pevent *pevent,
2928 const char *type, int *offset, int *size)
2929{
2930 struct event_format *event;
2931 struct format_field *field;
2932
2933 /*
2934 * All events should have the same common elements.
2935 * Pick any event to find where the type is;
2936 */
2937 if (!pevent->events)
2938 die("no event_list!");
2939
2940 event = pevent->events[0];
2941 field = pevent_find_common_field(event, type);
2942 if (!field)
Steven Rostedt0866a972012-05-22 14:52:40 +09002943 return -1;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002944
2945 *offset = field->offset;
2946 *size = field->size;
2947
2948 return 0;
2949}
2950
2951static int __parse_common(struct pevent *pevent, void *data,
2952 int *size, int *offset, const char *name)
2953{
2954 int ret;
2955
2956 if (!*size) {
2957 ret = get_common_info(pevent, name, offset, size);
2958 if (ret < 0)
2959 return ret;
2960 }
2961 return pevent_read_number(pevent, data + *offset, *size);
2962}
2963
2964static int trace_parse_common_type(struct pevent *pevent, void *data)
2965{
2966 return __parse_common(pevent, data,
2967 &pevent->type_size, &pevent->type_offset,
2968 "common_type");
2969}
2970
2971static int parse_common_pid(struct pevent *pevent, void *data)
2972{
2973 return __parse_common(pevent, data,
2974 &pevent->pid_size, &pevent->pid_offset,
2975 "common_pid");
2976}
2977
2978static int parse_common_pc(struct pevent *pevent, void *data)
2979{
2980 return __parse_common(pevent, data,
2981 &pevent->pc_size, &pevent->pc_offset,
2982 "common_preempt_count");
2983}
2984
2985static int parse_common_flags(struct pevent *pevent, void *data)
2986{
2987 return __parse_common(pevent, data,
2988 &pevent->flags_size, &pevent->flags_offset,
2989 "common_flags");
2990}
2991
2992static int parse_common_lock_depth(struct pevent *pevent, void *data)
2993{
Steven Rostedt0866a972012-05-22 14:52:40 +09002994 return __parse_common(pevent, data,
2995 &pevent->ld_size, &pevent->ld_offset,
2996 "common_lock_depth");
2997}
Steven Rostedtf7d82352012-04-06 00:47:53 +02002998
Steven Rostedt0866a972012-05-22 14:52:40 +09002999static int parse_common_migrate_disable(struct pevent *pevent, void *data)
3000{
3001 return __parse_common(pevent, data,
3002 &pevent->ld_size, &pevent->ld_offset,
3003 "common_migrate_disable");
Steven Rostedtf7d82352012-04-06 00:47:53 +02003004}
3005
3006static int events_id_cmp(const void *a, const void *b);
3007
3008/**
3009 * pevent_find_event - find an event by given id
3010 * @pevent: a handle to the pevent
3011 * @id: the id of the event
3012 *
3013 * Returns an event that has a given @id.
3014 */
3015struct event_format *pevent_find_event(struct pevent *pevent, int id)
3016{
3017 struct event_format **eventptr;
3018 struct event_format key;
3019 struct event_format *pkey = &key;
3020
3021 /* Check cache first */
3022 if (pevent->last_event && pevent->last_event->id == id)
3023 return pevent->last_event;
3024
3025 key.id = id;
3026
3027 eventptr = bsearch(&pkey, pevent->events, pevent->nr_events,
3028 sizeof(*pevent->events), events_id_cmp);
3029
3030 if (eventptr) {
3031 pevent->last_event = *eventptr;
3032 return *eventptr;
3033 }
3034
3035 return NULL;
3036}
3037
3038/**
3039 * pevent_find_event_by_name - find an event by given name
3040 * @pevent: a handle to the pevent
3041 * @sys: the system name to search for
3042 * @name: the name of the event to search for
3043 *
3044 * This returns an event with a given @name and under the system
3045 * @sys. If @sys is NULL the first event with @name is returned.
3046 */
3047struct event_format *
3048pevent_find_event_by_name(struct pevent *pevent,
3049 const char *sys, const char *name)
3050{
3051 struct event_format *event;
3052 int i;
3053
3054 if (pevent->last_event &&
3055 strcmp(pevent->last_event->name, name) == 0 &&
3056 (!sys || strcmp(pevent->last_event->system, sys) == 0))
3057 return pevent->last_event;
3058
3059 for (i = 0; i < pevent->nr_events; i++) {
3060 event = pevent->events[i];
3061 if (strcmp(event->name, name) == 0) {
3062 if (!sys)
3063 break;
3064 if (strcmp(event->system, sys) == 0)
3065 break;
3066 }
3067 }
3068 if (i == pevent->nr_events)
3069 event = NULL;
3070
3071 pevent->last_event = event;
3072 return event;
3073}
3074
3075static unsigned long long
3076eval_num_arg(void *data, int size, struct event_format *event, struct print_arg *arg)
3077{
3078 struct pevent *pevent = event->pevent;
3079 unsigned long long val = 0;
3080 unsigned long long left, right;
3081 struct print_arg *typearg = NULL;
3082 struct print_arg *larg;
3083 unsigned long offset;
3084 unsigned int field_size;
3085
3086 switch (arg->type) {
3087 case PRINT_NULL:
3088 /* ?? */
3089 return 0;
3090 case PRINT_ATOM:
3091 return strtoull(arg->atom.atom, NULL, 0);
3092 case PRINT_FIELD:
3093 if (!arg->field.field) {
3094 arg->field.field = pevent_find_any_field(event, arg->field.name);
3095 if (!arg->field.field)
3096 die("field %s not found", arg->field.name);
3097 }
3098 /* must be a number */
3099 val = pevent_read_number(pevent, data + arg->field.field->offset,
3100 arg->field.field->size);
3101 break;
3102 case PRINT_FLAGS:
3103 case PRINT_SYMBOL:
Namhyung Kime080e6f2012-06-27 09:41:41 +09003104 case PRINT_HEX:
Steven Rostedtf7d82352012-04-06 00:47:53 +02003105 break;
3106 case PRINT_TYPE:
3107 val = eval_num_arg(data, size, event, arg->typecast.item);
3108 return eval_type(val, arg, 0);
3109 case PRINT_STRING:
3110 case PRINT_BSTRING:
3111 return 0;
3112 case PRINT_FUNC: {
3113 struct trace_seq s;
3114 trace_seq_init(&s);
3115 val = process_defined_func(&s, data, size, event, arg);
3116 trace_seq_destroy(&s);
3117 return val;
3118 }
3119 case PRINT_OP:
3120 if (strcmp(arg->op.op, "[") == 0) {
3121 /*
3122 * Arrays are special, since we don't want
3123 * to read the arg as is.
3124 */
3125 right = eval_num_arg(data, size, event, arg->op.right);
3126
3127 /* handle typecasts */
3128 larg = arg->op.left;
3129 while (larg->type == PRINT_TYPE) {
3130 if (!typearg)
3131 typearg = larg;
3132 larg = larg->typecast.item;
3133 }
3134
3135 /* Default to long size */
3136 field_size = pevent->long_size;
3137
3138 switch (larg->type) {
3139 case PRINT_DYNAMIC_ARRAY:
3140 offset = pevent_read_number(pevent,
3141 data + larg->dynarray.field->offset,
3142 larg->dynarray.field->size);
3143 if (larg->dynarray.field->elementsize)
3144 field_size = larg->dynarray.field->elementsize;
3145 /*
3146 * The actual length of the dynamic array is stored
3147 * in the top half of the field, and the offset
3148 * is in the bottom half of the 32 bit field.
3149 */
3150 offset &= 0xffff;
3151 offset += right;
3152 break;
3153 case PRINT_FIELD:
3154 if (!larg->field.field) {
3155 larg->field.field =
3156 pevent_find_any_field(event, larg->field.name);
3157 if (!larg->field.field)
3158 die("field %s not found", larg->field.name);
3159 }
3160 field_size = larg->field.field->elementsize;
3161 offset = larg->field.field->offset +
3162 right * larg->field.field->elementsize;
3163 break;
3164 default:
3165 goto default_op; /* oops, all bets off */
3166 }
3167 val = pevent_read_number(pevent,
3168 data + offset, field_size);
3169 if (typearg)
3170 val = eval_type(val, typearg, 1);
3171 break;
3172 } else if (strcmp(arg->op.op, "?") == 0) {
3173 left = eval_num_arg(data, size, event, arg->op.left);
3174 arg = arg->op.right;
3175 if (left)
3176 val = eval_num_arg(data, size, event, arg->op.left);
3177 else
3178 val = eval_num_arg(data, size, event, arg->op.right);
3179 break;
3180 }
3181 default_op:
3182 left = eval_num_arg(data, size, event, arg->op.left);
3183 right = eval_num_arg(data, size, event, arg->op.right);
3184 switch (arg->op.op[0]) {
3185 case '!':
3186 switch (arg->op.op[1]) {
3187 case 0:
3188 val = !right;
3189 break;
3190 case '=':
3191 val = left != right;
3192 break;
3193 default:
3194 die("unknown op '%s'", arg->op.op);
3195 }
3196 break;
3197 case '~':
3198 val = ~right;
3199 break;
3200 case '|':
3201 if (arg->op.op[1])
3202 val = left || right;
3203 else
3204 val = left | right;
3205 break;
3206 case '&':
3207 if (arg->op.op[1])
3208 val = left && right;
3209 else
3210 val = left & right;
3211 break;
3212 case '<':
3213 switch (arg->op.op[1]) {
3214 case 0:
3215 val = left < right;
3216 break;
3217 case '<':
3218 val = left << right;
3219 break;
3220 case '=':
3221 val = left <= right;
3222 break;
3223 default:
3224 die("unknown op '%s'", arg->op.op);
3225 }
3226 break;
3227 case '>':
3228 switch (arg->op.op[1]) {
3229 case 0:
3230 val = left > right;
3231 break;
3232 case '>':
3233 val = left >> right;
3234 break;
3235 case '=':
3236 val = left >= right;
3237 break;
3238 default:
3239 die("unknown op '%s'", arg->op.op);
3240 }
3241 break;
3242 case '=':
3243 if (arg->op.op[1] != '=')
3244 die("unknown op '%s'", arg->op.op);
3245 val = left == right;
3246 break;
3247 case '-':
3248 val = left - right;
3249 break;
3250 case '+':
3251 val = left + right;
3252 break;
Steven Rostedt2e7a5fc2012-04-06 00:48:04 +02003253 case '/':
3254 val = left / right;
3255 break;
3256 case '*':
3257 val = left * right;
3258 break;
Steven Rostedtf7d82352012-04-06 00:47:53 +02003259 default:
3260 die("unknown op '%s'", arg->op.op);
3261 }
3262 break;
3263 default: /* not sure what to do there */
3264 return 0;
3265 }
3266 return val;
3267}
3268
3269struct flag {
3270 const char *name;
3271 unsigned long long value;
3272};
3273
3274static const struct flag flags[] = {
3275 { "HI_SOFTIRQ", 0 },
3276 { "TIMER_SOFTIRQ", 1 },
3277 { "NET_TX_SOFTIRQ", 2 },
3278 { "NET_RX_SOFTIRQ", 3 },
3279 { "BLOCK_SOFTIRQ", 4 },
3280 { "BLOCK_IOPOLL_SOFTIRQ", 5 },
3281 { "TASKLET_SOFTIRQ", 6 },
3282 { "SCHED_SOFTIRQ", 7 },
3283 { "HRTIMER_SOFTIRQ", 8 },
3284 { "RCU_SOFTIRQ", 9 },
3285
3286 { "HRTIMER_NORESTART", 0 },
3287 { "HRTIMER_RESTART", 1 },
3288};
3289
3290static unsigned long long eval_flag(const char *flag)
3291{
3292 int i;
3293
3294 /*
3295 * Some flags in the format files do not get converted.
3296 * If the flag is not numeric, see if it is something that
3297 * we already know about.
3298 */
3299 if (isdigit(flag[0]))
3300 return strtoull(flag, NULL, 0);
3301
3302 for (i = 0; i < (int)(sizeof(flags)/sizeof(flags[0])); i++)
3303 if (strcmp(flags[i].name, flag) == 0)
3304 return flags[i].value;
3305
3306 return 0;
3307}
3308
3309static void print_str_to_seq(struct trace_seq *s, const char *format,
3310 int len_arg, const char *str)
3311{
3312 if (len_arg >= 0)
3313 trace_seq_printf(s, format, len_arg, str);
3314 else
3315 trace_seq_printf(s, format, str);
3316}
3317
3318static void print_str_arg(struct trace_seq *s, void *data, int size,
3319 struct event_format *event, const char *format,
3320 int len_arg, struct print_arg *arg)
3321{
3322 struct pevent *pevent = event->pevent;
3323 struct print_flag_sym *flag;
Namhyung Kimb7008072012-06-27 09:41:40 +09003324 struct format_field *field;
Steven Rostedtf7d82352012-04-06 00:47:53 +02003325 unsigned long long val, fval;
3326 unsigned long addr;
3327 char *str;
Namhyung Kime080e6f2012-06-27 09:41:41 +09003328 unsigned char *hex;
Steven Rostedtf7d82352012-04-06 00:47:53 +02003329 int print;
Namhyung Kime080e6f2012-06-27 09:41:41 +09003330 int i, len;
Steven Rostedtf7d82352012-04-06 00:47:53 +02003331
3332 switch (arg->type) {
3333 case PRINT_NULL:
3334 /* ?? */
3335 return;
3336 case PRINT_ATOM:
3337 print_str_to_seq(s, format, len_arg, arg->atom.atom);
3338 return;
3339 case PRINT_FIELD:
Namhyung Kimb7008072012-06-27 09:41:40 +09003340 field = arg->field.field;
3341 if (!field) {
3342 field = pevent_find_any_field(event, arg->field.name);
3343 if (!field)
Steven Rostedtf7d82352012-04-06 00:47:53 +02003344 die("field %s not found", arg->field.name);
Namhyung Kimb7008072012-06-27 09:41:40 +09003345 arg->field.field = field;
Steven Rostedtf7d82352012-04-06 00:47:53 +02003346 }
3347 /* Zero sized fields, mean the rest of the data */
Namhyung Kimb7008072012-06-27 09:41:40 +09003348 len = field->size ? : size - field->offset;
Steven Rostedtf7d82352012-04-06 00:47:53 +02003349
3350 /*
3351 * Some events pass in pointers. If this is not an array
3352 * and the size is the same as long_size, assume that it
3353 * is a pointer.
3354 */
Namhyung Kimb7008072012-06-27 09:41:40 +09003355 if (!(field->flags & FIELD_IS_ARRAY) &&
3356 field->size == pevent->long_size) {
3357 addr = *(unsigned long *)(data + field->offset);
Steven Rostedtf7d82352012-04-06 00:47:53 +02003358 trace_seq_printf(s, "%lx", addr);
3359 break;
3360 }
3361 str = malloc_or_die(len + 1);
Namhyung Kimb7008072012-06-27 09:41:40 +09003362 memcpy(str, data + field->offset, len);
Steven Rostedtf7d82352012-04-06 00:47:53 +02003363 str[len] = 0;
3364 print_str_to_seq(s, format, len_arg, str);
3365 free(str);
3366 break;
3367 case PRINT_FLAGS:
3368 val = eval_num_arg(data, size, event, arg->flags.field);
3369 print = 0;
3370 for (flag = arg->flags.flags; flag; flag = flag->next) {
3371 fval = eval_flag(flag->value);
3372 if (!val && !fval) {
3373 print_str_to_seq(s, format, len_arg, flag->str);
3374 break;
3375 }
3376 if (fval && (val & fval) == fval) {
3377 if (print && arg->flags.delim)
3378 trace_seq_puts(s, arg->flags.delim);
3379 print_str_to_seq(s, format, len_arg, flag->str);
3380 print = 1;
3381 val &= ~fval;
3382 }
3383 }
3384 break;
3385 case PRINT_SYMBOL:
3386 val = eval_num_arg(data, size, event, arg->symbol.field);
3387 for (flag = arg->symbol.symbols; flag; flag = flag->next) {
3388 fval = eval_flag(flag->value);
3389 if (val == fval) {
3390 print_str_to_seq(s, format, len_arg, flag->str);
3391 break;
3392 }
3393 }
3394 break;
Namhyung Kime080e6f2012-06-27 09:41:41 +09003395 case PRINT_HEX:
3396 field = arg->hex.field->field.field;
3397 if (!field) {
3398 str = arg->hex.field->field.name;
3399 field = pevent_find_any_field(event, str);
3400 if (!field)
3401 die("field %s not found", str);
3402 arg->hex.field->field.field = field;
3403 }
3404 hex = data + field->offset;
3405 len = eval_num_arg(data, size, event, arg->hex.size);
3406 for (i = 0; i < len; i++) {
3407 if (i)
3408 trace_seq_putc(s, ' ');
3409 trace_seq_printf(s, "%02x", hex[i]);
3410 }
3411 break;
Steven Rostedtf7d82352012-04-06 00:47:53 +02003412
3413 case PRINT_TYPE:
3414 break;
3415 case PRINT_STRING: {
3416 int str_offset;
3417
3418 if (arg->string.offset == -1) {
3419 struct format_field *f;
3420
3421 f = pevent_find_any_field(event, arg->string.string);
3422 arg->string.offset = f->offset;
3423 }
3424 str_offset = data2host4(pevent, data + arg->string.offset);
3425 str_offset &= 0xffff;
3426 print_str_to_seq(s, format, len_arg, ((char *)data) + str_offset);
3427 break;
3428 }
3429 case PRINT_BSTRING:
Steven Rostedtc2e6dc22011-11-15 18:47:48 -05003430 print_str_to_seq(s, format, len_arg, arg->string.string);
Steven Rostedtf7d82352012-04-06 00:47:53 +02003431 break;
3432 case PRINT_OP:
3433 /*
3434 * The only op for string should be ? :
3435 */
3436 if (arg->op.op[0] != '?')
3437 return;
3438 val = eval_num_arg(data, size, event, arg->op.left);
3439 if (val)
3440 print_str_arg(s, data, size, event,
3441 format, len_arg, arg->op.right->op.left);
3442 else
3443 print_str_arg(s, data, size, event,
3444 format, len_arg, arg->op.right->op.right);
3445 break;
3446 case PRINT_FUNC:
3447 process_defined_func(s, data, size, event, arg);
3448 break;
3449 default:
3450 /* well... */
3451 break;
3452 }
3453}
3454
3455static unsigned long long
3456process_defined_func(struct trace_seq *s, void *data, int size,
3457 struct event_format *event, struct print_arg *arg)
3458{
3459 struct pevent_function_handler *func_handle = arg->func.func;
3460 struct pevent_func_params *param;
3461 unsigned long long *args;
3462 unsigned long long ret;
3463 struct print_arg *farg;
3464 struct trace_seq str;
3465 struct save_str {
3466 struct save_str *next;
3467 char *str;
3468 } *strings = NULL, *string;
3469 int i;
3470
3471 if (!func_handle->nr_args) {
3472 ret = (*func_handle->func)(s, NULL);
3473 goto out;
3474 }
3475
3476 farg = arg->func.args;
3477 param = func_handle->params;
3478
3479 args = malloc_or_die(sizeof(*args) * func_handle->nr_args);
3480 for (i = 0; i < func_handle->nr_args; i++) {
3481 switch (param->type) {
3482 case PEVENT_FUNC_ARG_INT:
3483 case PEVENT_FUNC_ARG_LONG:
3484 case PEVENT_FUNC_ARG_PTR:
3485 args[i] = eval_num_arg(data, size, event, farg);
3486 break;
3487 case PEVENT_FUNC_ARG_STRING:
3488 trace_seq_init(&str);
3489 print_str_arg(&str, data, size, event, "%s", -1, farg);
3490 trace_seq_terminate(&str);
3491 string = malloc_or_die(sizeof(*string));
3492 string->next = strings;
3493 string->str = strdup(str.buffer);
Namhyung Kimca638582012-04-09 11:54:31 +09003494 if (!string->str)
3495 die("malloc str");
3496
Robert Richter0cf26012012-08-07 19:43:14 +02003497 args[i] = (uintptr_t)string->str;
Steven Rostedtf7d82352012-04-06 00:47:53 +02003498 strings = string;
3499 trace_seq_destroy(&str);
3500 break;
3501 default:
3502 /*
3503 * Something went totally wrong, this is not
3504 * an input error, something in this code broke.
3505 */
3506 die("Unexpected end of arguments\n");
3507 break;
3508 }
3509 farg = farg->next;
Namhyung Kim21c69e72012-05-23 11:36:51 +09003510 param = param->next;
Steven Rostedtf7d82352012-04-06 00:47:53 +02003511 }
3512
3513 ret = (*func_handle->func)(s, args);
3514 free(args);
3515 while (strings) {
3516 string = strings;
3517 strings = string->next;
3518 free(string->str);
3519 free(string);
3520 }
3521
3522 out:
3523 /* TBD : handle return type here */
3524 return ret;
3525}
3526
3527static struct print_arg *make_bprint_args(char *fmt, void *data, int size, struct event_format *event)
3528{
3529 struct pevent *pevent = event->pevent;
3530 struct format_field *field, *ip_field;
3531 struct print_arg *args, *arg, **next;
3532 unsigned long long ip, val;
3533 char *ptr;
3534 void *bptr;
Steven Rostedtc2e6dc22011-11-15 18:47:48 -05003535 int vsize;
Steven Rostedtf7d82352012-04-06 00:47:53 +02003536
3537 field = pevent->bprint_buf_field;
3538 ip_field = pevent->bprint_ip_field;
3539
3540 if (!field) {
3541 field = pevent_find_field(event, "buf");
3542 if (!field)
3543 die("can't find buffer field for binary printk");
3544 ip_field = pevent_find_field(event, "ip");
3545 if (!ip_field)
3546 die("can't find ip field for binary printk");
3547 pevent->bprint_buf_field = field;
3548 pevent->bprint_ip_field = ip_field;
3549 }
3550
3551 ip = pevent_read_number(pevent, data + ip_field->offset, ip_field->size);
3552
3553 /*
3554 * The first arg is the IP pointer.
3555 */
3556 args = alloc_arg();
3557 arg = args;
3558 arg->next = NULL;
3559 next = &arg->next;
3560
3561 arg->type = PRINT_ATOM;
3562 arg->atom.atom = malloc_or_die(32);
3563 sprintf(arg->atom.atom, "%lld", ip);
3564
3565 /* skip the first "%pf : " */
3566 for (ptr = fmt + 6, bptr = data + field->offset;
3567 bptr < data + size && *ptr; ptr++) {
3568 int ls = 0;
3569
3570 if (*ptr == '%') {
3571 process_again:
3572 ptr++;
3573 switch (*ptr) {
3574 case '%':
3575 break;
3576 case 'l':
3577 ls++;
3578 goto process_again;
3579 case 'L':
3580 ls = 2;
3581 goto process_again;
3582 case '0' ... '9':
3583 goto process_again;
Steven Rostedtc2e6dc22011-11-15 18:47:48 -05003584 case '.':
3585 goto process_again;
Steven Rostedtf7d82352012-04-06 00:47:53 +02003586 case 'p':
3587 ls = 1;
3588 /* fall through */
3589 case 'd':
3590 case 'u':
3591 case 'x':
3592 case 'i':
Steven Rostedtc2e6dc22011-11-15 18:47:48 -05003593 switch (ls) {
3594 case 0:
3595 vsize = 4;
3596 break;
3597 case 1:
3598 vsize = pevent->long_size;
3599 break;
3600 case 2:
3601 vsize = 8;
Peter Huewec9bbabe2012-04-24 23:19:40 +02003602 break;
Steven Rostedtc2e6dc22011-11-15 18:47:48 -05003603 default:
3604 vsize = ls; /* ? */
3605 break;
3606 }
3607 /* fall through */
3608 case '*':
3609 if (*ptr == '*')
3610 vsize = 4;
3611
Steven Rostedtf7d82352012-04-06 00:47:53 +02003612 /* the pointers are always 4 bytes aligned */
3613 bptr = (void *)(((unsigned long)bptr + 3) &
3614 ~3);
Steven Rostedtc2e6dc22011-11-15 18:47:48 -05003615 val = pevent_read_number(pevent, bptr, vsize);
3616 bptr += vsize;
Steven Rostedtf7d82352012-04-06 00:47:53 +02003617 arg = alloc_arg();
3618 arg->next = NULL;
3619 arg->type = PRINT_ATOM;
3620 arg->atom.atom = malloc_or_die(32);
3621 sprintf(arg->atom.atom, "%lld", val);
3622 *next = arg;
3623 next = &arg->next;
Steven Rostedtc2e6dc22011-11-15 18:47:48 -05003624 /*
3625 * The '*' case means that an arg is used as the length.
3626 * We need to continue to figure out for what.
3627 */
3628 if (*ptr == '*')
3629 goto process_again;
3630
Steven Rostedtf7d82352012-04-06 00:47:53 +02003631 break;
3632 case 's':
3633 arg = alloc_arg();
3634 arg->next = NULL;
3635 arg->type = PRINT_BSTRING;
3636 arg->string.string = strdup(bptr);
Namhyung Kimca638582012-04-09 11:54:31 +09003637 if (!arg->string.string)
3638 break;
Steven Rostedtf7d82352012-04-06 00:47:53 +02003639 bptr += strlen(bptr) + 1;
3640 *next = arg;
3641 next = &arg->next;
3642 default:
3643 break;
3644 }
3645 }
3646 }
3647
3648 return args;
3649}
3650
3651static void free_args(struct print_arg *args)
3652{
3653 struct print_arg *next;
3654
3655 while (args) {
3656 next = args->next;
3657
3658 free_arg(args);
3659 args = next;
3660 }
3661}
3662
3663static char *
Irina Tirdea1d037ca2012-09-11 01:15:03 +03003664get_bprint_format(void *data, int size __maybe_unused,
3665 struct event_format *event)
Steven Rostedtf7d82352012-04-06 00:47:53 +02003666{
3667 struct pevent *pevent = event->pevent;
3668 unsigned long long addr;
3669 struct format_field *field;
3670 struct printk_map *printk;
3671 char *format;
3672 char *p;
3673
3674 field = pevent->bprint_fmt_field;
3675
3676 if (!field) {
3677 field = pevent_find_field(event, "fmt");
3678 if (!field)
3679 die("can't find format field for binary printk");
3680 pevent->bprint_fmt_field = field;
3681 }
3682
3683 addr = pevent_read_number(pevent, data + field->offset, field->size);
3684
3685 printk = find_printk(pevent, addr);
3686 if (!printk) {
3687 format = malloc_or_die(45);
3688 sprintf(format, "%%pf : (NO FORMAT FOUND at %llx)\n",
3689 addr);
3690 return format;
3691 }
3692
3693 p = printk->printk;
3694 /* Remove any quotes. */
3695 if (*p == '"')
3696 p++;
3697 format = malloc_or_die(strlen(p) + 10);
3698 sprintf(format, "%s : %s", "%pf", p);
3699 /* remove ending quotes and new line since we will add one too */
3700 p = format + strlen(format) - 1;
3701 if (*p == '"')
3702 *p = 0;
3703
3704 p -= 2;
3705 if (strcmp(p, "\\n") == 0)
3706 *p = 0;
3707
3708 return format;
3709}
3710
3711static void print_mac_arg(struct trace_seq *s, int mac, void *data, int size,
3712 struct event_format *event, struct print_arg *arg)
3713{
3714 unsigned char *buf;
3715 char *fmt = "%.2x:%.2x:%.2x:%.2x:%.2x:%.2x";
3716
3717 if (arg->type == PRINT_FUNC) {
3718 process_defined_func(s, data, size, event, arg);
3719 return;
3720 }
3721
3722 if (arg->type != PRINT_FIELD) {
3723 trace_seq_printf(s, "ARG TYPE NOT FIELD BUT %d",
3724 arg->type);
3725 return;
3726 }
3727
3728 if (mac == 'm')
3729 fmt = "%.2x%.2x%.2x%.2x%.2x%.2x";
3730 if (!arg->field.field) {
3731 arg->field.field =
3732 pevent_find_any_field(event, arg->field.name);
3733 if (!arg->field.field)
3734 die("field %s not found", arg->field.name);
3735 }
3736 if (arg->field.field->size != 6) {
3737 trace_seq_printf(s, "INVALIDMAC");
3738 return;
3739 }
3740 buf = data + arg->field.field->offset;
3741 trace_seq_printf(s, fmt, buf[0], buf[1], buf[2], buf[3], buf[4], buf[5]);
3742}
3743
Namhyung Kim600da3c2012-06-22 17:10:15 +09003744static int is_printable_array(char *p, unsigned int len)
3745{
3746 unsigned int i;
3747
3748 for (i = 0; i < len && p[i]; i++)
3749 if (!isprint(p[i]))
3750 return 0;
3751 return 1;
3752}
3753
Steven Rostedtf7d82352012-04-06 00:47:53 +02003754static void print_event_fields(struct trace_seq *s, void *data, int size,
3755 struct event_format *event)
3756{
3757 struct format_field *field;
3758 unsigned long long val;
3759 unsigned int offset, len, i;
3760
3761 field = event->format.fields;
3762 while (field) {
3763 trace_seq_printf(s, " %s=", field->name);
3764 if (field->flags & FIELD_IS_ARRAY) {
3765 offset = field->offset;
3766 len = field->size;
3767 if (field->flags & FIELD_IS_DYNAMIC) {
3768 val = pevent_read_number(event->pevent, data + offset, len);
3769 offset = val;
3770 len = offset >> 16;
3771 offset &= 0xffff;
3772 }
Namhyung Kim600da3c2012-06-22 17:10:15 +09003773 if (field->flags & FIELD_IS_STRING &&
3774 is_printable_array(data + offset, len)) {
Steven Rostedtf7d82352012-04-06 00:47:53 +02003775 trace_seq_printf(s, "%s", (char *)data + offset);
3776 } else {
3777 trace_seq_puts(s, "ARRAY[");
3778 for (i = 0; i < len; i++) {
3779 if (i)
3780 trace_seq_puts(s, ", ");
3781 trace_seq_printf(s, "%02x",
3782 *((unsigned char *)data + offset + i));
3783 }
3784 trace_seq_putc(s, ']');
Namhyung Kim600da3c2012-06-22 17:10:15 +09003785 field->flags &= ~FIELD_IS_STRING;
Steven Rostedtf7d82352012-04-06 00:47:53 +02003786 }
3787 } else {
3788 val = pevent_read_number(event->pevent, data + field->offset,
3789 field->size);
3790 if (field->flags & FIELD_IS_POINTER) {
3791 trace_seq_printf(s, "0x%llx", val);
3792 } else if (field->flags & FIELD_IS_SIGNED) {
3793 switch (field->size) {
3794 case 4:
3795 /*
3796 * If field is long then print it in hex.
3797 * A long usually stores pointers.
3798 */
3799 if (field->flags & FIELD_IS_LONG)
3800 trace_seq_printf(s, "0x%x", (int)val);
3801 else
3802 trace_seq_printf(s, "%d", (int)val);
3803 break;
3804 case 2:
3805 trace_seq_printf(s, "%2d", (short)val);
3806 break;
3807 case 1:
3808 trace_seq_printf(s, "%1d", (char)val);
3809 break;
3810 default:
3811 trace_seq_printf(s, "%lld", val);
3812 }
3813 } else {
3814 if (field->flags & FIELD_IS_LONG)
3815 trace_seq_printf(s, "0x%llx", val);
3816 else
3817 trace_seq_printf(s, "%llu", val);
3818 }
3819 }
3820 field = field->next;
3821 }
3822}
3823
3824static void pretty_print(struct trace_seq *s, void *data, int size, struct event_format *event)
3825{
3826 struct pevent *pevent = event->pevent;
3827 struct print_fmt *print_fmt = &event->print_fmt;
3828 struct print_arg *arg = print_fmt->args;
3829 struct print_arg *args = NULL;
3830 const char *ptr = print_fmt->format;
3831 unsigned long long val;
3832 struct func_map *func;
3833 const char *saveptr;
3834 char *bprint_fmt = NULL;
3835 char format[32];
3836 int show_func;
3837 int len_as_arg;
3838 int len_arg;
3839 int len;
3840 int ls;
3841
3842 if (event->flags & EVENT_FL_FAILED) {
3843 trace_seq_printf(s, "[FAILED TO PARSE]");
3844 print_event_fields(s, data, size, event);
3845 return;
3846 }
3847
3848 if (event->flags & EVENT_FL_ISBPRINT) {
3849 bprint_fmt = get_bprint_format(data, size, event);
3850 args = make_bprint_args(bprint_fmt, data, size, event);
3851 arg = args;
3852 ptr = bprint_fmt;
3853 }
3854
3855 for (; *ptr; ptr++) {
3856 ls = 0;
3857 if (*ptr == '\\') {
3858 ptr++;
3859 switch (*ptr) {
3860 case 'n':
3861 trace_seq_putc(s, '\n');
3862 break;
3863 case 't':
3864 trace_seq_putc(s, '\t');
3865 break;
3866 case 'r':
3867 trace_seq_putc(s, '\r');
3868 break;
3869 case '\\':
3870 trace_seq_putc(s, '\\');
3871 break;
3872 default:
3873 trace_seq_putc(s, *ptr);
3874 break;
3875 }
3876
3877 } else if (*ptr == '%') {
3878 saveptr = ptr;
3879 show_func = 0;
3880 len_as_arg = 0;
3881 cont_process:
3882 ptr++;
3883 switch (*ptr) {
3884 case '%':
3885 trace_seq_putc(s, '%');
3886 break;
3887 case '#':
3888 /* FIXME: need to handle properly */
3889 goto cont_process;
3890 case 'h':
3891 ls--;
3892 goto cont_process;
3893 case 'l':
3894 ls++;
3895 goto cont_process;
3896 case 'L':
3897 ls = 2;
3898 goto cont_process;
3899 case '*':
3900 /* The argument is the length. */
Namhyung Kim245c5a12012-09-07 11:49:45 +09003901 if (!arg) {
3902 do_warning("no argument match");
3903 event->flags |= EVENT_FL_FAILED;
3904 goto out_failed;
3905 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02003906 len_arg = eval_num_arg(data, size, event, arg);
3907 len_as_arg = 1;
3908 arg = arg->next;
3909 goto cont_process;
3910 case '.':
3911 case 'z':
3912 case 'Z':
3913 case '0' ... '9':
3914 goto cont_process;
3915 case 'p':
3916 if (pevent->long_size == 4)
3917 ls = 1;
3918 else
3919 ls = 2;
3920
3921 if (*(ptr+1) == 'F' ||
3922 *(ptr+1) == 'f') {
3923 ptr++;
3924 show_func = *ptr;
3925 } else if (*(ptr+1) == 'M' || *(ptr+1) == 'm') {
3926 print_mac_arg(s, *(ptr+1), data, size, event, arg);
3927 ptr++;
Steven Rostedtaaf05c72012-01-09 15:58:09 -05003928 arg = arg->next;
Steven Rostedtf7d82352012-04-06 00:47:53 +02003929 break;
3930 }
3931
3932 /* fall through */
3933 case 'd':
3934 case 'i':
3935 case 'x':
3936 case 'X':
3937 case 'u':
Namhyung Kim245c5a12012-09-07 11:49:45 +09003938 if (!arg) {
3939 do_warning("no argument match");
3940 event->flags |= EVENT_FL_FAILED;
3941 goto out_failed;
3942 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02003943
3944 len = ((unsigned long)ptr + 1) -
3945 (unsigned long)saveptr;
3946
3947 /* should never happen */
Namhyung Kim245c5a12012-09-07 11:49:45 +09003948 if (len > 31) {
3949 do_warning("bad format!");
3950 event->flags |= EVENT_FL_FAILED;
3951 len = 31;
3952 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02003953
3954 memcpy(format, saveptr, len);
3955 format[len] = 0;
3956
3957 val = eval_num_arg(data, size, event, arg);
3958 arg = arg->next;
3959
3960 if (show_func) {
3961 func = find_func(pevent, val);
3962 if (func) {
3963 trace_seq_puts(s, func->func);
3964 if (show_func == 'F')
3965 trace_seq_printf(s,
3966 "+0x%llx",
3967 val - func->addr);
3968 break;
3969 }
3970 }
Wolfgang Mauererc5b35b72012-03-22 11:18:21 +01003971 if (pevent->long_size == 8 && ls &&
3972 sizeof(long) != 8) {
Steven Rostedtf7d82352012-04-06 00:47:53 +02003973 char *p;
3974
3975 ls = 2;
3976 /* make %l into %ll */
3977 p = strchr(format, 'l');
3978 if (p)
Wolfgang Mauererc5b35b72012-03-22 11:18:21 +01003979 memmove(p+1, p, strlen(p)+1);
Steven Rostedtf7d82352012-04-06 00:47:53 +02003980 else if (strcmp(format, "%p") == 0)
3981 strcpy(format, "0x%llx");
3982 }
3983 switch (ls) {
3984 case -2:
3985 if (len_as_arg)
3986 trace_seq_printf(s, format, len_arg, (char)val);
3987 else
3988 trace_seq_printf(s, format, (char)val);
3989 break;
3990 case -1:
3991 if (len_as_arg)
3992 trace_seq_printf(s, format, len_arg, (short)val);
3993 else
3994 trace_seq_printf(s, format, (short)val);
3995 break;
3996 case 0:
3997 if (len_as_arg)
3998 trace_seq_printf(s, format, len_arg, (int)val);
3999 else
4000 trace_seq_printf(s, format, (int)val);
4001 break;
4002 case 1:
4003 if (len_as_arg)
4004 trace_seq_printf(s, format, len_arg, (long)val);
4005 else
4006 trace_seq_printf(s, format, (long)val);
4007 break;
4008 case 2:
4009 if (len_as_arg)
4010 trace_seq_printf(s, format, len_arg,
4011 (long long)val);
4012 else
4013 trace_seq_printf(s, format, (long long)val);
4014 break;
4015 default:
Namhyung Kim245c5a12012-09-07 11:49:45 +09004016 do_warning("bad count (%d)", ls);
4017 event->flags |= EVENT_FL_FAILED;
Steven Rostedtf7d82352012-04-06 00:47:53 +02004018 }
4019 break;
4020 case 's':
Namhyung Kim245c5a12012-09-07 11:49:45 +09004021 if (!arg) {
4022 do_warning("no matching argument");
4023 event->flags |= EVENT_FL_FAILED;
4024 goto out_failed;
4025 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02004026
4027 len = ((unsigned long)ptr + 1) -
4028 (unsigned long)saveptr;
4029
4030 /* should never happen */
Namhyung Kim245c5a12012-09-07 11:49:45 +09004031 if (len > 31) {
4032 do_warning("bad format!");
4033 event->flags |= EVENT_FL_FAILED;
4034 len = 31;
4035 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02004036
4037 memcpy(format, saveptr, len);
4038 format[len] = 0;
4039 if (!len_as_arg)
4040 len_arg = -1;
4041 print_str_arg(s, data, size, event,
4042 format, len_arg, arg);
4043 arg = arg->next;
4044 break;
4045 default:
4046 trace_seq_printf(s, ">%c<", *ptr);
4047
4048 }
4049 } else
4050 trace_seq_putc(s, *ptr);
4051 }
4052
Namhyung Kim245c5a12012-09-07 11:49:45 +09004053 if (event->flags & EVENT_FL_FAILED) {
4054out_failed:
4055 trace_seq_printf(s, "[FAILED TO PARSE]");
4056 }
4057
Steven Rostedtf7d82352012-04-06 00:47:53 +02004058 if (args) {
4059 free_args(args);
4060 free(bprint_fmt);
4061 }
4062}
4063
4064/**
4065 * pevent_data_lat_fmt - parse the data for the latency format
4066 * @pevent: a handle to the pevent
4067 * @s: the trace_seq to write to
Namhyung Kim16e6b8f2012-04-23 13:58:35 +09004068 * @record: the record to read from
Steven Rostedtf7d82352012-04-06 00:47:53 +02004069 *
4070 * This parses out the Latency format (interrupts disabled,
4071 * need rescheduling, in hard/soft interrupt, preempt count
4072 * and lock depth) and places it into the trace_seq.
4073 */
4074void pevent_data_lat_fmt(struct pevent *pevent,
Steven Rostedt1c698182012-04-06 00:48:06 +02004075 struct trace_seq *s, struct pevent_record *record)
Steven Rostedtf7d82352012-04-06 00:47:53 +02004076{
4077 static int check_lock_depth = 1;
Steven Rostedt0866a972012-05-22 14:52:40 +09004078 static int check_migrate_disable = 1;
Steven Rostedtf7d82352012-04-06 00:47:53 +02004079 static int lock_depth_exists;
Steven Rostedt0866a972012-05-22 14:52:40 +09004080 static int migrate_disable_exists;
Steven Rostedtf7d82352012-04-06 00:47:53 +02004081 unsigned int lat_flags;
4082 unsigned int pc;
4083 int lock_depth;
Steven Rostedt0866a972012-05-22 14:52:40 +09004084 int migrate_disable;
Steven Rostedtf7d82352012-04-06 00:47:53 +02004085 int hardirq;
4086 int softirq;
4087 void *data = record->data;
4088
4089 lat_flags = parse_common_flags(pevent, data);
4090 pc = parse_common_pc(pevent, data);
4091 /* lock_depth may not always exist */
Steven Rostedtf7d82352012-04-06 00:47:53 +02004092 if (lock_depth_exists)
4093 lock_depth = parse_common_lock_depth(pevent, data);
Steven Rostedt0866a972012-05-22 14:52:40 +09004094 else if (check_lock_depth) {
4095 lock_depth = parse_common_lock_depth(pevent, data);
4096 if (lock_depth < 0)
4097 check_lock_depth = 0;
4098 else
4099 lock_depth_exists = 1;
4100 }
4101
4102 /* migrate_disable may not always exist */
4103 if (migrate_disable_exists)
4104 migrate_disable = parse_common_migrate_disable(pevent, data);
4105 else if (check_migrate_disable) {
4106 migrate_disable = parse_common_migrate_disable(pevent, data);
4107 if (migrate_disable < 0)
4108 check_migrate_disable = 0;
4109 else
4110 migrate_disable_exists = 1;
4111 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02004112
4113 hardirq = lat_flags & TRACE_FLAG_HARDIRQ;
4114 softirq = lat_flags & TRACE_FLAG_SOFTIRQ;
4115
4116 trace_seq_printf(s, "%c%c%c",
4117 (lat_flags & TRACE_FLAG_IRQS_OFF) ? 'd' :
4118 (lat_flags & TRACE_FLAG_IRQS_NOSUPPORT) ?
4119 'X' : '.',
4120 (lat_flags & TRACE_FLAG_NEED_RESCHED) ?
4121 'N' : '.',
4122 (hardirq && softirq) ? 'H' :
4123 hardirq ? 'h' : softirq ? 's' : '.');
4124
4125 if (pc)
4126 trace_seq_printf(s, "%x", pc);
4127 else
4128 trace_seq_putc(s, '.');
4129
Steven Rostedt0866a972012-05-22 14:52:40 +09004130 if (migrate_disable_exists) {
4131 if (migrate_disable < 0)
4132 trace_seq_putc(s, '.');
4133 else
4134 trace_seq_printf(s, "%d", migrate_disable);
4135 }
4136
Steven Rostedtf7d82352012-04-06 00:47:53 +02004137 if (lock_depth_exists) {
4138 if (lock_depth < 0)
4139 trace_seq_putc(s, '.');
4140 else
4141 trace_seq_printf(s, "%d", lock_depth);
4142 }
4143
4144 trace_seq_terminate(s);
4145}
4146
4147/**
4148 * pevent_data_type - parse out the given event type
4149 * @pevent: a handle to the pevent
4150 * @rec: the record to read from
4151 *
4152 * This returns the event id from the @rec.
4153 */
Steven Rostedt1c698182012-04-06 00:48:06 +02004154int pevent_data_type(struct pevent *pevent, struct pevent_record *rec)
Steven Rostedtf7d82352012-04-06 00:47:53 +02004155{
4156 return trace_parse_common_type(pevent, rec->data);
4157}
4158
4159/**
4160 * pevent_data_event_from_type - find the event by a given type
4161 * @pevent: a handle to the pevent
4162 * @type: the type of the event.
4163 *
4164 * This returns the event form a given @type;
4165 */
4166struct event_format *pevent_data_event_from_type(struct pevent *pevent, int type)
4167{
4168 return pevent_find_event(pevent, type);
4169}
4170
4171/**
4172 * pevent_data_pid - parse the PID from raw data
4173 * @pevent: a handle to the pevent
4174 * @rec: the record to parse
4175 *
4176 * This returns the PID from a raw data.
4177 */
Steven Rostedt1c698182012-04-06 00:48:06 +02004178int pevent_data_pid(struct pevent *pevent, struct pevent_record *rec)
Steven Rostedtf7d82352012-04-06 00:47:53 +02004179{
4180 return parse_common_pid(pevent, rec->data);
4181}
4182
4183/**
4184 * pevent_data_comm_from_pid - return the command line from PID
4185 * @pevent: a handle to the pevent
4186 * @pid: the PID of the task to search for
4187 *
4188 * This returns a pointer to the command line that has the given
4189 * @pid.
4190 */
4191const char *pevent_data_comm_from_pid(struct pevent *pevent, int pid)
4192{
4193 const char *comm;
4194
4195 comm = find_cmdline(pevent, pid);
4196 return comm;
4197}
4198
4199/**
4200 * pevent_data_comm_from_pid - parse the data into the print format
4201 * @s: the trace_seq to write to
4202 * @event: the handle to the event
Namhyung Kim16e6b8f2012-04-23 13:58:35 +09004203 * @record: the record to read from
Steven Rostedtf7d82352012-04-06 00:47:53 +02004204 *
4205 * This parses the raw @data using the given @event information and
4206 * writes the print format into the trace_seq.
4207 */
4208void pevent_event_info(struct trace_seq *s, struct event_format *event,
Steven Rostedt1c698182012-04-06 00:48:06 +02004209 struct pevent_record *record)
Steven Rostedtf7d82352012-04-06 00:47:53 +02004210{
4211 int print_pretty = 1;
4212
4213 if (event->pevent->print_raw)
4214 print_event_fields(s, record->data, record->size, event);
4215 else {
4216
4217 if (event->handler)
4218 print_pretty = event->handler(s, record, event,
4219 event->context);
4220
4221 if (print_pretty)
4222 pretty_print(s, record->data, record->size, event);
4223 }
4224
4225 trace_seq_terminate(s);
4226}
4227
4228void pevent_print_event(struct pevent *pevent, struct trace_seq *s,
Steven Rostedt1c698182012-04-06 00:48:06 +02004229 struct pevent_record *record)
Steven Rostedtf7d82352012-04-06 00:47:53 +02004230{
4231 static char *spaces = " "; /* 20 spaces */
4232 struct event_format *event;
4233 unsigned long secs;
4234 unsigned long usecs;
Steven Rostedt4dc10242012-04-06 00:47:57 +02004235 unsigned long nsecs;
Steven Rostedtf7d82352012-04-06 00:47:53 +02004236 const char *comm;
4237 void *data = record->data;
4238 int type;
4239 int pid;
4240 int len;
Steven Rostedt4dc10242012-04-06 00:47:57 +02004241 int p;
Steven Rostedtf7d82352012-04-06 00:47:53 +02004242
4243 secs = record->ts / NSECS_PER_SEC;
Steven Rostedt4dc10242012-04-06 00:47:57 +02004244 nsecs = record->ts - secs * NSECS_PER_SEC;
Steven Rostedtf7d82352012-04-06 00:47:53 +02004245
4246 if (record->size < 0) {
4247 do_warning("ug! negative record size %d", record->size);
4248 return;
4249 }
4250
4251 type = trace_parse_common_type(pevent, data);
4252
4253 event = pevent_find_event(pevent, type);
4254 if (!event) {
4255 do_warning("ug! no event found for type %d", type);
4256 return;
4257 }
4258
4259 pid = parse_common_pid(pevent, data);
4260 comm = find_cmdline(pevent, pid);
4261
4262 if (pevent->latency_format) {
4263 trace_seq_printf(s, "%8.8s-%-5d %3d",
4264 comm, pid, record->cpu);
4265 pevent_data_lat_fmt(pevent, s, record);
4266 } else
4267 trace_seq_printf(s, "%16s-%-5d [%03d]", comm, pid, record->cpu);
4268
Steven Rostedt4dc10242012-04-06 00:47:57 +02004269 if (pevent->flags & PEVENT_NSEC_OUTPUT) {
4270 usecs = nsecs;
4271 p = 9;
4272 } else {
4273 usecs = (nsecs + 500) / NSECS_PER_USEC;
4274 p = 6;
4275 }
4276
4277 trace_seq_printf(s, " %5lu.%0*lu: %s: ", secs, p, usecs, event->name);
Steven Rostedtf7d82352012-04-06 00:47:53 +02004278
4279 /* Space out the event names evenly. */
4280 len = strlen(event->name);
4281 if (len < 20)
4282 trace_seq_printf(s, "%.*s", 20 - len, spaces);
4283
4284 pevent_event_info(s, event, record);
4285}
4286
4287static int events_id_cmp(const void *a, const void *b)
4288{
4289 struct event_format * const * ea = a;
4290 struct event_format * const * eb = b;
4291
4292 if ((*ea)->id < (*eb)->id)
4293 return -1;
4294
4295 if ((*ea)->id > (*eb)->id)
4296 return 1;
4297
4298 return 0;
4299}
4300
4301static int events_name_cmp(const void *a, const void *b)
4302{
4303 struct event_format * const * ea = a;
4304 struct event_format * const * eb = b;
4305 int res;
4306
4307 res = strcmp((*ea)->name, (*eb)->name);
4308 if (res)
4309 return res;
4310
4311 res = strcmp((*ea)->system, (*eb)->system);
4312 if (res)
4313 return res;
4314
4315 return events_id_cmp(a, b);
4316}
4317
4318static int events_system_cmp(const void *a, const void *b)
4319{
4320 struct event_format * const * ea = a;
4321 struct event_format * const * eb = b;
4322 int res;
4323
4324 res = strcmp((*ea)->system, (*eb)->system);
4325 if (res)
4326 return res;
4327
4328 res = strcmp((*ea)->name, (*eb)->name);
4329 if (res)
4330 return res;
4331
4332 return events_id_cmp(a, b);
4333}
4334
4335struct event_format **pevent_list_events(struct pevent *pevent, enum event_sort_type sort_type)
4336{
4337 struct event_format **events;
4338 int (*sort)(const void *a, const void *b);
4339
4340 events = pevent->sort_events;
4341
4342 if (events && pevent->last_type == sort_type)
4343 return events;
4344
4345 if (!events) {
4346 events = malloc(sizeof(*events) * (pevent->nr_events + 1));
4347 if (!events)
4348 return NULL;
4349
4350 memcpy(events, pevent->events, sizeof(*events) * pevent->nr_events);
4351 events[pevent->nr_events] = NULL;
4352
4353 pevent->sort_events = events;
4354
4355 /* the internal events are sorted by id */
4356 if (sort_type == EVENT_SORT_ID) {
4357 pevent->last_type = sort_type;
4358 return events;
4359 }
4360 }
4361
4362 switch (sort_type) {
4363 case EVENT_SORT_ID:
4364 sort = events_id_cmp;
4365 break;
4366 case EVENT_SORT_NAME:
4367 sort = events_name_cmp;
4368 break;
4369 case EVENT_SORT_SYSTEM:
4370 sort = events_system_cmp;
4371 break;
4372 default:
4373 return events;
4374 }
4375
4376 qsort(events, pevent->nr_events, sizeof(*events), sort);
4377 pevent->last_type = sort_type;
4378
4379 return events;
4380}
4381
4382static struct format_field **
4383get_event_fields(const char *type, const char *name,
4384 int count, struct format_field *list)
4385{
4386 struct format_field **fields;
4387 struct format_field *field;
4388 int i = 0;
4389
4390 fields = malloc_or_die(sizeof(*fields) * (count + 1));
4391 for (field = list; field; field = field->next) {
4392 fields[i++] = field;
4393 if (i == count + 1) {
4394 do_warning("event %s has more %s fields than specified",
4395 name, type);
4396 i--;
4397 break;
4398 }
4399 }
4400
4401 if (i != count)
4402 do_warning("event %s has less %s fields than specified",
4403 name, type);
4404
4405 fields[i] = NULL;
4406
4407 return fields;
4408}
4409
4410/**
4411 * pevent_event_common_fields - return a list of common fields for an event
4412 * @event: the event to return the common fields of.
4413 *
4414 * Returns an allocated array of fields. The last item in the array is NULL.
4415 * The array must be freed with free().
4416 */
4417struct format_field **pevent_event_common_fields(struct event_format *event)
4418{
4419 return get_event_fields("common", event->name,
4420 event->format.nr_common,
4421 event->format.common_fields);
4422}
4423
4424/**
4425 * pevent_event_fields - return a list of event specific fields for an event
4426 * @event: the event to return the fields of.
4427 *
4428 * Returns an allocated array of fields. The last item in the array is NULL.
4429 * The array must be freed with free().
4430 */
4431struct format_field **pevent_event_fields(struct event_format *event)
4432{
4433 return get_event_fields("event", event->name,
4434 event->format.nr_fields,
4435 event->format.fields);
4436}
4437
4438static void print_fields(struct trace_seq *s, struct print_flag_sym *field)
4439{
4440 trace_seq_printf(s, "{ %s, %s }", field->value, field->str);
4441 if (field->next) {
4442 trace_seq_puts(s, ", ");
4443 print_fields(s, field->next);
4444 }
4445}
4446
4447/* for debugging */
4448static void print_args(struct print_arg *args)
4449{
4450 int print_paren = 1;
4451 struct trace_seq s;
4452
4453 switch (args->type) {
4454 case PRINT_NULL:
4455 printf("null");
4456 break;
4457 case PRINT_ATOM:
4458 printf("%s", args->atom.atom);
4459 break;
4460 case PRINT_FIELD:
4461 printf("REC->%s", args->field.name);
4462 break;
4463 case PRINT_FLAGS:
4464 printf("__print_flags(");
4465 print_args(args->flags.field);
4466 printf(", %s, ", args->flags.delim);
4467 trace_seq_init(&s);
4468 print_fields(&s, args->flags.flags);
4469 trace_seq_do_printf(&s);
4470 trace_seq_destroy(&s);
4471 printf(")");
4472 break;
4473 case PRINT_SYMBOL:
4474 printf("__print_symbolic(");
4475 print_args(args->symbol.field);
4476 printf(", ");
4477 trace_seq_init(&s);
4478 print_fields(&s, args->symbol.symbols);
4479 trace_seq_do_printf(&s);
4480 trace_seq_destroy(&s);
4481 printf(")");
4482 break;
Namhyung Kime080e6f2012-06-27 09:41:41 +09004483 case PRINT_HEX:
4484 printf("__print_hex(");
4485 print_args(args->hex.field);
4486 printf(", ");
4487 print_args(args->hex.size);
4488 printf(")");
4489 break;
Steven Rostedtf7d82352012-04-06 00:47:53 +02004490 case PRINT_STRING:
4491 case PRINT_BSTRING:
4492 printf("__get_str(%s)", args->string.string);
4493 break;
4494 case PRINT_TYPE:
4495 printf("(%s)", args->typecast.type);
4496 print_args(args->typecast.item);
4497 break;
4498 case PRINT_OP:
4499 if (strcmp(args->op.op, ":") == 0)
4500 print_paren = 0;
4501 if (print_paren)
4502 printf("(");
4503 print_args(args->op.left);
4504 printf(" %s ", args->op.op);
4505 print_args(args->op.right);
4506 if (print_paren)
4507 printf(")");
4508 break;
4509 default:
4510 /* we should warn... */
4511 return;
4512 }
4513 if (args->next) {
4514 printf("\n");
4515 print_args(args->next);
4516 }
4517}
4518
4519static void parse_header_field(const char *field,
4520 int *offset, int *size, int mandatory)
4521{
4522 unsigned long long save_input_buf_ptr;
4523 unsigned long long save_input_buf_siz;
4524 char *token;
4525 int type;
4526
4527 save_input_buf_ptr = input_buf_ptr;
4528 save_input_buf_siz = input_buf_siz;
4529
4530 if (read_expected(EVENT_ITEM, "field") < 0)
4531 return;
4532 if (read_expected(EVENT_OP, ":") < 0)
4533 return;
4534
4535 /* type */
4536 if (read_expect_type(EVENT_ITEM, &token) < 0)
4537 goto fail;
4538 free_token(token);
4539
4540 /*
4541 * If this is not a mandatory field, then test it first.
4542 */
4543 if (mandatory) {
4544 if (read_expected(EVENT_ITEM, field) < 0)
4545 return;
4546 } else {
4547 if (read_expect_type(EVENT_ITEM, &token) < 0)
4548 goto fail;
4549 if (strcmp(token, field) != 0)
4550 goto discard;
4551 free_token(token);
4552 }
4553
4554 if (read_expected(EVENT_OP, ";") < 0)
4555 return;
4556 if (read_expected(EVENT_ITEM, "offset") < 0)
4557 return;
4558 if (read_expected(EVENT_OP, ":") < 0)
4559 return;
4560 if (read_expect_type(EVENT_ITEM, &token) < 0)
4561 goto fail;
4562 *offset = atoi(token);
4563 free_token(token);
4564 if (read_expected(EVENT_OP, ";") < 0)
4565 return;
4566 if (read_expected(EVENT_ITEM, "size") < 0)
4567 return;
4568 if (read_expected(EVENT_OP, ":") < 0)
4569 return;
4570 if (read_expect_type(EVENT_ITEM, &token) < 0)
4571 goto fail;
4572 *size = atoi(token);
4573 free_token(token);
4574 if (read_expected(EVENT_OP, ";") < 0)
4575 return;
4576 type = read_token(&token);
4577 if (type != EVENT_NEWLINE) {
4578 /* newer versions of the kernel have a "signed" type */
4579 if (type != EVENT_ITEM)
4580 goto fail;
4581
4582 if (strcmp(token, "signed") != 0)
4583 goto fail;
4584
4585 free_token(token);
4586
4587 if (read_expected(EVENT_OP, ":") < 0)
4588 return;
4589
4590 if (read_expect_type(EVENT_ITEM, &token))
4591 goto fail;
4592
4593 free_token(token);
4594 if (read_expected(EVENT_OP, ";") < 0)
4595 return;
4596
4597 if (read_expect_type(EVENT_NEWLINE, &token))
4598 goto fail;
4599 }
4600 fail:
4601 free_token(token);
4602 return;
4603
4604 discard:
4605 input_buf_ptr = save_input_buf_ptr;
4606 input_buf_siz = save_input_buf_siz;
4607 *offset = 0;
4608 *size = 0;
4609 free_token(token);
4610}
4611
4612/**
4613 * pevent_parse_header_page - parse the data stored in the header page
4614 * @pevent: the handle to the pevent
4615 * @buf: the buffer storing the header page format string
4616 * @size: the size of @buf
4617 * @long_size: the long size to use if there is no header
4618 *
4619 * This parses the header page format for information on the
4620 * ring buffer used. The @buf should be copied from
4621 *
4622 * /sys/kernel/debug/tracing/events/header_page
4623 */
4624int pevent_parse_header_page(struct pevent *pevent, char *buf, unsigned long size,
4625 int long_size)
4626{
4627 int ignore;
4628
4629 if (!size) {
4630 /*
4631 * Old kernels did not have header page info.
4632 * Sorry but we just use what we find here in user space.
4633 */
4634 pevent->header_page_ts_size = sizeof(long long);
4635 pevent->header_page_size_size = long_size;
4636 pevent->header_page_data_offset = sizeof(long long) + long_size;
4637 pevent->old_format = 1;
4638 return -1;
4639 }
4640 init_input_buf(buf, size);
4641
4642 parse_header_field("timestamp", &pevent->header_page_ts_offset,
4643 &pevent->header_page_ts_size, 1);
4644 parse_header_field("commit", &pevent->header_page_size_offset,
4645 &pevent->header_page_size_size, 1);
4646 parse_header_field("overwrite", &pevent->header_page_overwrite,
4647 &ignore, 0);
4648 parse_header_field("data", &pevent->header_page_data_offset,
4649 &pevent->header_page_data_size, 1);
4650
4651 return 0;
4652}
4653
4654static int event_matches(struct event_format *event,
4655 int id, const char *sys_name,
4656 const char *event_name)
4657{
4658 if (id >= 0 && id != event->id)
4659 return 0;
4660
4661 if (event_name && (strcmp(event_name, event->name) != 0))
4662 return 0;
4663
4664 if (sys_name && (strcmp(sys_name, event->system) != 0))
4665 return 0;
4666
4667 return 1;
4668}
4669
4670static void free_handler(struct event_handler *handle)
4671{
4672 free((void *)handle->sys_name);
4673 free((void *)handle->event_name);
4674 free(handle);
4675}
4676
4677static int find_event_handle(struct pevent *pevent, struct event_format *event)
4678{
4679 struct event_handler *handle, **next;
4680
4681 for (next = &pevent->handlers; *next;
4682 next = &(*next)->next) {
4683 handle = *next;
4684 if (event_matches(event, handle->id,
4685 handle->sys_name,
4686 handle->event_name))
4687 break;
4688 }
4689
4690 if (!(*next))
4691 return 0;
4692
4693 pr_stat("overriding event (%d) %s:%s with new print handler",
4694 event->id, event->system, event->name);
4695
4696 event->handler = handle->func;
4697 event->context = handle->context;
4698
4699 *next = handle->next;
4700 free_handler(handle);
4701
4702 return 1;
4703}
4704
4705/**
4706 * pevent_parse_event - parse the event format
4707 * @pevent: the handle to the pevent
4708 * @buf: the buffer storing the event format string
4709 * @size: the size of @buf
4710 * @sys: the system the event belongs to
4711 *
4712 * This parses the event format and creates an event structure
4713 * to quickly parse raw data for a given event.
4714 *
4715 * These files currently come from:
4716 *
4717 * /sys/kernel/debug/tracing/events/.../.../format
4718 */
Namhyung Kimbffddff2012-08-22 16:00:29 +09004719enum pevent_errno pevent_parse_event(struct pevent *pevent, const char *buf,
4720 unsigned long size, const char *sys)
Steven Rostedtf7d82352012-04-06 00:47:53 +02004721{
4722 struct event_format *event;
4723 int ret;
4724
4725 init_input_buf(buf, size);
4726
4727 event = alloc_event();
4728 if (!event)
Namhyung Kimbffddff2012-08-22 16:00:29 +09004729 return PEVENT_ERRNO__MEM_ALLOC_FAILED;
Steven Rostedtf7d82352012-04-06 00:47:53 +02004730
4731 event->name = event_read_name();
4732 if (!event->name) {
4733 /* Bad event? */
Namhyung Kimbffddff2012-08-22 16:00:29 +09004734 ret = PEVENT_ERRNO__MEM_ALLOC_FAILED;
4735 goto event_alloc_failed;
Steven Rostedtf7d82352012-04-06 00:47:53 +02004736 }
4737
4738 if (strcmp(sys, "ftrace") == 0) {
Steven Rostedtf7d82352012-04-06 00:47:53 +02004739 event->flags |= EVENT_FL_ISFTRACE;
4740
4741 if (strcmp(event->name, "bprint") == 0)
4742 event->flags |= EVENT_FL_ISBPRINT;
4743 }
4744
4745 event->id = event_read_id();
Namhyung Kimbffddff2012-08-22 16:00:29 +09004746 if (event->id < 0) {
4747 ret = PEVENT_ERRNO__READ_ID_FAILED;
4748 /*
4749 * This isn't an allocation error actually.
4750 * But as the ID is critical, just bail out.
4751 */
4752 goto event_alloc_failed;
4753 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02004754
4755 event->system = strdup(sys);
Namhyung Kimbffddff2012-08-22 16:00:29 +09004756 if (!event->system) {
4757 ret = PEVENT_ERRNO__MEM_ALLOC_FAILED;
4758 goto event_alloc_failed;
4759 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02004760
4761 /* Add pevent to event so that it can be referenced */
4762 event->pevent = pevent;
4763
4764 ret = event_read_format(event);
4765 if (ret < 0) {
Namhyung Kimbffddff2012-08-22 16:00:29 +09004766 ret = PEVENT_ERRNO__READ_FORMAT_FAILED;
4767 goto event_parse_failed;
Steven Rostedtf7d82352012-04-06 00:47:53 +02004768 }
4769
4770 /*
4771 * If the event has an override, don't print warnings if the event
4772 * print format fails to parse.
4773 */
4774 if (find_event_handle(pevent, event))
4775 show_warning = 0;
4776
4777 ret = event_read_print(event);
4778 if (ret < 0) {
Steven Rostedtf7d82352012-04-06 00:47:53 +02004779 show_warning = 1;
Namhyung Kimbffddff2012-08-22 16:00:29 +09004780 ret = PEVENT_ERRNO__READ_PRINT_FAILED;
4781 goto event_parse_failed;
Steven Rostedtf7d82352012-04-06 00:47:53 +02004782 }
4783 show_warning = 1;
4784
4785 add_event(pevent, event);
4786
4787 if (!ret && (event->flags & EVENT_FL_ISFTRACE)) {
4788 struct format_field *field;
4789 struct print_arg *arg, **list;
4790
4791 /* old ftrace had no args */
Steven Rostedtf7d82352012-04-06 00:47:53 +02004792 list = &event->print_fmt.args;
4793 for (field = event->format.fields; field; field = field->next) {
4794 arg = alloc_arg();
Steven Rostedtf7d82352012-04-06 00:47:53 +02004795 arg->type = PRINT_FIELD;
4796 arg->field.name = strdup(field->name);
Namhyung Kimca638582012-04-09 11:54:31 +09004797 if (!arg->field.name) {
Namhyung Kim4b5632b2012-04-23 13:58:34 +09004798 event->flags |= EVENT_FL_FAILED;
Namhyung Kimfd34f0b2012-08-22 16:00:28 +09004799 free_arg(arg);
Namhyung Kimbffddff2012-08-22 16:00:29 +09004800 return PEVENT_ERRNO__OLD_FTRACE_ARG_FAILED;
Namhyung Kimca638582012-04-09 11:54:31 +09004801 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02004802 arg->field.field = field;
Namhyung Kimfd34f0b2012-08-22 16:00:28 +09004803 *list = arg;
4804 list = &arg->next;
Steven Rostedtf7d82352012-04-06 00:47:53 +02004805 }
4806 return 0;
4807 }
4808
4809#define PRINT_ARGS 0
4810 if (PRINT_ARGS && event->print_fmt.args)
4811 print_args(event->print_fmt.args);
4812
4813 return 0;
4814
Namhyung Kimbffddff2012-08-22 16:00:29 +09004815 event_parse_failed:
Steven Rostedtf7d82352012-04-06 00:47:53 +02004816 event->flags |= EVENT_FL_FAILED;
4817 /* still add it even if it failed */
4818 add_event(pevent, event);
Namhyung Kimbffddff2012-08-22 16:00:29 +09004819 return ret;
4820
4821 event_alloc_failed:
4822 free(event->system);
4823 free(event->name);
4824 free(event);
4825 return ret;
Steven Rostedtf7d82352012-04-06 00:47:53 +02004826}
4827
Namhyung Kim2f197b92012-08-22 16:00:30 +09004828#undef _PE
4829#define _PE(code, str) str
4830static const char * const pevent_error_str[] = {
4831 PEVENT_ERRORS
4832};
4833#undef _PE
4834
4835int pevent_strerror(struct pevent *pevent, enum pevent_errno errnum,
4836 char *buf, size_t buflen)
4837{
4838 int idx;
4839 const char *msg;
4840
4841 if (errnum >= 0) {
Namhyung Kime1aa7c32012-08-22 16:00:31 +09004842 msg = strerror_r(errnum, buf, buflen);
4843 if (msg != buf) {
4844 size_t len = strlen(msg);
Irina Tirdea9612ef62012-09-08 03:43:22 +03004845 memcpy(buf, msg, min(buflen - 1, len));
4846 *(buf + min(buflen - 1, len)) = '\0';
Namhyung Kime1aa7c32012-08-22 16:00:31 +09004847 }
Namhyung Kim2f197b92012-08-22 16:00:30 +09004848 return 0;
4849 }
4850
4851 if (errnum <= __PEVENT_ERRNO__START ||
4852 errnum >= __PEVENT_ERRNO__END)
4853 return -1;
4854
Namhyung Kimf63fe792012-08-23 16:37:00 +09004855 idx = errnum - __PEVENT_ERRNO__START - 1;
Namhyung Kim2f197b92012-08-22 16:00:30 +09004856 msg = pevent_error_str[idx];
4857
4858 switch (errnum) {
4859 case PEVENT_ERRNO__MEM_ALLOC_FAILED:
4860 case PEVENT_ERRNO__PARSE_EVENT_FAILED:
4861 case PEVENT_ERRNO__READ_ID_FAILED:
4862 case PEVENT_ERRNO__READ_FORMAT_FAILED:
4863 case PEVENT_ERRNO__READ_PRINT_FAILED:
4864 case PEVENT_ERRNO__OLD_FTRACE_ARG_FAILED:
4865 snprintf(buf, buflen, "%s", msg);
4866 break;
4867
4868 default:
4869 /* cannot reach here */
4870 break;
4871 }
4872
4873 return 0;
4874}
4875
Steven Rostedtf7d82352012-04-06 00:47:53 +02004876int get_field_val(struct trace_seq *s, struct format_field *field,
Steven Rostedt1c698182012-04-06 00:48:06 +02004877 const char *name, struct pevent_record *record,
Steven Rostedtf7d82352012-04-06 00:47:53 +02004878 unsigned long long *val, int err)
4879{
4880 if (!field) {
4881 if (err)
4882 trace_seq_printf(s, "<CANT FIND FIELD %s>", name);
4883 return -1;
4884 }
4885
4886 if (pevent_read_number_field(field, record->data, val)) {
4887 if (err)
4888 trace_seq_printf(s, " %s=INVALID", name);
4889 return -1;
4890 }
4891
4892 return 0;
4893}
4894
4895/**
4896 * pevent_get_field_raw - return the raw pointer into the data field
4897 * @s: The seq to print to on error
4898 * @event: the event that the field is for
4899 * @name: The name of the field
4900 * @record: The record with the field name.
4901 * @len: place to store the field length.
4902 * @err: print default error if failed.
4903 *
4904 * Returns a pointer into record->data of the field and places
4905 * the length of the field in @len.
4906 *
4907 * On failure, it returns NULL.
4908 */
4909void *pevent_get_field_raw(struct trace_seq *s, struct event_format *event,
Steven Rostedt1c698182012-04-06 00:48:06 +02004910 const char *name, struct pevent_record *record,
Steven Rostedtf7d82352012-04-06 00:47:53 +02004911 int *len, int err)
4912{
4913 struct format_field *field;
4914 void *data = record->data;
4915 unsigned offset;
4916 int dummy;
4917
4918 if (!event)
4919 return NULL;
4920
4921 field = pevent_find_field(event, name);
4922
4923 if (!field) {
4924 if (err)
4925 trace_seq_printf(s, "<CANT FIND FIELD %s>", name);
4926 return NULL;
4927 }
4928
4929 /* Allow @len to be NULL */
4930 if (!len)
4931 len = &dummy;
4932
4933 offset = field->offset;
4934 if (field->flags & FIELD_IS_DYNAMIC) {
4935 offset = pevent_read_number(event->pevent,
4936 data + offset, field->size);
4937 *len = offset >> 16;
4938 offset &= 0xffff;
4939 } else
4940 *len = field->size;
4941
4942 return data + offset;
4943}
4944
4945/**
4946 * pevent_get_field_val - find a field and return its value
4947 * @s: The seq to print to on error
4948 * @event: the event that the field is for
4949 * @name: The name of the field
4950 * @record: The record with the field name.
4951 * @val: place to store the value of the field.
4952 * @err: print default error if failed.
4953 *
4954 * Returns 0 on success -1 on field not found.
4955 */
4956int pevent_get_field_val(struct trace_seq *s, struct event_format *event,
Steven Rostedt1c698182012-04-06 00:48:06 +02004957 const char *name, struct pevent_record *record,
Steven Rostedtf7d82352012-04-06 00:47:53 +02004958 unsigned long long *val, int err)
4959{
4960 struct format_field *field;
4961
4962 if (!event)
4963 return -1;
4964
4965 field = pevent_find_field(event, name);
4966
4967 return get_field_val(s, field, name, record, val, err);
4968}
4969
4970/**
4971 * pevent_get_common_field_val - find a common field and return its value
4972 * @s: The seq to print to on error
4973 * @event: the event that the field is for
4974 * @name: The name of the field
4975 * @record: The record with the field name.
4976 * @val: place to store the value of the field.
4977 * @err: print default error if failed.
4978 *
4979 * Returns 0 on success -1 on field not found.
4980 */
4981int pevent_get_common_field_val(struct trace_seq *s, struct event_format *event,
Steven Rostedt1c698182012-04-06 00:48:06 +02004982 const char *name, struct pevent_record *record,
Steven Rostedtf7d82352012-04-06 00:47:53 +02004983 unsigned long long *val, int err)
4984{
4985 struct format_field *field;
4986
4987 if (!event)
4988 return -1;
4989
4990 field = pevent_find_common_field(event, name);
4991
4992 return get_field_val(s, field, name, record, val, err);
4993}
4994
4995/**
4996 * pevent_get_any_field_val - find a any field and return its value
4997 * @s: The seq to print to on error
4998 * @event: the event that the field is for
4999 * @name: The name of the field
5000 * @record: The record with the field name.
5001 * @val: place to store the value of the field.
5002 * @err: print default error if failed.
5003 *
5004 * Returns 0 on success -1 on field not found.
5005 */
5006int pevent_get_any_field_val(struct trace_seq *s, struct event_format *event,
Steven Rostedt1c698182012-04-06 00:48:06 +02005007 const char *name, struct pevent_record *record,
Steven Rostedtf7d82352012-04-06 00:47:53 +02005008 unsigned long long *val, int err)
5009{
5010 struct format_field *field;
5011
5012 if (!event)
5013 return -1;
5014
5015 field = pevent_find_any_field(event, name);
5016
5017 return get_field_val(s, field, name, record, val, err);
5018}
5019
5020/**
5021 * pevent_print_num_field - print a field and a format
5022 * @s: The seq to print to
5023 * @fmt: The printf format to print the field with.
5024 * @event: the event that the field is for
5025 * @name: The name of the field
5026 * @record: The record with the field name.
5027 * @err: print default error if failed.
5028 *
Namhyung Kim16e6b8f2012-04-23 13:58:35 +09005029 * Returns: 0 on success, -1 field not found, or 1 if buffer is full.
Steven Rostedtf7d82352012-04-06 00:47:53 +02005030 */
5031int pevent_print_num_field(struct trace_seq *s, const char *fmt,
5032 struct event_format *event, const char *name,
Steven Rostedt1c698182012-04-06 00:48:06 +02005033 struct pevent_record *record, int err)
Steven Rostedtf7d82352012-04-06 00:47:53 +02005034{
5035 struct format_field *field = pevent_find_field(event, name);
5036 unsigned long long val;
5037
5038 if (!field)
5039 goto failed;
5040
5041 if (pevent_read_number_field(field, record->data, &val))
5042 goto failed;
5043
5044 return trace_seq_printf(s, fmt, val);
5045
5046 failed:
5047 if (err)
5048 trace_seq_printf(s, "CAN'T FIND FIELD \"%s\"", name);
5049 return -1;
5050}
5051
5052static void free_func_handle(struct pevent_function_handler *func)
5053{
5054 struct pevent_func_params *params;
5055
5056 free(func->name);
5057
5058 while (func->params) {
5059 params = func->params;
5060 func->params = params->next;
5061 free(params);
5062 }
5063
5064 free(func);
5065}
5066
5067/**
5068 * pevent_register_print_function - register a helper function
5069 * @pevent: the handle to the pevent
5070 * @func: the function to process the helper function
Namhyung Kim16e6b8f2012-04-23 13:58:35 +09005071 * @ret_type: the return type of the helper function
Steven Rostedtf7d82352012-04-06 00:47:53 +02005072 * @name: the name of the helper function
5073 * @parameters: A list of enum pevent_func_arg_type
5074 *
5075 * Some events may have helper functions in the print format arguments.
Namhyung Kim16e6b8f2012-04-23 13:58:35 +09005076 * This allows a plugin to dynamically create a way to process one
Steven Rostedtf7d82352012-04-06 00:47:53 +02005077 * of these functions.
5078 *
5079 * The @parameters is a variable list of pevent_func_arg_type enums that
5080 * must end with PEVENT_FUNC_ARG_VOID.
5081 */
5082int pevent_register_print_function(struct pevent *pevent,
5083 pevent_func_handler func,
5084 enum pevent_func_arg_type ret_type,
5085 char *name, ...)
5086{
5087 struct pevent_function_handler *func_handle;
5088 struct pevent_func_params **next_param;
5089 struct pevent_func_params *param;
5090 enum pevent_func_arg_type type;
5091 va_list ap;
Namhyung Kim67ed9392012-09-07 11:49:47 +09005092 int ret;
Steven Rostedtf7d82352012-04-06 00:47:53 +02005093
5094 func_handle = find_func_handler(pevent, name);
5095 if (func_handle) {
5096 /*
5097 * This is most like caused by the users own
5098 * plugins updating the function. This overrides the
5099 * system defaults.
5100 */
5101 pr_stat("override of function helper '%s'", name);
5102 remove_func_handler(pevent, name);
5103 }
5104
Namhyung Kim67ed9392012-09-07 11:49:47 +09005105 func_handle = malloc(sizeof(*func_handle));
5106 if (!func_handle) {
5107 do_warning("Failed to allocate function handler");
5108 return PEVENT_ERRNO__MEM_ALLOC_FAILED;
5109 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02005110 memset(func_handle, 0, sizeof(*func_handle));
5111
5112 func_handle->ret_type = ret_type;
5113 func_handle->name = strdup(name);
5114 func_handle->func = func;
Namhyung Kim67ed9392012-09-07 11:49:47 +09005115 if (!func_handle->name) {
5116 do_warning("Failed to allocate function name");
5117 free(func_handle);
5118 return PEVENT_ERRNO__MEM_ALLOC_FAILED;
5119 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02005120
5121 next_param = &(func_handle->params);
5122 va_start(ap, name);
5123 for (;;) {
5124 type = va_arg(ap, enum pevent_func_arg_type);
5125 if (type == PEVENT_FUNC_ARG_VOID)
5126 break;
5127
5128 if (type < 0 || type >= PEVENT_FUNC_ARG_MAX_TYPES) {
Namhyung Kim67ed9392012-09-07 11:49:47 +09005129 do_warning("Invalid argument type %d", type);
5130 ret = PEVENT_ERRNO__INVALID_ARG_TYPE;
Steven Rostedtf7d82352012-04-06 00:47:53 +02005131 goto out_free;
5132 }
5133
Namhyung Kim67ed9392012-09-07 11:49:47 +09005134 param = malloc(sizeof(*param));
5135 if (!param) {
5136 do_warning("Failed to allocate function param");
5137 ret = PEVENT_ERRNO__MEM_ALLOC_FAILED;
5138 goto out_free;
5139 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02005140 param->type = type;
5141 param->next = NULL;
5142
5143 *next_param = param;
5144 next_param = &(param->next);
5145
5146 func_handle->nr_args++;
5147 }
5148 va_end(ap);
5149
5150 func_handle->next = pevent->func_handlers;
5151 pevent->func_handlers = func_handle;
5152
5153 return 0;
5154 out_free:
5155 va_end(ap);
5156 free_func_handle(func_handle);
Namhyung Kim67ed9392012-09-07 11:49:47 +09005157 return ret;
Steven Rostedtf7d82352012-04-06 00:47:53 +02005158}
5159
5160/**
Namhyung Kim16e6b8f2012-04-23 13:58:35 +09005161 * pevent_register_event_handler - register a way to parse an event
Steven Rostedtf7d82352012-04-06 00:47:53 +02005162 * @pevent: the handle to the pevent
5163 * @id: the id of the event to register
5164 * @sys_name: the system name the event belongs to
5165 * @event_name: the name of the event
5166 * @func: the function to call to parse the event information
Namhyung Kim16e6b8f2012-04-23 13:58:35 +09005167 * @context: the data to be passed to @func
Steven Rostedtf7d82352012-04-06 00:47:53 +02005168 *
5169 * This function allows a developer to override the parsing of
5170 * a given event. If for some reason the default print format
5171 * is not sufficient, this function will register a function
5172 * for an event to be used to parse the data instead.
5173 *
5174 * If @id is >= 0, then it is used to find the event.
5175 * else @sys_name and @event_name are used.
5176 */
5177int pevent_register_event_handler(struct pevent *pevent,
5178 int id, char *sys_name, char *event_name,
5179 pevent_event_handler_func func,
5180 void *context)
5181{
5182 struct event_format *event;
5183 struct event_handler *handle;
5184
5185 if (id >= 0) {
5186 /* search by id */
5187 event = pevent_find_event(pevent, id);
5188 if (!event)
5189 goto not_found;
5190 if (event_name && (strcmp(event_name, event->name) != 0))
5191 goto not_found;
5192 if (sys_name && (strcmp(sys_name, event->system) != 0))
5193 goto not_found;
5194 } else {
5195 event = pevent_find_event_by_name(pevent, sys_name, event_name);
5196 if (!event)
5197 goto not_found;
5198 }
5199
5200 pr_stat("overriding event (%d) %s:%s with new print handler",
5201 event->id, event->system, event->name);
5202
5203 event->handler = func;
5204 event->context = context;
5205 return 0;
5206
5207 not_found:
5208 /* Save for later use. */
Namhyung Kim0ca8da02012-09-07 11:49:46 +09005209 handle = malloc(sizeof(*handle));
5210 if (!handle) {
5211 do_warning("Failed to allocate event handler");
5212 return PEVENT_ERRNO__MEM_ALLOC_FAILED;
5213 }
5214
Steven Rostedt42c80132012-04-06 00:48:05 +02005215 memset(handle, 0, sizeof(*handle));
Steven Rostedtf7d82352012-04-06 00:47:53 +02005216 handle->id = id;
5217 if (event_name)
5218 handle->event_name = strdup(event_name);
5219 if (sys_name)
5220 handle->sys_name = strdup(sys_name);
5221
Namhyung Kimca638582012-04-09 11:54:31 +09005222 if ((event_name && !handle->event_name) ||
5223 (sys_name && !handle->sys_name)) {
Namhyung Kim0ca8da02012-09-07 11:49:46 +09005224 do_warning("Failed to allocate event/sys name");
5225 free((void *)handle->event_name);
5226 free((void *)handle->sys_name);
5227 free(handle);
5228 return PEVENT_ERRNO__MEM_ALLOC_FAILED;
Namhyung Kimca638582012-04-09 11:54:31 +09005229 }
5230
Steven Rostedtf7d82352012-04-06 00:47:53 +02005231 handle->func = func;
5232 handle->next = pevent->handlers;
5233 pevent->handlers = handle;
5234 handle->context = context;
5235
5236 return -1;
5237}
5238
5239/**
5240 * pevent_alloc - create a pevent handle
5241 */
5242struct pevent *pevent_alloc(void)
5243{
5244 struct pevent *pevent;
5245
5246 pevent = malloc(sizeof(*pevent));
5247 if (!pevent)
5248 return NULL;
5249 memset(pevent, 0, sizeof(*pevent));
5250 pevent->ref_count = 1;
5251
5252 return pevent;
5253}
5254
5255void pevent_ref(struct pevent *pevent)
5256{
5257 pevent->ref_count++;
5258}
5259
5260static void free_format_fields(struct format_field *field)
5261{
5262 struct format_field *next;
5263
5264 while (field) {
5265 next = field->next;
5266 free(field->type);
5267 free(field->name);
5268 free(field);
5269 field = next;
5270 }
5271}
5272
5273static void free_formats(struct format *format)
5274{
5275 free_format_fields(format->common_fields);
5276 free_format_fields(format->fields);
5277}
5278
5279static void free_event(struct event_format *event)
5280{
5281 free(event->name);
5282 free(event->system);
5283
5284 free_formats(&event->format);
5285
5286 free(event->print_fmt.format);
5287 free_args(event->print_fmt.args);
5288
5289 free(event);
5290}
5291
5292/**
5293 * pevent_free - free a pevent handle
5294 * @pevent: the pevent handle to free
5295 */
5296void pevent_free(struct pevent *pevent)
5297{
Steven Rostedta2525a02012-04-06 00:48:02 +02005298 struct cmdline_list *cmdlist, *cmdnext;
5299 struct func_list *funclist, *funcnext;
5300 struct printk_list *printklist, *printknext;
Steven Rostedtf7d82352012-04-06 00:47:53 +02005301 struct pevent_function_handler *func_handler;
5302 struct event_handler *handle;
5303 int i;
5304
Steven Rostedta2525a02012-04-06 00:48:02 +02005305 if (!pevent)
5306 return;
5307
5308 cmdlist = pevent->cmdlist;
5309 funclist = pevent->funclist;
5310 printklist = pevent->printklist;
5311
Steven Rostedtf7d82352012-04-06 00:47:53 +02005312 pevent->ref_count--;
5313 if (pevent->ref_count)
5314 return;
5315
5316 if (pevent->cmdlines) {
5317 for (i = 0; i < pevent->cmdline_count; i++)
5318 free(pevent->cmdlines[i].comm);
5319 free(pevent->cmdlines);
5320 }
5321
5322 while (cmdlist) {
5323 cmdnext = cmdlist->next;
5324 free(cmdlist->comm);
5325 free(cmdlist);
5326 cmdlist = cmdnext;
5327 }
5328
5329 if (pevent->func_map) {
5330 for (i = 0; i < pevent->func_count; i++) {
5331 free(pevent->func_map[i].func);
5332 free(pevent->func_map[i].mod);
5333 }
5334 free(pevent->func_map);
5335 }
5336
5337 while (funclist) {
5338 funcnext = funclist->next;
5339 free(funclist->func);
5340 free(funclist->mod);
5341 free(funclist);
5342 funclist = funcnext;
5343 }
5344
5345 while (pevent->func_handlers) {
5346 func_handler = pevent->func_handlers;
5347 pevent->func_handlers = func_handler->next;
5348 free_func_handle(func_handler);
5349 }
5350
5351 if (pevent->printk_map) {
5352 for (i = 0; i < pevent->printk_count; i++)
5353 free(pevent->printk_map[i].printk);
5354 free(pevent->printk_map);
5355 }
5356
5357 while (printklist) {
5358 printknext = printklist->next;
5359 free(printklist->printk);
5360 free(printklist);
5361 printklist = printknext;
5362 }
5363
5364 for (i = 0; i < pevent->nr_events; i++)
5365 free_event(pevent->events[i]);
5366
5367 while (pevent->handlers) {
5368 handle = pevent->handlers;
5369 pevent->handlers = handle->next;
5370 free_handler(handle);
5371 }
5372
5373 free(pevent->events);
5374 free(pevent->sort_events);
5375
5376 free(pevent);
5377}
5378
5379void pevent_unref(struct pevent *pevent)
5380{
5381 pevent_free(pevent);
5382}