blob: 96c9c0b33423944b37ea8b2d4e461e329acd0f1c [file] [log] [blame]
Steven Rostedtf7d82352012-04-06 00:47:53 +02001/*
2 * Copyright (C) 2009, 2010 Red Hat Inc, Steven Rostedt <srostedt@redhat.com>
3 *
4 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation;
8 * version 2.1 of the License (not later!)
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU Lesser General Public License for more details.
14 *
15 * You should have received a copy of the GNU Lesser General Public
Jon Stanley7b9f6b42012-09-07 16:32:46 -040016 * License along with this program; if not, see <http://www.gnu.org/licenses>
Steven Rostedtf7d82352012-04-06 00:47:53 +020017 *
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 */
Arnaldo Carvalho de Meloca575ad2016-07-14 11:23:25 -030026#include <inttypes.h>
Steven Rostedtf7d82352012-04-06 00:47:53 +020027#include <stdio.h>
28#include <stdlib.h>
29#include <string.h>
30#include <stdarg.h>
31#include <ctype.h>
32#include <errno.h>
Robert Richter0cf26012012-08-07 19:43:14 +020033#include <stdint.h>
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -030034#include <limits.h>
Arnaldo Carvalho de Meloc3cec9e2016-07-08 15:21:37 -030035#include <linux/string.h>
Steven Rostedtbb5a7312016-11-22 15:00:31 -030036#include <linux/time64.h>
Steven Rostedtf7d82352012-04-06 00:47:53 +020037
Arnaldo Carvalho de Meloca575ad2016-07-14 11:23:25 -030038#include <netinet/in.h>
Steven Rostedtf7d82352012-04-06 00:47:53 +020039#include "event-parse.h"
Steven Rostedt668fe012012-04-06 00:47:55 +020040#include "event-utils.h"
Steven Rostedtf7d82352012-04-06 00:47:53 +020041
42static const char *input_buf;
43static unsigned long long input_buf_ptr;
44static unsigned long long input_buf_siz;
45
Tom Zanussi5205aec2012-04-06 00:47:58 +020046static int is_flag_field;
47static int is_symbolic_field;
48
Steven Rostedtf7d82352012-04-06 00:47:53 +020049static int show_warning = 1;
50
51#define do_warning(fmt, ...) \
52 do { \
53 if (show_warning) \
54 warning(fmt, ##__VA_ARGS__); \
55 } while (0)
56
Namhyung Kim3388cc32014-03-19 10:22:53 +090057#define do_warning_event(event, fmt, ...) \
58 do { \
59 if (!show_warning) \
60 continue; \
61 \
62 if (event) \
63 warning("[%s:%s] " fmt, event->system, \
64 event->name, ##__VA_ARGS__); \
65 else \
66 warning(fmt, ##__VA_ARGS__); \
67 } while (0)
68
Steven Rostedtf7d82352012-04-06 00:47:53 +020069static void init_input_buf(const char *buf, unsigned long long size)
70{
71 input_buf = buf;
72 input_buf_siz = size;
73 input_buf_ptr = 0;
74}
75
76const char *pevent_get_input_buf(void)
77{
78 return input_buf;
79}
80
81unsigned long long pevent_get_input_buf_ptr(void)
82{
83 return input_buf_ptr;
84}
85
86struct event_handler {
87 struct event_handler *next;
88 int id;
89 const char *sys_name;
90 const char *event_name;
91 pevent_event_handler_func func;
92 void *context;
93};
94
95struct pevent_func_params {
96 struct pevent_func_params *next;
97 enum pevent_func_arg_type type;
98};
99
100struct pevent_function_handler {
101 struct pevent_function_handler *next;
102 enum pevent_func_arg_type ret_type;
103 char *name;
104 pevent_func_handler func;
105 struct pevent_func_params *params;
106 int nr_args;
107};
108
109static unsigned long long
110process_defined_func(struct trace_seq *s, void *data, int size,
111 struct event_format *event, struct print_arg *arg);
112
113static void free_func_handle(struct pevent_function_handler *func);
114
115/**
116 * pevent_buffer_init - init buffer for parsing
117 * @buf: buffer to parse
118 * @size: the size of the buffer
119 *
120 * For use with pevent_read_token(), this initializes the internal
121 * buffer that pevent_read_token() will parse.
122 */
123void pevent_buffer_init(const char *buf, unsigned long long size)
124{
125 init_input_buf(buf, size);
126}
127
128void breakpoint(void)
129{
130 static int x;
131 x++;
132}
133
134struct print_arg *alloc_arg(void)
135{
Arnaldo Carvalho de Melo87162d82012-09-12 15:39:59 -0300136 return calloc(1, sizeof(struct print_arg));
Steven Rostedtf7d82352012-04-06 00:47:53 +0200137}
138
139struct cmdline {
140 char *comm;
141 int pid;
142};
143
144static int cmdline_cmp(const void *a, const void *b)
145{
146 const struct cmdline *ca = a;
147 const struct cmdline *cb = b;
148
149 if (ca->pid < cb->pid)
150 return -1;
151 if (ca->pid > cb->pid)
152 return 1;
153
154 return 0;
155}
156
157struct cmdline_list {
158 struct cmdline_list *next;
159 char *comm;
160 int pid;
161};
162
163static int cmdline_init(struct pevent *pevent)
164{
165 struct cmdline_list *cmdlist = pevent->cmdlist;
166 struct cmdline_list *item;
167 struct cmdline *cmdlines;
168 int i;
169
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -0300170 cmdlines = malloc(sizeof(*cmdlines) * pevent->cmdline_count);
171 if (!cmdlines)
172 return -1;
Steven Rostedtf7d82352012-04-06 00:47:53 +0200173
174 i = 0;
175 while (cmdlist) {
176 cmdlines[i].pid = cmdlist->pid;
177 cmdlines[i].comm = cmdlist->comm;
178 i++;
179 item = cmdlist;
180 cmdlist = cmdlist->next;
181 free(item);
182 }
183
184 qsort(cmdlines, pevent->cmdline_count, sizeof(*cmdlines), cmdline_cmp);
185
186 pevent->cmdlines = cmdlines;
187 pevent->cmdlist = NULL;
188
189 return 0;
190}
191
Arnaldo Carvalho de Melo27f94d52012-11-09 17:40:47 -0300192static const char *find_cmdline(struct pevent *pevent, int pid)
Steven Rostedtf7d82352012-04-06 00:47:53 +0200193{
194 const struct cmdline *comm;
195 struct cmdline key;
196
197 if (!pid)
198 return "<idle>";
199
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -0300200 if (!pevent->cmdlines && cmdline_init(pevent))
201 return "<not enough memory for cmdlines!>";
Steven Rostedtf7d82352012-04-06 00:47:53 +0200202
203 key.pid = pid;
204
205 comm = bsearch(&key, pevent->cmdlines, pevent->cmdline_count,
206 sizeof(*pevent->cmdlines), cmdline_cmp);
207
208 if (comm)
209 return comm->comm;
210 return "<...>";
211}
212
213/**
214 * pevent_pid_is_registered - return if a pid has a cmdline registered
215 * @pevent: handle for the pevent
216 * @pid: The pid to check if it has a cmdline registered with.
217 *
218 * Returns 1 if the pid has a cmdline mapped to it
219 * 0 otherwise.
220 */
221int pevent_pid_is_registered(struct pevent *pevent, int pid)
222{
223 const struct cmdline *comm;
224 struct cmdline key;
225
226 if (!pid)
227 return 1;
228
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -0300229 if (!pevent->cmdlines && cmdline_init(pevent))
230 return 0;
Steven Rostedtf7d82352012-04-06 00:47:53 +0200231
232 key.pid = pid;
233
234 comm = bsearch(&key, pevent->cmdlines, pevent->cmdline_count,
235 sizeof(*pevent->cmdlines), cmdline_cmp);
236
237 if (comm)
238 return 1;
239 return 0;
240}
241
242/*
243 * If the command lines have been converted to an array, then
244 * we must add this pid. This is much slower than when cmdlines
245 * are added before the array is initialized.
246 */
247static int add_new_comm(struct pevent *pevent, const char *comm, int pid)
248{
249 struct cmdline *cmdlines = pevent->cmdlines;
250 const struct cmdline *cmdline;
251 struct cmdline key;
252
253 if (!pid)
254 return 0;
255
256 /* avoid duplicates */
257 key.pid = pid;
258
259 cmdline = bsearch(&key, pevent->cmdlines, pevent->cmdline_count,
260 sizeof(*pevent->cmdlines), cmdline_cmp);
261 if (cmdline) {
262 errno = EEXIST;
263 return -1;
264 }
265
266 cmdlines = realloc(cmdlines, sizeof(*cmdlines) * (pevent->cmdline_count + 1));
267 if (!cmdlines) {
268 errno = ENOMEM;
269 return -1;
270 }
271
Steven Rostedtf7d82352012-04-06 00:47:53 +0200272 cmdlines[pevent->cmdline_count].comm = strdup(comm);
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -0300273 if (!cmdlines[pevent->cmdline_count].comm) {
274 free(cmdlines);
275 errno = ENOMEM;
276 return -1;
277 }
278
279 cmdlines[pevent->cmdline_count].pid = pid;
Steven Rostedtf7d82352012-04-06 00:47:53 +0200280
281 if (cmdlines[pevent->cmdline_count].comm)
282 pevent->cmdline_count++;
283
284 qsort(cmdlines, pevent->cmdline_count, sizeof(*cmdlines), cmdline_cmp);
285 pevent->cmdlines = cmdlines;
286
287 return 0;
288}
289
290/**
291 * pevent_register_comm - register a pid / comm mapping
292 * @pevent: handle for the pevent
293 * @comm: the command line to register
294 * @pid: the pid to map the command line to
295 *
296 * This adds a mapping to search for command line names with
297 * a given pid. The comm is duplicated.
298 */
299int pevent_register_comm(struct pevent *pevent, const char *comm, int pid)
300{
301 struct cmdline_list *item;
302
303 if (pevent->cmdlines)
304 return add_new_comm(pevent, comm, pid);
305
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -0300306 item = malloc(sizeof(*item));
307 if (!item)
308 return -1;
309
Josef Bacikdeab6f52015-03-24 09:57:49 -0400310 if (comm)
311 item->comm = strdup(comm);
312 else
313 item->comm = strdup("<...>");
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -0300314 if (!item->comm) {
315 free(item);
316 return -1;
317 }
Steven Rostedtf7d82352012-04-06 00:47:53 +0200318 item->pid = pid;
319 item->next = pevent->cmdlist;
320
321 pevent->cmdlist = item;
322 pevent->cmdline_count++;
323
324 return 0;
325}
326
Steven Rostedt (Red Hat)99ad1412015-03-24 09:57:50 -0400327int pevent_register_trace_clock(struct pevent *pevent, const char *trace_clock)
Yoshihiro YUNOMAE1b372ca2013-11-01 17:53:53 -0400328{
Steven Rostedt (Red Hat)99ad1412015-03-24 09:57:50 -0400329 pevent->trace_clock = strdup(trace_clock);
330 if (!pevent->trace_clock) {
331 errno = ENOMEM;
332 return -1;
333 }
334 return 0;
Yoshihiro YUNOMAE1b372ca2013-11-01 17:53:53 -0400335}
336
Steven Rostedtf7d82352012-04-06 00:47:53 +0200337struct func_map {
338 unsigned long long addr;
339 char *func;
340 char *mod;
341};
342
343struct func_list {
344 struct func_list *next;
345 unsigned long long addr;
346 char *func;
347 char *mod;
348};
349
350static int func_cmp(const void *a, const void *b)
351{
352 const struct func_map *fa = a;
353 const struct func_map *fb = b;
354
355 if (fa->addr < fb->addr)
356 return -1;
357 if (fa->addr > fb->addr)
358 return 1;
359
360 return 0;
361}
362
363/*
364 * We are searching for a record in between, not an exact
365 * match.
366 */
367static int func_bcmp(const void *a, const void *b)
368{
369 const struct func_map *fa = a;
370 const struct func_map *fb = b;
371
372 if ((fa->addr == fb->addr) ||
373
374 (fa->addr > fb->addr &&
375 fa->addr < (fb+1)->addr))
376 return 0;
377
378 if (fa->addr < fb->addr)
379 return -1;
380
381 return 1;
382}
383
384static int func_map_init(struct pevent *pevent)
385{
386 struct func_list *funclist;
387 struct func_list *item;
388 struct func_map *func_map;
389 int i;
390
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -0300391 func_map = malloc(sizeof(*func_map) * (pevent->func_count + 1));
392 if (!func_map)
393 return -1;
394
Steven Rostedtf7d82352012-04-06 00:47:53 +0200395 funclist = pevent->funclist;
396
397 i = 0;
398 while (funclist) {
399 func_map[i].func = funclist->func;
400 func_map[i].addr = funclist->addr;
401 func_map[i].mod = funclist->mod;
402 i++;
403 item = funclist;
404 funclist = funclist->next;
405 free(item);
406 }
407
408 qsort(func_map, pevent->func_count, sizeof(*func_map), func_cmp);
409
410 /*
411 * Add a special record at the end.
412 */
413 func_map[pevent->func_count].func = NULL;
414 func_map[pevent->func_count].addr = 0;
415 func_map[pevent->func_count].mod = NULL;
416
417 pevent->func_map = func_map;
418 pevent->funclist = NULL;
419
420 return 0;
421}
422
423static struct func_map *
Arnaldo Carvalho de Melo33a24712015-07-22 12:36:55 -0300424__find_func(struct pevent *pevent, unsigned long long addr)
Steven Rostedtf7d82352012-04-06 00:47:53 +0200425{
426 struct func_map *func;
427 struct func_map key;
428
429 if (!pevent->func_map)
430 func_map_init(pevent);
431
432 key.addr = addr;
433
434 func = bsearch(&key, pevent->func_map, pevent->func_count,
435 sizeof(*pevent->func_map), func_bcmp);
436
437 return func;
438}
439
Arnaldo Carvalho de Melo33a24712015-07-22 12:36:55 -0300440struct func_resolver {
441 pevent_func_resolver_t *func;
442 void *priv;
443 struct func_map map;
444};
445
446/**
447 * pevent_set_function_resolver - set an alternative function resolver
448 * @pevent: handle for the pevent
449 * @resolver: function to be used
450 * @priv: resolver function private state.
451 *
452 * Some tools may have already a way to resolve kernel functions, allow them to
453 * keep using it instead of duplicating all the entries inside
454 * pevent->funclist.
455 */
456int pevent_set_function_resolver(struct pevent *pevent,
457 pevent_func_resolver_t *func, void *priv)
458{
459 struct func_resolver *resolver = malloc(sizeof(*resolver));
460
461 if (resolver == NULL)
462 return -1;
463
464 resolver->func = func;
465 resolver->priv = priv;
466
467 free(pevent->func_resolver);
468 pevent->func_resolver = resolver;
469
470 return 0;
471}
472
473/**
474 * pevent_reset_function_resolver - reset alternative function resolver
475 * @pevent: handle for the pevent
476 *
477 * Stop using whatever alternative resolver was set, use the default
478 * one instead.
479 */
480void pevent_reset_function_resolver(struct pevent *pevent)
481{
482 free(pevent->func_resolver);
483 pevent->func_resolver = NULL;
484}
485
486static struct func_map *
487find_func(struct pevent *pevent, unsigned long long addr)
488{
489 struct func_map *map;
490
491 if (!pevent->func_resolver)
492 return __find_func(pevent, addr);
493
494 map = &pevent->func_resolver->map;
495 map->mod = NULL;
496 map->addr = addr;
497 map->func = pevent->func_resolver->func(pevent->func_resolver->priv,
498 &map->addr, &map->mod);
499 if (map->func == NULL)
500 return NULL;
501
502 return map;
503}
504
Steven Rostedtf7d82352012-04-06 00:47:53 +0200505/**
506 * pevent_find_function - find a function by a given address
507 * @pevent: handle for the pevent
508 * @addr: the address to find the function with
509 *
510 * Returns a pointer to the function stored that has the given
511 * address. Note, the address does not have to be exact, it
512 * will select the function that would contain the address.
513 */
514const char *pevent_find_function(struct pevent *pevent, unsigned long long addr)
515{
516 struct func_map *map;
517
518 map = find_func(pevent, addr);
519 if (!map)
520 return NULL;
521
522 return map->func;
523}
524
525/**
526 * pevent_find_function_address - find a function address by a given address
527 * @pevent: handle for the pevent
528 * @addr: the address to find the function with
529 *
530 * Returns the address the function starts at. This can be used in
531 * conjunction with pevent_find_function to print both the function
532 * name and the function offset.
533 */
534unsigned long long
535pevent_find_function_address(struct pevent *pevent, unsigned long long addr)
536{
537 struct func_map *map;
538
539 map = find_func(pevent, addr);
540 if (!map)
541 return 0;
542
543 return map->addr;
544}
545
546/**
547 * pevent_register_function - register a function with a given address
548 * @pevent: handle for the pevent
549 * @function: the function name to register
550 * @addr: the address the function starts at
551 * @mod: the kernel module the function may be in (NULL for none)
552 *
553 * This registers a function name with an address and module.
554 * The @func passed in is duplicated.
555 */
556int pevent_register_function(struct pevent *pevent, char *func,
557 unsigned long long addr, char *mod)
558{
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -0300559 struct func_list *item = malloc(sizeof(*item));
Steven Rostedtf7d82352012-04-06 00:47:53 +0200560
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -0300561 if (!item)
562 return -1;
Steven Rostedtf7d82352012-04-06 00:47:53 +0200563
564 item->next = pevent->funclist;
565 item->func = strdup(func);
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -0300566 if (!item->func)
567 goto out_free;
568
569 if (mod) {
Steven Rostedtf7d82352012-04-06 00:47:53 +0200570 item->mod = strdup(mod);
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -0300571 if (!item->mod)
572 goto out_free_func;
573 } else
Steven Rostedtf7d82352012-04-06 00:47:53 +0200574 item->mod = NULL;
575 item->addr = addr;
576
Namhyung Kimca638582012-04-09 11:54:31 +0900577 pevent->funclist = item;
Steven Rostedtf7d82352012-04-06 00:47:53 +0200578 pevent->func_count++;
579
580 return 0;
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -0300581
582out_free_func:
583 free(item->func);
584 item->func = NULL;
585out_free:
586 free(item);
587 errno = ENOMEM;
588 return -1;
Steven Rostedtf7d82352012-04-06 00:47:53 +0200589}
590
591/**
592 * pevent_print_funcs - print out the stored functions
593 * @pevent: handle for the pevent
594 *
595 * This prints out the stored functions.
596 */
597void pevent_print_funcs(struct pevent *pevent)
598{
599 int i;
600
601 if (!pevent->func_map)
602 func_map_init(pevent);
603
604 for (i = 0; i < (int)pevent->func_count; i++) {
605 printf("%016llx %s",
606 pevent->func_map[i].addr,
607 pevent->func_map[i].func);
608 if (pevent->func_map[i].mod)
609 printf(" [%s]\n", pevent->func_map[i].mod);
610 else
611 printf("\n");
612 }
613}
614
615struct printk_map {
616 unsigned long long addr;
617 char *printk;
618};
619
620struct printk_list {
621 struct printk_list *next;
622 unsigned long long addr;
623 char *printk;
624};
625
626static int printk_cmp(const void *a, const void *b)
627{
Namhyung Kim0fc45ef2012-04-09 11:54:29 +0900628 const struct printk_map *pa = a;
629 const struct printk_map *pb = b;
Steven Rostedtf7d82352012-04-06 00:47:53 +0200630
Namhyung Kim0fc45ef2012-04-09 11:54:29 +0900631 if (pa->addr < pb->addr)
Steven Rostedtf7d82352012-04-06 00:47:53 +0200632 return -1;
Namhyung Kim0fc45ef2012-04-09 11:54:29 +0900633 if (pa->addr > pb->addr)
Steven Rostedtf7d82352012-04-06 00:47:53 +0200634 return 1;
635
636 return 0;
637}
638
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -0300639static int printk_map_init(struct pevent *pevent)
Steven Rostedtf7d82352012-04-06 00:47:53 +0200640{
641 struct printk_list *printklist;
642 struct printk_list *item;
643 struct printk_map *printk_map;
644 int i;
645
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -0300646 printk_map = malloc(sizeof(*printk_map) * (pevent->printk_count + 1));
647 if (!printk_map)
648 return -1;
Steven Rostedtf7d82352012-04-06 00:47:53 +0200649
650 printklist = pevent->printklist;
651
652 i = 0;
653 while (printklist) {
654 printk_map[i].printk = printklist->printk;
655 printk_map[i].addr = printklist->addr;
656 i++;
657 item = printklist;
658 printklist = printklist->next;
659 free(item);
660 }
661
662 qsort(printk_map, pevent->printk_count, sizeof(*printk_map), printk_cmp);
663
664 pevent->printk_map = printk_map;
665 pevent->printklist = NULL;
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -0300666
667 return 0;
Steven Rostedtf7d82352012-04-06 00:47:53 +0200668}
669
670static struct printk_map *
671find_printk(struct pevent *pevent, unsigned long long addr)
672{
673 struct printk_map *printk;
674 struct printk_map key;
675
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -0300676 if (!pevent->printk_map && printk_map_init(pevent))
677 return NULL;
Steven Rostedtf7d82352012-04-06 00:47:53 +0200678
679 key.addr = addr;
680
681 printk = bsearch(&key, pevent->printk_map, pevent->printk_count,
682 sizeof(*pevent->printk_map), printk_cmp);
683
684 return printk;
685}
686
687/**
688 * pevent_register_print_string - register a string by its address
689 * @pevent: handle for the pevent
690 * @fmt: the string format to register
691 * @addr: the address the string was located at
692 *
693 * This registers a string by the address it was stored in the kernel.
694 * The @fmt passed in is duplicated.
695 */
Steven Rostedt (Red Hat)18900af2013-11-01 17:53:54 -0400696int pevent_register_print_string(struct pevent *pevent, const char *fmt,
Steven Rostedtf7d82352012-04-06 00:47:53 +0200697 unsigned long long addr)
698{
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -0300699 struct printk_list *item = malloc(sizeof(*item));
Steven Rostedt (Red Hat)18900af2013-11-01 17:53:54 -0400700 char *p;
Steven Rostedtf7d82352012-04-06 00:47:53 +0200701
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -0300702 if (!item)
703 return -1;
Steven Rostedtf7d82352012-04-06 00:47:53 +0200704
705 item->next = pevent->printklist;
Steven Rostedtf7d82352012-04-06 00:47:53 +0200706 item->addr = addr;
707
Steven Rostedt (Red Hat)18900af2013-11-01 17:53:54 -0400708 /* Strip off quotes and '\n' from the end */
709 if (fmt[0] == '"')
710 fmt++;
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -0300711 item->printk = strdup(fmt);
Namhyung Kimca638582012-04-09 11:54:31 +0900712 if (!item->printk)
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -0300713 goto out_free;
Namhyung Kimca638582012-04-09 11:54:31 +0900714
Steven Rostedt (Red Hat)18900af2013-11-01 17:53:54 -0400715 p = item->printk + strlen(item->printk) - 1;
716 if (*p == '"')
717 *p = 0;
718
719 p -= 2;
720 if (strcmp(p, "\\n") == 0)
721 *p = 0;
722
Namhyung Kimca638582012-04-09 11:54:31 +0900723 pevent->printklist = item;
Steven Rostedtf7d82352012-04-06 00:47:53 +0200724 pevent->printk_count++;
725
726 return 0;
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -0300727
728out_free:
729 free(item);
730 errno = ENOMEM;
731 return -1;
Steven Rostedtf7d82352012-04-06 00:47:53 +0200732}
733
734/**
735 * pevent_print_printk - print out the stored strings
736 * @pevent: handle for the pevent
737 *
738 * This prints the string formats that were stored.
739 */
740void pevent_print_printk(struct pevent *pevent)
741{
742 int i;
743
744 if (!pevent->printk_map)
745 printk_map_init(pevent);
746
747 for (i = 0; i < (int)pevent->printk_count; i++) {
748 printf("%016llx %s\n",
749 pevent->printk_map[i].addr,
750 pevent->printk_map[i].printk);
751 }
752}
753
754static struct event_format *alloc_event(void)
755{
Arnaldo Carvalho de Melo87162d82012-09-12 15:39:59 -0300756 return calloc(1, sizeof(struct event_format));
Steven Rostedtf7d82352012-04-06 00:47:53 +0200757}
758
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -0300759static int add_event(struct pevent *pevent, struct event_format *event)
Steven Rostedtf7d82352012-04-06 00:47:53 +0200760{
761 int i;
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -0300762 struct event_format **events = realloc(pevent->events, sizeof(event) *
763 (pevent->nr_events + 1));
764 if (!events)
765 return -1;
Steven Rostedtf7d82352012-04-06 00:47:53 +0200766
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -0300767 pevent->events = events;
Steven Rostedtf7d82352012-04-06 00:47:53 +0200768
769 for (i = 0; i < pevent->nr_events; i++) {
770 if (pevent->events[i]->id > event->id)
771 break;
772 }
773 if (i < pevent->nr_events)
774 memmove(&pevent->events[i + 1],
775 &pevent->events[i],
776 sizeof(event) * (pevent->nr_events - i));
777
778 pevent->events[i] = event;
779 pevent->nr_events++;
780
781 event->pevent = pevent;
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -0300782
783 return 0;
Steven Rostedtf7d82352012-04-06 00:47:53 +0200784}
785
786static int event_item_type(enum event_type type)
787{
788 switch (type) {
789 case EVENT_ITEM ... EVENT_SQUOTE:
790 return 1;
791 case EVENT_ERROR ... EVENT_DELIM:
792 default:
793 return 0;
794 }
795}
796
797static void free_flag_sym(struct print_flag_sym *fsym)
798{
799 struct print_flag_sym *next;
800
801 while (fsym) {
802 next = fsym->next;
803 free(fsym->value);
804 free(fsym->str);
805 free(fsym);
806 fsym = next;
807 }
808}
809
810static void free_arg(struct print_arg *arg)
811{
812 struct print_arg *farg;
813
814 if (!arg)
815 return;
816
817 switch (arg->type) {
818 case PRINT_ATOM:
819 free(arg->atom.atom);
820 break;
821 case PRINT_FIELD:
822 free(arg->field.name);
823 break;
824 case PRINT_FLAGS:
825 free_arg(arg->flags.field);
826 free(arg->flags.delim);
827 free_flag_sym(arg->flags.flags);
828 break;
829 case PRINT_SYMBOL:
830 free_arg(arg->symbol.field);
831 free_flag_sym(arg->symbol.symbols);
832 break;
Namhyung Kime080e6f2012-06-27 09:41:41 +0900833 case PRINT_HEX:
Daniel Borkmann0fe05592017-01-25 02:28:17 +0100834 case PRINT_HEX_STR:
Namhyung Kime080e6f2012-06-27 09:41:41 +0900835 free_arg(arg->hex.field);
836 free_arg(arg->hex.size);
837 break;
Javi Merinob839e1e82015-03-24 11:07:19 +0000838 case PRINT_INT_ARRAY:
839 free_arg(arg->int_array.field);
840 free_arg(arg->int_array.count);
841 free_arg(arg->int_array.el_size);
842 break;
Steven Rostedtf7d82352012-04-06 00:47:53 +0200843 case PRINT_TYPE:
844 free(arg->typecast.type);
845 free_arg(arg->typecast.item);
846 break;
847 case PRINT_STRING:
848 case PRINT_BSTRING:
849 free(arg->string.string);
850 break;
Steven Rostedt (Red Hat)473a7782014-06-02 23:20:16 -0400851 case PRINT_BITMASK:
852 free(arg->bitmask.bitmask);
853 break;
Steven Rostedtf7d82352012-04-06 00:47:53 +0200854 case PRINT_DYNAMIC_ARRAY:
He Kuang76055942015-08-29 04:22:05 +0000855 case PRINT_DYNAMIC_ARRAY_LEN:
Steven Rostedtf7d82352012-04-06 00:47:53 +0200856 free(arg->dynarray.index);
857 break;
858 case PRINT_OP:
859 free(arg->op.op);
860 free_arg(arg->op.left);
861 free_arg(arg->op.right);
862 break;
863 case PRINT_FUNC:
864 while (arg->func.args) {
865 farg = arg->func.args;
866 arg->func.args = farg->next;
867 free_arg(farg);
868 }
869 break;
870
871 case PRINT_NULL:
872 default:
873 break;
874 }
875
876 free(arg);
877}
878
879static enum event_type get_type(int ch)
880{
881 if (ch == '\n')
882 return EVENT_NEWLINE;
883 if (isspace(ch))
884 return EVENT_SPACE;
885 if (isalnum(ch) || ch == '_')
886 return EVENT_ITEM;
887 if (ch == '\'')
888 return EVENT_SQUOTE;
889 if (ch == '"')
890 return EVENT_DQUOTE;
891 if (!isprint(ch))
892 return EVENT_NONE;
893 if (ch == '(' || ch == ')' || ch == ',')
894 return EVENT_DELIM;
895
896 return EVENT_OP;
897}
898
899static int __read_char(void)
900{
901 if (input_buf_ptr >= input_buf_siz)
902 return -1;
903
904 return input_buf[input_buf_ptr++];
905}
906
907static int __peek_char(void)
908{
909 if (input_buf_ptr >= input_buf_siz)
910 return -1;
911
912 return input_buf[input_buf_ptr];
913}
914
915/**
916 * pevent_peek_char - peek at the next character that will be read
917 *
918 * Returns the next character read, or -1 if end of buffer.
919 */
920int pevent_peek_char(void)
921{
922 return __peek_char();
923}
924
Namhyung Kimdeba3fb2012-04-09 11:54:30 +0900925static int extend_token(char **tok, char *buf, int size)
926{
927 char *newtok = realloc(*tok, size);
928
929 if (!newtok) {
930 free(*tok);
931 *tok = NULL;
932 return -1;
933 }
934
935 if (!*tok)
936 strcpy(newtok, buf);
937 else
938 strcat(newtok, buf);
939 *tok = newtok;
940
941 return 0;
942}
943
Steven Rostedtf7d82352012-04-06 00:47:53 +0200944static enum event_type force_token(const char *str, char **tok);
945
946static enum event_type __read_token(char **tok)
947{
948 char buf[BUFSIZ];
949 int ch, last_ch, quote_ch, next_ch;
950 int i = 0;
951 int tok_size = 0;
952 enum event_type type;
953
954 *tok = NULL;
955
956
957 ch = __read_char();
958 if (ch < 0)
959 return EVENT_NONE;
960
961 type = get_type(ch);
962 if (type == EVENT_NONE)
963 return type;
964
965 buf[i++] = ch;
966
967 switch (type) {
968 case EVENT_NEWLINE:
969 case EVENT_DELIM:
Arnaldo Carvalho de Melo0dbca1e2012-09-12 15:39:59 -0300970 if (asprintf(tok, "%c", ch) < 0)
971 return EVENT_ERROR;
972
Steven Rostedtf7d82352012-04-06 00:47:53 +0200973 return type;
974
975 case EVENT_OP:
976 switch (ch) {
977 case '-':
978 next_ch = __peek_char();
979 if (next_ch == '>') {
980 buf[i++] = __read_char();
981 break;
982 }
983 /* fall through */
984 case '+':
985 case '|':
986 case '&':
987 case '>':
988 case '<':
989 last_ch = ch;
990 ch = __peek_char();
991 if (ch != last_ch)
992 goto test_equal;
993 buf[i++] = __read_char();
994 switch (last_ch) {
995 case '>':
996 case '<':
997 goto test_equal;
998 default:
999 break;
1000 }
1001 break;
1002 case '!':
1003 case '=':
1004 goto test_equal;
1005 default: /* what should we do instead? */
1006 break;
1007 }
1008 buf[i] = 0;
1009 *tok = strdup(buf);
1010 return type;
1011
1012 test_equal:
1013 ch = __peek_char();
1014 if (ch == '=')
1015 buf[i++] = __read_char();
1016 goto out;
1017
1018 case EVENT_DQUOTE:
1019 case EVENT_SQUOTE:
1020 /* don't keep quotes */
1021 i--;
1022 quote_ch = ch;
1023 last_ch = 0;
1024 concat:
1025 do {
1026 if (i == (BUFSIZ - 1)) {
1027 buf[i] = 0;
Steven Rostedtf7d82352012-04-06 00:47:53 +02001028 tok_size += BUFSIZ;
Namhyung Kimdeba3fb2012-04-09 11:54:30 +09001029
1030 if (extend_token(tok, buf, tok_size) < 0)
1031 return EVENT_NONE;
Steven Rostedtf7d82352012-04-06 00:47:53 +02001032 i = 0;
1033 }
1034 last_ch = ch;
1035 ch = __read_char();
1036 buf[i++] = ch;
1037 /* the '\' '\' will cancel itself */
1038 if (ch == '\\' && last_ch == '\\')
1039 last_ch = 0;
1040 } while (ch != quote_ch || last_ch == '\\');
1041 /* remove the last quote */
1042 i--;
1043
1044 /*
1045 * For strings (double quotes) check the next token.
1046 * If it is another string, concatinate the two.
1047 */
1048 if (type == EVENT_DQUOTE) {
1049 unsigned long long save_input_buf_ptr = input_buf_ptr;
1050
1051 do {
1052 ch = __read_char();
1053 } while (isspace(ch));
1054 if (ch == '"')
1055 goto concat;
1056 input_buf_ptr = save_input_buf_ptr;
1057 }
1058
1059 goto out;
1060
1061 case EVENT_ERROR ... EVENT_SPACE:
1062 case EVENT_ITEM:
1063 default:
1064 break;
1065 }
1066
1067 while (get_type(__peek_char()) == type) {
1068 if (i == (BUFSIZ - 1)) {
1069 buf[i] = 0;
Steven Rostedtf7d82352012-04-06 00:47:53 +02001070 tok_size += BUFSIZ;
Namhyung Kimdeba3fb2012-04-09 11:54:30 +09001071
1072 if (extend_token(tok, buf, tok_size) < 0)
1073 return EVENT_NONE;
Steven Rostedtf7d82352012-04-06 00:47:53 +02001074 i = 0;
1075 }
1076 ch = __read_char();
1077 buf[i++] = ch;
1078 }
1079
1080 out:
1081 buf[i] = 0;
Namhyung Kimdeba3fb2012-04-09 11:54:30 +09001082 if (extend_token(tok, buf, tok_size + i + 1) < 0)
Steven Rostedtf7d82352012-04-06 00:47:53 +02001083 return EVENT_NONE;
1084
1085 if (type == EVENT_ITEM) {
1086 /*
1087 * Older versions of the kernel has a bug that
1088 * creates invalid symbols and will break the mac80211
1089 * parsing. This is a work around to that bug.
1090 *
1091 * See Linux kernel commit:
1092 * 811cb50baf63461ce0bdb234927046131fc7fa8b
1093 */
1094 if (strcmp(*tok, "LOCAL_PR_FMT") == 0) {
1095 free(*tok);
1096 *tok = NULL;
Michael Sartain952a99c2018-01-11 19:47:42 -05001097 return force_token("\"%s\" ", tok);
Steven Rostedtf7d82352012-04-06 00:47:53 +02001098 } else if (strcmp(*tok, "STA_PR_FMT") == 0) {
1099 free(*tok);
1100 *tok = NULL;
1101 return force_token("\" sta:%pM\" ", tok);
1102 } else if (strcmp(*tok, "VIF_PR_FMT") == 0) {
1103 free(*tok);
1104 *tok = NULL;
1105 return force_token("\" vif:%p(%d)\" ", tok);
1106 }
1107 }
1108
1109 return type;
1110}
1111
1112static enum event_type force_token(const char *str, char **tok)
1113{
1114 const char *save_input_buf;
1115 unsigned long long save_input_buf_ptr;
1116 unsigned long long save_input_buf_siz;
1117 enum event_type type;
1118
1119 /* save off the current input pointers */
1120 save_input_buf = input_buf;
1121 save_input_buf_ptr = input_buf_ptr;
1122 save_input_buf_siz = input_buf_siz;
1123
1124 init_input_buf(str, strlen(str));
1125
1126 type = __read_token(tok);
1127
1128 /* reset back to original token */
1129 input_buf = save_input_buf;
1130 input_buf_ptr = save_input_buf_ptr;
1131 input_buf_siz = save_input_buf_siz;
1132
1133 return type;
1134}
1135
1136static void free_token(char *tok)
1137{
1138 if (tok)
1139 free(tok);
1140}
1141
1142static enum event_type read_token(char **tok)
1143{
1144 enum event_type type;
1145
1146 for (;;) {
1147 type = __read_token(tok);
1148 if (type != EVENT_SPACE)
1149 return type;
1150
1151 free_token(*tok);
1152 }
1153
1154 /* not reached */
1155 *tok = NULL;
1156 return EVENT_NONE;
1157}
1158
1159/**
1160 * pevent_read_token - access to utilites to use the pevent parser
1161 * @tok: The token to return
1162 *
1163 * This will parse tokens from the string given by
1164 * pevent_init_data().
1165 *
1166 * Returns the token type.
1167 */
1168enum event_type pevent_read_token(char **tok)
1169{
1170 return read_token(tok);
1171}
1172
1173/**
1174 * pevent_free_token - free a token returned by pevent_read_token
1175 * @token: the token to free
1176 */
1177void pevent_free_token(char *token)
1178{
1179 free_token(token);
1180}
1181
1182/* no newline */
1183static enum event_type read_token_item(char **tok)
1184{
1185 enum event_type type;
1186
1187 for (;;) {
1188 type = __read_token(tok);
1189 if (type != EVENT_SPACE && type != EVENT_NEWLINE)
1190 return type;
1191 free_token(*tok);
1192 *tok = NULL;
1193 }
1194
1195 /* not reached */
1196 *tok = NULL;
1197 return EVENT_NONE;
1198}
1199
1200static int test_type(enum event_type type, enum event_type expect)
1201{
1202 if (type != expect) {
1203 do_warning("Error: expected type %d but read %d",
1204 expect, type);
1205 return -1;
1206 }
1207 return 0;
1208}
1209
1210static int test_type_token(enum event_type type, const char *token,
1211 enum event_type expect, const char *expect_tok)
1212{
1213 if (type != expect) {
1214 do_warning("Error: expected type %d but read %d",
1215 expect, type);
1216 return -1;
1217 }
1218
1219 if (strcmp(token, expect_tok) != 0) {
1220 do_warning("Error: expected '%s' but read '%s'",
1221 expect_tok, token);
1222 return -1;
1223 }
1224 return 0;
1225}
1226
1227static int __read_expect_type(enum event_type expect, char **tok, int newline_ok)
1228{
1229 enum event_type type;
1230
1231 if (newline_ok)
1232 type = read_token(tok);
1233 else
1234 type = read_token_item(tok);
1235 return test_type(type, expect);
1236}
1237
1238static int read_expect_type(enum event_type expect, char **tok)
1239{
1240 return __read_expect_type(expect, tok, 1);
1241}
1242
1243static int __read_expected(enum event_type expect, const char *str,
1244 int newline_ok)
1245{
1246 enum event_type type;
1247 char *token;
1248 int ret;
1249
1250 if (newline_ok)
1251 type = read_token(&token);
1252 else
1253 type = read_token_item(&token);
1254
1255 ret = test_type_token(type, token, expect, str);
1256
1257 free_token(token);
1258
1259 return ret;
1260}
1261
1262static int read_expected(enum event_type expect, const char *str)
1263{
1264 return __read_expected(expect, str, 1);
1265}
1266
1267static int read_expected_item(enum event_type expect, const char *str)
1268{
1269 return __read_expected(expect, str, 0);
1270}
1271
1272static char *event_read_name(void)
1273{
1274 char *token;
1275
1276 if (read_expected(EVENT_ITEM, "name") < 0)
1277 return NULL;
1278
1279 if (read_expected(EVENT_OP, ":") < 0)
1280 return NULL;
1281
1282 if (read_expect_type(EVENT_ITEM, &token) < 0)
1283 goto fail;
1284
1285 return token;
1286
1287 fail:
1288 free_token(token);
1289 return NULL;
1290}
1291
1292static int event_read_id(void)
1293{
1294 char *token;
1295 int id;
1296
1297 if (read_expected_item(EVENT_ITEM, "ID") < 0)
1298 return -1;
1299
1300 if (read_expected(EVENT_OP, ":") < 0)
1301 return -1;
1302
1303 if (read_expect_type(EVENT_ITEM, &token) < 0)
1304 goto fail;
1305
1306 id = strtoul(token, NULL, 0);
1307 free_token(token);
1308 return id;
1309
1310 fail:
1311 free_token(token);
1312 return -1;
1313}
1314
1315static int field_is_string(struct format_field *field)
1316{
1317 if ((field->flags & FIELD_IS_ARRAY) &&
1318 (strstr(field->type, "char") || strstr(field->type, "u8") ||
1319 strstr(field->type, "s8")))
1320 return 1;
1321
1322 return 0;
1323}
1324
1325static int field_is_dynamic(struct format_field *field)
1326{
1327 if (strncmp(field->type, "__data_loc", 10) == 0)
1328 return 1;
1329
1330 return 0;
1331}
1332
1333static int field_is_long(struct format_field *field)
1334{
1335 /* includes long long */
1336 if (strstr(field->type, "long"))
1337 return 1;
1338
1339 return 0;
1340}
1341
Jiri Olsae23c1a52013-01-24 21:46:43 +01001342static unsigned int type_size(const char *name)
1343{
1344 /* This covers all FIELD_IS_STRING types. */
1345 static struct {
1346 const char *type;
1347 unsigned int size;
1348 } table[] = {
1349 { "u8", 1 },
1350 { "u16", 2 },
1351 { "u32", 4 },
1352 { "u64", 8 },
1353 { "s8", 1 },
1354 { "s16", 2 },
1355 { "s32", 4 },
1356 { "s64", 8 },
1357 { "char", 1 },
1358 { },
1359 };
1360 int i;
1361
1362 for (i = 0; table[i].type; i++) {
1363 if (!strcmp(table[i].type, name))
1364 return table[i].size;
1365 }
1366
1367 return 0;
1368}
1369
Steven Rostedtf7d82352012-04-06 00:47:53 +02001370static int event_read_fields(struct event_format *event, struct format_field **fields)
1371{
1372 struct format_field *field = NULL;
1373 enum event_type type;
1374 char *token;
1375 char *last_token;
1376 int count = 0;
1377
1378 do {
Jiri Olsae23c1a52013-01-24 21:46:43 +01001379 unsigned int size_dynamic = 0;
1380
Steven Rostedtf7d82352012-04-06 00:47:53 +02001381 type = read_token(&token);
1382 if (type == EVENT_NEWLINE) {
1383 free_token(token);
1384 return count;
1385 }
1386
1387 count++;
1388
1389 if (test_type_token(type, token, EVENT_ITEM, "field"))
1390 goto fail;
1391 free_token(token);
1392
1393 type = read_token(&token);
1394 /*
1395 * The ftrace fields may still use the "special" name.
1396 * Just ignore it.
1397 */
1398 if (event->flags & EVENT_FL_ISFTRACE &&
1399 type == EVENT_ITEM && strcmp(token, "special") == 0) {
1400 free_token(token);
1401 type = read_token(&token);
1402 }
1403
1404 if (test_type_token(type, token, EVENT_OP, ":") < 0)
1405 goto fail;
1406
1407 free_token(token);
1408 if (read_expect_type(EVENT_ITEM, &token) < 0)
1409 goto fail;
1410
1411 last_token = token;
1412
Arnaldo Carvalho de Melo87162d82012-09-12 15:39:59 -03001413 field = calloc(1, sizeof(*field));
1414 if (!field)
1415 goto fail;
1416
Steven Rostedtf7d82352012-04-06 00:47:53 +02001417 field->event = event;
1418
1419 /* read the rest of the type */
1420 for (;;) {
1421 type = read_token(&token);
1422 if (type == EVENT_ITEM ||
1423 (type == EVENT_OP && strcmp(token, "*") == 0) ||
1424 /*
1425 * Some of the ftrace fields are broken and have
1426 * an illegal "." in them.
1427 */
1428 (event->flags & EVENT_FL_ISFTRACE &&
1429 type == EVENT_OP && strcmp(token, ".") == 0)) {
1430
1431 if (strcmp(token, "*") == 0)
1432 field->flags |= FIELD_IS_POINTER;
1433
1434 if (field->type) {
Namhyung Kimd2864472012-04-09 11:54:33 +09001435 char *new_type;
1436 new_type = realloc(field->type,
1437 strlen(field->type) +
1438 strlen(last_token) + 2);
1439 if (!new_type) {
1440 free(last_token);
1441 goto fail;
1442 }
1443 field->type = new_type;
Steven Rostedtf7d82352012-04-06 00:47:53 +02001444 strcat(field->type, " ");
1445 strcat(field->type, last_token);
1446 free(last_token);
1447 } else
1448 field->type = last_token;
1449 last_token = token;
1450 continue;
1451 }
1452
1453 break;
1454 }
1455
1456 if (!field->type) {
Namhyung Kim3388cc32014-03-19 10:22:53 +09001457 do_warning_event(event, "%s: no type found", __func__);
Steven Rostedtf7d82352012-04-06 00:47:53 +02001458 goto fail;
1459 }
Jiri Olsad3542432015-04-18 17:50:18 +02001460 field->name = field->alias = last_token;
Steven Rostedtf7d82352012-04-06 00:47:53 +02001461
1462 if (test_type(type, EVENT_OP))
1463 goto fail;
1464
1465 if (strcmp(token, "[") == 0) {
1466 enum event_type last_type = type;
1467 char *brackets = token;
Namhyung Kimd2864472012-04-09 11:54:33 +09001468 char *new_brackets;
Steven Rostedtf7d82352012-04-06 00:47:53 +02001469 int len;
1470
1471 field->flags |= FIELD_IS_ARRAY;
1472
1473 type = read_token(&token);
1474
1475 if (type == EVENT_ITEM)
1476 field->arraylen = strtoul(token, NULL, 0);
1477 else
1478 field->arraylen = 0;
1479
1480 while (strcmp(token, "]") != 0) {
1481 if (last_type == EVENT_ITEM &&
1482 type == EVENT_ITEM)
1483 len = 2;
1484 else
1485 len = 1;
1486 last_type = type;
1487
Namhyung Kimd2864472012-04-09 11:54:33 +09001488 new_brackets = realloc(brackets,
1489 strlen(brackets) +
1490 strlen(token) + len);
1491 if (!new_brackets) {
1492 free(brackets);
1493 goto fail;
1494 }
1495 brackets = new_brackets;
Steven Rostedtf7d82352012-04-06 00:47:53 +02001496 if (len == 2)
1497 strcat(brackets, " ");
1498 strcat(brackets, token);
1499 /* We only care about the last token */
1500 field->arraylen = strtoul(token, NULL, 0);
1501 free_token(token);
1502 type = read_token(&token);
1503 if (type == EVENT_NONE) {
Namhyung Kim3388cc32014-03-19 10:22:53 +09001504 do_warning_event(event, "failed to find token");
Steven Rostedtf7d82352012-04-06 00:47:53 +02001505 goto fail;
1506 }
1507 }
1508
1509 free_token(token);
1510
Namhyung Kimd2864472012-04-09 11:54:33 +09001511 new_brackets = realloc(brackets, strlen(brackets) + 2);
1512 if (!new_brackets) {
1513 free(brackets);
1514 goto fail;
1515 }
1516 brackets = new_brackets;
Steven Rostedtf7d82352012-04-06 00:47:53 +02001517 strcat(brackets, "]");
1518
1519 /* add brackets to type */
1520
1521 type = read_token(&token);
1522 /*
1523 * If the next token is not an OP, then it is of
1524 * the format: type [] item;
1525 */
1526 if (type == EVENT_ITEM) {
Namhyung Kimd2864472012-04-09 11:54:33 +09001527 char *new_type;
1528 new_type = realloc(field->type,
1529 strlen(field->type) +
1530 strlen(field->name) +
1531 strlen(brackets) + 2);
1532 if (!new_type) {
1533 free(brackets);
1534 goto fail;
1535 }
1536 field->type = new_type;
Steven Rostedtf7d82352012-04-06 00:47:53 +02001537 strcat(field->type, " ");
1538 strcat(field->type, field->name);
Jiri Olsae23c1a52013-01-24 21:46:43 +01001539 size_dynamic = type_size(field->name);
Steven Rostedtf7d82352012-04-06 00:47:53 +02001540 free_token(field->name);
1541 strcat(field->type, brackets);
Jiri Olsad3542432015-04-18 17:50:18 +02001542 field->name = field->alias = token;
Steven Rostedtf7d82352012-04-06 00:47:53 +02001543 type = read_token(&token);
1544 } else {
Namhyung Kimd2864472012-04-09 11:54:33 +09001545 char *new_type;
1546 new_type = realloc(field->type,
1547 strlen(field->type) +
1548 strlen(brackets) + 1);
1549 if (!new_type) {
1550 free(brackets);
1551 goto fail;
1552 }
1553 field->type = new_type;
Steven Rostedtf7d82352012-04-06 00:47:53 +02001554 strcat(field->type, brackets);
1555 }
1556 free(brackets);
1557 }
1558
1559 if (field_is_string(field))
1560 field->flags |= FIELD_IS_STRING;
1561 if (field_is_dynamic(field))
1562 field->flags |= FIELD_IS_DYNAMIC;
1563 if (field_is_long(field))
1564 field->flags |= FIELD_IS_LONG;
1565
1566 if (test_type_token(type, token, EVENT_OP, ";"))
1567 goto fail;
1568 free_token(token);
1569
1570 if (read_expected(EVENT_ITEM, "offset") < 0)
1571 goto fail_expect;
1572
1573 if (read_expected(EVENT_OP, ":") < 0)
1574 goto fail_expect;
1575
1576 if (read_expect_type(EVENT_ITEM, &token))
1577 goto fail;
1578 field->offset = strtoul(token, NULL, 0);
1579 free_token(token);
1580
1581 if (read_expected(EVENT_OP, ";") < 0)
1582 goto fail_expect;
1583
1584 if (read_expected(EVENT_ITEM, "size") < 0)
1585 goto fail_expect;
1586
1587 if (read_expected(EVENT_OP, ":") < 0)
1588 goto fail_expect;
1589
1590 if (read_expect_type(EVENT_ITEM, &token))
1591 goto fail;
1592 field->size = strtoul(token, NULL, 0);
1593 free_token(token);
1594
1595 if (read_expected(EVENT_OP, ";") < 0)
1596 goto fail_expect;
1597
1598 type = read_token(&token);
1599 if (type != EVENT_NEWLINE) {
1600 /* newer versions of the kernel have a "signed" type */
1601 if (test_type_token(type, token, EVENT_ITEM, "signed"))
1602 goto fail;
1603
1604 free_token(token);
1605
1606 if (read_expected(EVENT_OP, ":") < 0)
1607 goto fail_expect;
1608
1609 if (read_expect_type(EVENT_ITEM, &token))
1610 goto fail;
1611
Tom Zanussi10ee9fa2013-01-18 13:51:25 -06001612 if (strtoul(token, NULL, 0))
1613 field->flags |= FIELD_IS_SIGNED;
Steven Rostedtf7d82352012-04-06 00:47:53 +02001614
1615 free_token(token);
1616 if (read_expected(EVENT_OP, ";") < 0)
1617 goto fail_expect;
1618
1619 if (read_expect_type(EVENT_NEWLINE, &token))
1620 goto fail;
1621 }
1622
1623 free_token(token);
1624
1625 if (field->flags & FIELD_IS_ARRAY) {
1626 if (field->arraylen)
1627 field->elementsize = field->size / field->arraylen;
Jiri Olsae23c1a52013-01-24 21:46:43 +01001628 else if (field->flags & FIELD_IS_DYNAMIC)
1629 field->elementsize = size_dynamic;
Steven Rostedtf7d82352012-04-06 00:47:53 +02001630 else if (field->flags & FIELD_IS_STRING)
1631 field->elementsize = 1;
Jiri Olsae23c1a52013-01-24 21:46:43 +01001632 else if (field->flags & FIELD_IS_LONG)
1633 field->elementsize = event->pevent ?
1634 event->pevent->long_size :
1635 sizeof(long);
Steven Rostedtf7d82352012-04-06 00:47:53 +02001636 } else
1637 field->elementsize = field->size;
1638
1639 *fields = field;
1640 fields = &field->next;
1641
1642 } while (1);
1643
1644 return 0;
1645
1646fail:
1647 free_token(token);
1648fail_expect:
Namhyung Kim57d34dc2012-05-23 11:36:47 +09001649 if (field) {
1650 free(field->type);
1651 free(field->name);
Steven Rostedtf7d82352012-04-06 00:47:53 +02001652 free(field);
Namhyung Kim57d34dc2012-05-23 11:36:47 +09001653 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02001654 return -1;
1655}
1656
1657static int event_read_format(struct event_format *event)
1658{
1659 char *token;
1660 int ret;
1661
1662 if (read_expected_item(EVENT_ITEM, "format") < 0)
1663 return -1;
1664
1665 if (read_expected(EVENT_OP, ":") < 0)
1666 return -1;
1667
1668 if (read_expect_type(EVENT_NEWLINE, &token))
1669 goto fail;
1670 free_token(token);
1671
1672 ret = event_read_fields(event, &event->format.common_fields);
1673 if (ret < 0)
1674 return ret;
1675 event->format.nr_common = ret;
1676
1677 ret = event_read_fields(event, &event->format.fields);
1678 if (ret < 0)
1679 return ret;
1680 event->format.nr_fields = ret;
1681
1682 return 0;
1683
1684 fail:
1685 free_token(token);
1686 return -1;
1687}
1688
1689static enum event_type
1690process_arg_token(struct event_format *event, struct print_arg *arg,
1691 char **tok, enum event_type type);
1692
1693static enum event_type
1694process_arg(struct event_format *event, struct print_arg *arg, char **tok)
1695{
1696 enum event_type type;
1697 char *token;
1698
1699 type = read_token(&token);
1700 *tok = token;
1701
1702 return process_arg_token(event, arg, tok, type);
1703}
1704
1705static enum event_type
1706process_op(struct event_format *event, struct print_arg *arg, char **tok);
1707
Steven Rostedteff2c922013-11-18 14:23:14 -05001708/*
1709 * For __print_symbolic() and __print_flags, we need to completely
1710 * evaluate the first argument, which defines what to print next.
1711 */
1712static enum event_type
1713process_field_arg(struct event_format *event, struct print_arg *arg, char **tok)
1714{
1715 enum event_type type;
1716
1717 type = process_arg(event, arg, tok);
1718
1719 while (type == EVENT_OP) {
1720 type = process_op(event, arg, tok);
1721 }
1722
1723 return type;
1724}
1725
Steven Rostedtf7d82352012-04-06 00:47:53 +02001726static enum event_type
1727process_cond(struct event_format *event, struct print_arg *top, char **tok)
1728{
1729 struct print_arg *arg, *left, *right;
1730 enum event_type type;
1731 char *token = NULL;
1732
1733 arg = alloc_arg();
1734 left = alloc_arg();
1735 right = alloc_arg();
1736
Namhyung Kimb1ac7542012-09-20 11:09:19 +09001737 if (!arg || !left || !right) {
Namhyung Kim3388cc32014-03-19 10:22:53 +09001738 do_warning_event(event, "%s: not enough memory!", __func__);
Namhyung Kimb1ac7542012-09-20 11:09:19 +09001739 /* arg will be freed at out_free */
1740 free_arg(left);
1741 free_arg(right);
1742 goto out_free;
1743 }
1744
Steven Rostedtf7d82352012-04-06 00:47:53 +02001745 arg->type = PRINT_OP;
1746 arg->op.left = left;
1747 arg->op.right = right;
1748
1749 *tok = NULL;
1750 type = process_arg(event, left, &token);
1751
1752 again:
Dean Nelson6f56e9c2015-08-20 11:16:32 -04001753 if (type == EVENT_ERROR)
1754 goto out_free;
1755
Steven Rostedtf7d82352012-04-06 00:47:53 +02001756 /* Handle other operations in the arguments */
1757 if (type == EVENT_OP && strcmp(token, ":") != 0) {
1758 type = process_op(event, left, &token);
1759 goto again;
1760 }
1761
1762 if (test_type_token(type, token, EVENT_OP, ":"))
1763 goto out_free;
1764
1765 arg->op.op = token;
1766
1767 type = process_arg(event, right, &token);
1768
1769 top->op.right = arg;
1770
1771 *tok = token;
1772 return type;
1773
1774out_free:
1775 /* Top may point to itself */
1776 top->op.right = NULL;
1777 free_token(token);
1778 free_arg(arg);
1779 return EVENT_ERROR;
1780}
1781
1782static enum event_type
1783process_array(struct event_format *event, struct print_arg *top, char **tok)
1784{
1785 struct print_arg *arg;
1786 enum event_type type;
1787 char *token = NULL;
1788
1789 arg = alloc_arg();
Namhyung Kimb1ac7542012-09-20 11:09:19 +09001790 if (!arg) {
Namhyung Kim3388cc32014-03-19 10:22:53 +09001791 do_warning_event(event, "%s: not enough memory!", __func__);
Namhyung Kimb1ac7542012-09-20 11:09:19 +09001792 /* '*tok' is set to top->op.op. No need to free. */
1793 *tok = NULL;
1794 return EVENT_ERROR;
1795 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02001796
1797 *tok = NULL;
1798 type = process_arg(event, arg, &token);
1799 if (test_type_token(type, token, EVENT_OP, "]"))
1800 goto out_free;
1801
1802 top->op.right = arg;
1803
1804 free_token(token);
1805 type = read_token_item(&token);
1806 *tok = token;
1807
1808 return type;
1809
1810out_free:
Namhyung Kim1bce6e02012-09-19 15:58:41 +09001811 free_token(token);
Steven Rostedtf7d82352012-04-06 00:47:53 +02001812 free_arg(arg);
1813 return EVENT_ERROR;
1814}
1815
1816static int get_op_prio(char *op)
1817{
1818 if (!op[1]) {
1819 switch (op[0]) {
1820 case '~':
1821 case '!':
1822 return 4;
1823 case '*':
1824 case '/':
1825 case '%':
1826 return 6;
1827 case '+':
1828 case '-':
1829 return 7;
1830 /* '>>' and '<<' are 8 */
1831 case '<':
1832 case '>':
1833 return 9;
1834 /* '==' and '!=' are 10 */
1835 case '&':
1836 return 11;
1837 case '^':
1838 return 12;
1839 case '|':
1840 return 13;
1841 case '?':
1842 return 16;
1843 default:
Vaibhav Nagarnaik14ffde02012-04-06 00:48:01 +02001844 do_warning("unknown op '%c'", op[0]);
Steven Rostedtf7d82352012-04-06 00:47:53 +02001845 return -1;
1846 }
1847 } else {
1848 if (strcmp(op, "++") == 0 ||
1849 strcmp(op, "--") == 0) {
1850 return 3;
1851 } else if (strcmp(op, ">>") == 0 ||
1852 strcmp(op, "<<") == 0) {
1853 return 8;
1854 } else if (strcmp(op, ">=") == 0 ||
1855 strcmp(op, "<=") == 0) {
1856 return 9;
1857 } else if (strcmp(op, "==") == 0 ||
1858 strcmp(op, "!=") == 0) {
1859 return 10;
1860 } else if (strcmp(op, "&&") == 0) {
1861 return 14;
1862 } else if (strcmp(op, "||") == 0) {
1863 return 15;
1864 } else {
Vaibhav Nagarnaik14ffde02012-04-06 00:48:01 +02001865 do_warning("unknown op '%s'", op);
Steven Rostedtf7d82352012-04-06 00:47:53 +02001866 return -1;
1867 }
1868 }
1869}
1870
Vaibhav Nagarnaik14ffde02012-04-06 00:48:01 +02001871static int set_op_prio(struct print_arg *arg)
Steven Rostedtf7d82352012-04-06 00:47:53 +02001872{
1873
1874 /* single ops are the greatest */
Vaibhav Nagarnaik14ffde02012-04-06 00:48:01 +02001875 if (!arg->op.left || arg->op.left->type == PRINT_NULL)
Steven Rostedtf7d82352012-04-06 00:47:53 +02001876 arg->op.prio = 0;
Vaibhav Nagarnaik14ffde02012-04-06 00:48:01 +02001877 else
1878 arg->op.prio = get_op_prio(arg->op.op);
Steven Rostedtf7d82352012-04-06 00:47:53 +02001879
Vaibhav Nagarnaik14ffde02012-04-06 00:48:01 +02001880 return arg->op.prio;
Steven Rostedtf7d82352012-04-06 00:47:53 +02001881}
1882
1883/* Note, *tok does not get freed, but will most likely be saved */
1884static enum event_type
1885process_op(struct event_format *event, struct print_arg *arg, char **tok)
1886{
1887 struct print_arg *left, *right = NULL;
1888 enum event_type type;
1889 char *token;
1890
1891 /* the op is passed in via tok */
1892 token = *tok;
1893
1894 if (arg->type == PRINT_OP && !arg->op.left) {
1895 /* handle single op */
1896 if (token[1]) {
Namhyung Kim3388cc32014-03-19 10:22:53 +09001897 do_warning_event(event, "bad op token %s", token);
Steven Rostedtf7d82352012-04-06 00:47:53 +02001898 goto out_free;
1899 }
1900 switch (token[0]) {
1901 case '~':
1902 case '!':
1903 case '+':
1904 case '-':
1905 break;
1906 default:
Namhyung Kim3388cc32014-03-19 10:22:53 +09001907 do_warning_event(event, "bad op token %s", token);
Steven Rostedtf7d82352012-04-06 00:47:53 +02001908 goto out_free;
1909
1910 }
1911
1912 /* make an empty left */
1913 left = alloc_arg();
Namhyung Kimb1ac7542012-09-20 11:09:19 +09001914 if (!left)
1915 goto out_warn_free;
1916
Steven Rostedtf7d82352012-04-06 00:47:53 +02001917 left->type = PRINT_NULL;
1918 arg->op.left = left;
1919
1920 right = alloc_arg();
Namhyung Kimb1ac7542012-09-20 11:09:19 +09001921 if (!right)
1922 goto out_warn_free;
1923
Steven Rostedtf7d82352012-04-06 00:47:53 +02001924 arg->op.right = right;
1925
1926 /* do not free the token, it belongs to an op */
1927 *tok = NULL;
1928 type = process_arg(event, right, tok);
1929
1930 } else if (strcmp(token, "?") == 0) {
1931
1932 left = alloc_arg();
Namhyung Kimb1ac7542012-09-20 11:09:19 +09001933 if (!left)
1934 goto out_warn_free;
1935
Steven Rostedtf7d82352012-04-06 00:47:53 +02001936 /* copy the top arg to the left */
1937 *left = *arg;
1938
1939 arg->type = PRINT_OP;
1940 arg->op.op = token;
1941 arg->op.left = left;
1942 arg->op.prio = 0;
1943
Namhyung Kim41e51a22012-09-19 15:58:42 +09001944 /* it will set arg->op.right */
Steven Rostedtf7d82352012-04-06 00:47:53 +02001945 type = process_cond(event, arg, tok);
1946
1947 } else if (strcmp(token, ">>") == 0 ||
1948 strcmp(token, "<<") == 0 ||
1949 strcmp(token, "&") == 0 ||
1950 strcmp(token, "|") == 0 ||
1951 strcmp(token, "&&") == 0 ||
1952 strcmp(token, "||") == 0 ||
1953 strcmp(token, "-") == 0 ||
1954 strcmp(token, "+") == 0 ||
1955 strcmp(token, "*") == 0 ||
1956 strcmp(token, "^") == 0 ||
1957 strcmp(token, "/") == 0 ||
Daniel Bristot de Oliveira0e47b382016-02-22 14:08:22 -03001958 strcmp(token, "%") == 0 ||
Steven Rostedtf7d82352012-04-06 00:47:53 +02001959 strcmp(token, "<") == 0 ||
1960 strcmp(token, ">") == 0 ||
Namhyung Kimff582682013-01-15 17:02:19 +09001961 strcmp(token, "<=") == 0 ||
1962 strcmp(token, ">=") == 0 ||
Steven Rostedtf7d82352012-04-06 00:47:53 +02001963 strcmp(token, "==") == 0 ||
1964 strcmp(token, "!=") == 0) {
1965
1966 left = alloc_arg();
Namhyung Kimb1ac7542012-09-20 11:09:19 +09001967 if (!left)
1968 goto out_warn_free;
Steven Rostedtf7d82352012-04-06 00:47:53 +02001969
1970 /* copy the top arg to the left */
1971 *left = *arg;
1972
1973 arg->type = PRINT_OP;
1974 arg->op.op = token;
1975 arg->op.left = left;
Namhyung Kim41e51a22012-09-19 15:58:42 +09001976 arg->op.right = NULL;
Steven Rostedtf7d82352012-04-06 00:47:53 +02001977
Vaibhav Nagarnaik14ffde02012-04-06 00:48:01 +02001978 if (set_op_prio(arg) == -1) {
1979 event->flags |= EVENT_FL_FAILED;
Namhyung Kimd1de1082012-05-23 11:36:49 +09001980 /* arg->op.op (= token) will be freed at out_free */
1981 arg->op.op = NULL;
Vaibhav Nagarnaik14ffde02012-04-06 00:48:01 +02001982 goto out_free;
1983 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02001984
1985 type = read_token_item(&token);
1986 *tok = token;
1987
1988 /* could just be a type pointer */
1989 if ((strcmp(arg->op.op, "*") == 0) &&
1990 type == EVENT_DELIM && (strcmp(token, ")") == 0)) {
Namhyung Kimd2864472012-04-09 11:54:33 +09001991 char *new_atom;
1992
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -03001993 if (left->type != PRINT_ATOM) {
Namhyung Kim3388cc32014-03-19 10:22:53 +09001994 do_warning_event(event, "bad pointer type");
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -03001995 goto out_free;
1996 }
Namhyung Kimd2864472012-04-09 11:54:33 +09001997 new_atom = realloc(left->atom.atom,
Steven Rostedtf7d82352012-04-06 00:47:53 +02001998 strlen(left->atom.atom) + 3);
Namhyung Kimd2864472012-04-09 11:54:33 +09001999 if (!new_atom)
Namhyung Kimb1ac7542012-09-20 11:09:19 +09002000 goto out_warn_free;
Namhyung Kimd2864472012-04-09 11:54:33 +09002001
2002 left->atom.atom = new_atom;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002003 strcat(left->atom.atom, " *");
2004 free(arg->op.op);
2005 *arg = *left;
2006 free(left);
2007
2008 return type;
2009 }
2010
2011 right = alloc_arg();
Namhyung Kimb1ac7542012-09-20 11:09:19 +09002012 if (!right)
2013 goto out_warn_free;
2014
Steven Rostedtf7d82352012-04-06 00:47:53 +02002015 type = process_arg_token(event, right, tok, type);
Dean Nelson6f56e9c2015-08-20 11:16:32 -04002016 if (type == EVENT_ERROR) {
2017 free_arg(right);
2018 /* token was freed in process_arg_token() via *tok */
2019 token = NULL;
2020 goto out_free;
2021 }
Namhyung Kim3201f0d2015-04-06 14:36:16 +09002022
2023 if (right->type == PRINT_OP &&
2024 get_op_prio(arg->op.op) < get_op_prio(right->op.op)) {
2025 struct print_arg tmp;
2026
2027 /* rotate ops according to the priority */
2028 arg->op.right = right->op.left;
2029
2030 tmp = *arg;
2031 *arg = *right;
2032 *right = tmp;
2033
2034 arg->op.left = right;
2035 } else {
2036 arg->op.right = right;
2037 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02002038
2039 } else if (strcmp(token, "[") == 0) {
2040
2041 left = alloc_arg();
Namhyung Kimb1ac7542012-09-20 11:09:19 +09002042 if (!left)
2043 goto out_warn_free;
2044
Steven Rostedtf7d82352012-04-06 00:47:53 +02002045 *left = *arg;
2046
2047 arg->type = PRINT_OP;
2048 arg->op.op = token;
2049 arg->op.left = left;
2050
2051 arg->op.prio = 0;
2052
Namhyung Kim41e51a22012-09-19 15:58:42 +09002053 /* it will set arg->op.right */
Steven Rostedtf7d82352012-04-06 00:47:53 +02002054 type = process_array(event, arg, tok);
2055
2056 } else {
Namhyung Kim3388cc32014-03-19 10:22:53 +09002057 do_warning_event(event, "unknown op '%s'", token);
Steven Rostedtf7d82352012-04-06 00:47:53 +02002058 event->flags |= EVENT_FL_FAILED;
2059 /* the arg is now the left side */
2060 goto out_free;
2061 }
2062
2063 if (type == EVENT_OP && strcmp(*tok, ":") != 0) {
2064 int prio;
2065
2066 /* higher prios need to be closer to the root */
2067 prio = get_op_prio(*tok);
2068
2069 if (prio > arg->op.prio)
2070 return process_op(event, arg, tok);
2071
2072 return process_op(event, right, tok);
2073 }
2074
2075 return type;
2076
Namhyung Kimb1ac7542012-09-20 11:09:19 +09002077out_warn_free:
Namhyung Kim3388cc32014-03-19 10:22:53 +09002078 do_warning_event(event, "%s: not enough memory!", __func__);
Namhyung Kimb1ac7542012-09-20 11:09:19 +09002079out_free:
Steven Rostedtf7d82352012-04-06 00:47:53 +02002080 free_token(token);
2081 *tok = NULL;
2082 return EVENT_ERROR;
2083}
2084
2085static enum event_type
Irina Tirdea1d037ca2012-09-11 01:15:03 +03002086process_entry(struct event_format *event __maybe_unused, struct print_arg *arg,
Steven Rostedtf7d82352012-04-06 00:47:53 +02002087 char **tok)
2088{
2089 enum event_type type;
2090 char *field;
2091 char *token;
2092
2093 if (read_expected(EVENT_OP, "->") < 0)
2094 goto out_err;
2095
2096 if (read_expect_type(EVENT_ITEM, &token) < 0)
2097 goto out_free;
2098 field = token;
2099
2100 arg->type = PRINT_FIELD;
2101 arg->field.name = field;
2102
Tom Zanussi5205aec2012-04-06 00:47:58 +02002103 if (is_flag_field) {
2104 arg->field.field = pevent_find_any_field(event, arg->field.name);
2105 arg->field.field->flags |= FIELD_IS_FLAG;
2106 is_flag_field = 0;
2107 } else if (is_symbolic_field) {
2108 arg->field.field = pevent_find_any_field(event, arg->field.name);
2109 arg->field.field->flags |= FIELD_IS_SYMBOLIC;
2110 is_symbolic_field = 0;
2111 }
2112
Steven Rostedtf7d82352012-04-06 00:47:53 +02002113 type = read_token(&token);
2114 *tok = token;
2115
2116 return type;
2117
2118 out_free:
2119 free_token(token);
2120 out_err:
2121 *tok = NULL;
2122 return EVENT_ERROR;
2123}
2124
Javi Merino929a6bb2015-03-20 18:12:55 +00002125static int alloc_and_process_delim(struct event_format *event, char *next_token,
2126 struct print_arg **print_arg)
2127{
2128 struct print_arg *field;
2129 enum event_type type;
2130 char *token;
2131 int ret = 0;
2132
2133 field = alloc_arg();
2134 if (!field) {
2135 do_warning_event(event, "%s: not enough memory!", __func__);
2136 errno = ENOMEM;
2137 return -1;
2138 }
2139
2140 type = process_arg(event, field, &token);
2141
2142 if (test_type_token(type, token, EVENT_DELIM, next_token)) {
2143 errno = EINVAL;
2144 ret = -1;
2145 free_arg(field);
2146 goto out_free_token;
2147 }
2148
2149 *print_arg = field;
2150
2151out_free_token:
2152 free_token(token);
2153
2154 return ret;
2155}
2156
Steven Rostedtf7d82352012-04-06 00:47:53 +02002157static char *arg_eval (struct print_arg *arg);
2158
2159static unsigned long long
2160eval_type_str(unsigned long long val, const char *type, int pointer)
2161{
2162 int sign = 0;
2163 char *ref;
2164 int len;
2165
2166 len = strlen(type);
2167
2168 if (pointer) {
2169
2170 if (type[len-1] != '*') {
2171 do_warning("pointer expected with non pointer type");
2172 return val;
2173 }
2174
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -03002175 ref = malloc(len);
2176 if (!ref) {
2177 do_warning("%s: not enough memory!", __func__);
2178 return val;
2179 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02002180 memcpy(ref, type, len);
2181
2182 /* chop off the " *" */
2183 ref[len - 2] = 0;
2184
2185 val = eval_type_str(val, ref, 0);
2186 free(ref);
2187 return val;
2188 }
2189
2190 /* check if this is a pointer */
2191 if (type[len - 1] == '*')
2192 return val;
2193
2194 /* Try to figure out the arg size*/
2195 if (strncmp(type, "struct", 6) == 0)
2196 /* all bets off */
2197 return val;
2198
2199 if (strcmp(type, "u8") == 0)
2200 return val & 0xff;
2201
2202 if (strcmp(type, "u16") == 0)
2203 return val & 0xffff;
2204
2205 if (strcmp(type, "u32") == 0)
2206 return val & 0xffffffff;
2207
2208 if (strcmp(type, "u64") == 0 ||
2209 strcmp(type, "s64"))
2210 return val;
2211
2212 if (strcmp(type, "s8") == 0)
2213 return (unsigned long long)(char)val & 0xff;
2214
2215 if (strcmp(type, "s16") == 0)
2216 return (unsigned long long)(short)val & 0xffff;
2217
2218 if (strcmp(type, "s32") == 0)
2219 return (unsigned long long)(int)val & 0xffffffff;
2220
2221 if (strncmp(type, "unsigned ", 9) == 0) {
2222 sign = 0;
2223 type += 9;
2224 }
2225
2226 if (strcmp(type, "char") == 0) {
2227 if (sign)
2228 return (unsigned long long)(char)val & 0xff;
2229 else
2230 return val & 0xff;
2231 }
2232
2233 if (strcmp(type, "short") == 0) {
2234 if (sign)
2235 return (unsigned long long)(short)val & 0xffff;
2236 else
2237 return val & 0xffff;
2238 }
2239
2240 if (strcmp(type, "int") == 0) {
2241 if (sign)
2242 return (unsigned long long)(int)val & 0xffffffff;
2243 else
2244 return val & 0xffffffff;
2245 }
2246
2247 return val;
2248}
2249
2250/*
2251 * Try to figure out the type.
2252 */
2253static unsigned long long
2254eval_type(unsigned long long val, struct print_arg *arg, int pointer)
2255{
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -03002256 if (arg->type != PRINT_TYPE) {
2257 do_warning("expected type argument");
2258 return 0;
2259 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02002260
2261 return eval_type_str(val, arg->typecast.type, pointer);
2262}
2263
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02002264static int arg_num_eval(struct print_arg *arg, long long *val)
Steven Rostedtf7d82352012-04-06 00:47:53 +02002265{
2266 long long left, right;
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02002267 int ret = 1;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002268
2269 switch (arg->type) {
2270 case PRINT_ATOM:
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02002271 *val = strtoll(arg->atom.atom, NULL, 0);
Steven Rostedtf7d82352012-04-06 00:47:53 +02002272 break;
2273 case PRINT_TYPE:
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02002274 ret = arg_num_eval(arg->typecast.item, val);
2275 if (!ret)
2276 break;
2277 *val = eval_type(*val, arg, 0);
Steven Rostedtf7d82352012-04-06 00:47:53 +02002278 break;
2279 case PRINT_OP:
2280 switch (arg->op.op[0]) {
2281 case '|':
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02002282 ret = arg_num_eval(arg->op.left, &left);
2283 if (!ret)
2284 break;
2285 ret = arg_num_eval(arg->op.right, &right);
2286 if (!ret)
2287 break;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002288 if (arg->op.op[1])
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02002289 *val = left || right;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002290 else
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02002291 *val = left | right;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002292 break;
2293 case '&':
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02002294 ret = arg_num_eval(arg->op.left, &left);
2295 if (!ret)
2296 break;
2297 ret = arg_num_eval(arg->op.right, &right);
2298 if (!ret)
2299 break;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002300 if (arg->op.op[1])
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02002301 *val = left && right;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002302 else
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02002303 *val = left & right;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002304 break;
2305 case '<':
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02002306 ret = arg_num_eval(arg->op.left, &left);
2307 if (!ret)
2308 break;
2309 ret = arg_num_eval(arg->op.right, &right);
2310 if (!ret)
2311 break;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002312 switch (arg->op.op[1]) {
2313 case 0:
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02002314 *val = left < right;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002315 break;
2316 case '<':
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02002317 *val = left << right;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002318 break;
2319 case '=':
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02002320 *val = left <= right;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002321 break;
2322 default:
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02002323 do_warning("unknown op '%s'", arg->op.op);
2324 ret = 0;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002325 }
2326 break;
2327 case '>':
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02002328 ret = arg_num_eval(arg->op.left, &left);
2329 if (!ret)
2330 break;
2331 ret = arg_num_eval(arg->op.right, &right);
2332 if (!ret)
2333 break;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002334 switch (arg->op.op[1]) {
2335 case 0:
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02002336 *val = left > right;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002337 break;
2338 case '>':
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02002339 *val = left >> right;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002340 break;
2341 case '=':
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02002342 *val = left >= right;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002343 break;
2344 default:
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02002345 do_warning("unknown op '%s'", arg->op.op);
2346 ret = 0;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002347 }
2348 break;
2349 case '=':
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02002350 ret = arg_num_eval(arg->op.left, &left);
2351 if (!ret)
2352 break;
2353 ret = arg_num_eval(arg->op.right, &right);
2354 if (!ret)
2355 break;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002356
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02002357 if (arg->op.op[1] != '=') {
2358 do_warning("unknown op '%s'", arg->op.op);
2359 ret = 0;
2360 } else
2361 *val = left == right;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002362 break;
2363 case '!':
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02002364 ret = arg_num_eval(arg->op.left, &left);
2365 if (!ret)
2366 break;
2367 ret = arg_num_eval(arg->op.right, &right);
2368 if (!ret)
2369 break;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002370
2371 switch (arg->op.op[1]) {
2372 case '=':
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02002373 *val = left != right;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002374 break;
2375 default:
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02002376 do_warning("unknown op '%s'", arg->op.op);
2377 ret = 0;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002378 }
2379 break;
2380 case '-':
2381 /* check for negative */
2382 if (arg->op.left->type == PRINT_NULL)
2383 left = 0;
2384 else
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02002385 ret = arg_num_eval(arg->op.left, &left);
2386 if (!ret)
2387 break;
2388 ret = arg_num_eval(arg->op.right, &right);
2389 if (!ret)
2390 break;
2391 *val = left - right;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002392 break;
Vaibhav Nagarnaikb4828592012-04-06 00:48:03 +02002393 case '+':
2394 if (arg->op.left->type == PRINT_NULL)
2395 left = 0;
2396 else
2397 ret = arg_num_eval(arg->op.left, &left);
2398 if (!ret)
2399 break;
2400 ret = arg_num_eval(arg->op.right, &right);
2401 if (!ret)
2402 break;
2403 *val = left + right;
2404 break;
Steven Rostedt9eb42de2016-02-26 18:13:28 -05002405 case '~':
2406 ret = arg_num_eval(arg->op.right, &right);
2407 if (!ret)
2408 break;
2409 *val = ~right;
2410 break;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002411 default:
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02002412 do_warning("unknown op '%s'", arg->op.op);
2413 ret = 0;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002414 }
2415 break;
2416
2417 case PRINT_NULL:
2418 case PRINT_FIELD ... PRINT_SYMBOL:
2419 case PRINT_STRING:
2420 case PRINT_BSTRING:
Steven Rostedt (Red Hat)473a7782014-06-02 23:20:16 -04002421 case PRINT_BITMASK:
Steven Rostedtf7d82352012-04-06 00:47:53 +02002422 default:
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02002423 do_warning("invalid eval type %d", arg->type);
2424 ret = 0;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002425
2426 }
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02002427 return ret;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002428}
2429
2430static char *arg_eval (struct print_arg *arg)
2431{
2432 long long val;
2433 static char buf[20];
2434
2435 switch (arg->type) {
2436 case PRINT_ATOM:
2437 return arg->atom.atom;
2438 case PRINT_TYPE:
2439 return arg_eval(arg->typecast.item);
2440 case PRINT_OP:
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02002441 if (!arg_num_eval(arg, &val))
2442 break;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002443 sprintf(buf, "%lld", val);
2444 return buf;
2445
2446 case PRINT_NULL:
2447 case PRINT_FIELD ... PRINT_SYMBOL:
2448 case PRINT_STRING:
2449 case PRINT_BSTRING:
Steven Rostedt (Red Hat)473a7782014-06-02 23:20:16 -04002450 case PRINT_BITMASK:
Steven Rostedtf7d82352012-04-06 00:47:53 +02002451 default:
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -03002452 do_warning("invalid eval type %d", arg->type);
Steven Rostedtf7d82352012-04-06 00:47:53 +02002453 break;
2454 }
2455
2456 return NULL;
2457}
2458
2459static enum event_type
2460process_fields(struct event_format *event, struct print_flag_sym **list, char **tok)
2461{
2462 enum event_type type;
2463 struct print_arg *arg = NULL;
2464 struct print_flag_sym *field;
2465 char *token = *tok;
2466 char *value;
2467
2468 do {
2469 free_token(token);
2470 type = read_token_item(&token);
2471 if (test_type_token(type, token, EVENT_OP, "{"))
2472 break;
2473
2474 arg = alloc_arg();
Namhyung Kimb1ac7542012-09-20 11:09:19 +09002475 if (!arg)
2476 goto out_free;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002477
2478 free_token(token);
2479 type = process_arg(event, arg, &token);
Stefan Hajnoczi00b9da72012-05-23 11:36:42 +09002480
2481 if (type == EVENT_OP)
2482 type = process_op(event, arg, &token);
2483
2484 if (type == EVENT_ERROR)
2485 goto out_free;
2486
Steven Rostedtf7d82352012-04-06 00:47:53 +02002487 if (test_type_token(type, token, EVENT_DELIM, ","))
2488 goto out_free;
2489
Arnaldo Carvalho de Melo87162d82012-09-12 15:39:59 -03002490 field = calloc(1, sizeof(*field));
2491 if (!field)
2492 goto out_free;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002493
2494 value = arg_eval(arg);
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02002495 if (value == NULL)
Namhyung Kimf8c49d22012-09-19 15:58:43 +09002496 goto out_free_field;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002497 field->value = strdup(value);
Namhyung Kimca638582012-04-09 11:54:31 +09002498 if (field->value == NULL)
Namhyung Kimf8c49d22012-09-19 15:58:43 +09002499 goto out_free_field;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002500
2501 free_arg(arg);
2502 arg = alloc_arg();
Namhyung Kimb1ac7542012-09-20 11:09:19 +09002503 if (!arg)
2504 goto out_free;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002505
2506 free_token(token);
2507 type = process_arg(event, arg, &token);
2508 if (test_type_token(type, token, EVENT_OP, "}"))
Namhyung Kimf8c49d22012-09-19 15:58:43 +09002509 goto out_free_field;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002510
2511 value = arg_eval(arg);
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02002512 if (value == NULL)
Namhyung Kimf8c49d22012-09-19 15:58:43 +09002513 goto out_free_field;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002514 field->str = strdup(value);
Namhyung Kimca638582012-04-09 11:54:31 +09002515 if (field->str == NULL)
Namhyung Kimf8c49d22012-09-19 15:58:43 +09002516 goto out_free_field;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002517 free_arg(arg);
2518 arg = NULL;
2519
2520 *list = field;
2521 list = &field->next;
2522
2523 free_token(token);
2524 type = read_token_item(&token);
2525 } while (type == EVENT_DELIM && strcmp(token, ",") == 0);
2526
2527 *tok = token;
2528 return type;
2529
Namhyung Kimf8c49d22012-09-19 15:58:43 +09002530out_free_field:
2531 free_flag_sym(field);
Steven Rostedtf7d82352012-04-06 00:47:53 +02002532out_free:
2533 free_arg(arg);
2534 free_token(token);
2535 *tok = NULL;
2536
2537 return EVENT_ERROR;
2538}
2539
2540static enum event_type
2541process_flags(struct event_format *event, struct print_arg *arg, char **tok)
2542{
2543 struct print_arg *field;
2544 enum event_type type;
Rickard Strandqvist21da83f2014-06-24 13:09:10 +02002545 char *token = NULL;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002546
2547 memset(arg, 0, sizeof(*arg));
2548 arg->type = PRINT_FLAGS;
2549
2550 field = alloc_arg();
Namhyung Kimb1ac7542012-09-20 11:09:19 +09002551 if (!field) {
Namhyung Kim3388cc32014-03-19 10:22:53 +09002552 do_warning_event(event, "%s: not enough memory!", __func__);
Namhyung Kimb1ac7542012-09-20 11:09:19 +09002553 goto out_free;
2554 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02002555
Steven Rostedteff2c922013-11-18 14:23:14 -05002556 type = process_field_arg(event, field, &token);
Steven Rostedtf7d82352012-04-06 00:47:53 +02002557
2558 /* Handle operations in the first argument */
2559 while (type == EVENT_OP)
2560 type = process_op(event, field, &token);
2561
2562 if (test_type_token(type, token, EVENT_DELIM, ","))
Namhyung Kim70d93042012-09-19 15:58:44 +09002563 goto out_free_field;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002564 free_token(token);
2565
2566 arg->flags.field = field;
2567
2568 type = read_token_item(&token);
2569 if (event_item_type(type)) {
2570 arg->flags.delim = token;
2571 type = read_token_item(&token);
2572 }
2573
2574 if (test_type_token(type, token, EVENT_DELIM, ","))
2575 goto out_free;
2576
2577 type = process_fields(event, &arg->flags.flags, &token);
2578 if (test_type_token(type, token, EVENT_DELIM, ")"))
2579 goto out_free;
2580
2581 free_token(token);
2582 type = read_token_item(tok);
2583 return type;
2584
Namhyung Kim70d93042012-09-19 15:58:44 +09002585out_free_field:
2586 free_arg(field);
2587out_free:
Steven Rostedtf7d82352012-04-06 00:47:53 +02002588 free_token(token);
2589 *tok = NULL;
2590 return EVENT_ERROR;
2591}
2592
2593static enum event_type
2594process_symbols(struct event_format *event, struct print_arg *arg, char **tok)
2595{
2596 struct print_arg *field;
2597 enum event_type type;
Rickard Strandqvist21da83f2014-06-24 13:09:10 +02002598 char *token = NULL;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002599
2600 memset(arg, 0, sizeof(*arg));
2601 arg->type = PRINT_SYMBOL;
2602
2603 field = alloc_arg();
Namhyung Kimb1ac7542012-09-20 11:09:19 +09002604 if (!field) {
Namhyung Kim3388cc32014-03-19 10:22:53 +09002605 do_warning_event(event, "%s: not enough memory!", __func__);
Namhyung Kimb1ac7542012-09-20 11:09:19 +09002606 goto out_free;
2607 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02002608
Steven Rostedteff2c922013-11-18 14:23:14 -05002609 type = process_field_arg(event, field, &token);
2610
Steven Rostedtf7d82352012-04-06 00:47:53 +02002611 if (test_type_token(type, token, EVENT_DELIM, ","))
Namhyung Kim70d93042012-09-19 15:58:44 +09002612 goto out_free_field;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002613
2614 arg->symbol.field = field;
2615
2616 type = process_fields(event, &arg->symbol.symbols, &token);
2617 if (test_type_token(type, token, EVENT_DELIM, ")"))
2618 goto out_free;
2619
2620 free_token(token);
2621 type = read_token_item(tok);
2622 return type;
2623
Namhyung Kim70d93042012-09-19 15:58:44 +09002624out_free_field:
2625 free_arg(field);
2626out_free:
Steven Rostedtf7d82352012-04-06 00:47:53 +02002627 free_token(token);
2628 *tok = NULL;
2629 return EVENT_ERROR;
2630}
2631
2632static enum event_type
Daniel Borkmann0fe05592017-01-25 02:28:17 +01002633process_hex_common(struct event_format *event, struct print_arg *arg,
2634 char **tok, enum print_arg_type type)
Namhyung Kime080e6f2012-06-27 09:41:41 +09002635{
Namhyung Kime080e6f2012-06-27 09:41:41 +09002636 memset(arg, 0, sizeof(*arg));
Daniel Borkmann0fe05592017-01-25 02:28:17 +01002637 arg->type = type;
Namhyung Kime080e6f2012-06-27 09:41:41 +09002638
Javi Merino929a6bb2015-03-20 18:12:55 +00002639 if (alloc_and_process_delim(event, ",", &arg->hex.field))
2640 goto out;
Namhyung Kimb1ac7542012-09-20 11:09:19 +09002641
Javi Merino929a6bb2015-03-20 18:12:55 +00002642 if (alloc_and_process_delim(event, ")", &arg->hex.size))
2643 goto free_field;
Namhyung Kime080e6f2012-06-27 09:41:41 +09002644
Javi Merino929a6bb2015-03-20 18:12:55 +00002645 return read_token_item(tok);
Namhyung Kime080e6f2012-06-27 09:41:41 +09002646
Javi Merino929a6bb2015-03-20 18:12:55 +00002647free_field:
2648 free_arg(arg->hex.field);
Steven Rostedt (Red Hat)9ec72ea2016-02-09 15:40:16 -05002649 arg->hex.field = NULL;
Javi Merino929a6bb2015-03-20 18:12:55 +00002650out:
Namhyung Kime080e6f2012-06-27 09:41:41 +09002651 *tok = NULL;
2652 return EVENT_ERROR;
2653}
Namhyung Kime080e6f2012-06-27 09:41:41 +09002654
Namhyung Kime080e6f2012-06-27 09:41:41 +09002655static enum event_type
Daniel Borkmann0fe05592017-01-25 02:28:17 +01002656process_hex(struct event_format *event, struct print_arg *arg, char **tok)
2657{
2658 return process_hex_common(event, arg, tok, PRINT_HEX);
2659}
2660
2661static enum event_type
2662process_hex_str(struct event_format *event, struct print_arg *arg,
2663 char **tok)
2664{
2665 return process_hex_common(event, arg, tok, PRINT_HEX_STR);
2666}
2667
2668static enum event_type
Javi Merinob839e1e82015-03-24 11:07:19 +00002669process_int_array(struct event_format *event, struct print_arg *arg, char **tok)
2670{
2671 memset(arg, 0, sizeof(*arg));
2672 arg->type = PRINT_INT_ARRAY;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002673
Javi Merinob839e1e82015-03-24 11:07:19 +00002674 if (alloc_and_process_delim(event, ",", &arg->int_array.field))
2675 goto out;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002676
Javi Merinob839e1e82015-03-24 11:07:19 +00002677 if (alloc_and_process_delim(event, ",", &arg->int_array.count))
2678 goto free_field;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002679
Javi Merinob839e1e82015-03-24 11:07:19 +00002680 if (alloc_and_process_delim(event, ")", &arg->int_array.el_size))
2681 goto free_size;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002682
Javi Merinob839e1e82015-03-24 11:07:19 +00002683 return read_token_item(tok);
Steven Rostedtf7d82352012-04-06 00:47:53 +02002684
Javi Merinob839e1e82015-03-24 11:07:19 +00002685free_size:
2686 free_arg(arg->int_array.count);
Steven Rostedt (Red Hat)9ec72ea2016-02-09 15:40:16 -05002687 arg->int_array.count = NULL;
Javi Merinob839e1e82015-03-24 11:07:19 +00002688free_field:
2689 free_arg(arg->int_array.field);
Steven Rostedt (Red Hat)9ec72ea2016-02-09 15:40:16 -05002690 arg->int_array.field = NULL;
Javi Merinob839e1e82015-03-24 11:07:19 +00002691out:
Steven Rostedtf7d82352012-04-06 00:47:53 +02002692 *tok = NULL;
2693 return EVENT_ERROR;
2694}
2695
2696static enum event_type
2697process_dynamic_array(struct event_format *event, struct print_arg *arg, char **tok)
2698{
2699 struct format_field *field;
2700 enum event_type type;
2701 char *token;
2702
2703 memset(arg, 0, sizeof(*arg));
2704 arg->type = PRINT_DYNAMIC_ARRAY;
2705
2706 /*
2707 * The item within the parenthesis is another field that holds
2708 * the index into where the array starts.
2709 */
2710 type = read_token(&token);
2711 *tok = token;
2712 if (type != EVENT_ITEM)
2713 goto out_free;
2714
2715 /* Find the field */
2716
2717 field = pevent_find_field(event, token);
2718 if (!field)
2719 goto out_free;
2720
2721 arg->dynarray.field = field;
2722 arg->dynarray.index = 0;
2723
2724 if (read_expected(EVENT_DELIM, ")") < 0)
2725 goto out_free;
2726
2727 free_token(token);
2728 type = read_token_item(&token);
2729 *tok = token;
2730 if (type != EVENT_OP || strcmp(token, "[") != 0)
2731 return type;
2732
2733 free_token(token);
2734 arg = alloc_arg();
Sasha Levinfba7a782012-12-21 15:00:58 -05002735 if (!arg) {
Namhyung Kim3388cc32014-03-19 10:22:53 +09002736 do_warning_event(event, "%s: not enough memory!", __func__);
Namhyung Kimb1ac7542012-09-20 11:09:19 +09002737 *tok = NULL;
2738 return EVENT_ERROR;
2739 }
2740
Steven Rostedtf7d82352012-04-06 00:47:53 +02002741 type = process_arg(event, arg, &token);
2742 if (type == EVENT_ERROR)
Namhyung Kimb3511d02012-05-23 11:36:50 +09002743 goto out_free_arg;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002744
2745 if (!test_type_token(type, token, EVENT_OP, "]"))
Namhyung Kimb3511d02012-05-23 11:36:50 +09002746 goto out_free_arg;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002747
2748 free_token(token);
2749 type = read_token_item(tok);
2750 return type;
2751
Namhyung Kimb3511d02012-05-23 11:36:50 +09002752 out_free_arg:
2753 free_arg(arg);
Steven Rostedtf7d82352012-04-06 00:47:53 +02002754 out_free:
Steven Rostedtf7d82352012-04-06 00:47:53 +02002755 free_token(token);
2756 *tok = NULL;
2757 return EVENT_ERROR;
2758}
2759
2760static enum event_type
He Kuang76055942015-08-29 04:22:05 +00002761process_dynamic_array_len(struct event_format *event, struct print_arg *arg,
2762 char **tok)
2763{
2764 struct format_field *field;
2765 enum event_type type;
2766 char *token;
2767
2768 if (read_expect_type(EVENT_ITEM, &token) < 0)
2769 goto out_free;
2770
2771 arg->type = PRINT_DYNAMIC_ARRAY_LEN;
2772
2773 /* Find the field */
2774 field = pevent_find_field(event, token);
2775 if (!field)
2776 goto out_free;
2777
2778 arg->dynarray.field = field;
2779 arg->dynarray.index = 0;
2780
2781 if (read_expected(EVENT_DELIM, ")") < 0)
2782 goto out_err;
2783
2784 type = read_token(&token);
2785 *tok = token;
2786
2787 return type;
2788
2789 out_free:
2790 free_token(token);
2791 out_err:
2792 *tok = NULL;
2793 return EVENT_ERROR;
2794}
2795
2796static enum event_type
Steven Rostedtf7d82352012-04-06 00:47:53 +02002797process_paren(struct event_format *event, struct print_arg *arg, char **tok)
2798{
2799 struct print_arg *item_arg;
2800 enum event_type type;
2801 char *token;
2802
2803 type = process_arg(event, arg, &token);
2804
2805 if (type == EVENT_ERROR)
2806 goto out_free;
2807
2808 if (type == EVENT_OP)
2809 type = process_op(event, arg, &token);
2810
2811 if (type == EVENT_ERROR)
2812 goto out_free;
2813
2814 if (test_type_token(type, token, EVENT_DELIM, ")"))
2815 goto out_free;
2816
2817 free_token(token);
2818 type = read_token_item(&token);
2819
2820 /*
2821 * If the next token is an item or another open paren, then
2822 * this was a typecast.
2823 */
2824 if (event_item_type(type) ||
2825 (type == EVENT_DELIM && strcmp(token, "(") == 0)) {
2826
2827 /* make this a typecast and contine */
2828
2829 /* prevous must be an atom */
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -03002830 if (arg->type != PRINT_ATOM) {
Namhyung Kim3388cc32014-03-19 10:22:53 +09002831 do_warning_event(event, "previous needed to be PRINT_ATOM");
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -03002832 goto out_free;
2833 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02002834
2835 item_arg = alloc_arg();
Namhyung Kimb1ac7542012-09-20 11:09:19 +09002836 if (!item_arg) {
Namhyung Kim3388cc32014-03-19 10:22:53 +09002837 do_warning_event(event, "%s: not enough memory!",
2838 __func__);
Namhyung Kimb1ac7542012-09-20 11:09:19 +09002839 goto out_free;
2840 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02002841
2842 arg->type = PRINT_TYPE;
2843 arg->typecast.type = arg->atom.atom;
2844 arg->typecast.item = item_arg;
2845 type = process_arg_token(event, item_arg, &token, type);
2846
2847 }
2848
2849 *tok = token;
2850 return type;
2851
2852 out_free:
2853 free_token(token);
2854 *tok = NULL;
2855 return EVENT_ERROR;
2856}
2857
2858
2859static enum event_type
Irina Tirdea1d037ca2012-09-11 01:15:03 +03002860process_str(struct event_format *event __maybe_unused, struct print_arg *arg,
2861 char **tok)
Steven Rostedtf7d82352012-04-06 00:47:53 +02002862{
2863 enum event_type type;
2864 char *token;
2865
2866 if (read_expect_type(EVENT_ITEM, &token) < 0)
2867 goto out_free;
2868
2869 arg->type = PRINT_STRING;
2870 arg->string.string = token;
2871 arg->string.offset = -1;
2872
2873 if (read_expected(EVENT_DELIM, ")") < 0)
2874 goto out_err;
2875
2876 type = read_token(&token);
2877 *tok = token;
2878
2879 return type;
2880
2881 out_free:
2882 free_token(token);
2883 out_err:
2884 *tok = NULL;
2885 return EVENT_ERROR;
2886}
2887
Steven Rostedt (Red Hat)473a7782014-06-02 23:20:16 -04002888static enum event_type
2889process_bitmask(struct event_format *event __maybe_unused, struct print_arg *arg,
2890 char **tok)
2891{
2892 enum event_type type;
2893 char *token;
2894
2895 if (read_expect_type(EVENT_ITEM, &token) < 0)
2896 goto out_free;
2897
2898 arg->type = PRINT_BITMASK;
2899 arg->bitmask.bitmask = token;
2900 arg->bitmask.offset = -1;
2901
2902 if (read_expected(EVENT_DELIM, ")") < 0)
2903 goto out_err;
2904
2905 type = read_token(&token);
2906 *tok = token;
2907
2908 return type;
2909
2910 out_free:
2911 free_token(token);
2912 out_err:
2913 *tok = NULL;
2914 return EVENT_ERROR;
2915}
2916
Steven Rostedtf7d82352012-04-06 00:47:53 +02002917static struct pevent_function_handler *
2918find_func_handler(struct pevent *pevent, char *func_name)
2919{
2920 struct pevent_function_handler *func;
2921
Steven Rostedt101782e2012-10-01 20:13:51 -04002922 if (!pevent)
2923 return NULL;
2924
Steven Rostedtf7d82352012-04-06 00:47:53 +02002925 for (func = pevent->func_handlers; func; func = func->next) {
2926 if (strcmp(func->name, func_name) == 0)
2927 break;
2928 }
2929
2930 return func;
2931}
2932
2933static void remove_func_handler(struct pevent *pevent, char *func_name)
2934{
2935 struct pevent_function_handler *func;
2936 struct pevent_function_handler **next;
2937
2938 next = &pevent->func_handlers;
2939 while ((func = *next)) {
2940 if (strcmp(func->name, func_name) == 0) {
2941 *next = func->next;
2942 free_func_handle(func);
2943 break;
2944 }
2945 next = &func->next;
2946 }
2947}
2948
2949static enum event_type
2950process_func_handler(struct event_format *event, struct pevent_function_handler *func,
2951 struct print_arg *arg, char **tok)
2952{
2953 struct print_arg **next_arg;
2954 struct print_arg *farg;
2955 enum event_type type;
2956 char *token;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002957 int i;
2958
2959 arg->type = PRINT_FUNC;
2960 arg->func.func = func;
2961
2962 *tok = NULL;
2963
2964 next_arg = &(arg->func.args);
2965 for (i = 0; i < func->nr_args; i++) {
2966 farg = alloc_arg();
Namhyung Kimb1ac7542012-09-20 11:09:19 +09002967 if (!farg) {
Namhyung Kim3388cc32014-03-19 10:22:53 +09002968 do_warning_event(event, "%s: not enough memory!",
2969 __func__);
Namhyung Kimb1ac7542012-09-20 11:09:19 +09002970 return EVENT_ERROR;
2971 }
2972
Steven Rostedtf7d82352012-04-06 00:47:53 +02002973 type = process_arg(event, farg, &token);
Steven Rostedt3a3ffa22013-11-18 21:38:20 -05002974 if (i < (func->nr_args - 1)) {
2975 if (type != EVENT_DELIM || strcmp(token, ",") != 0) {
Namhyung Kim9e9e5df2014-03-19 10:22:54 +09002976 do_warning_event(event,
2977 "Error: function '%s()' expects %d arguments but event %s only uses %d",
Steven Rostedt3a3ffa22013-11-18 21:38:20 -05002978 func->name, func->nr_args,
2979 event->name, i + 1);
2980 goto err;
2981 }
2982 } else {
2983 if (type != EVENT_DELIM || strcmp(token, ")") != 0) {
Namhyung Kim9e9e5df2014-03-19 10:22:54 +09002984 do_warning_event(event,
2985 "Error: function '%s()' only expects %d arguments but event %s has more",
Steven Rostedt3a3ffa22013-11-18 21:38:20 -05002986 func->name, func->nr_args, event->name);
2987 goto err;
2988 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02002989 }
2990
2991 *next_arg = farg;
2992 next_arg = &(farg->next);
2993 free_token(token);
2994 }
2995
2996 type = read_token(&token);
2997 *tok = token;
2998
2999 return type;
Steven Rostedt3a3ffa22013-11-18 21:38:20 -05003000
3001err:
3002 free_arg(farg);
3003 free_token(token);
3004 return EVENT_ERROR;
Steven Rostedtf7d82352012-04-06 00:47:53 +02003005}
3006
3007static enum event_type
3008process_function(struct event_format *event, struct print_arg *arg,
3009 char *token, char **tok)
3010{
3011 struct pevent_function_handler *func;
3012
3013 if (strcmp(token, "__print_flags") == 0) {
3014 free_token(token);
Tom Zanussi5205aec2012-04-06 00:47:58 +02003015 is_flag_field = 1;
Steven Rostedtf7d82352012-04-06 00:47:53 +02003016 return process_flags(event, arg, tok);
3017 }
3018 if (strcmp(token, "__print_symbolic") == 0) {
3019 free_token(token);
Tom Zanussi5205aec2012-04-06 00:47:58 +02003020 is_symbolic_field = 1;
Steven Rostedtf7d82352012-04-06 00:47:53 +02003021 return process_symbols(event, arg, tok);
3022 }
Namhyung Kime080e6f2012-06-27 09:41:41 +09003023 if (strcmp(token, "__print_hex") == 0) {
3024 free_token(token);
3025 return process_hex(event, arg, tok);
3026 }
Daniel Borkmann0fe05592017-01-25 02:28:17 +01003027 if (strcmp(token, "__print_hex_str") == 0) {
3028 free_token(token);
3029 return process_hex_str(event, arg, tok);
3030 }
Javi Merinob839e1e82015-03-24 11:07:19 +00003031 if (strcmp(token, "__print_array") == 0) {
3032 free_token(token);
3033 return process_int_array(event, arg, tok);
3034 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02003035 if (strcmp(token, "__get_str") == 0) {
3036 free_token(token);
3037 return process_str(event, arg, tok);
3038 }
Steven Rostedt (Red Hat)473a7782014-06-02 23:20:16 -04003039 if (strcmp(token, "__get_bitmask") == 0) {
3040 free_token(token);
3041 return process_bitmask(event, arg, tok);
3042 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02003043 if (strcmp(token, "__get_dynamic_array") == 0) {
3044 free_token(token);
3045 return process_dynamic_array(event, arg, tok);
3046 }
He Kuang76055942015-08-29 04:22:05 +00003047 if (strcmp(token, "__get_dynamic_array_len") == 0) {
3048 free_token(token);
3049 return process_dynamic_array_len(event, arg, tok);
3050 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02003051
3052 func = find_func_handler(event->pevent, token);
3053 if (func) {
3054 free_token(token);
3055 return process_func_handler(event, func, arg, tok);
3056 }
3057
Namhyung Kim3388cc32014-03-19 10:22:53 +09003058 do_warning_event(event, "function %s not defined", token);
Steven Rostedtf7d82352012-04-06 00:47:53 +02003059 free_token(token);
3060 return EVENT_ERROR;
3061}
3062
3063static enum event_type
3064process_arg_token(struct event_format *event, struct print_arg *arg,
3065 char **tok, enum event_type type)
3066{
3067 char *token;
3068 char *atom;
3069
3070 token = *tok;
3071
3072 switch (type) {
3073 case EVENT_ITEM:
3074 if (strcmp(token, "REC") == 0) {
3075 free_token(token);
3076 type = process_entry(event, arg, &token);
3077 break;
3078 }
3079 atom = token;
3080 /* test the next token */
3081 type = read_token_item(&token);
3082
3083 /*
3084 * If the next token is a parenthesis, then this
3085 * is a function.
3086 */
3087 if (type == EVENT_DELIM && strcmp(token, "(") == 0) {
3088 free_token(token);
3089 token = NULL;
3090 /* this will free atom. */
3091 type = process_function(event, arg, atom, &token);
3092 break;
3093 }
3094 /* atoms can be more than one token long */
3095 while (type == EVENT_ITEM) {
Namhyung Kimd2864472012-04-09 11:54:33 +09003096 char *new_atom;
3097 new_atom = realloc(atom,
3098 strlen(atom) + strlen(token) + 2);
3099 if (!new_atom) {
3100 free(atom);
3101 *tok = NULL;
3102 free_token(token);
3103 return EVENT_ERROR;
3104 }
3105 atom = new_atom;
Steven Rostedtf7d82352012-04-06 00:47:53 +02003106 strcat(atom, " ");
3107 strcat(atom, token);
3108 free_token(token);
3109 type = read_token_item(&token);
3110 }
3111
3112 arg->type = PRINT_ATOM;
3113 arg->atom.atom = atom;
3114 break;
3115
3116 case EVENT_DQUOTE:
3117 case EVENT_SQUOTE:
3118 arg->type = PRINT_ATOM;
3119 arg->atom.atom = token;
3120 type = read_token_item(&token);
3121 break;
3122 case EVENT_DELIM:
3123 if (strcmp(token, "(") == 0) {
3124 free_token(token);
3125 type = process_paren(event, arg, &token);
3126 break;
3127 }
3128 case EVENT_OP:
3129 /* handle single ops */
3130 arg->type = PRINT_OP;
3131 arg->op.op = token;
3132 arg->op.left = NULL;
3133 type = process_op(event, arg, &token);
3134
3135 /* On error, the op is freed */
3136 if (type == EVENT_ERROR)
3137 arg->op.op = NULL;
3138
3139 /* return error type if errored */
3140 break;
3141
3142 case EVENT_ERROR ... EVENT_NEWLINE:
3143 default:
Namhyung Kim3388cc32014-03-19 10:22:53 +09003144 do_warning_event(event, "unexpected type %d", type);
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -03003145 return EVENT_ERROR;
Steven Rostedtf7d82352012-04-06 00:47:53 +02003146 }
3147 *tok = token;
3148
3149 return type;
3150}
3151
3152static int event_read_print_args(struct event_format *event, struct print_arg **list)
3153{
3154 enum event_type type = EVENT_ERROR;
3155 struct print_arg *arg;
3156 char *token;
3157 int args = 0;
3158
3159 do {
3160 if (type == EVENT_NEWLINE) {
3161 type = read_token_item(&token);
3162 continue;
3163 }
3164
3165 arg = alloc_arg();
Namhyung Kimb1ac7542012-09-20 11:09:19 +09003166 if (!arg) {
Namhyung Kim3388cc32014-03-19 10:22:53 +09003167 do_warning_event(event, "%s: not enough memory!",
3168 __func__);
Namhyung Kimb1ac7542012-09-20 11:09:19 +09003169 return -1;
3170 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02003171
3172 type = process_arg(event, arg, &token);
3173
3174 if (type == EVENT_ERROR) {
3175 free_token(token);
3176 free_arg(arg);
3177 return -1;
3178 }
3179
3180 *list = arg;
3181 args++;
3182
3183 if (type == EVENT_OP) {
3184 type = process_op(event, arg, &token);
3185 free_token(token);
3186 if (type == EVENT_ERROR) {
3187 *list = NULL;
3188 free_arg(arg);
3189 return -1;
3190 }
3191 list = &arg->next;
3192 continue;
3193 }
3194
3195 if (type == EVENT_DELIM && strcmp(token, ",") == 0) {
3196 free_token(token);
3197 *list = arg;
3198 list = &arg->next;
3199 continue;
3200 }
3201 break;
3202 } while (type != EVENT_NONE);
3203
3204 if (type != EVENT_NONE && type != EVENT_ERROR)
3205 free_token(token);
3206
3207 return args;
3208}
3209
3210static int event_read_print(struct event_format *event)
3211{
3212 enum event_type type;
3213 char *token;
3214 int ret;
3215
3216 if (read_expected_item(EVENT_ITEM, "print") < 0)
3217 return -1;
3218
3219 if (read_expected(EVENT_ITEM, "fmt") < 0)
3220 return -1;
3221
3222 if (read_expected(EVENT_OP, ":") < 0)
3223 return -1;
3224
3225 if (read_expect_type(EVENT_DQUOTE, &token) < 0)
3226 goto fail;
3227
3228 concat:
3229 event->print_fmt.format = token;
3230 event->print_fmt.args = NULL;
3231
3232 /* ok to have no arg */
3233 type = read_token_item(&token);
3234
3235 if (type == EVENT_NONE)
3236 return 0;
3237
3238 /* Handle concatenation of print lines */
3239 if (type == EVENT_DQUOTE) {
3240 char *cat;
3241
Arnaldo Carvalho de Melo0dbca1e2012-09-12 15:39:59 -03003242 if (asprintf(&cat, "%s%s", event->print_fmt.format, token) < 0)
3243 goto fail;
Steven Rostedtf7d82352012-04-06 00:47:53 +02003244 free_token(token);
3245 free_token(event->print_fmt.format);
3246 event->print_fmt.format = NULL;
3247 token = cat;
3248 goto concat;
3249 }
3250
3251 if (test_type_token(type, token, EVENT_DELIM, ","))
3252 goto fail;
3253
3254 free_token(token);
3255
3256 ret = event_read_print_args(event, &event->print_fmt.args);
3257 if (ret < 0)
3258 return -1;
3259
3260 return ret;
3261
3262 fail:
3263 free_token(token);
3264 return -1;
3265}
3266
3267/**
3268 * pevent_find_common_field - return a common field by event
3269 * @event: handle for the event
3270 * @name: the name of the common field to return
3271 *
3272 * Returns a common field from the event by the given @name.
3273 * This only searchs the common fields and not all field.
3274 */
3275struct format_field *
3276pevent_find_common_field(struct event_format *event, const char *name)
3277{
3278 struct format_field *format;
3279
3280 for (format = event->format.common_fields;
3281 format; format = format->next) {
3282 if (strcmp(format->name, name) == 0)
3283 break;
3284 }
3285
3286 return format;
3287}
3288
3289/**
3290 * pevent_find_field - find a non-common field
3291 * @event: handle for the event
3292 * @name: the name of the non-common field
3293 *
3294 * Returns a non-common field by the given @name.
3295 * This does not search common fields.
3296 */
3297struct format_field *
3298pevent_find_field(struct event_format *event, const char *name)
3299{
3300 struct format_field *format;
3301
3302 for (format = event->format.fields;
3303 format; format = format->next) {
3304 if (strcmp(format->name, name) == 0)
3305 break;
3306 }
3307
3308 return format;
3309}
3310
3311/**
3312 * pevent_find_any_field - find any field by name
3313 * @event: handle for the event
3314 * @name: the name of the field
3315 *
3316 * Returns a field by the given @name.
3317 * This searchs the common field names first, then
3318 * the non-common ones if a common one was not found.
3319 */
3320struct format_field *
3321pevent_find_any_field(struct event_format *event, const char *name)
3322{
3323 struct format_field *format;
3324
3325 format = pevent_find_common_field(event, name);
3326 if (format)
3327 return format;
3328 return pevent_find_field(event, name);
3329}
3330
3331/**
3332 * pevent_read_number - read a number from data
3333 * @pevent: handle for the pevent
3334 * @ptr: the raw data
3335 * @size: the size of the data that holds the number
3336 *
3337 * Returns the number (converted to host) from the
3338 * raw data.
3339 */
3340unsigned long long pevent_read_number(struct pevent *pevent,
3341 const void *ptr, int size)
3342{
3343 switch (size) {
3344 case 1:
3345 return *(unsigned char *)ptr;
3346 case 2:
3347 return data2host2(pevent, ptr);
3348 case 4:
3349 return data2host4(pevent, ptr);
3350 case 8:
3351 return data2host8(pevent, ptr);
3352 default:
3353 /* BUG! */
3354 return 0;
3355 }
3356}
3357
3358/**
3359 * pevent_read_number_field - read a number from data
3360 * @field: a handle to the field
3361 * @data: the raw data to read
3362 * @value: the value to place the number in
3363 *
3364 * Reads raw data according to a field offset and size,
3365 * and translates it into @value.
3366 *
3367 * Returns 0 on success, -1 otherwise.
3368 */
3369int pevent_read_number_field(struct format_field *field, const void *data,
3370 unsigned long long *value)
3371{
3372 if (!field)
3373 return -1;
3374 switch (field->size) {
3375 case 1:
3376 case 2:
3377 case 4:
3378 case 8:
3379 *value = pevent_read_number(field->event->pevent,
3380 data + field->offset, field->size);
3381 return 0;
3382 default:
3383 return -1;
3384 }
3385}
3386
3387static int get_common_info(struct pevent *pevent,
3388 const char *type, int *offset, int *size)
3389{
3390 struct event_format *event;
3391 struct format_field *field;
3392
3393 /*
3394 * All events should have the same common elements.
3395 * Pick any event to find where the type is;
3396 */
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -03003397 if (!pevent->events) {
3398 do_warning("no event_list!");
3399 return -1;
3400 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02003401
3402 event = pevent->events[0];
3403 field = pevent_find_common_field(event, type);
3404 if (!field)
Steven Rostedt0866a972012-05-22 14:52:40 +09003405 return -1;
Steven Rostedtf7d82352012-04-06 00:47:53 +02003406
3407 *offset = field->offset;
3408 *size = field->size;
3409
3410 return 0;
3411}
3412
3413static int __parse_common(struct pevent *pevent, void *data,
3414 int *size, int *offset, const char *name)
3415{
3416 int ret;
3417
3418 if (!*size) {
3419 ret = get_common_info(pevent, name, offset, size);
3420 if (ret < 0)
3421 return ret;
3422 }
3423 return pevent_read_number(pevent, data + *offset, *size);
3424}
3425
3426static int trace_parse_common_type(struct pevent *pevent, void *data)
3427{
3428 return __parse_common(pevent, data,
3429 &pevent->type_size, &pevent->type_offset,
3430 "common_type");
3431}
3432
3433static int parse_common_pid(struct pevent *pevent, void *data)
3434{
3435 return __parse_common(pevent, data,
3436 &pevent->pid_size, &pevent->pid_offset,
3437 "common_pid");
3438}
3439
3440static int parse_common_pc(struct pevent *pevent, void *data)
3441{
3442 return __parse_common(pevent, data,
3443 &pevent->pc_size, &pevent->pc_offset,
3444 "common_preempt_count");
3445}
3446
3447static int parse_common_flags(struct pevent *pevent, void *data)
3448{
3449 return __parse_common(pevent, data,
3450 &pevent->flags_size, &pevent->flags_offset,
3451 "common_flags");
3452}
3453
3454static int parse_common_lock_depth(struct pevent *pevent, void *data)
3455{
Steven Rostedt0866a972012-05-22 14:52:40 +09003456 return __parse_common(pevent, data,
3457 &pevent->ld_size, &pevent->ld_offset,
3458 "common_lock_depth");
3459}
Steven Rostedtf7d82352012-04-06 00:47:53 +02003460
Steven Rostedt0866a972012-05-22 14:52:40 +09003461static int parse_common_migrate_disable(struct pevent *pevent, void *data)
3462{
3463 return __parse_common(pevent, data,
3464 &pevent->ld_size, &pevent->ld_offset,
3465 "common_migrate_disable");
Steven Rostedtf7d82352012-04-06 00:47:53 +02003466}
3467
3468static int events_id_cmp(const void *a, const void *b);
3469
3470/**
3471 * pevent_find_event - find an event by given id
3472 * @pevent: a handle to the pevent
3473 * @id: the id of the event
3474 *
3475 * Returns an event that has a given @id.
3476 */
3477struct event_format *pevent_find_event(struct pevent *pevent, int id)
3478{
3479 struct event_format **eventptr;
3480 struct event_format key;
3481 struct event_format *pkey = &key;
3482
3483 /* Check cache first */
3484 if (pevent->last_event && pevent->last_event->id == id)
3485 return pevent->last_event;
3486
3487 key.id = id;
3488
3489 eventptr = bsearch(&pkey, pevent->events, pevent->nr_events,
3490 sizeof(*pevent->events), events_id_cmp);
3491
3492 if (eventptr) {
3493 pevent->last_event = *eventptr;
3494 return *eventptr;
3495 }
3496
3497 return NULL;
3498}
3499
3500/**
3501 * pevent_find_event_by_name - find an event by given name
3502 * @pevent: a handle to the pevent
3503 * @sys: the system name to search for
3504 * @name: the name of the event to search for
3505 *
3506 * This returns an event with a given @name and under the system
3507 * @sys. If @sys is NULL the first event with @name is returned.
3508 */
3509struct event_format *
3510pevent_find_event_by_name(struct pevent *pevent,
3511 const char *sys, const char *name)
3512{
3513 struct event_format *event;
3514 int i;
3515
3516 if (pevent->last_event &&
3517 strcmp(pevent->last_event->name, name) == 0 &&
3518 (!sys || strcmp(pevent->last_event->system, sys) == 0))
3519 return pevent->last_event;
3520
3521 for (i = 0; i < pevent->nr_events; i++) {
3522 event = pevent->events[i];
3523 if (strcmp(event->name, name) == 0) {
3524 if (!sys)
3525 break;
3526 if (strcmp(event->system, sys) == 0)
3527 break;
3528 }
3529 }
3530 if (i == pevent->nr_events)
3531 event = NULL;
3532
3533 pevent->last_event = event;
3534 return event;
3535}
3536
3537static unsigned long long
3538eval_num_arg(void *data, int size, struct event_format *event, struct print_arg *arg)
3539{
3540 struct pevent *pevent = event->pevent;
3541 unsigned long long val = 0;
3542 unsigned long long left, right;
3543 struct print_arg *typearg = NULL;
3544 struct print_arg *larg;
3545 unsigned long offset;
3546 unsigned int field_size;
3547
3548 switch (arg->type) {
3549 case PRINT_NULL:
3550 /* ?? */
3551 return 0;
3552 case PRINT_ATOM:
3553 return strtoull(arg->atom.atom, NULL, 0);
3554 case PRINT_FIELD:
3555 if (!arg->field.field) {
3556 arg->field.field = pevent_find_any_field(event, arg->field.name);
3557 if (!arg->field.field)
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -03003558 goto out_warning_field;
3559
Steven Rostedtf7d82352012-04-06 00:47:53 +02003560 }
3561 /* must be a number */
3562 val = pevent_read_number(pevent, data + arg->field.field->offset,
3563 arg->field.field->size);
3564 break;
3565 case PRINT_FLAGS:
3566 case PRINT_SYMBOL:
Javi Merinob839e1e82015-03-24 11:07:19 +00003567 case PRINT_INT_ARRAY:
Namhyung Kime080e6f2012-06-27 09:41:41 +09003568 case PRINT_HEX:
Daniel Borkmann0fe05592017-01-25 02:28:17 +01003569 case PRINT_HEX_STR:
Steven Rostedtf7d82352012-04-06 00:47:53 +02003570 break;
3571 case PRINT_TYPE:
3572 val = eval_num_arg(data, size, event, arg->typecast.item);
3573 return eval_type(val, arg, 0);
3574 case PRINT_STRING:
3575 case PRINT_BSTRING:
Steven Rostedt (Red Hat)473a7782014-06-02 23:20:16 -04003576 case PRINT_BITMASK:
Steven Rostedtf7d82352012-04-06 00:47:53 +02003577 return 0;
3578 case PRINT_FUNC: {
3579 struct trace_seq s;
3580 trace_seq_init(&s);
3581 val = process_defined_func(&s, data, size, event, arg);
3582 trace_seq_destroy(&s);
3583 return val;
3584 }
3585 case PRINT_OP:
3586 if (strcmp(arg->op.op, "[") == 0) {
3587 /*
3588 * Arrays are special, since we don't want
3589 * to read the arg as is.
3590 */
3591 right = eval_num_arg(data, size, event, arg->op.right);
3592
3593 /* handle typecasts */
3594 larg = arg->op.left;
3595 while (larg->type == PRINT_TYPE) {
3596 if (!typearg)
3597 typearg = larg;
3598 larg = larg->typecast.item;
3599 }
3600
3601 /* Default to long size */
3602 field_size = pevent->long_size;
3603
3604 switch (larg->type) {
3605 case PRINT_DYNAMIC_ARRAY:
3606 offset = pevent_read_number(pevent,
3607 data + larg->dynarray.field->offset,
3608 larg->dynarray.field->size);
3609 if (larg->dynarray.field->elementsize)
3610 field_size = larg->dynarray.field->elementsize;
3611 /*
3612 * The actual length of the dynamic array is stored
3613 * in the top half of the field, and the offset
3614 * is in the bottom half of the 32 bit field.
3615 */
3616 offset &= 0xffff;
3617 offset += right;
3618 break;
3619 case PRINT_FIELD:
3620 if (!larg->field.field) {
3621 larg->field.field =
3622 pevent_find_any_field(event, larg->field.name);
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -03003623 if (!larg->field.field) {
3624 arg = larg;
3625 goto out_warning_field;
3626 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02003627 }
3628 field_size = larg->field.field->elementsize;
3629 offset = larg->field.field->offset +
3630 right * larg->field.field->elementsize;
3631 break;
3632 default:
3633 goto default_op; /* oops, all bets off */
3634 }
3635 val = pevent_read_number(pevent,
3636 data + offset, field_size);
3637 if (typearg)
3638 val = eval_type(val, typearg, 1);
3639 break;
3640 } else if (strcmp(arg->op.op, "?") == 0) {
3641 left = eval_num_arg(data, size, event, arg->op.left);
3642 arg = arg->op.right;
3643 if (left)
3644 val = eval_num_arg(data, size, event, arg->op.left);
3645 else
3646 val = eval_num_arg(data, size, event, arg->op.right);
3647 break;
3648 }
3649 default_op:
3650 left = eval_num_arg(data, size, event, arg->op.left);
3651 right = eval_num_arg(data, size, event, arg->op.right);
3652 switch (arg->op.op[0]) {
3653 case '!':
3654 switch (arg->op.op[1]) {
3655 case 0:
3656 val = !right;
3657 break;
3658 case '=':
3659 val = left != right;
3660 break;
3661 default:
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -03003662 goto out_warning_op;
Steven Rostedtf7d82352012-04-06 00:47:53 +02003663 }
3664 break;
3665 case '~':
3666 val = ~right;
3667 break;
3668 case '|':
3669 if (arg->op.op[1])
3670 val = left || right;
3671 else
3672 val = left | right;
3673 break;
3674 case '&':
3675 if (arg->op.op[1])
3676 val = left && right;
3677 else
3678 val = left & right;
3679 break;
3680 case '<':
3681 switch (arg->op.op[1]) {
3682 case 0:
3683 val = left < right;
3684 break;
3685 case '<':
3686 val = left << right;
3687 break;
3688 case '=':
3689 val = left <= right;
3690 break;
3691 default:
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -03003692 goto out_warning_op;
Steven Rostedtf7d82352012-04-06 00:47:53 +02003693 }
3694 break;
3695 case '>':
3696 switch (arg->op.op[1]) {
3697 case 0:
3698 val = left > right;
3699 break;
3700 case '>':
3701 val = left >> right;
3702 break;
3703 case '=':
3704 val = left >= right;
3705 break;
3706 default:
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -03003707 goto out_warning_op;
Steven Rostedtf7d82352012-04-06 00:47:53 +02003708 }
3709 break;
3710 case '=':
3711 if (arg->op.op[1] != '=')
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -03003712 goto out_warning_op;
3713
Steven Rostedtf7d82352012-04-06 00:47:53 +02003714 val = left == right;
3715 break;
3716 case '-':
3717 val = left - right;
3718 break;
3719 case '+':
3720 val = left + right;
3721 break;
Steven Rostedt2e7a5fc2012-04-06 00:48:04 +02003722 case '/':
3723 val = left / right;
3724 break;
Daniel Bristot de Oliveira0e47b382016-02-22 14:08:22 -03003725 case '%':
3726 val = left % right;
3727 break;
Steven Rostedt2e7a5fc2012-04-06 00:48:04 +02003728 case '*':
3729 val = left * right;
3730 break;
Steven Rostedtf7d82352012-04-06 00:47:53 +02003731 default:
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -03003732 goto out_warning_op;
Steven Rostedtf7d82352012-04-06 00:47:53 +02003733 }
3734 break;
He Kuang76055942015-08-29 04:22:05 +00003735 case PRINT_DYNAMIC_ARRAY_LEN:
3736 offset = pevent_read_number(pevent,
3737 data + arg->dynarray.field->offset,
3738 arg->dynarray.field->size);
3739 /*
3740 * The total allocated length of the dynamic array is
3741 * stored in the top half of the field, and the offset
3742 * is in the bottom half of the 32 bit field.
3743 */
3744 val = (unsigned long long)(offset >> 16);
3745 break;
Steven Rostedt0497a9e2013-11-11 16:08:10 -05003746 case PRINT_DYNAMIC_ARRAY:
3747 /* Without [], we pass the address to the dynamic data */
3748 offset = pevent_read_number(pevent,
3749 data + arg->dynarray.field->offset,
3750 arg->dynarray.field->size);
3751 /*
He Kuang76055942015-08-29 04:22:05 +00003752 * The total allocated length of the dynamic array is
3753 * stored in the top half of the field, and the offset
Steven Rostedt0497a9e2013-11-11 16:08:10 -05003754 * is in the bottom half of the 32 bit field.
3755 */
3756 offset &= 0xffff;
Arnaldo Carvalho de Melo6b5fa0b2013-11-19 16:14:51 -03003757 val = (unsigned long long)((unsigned long)data + offset);
Steven Rostedt0497a9e2013-11-11 16:08:10 -05003758 break;
Steven Rostedtf7d82352012-04-06 00:47:53 +02003759 default: /* not sure what to do there */
3760 return 0;
3761 }
3762 return val;
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -03003763
3764out_warning_op:
Namhyung Kim3388cc32014-03-19 10:22:53 +09003765 do_warning_event(event, "%s: unknown op '%s'", __func__, arg->op.op);
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -03003766 return 0;
3767
3768out_warning_field:
Namhyung Kim3388cc32014-03-19 10:22:53 +09003769 do_warning_event(event, "%s: field %s not found",
3770 __func__, arg->field.name);
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -03003771 return 0;
Steven Rostedtf7d82352012-04-06 00:47:53 +02003772}
3773
3774struct flag {
3775 const char *name;
3776 unsigned long long value;
3777};
3778
3779static const struct flag flags[] = {
3780 { "HI_SOFTIRQ", 0 },
3781 { "TIMER_SOFTIRQ", 1 },
3782 { "NET_TX_SOFTIRQ", 2 },
3783 { "NET_RX_SOFTIRQ", 3 },
3784 { "BLOCK_SOFTIRQ", 4 },
Christoph Hellwig511cbce2015-11-10 14:56:14 +01003785 { "IRQ_POLL_SOFTIRQ", 5 },
Steven Rostedtf7d82352012-04-06 00:47:53 +02003786 { "TASKLET_SOFTIRQ", 6 },
3787 { "SCHED_SOFTIRQ", 7 },
3788 { "HRTIMER_SOFTIRQ", 8 },
3789 { "RCU_SOFTIRQ", 9 },
3790
3791 { "HRTIMER_NORESTART", 0 },
3792 { "HRTIMER_RESTART", 1 },
3793};
3794
Steven Rostedt7c27f782015-03-24 14:58:13 -04003795static long long eval_flag(const char *flag)
Steven Rostedtf7d82352012-04-06 00:47:53 +02003796{
3797 int i;
3798
3799 /*
3800 * Some flags in the format files do not get converted.
3801 * If the flag is not numeric, see if it is something that
3802 * we already know about.
3803 */
3804 if (isdigit(flag[0]))
3805 return strtoull(flag, NULL, 0);
3806
3807 for (i = 0; i < (int)(sizeof(flags)/sizeof(flags[0])); i++)
3808 if (strcmp(flags[i].name, flag) == 0)
3809 return flags[i].value;
3810
Steven Rostedt7c27f782015-03-24 14:58:13 -04003811 return -1LL;
Steven Rostedtf7d82352012-04-06 00:47:53 +02003812}
3813
3814static void print_str_to_seq(struct trace_seq *s, const char *format,
3815 int len_arg, const char *str)
3816{
3817 if (len_arg >= 0)
3818 trace_seq_printf(s, format, len_arg, str);
3819 else
3820 trace_seq_printf(s, format, str);
3821}
3822
Steven Rostedt (Red Hat)473a7782014-06-02 23:20:16 -04003823static void print_bitmask_to_seq(struct pevent *pevent,
3824 struct trace_seq *s, const char *format,
3825 int len_arg, const void *data, int size)
3826{
3827 int nr_bits = size * 8;
3828 int str_size = (nr_bits + 3) / 4;
3829 int len = 0;
3830 char buf[3];
3831 char *str;
3832 int index;
3833 int i;
3834
3835 /*
3836 * The kernel likes to put in commas every 32 bits, we
3837 * can do the same.
3838 */
3839 str_size += (nr_bits - 1) / 32;
3840
3841 str = malloc(str_size + 1);
3842 if (!str) {
3843 do_warning("%s: not enough memory!", __func__);
3844 return;
3845 }
3846 str[str_size] = 0;
3847
3848 /* Start out with -2 for the two chars per byte */
3849 for (i = str_size - 2; i >= 0; i -= 2) {
3850 /*
3851 * data points to a bit mask of size bytes.
3852 * In the kernel, this is an array of long words, thus
3853 * endianess is very important.
3854 */
3855 if (pevent->file_bigendian)
3856 index = size - (len + 1);
3857 else
3858 index = len;
3859
3860 snprintf(buf, 3, "%02x", *((unsigned char *)data + index));
3861 memcpy(str + i, buf, 2);
3862 len++;
3863 if (!(len & 3) && i > 0) {
3864 i--;
3865 str[i] = ',';
3866 }
3867 }
3868
3869 if (len_arg >= 0)
3870 trace_seq_printf(s, format, len_arg, str);
3871 else
3872 trace_seq_printf(s, format, str);
3873
3874 free(str);
3875}
3876
Steven Rostedtf7d82352012-04-06 00:47:53 +02003877static void print_str_arg(struct trace_seq *s, void *data, int size,
3878 struct event_format *event, const char *format,
3879 int len_arg, struct print_arg *arg)
3880{
3881 struct pevent *pevent = event->pevent;
3882 struct print_flag_sym *flag;
Namhyung Kimb7008072012-06-27 09:41:40 +09003883 struct format_field *field;
Steven Rostedt (Red Hat)0970b5f2013-11-01 17:53:55 -04003884 struct printk_map *printk;
Steven Rostedt7c27f782015-03-24 14:58:13 -04003885 long long val, fval;
Kapileshwar Singhc2e4b242015-09-22 14:22:03 +01003886 unsigned long long addr;
Steven Rostedtf7d82352012-04-06 00:47:53 +02003887 char *str;
Namhyung Kime080e6f2012-06-27 09:41:41 +09003888 unsigned char *hex;
Steven Rostedtf7d82352012-04-06 00:47:53 +02003889 int print;
Namhyung Kime080e6f2012-06-27 09:41:41 +09003890 int i, len;
Steven Rostedtf7d82352012-04-06 00:47:53 +02003891
3892 switch (arg->type) {
3893 case PRINT_NULL:
3894 /* ?? */
3895 return;
3896 case PRINT_ATOM:
3897 print_str_to_seq(s, format, len_arg, arg->atom.atom);
3898 return;
3899 case PRINT_FIELD:
Namhyung Kimb7008072012-06-27 09:41:40 +09003900 field = arg->field.field;
3901 if (!field) {
3902 field = pevent_find_any_field(event, arg->field.name);
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -03003903 if (!field) {
3904 str = arg->field.name;
3905 goto out_warning_field;
3906 }
Namhyung Kimb7008072012-06-27 09:41:40 +09003907 arg->field.field = field;
Steven Rostedtf7d82352012-04-06 00:47:53 +02003908 }
3909 /* Zero sized fields, mean the rest of the data */
Namhyung Kimb7008072012-06-27 09:41:40 +09003910 len = field->size ? : size - field->offset;
Steven Rostedtf7d82352012-04-06 00:47:53 +02003911
3912 /*
3913 * Some events pass in pointers. If this is not an array
3914 * and the size is the same as long_size, assume that it
3915 * is a pointer.
3916 */
Namhyung Kimb7008072012-06-27 09:41:40 +09003917 if (!(field->flags & FIELD_IS_ARRAY) &&
3918 field->size == pevent->long_size) {
Kapileshwar Singhc2e4b242015-09-22 14:22:03 +01003919
3920 /* Handle heterogeneous recording and processing
3921 * architectures
3922 *
3923 * CASE I:
3924 * Traces recorded on 32-bit devices (32-bit
3925 * addressing) and processed on 64-bit devices:
3926 * In this case, only 32 bits should be read.
3927 *
3928 * CASE II:
3929 * Traces recorded on 64 bit devices and processed
3930 * on 32-bit devices:
3931 * In this case, 64 bits must be read.
3932 */
3933 addr = (pevent->long_size == 8) ?
3934 *(unsigned long long *)(data + field->offset) :
3935 (unsigned long long)*(unsigned int *)(data + field->offset);
3936
Steven Rostedt (Red Hat)0970b5f2013-11-01 17:53:55 -04003937 /* Check if it matches a print format */
3938 printk = find_printk(pevent, addr);
3939 if (printk)
3940 trace_seq_puts(s, printk->printk);
3941 else
Kapileshwar Singhc2e4b242015-09-22 14:22:03 +01003942 trace_seq_printf(s, "%llx", addr);
Steven Rostedtf7d82352012-04-06 00:47:53 +02003943 break;
3944 }
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -03003945 str = malloc(len + 1);
3946 if (!str) {
Namhyung Kim3388cc32014-03-19 10:22:53 +09003947 do_warning_event(event, "%s: not enough memory!",
3948 __func__);
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -03003949 return;
3950 }
Namhyung Kimb7008072012-06-27 09:41:40 +09003951 memcpy(str, data + field->offset, len);
Steven Rostedtf7d82352012-04-06 00:47:53 +02003952 str[len] = 0;
3953 print_str_to_seq(s, format, len_arg, str);
3954 free(str);
3955 break;
3956 case PRINT_FLAGS:
3957 val = eval_num_arg(data, size, event, arg->flags.field);
3958 print = 0;
3959 for (flag = arg->flags.flags; flag; flag = flag->next) {
3960 fval = eval_flag(flag->value);
Steven Rostedt7c27f782015-03-24 14:58:13 -04003961 if (!val && fval < 0) {
Steven Rostedtf7d82352012-04-06 00:47:53 +02003962 print_str_to_seq(s, format, len_arg, flag->str);
3963 break;
3964 }
Steven Rostedt7c27f782015-03-24 14:58:13 -04003965 if (fval > 0 && (val & fval) == fval) {
Steven Rostedtf7d82352012-04-06 00:47:53 +02003966 if (print && arg->flags.delim)
3967 trace_seq_puts(s, arg->flags.delim);
3968 print_str_to_seq(s, format, len_arg, flag->str);
3969 print = 1;
3970 val &= ~fval;
3971 }
3972 }
Steven Rostedt (VMware)3df76c92018-01-11 19:47:43 -05003973 if (val) {
3974 if (print && arg->flags.delim)
3975 trace_seq_puts(s, arg->flags.delim);
3976 trace_seq_printf(s, "0x%llx", val);
3977 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02003978 break;
3979 case PRINT_SYMBOL:
3980 val = eval_num_arg(data, size, event, arg->symbol.field);
3981 for (flag = arg->symbol.symbols; flag; flag = flag->next) {
3982 fval = eval_flag(flag->value);
3983 if (val == fval) {
3984 print_str_to_seq(s, format, len_arg, flag->str);
3985 break;
3986 }
3987 }
3988 break;
Namhyung Kime080e6f2012-06-27 09:41:41 +09003989 case PRINT_HEX:
Daniel Borkmann0fe05592017-01-25 02:28:17 +01003990 case PRINT_HEX_STR:
Howard Cochranb30f75e2013-11-01 17:53:56 -04003991 if (arg->hex.field->type == PRINT_DYNAMIC_ARRAY) {
3992 unsigned long offset;
3993 offset = pevent_read_number(pevent,
3994 data + arg->hex.field->dynarray.field->offset,
3995 arg->hex.field->dynarray.field->size);
3996 hex = data + (offset & 0xffff);
3997 } else {
3998 field = arg->hex.field->field.field;
3999 if (!field) {
4000 str = arg->hex.field->field.name;
4001 field = pevent_find_any_field(event, str);
4002 if (!field)
4003 goto out_warning_field;
4004 arg->hex.field->field.field = field;
4005 }
4006 hex = data + field->offset;
Namhyung Kime080e6f2012-06-27 09:41:41 +09004007 }
Namhyung Kime080e6f2012-06-27 09:41:41 +09004008 len = eval_num_arg(data, size, event, arg->hex.size);
4009 for (i = 0; i < len; i++) {
Daniel Borkmann0fe05592017-01-25 02:28:17 +01004010 if (i && arg->type == PRINT_HEX)
Namhyung Kime080e6f2012-06-27 09:41:41 +09004011 trace_seq_putc(s, ' ');
4012 trace_seq_printf(s, "%02x", hex[i]);
4013 }
4014 break;
Steven Rostedtf7d82352012-04-06 00:47:53 +02004015
Javi Merinob839e1e82015-03-24 11:07:19 +00004016 case PRINT_INT_ARRAY: {
4017 void *num;
4018 int el_size;
4019
4020 if (arg->int_array.field->type == PRINT_DYNAMIC_ARRAY) {
4021 unsigned long offset;
4022 struct format_field *field =
4023 arg->int_array.field->dynarray.field;
4024 offset = pevent_read_number(pevent,
4025 data + field->offset,
4026 field->size);
4027 num = data + (offset & 0xffff);
4028 } else {
4029 field = arg->int_array.field->field.field;
4030 if (!field) {
4031 str = arg->int_array.field->field.name;
4032 field = pevent_find_any_field(event, str);
4033 if (!field)
4034 goto out_warning_field;
4035 arg->int_array.field->field.field = field;
4036 }
4037 num = data + field->offset;
4038 }
4039 len = eval_num_arg(data, size, event, arg->int_array.count);
4040 el_size = eval_num_arg(data, size, event,
4041 arg->int_array.el_size);
4042 for (i = 0; i < len; i++) {
4043 if (i)
4044 trace_seq_putc(s, ' ');
4045
4046 if (el_size == 1) {
4047 trace_seq_printf(s, "%u", *(uint8_t *)num);
4048 } else if (el_size == 2) {
4049 trace_seq_printf(s, "%u", *(uint16_t *)num);
4050 } else if (el_size == 4) {
4051 trace_seq_printf(s, "%u", *(uint32_t *)num);
4052 } else if (el_size == 8) {
Namhyung Kim410ceb82015-04-24 10:45:16 +09004053 trace_seq_printf(s, "%"PRIu64, *(uint64_t *)num);
Javi Merinob839e1e82015-03-24 11:07:19 +00004054 } else {
4055 trace_seq_printf(s, "BAD SIZE:%d 0x%x",
4056 el_size, *(uint8_t *)num);
4057 el_size = 1;
4058 }
4059
4060 num += el_size;
4061 }
4062 break;
4063 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02004064 case PRINT_TYPE:
4065 break;
4066 case PRINT_STRING: {
4067 int str_offset;
4068
4069 if (arg->string.offset == -1) {
4070 struct format_field *f;
4071
4072 f = pevent_find_any_field(event, arg->string.string);
4073 arg->string.offset = f->offset;
4074 }
4075 str_offset = data2host4(pevent, data + arg->string.offset);
4076 str_offset &= 0xffff;
4077 print_str_to_seq(s, format, len_arg, ((char *)data) + str_offset);
4078 break;
4079 }
4080 case PRINT_BSTRING:
Steven Rostedtc2e6dc22011-11-15 18:47:48 -05004081 print_str_to_seq(s, format, len_arg, arg->string.string);
Steven Rostedtf7d82352012-04-06 00:47:53 +02004082 break;
Steven Rostedt (Red Hat)473a7782014-06-02 23:20:16 -04004083 case PRINT_BITMASK: {
4084 int bitmask_offset;
4085 int bitmask_size;
4086
4087 if (arg->bitmask.offset == -1) {
4088 struct format_field *f;
4089
4090 f = pevent_find_any_field(event, arg->bitmask.bitmask);
4091 arg->bitmask.offset = f->offset;
4092 }
4093 bitmask_offset = data2host4(pevent, data + arg->bitmask.offset);
4094 bitmask_size = bitmask_offset >> 16;
4095 bitmask_offset &= 0xffff;
4096 print_bitmask_to_seq(pevent, s, format, len_arg,
4097 data + bitmask_offset, bitmask_size);
4098 break;
4099 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02004100 case PRINT_OP:
4101 /*
4102 * The only op for string should be ? :
4103 */
4104 if (arg->op.op[0] != '?')
4105 return;
4106 val = eval_num_arg(data, size, event, arg->op.left);
4107 if (val)
4108 print_str_arg(s, data, size, event,
4109 format, len_arg, arg->op.right->op.left);
4110 else
4111 print_str_arg(s, data, size, event,
4112 format, len_arg, arg->op.right->op.right);
4113 break;
4114 case PRINT_FUNC:
4115 process_defined_func(s, data, size, event, arg);
4116 break;
4117 default:
4118 /* well... */
4119 break;
4120 }
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -03004121
4122 return;
4123
4124out_warning_field:
Namhyung Kim3388cc32014-03-19 10:22:53 +09004125 do_warning_event(event, "%s: field %s not found",
4126 __func__, arg->field.name);
Steven Rostedtf7d82352012-04-06 00:47:53 +02004127}
4128
4129static unsigned long long
4130process_defined_func(struct trace_seq *s, void *data, int size,
4131 struct event_format *event, struct print_arg *arg)
4132{
4133 struct pevent_function_handler *func_handle = arg->func.func;
4134 struct pevent_func_params *param;
4135 unsigned long long *args;
4136 unsigned long long ret;
4137 struct print_arg *farg;
4138 struct trace_seq str;
4139 struct save_str {
4140 struct save_str *next;
4141 char *str;
4142 } *strings = NULL, *string;
4143 int i;
4144
4145 if (!func_handle->nr_args) {
4146 ret = (*func_handle->func)(s, NULL);
4147 goto out;
4148 }
4149
4150 farg = arg->func.args;
4151 param = func_handle->params;
4152
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -03004153 ret = ULLONG_MAX;
4154 args = malloc(sizeof(*args) * func_handle->nr_args);
4155 if (!args)
4156 goto out;
4157
Steven Rostedtf7d82352012-04-06 00:47:53 +02004158 for (i = 0; i < func_handle->nr_args; i++) {
4159 switch (param->type) {
4160 case PEVENT_FUNC_ARG_INT:
4161 case PEVENT_FUNC_ARG_LONG:
4162 case PEVENT_FUNC_ARG_PTR:
4163 args[i] = eval_num_arg(data, size, event, farg);
4164 break;
4165 case PEVENT_FUNC_ARG_STRING:
4166 trace_seq_init(&str);
4167 print_str_arg(&str, data, size, event, "%s", -1, farg);
4168 trace_seq_terminate(&str);
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -03004169 string = malloc(sizeof(*string));
4170 if (!string) {
Namhyung Kim3388cc32014-03-19 10:22:53 +09004171 do_warning_event(event, "%s(%d): malloc str",
4172 __func__, __LINE__);
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -03004173 goto out_free;
4174 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02004175 string->next = strings;
4176 string->str = strdup(str.buffer);
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -03004177 if (!string->str) {
4178 free(string);
Namhyung Kim3388cc32014-03-19 10:22:53 +09004179 do_warning_event(event, "%s(%d): malloc str",
4180 __func__, __LINE__);
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -03004181 goto out_free;
4182 }
Robert Richter0cf26012012-08-07 19:43:14 +02004183 args[i] = (uintptr_t)string->str;
Steven Rostedtf7d82352012-04-06 00:47:53 +02004184 strings = string;
4185 trace_seq_destroy(&str);
4186 break;
4187 default:
4188 /*
4189 * Something went totally wrong, this is not
4190 * an input error, something in this code broke.
4191 */
Namhyung Kim3388cc32014-03-19 10:22:53 +09004192 do_warning_event(event, "Unexpected end of arguments\n");
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -03004193 goto out_free;
Steven Rostedtf7d82352012-04-06 00:47:53 +02004194 }
4195 farg = farg->next;
Namhyung Kim21c69e72012-05-23 11:36:51 +09004196 param = param->next;
Steven Rostedtf7d82352012-04-06 00:47:53 +02004197 }
4198
4199 ret = (*func_handle->func)(s, args);
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -03004200out_free:
Steven Rostedtf7d82352012-04-06 00:47:53 +02004201 free(args);
4202 while (strings) {
4203 string = strings;
4204 strings = string->next;
4205 free(string->str);
4206 free(string);
4207 }
4208
4209 out:
4210 /* TBD : handle return type here */
4211 return ret;
4212}
4213
Arnaldo Carvalho de Melo0dbca1e2012-09-12 15:39:59 -03004214static void free_args(struct print_arg *args)
4215{
4216 struct print_arg *next;
4217
4218 while (args) {
4219 next = args->next;
4220
4221 free_arg(args);
4222 args = next;
4223 }
4224}
4225
Steven Rostedtf7d82352012-04-06 00:47:53 +02004226static struct print_arg *make_bprint_args(char *fmt, void *data, int size, struct event_format *event)
4227{
4228 struct pevent *pevent = event->pevent;
4229 struct format_field *field, *ip_field;
4230 struct print_arg *args, *arg, **next;
4231 unsigned long long ip, val;
4232 char *ptr;
4233 void *bptr;
Steven Rostedtc2e6dc22011-11-15 18:47:48 -05004234 int vsize;
Steven Rostedtf7d82352012-04-06 00:47:53 +02004235
4236 field = pevent->bprint_buf_field;
4237 ip_field = pevent->bprint_ip_field;
4238
4239 if (!field) {
4240 field = pevent_find_field(event, "buf");
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -03004241 if (!field) {
Namhyung Kim3388cc32014-03-19 10:22:53 +09004242 do_warning_event(event, "can't find buffer field for binary printk");
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -03004243 return NULL;
4244 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02004245 ip_field = pevent_find_field(event, "ip");
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -03004246 if (!ip_field) {
Namhyung Kim3388cc32014-03-19 10:22:53 +09004247 do_warning_event(event, "can't find ip field for binary printk");
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -03004248 return NULL;
4249 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02004250 pevent->bprint_buf_field = field;
4251 pevent->bprint_ip_field = ip_field;
4252 }
4253
4254 ip = pevent_read_number(pevent, data + ip_field->offset, ip_field->size);
4255
4256 /*
4257 * The first arg is the IP pointer.
4258 */
4259 args = alloc_arg();
Namhyung Kimb1ac7542012-09-20 11:09:19 +09004260 if (!args) {
Namhyung Kim3388cc32014-03-19 10:22:53 +09004261 do_warning_event(event, "%s(%d): not enough memory!",
4262 __func__, __LINE__);
Namhyung Kimb1ac7542012-09-20 11:09:19 +09004263 return NULL;
4264 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02004265 arg = args;
4266 arg->next = NULL;
4267 next = &arg->next;
4268
4269 arg->type = PRINT_ATOM;
Arnaldo Carvalho de Melo0dbca1e2012-09-12 15:39:59 -03004270
4271 if (asprintf(&arg->atom.atom, "%lld", ip) < 0)
4272 goto out_free;
Steven Rostedtf7d82352012-04-06 00:47:53 +02004273
Scott Woodbbedb172015-03-11 22:13:57 -05004274 /* skip the first "%ps: " */
Steven Rostedt (Red Hat)0883d9d2013-11-01 17:53:57 -04004275 for (ptr = fmt + 5, bptr = data + field->offset;
Steven Rostedtf7d82352012-04-06 00:47:53 +02004276 bptr < data + size && *ptr; ptr++) {
4277 int ls = 0;
4278
4279 if (*ptr == '%') {
4280 process_again:
4281 ptr++;
4282 switch (*ptr) {
4283 case '%':
4284 break;
4285 case 'l':
4286 ls++;
4287 goto process_again;
4288 case 'L':
4289 ls = 2;
4290 goto process_again;
4291 case '0' ... '9':
4292 goto process_again;
Steven Rostedtc2e6dc22011-11-15 18:47:48 -05004293 case '.':
4294 goto process_again;
Steven Rostedt (Red Hat)55426292015-03-24 09:57:51 -04004295 case 'z':
4296 case 'Z':
4297 ls = 1;
4298 goto process_again;
Steven Rostedtf7d82352012-04-06 00:47:53 +02004299 case 'p':
4300 ls = 1;
4301 /* fall through */
4302 case 'd':
4303 case 'u':
4304 case 'x':
4305 case 'i':
Steven Rostedtc2e6dc22011-11-15 18:47:48 -05004306 switch (ls) {
4307 case 0:
4308 vsize = 4;
4309 break;
4310 case 1:
4311 vsize = pevent->long_size;
4312 break;
4313 case 2:
4314 vsize = 8;
Peter Huewec9bbabe2012-04-24 23:19:40 +02004315 break;
Steven Rostedtc2e6dc22011-11-15 18:47:48 -05004316 default:
4317 vsize = ls; /* ? */
4318 break;
4319 }
4320 /* fall through */
4321 case '*':
4322 if (*ptr == '*')
4323 vsize = 4;
4324
Steven Rostedtf7d82352012-04-06 00:47:53 +02004325 /* the pointers are always 4 bytes aligned */
4326 bptr = (void *)(((unsigned long)bptr + 3) &
4327 ~3);
Steven Rostedtc2e6dc22011-11-15 18:47:48 -05004328 val = pevent_read_number(pevent, bptr, vsize);
4329 bptr += vsize;
Steven Rostedtf7d82352012-04-06 00:47:53 +02004330 arg = alloc_arg();
Namhyung Kimb1ac7542012-09-20 11:09:19 +09004331 if (!arg) {
Namhyung Kim3388cc32014-03-19 10:22:53 +09004332 do_warning_event(event, "%s(%d): not enough memory!",
Namhyung Kimb1ac7542012-09-20 11:09:19 +09004333 __func__, __LINE__);
4334 goto out_free;
4335 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02004336 arg->next = NULL;
4337 arg->type = PRINT_ATOM;
Arnaldo Carvalho de Melo0dbca1e2012-09-12 15:39:59 -03004338 if (asprintf(&arg->atom.atom, "%lld", val) < 0) {
4339 free(arg);
4340 goto out_free;
4341 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02004342 *next = arg;
4343 next = &arg->next;
Steven Rostedtc2e6dc22011-11-15 18:47:48 -05004344 /*
4345 * The '*' case means that an arg is used as the length.
4346 * We need to continue to figure out for what.
4347 */
4348 if (*ptr == '*')
4349 goto process_again;
4350
Steven Rostedtf7d82352012-04-06 00:47:53 +02004351 break;
4352 case 's':
4353 arg = alloc_arg();
Namhyung Kimb1ac7542012-09-20 11:09:19 +09004354 if (!arg) {
Namhyung Kim3388cc32014-03-19 10:22:53 +09004355 do_warning_event(event, "%s(%d): not enough memory!",
Namhyung Kimb1ac7542012-09-20 11:09:19 +09004356 __func__, __LINE__);
4357 goto out_free;
4358 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02004359 arg->next = NULL;
4360 arg->type = PRINT_BSTRING;
4361 arg->string.string = strdup(bptr);
Namhyung Kimca638582012-04-09 11:54:31 +09004362 if (!arg->string.string)
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -03004363 goto out_free;
Steven Rostedtf7d82352012-04-06 00:47:53 +02004364 bptr += strlen(bptr) + 1;
4365 *next = arg;
4366 next = &arg->next;
4367 default:
4368 break;
4369 }
4370 }
4371 }
4372
4373 return args;
Steven Rostedtf7d82352012-04-06 00:47:53 +02004374
Arnaldo Carvalho de Melo0dbca1e2012-09-12 15:39:59 -03004375out_free:
4376 free_args(args);
4377 return NULL;
Steven Rostedtf7d82352012-04-06 00:47:53 +02004378}
4379
4380static char *
Irina Tirdea1d037ca2012-09-11 01:15:03 +03004381get_bprint_format(void *data, int size __maybe_unused,
4382 struct event_format *event)
Steven Rostedtf7d82352012-04-06 00:47:53 +02004383{
4384 struct pevent *pevent = event->pevent;
4385 unsigned long long addr;
4386 struct format_field *field;
4387 struct printk_map *printk;
4388 char *format;
Steven Rostedtf7d82352012-04-06 00:47:53 +02004389
4390 field = pevent->bprint_fmt_field;
4391
4392 if (!field) {
4393 field = pevent_find_field(event, "fmt");
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -03004394 if (!field) {
Namhyung Kim3388cc32014-03-19 10:22:53 +09004395 do_warning_event(event, "can't find format field for binary printk");
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -03004396 return NULL;
4397 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02004398 pevent->bprint_fmt_field = field;
4399 }
4400
4401 addr = pevent_read_number(pevent, data + field->offset, field->size);
4402
4403 printk = find_printk(pevent, addr);
4404 if (!printk) {
Steven Rostedt (Red Hat)0883d9d2013-11-01 17:53:57 -04004405 if (asprintf(&format, "%%pf: (NO FORMAT FOUND at %llx)\n", addr) < 0)
Arnaldo Carvalho de Melo0dbca1e2012-09-12 15:39:59 -03004406 return NULL;
Steven Rostedtf7d82352012-04-06 00:47:53 +02004407 return format;
4408 }
4409
Steven Rostedt (Red Hat)0883d9d2013-11-01 17:53:57 -04004410 if (asprintf(&format, "%s: %s", "%pf", printk->printk) < 0)
Arnaldo Carvalho de Melo0dbca1e2012-09-12 15:39:59 -03004411 return NULL;
Steven Rostedtf7d82352012-04-06 00:47:53 +02004412
4413 return format;
4414}
4415
4416static void print_mac_arg(struct trace_seq *s, int mac, void *data, int size,
4417 struct event_format *event, struct print_arg *arg)
4418{
4419 unsigned char *buf;
Arnaldo Carvalho de Melo27f94d52012-11-09 17:40:47 -03004420 const char *fmt = "%.2x:%.2x:%.2x:%.2x:%.2x:%.2x";
Steven Rostedtf7d82352012-04-06 00:47:53 +02004421
4422 if (arg->type == PRINT_FUNC) {
4423 process_defined_func(s, data, size, event, arg);
4424 return;
4425 }
4426
4427 if (arg->type != PRINT_FIELD) {
4428 trace_seq_printf(s, "ARG TYPE NOT FIELD BUT %d",
4429 arg->type);
4430 return;
4431 }
4432
4433 if (mac == 'm')
4434 fmt = "%.2x%.2x%.2x%.2x%.2x%.2x";
4435 if (!arg->field.field) {
4436 arg->field.field =
4437 pevent_find_any_field(event, arg->field.name);
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -03004438 if (!arg->field.field) {
Namhyung Kim3388cc32014-03-19 10:22:53 +09004439 do_warning_event(event, "%s: field %s not found",
4440 __func__, arg->field.name);
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -03004441 return;
4442 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02004443 }
4444 if (arg->field.field->size != 6) {
4445 trace_seq_printf(s, "INVALIDMAC");
4446 return;
4447 }
4448 buf = data + arg->field.field->offset;
4449 trace_seq_printf(s, fmt, buf[0], buf[1], buf[2], buf[3], buf[4], buf[5]);
4450}
4451
David Ahern3d199b52014-12-18 19:11:11 -07004452static void print_ip4_addr(struct trace_seq *s, char i, unsigned char *buf)
4453{
4454 const char *fmt;
4455
4456 if (i == 'i')
4457 fmt = "%03d.%03d.%03d.%03d";
4458 else
4459 fmt = "%d.%d.%d.%d";
4460
4461 trace_seq_printf(s, fmt, buf[0], buf[1], buf[2], buf[3]);
4462}
4463
4464static inline bool ipv6_addr_v4mapped(const struct in6_addr *a)
4465{
4466 return ((unsigned long)(a->s6_addr32[0] | a->s6_addr32[1]) |
4467 (unsigned long)(a->s6_addr32[2] ^ htonl(0x0000ffff))) == 0UL;
4468}
4469
4470static inline bool ipv6_addr_is_isatap(const struct in6_addr *addr)
4471{
4472 return (addr->s6_addr32[2] | htonl(0x02000000)) == htonl(0x02005EFE);
4473}
4474
4475static void print_ip6c_addr(struct trace_seq *s, unsigned char *addr)
4476{
4477 int i, j, range;
4478 unsigned char zerolength[8];
4479 int longest = 1;
4480 int colonpos = -1;
4481 uint16_t word;
4482 uint8_t hi, lo;
4483 bool needcolon = false;
4484 bool useIPv4;
4485 struct in6_addr in6;
4486
4487 memcpy(&in6, addr, sizeof(struct in6_addr));
4488
4489 useIPv4 = ipv6_addr_v4mapped(&in6) || ipv6_addr_is_isatap(&in6);
4490
4491 memset(zerolength, 0, sizeof(zerolength));
4492
4493 if (useIPv4)
4494 range = 6;
4495 else
4496 range = 8;
4497
4498 /* find position of longest 0 run */
4499 for (i = 0; i < range; i++) {
4500 for (j = i; j < range; j++) {
4501 if (in6.s6_addr16[j] != 0)
4502 break;
4503 zerolength[i]++;
4504 }
4505 }
4506 for (i = 0; i < range; i++) {
4507 if (zerolength[i] > longest) {
4508 longest = zerolength[i];
4509 colonpos = i;
4510 }
4511 }
4512 if (longest == 1) /* don't compress a single 0 */
4513 colonpos = -1;
4514
4515 /* emit address */
4516 for (i = 0; i < range; i++) {
4517 if (i == colonpos) {
4518 if (needcolon || i == 0)
4519 trace_seq_printf(s, ":");
4520 trace_seq_printf(s, ":");
4521 needcolon = false;
4522 i += longest - 1;
4523 continue;
4524 }
4525 if (needcolon) {
4526 trace_seq_printf(s, ":");
4527 needcolon = false;
4528 }
4529 /* hex u16 without leading 0s */
4530 word = ntohs(in6.s6_addr16[i]);
4531 hi = word >> 8;
4532 lo = word & 0xff;
4533 if (hi)
4534 trace_seq_printf(s, "%x%02x", hi, lo);
4535 else
4536 trace_seq_printf(s, "%x", lo);
4537
4538 needcolon = true;
4539 }
4540
4541 if (useIPv4) {
4542 if (needcolon)
4543 trace_seq_printf(s, ":");
4544 print_ip4_addr(s, 'I', &in6.s6_addr[12]);
4545 }
4546
4547 return;
4548}
4549
4550static void print_ip6_addr(struct trace_seq *s, char i, unsigned char *buf)
4551{
4552 int j;
4553
4554 for (j = 0; j < 16; j += 2) {
4555 trace_seq_printf(s, "%02x%02x", buf[j], buf[j+1]);
4556 if (i == 'I' && j < 14)
4557 trace_seq_printf(s, ":");
4558 }
4559}
4560
4561/*
4562 * %pi4 print an IPv4 address with leading zeros
4563 * %pI4 print an IPv4 address without leading zeros
4564 * %pi6 print an IPv6 address without colons
4565 * %pI6 print an IPv6 address with colons
4566 * %pI6c print an IPv6 address in compressed form with colons
4567 * %pISpc print an IP address based on sockaddr; p adds port.
4568 */
4569static int print_ipv4_arg(struct trace_seq *s, const char *ptr, char i,
4570 void *data, int size, struct event_format *event,
4571 struct print_arg *arg)
4572{
4573 unsigned char *buf;
4574
4575 if (arg->type == PRINT_FUNC) {
4576 process_defined_func(s, data, size, event, arg);
4577 return 0;
4578 }
4579
4580 if (arg->type != PRINT_FIELD) {
4581 trace_seq_printf(s, "ARG TYPE NOT FIELD BUT %d", arg->type);
4582 return 0;
4583 }
4584
4585 if (!arg->field.field) {
4586 arg->field.field =
4587 pevent_find_any_field(event, arg->field.name);
4588 if (!arg->field.field) {
4589 do_warning("%s: field %s not found",
4590 __func__, arg->field.name);
4591 return 0;
4592 }
4593 }
4594
4595 buf = data + arg->field.field->offset;
4596
4597 if (arg->field.field->size != 4) {
4598 trace_seq_printf(s, "INVALIDIPv4");
4599 return 0;
4600 }
4601 print_ip4_addr(s, i, buf);
4602
4603 return 0;
4604}
4605
4606static int print_ipv6_arg(struct trace_seq *s, const char *ptr, char i,
4607 void *data, int size, struct event_format *event,
4608 struct print_arg *arg)
4609{
4610 char have_c = 0;
4611 unsigned char *buf;
4612 int rc = 0;
4613
4614 /* pI6c */
4615 if (i == 'I' && *ptr == 'c') {
4616 have_c = 1;
4617 ptr++;
4618 rc++;
4619 }
4620
4621 if (arg->type == PRINT_FUNC) {
4622 process_defined_func(s, data, size, event, arg);
4623 return rc;
4624 }
4625
4626 if (arg->type != PRINT_FIELD) {
4627 trace_seq_printf(s, "ARG TYPE NOT FIELD BUT %d", arg->type);
4628 return rc;
4629 }
4630
4631 if (!arg->field.field) {
4632 arg->field.field =
4633 pevent_find_any_field(event, arg->field.name);
4634 if (!arg->field.field) {
4635 do_warning("%s: field %s not found",
4636 __func__, arg->field.name);
4637 return rc;
4638 }
4639 }
4640
4641 buf = data + arg->field.field->offset;
4642
4643 if (arg->field.field->size != 16) {
4644 trace_seq_printf(s, "INVALIDIPv6");
4645 return rc;
4646 }
4647
4648 if (have_c)
4649 print_ip6c_addr(s, buf);
4650 else
4651 print_ip6_addr(s, i, buf);
4652
4653 return rc;
4654}
4655
4656static int print_ipsa_arg(struct trace_seq *s, const char *ptr, char i,
4657 void *data, int size, struct event_format *event,
4658 struct print_arg *arg)
4659{
4660 char have_c = 0, have_p = 0;
4661 unsigned char *buf;
4662 struct sockaddr_storage *sa;
4663 int rc = 0;
4664
4665 /* pISpc */
4666 if (i == 'I') {
4667 if (*ptr == 'p') {
4668 have_p = 1;
4669 ptr++;
4670 rc++;
4671 }
4672 if (*ptr == 'c') {
4673 have_c = 1;
4674 ptr++;
4675 rc++;
4676 }
4677 }
4678
4679 if (arg->type == PRINT_FUNC) {
4680 process_defined_func(s, data, size, event, arg);
4681 return rc;
4682 }
4683
4684 if (arg->type != PRINT_FIELD) {
4685 trace_seq_printf(s, "ARG TYPE NOT FIELD BUT %d", arg->type);
4686 return rc;
4687 }
4688
4689 if (!arg->field.field) {
4690 arg->field.field =
4691 pevent_find_any_field(event, arg->field.name);
4692 if (!arg->field.field) {
4693 do_warning("%s: field %s not found",
4694 __func__, arg->field.name);
4695 return rc;
4696 }
4697 }
4698
4699 sa = (struct sockaddr_storage *) (data + arg->field.field->offset);
4700
4701 if (sa->ss_family == AF_INET) {
4702 struct sockaddr_in *sa4 = (struct sockaddr_in *) sa;
4703
4704 if (arg->field.field->size < sizeof(struct sockaddr_in)) {
4705 trace_seq_printf(s, "INVALIDIPv4");
4706 return rc;
4707 }
4708
4709 print_ip4_addr(s, i, (unsigned char *) &sa4->sin_addr);
4710 if (have_p)
4711 trace_seq_printf(s, ":%d", ntohs(sa4->sin_port));
4712
4713
4714 } else if (sa->ss_family == AF_INET6) {
4715 struct sockaddr_in6 *sa6 = (struct sockaddr_in6 *) sa;
4716
4717 if (arg->field.field->size < sizeof(struct sockaddr_in6)) {
4718 trace_seq_printf(s, "INVALIDIPv6");
4719 return rc;
4720 }
4721
4722 if (have_p)
4723 trace_seq_printf(s, "[");
4724
4725 buf = (unsigned char *) &sa6->sin6_addr;
4726 if (have_c)
4727 print_ip6c_addr(s, buf);
4728 else
4729 print_ip6_addr(s, i, buf);
4730
4731 if (have_p)
4732 trace_seq_printf(s, "]:%d", ntohs(sa6->sin6_port));
4733 }
4734
4735 return rc;
4736}
4737
4738static int print_ip_arg(struct trace_seq *s, const char *ptr,
4739 void *data, int size, struct event_format *event,
4740 struct print_arg *arg)
4741{
4742 char i = *ptr; /* 'i' or 'I' */
4743 char ver;
4744 int rc = 0;
4745
4746 ptr++;
4747 rc++;
4748
4749 ver = *ptr;
4750 ptr++;
4751 rc++;
4752
4753 switch (ver) {
4754 case '4':
4755 rc += print_ipv4_arg(s, ptr, i, data, size, event, arg);
4756 break;
4757 case '6':
4758 rc += print_ipv6_arg(s, ptr, i, data, size, event, arg);
4759 break;
4760 case 'S':
4761 rc += print_ipsa_arg(s, ptr, i, data, size, event, arg);
4762 break;
4763 default:
4764 return 0;
4765 }
4766
4767 return rc;
4768}
4769
Namhyung Kim600da3c2012-06-22 17:10:15 +09004770static int is_printable_array(char *p, unsigned int len)
4771{
4772 unsigned int i;
4773
4774 for (i = 0; i < len && p[i]; i++)
Steven Rostedt (Red Hat)5efb9fb2013-11-01 17:53:58 -04004775 if (!isprint(p[i]) && !isspace(p[i]))
Namhyung Kim600da3c2012-06-22 17:10:15 +09004776 return 0;
4777 return 1;
4778}
4779
Namhyung Kimbe45d402015-12-23 22:08:41 +09004780void pevent_print_field(struct trace_seq *s, void *data,
4781 struct format_field *field)
Steven Rostedtf7d82352012-04-06 00:47:53 +02004782{
Steven Rostedtf7d82352012-04-06 00:47:53 +02004783 unsigned long long val;
4784 unsigned int offset, len, i;
Namhyung Kimbe45d402015-12-23 22:08:41 +09004785 struct pevent *pevent = field->event->pevent;
4786
4787 if (field->flags & FIELD_IS_ARRAY) {
4788 offset = field->offset;
4789 len = field->size;
4790 if (field->flags & FIELD_IS_DYNAMIC) {
4791 val = pevent_read_number(pevent, data + offset, len);
4792 offset = val;
4793 len = offset >> 16;
4794 offset &= 0xffff;
4795 }
4796 if (field->flags & FIELD_IS_STRING &&
4797 is_printable_array(data + offset, len)) {
4798 trace_seq_printf(s, "%s", (char *)data + offset);
4799 } else {
4800 trace_seq_puts(s, "ARRAY[");
4801 for (i = 0; i < len; i++) {
4802 if (i)
4803 trace_seq_puts(s, ", ");
4804 trace_seq_printf(s, "%02x",
4805 *((unsigned char *)data + offset + i));
4806 }
4807 trace_seq_putc(s, ']');
4808 field->flags &= ~FIELD_IS_STRING;
4809 }
4810 } else {
4811 val = pevent_read_number(pevent, data + field->offset,
4812 field->size);
4813 if (field->flags & FIELD_IS_POINTER) {
4814 trace_seq_printf(s, "0x%llx", val);
4815 } else if (field->flags & FIELD_IS_SIGNED) {
4816 switch (field->size) {
4817 case 4:
4818 /*
4819 * If field is long then print it in hex.
4820 * A long usually stores pointers.
4821 */
4822 if (field->flags & FIELD_IS_LONG)
4823 trace_seq_printf(s, "0x%x", (int)val);
4824 else
4825 trace_seq_printf(s, "%d", (int)val);
4826 break;
4827 case 2:
4828 trace_seq_printf(s, "%2d", (short)val);
4829 break;
4830 case 1:
4831 trace_seq_printf(s, "%1d", (char)val);
4832 break;
4833 default:
4834 trace_seq_printf(s, "%lld", val);
4835 }
4836 } else {
4837 if (field->flags & FIELD_IS_LONG)
4838 trace_seq_printf(s, "0x%llx", val);
4839 else
4840 trace_seq_printf(s, "%llu", val);
4841 }
4842 }
4843}
4844
4845void pevent_print_fields(struct trace_seq *s, void *data,
4846 int size __maybe_unused, struct event_format *event)
4847{
4848 struct format_field *field;
Steven Rostedtf7d82352012-04-06 00:47:53 +02004849
4850 field = event->format.fields;
4851 while (field) {
4852 trace_seq_printf(s, " %s=", field->name);
Namhyung Kimbe45d402015-12-23 22:08:41 +09004853 pevent_print_field(s, data, field);
Steven Rostedtf7d82352012-04-06 00:47:53 +02004854 field = field->next;
4855 }
4856}
4857
4858static void pretty_print(struct trace_seq *s, void *data, int size, struct event_format *event)
4859{
4860 struct pevent *pevent = event->pevent;
4861 struct print_fmt *print_fmt = &event->print_fmt;
4862 struct print_arg *arg = print_fmt->args;
4863 struct print_arg *args = NULL;
4864 const char *ptr = print_fmt->format;
4865 unsigned long long val;
4866 struct func_map *func;
4867 const char *saveptr;
Steven Rostedt12e55562013-11-19 18:29:37 -05004868 struct trace_seq p;
Steven Rostedtf7d82352012-04-06 00:47:53 +02004869 char *bprint_fmt = NULL;
4870 char format[32];
4871 int show_func;
4872 int len_as_arg;
4873 int len_arg;
4874 int len;
4875 int ls;
4876
4877 if (event->flags & EVENT_FL_FAILED) {
4878 trace_seq_printf(s, "[FAILED TO PARSE]");
Namhyung Kimbe45d402015-12-23 22:08:41 +09004879 pevent_print_fields(s, data, size, event);
Steven Rostedtf7d82352012-04-06 00:47:53 +02004880 return;
4881 }
4882
4883 if (event->flags & EVENT_FL_ISBPRINT) {
4884 bprint_fmt = get_bprint_format(data, size, event);
4885 args = make_bprint_args(bprint_fmt, data, size, event);
4886 arg = args;
4887 ptr = bprint_fmt;
4888 }
4889
4890 for (; *ptr; ptr++) {
4891 ls = 0;
4892 if (*ptr == '\\') {
4893 ptr++;
4894 switch (*ptr) {
4895 case 'n':
4896 trace_seq_putc(s, '\n');
4897 break;
4898 case 't':
4899 trace_seq_putc(s, '\t');
4900 break;
4901 case 'r':
4902 trace_seq_putc(s, '\r');
4903 break;
4904 case '\\':
4905 trace_seq_putc(s, '\\');
4906 break;
4907 default:
4908 trace_seq_putc(s, *ptr);
4909 break;
4910 }
4911
4912 } else if (*ptr == '%') {
4913 saveptr = ptr;
4914 show_func = 0;
4915 len_as_arg = 0;
4916 cont_process:
4917 ptr++;
4918 switch (*ptr) {
4919 case '%':
4920 trace_seq_putc(s, '%');
4921 break;
4922 case '#':
4923 /* FIXME: need to handle properly */
4924 goto cont_process;
4925 case 'h':
4926 ls--;
4927 goto cont_process;
4928 case 'l':
4929 ls++;
4930 goto cont_process;
4931 case 'L':
4932 ls = 2;
4933 goto cont_process;
4934 case '*':
4935 /* The argument is the length. */
Namhyung Kim245c5a12012-09-07 11:49:45 +09004936 if (!arg) {
Namhyung Kim3388cc32014-03-19 10:22:53 +09004937 do_warning_event(event, "no argument match");
Namhyung Kim245c5a12012-09-07 11:49:45 +09004938 event->flags |= EVENT_FL_FAILED;
4939 goto out_failed;
4940 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02004941 len_arg = eval_num_arg(data, size, event, arg);
4942 len_as_arg = 1;
4943 arg = arg->next;
4944 goto cont_process;
4945 case '.':
4946 case 'z':
4947 case 'Z':
4948 case '0' ... '9':
Steven Rostedt1d945012015-08-27 09:46:01 -04004949 case '-':
Steven Rostedtf7d82352012-04-06 00:47:53 +02004950 goto cont_process;
4951 case 'p':
4952 if (pevent->long_size == 4)
4953 ls = 1;
4954 else
4955 ls = 2;
4956
Scott Woodb6bd9c72015-08-31 16:16:37 -05004957 if (*(ptr+1) == 'F' || *(ptr+1) == 'f' ||
4958 *(ptr+1) == 'S' || *(ptr+1) == 's') {
Steven Rostedtf7d82352012-04-06 00:47:53 +02004959 ptr++;
4960 show_func = *ptr;
4961 } else if (*(ptr+1) == 'M' || *(ptr+1) == 'm') {
4962 print_mac_arg(s, *(ptr+1), data, size, event, arg);
4963 ptr++;
Steven Rostedtaaf05c72012-01-09 15:58:09 -05004964 arg = arg->next;
Steven Rostedtf7d82352012-04-06 00:47:53 +02004965 break;
David Ahern3d199b52014-12-18 19:11:11 -07004966 } else if (*(ptr+1) == 'I' || *(ptr+1) == 'i') {
4967 int n;
4968
4969 n = print_ip_arg(s, ptr+1, data, size, event, arg);
4970 if (n > 0) {
4971 ptr += n;
4972 arg = arg->next;
4973 break;
4974 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02004975 }
4976
4977 /* fall through */
4978 case 'd':
4979 case 'i':
4980 case 'x':
4981 case 'X':
4982 case 'u':
Namhyung Kim245c5a12012-09-07 11:49:45 +09004983 if (!arg) {
Namhyung Kim3388cc32014-03-19 10:22:53 +09004984 do_warning_event(event, "no argument match");
Namhyung Kim245c5a12012-09-07 11:49:45 +09004985 event->flags |= EVENT_FL_FAILED;
4986 goto out_failed;
4987 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02004988
4989 len = ((unsigned long)ptr + 1) -
4990 (unsigned long)saveptr;
4991
4992 /* should never happen */
Namhyung Kim245c5a12012-09-07 11:49:45 +09004993 if (len > 31) {
Namhyung Kim3388cc32014-03-19 10:22:53 +09004994 do_warning_event(event, "bad format!");
Namhyung Kim245c5a12012-09-07 11:49:45 +09004995 event->flags |= EVENT_FL_FAILED;
4996 len = 31;
4997 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02004998
4999 memcpy(format, saveptr, len);
5000 format[len] = 0;
5001
5002 val = eval_num_arg(data, size, event, arg);
5003 arg = arg->next;
5004
5005 if (show_func) {
5006 func = find_func(pevent, val);
5007 if (func) {
5008 trace_seq_puts(s, func->func);
5009 if (show_func == 'F')
5010 trace_seq_printf(s,
5011 "+0x%llx",
5012 val - func->addr);
5013 break;
5014 }
5015 }
Steven Rostedt (Red Hat)a66673a2016-02-09 15:40:17 -05005016 if (pevent->long_size == 8 && ls == 1 &&
Wolfgang Mauererc5b35b72012-03-22 11:18:21 +01005017 sizeof(long) != 8) {
Steven Rostedtf7d82352012-04-06 00:47:53 +02005018 char *p;
5019
Steven Rostedtf7d82352012-04-06 00:47:53 +02005020 /* make %l into %ll */
Steven Rostedt32abc2e2015-11-16 17:25:16 -05005021 if (ls == 1 && (p = strchr(format, 'l')))
Wolfgang Mauererc5b35b72012-03-22 11:18:21 +01005022 memmove(p+1, p, strlen(p)+1);
Steven Rostedtf7d82352012-04-06 00:47:53 +02005023 else if (strcmp(format, "%p") == 0)
5024 strcpy(format, "0x%llx");
Steven Rostedt32abc2e2015-11-16 17:25:16 -05005025 ls = 2;
Steven Rostedtf7d82352012-04-06 00:47:53 +02005026 }
5027 switch (ls) {
5028 case -2:
5029 if (len_as_arg)
5030 trace_seq_printf(s, format, len_arg, (char)val);
5031 else
5032 trace_seq_printf(s, format, (char)val);
5033 break;
5034 case -1:
5035 if (len_as_arg)
5036 trace_seq_printf(s, format, len_arg, (short)val);
5037 else
5038 trace_seq_printf(s, format, (short)val);
5039 break;
5040 case 0:
5041 if (len_as_arg)
5042 trace_seq_printf(s, format, len_arg, (int)val);
5043 else
5044 trace_seq_printf(s, format, (int)val);
5045 break;
5046 case 1:
5047 if (len_as_arg)
5048 trace_seq_printf(s, format, len_arg, (long)val);
5049 else
5050 trace_seq_printf(s, format, (long)val);
5051 break;
5052 case 2:
5053 if (len_as_arg)
5054 trace_seq_printf(s, format, len_arg,
5055 (long long)val);
5056 else
5057 trace_seq_printf(s, format, (long long)val);
5058 break;
5059 default:
Namhyung Kim3388cc32014-03-19 10:22:53 +09005060 do_warning_event(event, "bad count (%d)", ls);
Namhyung Kim245c5a12012-09-07 11:49:45 +09005061 event->flags |= EVENT_FL_FAILED;
Steven Rostedtf7d82352012-04-06 00:47:53 +02005062 }
5063 break;
5064 case 's':
Namhyung Kim245c5a12012-09-07 11:49:45 +09005065 if (!arg) {
Namhyung Kim3388cc32014-03-19 10:22:53 +09005066 do_warning_event(event, "no matching argument");
Namhyung Kim245c5a12012-09-07 11:49:45 +09005067 event->flags |= EVENT_FL_FAILED;
5068 goto out_failed;
5069 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02005070
5071 len = ((unsigned long)ptr + 1) -
5072 (unsigned long)saveptr;
5073
5074 /* should never happen */
Namhyung Kim245c5a12012-09-07 11:49:45 +09005075 if (len > 31) {
Namhyung Kim3388cc32014-03-19 10:22:53 +09005076 do_warning_event(event, "bad format!");
Namhyung Kim245c5a12012-09-07 11:49:45 +09005077 event->flags |= EVENT_FL_FAILED;
5078 len = 31;
5079 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02005080
5081 memcpy(format, saveptr, len);
5082 format[len] = 0;
5083 if (!len_as_arg)
5084 len_arg = -1;
Steven Rostedt12e55562013-11-19 18:29:37 -05005085 /* Use helper trace_seq */
5086 trace_seq_init(&p);
5087 print_str_arg(&p, data, size, event,
Steven Rostedtf7d82352012-04-06 00:47:53 +02005088 format, len_arg, arg);
Steven Rostedt12e55562013-11-19 18:29:37 -05005089 trace_seq_terminate(&p);
5090 trace_seq_puts(s, p.buffer);
Steven Rostedtde04f862014-04-22 19:23:30 -04005091 trace_seq_destroy(&p);
Steven Rostedtf7d82352012-04-06 00:47:53 +02005092 arg = arg->next;
5093 break;
5094 default:
5095 trace_seq_printf(s, ">%c<", *ptr);
5096
5097 }
5098 } else
5099 trace_seq_putc(s, *ptr);
5100 }
5101
Namhyung Kim245c5a12012-09-07 11:49:45 +09005102 if (event->flags & EVENT_FL_FAILED) {
5103out_failed:
5104 trace_seq_printf(s, "[FAILED TO PARSE]");
5105 }
5106
Steven Rostedtf7d82352012-04-06 00:47:53 +02005107 if (args) {
5108 free_args(args);
5109 free(bprint_fmt);
5110 }
5111}
5112
5113/**
5114 * pevent_data_lat_fmt - parse the data for the latency format
5115 * @pevent: a handle to the pevent
5116 * @s: the trace_seq to write to
Namhyung Kim16e6b8f2012-04-23 13:58:35 +09005117 * @record: the record to read from
Steven Rostedtf7d82352012-04-06 00:47:53 +02005118 *
5119 * This parses out the Latency format (interrupts disabled,
5120 * need rescheduling, in hard/soft interrupt, preempt count
5121 * and lock depth) and places it into the trace_seq.
5122 */
5123void pevent_data_lat_fmt(struct pevent *pevent,
Steven Rostedt1c698182012-04-06 00:48:06 +02005124 struct trace_seq *s, struct pevent_record *record)
Steven Rostedtf7d82352012-04-06 00:47:53 +02005125{
5126 static int check_lock_depth = 1;
Steven Rostedt0866a972012-05-22 14:52:40 +09005127 static int check_migrate_disable = 1;
Steven Rostedtf7d82352012-04-06 00:47:53 +02005128 static int lock_depth_exists;
Steven Rostedt0866a972012-05-22 14:52:40 +09005129 static int migrate_disable_exists;
Steven Rostedtf7d82352012-04-06 00:47:53 +02005130 unsigned int lat_flags;
5131 unsigned int pc;
5132 int lock_depth;
Steven Rostedt0866a972012-05-22 14:52:40 +09005133 int migrate_disable;
Steven Rostedtf7d82352012-04-06 00:47:53 +02005134 int hardirq;
5135 int softirq;
5136 void *data = record->data;
5137
5138 lat_flags = parse_common_flags(pevent, data);
5139 pc = parse_common_pc(pevent, data);
5140 /* lock_depth may not always exist */
Steven Rostedtf7d82352012-04-06 00:47:53 +02005141 if (lock_depth_exists)
5142 lock_depth = parse_common_lock_depth(pevent, data);
Steven Rostedt0866a972012-05-22 14:52:40 +09005143 else if (check_lock_depth) {
5144 lock_depth = parse_common_lock_depth(pevent, data);
5145 if (lock_depth < 0)
5146 check_lock_depth = 0;
5147 else
5148 lock_depth_exists = 1;
5149 }
5150
5151 /* migrate_disable may not always exist */
5152 if (migrate_disable_exists)
5153 migrate_disable = parse_common_migrate_disable(pevent, data);
5154 else if (check_migrate_disable) {
5155 migrate_disable = parse_common_migrate_disable(pevent, data);
5156 if (migrate_disable < 0)
5157 check_migrate_disable = 0;
5158 else
5159 migrate_disable_exists = 1;
5160 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02005161
5162 hardirq = lat_flags & TRACE_FLAG_HARDIRQ;
5163 softirq = lat_flags & TRACE_FLAG_SOFTIRQ;
5164
5165 trace_seq_printf(s, "%c%c%c",
5166 (lat_flags & TRACE_FLAG_IRQS_OFF) ? 'd' :
5167 (lat_flags & TRACE_FLAG_IRQS_NOSUPPORT) ?
5168 'X' : '.',
5169 (lat_flags & TRACE_FLAG_NEED_RESCHED) ?
5170 'N' : '.',
5171 (hardirq && softirq) ? 'H' :
5172 hardirq ? 'h' : softirq ? 's' : '.');
5173
5174 if (pc)
5175 trace_seq_printf(s, "%x", pc);
5176 else
5177 trace_seq_putc(s, '.');
5178
Steven Rostedt0866a972012-05-22 14:52:40 +09005179 if (migrate_disable_exists) {
5180 if (migrate_disable < 0)
5181 trace_seq_putc(s, '.');
5182 else
5183 trace_seq_printf(s, "%d", migrate_disable);
5184 }
5185
Steven Rostedtf7d82352012-04-06 00:47:53 +02005186 if (lock_depth_exists) {
5187 if (lock_depth < 0)
5188 trace_seq_putc(s, '.');
5189 else
5190 trace_seq_printf(s, "%d", lock_depth);
5191 }
5192
5193 trace_seq_terminate(s);
5194}
5195
5196/**
5197 * pevent_data_type - parse out the given event type
5198 * @pevent: a handle to the pevent
5199 * @rec: the record to read from
5200 *
5201 * This returns the event id from the @rec.
5202 */
Steven Rostedt1c698182012-04-06 00:48:06 +02005203int pevent_data_type(struct pevent *pevent, struct pevent_record *rec)
Steven Rostedtf7d82352012-04-06 00:47:53 +02005204{
5205 return trace_parse_common_type(pevent, rec->data);
5206}
5207
5208/**
5209 * pevent_data_event_from_type - find the event by a given type
5210 * @pevent: a handle to the pevent
5211 * @type: the type of the event.
5212 *
5213 * This returns the event form a given @type;
5214 */
5215struct event_format *pevent_data_event_from_type(struct pevent *pevent, int type)
5216{
5217 return pevent_find_event(pevent, type);
5218}
5219
5220/**
Steven Rostedtc52d9e42016-11-22 11:31:58 -05005221 * pevent_data_pid - parse the PID from record
Steven Rostedtf7d82352012-04-06 00:47:53 +02005222 * @pevent: a handle to the pevent
5223 * @rec: the record to parse
5224 *
Steven Rostedtc52d9e42016-11-22 11:31:58 -05005225 * This returns the PID from a record.
Steven Rostedtf7d82352012-04-06 00:47:53 +02005226 */
Steven Rostedt1c698182012-04-06 00:48:06 +02005227int pevent_data_pid(struct pevent *pevent, struct pevent_record *rec)
Steven Rostedtf7d82352012-04-06 00:47:53 +02005228{
5229 return parse_common_pid(pevent, rec->data);
5230}
5231
5232/**
Steven Rostedt (VMware)9c72fd02017-02-16 20:13:52 -05005233 * pevent_data_preempt_count - parse the preempt count from the record
Steven Rostedtc52d9e42016-11-22 11:31:58 -05005234 * @pevent: a handle to the pevent
5235 * @rec: the record to parse
5236 *
5237 * This returns the preempt count from a record.
5238 */
Steven Rostedt (VMware)9c72fd02017-02-16 20:13:52 -05005239int pevent_data_preempt_count(struct pevent *pevent, struct pevent_record *rec)
Steven Rostedtc52d9e42016-11-22 11:31:58 -05005240{
5241 return parse_common_pc(pevent, rec->data);
5242}
5243
5244/**
5245 * pevent_data_flags - parse the latency flags from the record
5246 * @pevent: a handle to the pevent
5247 * @rec: the record to parse
5248 *
5249 * This returns the latency flags from a record.
5250 *
5251 * Use trace_flag_type enum for the flags (see event-parse.h).
5252 */
5253int pevent_data_flags(struct pevent *pevent, struct pevent_record *rec)
5254{
5255 return parse_common_flags(pevent, rec->data);
5256}
5257
5258/**
Steven Rostedtf7d82352012-04-06 00:47:53 +02005259 * pevent_data_comm_from_pid - return the command line from PID
5260 * @pevent: a handle to the pevent
5261 * @pid: the PID of the task to search for
5262 *
5263 * This returns a pointer to the command line that has the given
5264 * @pid.
5265 */
5266const char *pevent_data_comm_from_pid(struct pevent *pevent, int pid)
5267{
5268 const char *comm;
5269
5270 comm = find_cmdline(pevent, pid);
5271 return comm;
5272}
5273
Steven Rostedt (Red Hat)27719842015-03-24 09:57:52 -04005274static struct cmdline *
5275pid_from_cmdlist(struct pevent *pevent, const char *comm, struct cmdline *next)
5276{
5277 struct cmdline_list *cmdlist = (struct cmdline_list *)next;
5278
5279 if (cmdlist)
5280 cmdlist = cmdlist->next;
5281 else
5282 cmdlist = pevent->cmdlist;
5283
5284 while (cmdlist && strcmp(cmdlist->comm, comm) != 0)
5285 cmdlist = cmdlist->next;
5286
5287 return (struct cmdline *)cmdlist;
5288}
5289
5290/**
5291 * pevent_data_pid_from_comm - return the pid from a given comm
5292 * @pevent: a handle to the pevent
5293 * @comm: the cmdline to find the pid from
5294 * @next: the cmdline structure to find the next comm
5295 *
5296 * This returns the cmdline structure that holds a pid for a given
5297 * comm, or NULL if none found. As there may be more than one pid for
5298 * a given comm, the result of this call can be passed back into
5299 * a recurring call in the @next paramater, and then it will find the
5300 * next pid.
5301 * Also, it does a linear seach, so it may be slow.
5302 */
5303struct cmdline *pevent_data_pid_from_comm(struct pevent *pevent, const char *comm,
5304 struct cmdline *next)
5305{
5306 struct cmdline *cmdline;
5307
5308 /*
5309 * If the cmdlines have not been converted yet, then use
5310 * the list.
5311 */
5312 if (!pevent->cmdlines)
5313 return pid_from_cmdlist(pevent, comm, next);
5314
5315 if (next) {
5316 /*
5317 * The next pointer could have been still from
5318 * a previous call before cmdlines were created
5319 */
5320 if (next < pevent->cmdlines ||
5321 next >= pevent->cmdlines + pevent->cmdline_count)
5322 next = NULL;
5323 else
5324 cmdline = next++;
5325 }
5326
5327 if (!next)
5328 cmdline = pevent->cmdlines;
5329
5330 while (cmdline < pevent->cmdlines + pevent->cmdline_count) {
5331 if (strcmp(cmdline->comm, comm) == 0)
5332 return cmdline;
5333 cmdline++;
5334 }
5335 return NULL;
5336}
5337
5338/**
5339 * pevent_cmdline_pid - return the pid associated to a given cmdline
5340 * @cmdline: The cmdline structure to get the pid from
5341 *
5342 * Returns the pid for a give cmdline. If @cmdline is NULL, then
5343 * -1 is returned.
5344 */
5345int pevent_cmdline_pid(struct pevent *pevent, struct cmdline *cmdline)
5346{
5347 struct cmdline_list *cmdlist = (struct cmdline_list *)cmdline;
5348
5349 if (!cmdline)
5350 return -1;
5351
5352 /*
5353 * If cmdlines have not been created yet, or cmdline is
5354 * not part of the array, then treat it as a cmdlist instead.
5355 */
5356 if (!pevent->cmdlines ||
5357 cmdline < pevent->cmdlines ||
5358 cmdline >= pevent->cmdlines + pevent->cmdline_count)
5359 return cmdlist->pid;
5360
5361 return cmdline->pid;
5362}
5363
Steven Rostedtf7d82352012-04-06 00:47:53 +02005364/**
5365 * pevent_data_comm_from_pid - parse the data into the print format
5366 * @s: the trace_seq to write to
5367 * @event: the handle to the event
Namhyung Kim16e6b8f2012-04-23 13:58:35 +09005368 * @record: the record to read from
Steven Rostedtf7d82352012-04-06 00:47:53 +02005369 *
5370 * This parses the raw @data using the given @event information and
5371 * writes the print format into the trace_seq.
5372 */
5373void pevent_event_info(struct trace_seq *s, struct event_format *event,
Steven Rostedt1c698182012-04-06 00:48:06 +02005374 struct pevent_record *record)
Steven Rostedtf7d82352012-04-06 00:47:53 +02005375{
5376 int print_pretty = 1;
5377
Steven Rostedtc6c2b962013-11-01 17:53:59 -04005378 if (event->pevent->print_raw || (event->flags & EVENT_FL_PRINTRAW))
Namhyung Kimbe45d402015-12-23 22:08:41 +09005379 pevent_print_fields(s, record->data, record->size, event);
Steven Rostedtf7d82352012-04-06 00:47:53 +02005380 else {
5381
Steven Rostedtc6c2b962013-11-01 17:53:59 -04005382 if (event->handler && !(event->flags & EVENT_FL_NOHANDLE))
Steven Rostedtf7d82352012-04-06 00:47:53 +02005383 print_pretty = event->handler(s, record, event,
5384 event->context);
5385
5386 if (print_pretty)
5387 pretty_print(s, record->data, record->size, event);
5388 }
5389
5390 trace_seq_terminate(s);
5391}
5392
Yoshihiro YUNOMAE1b372ca2013-11-01 17:53:53 -04005393static bool is_timestamp_in_us(char *trace_clock, bool use_trace_clock)
5394{
5395 if (!use_trace_clock)
5396 return true;
5397
5398 if (!strcmp(trace_clock, "local") || !strcmp(trace_clock, "global")
5399 || !strcmp(trace_clock, "uptime") || !strcmp(trace_clock, "perf"))
5400 return true;
5401
5402 /* trace_clock is setting in tsc or counter mode */
5403 return false;
5404}
5405
Steven Rostedta6745332016-02-29 09:01:28 -05005406/**
5407 * pevent_find_event_by_record - return the event from a given record
5408 * @pevent: a handle to the pevent
5409 * @record: The record to get the event from
5410 *
5411 * Returns the associated event for a given record, or NULL if non is
5412 * is found.
5413 */
5414struct event_format *
5415pevent_find_event_by_record(struct pevent *pevent, struct pevent_record *record)
Steven Rostedtf7d82352012-04-06 00:47:53 +02005416{
Steven Rostedta6745332016-02-29 09:01:28 -05005417 int type;
5418
5419 if (record->size < 0) {
5420 do_warning("ug! negative record size %d", record->size);
5421 return NULL;
5422 }
5423
5424 type = trace_parse_common_type(pevent, record->data);
5425
5426 return pevent_find_event(pevent, type);
5427}
5428
5429/**
5430 * pevent_print_event_task - Write the event task comm, pid and CPU
5431 * @pevent: a handle to the pevent
5432 * @s: the trace_seq to write to
5433 * @event: the handle to the record's event
5434 * @record: The record to get the event from
5435 *
5436 * Writes the tasks comm, pid and CPU to @s.
5437 */
5438void pevent_print_event_task(struct pevent *pevent, struct trace_seq *s,
5439 struct event_format *event,
5440 struct pevent_record *record)
5441{
5442 void *data = record->data;
5443 const char *comm;
5444 int pid;
5445
5446 pid = parse_common_pid(pevent, data);
5447 comm = find_cmdline(pevent, pid);
5448
5449 if (pevent->latency_format) {
5450 trace_seq_printf(s, "%8.8s-%-5d %3d",
5451 comm, pid, record->cpu);
5452 } else
5453 trace_seq_printf(s, "%16s-%-5d [%03d]", comm, pid, record->cpu);
5454}
5455
5456/**
5457 * pevent_print_event_time - Write the event timestamp
5458 * @pevent: a handle to the pevent
5459 * @s: the trace_seq to write to
5460 * @event: the handle to the record's event
5461 * @record: The record to get the event from
5462 * @use_trace_clock: Set to parse according to the @pevent->trace_clock
5463 *
5464 * Writes the timestamp of the record into @s.
5465 */
5466void pevent_print_event_time(struct pevent *pevent, struct trace_seq *s,
5467 struct event_format *event,
5468 struct pevent_record *record,
5469 bool use_trace_clock)
5470{
Steven Rostedtf7d82352012-04-06 00:47:53 +02005471 unsigned long secs;
5472 unsigned long usecs;
Steven Rostedt4dc10242012-04-06 00:47:57 +02005473 unsigned long nsecs;
Steven Rostedt4dc10242012-04-06 00:47:57 +02005474 int p;
Yoshihiro YUNOMAE1b372ca2013-11-01 17:53:53 -04005475 bool use_usec_format;
Steven Rostedtf7d82352012-04-06 00:47:53 +02005476
Yoshihiro YUNOMAE1b372ca2013-11-01 17:53:53 -04005477 use_usec_format = is_timestamp_in_us(pevent->trace_clock,
5478 use_trace_clock);
5479 if (use_usec_format) {
Steven Rostedtbb5a7312016-11-22 15:00:31 -03005480 secs = record->ts / NSEC_PER_SEC;
5481 nsecs = record->ts - secs * NSEC_PER_SEC;
Yoshihiro YUNOMAE1b372ca2013-11-01 17:53:53 -04005482 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02005483
Steven Rostedtf7d82352012-04-06 00:47:53 +02005484 if (pevent->latency_format) {
Steven Rostedtf7d82352012-04-06 00:47:53 +02005485 pevent_data_lat_fmt(pevent, s, record);
Steven Rostedt4f3c88762016-03-23 10:16:28 -04005486 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02005487
Yoshihiro YUNOMAE1b372ca2013-11-01 17:53:53 -04005488 if (use_usec_format) {
5489 if (pevent->flags & PEVENT_NSEC_OUTPUT) {
5490 usecs = nsecs;
5491 p = 9;
5492 } else {
Steven Rostedtbb5a7312016-11-22 15:00:31 -03005493 usecs = (nsecs + 500) / NSEC_PER_USEC;
Chaos.Chen21a30102016-02-09 15:40:14 -05005494 /* To avoid usecs larger than 1 sec */
Steven Rostedtbb5a7312016-11-22 15:00:31 -03005495 if (usecs >= USEC_PER_SEC) {
5496 usecs -= USEC_PER_SEC;
Chaos.Chen21a30102016-02-09 15:40:14 -05005497 secs++;
5498 }
Yoshihiro YUNOMAE1b372ca2013-11-01 17:53:53 -04005499 p = 6;
5500 }
Steven Rostedt4dc10242012-04-06 00:47:57 +02005501
Steven Rostedta6745332016-02-29 09:01:28 -05005502 trace_seq_printf(s, " %5lu.%0*lu:", secs, p, usecs);
Yoshihiro YUNOMAE1b372ca2013-11-01 17:53:53 -04005503 } else
Steven Rostedta6745332016-02-29 09:01:28 -05005504 trace_seq_printf(s, " %12llu:", record->ts);
5505}
5506
5507/**
5508 * pevent_print_event_data - Write the event data section
5509 * @pevent: a handle to the pevent
5510 * @s: the trace_seq to write to
5511 * @event: the handle to the record's event
5512 * @record: The record to get the event from
5513 *
5514 * Writes the parsing of the record's data to @s.
5515 */
5516void pevent_print_event_data(struct pevent *pevent, struct trace_seq *s,
5517 struct event_format *event,
5518 struct pevent_record *record)
5519{
5520 static const char *spaces = " "; /* 20 spaces */
5521 int len;
5522
5523 trace_seq_printf(s, " %s: ", event->name);
Steven Rostedtf7d82352012-04-06 00:47:53 +02005524
5525 /* Space out the event names evenly. */
5526 len = strlen(event->name);
5527 if (len < 20)
5528 trace_seq_printf(s, "%.*s", 20 - len, spaces);
5529
5530 pevent_event_info(s, event, record);
5531}
5532
Steven Rostedta6745332016-02-29 09:01:28 -05005533void pevent_print_event(struct pevent *pevent, struct trace_seq *s,
5534 struct pevent_record *record, bool use_trace_clock)
5535{
5536 struct event_format *event;
5537
5538 event = pevent_find_event_by_record(pevent, record);
5539 if (!event) {
5540 do_warning("ug! no event found for type %d",
5541 trace_parse_common_type(pevent, record->data));
5542 return;
5543 }
5544
5545 pevent_print_event_task(pevent, s, event, record);
5546 pevent_print_event_time(pevent, s, event, record, use_trace_clock);
5547 pevent_print_event_data(pevent, s, event, record);
5548}
5549
Steven Rostedtf7d82352012-04-06 00:47:53 +02005550static int events_id_cmp(const void *a, const void *b)
5551{
5552 struct event_format * const * ea = a;
5553 struct event_format * const * eb = b;
5554
5555 if ((*ea)->id < (*eb)->id)
5556 return -1;
5557
5558 if ((*ea)->id > (*eb)->id)
5559 return 1;
5560
5561 return 0;
5562}
5563
5564static int events_name_cmp(const void *a, const void *b)
5565{
5566 struct event_format * const * ea = a;
5567 struct event_format * const * eb = b;
5568 int res;
5569
5570 res = strcmp((*ea)->name, (*eb)->name);
5571 if (res)
5572 return res;
5573
5574 res = strcmp((*ea)->system, (*eb)->system);
5575 if (res)
5576 return res;
5577
5578 return events_id_cmp(a, b);
5579}
5580
5581static int events_system_cmp(const void *a, const void *b)
5582{
5583 struct event_format * const * ea = a;
5584 struct event_format * const * eb = b;
5585 int res;
5586
5587 res = strcmp((*ea)->system, (*eb)->system);
5588 if (res)
5589 return res;
5590
5591 res = strcmp((*ea)->name, (*eb)->name);
5592 if (res)
5593 return res;
5594
5595 return events_id_cmp(a, b);
5596}
5597
5598struct event_format **pevent_list_events(struct pevent *pevent, enum event_sort_type sort_type)
5599{
5600 struct event_format **events;
5601 int (*sort)(const void *a, const void *b);
5602
5603 events = pevent->sort_events;
5604
5605 if (events && pevent->last_type == sort_type)
5606 return events;
5607
5608 if (!events) {
5609 events = malloc(sizeof(*events) * (pevent->nr_events + 1));
5610 if (!events)
5611 return NULL;
5612
5613 memcpy(events, pevent->events, sizeof(*events) * pevent->nr_events);
5614 events[pevent->nr_events] = NULL;
5615
5616 pevent->sort_events = events;
5617
5618 /* the internal events are sorted by id */
5619 if (sort_type == EVENT_SORT_ID) {
5620 pevent->last_type = sort_type;
5621 return events;
5622 }
5623 }
5624
5625 switch (sort_type) {
5626 case EVENT_SORT_ID:
5627 sort = events_id_cmp;
5628 break;
5629 case EVENT_SORT_NAME:
5630 sort = events_name_cmp;
5631 break;
5632 case EVENT_SORT_SYSTEM:
5633 sort = events_system_cmp;
5634 break;
5635 default:
5636 return events;
5637 }
5638
5639 qsort(events, pevent->nr_events, sizeof(*events), sort);
5640 pevent->last_type = sort_type;
5641
5642 return events;
5643}
5644
5645static struct format_field **
5646get_event_fields(const char *type, const char *name,
5647 int count, struct format_field *list)
5648{
5649 struct format_field **fields;
5650 struct format_field *field;
5651 int i = 0;
5652
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -03005653 fields = malloc(sizeof(*fields) * (count + 1));
5654 if (!fields)
5655 return NULL;
5656
Steven Rostedtf7d82352012-04-06 00:47:53 +02005657 for (field = list; field; field = field->next) {
5658 fields[i++] = field;
5659 if (i == count + 1) {
5660 do_warning("event %s has more %s fields than specified",
5661 name, type);
5662 i--;
5663 break;
5664 }
5665 }
5666
5667 if (i != count)
5668 do_warning("event %s has less %s fields than specified",
5669 name, type);
5670
5671 fields[i] = NULL;
5672
5673 return fields;
5674}
5675
5676/**
5677 * pevent_event_common_fields - return a list of common fields for an event
5678 * @event: the event to return the common fields of.
5679 *
5680 * Returns an allocated array of fields. The last item in the array is NULL.
5681 * The array must be freed with free().
5682 */
5683struct format_field **pevent_event_common_fields(struct event_format *event)
5684{
5685 return get_event_fields("common", event->name,
5686 event->format.nr_common,
5687 event->format.common_fields);
5688}
5689
5690/**
5691 * pevent_event_fields - return a list of event specific fields for an event
5692 * @event: the event to return the fields of.
5693 *
5694 * Returns an allocated array of fields. The last item in the array is NULL.
5695 * The array must be freed with free().
5696 */
5697struct format_field **pevent_event_fields(struct event_format *event)
5698{
5699 return get_event_fields("event", event->name,
5700 event->format.nr_fields,
5701 event->format.fields);
5702}
5703
5704static void print_fields(struct trace_seq *s, struct print_flag_sym *field)
5705{
5706 trace_seq_printf(s, "{ %s, %s }", field->value, field->str);
5707 if (field->next) {
5708 trace_seq_puts(s, ", ");
5709 print_fields(s, field->next);
5710 }
5711}
5712
5713/* for debugging */
5714static void print_args(struct print_arg *args)
5715{
5716 int print_paren = 1;
5717 struct trace_seq s;
5718
5719 switch (args->type) {
5720 case PRINT_NULL:
5721 printf("null");
5722 break;
5723 case PRINT_ATOM:
5724 printf("%s", args->atom.atom);
5725 break;
5726 case PRINT_FIELD:
5727 printf("REC->%s", args->field.name);
5728 break;
5729 case PRINT_FLAGS:
5730 printf("__print_flags(");
5731 print_args(args->flags.field);
5732 printf(", %s, ", args->flags.delim);
5733 trace_seq_init(&s);
5734 print_fields(&s, args->flags.flags);
5735 trace_seq_do_printf(&s);
5736 trace_seq_destroy(&s);
5737 printf(")");
5738 break;
5739 case PRINT_SYMBOL:
5740 printf("__print_symbolic(");
5741 print_args(args->symbol.field);
5742 printf(", ");
5743 trace_seq_init(&s);
5744 print_fields(&s, args->symbol.symbols);
5745 trace_seq_do_printf(&s);
5746 trace_seq_destroy(&s);
5747 printf(")");
5748 break;
Namhyung Kime080e6f2012-06-27 09:41:41 +09005749 case PRINT_HEX:
5750 printf("__print_hex(");
5751 print_args(args->hex.field);
5752 printf(", ");
5753 print_args(args->hex.size);
5754 printf(")");
5755 break;
Daniel Borkmann0fe05592017-01-25 02:28:17 +01005756 case PRINT_HEX_STR:
5757 printf("__print_hex_str(");
5758 print_args(args->hex.field);
5759 printf(", ");
5760 print_args(args->hex.size);
5761 printf(")");
5762 break;
Javi Merinob839e1e82015-03-24 11:07:19 +00005763 case PRINT_INT_ARRAY:
5764 printf("__print_array(");
5765 print_args(args->int_array.field);
5766 printf(", ");
5767 print_args(args->int_array.count);
5768 printf(", ");
5769 print_args(args->int_array.el_size);
5770 printf(")");
5771 break;
Steven Rostedtf7d82352012-04-06 00:47:53 +02005772 case PRINT_STRING:
5773 case PRINT_BSTRING:
5774 printf("__get_str(%s)", args->string.string);
5775 break;
Steven Rostedt (Red Hat)473a7782014-06-02 23:20:16 -04005776 case PRINT_BITMASK:
5777 printf("__get_bitmask(%s)", args->bitmask.bitmask);
5778 break;
Steven Rostedtf7d82352012-04-06 00:47:53 +02005779 case PRINT_TYPE:
5780 printf("(%s)", args->typecast.type);
5781 print_args(args->typecast.item);
5782 break;
5783 case PRINT_OP:
5784 if (strcmp(args->op.op, ":") == 0)
5785 print_paren = 0;
5786 if (print_paren)
5787 printf("(");
5788 print_args(args->op.left);
5789 printf(" %s ", args->op.op);
5790 print_args(args->op.right);
5791 if (print_paren)
5792 printf(")");
5793 break;
5794 default:
5795 /* we should warn... */
5796 return;
5797 }
5798 if (args->next) {
5799 printf("\n");
5800 print_args(args->next);
5801 }
5802}
5803
5804static void parse_header_field(const char *field,
5805 int *offset, int *size, int mandatory)
5806{
5807 unsigned long long save_input_buf_ptr;
5808 unsigned long long save_input_buf_siz;
5809 char *token;
5810 int type;
5811
5812 save_input_buf_ptr = input_buf_ptr;
5813 save_input_buf_siz = input_buf_siz;
5814
5815 if (read_expected(EVENT_ITEM, "field") < 0)
5816 return;
5817 if (read_expected(EVENT_OP, ":") < 0)
5818 return;
5819
5820 /* type */
5821 if (read_expect_type(EVENT_ITEM, &token) < 0)
5822 goto fail;
5823 free_token(token);
5824
5825 /*
5826 * If this is not a mandatory field, then test it first.
5827 */
5828 if (mandatory) {
5829 if (read_expected(EVENT_ITEM, field) < 0)
5830 return;
5831 } else {
5832 if (read_expect_type(EVENT_ITEM, &token) < 0)
5833 goto fail;
5834 if (strcmp(token, field) != 0)
5835 goto discard;
5836 free_token(token);
5837 }
5838
5839 if (read_expected(EVENT_OP, ";") < 0)
5840 return;
5841 if (read_expected(EVENT_ITEM, "offset") < 0)
5842 return;
5843 if (read_expected(EVENT_OP, ":") < 0)
5844 return;
5845 if (read_expect_type(EVENT_ITEM, &token) < 0)
5846 goto fail;
5847 *offset = atoi(token);
5848 free_token(token);
5849 if (read_expected(EVENT_OP, ";") < 0)
5850 return;
5851 if (read_expected(EVENT_ITEM, "size") < 0)
5852 return;
5853 if (read_expected(EVENT_OP, ":") < 0)
5854 return;
5855 if (read_expect_type(EVENT_ITEM, &token) < 0)
5856 goto fail;
5857 *size = atoi(token);
5858 free_token(token);
5859 if (read_expected(EVENT_OP, ";") < 0)
5860 return;
5861 type = read_token(&token);
5862 if (type != EVENT_NEWLINE) {
5863 /* newer versions of the kernel have a "signed" type */
5864 if (type != EVENT_ITEM)
5865 goto fail;
5866
5867 if (strcmp(token, "signed") != 0)
5868 goto fail;
5869
5870 free_token(token);
5871
5872 if (read_expected(EVENT_OP, ":") < 0)
5873 return;
5874
5875 if (read_expect_type(EVENT_ITEM, &token))
5876 goto fail;
5877
5878 free_token(token);
5879 if (read_expected(EVENT_OP, ";") < 0)
5880 return;
5881
5882 if (read_expect_type(EVENT_NEWLINE, &token))
5883 goto fail;
5884 }
5885 fail:
5886 free_token(token);
5887 return;
5888
5889 discard:
5890 input_buf_ptr = save_input_buf_ptr;
5891 input_buf_siz = save_input_buf_siz;
5892 *offset = 0;
5893 *size = 0;
5894 free_token(token);
5895}
5896
5897/**
5898 * pevent_parse_header_page - parse the data stored in the header page
5899 * @pevent: the handle to the pevent
5900 * @buf: the buffer storing the header page format string
5901 * @size: the size of @buf
5902 * @long_size: the long size to use if there is no header
5903 *
5904 * This parses the header page format for information on the
5905 * ring buffer used. The @buf should be copied from
5906 *
5907 * /sys/kernel/debug/tracing/events/header_page
5908 */
5909int pevent_parse_header_page(struct pevent *pevent, char *buf, unsigned long size,
5910 int long_size)
5911{
5912 int ignore;
5913
5914 if (!size) {
5915 /*
5916 * Old kernels did not have header page info.
5917 * Sorry but we just use what we find here in user space.
5918 */
5919 pevent->header_page_ts_size = sizeof(long long);
5920 pevent->header_page_size_size = long_size;
5921 pevent->header_page_data_offset = sizeof(long long) + long_size;
5922 pevent->old_format = 1;
5923 return -1;
5924 }
5925 init_input_buf(buf, size);
5926
5927 parse_header_field("timestamp", &pevent->header_page_ts_offset,
5928 &pevent->header_page_ts_size, 1);
5929 parse_header_field("commit", &pevent->header_page_size_offset,
5930 &pevent->header_page_size_size, 1);
5931 parse_header_field("overwrite", &pevent->header_page_overwrite,
5932 &ignore, 0);
5933 parse_header_field("data", &pevent->header_page_data_offset,
5934 &pevent->header_page_data_size, 1);
5935
5936 return 0;
5937}
5938
5939static int event_matches(struct event_format *event,
5940 int id, const char *sys_name,
5941 const char *event_name)
5942{
5943 if (id >= 0 && id != event->id)
5944 return 0;
5945
5946 if (event_name && (strcmp(event_name, event->name) != 0))
5947 return 0;
5948
5949 if (sys_name && (strcmp(sys_name, event->system) != 0))
5950 return 0;
5951
5952 return 1;
5953}
5954
5955static void free_handler(struct event_handler *handle)
5956{
5957 free((void *)handle->sys_name);
5958 free((void *)handle->event_name);
5959 free(handle);
5960}
5961
5962static int find_event_handle(struct pevent *pevent, struct event_format *event)
5963{
5964 struct event_handler *handle, **next;
5965
5966 for (next = &pevent->handlers; *next;
5967 next = &(*next)->next) {
5968 handle = *next;
5969 if (event_matches(event, handle->id,
5970 handle->sys_name,
5971 handle->event_name))
5972 break;
5973 }
5974
5975 if (!(*next))
5976 return 0;
5977
5978 pr_stat("overriding event (%d) %s:%s with new print handler",
5979 event->id, event->system, event->name);
5980
5981 event->handler = handle->func;
5982 event->context = handle->context;
5983
5984 *next = handle->next;
5985 free_handler(handle);
5986
5987 return 1;
5988}
5989
5990/**
Arnaldo Carvalho de Melo2b291752012-09-18 11:13:15 -03005991 * __pevent_parse_format - parse the event format
Steven Rostedtf7d82352012-04-06 00:47:53 +02005992 * @buf: the buffer storing the event format string
5993 * @size: the size of @buf
5994 * @sys: the system the event belongs to
5995 *
5996 * This parses the event format and creates an event structure
5997 * to quickly parse raw data for a given event.
5998 *
5999 * These files currently come from:
6000 *
6001 * /sys/kernel/debug/tracing/events/.../.../format
6002 */
Arnaldo Carvalho de Melo2b291752012-09-18 11:13:15 -03006003enum pevent_errno __pevent_parse_format(struct event_format **eventp,
6004 struct pevent *pevent, const char *buf,
6005 unsigned long size, const char *sys)
Steven Rostedtf7d82352012-04-06 00:47:53 +02006006{
6007 struct event_format *event;
6008 int ret;
6009
6010 init_input_buf(buf, size);
6011
Arnaldo Carvalho de Melo2b291752012-09-18 11:13:15 -03006012 *eventp = event = alloc_event();
Steven Rostedtf7d82352012-04-06 00:47:53 +02006013 if (!event)
Namhyung Kimbffddff2012-08-22 16:00:29 +09006014 return PEVENT_ERRNO__MEM_ALLOC_FAILED;
Steven Rostedtf7d82352012-04-06 00:47:53 +02006015
6016 event->name = event_read_name();
6017 if (!event->name) {
6018 /* Bad event? */
Namhyung Kimbffddff2012-08-22 16:00:29 +09006019 ret = PEVENT_ERRNO__MEM_ALLOC_FAILED;
6020 goto event_alloc_failed;
Steven Rostedtf7d82352012-04-06 00:47:53 +02006021 }
6022
6023 if (strcmp(sys, "ftrace") == 0) {
Steven Rostedtf7d82352012-04-06 00:47:53 +02006024 event->flags |= EVENT_FL_ISFTRACE;
6025
6026 if (strcmp(event->name, "bprint") == 0)
6027 event->flags |= EVENT_FL_ISBPRINT;
6028 }
6029
6030 event->id = event_read_id();
Namhyung Kimbffddff2012-08-22 16:00:29 +09006031 if (event->id < 0) {
6032 ret = PEVENT_ERRNO__READ_ID_FAILED;
6033 /*
6034 * This isn't an allocation error actually.
6035 * But as the ID is critical, just bail out.
6036 */
6037 goto event_alloc_failed;
6038 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02006039
6040 event->system = strdup(sys);
Namhyung Kimbffddff2012-08-22 16:00:29 +09006041 if (!event->system) {
6042 ret = PEVENT_ERRNO__MEM_ALLOC_FAILED;
6043 goto event_alloc_failed;
6044 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02006045
Steven Rostedt101782e2012-10-01 20:13:51 -04006046 /* Add pevent to event so that it can be referenced */
6047 event->pevent = pevent;
6048
Steven Rostedtf7d82352012-04-06 00:47:53 +02006049 ret = event_read_format(event);
6050 if (ret < 0) {
Namhyung Kimbffddff2012-08-22 16:00:29 +09006051 ret = PEVENT_ERRNO__READ_FORMAT_FAILED;
6052 goto event_parse_failed;
Steven Rostedtf7d82352012-04-06 00:47:53 +02006053 }
6054
6055 /*
6056 * If the event has an override, don't print warnings if the event
6057 * print format fails to parse.
6058 */
Arnaldo Carvalho de Melo2b291752012-09-18 11:13:15 -03006059 if (pevent && find_event_handle(pevent, event))
Steven Rostedtf7d82352012-04-06 00:47:53 +02006060 show_warning = 0;
6061
6062 ret = event_read_print(event);
Arnaldo Carvalho de Melo2b291752012-09-18 11:13:15 -03006063 show_warning = 1;
6064
Steven Rostedtf7d82352012-04-06 00:47:53 +02006065 if (ret < 0) {
Namhyung Kimbffddff2012-08-22 16:00:29 +09006066 ret = PEVENT_ERRNO__READ_PRINT_FAILED;
6067 goto event_parse_failed;
Steven Rostedtf7d82352012-04-06 00:47:53 +02006068 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02006069
6070 if (!ret && (event->flags & EVENT_FL_ISFTRACE)) {
6071 struct format_field *field;
6072 struct print_arg *arg, **list;
6073
6074 /* old ftrace had no args */
Steven Rostedtf7d82352012-04-06 00:47:53 +02006075 list = &event->print_fmt.args;
6076 for (field = event->format.fields; field; field = field->next) {
6077 arg = alloc_arg();
Namhyung Kimb1ac7542012-09-20 11:09:19 +09006078 if (!arg) {
6079 event->flags |= EVENT_FL_FAILED;
6080 return PEVENT_ERRNO__OLD_FTRACE_ARG_FAILED;
6081 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02006082 arg->type = PRINT_FIELD;
6083 arg->field.name = strdup(field->name);
Namhyung Kimca638582012-04-09 11:54:31 +09006084 if (!arg->field.name) {
Namhyung Kim4b5632b2012-04-23 13:58:34 +09006085 event->flags |= EVENT_FL_FAILED;
Namhyung Kimfd34f0b2012-08-22 16:00:28 +09006086 free_arg(arg);
Namhyung Kimbffddff2012-08-22 16:00:29 +09006087 return PEVENT_ERRNO__OLD_FTRACE_ARG_FAILED;
Namhyung Kimca638582012-04-09 11:54:31 +09006088 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02006089 arg->field.field = field;
Namhyung Kimfd34f0b2012-08-22 16:00:28 +09006090 *list = arg;
6091 list = &arg->next;
Steven Rostedtf7d82352012-04-06 00:47:53 +02006092 }
6093 return 0;
6094 }
6095
Arnaldo Carvalho de Melo2b291752012-09-18 11:13:15 -03006096 return 0;
6097
6098 event_parse_failed:
6099 event->flags |= EVENT_FL_FAILED;
6100 return ret;
6101
6102 event_alloc_failed:
6103 free(event->system);
6104 free(event->name);
6105 free(event);
6106 *eventp = NULL;
6107 return ret;
6108}
6109
Jiri Olsa71ad9582013-12-03 14:09:19 +01006110static enum pevent_errno
6111__pevent_parse_event(struct pevent *pevent,
6112 struct event_format **eventp,
6113 const char *buf, unsigned long size,
6114 const char *sys)
6115{
6116 int ret = __pevent_parse_format(eventp, pevent, buf, size, sys);
6117 struct event_format *event = *eventp;
6118
6119 if (event == NULL)
6120 return ret;
6121
6122 if (pevent && add_event(pevent, event)) {
6123 ret = PEVENT_ERRNO__MEM_ALLOC_FAILED;
6124 goto event_add_failed;
6125 }
6126
6127#define PRINT_ARGS 0
6128 if (PRINT_ARGS && event->print_fmt.args)
6129 print_args(event->print_fmt.args);
6130
6131 return 0;
6132
6133event_add_failed:
6134 pevent_free_format(event);
6135 return ret;
6136}
6137
Arnaldo Carvalho de Melo2b291752012-09-18 11:13:15 -03006138/**
6139 * pevent_parse_format - parse the event format
Jiri Olsa71ad9582013-12-03 14:09:19 +01006140 * @pevent: the handle to the pevent
6141 * @eventp: returned format
Arnaldo Carvalho de Melo2b291752012-09-18 11:13:15 -03006142 * @buf: the buffer storing the event format string
6143 * @size: the size of @buf
6144 * @sys: the system the event belongs to
6145 *
6146 * This parses the event format and creates an event structure
6147 * to quickly parse raw data for a given event.
6148 *
6149 * These files currently come from:
6150 *
6151 * /sys/kernel/debug/tracing/events/.../.../format
6152 */
Jiri Olsa71ad9582013-12-03 14:09:19 +01006153enum pevent_errno pevent_parse_format(struct pevent *pevent,
6154 struct event_format **eventp,
6155 const char *buf,
Arnaldo Carvalho de Melo2b291752012-09-18 11:13:15 -03006156 unsigned long size, const char *sys)
6157{
Jiri Olsa71ad9582013-12-03 14:09:19 +01006158 return __pevent_parse_event(pevent, eventp, buf, size, sys);
Arnaldo Carvalho de Melo2b291752012-09-18 11:13:15 -03006159}
6160
6161/**
6162 * pevent_parse_event - parse the event format
6163 * @pevent: the handle to the pevent
6164 * @buf: the buffer storing the event format string
6165 * @size: the size of @buf
6166 * @sys: the system the event belongs to
6167 *
6168 * This parses the event format and creates an event structure
6169 * to quickly parse raw data for a given event.
6170 *
6171 * These files currently come from:
6172 *
6173 * /sys/kernel/debug/tracing/events/.../.../format
6174 */
6175enum pevent_errno pevent_parse_event(struct pevent *pevent, const char *buf,
6176 unsigned long size, const char *sys)
6177{
6178 struct event_format *event = NULL;
Jiri Olsa71ad9582013-12-03 14:09:19 +01006179 return __pevent_parse_event(pevent, &event, buf, size, sys);
Steven Rostedtf7d82352012-04-06 00:47:53 +02006180}
6181
Namhyung Kim2f197b92012-08-22 16:00:30 +09006182#undef _PE
6183#define _PE(code, str) str
6184static const char * const pevent_error_str[] = {
6185 PEVENT_ERRORS
6186};
6187#undef _PE
6188
Arnaldo Carvalho de Meloca383a42012-11-09 15:18:57 -03006189int pevent_strerror(struct pevent *pevent __maybe_unused,
6190 enum pevent_errno errnum, char *buf, size_t buflen)
Namhyung Kim2f197b92012-08-22 16:00:30 +09006191{
6192 int idx;
6193 const char *msg;
6194
6195 if (errnum >= 0) {
Arnaldo Carvalho de Meloc3cec9e2016-07-08 15:21:37 -03006196 str_error_r(errnum, buf, buflen);
Namhyung Kim2f197b92012-08-22 16:00:30 +09006197 return 0;
6198 }
6199
6200 if (errnum <= __PEVENT_ERRNO__START ||
6201 errnum >= __PEVENT_ERRNO__END)
6202 return -1;
6203
Namhyung Kimf63fe792012-08-23 16:37:00 +09006204 idx = errnum - __PEVENT_ERRNO__START - 1;
Namhyung Kim2f197b92012-08-22 16:00:30 +09006205 msg = pevent_error_str[idx];
Namhyung Kimbf19b822013-12-12 16:36:17 +09006206 snprintf(buf, buflen, "%s", msg);
Namhyung Kim2f197b92012-08-22 16:00:30 +09006207
6208 return 0;
6209}
6210
Steven Rostedtf7d82352012-04-06 00:47:53 +02006211int get_field_val(struct trace_seq *s, struct format_field *field,
Steven Rostedt1c698182012-04-06 00:48:06 +02006212 const char *name, struct pevent_record *record,
Steven Rostedtf7d82352012-04-06 00:47:53 +02006213 unsigned long long *val, int err)
6214{
6215 if (!field) {
6216 if (err)
6217 trace_seq_printf(s, "<CANT FIND FIELD %s>", name);
6218 return -1;
6219 }
6220
6221 if (pevent_read_number_field(field, record->data, val)) {
6222 if (err)
6223 trace_seq_printf(s, " %s=INVALID", name);
6224 return -1;
6225 }
6226
6227 return 0;
6228}
6229
6230/**
6231 * pevent_get_field_raw - return the raw pointer into the data field
6232 * @s: The seq to print to on error
6233 * @event: the event that the field is for
6234 * @name: The name of the field
6235 * @record: The record with the field name.
6236 * @len: place to store the field length.
6237 * @err: print default error if failed.
6238 *
6239 * Returns a pointer into record->data of the field and places
6240 * the length of the field in @len.
6241 *
6242 * On failure, it returns NULL.
6243 */
6244void *pevent_get_field_raw(struct trace_seq *s, struct event_format *event,
Steven Rostedt1c698182012-04-06 00:48:06 +02006245 const char *name, struct pevent_record *record,
Steven Rostedtf7d82352012-04-06 00:47:53 +02006246 int *len, int err)
6247{
6248 struct format_field *field;
6249 void *data = record->data;
6250 unsigned offset;
6251 int dummy;
6252
6253 if (!event)
6254 return NULL;
6255
6256 field = pevent_find_field(event, name);
6257
6258 if (!field) {
6259 if (err)
6260 trace_seq_printf(s, "<CANT FIND FIELD %s>", name);
6261 return NULL;
6262 }
6263
6264 /* Allow @len to be NULL */
6265 if (!len)
6266 len = &dummy;
6267
6268 offset = field->offset;
6269 if (field->flags & FIELD_IS_DYNAMIC) {
6270 offset = pevent_read_number(event->pevent,
6271 data + offset, field->size);
6272 *len = offset >> 16;
6273 offset &= 0xffff;
6274 } else
6275 *len = field->size;
6276
6277 return data + offset;
6278}
6279
6280/**
6281 * pevent_get_field_val - find a field and return its value
6282 * @s: The seq to print to on error
6283 * @event: the event that the field is for
6284 * @name: The name of the field
6285 * @record: The record with the field name.
6286 * @val: place to store the value of the field.
6287 * @err: print default error if failed.
6288 *
6289 * Returns 0 on success -1 on field not found.
6290 */
6291int pevent_get_field_val(struct trace_seq *s, struct event_format *event,
Steven Rostedt1c698182012-04-06 00:48:06 +02006292 const char *name, struct pevent_record *record,
Steven Rostedtf7d82352012-04-06 00:47:53 +02006293 unsigned long long *val, int err)
6294{
6295 struct format_field *field;
6296
6297 if (!event)
6298 return -1;
6299
6300 field = pevent_find_field(event, name);
6301
6302 return get_field_val(s, field, name, record, val, err);
6303}
6304
6305/**
6306 * pevent_get_common_field_val - find a common field and return its value
6307 * @s: The seq to print to on error
6308 * @event: the event that the field is for
6309 * @name: The name of the field
6310 * @record: The record with the field name.
6311 * @val: place to store the value of the field.
6312 * @err: print default error if failed.
6313 *
6314 * Returns 0 on success -1 on field not found.
6315 */
6316int pevent_get_common_field_val(struct trace_seq *s, struct event_format *event,
Steven Rostedt1c698182012-04-06 00:48:06 +02006317 const char *name, struct pevent_record *record,
Steven Rostedtf7d82352012-04-06 00:47:53 +02006318 unsigned long long *val, int err)
6319{
6320 struct format_field *field;
6321
6322 if (!event)
6323 return -1;
6324
6325 field = pevent_find_common_field(event, name);
6326
6327 return get_field_val(s, field, name, record, val, err);
6328}
6329
6330/**
6331 * pevent_get_any_field_val - find a any field and return its value
6332 * @s: The seq to print to on error
6333 * @event: the event that the field is for
6334 * @name: The name of the field
6335 * @record: The record with the field name.
6336 * @val: place to store the value of the field.
6337 * @err: print default error if failed.
6338 *
6339 * Returns 0 on success -1 on field not found.
6340 */
6341int pevent_get_any_field_val(struct trace_seq *s, struct event_format *event,
Steven Rostedt1c698182012-04-06 00:48:06 +02006342 const char *name, struct pevent_record *record,
Steven Rostedtf7d82352012-04-06 00:47:53 +02006343 unsigned long long *val, int err)
6344{
6345 struct format_field *field;
6346
6347 if (!event)
6348 return -1;
6349
6350 field = pevent_find_any_field(event, name);
6351
6352 return get_field_val(s, field, name, record, val, err);
6353}
6354
6355/**
6356 * pevent_print_num_field - print a field and a format
6357 * @s: The seq to print to
6358 * @fmt: The printf format to print the field with.
6359 * @event: the event that the field is for
6360 * @name: The name of the field
6361 * @record: The record with the field name.
6362 * @err: print default error if failed.
6363 *
Namhyung Kim16e6b8f2012-04-23 13:58:35 +09006364 * Returns: 0 on success, -1 field not found, or 1 if buffer is full.
Steven Rostedtf7d82352012-04-06 00:47:53 +02006365 */
6366int pevent_print_num_field(struct trace_seq *s, const char *fmt,
6367 struct event_format *event, const char *name,
Steven Rostedt1c698182012-04-06 00:48:06 +02006368 struct pevent_record *record, int err)
Steven Rostedtf7d82352012-04-06 00:47:53 +02006369{
6370 struct format_field *field = pevent_find_field(event, name);
6371 unsigned long long val;
6372
6373 if (!field)
6374 goto failed;
6375
6376 if (pevent_read_number_field(field, record->data, &val))
6377 goto failed;
6378
6379 return trace_seq_printf(s, fmt, val);
6380
6381 failed:
6382 if (err)
6383 trace_seq_printf(s, "CAN'T FIND FIELD \"%s\"", name);
6384 return -1;
6385}
6386
Steven Rostedt6d862b82013-11-01 17:54:00 -04006387/**
6388 * pevent_print_func_field - print a field and a format for function pointers
6389 * @s: The seq to print to
6390 * @fmt: The printf format to print the field with.
6391 * @event: the event that the field is for
6392 * @name: The name of the field
6393 * @record: The record with the field name.
6394 * @err: print default error if failed.
6395 *
6396 * Returns: 0 on success, -1 field not found, or 1 if buffer is full.
6397 */
6398int pevent_print_func_field(struct trace_seq *s, const char *fmt,
6399 struct event_format *event, const char *name,
6400 struct pevent_record *record, int err)
6401{
6402 struct format_field *field = pevent_find_field(event, name);
6403 struct pevent *pevent = event->pevent;
6404 unsigned long long val;
6405 struct func_map *func;
6406 char tmp[128];
6407
6408 if (!field)
6409 goto failed;
6410
6411 if (pevent_read_number_field(field, record->data, &val))
6412 goto failed;
6413
6414 func = find_func(pevent, val);
6415
6416 if (func)
6417 snprintf(tmp, 128, "%s/0x%llx", func->func, func->addr - val);
6418 else
6419 sprintf(tmp, "0x%08llx", val);
6420
6421 return trace_seq_printf(s, fmt, tmp);
6422
6423 failed:
6424 if (err)
6425 trace_seq_printf(s, "CAN'T FIND FIELD \"%s\"", name);
6426 return -1;
6427}
6428
Steven Rostedtf7d82352012-04-06 00:47:53 +02006429static void free_func_handle(struct pevent_function_handler *func)
6430{
6431 struct pevent_func_params *params;
6432
6433 free(func->name);
6434
6435 while (func->params) {
6436 params = func->params;
6437 func->params = params->next;
6438 free(params);
6439 }
6440
6441 free(func);
6442}
6443
6444/**
6445 * pevent_register_print_function - register a helper function
6446 * @pevent: the handle to the pevent
6447 * @func: the function to process the helper function
Namhyung Kim16e6b8f2012-04-23 13:58:35 +09006448 * @ret_type: the return type of the helper function
Steven Rostedtf7d82352012-04-06 00:47:53 +02006449 * @name: the name of the helper function
6450 * @parameters: A list of enum pevent_func_arg_type
6451 *
6452 * Some events may have helper functions in the print format arguments.
Namhyung Kim16e6b8f2012-04-23 13:58:35 +09006453 * This allows a plugin to dynamically create a way to process one
Steven Rostedtf7d82352012-04-06 00:47:53 +02006454 * of these functions.
6455 *
6456 * The @parameters is a variable list of pevent_func_arg_type enums that
6457 * must end with PEVENT_FUNC_ARG_VOID.
6458 */
6459int pevent_register_print_function(struct pevent *pevent,
6460 pevent_func_handler func,
6461 enum pevent_func_arg_type ret_type,
6462 char *name, ...)
6463{
6464 struct pevent_function_handler *func_handle;
6465 struct pevent_func_params **next_param;
6466 struct pevent_func_params *param;
6467 enum pevent_func_arg_type type;
6468 va_list ap;
Namhyung Kim67ed9392012-09-07 11:49:47 +09006469 int ret;
Steven Rostedtf7d82352012-04-06 00:47:53 +02006470
6471 func_handle = find_func_handler(pevent, name);
6472 if (func_handle) {
6473 /*
6474 * This is most like caused by the users own
6475 * plugins updating the function. This overrides the
6476 * system defaults.
6477 */
6478 pr_stat("override of function helper '%s'", name);
6479 remove_func_handler(pevent, name);
6480 }
6481
Arnaldo Carvalho de Melo87162d82012-09-12 15:39:59 -03006482 func_handle = calloc(1, sizeof(*func_handle));
Namhyung Kim67ed9392012-09-07 11:49:47 +09006483 if (!func_handle) {
6484 do_warning("Failed to allocate function handler");
6485 return PEVENT_ERRNO__MEM_ALLOC_FAILED;
6486 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02006487
6488 func_handle->ret_type = ret_type;
6489 func_handle->name = strdup(name);
6490 func_handle->func = func;
Namhyung Kim67ed9392012-09-07 11:49:47 +09006491 if (!func_handle->name) {
6492 do_warning("Failed to allocate function name");
6493 free(func_handle);
6494 return PEVENT_ERRNO__MEM_ALLOC_FAILED;
6495 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02006496
6497 next_param = &(func_handle->params);
6498 va_start(ap, name);
6499 for (;;) {
6500 type = va_arg(ap, enum pevent_func_arg_type);
6501 if (type == PEVENT_FUNC_ARG_VOID)
6502 break;
6503
Arnaldo Carvalho de Meloe46466b2012-11-09 15:42:26 -03006504 if (type >= PEVENT_FUNC_ARG_MAX_TYPES) {
Namhyung Kim67ed9392012-09-07 11:49:47 +09006505 do_warning("Invalid argument type %d", type);
6506 ret = PEVENT_ERRNO__INVALID_ARG_TYPE;
Steven Rostedtf7d82352012-04-06 00:47:53 +02006507 goto out_free;
6508 }
6509
Namhyung Kim67ed9392012-09-07 11:49:47 +09006510 param = malloc(sizeof(*param));
6511 if (!param) {
6512 do_warning("Failed to allocate function param");
6513 ret = PEVENT_ERRNO__MEM_ALLOC_FAILED;
6514 goto out_free;
6515 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02006516 param->type = type;
6517 param->next = NULL;
6518
6519 *next_param = param;
6520 next_param = &(param->next);
6521
6522 func_handle->nr_args++;
6523 }
6524 va_end(ap);
6525
6526 func_handle->next = pevent->func_handlers;
6527 pevent->func_handlers = func_handle;
6528
6529 return 0;
6530 out_free:
6531 va_end(ap);
6532 free_func_handle(func_handle);
Namhyung Kim67ed9392012-09-07 11:49:47 +09006533 return ret;
Steven Rostedtf7d82352012-04-06 00:47:53 +02006534}
6535
Namhyung Kim20c7e5a2014-01-16 11:31:08 +09006536/**
6537 * pevent_unregister_print_function - unregister a helper function
6538 * @pevent: the handle to the pevent
6539 * @func: the function to process the helper function
6540 * @name: the name of the helper function
6541 *
6542 * This function removes existing print handler for function @name.
6543 *
6544 * Returns 0 if the handler was removed successully, -1 otherwise.
6545 */
6546int pevent_unregister_print_function(struct pevent *pevent,
6547 pevent_func_handler func, char *name)
6548{
6549 struct pevent_function_handler *func_handle;
6550
6551 func_handle = find_func_handler(pevent, name);
6552 if (func_handle && func_handle->func == func) {
6553 remove_func_handler(pevent, name);
6554 return 0;
6555 }
6556 return -1;
6557}
6558
Namhyung Kimad137012014-01-16 11:31:07 +09006559static struct event_format *pevent_search_event(struct pevent *pevent, int id,
6560 const char *sys_name,
6561 const char *event_name)
6562{
6563 struct event_format *event;
6564
6565 if (id >= 0) {
6566 /* search by id */
6567 event = pevent_find_event(pevent, id);
6568 if (!event)
6569 return NULL;
6570 if (event_name && (strcmp(event_name, event->name) != 0))
6571 return NULL;
6572 if (sys_name && (strcmp(sys_name, event->system) != 0))
6573 return NULL;
6574 } else {
6575 event = pevent_find_event_by_name(pevent, sys_name, event_name);
6576 if (!event)
6577 return NULL;
6578 }
6579 return event;
6580}
6581
Steven Rostedtf7d82352012-04-06 00:47:53 +02006582/**
Namhyung Kim16e6b8f2012-04-23 13:58:35 +09006583 * pevent_register_event_handler - register a way to parse an event
Steven Rostedtf7d82352012-04-06 00:47:53 +02006584 * @pevent: the handle to the pevent
6585 * @id: the id of the event to register
6586 * @sys_name: the system name the event belongs to
6587 * @event_name: the name of the event
6588 * @func: the function to call to parse the event information
Namhyung Kim16e6b8f2012-04-23 13:58:35 +09006589 * @context: the data to be passed to @func
Steven Rostedtf7d82352012-04-06 00:47:53 +02006590 *
6591 * This function allows a developer to override the parsing of
6592 * a given event. If for some reason the default print format
6593 * is not sufficient, this function will register a function
6594 * for an event to be used to parse the data instead.
6595 *
6596 * If @id is >= 0, then it is used to find the event.
6597 * else @sys_name and @event_name are used.
6598 */
Namhyung Kim79d5adf2013-06-04 14:20:18 +09006599int pevent_register_event_handler(struct pevent *pevent, int id,
6600 const char *sys_name, const char *event_name,
6601 pevent_event_handler_func func, void *context)
Steven Rostedtf7d82352012-04-06 00:47:53 +02006602{
6603 struct event_format *event;
6604 struct event_handler *handle;
6605
Namhyung Kimad137012014-01-16 11:31:07 +09006606 event = pevent_search_event(pevent, id, sys_name, event_name);
6607 if (event == NULL)
6608 goto not_found;
Steven Rostedtf7d82352012-04-06 00:47:53 +02006609
6610 pr_stat("overriding event (%d) %s:%s with new print handler",
6611 event->id, event->system, event->name);
6612
6613 event->handler = func;
6614 event->context = context;
6615 return 0;
6616
6617 not_found:
6618 /* Save for later use. */
Arnaldo Carvalho de Melo87162d82012-09-12 15:39:59 -03006619 handle = calloc(1, sizeof(*handle));
Namhyung Kim0ca8da02012-09-07 11:49:46 +09006620 if (!handle) {
6621 do_warning("Failed to allocate event handler");
6622 return PEVENT_ERRNO__MEM_ALLOC_FAILED;
6623 }
6624
Steven Rostedtf7d82352012-04-06 00:47:53 +02006625 handle->id = id;
6626 if (event_name)
6627 handle->event_name = strdup(event_name);
6628 if (sys_name)
6629 handle->sys_name = strdup(sys_name);
6630
Namhyung Kimca638582012-04-09 11:54:31 +09006631 if ((event_name && !handle->event_name) ||
6632 (sys_name && !handle->sys_name)) {
Namhyung Kim0ca8da02012-09-07 11:49:46 +09006633 do_warning("Failed to allocate event/sys name");
6634 free((void *)handle->event_name);
6635 free((void *)handle->sys_name);
6636 free(handle);
6637 return PEVENT_ERRNO__MEM_ALLOC_FAILED;
Namhyung Kimca638582012-04-09 11:54:31 +09006638 }
6639
Steven Rostedtf7d82352012-04-06 00:47:53 +02006640 handle->func = func;
6641 handle->next = pevent->handlers;
6642 pevent->handlers = handle;
6643 handle->context = context;
6644
6645 return -1;
6646}
6647
Namhyung Kimad137012014-01-16 11:31:07 +09006648static int handle_matches(struct event_handler *handler, int id,
6649 const char *sys_name, const char *event_name,
6650 pevent_event_handler_func func, void *context)
6651{
6652 if (id >= 0 && id != handler->id)
6653 return 0;
6654
6655 if (event_name && (strcmp(event_name, handler->event_name) != 0))
6656 return 0;
6657
6658 if (sys_name && (strcmp(sys_name, handler->sys_name) != 0))
6659 return 0;
6660
6661 if (func != handler->func || context != handler->context)
6662 return 0;
6663
6664 return 1;
6665}
6666
6667/**
6668 * pevent_unregister_event_handler - unregister an existing event handler
6669 * @pevent: the handle to the pevent
6670 * @id: the id of the event to unregister
6671 * @sys_name: the system name the handler belongs to
6672 * @event_name: the name of the event handler
6673 * @func: the function to call to parse the event information
6674 * @context: the data to be passed to @func
6675 *
6676 * This function removes existing event handler (parser).
6677 *
6678 * If @id is >= 0, then it is used to find the event.
6679 * else @sys_name and @event_name are used.
6680 *
6681 * Returns 0 if handler was removed successfully, -1 if event was not found.
6682 */
6683int pevent_unregister_event_handler(struct pevent *pevent, int id,
6684 const char *sys_name, const char *event_name,
6685 pevent_event_handler_func func, void *context)
6686{
6687 struct event_format *event;
6688 struct event_handler *handle;
6689 struct event_handler **next;
6690
6691 event = pevent_search_event(pevent, id, sys_name, event_name);
6692 if (event == NULL)
6693 goto not_found;
6694
6695 if (event->handler == func && event->context == context) {
6696 pr_stat("removing override handler for event (%d) %s:%s. Going back to default handler.",
6697 event->id, event->system, event->name);
6698
6699 event->handler = NULL;
6700 event->context = NULL;
6701 return 0;
6702 }
6703
6704not_found:
6705 for (next = &pevent->handlers; *next; next = &(*next)->next) {
6706 handle = *next;
6707 if (handle_matches(handle, id, sys_name, event_name,
6708 func, context))
6709 break;
6710 }
6711
6712 if (!(*next))
6713 return -1;
6714
6715 *next = handle->next;
6716 free_handler(handle);
6717
6718 return 0;
6719}
6720
Steven Rostedtf7d82352012-04-06 00:47:53 +02006721/**
6722 * pevent_alloc - create a pevent handle
6723 */
6724struct pevent *pevent_alloc(void)
6725{
Arnaldo Carvalho de Melo87162d82012-09-12 15:39:59 -03006726 struct pevent *pevent = calloc(1, sizeof(*pevent));
Steven Rostedtf7d82352012-04-06 00:47:53 +02006727
Arnaldo Carvalho de Melo87162d82012-09-12 15:39:59 -03006728 if (pevent)
6729 pevent->ref_count = 1;
Steven Rostedtf7d82352012-04-06 00:47:53 +02006730
6731 return pevent;
6732}
6733
6734void pevent_ref(struct pevent *pevent)
6735{
6736 pevent->ref_count++;
6737}
6738
David Ahern00ae1122015-03-19 12:36:21 -06006739void pevent_free_format_field(struct format_field *field)
6740{
6741 free(field->type);
Jiri Olsad3542432015-04-18 17:50:18 +02006742 if (field->alias != field->name)
6743 free(field->alias);
David Ahern00ae1122015-03-19 12:36:21 -06006744 free(field->name);
6745 free(field);
6746}
6747
Steven Rostedtf7d82352012-04-06 00:47:53 +02006748static void free_format_fields(struct format_field *field)
6749{
6750 struct format_field *next;
6751
6752 while (field) {
6753 next = field->next;
David Ahern00ae1122015-03-19 12:36:21 -06006754 pevent_free_format_field(field);
Steven Rostedtf7d82352012-04-06 00:47:53 +02006755 field = next;
6756 }
6757}
6758
6759static void free_formats(struct format *format)
6760{
6761 free_format_fields(format->common_fields);
6762 free_format_fields(format->fields);
6763}
6764
Arnaldo Carvalho de Melo2b291752012-09-18 11:13:15 -03006765void pevent_free_format(struct event_format *event)
Steven Rostedtf7d82352012-04-06 00:47:53 +02006766{
6767 free(event->name);
6768 free(event->system);
6769
6770 free_formats(&event->format);
6771
6772 free(event->print_fmt.format);
6773 free_args(event->print_fmt.args);
6774
6775 free(event);
6776}
6777
6778/**
6779 * pevent_free - free a pevent handle
6780 * @pevent: the pevent handle to free
6781 */
6782void pevent_free(struct pevent *pevent)
6783{
Steven Rostedta2525a02012-04-06 00:48:02 +02006784 struct cmdline_list *cmdlist, *cmdnext;
6785 struct func_list *funclist, *funcnext;
6786 struct printk_list *printklist, *printknext;
Steven Rostedtf7d82352012-04-06 00:47:53 +02006787 struct pevent_function_handler *func_handler;
6788 struct event_handler *handle;
6789 int i;
6790
Steven Rostedta2525a02012-04-06 00:48:02 +02006791 if (!pevent)
6792 return;
6793
6794 cmdlist = pevent->cmdlist;
6795 funclist = pevent->funclist;
6796 printklist = pevent->printklist;
6797
Steven Rostedtf7d82352012-04-06 00:47:53 +02006798 pevent->ref_count--;
6799 if (pevent->ref_count)
6800 return;
6801
6802 if (pevent->cmdlines) {
6803 for (i = 0; i < pevent->cmdline_count; i++)
6804 free(pevent->cmdlines[i].comm);
6805 free(pevent->cmdlines);
6806 }
6807
6808 while (cmdlist) {
6809 cmdnext = cmdlist->next;
6810 free(cmdlist->comm);
6811 free(cmdlist);
6812 cmdlist = cmdnext;
6813 }
6814
6815 if (pevent->func_map) {
Arnaldo Carvalho de Melo8a38cce2012-11-09 15:32:00 -03006816 for (i = 0; i < (int)pevent->func_count; i++) {
Steven Rostedtf7d82352012-04-06 00:47:53 +02006817 free(pevent->func_map[i].func);
6818 free(pevent->func_map[i].mod);
6819 }
6820 free(pevent->func_map);
6821 }
6822
6823 while (funclist) {
6824 funcnext = funclist->next;
6825 free(funclist->func);
6826 free(funclist->mod);
6827 free(funclist);
6828 funclist = funcnext;
6829 }
6830
6831 while (pevent->func_handlers) {
6832 func_handler = pevent->func_handlers;
6833 pevent->func_handlers = func_handler->next;
6834 free_func_handle(func_handler);
6835 }
6836
6837 if (pevent->printk_map) {
Arnaldo Carvalho de Melo8a38cce2012-11-09 15:32:00 -03006838 for (i = 0; i < (int)pevent->printk_count; i++)
Steven Rostedtf7d82352012-04-06 00:47:53 +02006839 free(pevent->printk_map[i].printk);
6840 free(pevent->printk_map);
6841 }
6842
6843 while (printklist) {
6844 printknext = printklist->next;
6845 free(printklist->printk);
6846 free(printklist);
6847 printklist = printknext;
6848 }
6849
6850 for (i = 0; i < pevent->nr_events; i++)
Arnaldo Carvalho de Melo2b291752012-09-18 11:13:15 -03006851 pevent_free_format(pevent->events[i]);
Steven Rostedtf7d82352012-04-06 00:47:53 +02006852
6853 while (pevent->handlers) {
6854 handle = pevent->handlers;
6855 pevent->handlers = handle->next;
6856 free_handler(handle);
6857 }
6858
Steven Rostedt (Red Hat)99ad1412015-03-24 09:57:50 -04006859 free(pevent->trace_clock);
Steven Rostedtf7d82352012-04-06 00:47:53 +02006860 free(pevent->events);
6861 free(pevent->sort_events);
Arnaldo Carvalho de Melo33a24712015-07-22 12:36:55 -03006862 free(pevent->func_resolver);
Steven Rostedtf7d82352012-04-06 00:47:53 +02006863
6864 free(pevent);
6865}
6866
6867void pevent_unref(struct pevent *pevent)
6868{
6869 pevent_free(pevent);
6870}