tools lib traceevent: Update printk formats when entered
[cascardo/linux.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         unsigned long long val, fval;
3509         unsigned long addr;
3510         char *str;
3511         unsigned char *hex;
3512         int print;
3513         int i, len;
3514
3515         switch (arg->type) {
3516         case PRINT_NULL:
3517                 /* ?? */
3518                 return;
3519         case PRINT_ATOM:
3520                 print_str_to_seq(s, format, len_arg, arg->atom.atom);
3521                 return;
3522         case PRINT_FIELD:
3523                 field = arg->field.field;
3524                 if (!field) {
3525                         field = pevent_find_any_field(event, arg->field.name);
3526                         if (!field) {
3527                                 str = arg->field.name;
3528                                 goto out_warning_field;
3529                         }
3530                         arg->field.field = field;
3531                 }
3532                 /* Zero sized fields, mean the rest of the data */
3533                 len = field->size ? : size - field->offset;
3534
3535                 /*
3536                  * Some events pass in pointers. If this is not an array
3537                  * and the size is the same as long_size, assume that it
3538                  * is a pointer.
3539                  */
3540                 if (!(field->flags & FIELD_IS_ARRAY) &&
3541                     field->size == pevent->long_size) {
3542                         addr = *(unsigned long *)(data + field->offset);
3543                         trace_seq_printf(s, "%lx", addr);
3544                         break;
3545                 }
3546                 str = malloc(len + 1);
3547                 if (!str) {
3548                         do_warning("%s: not enough memory!", __func__);
3549                         return;
3550                 }
3551                 memcpy(str, data + field->offset, len);
3552                 str[len] = 0;
3553                 print_str_to_seq(s, format, len_arg, str);
3554                 free(str);
3555                 break;
3556         case PRINT_FLAGS:
3557                 val = eval_num_arg(data, size, event, arg->flags.field);
3558                 print = 0;
3559                 for (flag = arg->flags.flags; flag; flag = flag->next) {
3560                         fval = eval_flag(flag->value);
3561                         if (!val && !fval) {
3562                                 print_str_to_seq(s, format, len_arg, flag->str);
3563                                 break;
3564                         }
3565                         if (fval && (val & fval) == fval) {
3566                                 if (print && arg->flags.delim)
3567                                         trace_seq_puts(s, arg->flags.delim);
3568                                 print_str_to_seq(s, format, len_arg, flag->str);
3569                                 print = 1;
3570                                 val &= ~fval;
3571                         }
3572                 }
3573                 break;
3574         case PRINT_SYMBOL:
3575                 val = eval_num_arg(data, size, event, arg->symbol.field);
3576                 for (flag = arg->symbol.symbols; flag; flag = flag->next) {
3577                         fval = eval_flag(flag->value);
3578                         if (val == fval) {
3579                                 print_str_to_seq(s, format, len_arg, flag->str);
3580                                 break;
3581                         }
3582                 }
3583                 break;
3584         case PRINT_HEX:
3585                 field = arg->hex.field->field.field;
3586                 if (!field) {
3587                         str = arg->hex.field->field.name;
3588                         field = pevent_find_any_field(event, str);
3589                         if (!field)
3590                                 goto out_warning_field;
3591                         arg->hex.field->field.field = field;
3592                 }
3593                 hex = data + field->offset;
3594                 len = eval_num_arg(data, size, event, arg->hex.size);
3595                 for (i = 0; i < len; i++) {
3596                         if (i)
3597                                 trace_seq_putc(s, ' ');
3598                         trace_seq_printf(s, "%02x", hex[i]);
3599                 }
3600                 break;
3601
3602         case PRINT_TYPE:
3603                 break;
3604         case PRINT_STRING: {
3605                 int str_offset;
3606
3607                 if (arg->string.offset == -1) {
3608                         struct format_field *f;
3609
3610                         f = pevent_find_any_field(event, arg->string.string);
3611                         arg->string.offset = f->offset;
3612                 }
3613                 str_offset = data2host4(pevent, data + arg->string.offset);
3614                 str_offset &= 0xffff;
3615                 print_str_to_seq(s, format, len_arg, ((char *)data) + str_offset);
3616                 break;
3617         }
3618         case PRINT_BSTRING:
3619                 print_str_to_seq(s, format, len_arg, arg->string.string);
3620                 break;
3621         case PRINT_OP:
3622                 /*
3623                  * The only op for string should be ? :
3624                  */
3625                 if (arg->op.op[0] != '?')
3626                         return;
3627                 val = eval_num_arg(data, size, event, arg->op.left);
3628                 if (val)
3629                         print_str_arg(s, data, size, event,
3630                                       format, len_arg, arg->op.right->op.left);
3631                 else
3632                         print_str_arg(s, data, size, event,
3633                                       format, len_arg, arg->op.right->op.right);
3634                 break;
3635         case PRINT_FUNC:
3636                 process_defined_func(s, data, size, event, arg);
3637                 break;
3638         default:
3639                 /* well... */
3640                 break;
3641         }
3642
3643         return;
3644
3645 out_warning_field:
3646         do_warning("%s: field %s not found", __func__, arg->field.name);
3647 }
3648
3649 static unsigned long long
3650 process_defined_func(struct trace_seq *s, void *data, int size,
3651                      struct event_format *event, struct print_arg *arg)
3652 {
3653         struct pevent_function_handler *func_handle = arg->func.func;
3654         struct pevent_func_params *param;
3655         unsigned long long *args;
3656         unsigned long long ret;
3657         struct print_arg *farg;
3658         struct trace_seq str;
3659         struct save_str {
3660                 struct save_str *next;
3661                 char *str;
3662         } *strings = NULL, *string;
3663         int i;
3664
3665         if (!func_handle->nr_args) {
3666                 ret = (*func_handle->func)(s, NULL);
3667                 goto out;
3668         }
3669
3670         farg = arg->func.args;
3671         param = func_handle->params;
3672
3673         ret = ULLONG_MAX;
3674         args = malloc(sizeof(*args) * func_handle->nr_args);
3675         if (!args)
3676                 goto out;
3677
3678         for (i = 0; i < func_handle->nr_args; i++) {
3679                 switch (param->type) {
3680                 case PEVENT_FUNC_ARG_INT:
3681                 case PEVENT_FUNC_ARG_LONG:
3682                 case PEVENT_FUNC_ARG_PTR:
3683                         args[i] = eval_num_arg(data, size, event, farg);
3684                         break;
3685                 case PEVENT_FUNC_ARG_STRING:
3686                         trace_seq_init(&str);
3687                         print_str_arg(&str, data, size, event, "%s", -1, farg);
3688                         trace_seq_terminate(&str);
3689                         string = malloc(sizeof(*string));
3690                         if (!string) {
3691                                 do_warning("%s(%d): malloc str", __func__, __LINE__);
3692                                 goto out_free;
3693                         }
3694                         string->next = strings;
3695                         string->str = strdup(str.buffer);
3696                         if (!string->str) {
3697                                 free(string);
3698                                 do_warning("%s(%d): malloc str", __func__, __LINE__);
3699                                 goto out_free;
3700                         }
3701                         args[i] = (uintptr_t)string->str;
3702                         strings = string;
3703                         trace_seq_destroy(&str);
3704                         break;
3705                 default:
3706                         /*
3707                          * Something went totally wrong, this is not
3708                          * an input error, something in this code broke.
3709                          */
3710                         do_warning("Unexpected end of arguments\n");
3711                         goto out_free;
3712                 }
3713                 farg = farg->next;
3714                 param = param->next;
3715         }
3716
3717         ret = (*func_handle->func)(s, args);
3718 out_free:
3719         free(args);
3720         while (strings) {
3721                 string = strings;
3722                 strings = string->next;
3723                 free(string->str);
3724                 free(string);
3725         }
3726
3727  out:
3728         /* TBD : handle return type here */
3729         return ret;
3730 }
3731
3732 static void free_args(struct print_arg *args)
3733 {
3734         struct print_arg *next;
3735
3736         while (args) {
3737                 next = args->next;
3738
3739                 free_arg(args);
3740                 args = next;
3741         }
3742 }
3743
3744 static struct print_arg *make_bprint_args(char *fmt, void *data, int size, struct event_format *event)
3745 {
3746         struct pevent *pevent = event->pevent;
3747         struct format_field *field, *ip_field;
3748         struct print_arg *args, *arg, **next;
3749         unsigned long long ip, val;
3750         char *ptr;
3751         void *bptr;
3752         int vsize;
3753
3754         field = pevent->bprint_buf_field;
3755         ip_field = pevent->bprint_ip_field;
3756
3757         if (!field) {
3758                 field = pevent_find_field(event, "buf");
3759                 if (!field) {
3760                         do_warning("can't find buffer field for binary printk");
3761                         return NULL;
3762                 }
3763                 ip_field = pevent_find_field(event, "ip");
3764                 if (!ip_field) {
3765                         do_warning("can't find ip field for binary printk");
3766                         return NULL;
3767                 }
3768                 pevent->bprint_buf_field = field;
3769                 pevent->bprint_ip_field = ip_field;
3770         }
3771
3772         ip = pevent_read_number(pevent, data + ip_field->offset, ip_field->size);
3773
3774         /*
3775          * The first arg is the IP pointer.
3776          */
3777         args = alloc_arg();
3778         if (!args) {
3779                 do_warning("%s(%d): not enough memory!", __func__, __LINE__);
3780                 return NULL;
3781         }
3782         arg = args;
3783         arg->next = NULL;
3784         next = &arg->next;
3785
3786         arg->type = PRINT_ATOM;
3787                 
3788         if (asprintf(&arg->atom.atom, "%lld", ip) < 0)
3789                 goto out_free;
3790
3791         /* skip the first "%pf : " */
3792         for (ptr = fmt + 6, bptr = data + field->offset;
3793              bptr < data + size && *ptr; ptr++) {
3794                 int ls = 0;
3795
3796                 if (*ptr == '%') {
3797  process_again:
3798                         ptr++;
3799                         switch (*ptr) {
3800                         case '%':
3801                                 break;
3802                         case 'l':
3803                                 ls++;
3804                                 goto process_again;
3805                         case 'L':
3806                                 ls = 2;
3807                                 goto process_again;
3808                         case '0' ... '9':
3809                                 goto process_again;
3810                         case '.':
3811                                 goto process_again;
3812                         case 'p':
3813                                 ls = 1;
3814                                 /* fall through */
3815                         case 'd':
3816                         case 'u':
3817                         case 'x':
3818                         case 'i':
3819                                 switch (ls) {
3820                                 case 0:
3821                                         vsize = 4;
3822                                         break;
3823                                 case 1:
3824                                         vsize = pevent->long_size;
3825                                         break;
3826                                 case 2:
3827                                         vsize = 8;
3828                                         break;
3829                                 default:
3830                                         vsize = ls; /* ? */
3831                                         break;
3832                                 }
3833                         /* fall through */
3834                         case '*':
3835                                 if (*ptr == '*')
3836                                         vsize = 4;
3837
3838                                 /* the pointers are always 4 bytes aligned */
3839                                 bptr = (void *)(((unsigned long)bptr + 3) &
3840                                                 ~3);
3841                                 val = pevent_read_number(pevent, bptr, vsize);
3842                                 bptr += vsize;
3843                                 arg = alloc_arg();
3844                                 if (!arg) {
3845                                         do_warning("%s(%d): not enough memory!",
3846                                                    __func__, __LINE__);
3847                                         goto out_free;
3848                                 }
3849                                 arg->next = NULL;
3850                                 arg->type = PRINT_ATOM;
3851                                 if (asprintf(&arg->atom.atom, "%lld", val) < 0) {
3852                                         free(arg);
3853                                         goto out_free;
3854                                 }
3855                                 *next = arg;
3856                                 next = &arg->next;
3857                                 /*
3858                                  * The '*' case means that an arg is used as the length.
3859                                  * We need to continue to figure out for what.
3860                                  */
3861                                 if (*ptr == '*')
3862                                         goto process_again;
3863
3864                                 break;
3865                         case 's':
3866                                 arg = alloc_arg();
3867                                 if (!arg) {
3868                                         do_warning("%s(%d): not enough memory!",
3869                                                    __func__, __LINE__);
3870                                         goto out_free;
3871                                 }
3872                                 arg->next = NULL;
3873                                 arg->type = PRINT_BSTRING;
3874                                 arg->string.string = strdup(bptr);
3875                                 if (!arg->string.string)
3876                                         goto out_free;
3877                                 bptr += strlen(bptr) + 1;
3878                                 *next = arg;
3879                                 next = &arg->next;
3880                         default:
3881                                 break;
3882                         }
3883                 }
3884         }
3885
3886         return args;
3887
3888 out_free:
3889         free_args(args);
3890         return NULL;
3891 }
3892
3893 static char *
3894 get_bprint_format(void *data, int size __maybe_unused,
3895                   struct event_format *event)
3896 {
3897         struct pevent *pevent = event->pevent;
3898         unsigned long long addr;
3899         struct format_field *field;
3900         struct printk_map *printk;
3901         char *format;
3902
3903         field = pevent->bprint_fmt_field;
3904
3905         if (!field) {
3906                 field = pevent_find_field(event, "fmt");
3907                 if (!field) {
3908                         do_warning("can't find format field for binary printk");
3909                         return NULL;
3910                 }
3911                 pevent->bprint_fmt_field = field;
3912         }
3913
3914         addr = pevent_read_number(pevent, data + field->offset, field->size);
3915
3916         printk = find_printk(pevent, addr);
3917         if (!printk) {
3918                 if (asprintf(&format, "%%pf : (NO FORMAT FOUND at %llx)\n", addr) < 0)
3919                         return NULL;
3920                 return format;
3921         }
3922
3923         if (asprintf(&format, "%s : %s", "%pf", printk->printk) < 0)
3924                 return NULL;
3925
3926         return format;
3927 }
3928
3929 static void print_mac_arg(struct trace_seq *s, int mac, void *data, int size,
3930                           struct event_format *event, struct print_arg *arg)
3931 {
3932         unsigned char *buf;
3933         const char *fmt = "%.2x:%.2x:%.2x:%.2x:%.2x:%.2x";
3934
3935         if (arg->type == PRINT_FUNC) {
3936                 process_defined_func(s, data, size, event, arg);
3937                 return;
3938         }
3939
3940         if (arg->type != PRINT_FIELD) {
3941                 trace_seq_printf(s, "ARG TYPE NOT FIELD BUT %d",
3942                                  arg->type);
3943                 return;
3944         }
3945
3946         if (mac == 'm')
3947                 fmt = "%.2x%.2x%.2x%.2x%.2x%.2x";
3948         if (!arg->field.field) {
3949                 arg->field.field =
3950                         pevent_find_any_field(event, arg->field.name);
3951                 if (!arg->field.field) {
3952                         do_warning("%s: field %s not found",
3953                                    __func__, arg->field.name);
3954                         return;
3955                 }
3956         }
3957         if (arg->field.field->size != 6) {
3958                 trace_seq_printf(s, "INVALIDMAC");
3959                 return;
3960         }
3961         buf = data + arg->field.field->offset;
3962         trace_seq_printf(s, fmt, buf[0], buf[1], buf[2], buf[3], buf[4], buf[5]);
3963 }
3964
3965 static int is_printable_array(char *p, unsigned int len)
3966 {
3967         unsigned int i;
3968
3969         for (i = 0; i < len && p[i]; i++)
3970                 if (!isprint(p[i]))
3971                     return 0;
3972         return 1;
3973 }
3974
3975 static void print_event_fields(struct trace_seq *s, void *data,
3976                                int size __maybe_unused,
3977                                struct event_format *event)
3978 {
3979         struct format_field *field;
3980         unsigned long long val;
3981         unsigned int offset, len, i;
3982
3983         field = event->format.fields;
3984         while (field) {
3985                 trace_seq_printf(s, " %s=", field->name);
3986                 if (field->flags & FIELD_IS_ARRAY) {
3987                         offset = field->offset;
3988                         len = field->size;
3989                         if (field->flags & FIELD_IS_DYNAMIC) {
3990                                 val = pevent_read_number(event->pevent, data + offset, len);
3991                                 offset = val;
3992                                 len = offset >> 16;
3993                                 offset &= 0xffff;
3994                         }
3995                         if (field->flags & FIELD_IS_STRING &&
3996                             is_printable_array(data + offset, len)) {
3997                                 trace_seq_printf(s, "%s", (char *)data + offset);
3998                         } else {
3999                                 trace_seq_puts(s, "ARRAY[");
4000                                 for (i = 0; i < len; i++) {
4001                                         if (i)
4002                                                 trace_seq_puts(s, ", ");
4003                                         trace_seq_printf(s, "%02x",
4004                                                          *((unsigned char *)data + offset + i));
4005                                 }
4006                                 trace_seq_putc(s, ']');
4007                                 field->flags &= ~FIELD_IS_STRING;
4008                         }
4009                 } else {
4010                         val = pevent_read_number(event->pevent, data + field->offset,
4011                                                  field->size);
4012                         if (field->flags & FIELD_IS_POINTER) {
4013                                 trace_seq_printf(s, "0x%llx", val);
4014                         } else if (field->flags & FIELD_IS_SIGNED) {
4015                                 switch (field->size) {
4016                                 case 4:
4017                                         /*
4018                                          * If field is long then print it in hex.
4019                                          * A long usually stores pointers.
4020                                          */
4021                                         if (field->flags & FIELD_IS_LONG)
4022                                                 trace_seq_printf(s, "0x%x", (int)val);
4023                                         else
4024                                                 trace_seq_printf(s, "%d", (int)val);
4025                                         break;
4026                                 case 2:
4027                                         trace_seq_printf(s, "%2d", (short)val);
4028                                         break;
4029                                 case 1:
4030                                         trace_seq_printf(s, "%1d", (char)val);
4031                                         break;
4032                                 default:
4033                                         trace_seq_printf(s, "%lld", val);
4034                                 }
4035                         } else {
4036                                 if (field->flags & FIELD_IS_LONG)
4037                                         trace_seq_printf(s, "0x%llx", val);
4038                                 else
4039                                         trace_seq_printf(s, "%llu", val);
4040                         }
4041                 }
4042                 field = field->next;
4043         }
4044 }
4045
4046 static void pretty_print(struct trace_seq *s, void *data, int size, struct event_format *event)
4047 {
4048         struct pevent *pevent = event->pevent;
4049         struct print_fmt *print_fmt = &event->print_fmt;
4050         struct print_arg *arg = print_fmt->args;
4051         struct print_arg *args = NULL;
4052         const char *ptr = print_fmt->format;
4053         unsigned long long val;
4054         struct func_map *func;
4055         const char *saveptr;
4056         char *bprint_fmt = NULL;
4057         char format[32];
4058         int show_func;
4059         int len_as_arg;
4060         int len_arg;
4061         int len;
4062         int ls;
4063
4064         if (event->flags & EVENT_FL_FAILED) {
4065                 trace_seq_printf(s, "[FAILED TO PARSE]");
4066                 print_event_fields(s, data, size, event);
4067                 return;
4068         }
4069
4070         if (event->flags & EVENT_FL_ISBPRINT) {
4071                 bprint_fmt = get_bprint_format(data, size, event);
4072                 args = make_bprint_args(bprint_fmt, data, size, event);
4073                 arg = args;
4074                 ptr = bprint_fmt;
4075         }
4076
4077         for (; *ptr; ptr++) {
4078                 ls = 0;
4079                 if (*ptr == '\\') {
4080                         ptr++;
4081                         switch (*ptr) {
4082                         case 'n':
4083                                 trace_seq_putc(s, '\n');
4084                                 break;
4085                         case 't':
4086                                 trace_seq_putc(s, '\t');
4087                                 break;
4088                         case 'r':
4089                                 trace_seq_putc(s, '\r');
4090                                 break;
4091                         case '\\':
4092                                 trace_seq_putc(s, '\\');
4093                                 break;
4094                         default:
4095                                 trace_seq_putc(s, *ptr);
4096                                 break;
4097                         }
4098
4099                 } else if (*ptr == '%') {
4100                         saveptr = ptr;
4101                         show_func = 0;
4102                         len_as_arg = 0;
4103  cont_process:
4104                         ptr++;
4105                         switch (*ptr) {
4106                         case '%':
4107                                 trace_seq_putc(s, '%');
4108                                 break;
4109                         case '#':
4110                                 /* FIXME: need to handle properly */
4111                                 goto cont_process;
4112                         case 'h':
4113                                 ls--;
4114                                 goto cont_process;
4115                         case 'l':
4116                                 ls++;
4117                                 goto cont_process;
4118                         case 'L':
4119                                 ls = 2;
4120                                 goto cont_process;
4121                         case '*':
4122                                 /* The argument is the length. */
4123                                 if (!arg) {
4124                                         do_warning("no argument match");
4125                                         event->flags |= EVENT_FL_FAILED;
4126                                         goto out_failed;
4127                                 }
4128                                 len_arg = eval_num_arg(data, size, event, arg);
4129                                 len_as_arg = 1;
4130                                 arg = arg->next;
4131                                 goto cont_process;
4132                         case '.':
4133                         case 'z':
4134                         case 'Z':
4135                         case '0' ... '9':
4136                                 goto cont_process;
4137                         case 'p':
4138                                 if (pevent->long_size == 4)
4139                                         ls = 1;
4140                                 else
4141                                         ls = 2;
4142
4143                                 if (*(ptr+1) == 'F' ||
4144                                     *(ptr+1) == 'f') {
4145                                         ptr++;
4146                                         show_func = *ptr;
4147                                 } else if (*(ptr+1) == 'M' || *(ptr+1) == 'm') {
4148                                         print_mac_arg(s, *(ptr+1), data, size, event, arg);
4149                                         ptr++;
4150                                         arg = arg->next;
4151                                         break;
4152                                 }
4153
4154                                 /* fall through */
4155                         case 'd':
4156                         case 'i':
4157                         case 'x':
4158                         case 'X':
4159                         case 'u':
4160                                 if (!arg) {
4161                                         do_warning("no argument match");
4162                                         event->flags |= EVENT_FL_FAILED;
4163                                         goto out_failed;
4164                                 }
4165
4166                                 len = ((unsigned long)ptr + 1) -
4167                                         (unsigned long)saveptr;
4168
4169                                 /* should never happen */
4170                                 if (len > 31) {
4171                                         do_warning("bad format!");
4172                                         event->flags |= EVENT_FL_FAILED;
4173                                         len = 31;
4174                                 }
4175
4176                                 memcpy(format, saveptr, len);
4177                                 format[len] = 0;
4178
4179                                 val = eval_num_arg(data, size, event, arg);
4180                                 arg = arg->next;
4181
4182                                 if (show_func) {
4183                                         func = find_func(pevent, val);
4184                                         if (func) {
4185                                                 trace_seq_puts(s, func->func);
4186                                                 if (show_func == 'F')
4187                                                         trace_seq_printf(s,
4188                                                                "+0x%llx",
4189                                                                val - func->addr);
4190                                                 break;
4191                                         }
4192                                 }
4193                                 if (pevent->long_size == 8 && ls &&
4194                                     sizeof(long) != 8) {
4195                                         char *p;
4196
4197                                         ls = 2;
4198                                         /* make %l into %ll */
4199                                         p = strchr(format, 'l');
4200                                         if (p)
4201                                                 memmove(p+1, p, strlen(p)+1);
4202                                         else if (strcmp(format, "%p") == 0)
4203                                                 strcpy(format, "0x%llx");
4204                                 }
4205                                 switch (ls) {
4206                                 case -2:
4207                                         if (len_as_arg)
4208                                                 trace_seq_printf(s, format, len_arg, (char)val);
4209                                         else
4210                                                 trace_seq_printf(s, format, (char)val);
4211                                         break;
4212                                 case -1:
4213                                         if (len_as_arg)
4214                                                 trace_seq_printf(s, format, len_arg, (short)val);
4215                                         else
4216                                                 trace_seq_printf(s, format, (short)val);
4217                                         break;
4218                                 case 0:
4219                                         if (len_as_arg)
4220                                                 trace_seq_printf(s, format, len_arg, (int)val);
4221                                         else
4222                                                 trace_seq_printf(s, format, (int)val);
4223                                         break;
4224                                 case 1:
4225                                         if (len_as_arg)
4226                                                 trace_seq_printf(s, format, len_arg, (long)val);
4227                                         else
4228                                                 trace_seq_printf(s, format, (long)val);
4229                                         break;
4230                                 case 2:
4231                                         if (len_as_arg)
4232                                                 trace_seq_printf(s, format, len_arg,
4233                                                                  (long long)val);
4234                                         else
4235                                                 trace_seq_printf(s, format, (long long)val);
4236                                         break;
4237                                 default:
4238                                         do_warning("bad count (%d)", ls);
4239                                         event->flags |= EVENT_FL_FAILED;
4240                                 }
4241                                 break;
4242                         case 's':
4243                                 if (!arg) {
4244                                         do_warning("no matching argument");
4245                                         event->flags |= EVENT_FL_FAILED;
4246                                         goto out_failed;
4247                                 }
4248
4249                                 len = ((unsigned long)ptr + 1) -
4250                                         (unsigned long)saveptr;
4251
4252                                 /* should never happen */
4253                                 if (len > 31) {
4254                                         do_warning("bad format!");
4255                                         event->flags |= EVENT_FL_FAILED;
4256                                         len = 31;
4257                                 }
4258
4259                                 memcpy(format, saveptr, len);
4260                                 format[len] = 0;
4261                                 if (!len_as_arg)
4262                                         len_arg = -1;
4263                                 print_str_arg(s, data, size, event,
4264                                               format, len_arg, arg);
4265                                 arg = arg->next;
4266                                 break;
4267                         default:
4268                                 trace_seq_printf(s, ">%c<", *ptr);
4269
4270                         }
4271                 } else
4272                         trace_seq_putc(s, *ptr);
4273         }
4274
4275         if (event->flags & EVENT_FL_FAILED) {
4276 out_failed:
4277                 trace_seq_printf(s, "[FAILED TO PARSE]");
4278         }
4279
4280         if (args) {
4281                 free_args(args);
4282                 free(bprint_fmt);
4283         }
4284 }
4285
4286 /**
4287  * pevent_data_lat_fmt - parse the data for the latency format
4288  * @pevent: a handle to the pevent
4289  * @s: the trace_seq to write to
4290  * @record: the record to read from
4291  *
4292  * This parses out the Latency format (interrupts disabled,
4293  * need rescheduling, in hard/soft interrupt, preempt count
4294  * and lock depth) and places it into the trace_seq.
4295  */
4296 void pevent_data_lat_fmt(struct pevent *pevent,
4297                          struct trace_seq *s, struct pevent_record *record)
4298 {
4299         static int check_lock_depth = 1;
4300         static int check_migrate_disable = 1;
4301         static int lock_depth_exists;
4302         static int migrate_disable_exists;
4303         unsigned int lat_flags;
4304         unsigned int pc;
4305         int lock_depth;
4306         int migrate_disable;
4307         int hardirq;
4308         int softirq;
4309         void *data = record->data;
4310
4311         lat_flags = parse_common_flags(pevent, data);
4312         pc = parse_common_pc(pevent, data);
4313         /* lock_depth may not always exist */
4314         if (lock_depth_exists)
4315                 lock_depth = parse_common_lock_depth(pevent, data);
4316         else if (check_lock_depth) {
4317                 lock_depth = parse_common_lock_depth(pevent, data);
4318                 if (lock_depth < 0)
4319                         check_lock_depth = 0;
4320                 else
4321                         lock_depth_exists = 1;
4322         }
4323
4324         /* migrate_disable may not always exist */
4325         if (migrate_disable_exists)
4326                 migrate_disable = parse_common_migrate_disable(pevent, data);
4327         else if (check_migrate_disable) {
4328                 migrate_disable = parse_common_migrate_disable(pevent, data);
4329                 if (migrate_disable < 0)
4330                         check_migrate_disable = 0;
4331                 else
4332                         migrate_disable_exists = 1;
4333         }
4334
4335         hardirq = lat_flags & TRACE_FLAG_HARDIRQ;
4336         softirq = lat_flags & TRACE_FLAG_SOFTIRQ;
4337
4338         trace_seq_printf(s, "%c%c%c",
4339                (lat_flags & TRACE_FLAG_IRQS_OFF) ? 'd' :
4340                (lat_flags & TRACE_FLAG_IRQS_NOSUPPORT) ?
4341                'X' : '.',
4342                (lat_flags & TRACE_FLAG_NEED_RESCHED) ?
4343                'N' : '.',
4344                (hardirq && softirq) ? 'H' :
4345                hardirq ? 'h' : softirq ? 's' : '.');
4346
4347         if (pc)
4348                 trace_seq_printf(s, "%x", pc);
4349         else
4350                 trace_seq_putc(s, '.');
4351
4352         if (migrate_disable_exists) {
4353                 if (migrate_disable < 0)
4354                         trace_seq_putc(s, '.');
4355                 else
4356                         trace_seq_printf(s, "%d", migrate_disable);
4357         }
4358
4359         if (lock_depth_exists) {
4360                 if (lock_depth < 0)
4361                         trace_seq_putc(s, '.');
4362                 else
4363                         trace_seq_printf(s, "%d", lock_depth);
4364         }
4365
4366         trace_seq_terminate(s);
4367 }
4368
4369 /**
4370  * pevent_data_type - parse out the given event type
4371  * @pevent: a handle to the pevent
4372  * @rec: the record to read from
4373  *
4374  * This returns the event id from the @rec.
4375  */
4376 int pevent_data_type(struct pevent *pevent, struct pevent_record *rec)
4377 {
4378         return trace_parse_common_type(pevent, rec->data);
4379 }
4380
4381 /**
4382  * pevent_data_event_from_type - find the event by a given type
4383  * @pevent: a handle to the pevent
4384  * @type: the type of the event.
4385  *
4386  * This returns the event form a given @type;
4387  */
4388 struct event_format *pevent_data_event_from_type(struct pevent *pevent, int type)
4389 {
4390         return pevent_find_event(pevent, type);
4391 }
4392
4393 /**
4394  * pevent_data_pid - parse the PID from raw data
4395  * @pevent: a handle to the pevent
4396  * @rec: the record to parse
4397  *
4398  * This returns the PID from a raw data.
4399  */
4400 int pevent_data_pid(struct pevent *pevent, struct pevent_record *rec)
4401 {
4402         return parse_common_pid(pevent, rec->data);
4403 }
4404
4405 /**
4406  * pevent_data_comm_from_pid - return the command line from PID
4407  * @pevent: a handle to the pevent
4408  * @pid: the PID of the task to search for
4409  *
4410  * This returns a pointer to the command line that has the given
4411  * @pid.
4412  */
4413 const char *pevent_data_comm_from_pid(struct pevent *pevent, int pid)
4414 {
4415         const char *comm;
4416
4417         comm = find_cmdline(pevent, pid);
4418         return comm;
4419 }
4420
4421 /**
4422  * pevent_data_comm_from_pid - parse the data into the print format
4423  * @s: the trace_seq to write to
4424  * @event: the handle to the event
4425  * @record: the record to read from
4426  *
4427  * This parses the raw @data using the given @event information and
4428  * writes the print format into the trace_seq.
4429  */
4430 void pevent_event_info(struct trace_seq *s, struct event_format *event,
4431                        struct pevent_record *record)
4432 {
4433         int print_pretty = 1;
4434
4435         if (event->pevent->print_raw)
4436                 print_event_fields(s, record->data, record->size, event);
4437         else {
4438
4439                 if (event->handler)
4440                         print_pretty = event->handler(s, record, event,
4441                                                       event->context);
4442
4443                 if (print_pretty)
4444                         pretty_print(s, record->data, record->size, event);
4445         }
4446
4447         trace_seq_terminate(s);
4448 }
4449
4450 static bool is_timestamp_in_us(char *trace_clock, bool use_trace_clock)
4451 {
4452         if (!use_trace_clock)
4453                 return true;
4454
4455         if (!strcmp(trace_clock, "local") || !strcmp(trace_clock, "global")
4456             || !strcmp(trace_clock, "uptime") || !strcmp(trace_clock, "perf"))
4457                 return true;
4458
4459         /* trace_clock is setting in tsc or counter mode */
4460         return false;
4461 }
4462
4463 void pevent_print_event(struct pevent *pevent, struct trace_seq *s,
4464                         struct pevent_record *record, bool use_trace_clock)
4465 {
4466         static const char *spaces = "                    "; /* 20 spaces */
4467         struct event_format *event;
4468         unsigned long secs;
4469         unsigned long usecs;
4470         unsigned long nsecs;
4471         const char *comm;
4472         void *data = record->data;
4473         int type;
4474         int pid;
4475         int len;
4476         int p;
4477         bool use_usec_format;
4478
4479         use_usec_format = is_timestamp_in_us(pevent->trace_clock,
4480                                                         use_trace_clock);
4481         if (use_usec_format) {
4482                 secs = record->ts / NSECS_PER_SEC;
4483                 nsecs = record->ts - secs * NSECS_PER_SEC;
4484         }
4485
4486         if (record->size < 0) {
4487                 do_warning("ug! negative record size %d", record->size);
4488                 return;
4489         }
4490
4491         type = trace_parse_common_type(pevent, data);
4492
4493         event = pevent_find_event(pevent, type);
4494         if (!event) {
4495                 do_warning("ug! no event found for type %d", type);
4496                 return;
4497         }
4498
4499         pid = parse_common_pid(pevent, data);
4500         comm = find_cmdline(pevent, pid);
4501
4502         if (pevent->latency_format) {
4503                 trace_seq_printf(s, "%8.8s-%-5d %3d",
4504                        comm, pid, record->cpu);
4505                 pevent_data_lat_fmt(pevent, s, record);
4506         } else
4507                 trace_seq_printf(s, "%16s-%-5d [%03d]", comm, pid, record->cpu);
4508
4509         if (use_usec_format) {
4510                 if (pevent->flags & PEVENT_NSEC_OUTPUT) {
4511                         usecs = nsecs;
4512                         p = 9;
4513                 } else {
4514                         usecs = (nsecs + 500) / NSECS_PER_USEC;
4515                         p = 6;
4516                 }
4517
4518                 trace_seq_printf(s, " %5lu.%0*lu: %s: ",
4519                                         secs, p, usecs, event->name);
4520         } else
4521                 trace_seq_printf(s, " %12llu: %s: ",
4522                                         record->ts, event->name);
4523
4524         /* Space out the event names evenly. */
4525         len = strlen(event->name);
4526         if (len < 20)
4527                 trace_seq_printf(s, "%.*s", 20 - len, spaces);
4528
4529         pevent_event_info(s, event, record);
4530 }
4531
4532 static int events_id_cmp(const void *a, const void *b)
4533 {
4534         struct event_format * const * ea = a;
4535         struct event_format * const * eb = b;
4536
4537         if ((*ea)->id < (*eb)->id)
4538                 return -1;
4539
4540         if ((*ea)->id > (*eb)->id)
4541                 return 1;
4542
4543         return 0;
4544 }
4545
4546 static int events_name_cmp(const void *a, const void *b)
4547 {
4548         struct event_format * const * ea = a;
4549         struct event_format * const * eb = b;
4550         int res;
4551
4552         res = strcmp((*ea)->name, (*eb)->name);
4553         if (res)
4554                 return res;
4555
4556         res = strcmp((*ea)->system, (*eb)->system);
4557         if (res)
4558                 return res;
4559
4560         return events_id_cmp(a, b);
4561 }
4562
4563 static int events_system_cmp(const void *a, const void *b)
4564 {
4565         struct event_format * const * ea = a;
4566         struct event_format * const * eb = b;
4567         int res;
4568
4569         res = strcmp((*ea)->system, (*eb)->system);
4570         if (res)
4571                 return res;
4572
4573         res = strcmp((*ea)->name, (*eb)->name);
4574         if (res)
4575                 return res;
4576
4577         return events_id_cmp(a, b);
4578 }
4579
4580 struct event_format **pevent_list_events(struct pevent *pevent, enum event_sort_type sort_type)
4581 {
4582         struct event_format **events;
4583         int (*sort)(const void *a, const void *b);
4584
4585         events = pevent->sort_events;
4586
4587         if (events && pevent->last_type == sort_type)
4588                 return events;
4589
4590         if (!events) {
4591                 events = malloc(sizeof(*events) * (pevent->nr_events + 1));
4592                 if (!events)
4593                         return NULL;
4594
4595                 memcpy(events, pevent->events, sizeof(*events) * pevent->nr_events);
4596                 events[pevent->nr_events] = NULL;
4597
4598                 pevent->sort_events = events;
4599
4600                 /* the internal events are sorted by id */
4601                 if (sort_type == EVENT_SORT_ID) {
4602                         pevent->last_type = sort_type;
4603                         return events;
4604                 }
4605         }
4606
4607         switch (sort_type) {
4608         case EVENT_SORT_ID:
4609                 sort = events_id_cmp;
4610                 break;
4611         case EVENT_SORT_NAME:
4612                 sort = events_name_cmp;
4613                 break;
4614         case EVENT_SORT_SYSTEM:
4615                 sort = events_system_cmp;
4616                 break;
4617         default:
4618                 return events;
4619         }
4620
4621         qsort(events, pevent->nr_events, sizeof(*events), sort);
4622         pevent->last_type = sort_type;
4623
4624         return events;
4625 }
4626
4627 static struct format_field **
4628 get_event_fields(const char *type, const char *name,
4629                  int count, struct format_field *list)
4630 {
4631         struct format_field **fields;
4632         struct format_field *field;
4633         int i = 0;
4634
4635         fields = malloc(sizeof(*fields) * (count + 1));
4636         if (!fields)
4637                 return NULL;
4638
4639         for (field = list; field; field = field->next) {
4640                 fields[i++] = field;
4641                 if (i == count + 1) {
4642                         do_warning("event %s has more %s fields than specified",
4643                                 name, type);
4644                         i--;
4645                         break;
4646                 }
4647         }
4648
4649         if (i != count)
4650                 do_warning("event %s has less %s fields than specified",
4651                         name, type);
4652
4653         fields[i] = NULL;
4654
4655         return fields;
4656 }
4657
4658 /**
4659  * pevent_event_common_fields - return a list of common fields for an event
4660  * @event: the event to return the common fields of.
4661  *
4662  * Returns an allocated array of fields. The last item in the array is NULL.
4663  * The array must be freed with free().
4664  */
4665 struct format_field **pevent_event_common_fields(struct event_format *event)
4666 {
4667         return get_event_fields("common", event->name,
4668                                 event->format.nr_common,
4669                                 event->format.common_fields);
4670 }
4671
4672 /**
4673  * pevent_event_fields - return a list of event specific fields for an event
4674  * @event: the event to return the fields of.
4675  *
4676  * Returns an allocated array of fields. The last item in the array is NULL.
4677  * The array must be freed with free().
4678  */
4679 struct format_field **pevent_event_fields(struct event_format *event)
4680 {
4681         return get_event_fields("event", event->name,
4682                                 event->format.nr_fields,
4683                                 event->format.fields);
4684 }
4685
4686 static void print_fields(struct trace_seq *s, struct print_flag_sym *field)
4687 {
4688         trace_seq_printf(s, "{ %s, %s }", field->value, field->str);
4689         if (field->next) {
4690                 trace_seq_puts(s, ", ");
4691                 print_fields(s, field->next);
4692         }
4693 }
4694
4695 /* for debugging */
4696 static void print_args(struct print_arg *args)
4697 {
4698         int print_paren = 1;
4699         struct trace_seq s;
4700
4701         switch (args->type) {
4702         case PRINT_NULL:
4703                 printf("null");
4704                 break;
4705         case PRINT_ATOM:
4706                 printf("%s", args->atom.atom);
4707                 break;
4708         case PRINT_FIELD:
4709                 printf("REC->%s", args->field.name);
4710                 break;
4711         case PRINT_FLAGS:
4712                 printf("__print_flags(");
4713                 print_args(args->flags.field);
4714                 printf(", %s, ", args->flags.delim);
4715                 trace_seq_init(&s);
4716                 print_fields(&s, args->flags.flags);
4717                 trace_seq_do_printf(&s);
4718                 trace_seq_destroy(&s);
4719                 printf(")");
4720                 break;
4721         case PRINT_SYMBOL:
4722                 printf("__print_symbolic(");
4723                 print_args(args->symbol.field);
4724                 printf(", ");
4725                 trace_seq_init(&s);
4726                 print_fields(&s, args->symbol.symbols);
4727                 trace_seq_do_printf(&s);
4728                 trace_seq_destroy(&s);
4729                 printf(")");
4730                 break;
4731         case PRINT_HEX:
4732                 printf("__print_hex(");
4733                 print_args(args->hex.field);
4734                 printf(", ");
4735                 print_args(args->hex.size);
4736                 printf(")");
4737                 break;
4738         case PRINT_STRING:
4739         case PRINT_BSTRING:
4740                 printf("__get_str(%s)", args->string.string);
4741                 break;
4742         case PRINT_TYPE:
4743                 printf("(%s)", args->typecast.type);
4744                 print_args(args->typecast.item);
4745                 break;
4746         case PRINT_OP:
4747                 if (strcmp(args->op.op, ":") == 0)
4748                         print_paren = 0;
4749                 if (print_paren)
4750                         printf("(");
4751                 print_args(args->op.left);
4752                 printf(" %s ", args->op.op);
4753                 print_args(args->op.right);
4754                 if (print_paren)
4755                         printf(")");
4756                 break;
4757         default:
4758                 /* we should warn... */
4759                 return;
4760         }
4761         if (args->next) {
4762                 printf("\n");
4763                 print_args(args->next);
4764         }
4765 }
4766
4767 static void parse_header_field(const char *field,
4768                                int *offset, int *size, int mandatory)
4769 {
4770         unsigned long long save_input_buf_ptr;
4771         unsigned long long save_input_buf_siz;
4772         char *token;
4773         int type;
4774
4775         save_input_buf_ptr = input_buf_ptr;
4776         save_input_buf_siz = input_buf_siz;
4777
4778         if (read_expected(EVENT_ITEM, "field") < 0)
4779                 return;
4780         if (read_expected(EVENT_OP, ":") < 0)
4781                 return;
4782
4783         /* type */
4784         if (read_expect_type(EVENT_ITEM, &token) < 0)
4785                 goto fail;
4786         free_token(token);
4787
4788         /*
4789          * If this is not a mandatory field, then test it first.
4790          */
4791         if (mandatory) {
4792                 if (read_expected(EVENT_ITEM, field) < 0)
4793                         return;
4794         } else {
4795                 if (read_expect_type(EVENT_ITEM, &token) < 0)
4796                         goto fail;
4797                 if (strcmp(token, field) != 0)
4798                         goto discard;
4799                 free_token(token);
4800         }
4801
4802         if (read_expected(EVENT_OP, ";") < 0)
4803                 return;
4804         if (read_expected(EVENT_ITEM, "offset") < 0)
4805                 return;
4806         if (read_expected(EVENT_OP, ":") < 0)
4807                 return;
4808         if (read_expect_type(EVENT_ITEM, &token) < 0)
4809                 goto fail;
4810         *offset = atoi(token);
4811         free_token(token);
4812         if (read_expected(EVENT_OP, ";") < 0)
4813                 return;
4814         if (read_expected(EVENT_ITEM, "size") < 0)
4815                 return;
4816         if (read_expected(EVENT_OP, ":") < 0)
4817                 return;
4818         if (read_expect_type(EVENT_ITEM, &token) < 0)
4819                 goto fail;
4820         *size = atoi(token);
4821         free_token(token);
4822         if (read_expected(EVENT_OP, ";") < 0)
4823                 return;
4824         type = read_token(&token);
4825         if (type != EVENT_NEWLINE) {
4826                 /* newer versions of the kernel have a "signed" type */
4827                 if (type != EVENT_ITEM)
4828                         goto fail;
4829
4830                 if (strcmp(token, "signed") != 0)
4831                         goto fail;
4832
4833                 free_token(token);
4834
4835                 if (read_expected(EVENT_OP, ":") < 0)
4836                         return;
4837
4838                 if (read_expect_type(EVENT_ITEM, &token))
4839                         goto fail;
4840
4841                 free_token(token);
4842                 if (read_expected(EVENT_OP, ";") < 0)
4843                         return;
4844
4845                 if (read_expect_type(EVENT_NEWLINE, &token))
4846                         goto fail;
4847         }
4848  fail:
4849         free_token(token);
4850         return;
4851
4852  discard:
4853         input_buf_ptr = save_input_buf_ptr;
4854         input_buf_siz = save_input_buf_siz;
4855         *offset = 0;
4856         *size = 0;
4857         free_token(token);
4858 }
4859
4860 /**
4861  * pevent_parse_header_page - parse the data stored in the header page
4862  * @pevent: the handle to the pevent
4863  * @buf: the buffer storing the header page format string
4864  * @size: the size of @buf
4865  * @long_size: the long size to use if there is no header
4866  *
4867  * This parses the header page format for information on the
4868  * ring buffer used. The @buf should be copied from
4869  *
4870  * /sys/kernel/debug/tracing/events/header_page
4871  */
4872 int pevent_parse_header_page(struct pevent *pevent, char *buf, unsigned long size,
4873                              int long_size)
4874 {
4875         int ignore;
4876
4877         if (!size) {
4878                 /*
4879                  * Old kernels did not have header page info.
4880                  * Sorry but we just use what we find here in user space.
4881                  */
4882                 pevent->header_page_ts_size = sizeof(long long);
4883                 pevent->header_page_size_size = long_size;
4884                 pevent->header_page_data_offset = sizeof(long long) + long_size;
4885                 pevent->old_format = 1;
4886                 return -1;
4887         }
4888         init_input_buf(buf, size);
4889
4890         parse_header_field("timestamp", &pevent->header_page_ts_offset,
4891                            &pevent->header_page_ts_size, 1);
4892         parse_header_field("commit", &pevent->header_page_size_offset,
4893                            &pevent->header_page_size_size, 1);
4894         parse_header_field("overwrite", &pevent->header_page_overwrite,
4895                            &ignore, 0);
4896         parse_header_field("data", &pevent->header_page_data_offset,
4897                            &pevent->header_page_data_size, 1);
4898
4899         return 0;
4900 }
4901
4902 static int event_matches(struct event_format *event,
4903                          int id, const char *sys_name,
4904                          const char *event_name)
4905 {
4906         if (id >= 0 && id != event->id)
4907                 return 0;
4908
4909         if (event_name && (strcmp(event_name, event->name) != 0))
4910                 return 0;
4911
4912         if (sys_name && (strcmp(sys_name, event->system) != 0))
4913                 return 0;
4914
4915         return 1;
4916 }
4917
4918 static void free_handler(struct event_handler *handle)
4919 {
4920         free((void *)handle->sys_name);
4921         free((void *)handle->event_name);
4922         free(handle);
4923 }
4924
4925 static int find_event_handle(struct pevent *pevent, struct event_format *event)
4926 {
4927         struct event_handler *handle, **next;
4928
4929         for (next = &pevent->handlers; *next;
4930              next = &(*next)->next) {
4931                 handle = *next;
4932                 if (event_matches(event, handle->id,
4933                                   handle->sys_name,
4934                                   handle->event_name))
4935                         break;
4936         }
4937
4938         if (!(*next))
4939                 return 0;
4940
4941         pr_stat("overriding event (%d) %s:%s with new print handler",
4942                 event->id, event->system, event->name);
4943
4944         event->handler = handle->func;
4945         event->context = handle->context;
4946
4947         *next = handle->next;
4948         free_handler(handle);
4949
4950         return 1;
4951 }
4952
4953 /**
4954  * __pevent_parse_format - parse the event format
4955  * @buf: the buffer storing the event format string
4956  * @size: the size of @buf
4957  * @sys: the system the event belongs to
4958  *
4959  * This parses the event format and creates an event structure
4960  * to quickly parse raw data for a given event.
4961  *
4962  * These files currently come from:
4963  *
4964  * /sys/kernel/debug/tracing/events/.../.../format
4965  */
4966 enum pevent_errno __pevent_parse_format(struct event_format **eventp,
4967                                         struct pevent *pevent, const char *buf,
4968                                         unsigned long size, const char *sys)
4969 {
4970         struct event_format *event;
4971         int ret;
4972
4973         init_input_buf(buf, size);
4974
4975         *eventp = event = alloc_event();
4976         if (!event)
4977                 return PEVENT_ERRNO__MEM_ALLOC_FAILED;
4978
4979         event->name = event_read_name();
4980         if (!event->name) {
4981                 /* Bad event? */
4982                 ret = PEVENT_ERRNO__MEM_ALLOC_FAILED;
4983                 goto event_alloc_failed;
4984         }
4985
4986         if (strcmp(sys, "ftrace") == 0) {
4987                 event->flags |= EVENT_FL_ISFTRACE;
4988
4989                 if (strcmp(event->name, "bprint") == 0)
4990                         event->flags |= EVENT_FL_ISBPRINT;
4991         }
4992                 
4993         event->id = event_read_id();
4994         if (event->id < 0) {
4995                 ret = PEVENT_ERRNO__READ_ID_FAILED;
4996                 /*
4997                  * This isn't an allocation error actually.
4998                  * But as the ID is critical, just bail out.
4999                  */
5000                 goto event_alloc_failed;
5001         }
5002
5003         event->system = strdup(sys);
5004         if (!event->system) {
5005                 ret = PEVENT_ERRNO__MEM_ALLOC_FAILED;
5006                 goto event_alloc_failed;
5007         }
5008
5009         /* Add pevent to event so that it can be referenced */
5010         event->pevent = pevent;
5011
5012         ret = event_read_format(event);
5013         if (ret < 0) {
5014                 ret = PEVENT_ERRNO__READ_FORMAT_FAILED;
5015                 goto event_parse_failed;
5016         }
5017
5018         /*
5019          * If the event has an override, don't print warnings if the event
5020          * print format fails to parse.
5021          */
5022         if (pevent && find_event_handle(pevent, event))
5023                 show_warning = 0;
5024
5025         ret = event_read_print(event);
5026         show_warning = 1;
5027
5028         if (ret < 0) {
5029                 ret = PEVENT_ERRNO__READ_PRINT_FAILED;
5030                 goto event_parse_failed;
5031         }
5032
5033         if (!ret && (event->flags & EVENT_FL_ISFTRACE)) {
5034                 struct format_field *field;
5035                 struct print_arg *arg, **list;
5036
5037                 /* old ftrace had no args */
5038                 list = &event->print_fmt.args;
5039                 for (field = event->format.fields; field; field = field->next) {
5040                         arg = alloc_arg();
5041                         if (!arg) {
5042                                 event->flags |= EVENT_FL_FAILED;
5043                                 return PEVENT_ERRNO__OLD_FTRACE_ARG_FAILED;
5044                         }
5045                         arg->type = PRINT_FIELD;
5046                         arg->field.name = strdup(field->name);
5047                         if (!arg->field.name) {
5048                                 event->flags |= EVENT_FL_FAILED;
5049                                 free_arg(arg);
5050                                 return PEVENT_ERRNO__OLD_FTRACE_ARG_FAILED;
5051                         }
5052                         arg->field.field = field;
5053                         *list = arg;
5054                         list = &arg->next;
5055                 }
5056                 return 0;
5057         }
5058
5059         return 0;
5060
5061  event_parse_failed:
5062         event->flags |= EVENT_FL_FAILED;
5063         return ret;
5064
5065  event_alloc_failed:
5066         free(event->system);
5067         free(event->name);
5068         free(event);
5069         *eventp = NULL;
5070         return ret;
5071 }
5072
5073 /**
5074  * pevent_parse_format - parse the event format
5075  * @buf: the buffer storing the event format string
5076  * @size: the size of @buf
5077  * @sys: the system the event belongs to
5078  *
5079  * This parses the event format and creates an event structure
5080  * to quickly parse raw data for a given event.
5081  *
5082  * These files currently come from:
5083  *
5084  * /sys/kernel/debug/tracing/events/.../.../format
5085  */
5086 enum pevent_errno pevent_parse_format(struct event_format **eventp, const char *buf,
5087                                       unsigned long size, const char *sys)
5088 {
5089         return __pevent_parse_format(eventp, NULL, buf, size, sys);
5090 }
5091
5092 /**
5093  * pevent_parse_event - parse the event format
5094  * @pevent: the handle to the pevent
5095  * @buf: the buffer storing the event format string
5096  * @size: the size of @buf
5097  * @sys: the system the event belongs to
5098  *
5099  * This parses the event format and creates an event structure
5100  * to quickly parse raw data for a given event.
5101  *
5102  * These files currently come from:
5103  *
5104  * /sys/kernel/debug/tracing/events/.../.../format
5105  */
5106 enum pevent_errno pevent_parse_event(struct pevent *pevent, const char *buf,
5107                                      unsigned long size, const char *sys)
5108 {
5109         struct event_format *event = NULL;
5110         int ret = __pevent_parse_format(&event, pevent, buf, size, sys);
5111
5112         if (event == NULL)
5113                 return ret;
5114
5115         if (add_event(pevent, event)) {
5116                 ret = PEVENT_ERRNO__MEM_ALLOC_FAILED;
5117                 goto event_add_failed;
5118         }
5119
5120 #define PRINT_ARGS 0
5121         if (PRINT_ARGS && event->print_fmt.args)
5122                 print_args(event->print_fmt.args);
5123
5124         return 0;
5125
5126 event_add_failed:
5127         pevent_free_format(event);
5128         return ret;
5129 }
5130
5131 #undef _PE
5132 #define _PE(code, str) str
5133 static const char * const pevent_error_str[] = {
5134         PEVENT_ERRORS
5135 };
5136 #undef _PE
5137
5138 int pevent_strerror(struct pevent *pevent __maybe_unused,
5139                     enum pevent_errno errnum, char *buf, size_t buflen)
5140 {
5141         int idx;
5142         const char *msg;
5143
5144         if (errnum >= 0) {
5145                 msg = strerror_r(errnum, buf, buflen);
5146                 if (msg != buf) {
5147                         size_t len = strlen(msg);
5148                         memcpy(buf, msg, min(buflen - 1, len));
5149                         *(buf + min(buflen - 1, len)) = '\0';
5150                 }
5151                 return 0;
5152         }
5153
5154         if (errnum <= __PEVENT_ERRNO__START ||
5155             errnum >= __PEVENT_ERRNO__END)
5156                 return -1;
5157
5158         idx = errnum - __PEVENT_ERRNO__START - 1;
5159         msg = pevent_error_str[idx];
5160
5161         switch (errnum) {
5162         case PEVENT_ERRNO__MEM_ALLOC_FAILED:
5163         case PEVENT_ERRNO__PARSE_EVENT_FAILED:
5164         case PEVENT_ERRNO__READ_ID_FAILED:
5165         case PEVENT_ERRNO__READ_FORMAT_FAILED:
5166         case PEVENT_ERRNO__READ_PRINT_FAILED:
5167         case PEVENT_ERRNO__OLD_FTRACE_ARG_FAILED:
5168         case PEVENT_ERRNO__INVALID_ARG_TYPE:
5169                 snprintf(buf, buflen, "%s", msg);
5170                 break;
5171
5172         default:
5173                 /* cannot reach here */
5174                 break;
5175         }
5176
5177         return 0;
5178 }
5179
5180 int get_field_val(struct trace_seq *s, struct format_field *field,
5181                   const char *name, struct pevent_record *record,
5182                   unsigned long long *val, int err)
5183 {
5184         if (!field) {
5185                 if (err)
5186                         trace_seq_printf(s, "<CANT FIND FIELD %s>", name);
5187                 return -1;
5188         }
5189
5190         if (pevent_read_number_field(field, record->data, val)) {
5191                 if (err)
5192                         trace_seq_printf(s, " %s=INVALID", name);
5193                 return -1;
5194         }
5195
5196         return 0;
5197 }
5198
5199 /**
5200  * pevent_get_field_raw - return the raw pointer into the data field
5201  * @s: The seq to print to on error
5202  * @event: the event that the field is for
5203  * @name: The name of the field
5204  * @record: The record with the field name.
5205  * @len: place to store the field length.
5206  * @err: print default error if failed.
5207  *
5208  * Returns a pointer into record->data of the field and places
5209  * the length of the field in @len.
5210  *
5211  * On failure, it returns NULL.
5212  */
5213 void *pevent_get_field_raw(struct trace_seq *s, struct event_format *event,
5214                            const char *name, struct pevent_record *record,
5215                            int *len, int err)
5216 {
5217         struct format_field *field;
5218         void *data = record->data;
5219         unsigned offset;
5220         int dummy;
5221
5222         if (!event)
5223                 return NULL;
5224
5225         field = pevent_find_field(event, name);
5226
5227         if (!field) {
5228                 if (err)
5229                         trace_seq_printf(s, "<CANT FIND FIELD %s>", name);
5230                 return NULL;
5231         }
5232
5233         /* Allow @len to be NULL */
5234         if (!len)
5235                 len = &dummy;
5236
5237         offset = field->offset;
5238         if (field->flags & FIELD_IS_DYNAMIC) {
5239                 offset = pevent_read_number(event->pevent,
5240                                             data + offset, field->size);
5241                 *len = offset >> 16;
5242                 offset &= 0xffff;
5243         } else
5244                 *len = field->size;
5245
5246         return data + offset;
5247 }
5248
5249 /**
5250  * pevent_get_field_val - find a field and return its value
5251  * @s: The seq to print to on error
5252  * @event: the event that the field is for
5253  * @name: The name of the field
5254  * @record: The record with the field name.
5255  * @val: place to store the value of the field.
5256  * @err: print default error if failed.
5257  *
5258  * Returns 0 on success -1 on field not found.
5259  */
5260 int pevent_get_field_val(struct trace_seq *s, struct event_format *event,
5261                          const char *name, struct pevent_record *record,
5262                          unsigned long long *val, int err)
5263 {
5264         struct format_field *field;
5265
5266         if (!event)
5267                 return -1;
5268
5269         field = pevent_find_field(event, name);
5270
5271         return get_field_val(s, field, name, record, val, err);
5272 }
5273
5274 /**
5275  * pevent_get_common_field_val - find a common field and return its value
5276  * @s: The seq to print to on error
5277  * @event: the event that the field is for
5278  * @name: The name of the field
5279  * @record: The record with the field name.
5280  * @val: place to store the value of the field.
5281  * @err: print default error if failed.
5282  *
5283  * Returns 0 on success -1 on field not found.
5284  */
5285 int pevent_get_common_field_val(struct trace_seq *s, struct event_format *event,
5286                                 const char *name, struct pevent_record *record,
5287                                 unsigned long long *val, int err)
5288 {
5289         struct format_field *field;
5290
5291         if (!event)
5292                 return -1;
5293
5294         field = pevent_find_common_field(event, name);
5295
5296         return get_field_val(s, field, name, record, val, err);
5297 }
5298
5299 /**
5300  * pevent_get_any_field_val - find a any field and return its value
5301  * @s: The seq to print to on error
5302  * @event: the event that the field is for
5303  * @name: The name of the field
5304  * @record: The record with the field name.
5305  * @val: place to store the value of the field.
5306  * @err: print default error if failed.
5307  *
5308  * Returns 0 on success -1 on field not found.
5309  */
5310 int pevent_get_any_field_val(struct trace_seq *s, struct event_format *event,
5311                              const char *name, struct pevent_record *record,
5312                              unsigned long long *val, int err)
5313 {
5314         struct format_field *field;
5315
5316         if (!event)
5317                 return -1;
5318
5319         field = pevent_find_any_field(event, name);
5320
5321         return get_field_val(s, field, name, record, val, err);
5322 }
5323
5324 /**
5325  * pevent_print_num_field - print a field and a format
5326  * @s: The seq to print to
5327  * @fmt: The printf format to print the field with.
5328  * @event: the event that the field is for
5329  * @name: The name of the field
5330  * @record: The record with the field name.
5331  * @err: print default error if failed.
5332  *
5333  * Returns: 0 on success, -1 field not found, or 1 if buffer is full.
5334  */
5335 int pevent_print_num_field(struct trace_seq *s, const char *fmt,
5336                            struct event_format *event, const char *name,
5337                            struct pevent_record *record, int err)
5338 {
5339         struct format_field *field = pevent_find_field(event, name);
5340         unsigned long long val;
5341
5342         if (!field)
5343                 goto failed;
5344
5345         if (pevent_read_number_field(field, record->data, &val))
5346                 goto failed;
5347
5348         return trace_seq_printf(s, fmt, val);
5349
5350  failed:
5351         if (err)
5352                 trace_seq_printf(s, "CAN'T FIND FIELD \"%s\"", name);
5353         return -1;
5354 }
5355
5356 static void free_func_handle(struct pevent_function_handler *func)
5357 {
5358         struct pevent_func_params *params;
5359
5360         free(func->name);
5361
5362         while (func->params) {
5363                 params = func->params;
5364                 func->params = params->next;
5365                 free(params);
5366         }
5367
5368         free(func);
5369 }
5370
5371 /**
5372  * pevent_register_print_function - register a helper function
5373  * @pevent: the handle to the pevent
5374  * @func: the function to process the helper function
5375  * @ret_type: the return type of the helper function
5376  * @name: the name of the helper function
5377  * @parameters: A list of enum pevent_func_arg_type
5378  *
5379  * Some events may have helper functions in the print format arguments.
5380  * This allows a plugin to dynamically create a way to process one
5381  * of these functions.
5382  *
5383  * The @parameters is a variable list of pevent_func_arg_type enums that
5384  * must end with PEVENT_FUNC_ARG_VOID.
5385  */
5386 int pevent_register_print_function(struct pevent *pevent,
5387                                    pevent_func_handler func,
5388                                    enum pevent_func_arg_type ret_type,
5389                                    char *name, ...)
5390 {
5391         struct pevent_function_handler *func_handle;
5392         struct pevent_func_params **next_param;
5393         struct pevent_func_params *param;
5394         enum pevent_func_arg_type type;
5395         va_list ap;
5396         int ret;
5397
5398         func_handle = find_func_handler(pevent, name);
5399         if (func_handle) {
5400                 /*
5401                  * This is most like caused by the users own
5402                  * plugins updating the function. This overrides the
5403                  * system defaults.
5404                  */
5405                 pr_stat("override of function helper '%s'", name);
5406                 remove_func_handler(pevent, name);
5407         }
5408
5409         func_handle = calloc(1, sizeof(*func_handle));
5410         if (!func_handle) {
5411                 do_warning("Failed to allocate function handler");
5412                 return PEVENT_ERRNO__MEM_ALLOC_FAILED;
5413         }
5414
5415         func_handle->ret_type = ret_type;
5416         func_handle->name = strdup(name);
5417         func_handle->func = func;
5418         if (!func_handle->name) {
5419                 do_warning("Failed to allocate function name");
5420                 free(func_handle);
5421                 return PEVENT_ERRNO__MEM_ALLOC_FAILED;
5422         }
5423
5424         next_param = &(func_handle->params);
5425         va_start(ap, name);
5426         for (;;) {
5427                 type = va_arg(ap, enum pevent_func_arg_type);
5428                 if (type == PEVENT_FUNC_ARG_VOID)
5429                         break;
5430
5431                 if (type >= PEVENT_FUNC_ARG_MAX_TYPES) {
5432                         do_warning("Invalid argument type %d", type);
5433                         ret = PEVENT_ERRNO__INVALID_ARG_TYPE;
5434                         goto out_free;
5435                 }
5436
5437                 param = malloc(sizeof(*param));
5438                 if (!param) {
5439                         do_warning("Failed to allocate function param");
5440                         ret = PEVENT_ERRNO__MEM_ALLOC_FAILED;
5441                         goto out_free;
5442                 }
5443                 param->type = type;
5444                 param->next = NULL;
5445
5446                 *next_param = param;
5447                 next_param = &(param->next);
5448
5449                 func_handle->nr_args++;
5450         }
5451         va_end(ap);
5452
5453         func_handle->next = pevent->func_handlers;
5454         pevent->func_handlers = func_handle;
5455
5456         return 0;
5457  out_free:
5458         va_end(ap);
5459         free_func_handle(func_handle);
5460         return ret;
5461 }
5462
5463 /**
5464  * pevent_register_event_handler - register a way to parse an event
5465  * @pevent: the handle to the pevent
5466  * @id: the id of the event to register
5467  * @sys_name: the system name the event belongs to
5468  * @event_name: the name of the event
5469  * @func: the function to call to parse the event information
5470  * @context: the data to be passed to @func
5471  *
5472  * This function allows a developer to override the parsing of
5473  * a given event. If for some reason the default print format
5474  * is not sufficient, this function will register a function
5475  * for an event to be used to parse the data instead.
5476  *
5477  * If @id is >= 0, then it is used to find the event.
5478  * else @sys_name and @event_name are used.
5479  */
5480 int pevent_register_event_handler(struct pevent *pevent, int id,
5481                                   const char *sys_name, const char *event_name,
5482                                   pevent_event_handler_func func, void *context)
5483 {
5484         struct event_format *event;
5485         struct event_handler *handle;
5486
5487         if (id >= 0) {
5488                 /* search by id */
5489                 event = pevent_find_event(pevent, id);
5490                 if (!event)
5491                         goto not_found;
5492                 if (event_name && (strcmp(event_name, event->name) != 0))
5493                         goto not_found;
5494                 if (sys_name && (strcmp(sys_name, event->system) != 0))
5495                         goto not_found;
5496         } else {
5497                 event = pevent_find_event_by_name(pevent, sys_name, event_name);
5498                 if (!event)
5499                         goto not_found;
5500         }
5501
5502         pr_stat("overriding event (%d) %s:%s with new print handler",
5503                 event->id, event->system, event->name);
5504
5505         event->handler = func;
5506         event->context = context;
5507         return 0;
5508
5509  not_found:
5510         /* Save for later use. */
5511         handle = calloc(1, sizeof(*handle));
5512         if (!handle) {
5513                 do_warning("Failed to allocate event handler");
5514                 return PEVENT_ERRNO__MEM_ALLOC_FAILED;
5515         }
5516
5517         handle->id = id;
5518         if (event_name)
5519                 handle->event_name = strdup(event_name);
5520         if (sys_name)
5521                 handle->sys_name = strdup(sys_name);
5522
5523         if ((event_name && !handle->event_name) ||
5524             (sys_name && !handle->sys_name)) {
5525                 do_warning("Failed to allocate event/sys name");
5526                 free((void *)handle->event_name);
5527                 free((void *)handle->sys_name);
5528                 free(handle);
5529                 return PEVENT_ERRNO__MEM_ALLOC_FAILED;
5530         }
5531
5532         handle->func = func;
5533         handle->next = pevent->handlers;
5534         pevent->handlers = handle;
5535         handle->context = context;
5536
5537         return -1;
5538 }
5539
5540 /**
5541  * pevent_alloc - create a pevent handle
5542  */
5543 struct pevent *pevent_alloc(void)
5544 {
5545         struct pevent *pevent = calloc(1, sizeof(*pevent));
5546
5547         if (pevent)
5548                 pevent->ref_count = 1;
5549
5550         return pevent;
5551 }
5552
5553 void pevent_ref(struct pevent *pevent)
5554 {
5555         pevent->ref_count++;
5556 }
5557
5558 static void free_format_fields(struct format_field *field)
5559 {
5560         struct format_field *next;
5561
5562         while (field) {
5563                 next = field->next;
5564                 free(field->type);
5565                 free(field->name);
5566                 free(field);
5567                 field = next;
5568         }
5569 }
5570
5571 static void free_formats(struct format *format)
5572 {
5573         free_format_fields(format->common_fields);
5574         free_format_fields(format->fields);
5575 }
5576
5577 void pevent_free_format(struct event_format *event)
5578 {
5579         free(event->name);
5580         free(event->system);
5581
5582         free_formats(&event->format);
5583
5584         free(event->print_fmt.format);
5585         free_args(event->print_fmt.args);
5586
5587         free(event);
5588 }
5589
5590 /**
5591  * pevent_free - free a pevent handle
5592  * @pevent: the pevent handle to free
5593  */
5594 void pevent_free(struct pevent *pevent)
5595 {
5596         struct cmdline_list *cmdlist, *cmdnext;
5597         struct func_list *funclist, *funcnext;
5598         struct printk_list *printklist, *printknext;
5599         struct pevent_function_handler *func_handler;
5600         struct event_handler *handle;
5601         int i;
5602
5603         if (!pevent)
5604                 return;
5605
5606         cmdlist = pevent->cmdlist;
5607         funclist = pevent->funclist;
5608         printklist = pevent->printklist;
5609
5610         pevent->ref_count--;
5611         if (pevent->ref_count)
5612                 return;
5613
5614         if (pevent->cmdlines) {
5615                 for (i = 0; i < pevent->cmdline_count; i++)
5616                         free(pevent->cmdlines[i].comm);
5617                 free(pevent->cmdlines);
5618         }
5619
5620         while (cmdlist) {
5621                 cmdnext = cmdlist->next;
5622                 free(cmdlist->comm);
5623                 free(cmdlist);
5624                 cmdlist = cmdnext;
5625         }
5626
5627         if (pevent->func_map) {
5628                 for (i = 0; i < (int)pevent->func_count; i++) {
5629                         free(pevent->func_map[i].func);
5630                         free(pevent->func_map[i].mod);
5631                 }
5632                 free(pevent->func_map);
5633         }
5634
5635         while (funclist) {
5636                 funcnext = funclist->next;
5637                 free(funclist->func);
5638                 free(funclist->mod);
5639                 free(funclist);
5640                 funclist = funcnext;
5641         }
5642
5643         while (pevent->func_handlers) {
5644                 func_handler = pevent->func_handlers;
5645                 pevent->func_handlers = func_handler->next;
5646                 free_func_handle(func_handler);
5647         }
5648
5649         if (pevent->printk_map) {
5650                 for (i = 0; i < (int)pevent->printk_count; i++)
5651                         free(pevent->printk_map[i].printk);
5652                 free(pevent->printk_map);
5653         }
5654
5655         while (printklist) {
5656                 printknext = printklist->next;
5657                 free(printklist->printk);
5658                 free(printklist);
5659                 printklist = printknext;
5660         }
5661
5662         for (i = 0; i < pevent->nr_events; i++)
5663                 pevent_free_format(pevent->events[i]);
5664
5665         while (pevent->handlers) {
5666                 handle = pevent->handlers;
5667                 pevent->handlers = handle->next;
5668                 free_handler(handle);
5669         }
5670
5671         free(pevent->events);
5672         free(pevent->sort_events);
5673
5674         free(pevent);
5675 }
5676
5677 void pevent_unref(struct pevent *pevent)
5678 {
5679         pevent_free(pevent);
5680 }