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