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