blob: e1bd2a93c6db8e5e9e496fcf5d232172ce3a4813 [file] [log] [blame]
Steven Rostedt (VMware)6ab025e2018-08-16 11:10:15 -04001// SPDX-License-Identifier: LGPL-2.1
Steven Rostedtf7d82352012-04-06 00:47:53 +02002/*
3 * Copyright (C) 2009, 2010 Red Hat Inc, Steven Rostedt <srostedt@redhat.com>
4 *
Steven Rostedtf7d82352012-04-06 00:47:53 +02005 *
6 * The parts for function graph printing was taken and modified from the
7 * Linux Kernel that were written by
8 * - Copyright (C) 2009 Frederic Weisbecker,
9 * Frederic Weisbecker gave his permission to relicense the code to
10 * the Lesser General Public License.
11 */
Arnaldo Carvalho de Meloca575ad2016-07-14 11:23:25 -030012#include <inttypes.h>
Steven Rostedtf7d82352012-04-06 00:47:53 +020013#include <stdio.h>
14#include <stdlib.h>
15#include <string.h>
16#include <stdarg.h>
17#include <ctype.h>
18#include <errno.h>
Robert Richter0cf26012012-08-07 19:43:14 +020019#include <stdint.h>
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -030020#include <limits.h>
Steven Rostedtbb5a7312016-11-22 15:00:31 -030021#include <linux/time64.h>
Steven Rostedtf7d82352012-04-06 00:47:53 +020022
Arnaldo Carvalho de Meloca575ad2016-07-14 11:23:25 -030023#include <netinet/in.h>
Steven Rostedtf7d82352012-04-06 00:47:53 +020024#include "event-parse.h"
Tzvetomir Stoyanovbb3dd7e2018-10-05 12:22:25 -040025
26#include "event-parse-local.h"
Steven Rostedt668fe012012-04-06 00:47:55 +020027#include "event-utils.h"
Tzvetomir Stoyanov (VMware)266b8512018-08-28 18:50:38 -040028#include "trace-seq.h"
Steven Rostedtf7d82352012-04-06 00:47:53 +020029
30static const char *input_buf;
31static unsigned long long input_buf_ptr;
32static unsigned long long input_buf_siz;
33
Tom Zanussi5205aec2012-04-06 00:47:58 +020034static int is_flag_field;
35static int is_symbolic_field;
36
Steven Rostedtf7d82352012-04-06 00:47:53 +020037static int show_warning = 1;
38
39#define do_warning(fmt, ...) \
40 do { \
41 if (show_warning) \
42 warning(fmt, ##__VA_ARGS__); \
43 } while (0)
44
Namhyung Kim3388cc32014-03-19 10:22:53 +090045#define do_warning_event(event, fmt, ...) \
46 do { \
47 if (!show_warning) \
48 continue; \
49 \
50 if (event) \
51 warning("[%s:%s] " fmt, event->system, \
52 event->name, ##__VA_ARGS__); \
53 else \
54 warning(fmt, ##__VA_ARGS__); \
55 } while (0)
56
Steven Rostedtf7d82352012-04-06 00:47:53 +020057static void init_input_buf(const char *buf, unsigned long long size)
58{
59 input_buf = buf;
60 input_buf_siz = size;
61 input_buf_ptr = 0;
62}
63
Tzvetomir Stoyanov (VMware)1634e462018-08-08 14:03:07 -040064const char *tep_get_input_buf(void)
Steven Rostedtf7d82352012-04-06 00:47:53 +020065{
66 return input_buf;
67}
68
Tzvetomir Stoyanov (VMware)1634e462018-08-08 14:03:07 -040069unsigned long long tep_get_input_buf_ptr(void)
Steven Rostedtf7d82352012-04-06 00:47:53 +020070{
71 return input_buf_ptr;
72}
73
74struct event_handler {
75 struct event_handler *next;
76 int id;
77 const char *sys_name;
78 const char *event_name;
Tzvetomir Stoyanov (VMware)c32d52b2018-08-08 14:02:48 -040079 tep_event_handler_func func;
Steven Rostedtf7d82352012-04-06 00:47:53 +020080 void *context;
81};
82
Tzvetomir Stoyanov (VMware)0ae98632018-08-08 14:03:09 -040083struct func_params {
84 struct func_params *next;
85 enum tep_func_arg_type type;
Steven Rostedtf7d82352012-04-06 00:47:53 +020086};
87
Tzvetomir Stoyanov (VMware)3cf47782018-08-08 14:02:59 -040088struct tep_function_handler {
89 struct tep_function_handler *next;
90 enum tep_func_arg_type ret_type;
Steven Rostedtf7d82352012-04-06 00:47:53 +020091 char *name;
Tzvetomir Stoyanov (VMware)3cf47782018-08-08 14:02:59 -040092 tep_func_handler func;
Tzvetomir Stoyanov (VMware)0ae98632018-08-08 14:03:09 -040093 struct func_params *params;
Steven Rostedtf7d82352012-04-06 00:47:53 +020094 int nr_args;
95};
96
97static unsigned long long
98process_defined_func(struct trace_seq *s, void *data, int size,
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -050099 struct tep_event *event, struct tep_print_arg *arg);
Steven Rostedtf7d82352012-04-06 00:47:53 +0200100
Tzvetomir Stoyanov (VMware)3cf47782018-08-08 14:02:59 -0400101static void free_func_handle(struct tep_function_handler *func);
Steven Rostedtf7d82352012-04-06 00:47:53 +0200102
103/**
Tzvetomir Stoyanov (VMware)1634e462018-08-08 14:03:07 -0400104 * tep_buffer_init - init buffer for parsing
Steven Rostedtf7d82352012-04-06 00:47:53 +0200105 * @buf: buffer to parse
106 * @size: the size of the buffer
107 *
Tzvetomir Stoyanov (VMware)1634e462018-08-08 14:03:07 -0400108 * For use with tep_read_token(), this initializes the internal
109 * buffer that tep_read_token() will parse.
Steven Rostedtf7d82352012-04-06 00:47:53 +0200110 */
Tzvetomir Stoyanov (VMware)1634e462018-08-08 14:03:07 -0400111void tep_buffer_init(const char *buf, unsigned long long size)
Steven Rostedtf7d82352012-04-06 00:47:53 +0200112{
113 init_input_buf(buf, size);
114}
115
116void breakpoint(void)
117{
118 static int x;
119 x++;
120}
121
Tzvetomir Stoyanov (VMware)5647f942018-09-19 14:56:49 -0400122struct tep_print_arg *alloc_arg(void)
Steven Rostedtf7d82352012-04-06 00:47:53 +0200123{
Tzvetomir Stoyanov (VMware)5647f942018-09-19 14:56:49 -0400124 return calloc(1, sizeof(struct tep_print_arg));
Steven Rostedtf7d82352012-04-06 00:47:53 +0200125}
126
Tzvetomir Stoyanov2e4318a2018-11-30 23:08:09 -0500127struct tep_cmdline {
Steven Rostedtf7d82352012-04-06 00:47:53 +0200128 char *comm;
129 int pid;
130};
131
132static int cmdline_cmp(const void *a, const void *b)
133{
Tzvetomir Stoyanov2e4318a2018-11-30 23:08:09 -0500134 const struct tep_cmdline *ca = a;
135 const struct tep_cmdline *cb = b;
Steven Rostedtf7d82352012-04-06 00:47:53 +0200136
137 if (ca->pid < cb->pid)
138 return -1;
139 if (ca->pid > cb->pid)
140 return 1;
141
142 return 0;
143}
144
Steven Rostedt (VMware)301011b2019-08-28 15:05:29 -0400145/* Looking for where to place the key */
146static int cmdline_slot_cmp(const void *a, const void *b)
147{
148 const struct tep_cmdline *ca = a;
149 const struct tep_cmdline *cb = b;
150 const struct tep_cmdline *cb1 = cb + 1;
151
152 if (ca->pid < cb->pid)
153 return -1;
154
155 if (ca->pid > cb->pid) {
156 if (ca->pid <= cb1->pid)
157 return 0;
158 return 1;
159 }
160
161 return 0;
162}
163
Steven Rostedtf7d82352012-04-06 00:47:53 +0200164struct cmdline_list {
165 struct cmdline_list *next;
166 char *comm;
167 int pid;
168};
169
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -0400170static int cmdline_init(struct tep_handle *tep)
Steven Rostedtf7d82352012-04-06 00:47:53 +0200171{
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -0400172 struct cmdline_list *cmdlist = tep->cmdlist;
Steven Rostedtf7d82352012-04-06 00:47:53 +0200173 struct cmdline_list *item;
Tzvetomir Stoyanov2e4318a2018-11-30 23:08:09 -0500174 struct tep_cmdline *cmdlines;
Steven Rostedtf7d82352012-04-06 00:47:53 +0200175 int i;
176
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -0400177 cmdlines = malloc(sizeof(*cmdlines) * tep->cmdline_count);
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -0300178 if (!cmdlines)
179 return -1;
Steven Rostedtf7d82352012-04-06 00:47:53 +0200180
181 i = 0;
182 while (cmdlist) {
183 cmdlines[i].pid = cmdlist->pid;
184 cmdlines[i].comm = cmdlist->comm;
185 i++;
186 item = cmdlist;
187 cmdlist = cmdlist->next;
188 free(item);
189 }
190
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -0400191 qsort(cmdlines, tep->cmdline_count, sizeof(*cmdlines), cmdline_cmp);
Steven Rostedtf7d82352012-04-06 00:47:53 +0200192
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -0400193 tep->cmdlines = cmdlines;
194 tep->cmdlist = NULL;
Steven Rostedtf7d82352012-04-06 00:47:53 +0200195
196 return 0;
197}
198
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -0400199static const char *find_cmdline(struct tep_handle *tep, int pid)
Steven Rostedtf7d82352012-04-06 00:47:53 +0200200{
Tzvetomir Stoyanov2e4318a2018-11-30 23:08:09 -0500201 const struct tep_cmdline *comm;
202 struct tep_cmdline key;
Steven Rostedtf7d82352012-04-06 00:47:53 +0200203
204 if (!pid)
205 return "<idle>";
206
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -0400207 if (!tep->cmdlines && cmdline_init(tep))
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -0300208 return "<not enough memory for cmdlines!>";
Steven Rostedtf7d82352012-04-06 00:47:53 +0200209
210 key.pid = pid;
211
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -0400212 comm = bsearch(&key, tep->cmdlines, tep->cmdline_count,
213 sizeof(*tep->cmdlines), cmdline_cmp);
Steven Rostedtf7d82352012-04-06 00:47:53 +0200214
215 if (comm)
216 return comm->comm;
217 return "<...>";
218}
219
220/**
Tzvetomir Stoyanov55c34ae2019-04-01 12:43:16 -0400221 * tep_is_pid_registered - return if a pid has a cmdline registered
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -0400222 * @tep: a handle to the trace event parser context
Steven Rostedtf7d82352012-04-06 00:47:53 +0200223 * @pid: The pid to check if it has a cmdline registered with.
224 *
Tzvetomir Stoyanov55c34ae2019-04-01 12:43:16 -0400225 * Returns true if the pid has a cmdline mapped to it
226 * false otherwise.
Steven Rostedtf7d82352012-04-06 00:47:53 +0200227 */
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -0400228bool tep_is_pid_registered(struct tep_handle *tep, int pid)
Steven Rostedtf7d82352012-04-06 00:47:53 +0200229{
Tzvetomir Stoyanov2e4318a2018-11-30 23:08:09 -0500230 const struct tep_cmdline *comm;
231 struct tep_cmdline key;
Steven Rostedtf7d82352012-04-06 00:47:53 +0200232
233 if (!pid)
Tzvetomir Stoyanov55c34ae2019-04-01 12:43:16 -0400234 return true;
Steven Rostedtf7d82352012-04-06 00:47:53 +0200235
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -0400236 if (!tep->cmdlines && cmdline_init(tep))
Tzvetomir Stoyanov55c34ae2019-04-01 12:43:16 -0400237 return false;
Steven Rostedtf7d82352012-04-06 00:47:53 +0200238
239 key.pid = pid;
240
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -0400241 comm = bsearch(&key, tep->cmdlines, tep->cmdline_count,
242 sizeof(*tep->cmdlines), cmdline_cmp);
Steven Rostedtf7d82352012-04-06 00:47:53 +0200243
244 if (comm)
Tzvetomir Stoyanov55c34ae2019-04-01 12:43:16 -0400245 return true;
246 return false;
Steven Rostedtf7d82352012-04-06 00:47:53 +0200247}
248
249/*
250 * If the command lines have been converted to an array, then
251 * we must add this pid. This is much slower than when cmdlines
252 * are added before the array is initialized.
253 */
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -0400254static int add_new_comm(struct tep_handle *tep,
Tzvetomir Stoyanovca3958b2018-11-30 10:44:11 -0500255 const char *comm, int pid, bool override)
Steven Rostedtf7d82352012-04-06 00:47:53 +0200256{
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -0400257 struct tep_cmdline *cmdlines = tep->cmdlines;
Tzvetomir Stoyanov2e4318a2018-11-30 23:08:09 -0500258 struct tep_cmdline *cmdline;
259 struct tep_cmdline key;
Tzvetomir Stoyanovca3958b2018-11-30 10:44:11 -0500260 char *new_comm;
Steven Rostedt (VMware)301011b2019-08-28 15:05:29 -0400261 int cnt;
Steven Rostedtf7d82352012-04-06 00:47:53 +0200262
263 if (!pid)
264 return 0;
265
266 /* avoid duplicates */
267 key.pid = pid;
268
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -0400269 cmdline = bsearch(&key, tep->cmdlines, tep->cmdline_count,
270 sizeof(*tep->cmdlines), cmdline_cmp);
Steven Rostedtf7d82352012-04-06 00:47:53 +0200271 if (cmdline) {
Tzvetomir Stoyanovca3958b2018-11-30 10:44:11 -0500272 if (!override) {
273 errno = EEXIST;
274 return -1;
275 }
276 new_comm = strdup(comm);
277 if (!new_comm) {
278 errno = ENOMEM;
279 return -1;
280 }
281 free(cmdline->comm);
282 cmdline->comm = new_comm;
283
284 return 0;
Steven Rostedtf7d82352012-04-06 00:47:53 +0200285 }
286
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -0400287 cmdlines = realloc(cmdlines, sizeof(*cmdlines) * (tep->cmdline_count + 1));
Steven Rostedtf7d82352012-04-06 00:47:53 +0200288 if (!cmdlines) {
289 errno = ENOMEM;
290 return -1;
291 }
Steven Rostedt (VMware)b0215e22019-08-28 15:05:28 -0400292 tep->cmdlines = cmdlines;
Steven Rostedtf7d82352012-04-06 00:47:53 +0200293
Steven Rostedt (VMware)301011b2019-08-28 15:05:29 -0400294 key.comm = strdup(comm);
295 if (!key.comm) {
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -0300296 errno = ENOMEM;
297 return -1;
298 }
299
Steven Rostedt (VMware)301011b2019-08-28 15:05:29 -0400300 if (!tep->cmdline_count) {
301 /* no entries yet */
302 tep->cmdlines[0] = key;
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -0400303 tep->cmdline_count++;
Steven Rostedt (VMware)301011b2019-08-28 15:05:29 -0400304 return 0;
305 }
Steven Rostedtf7d82352012-04-06 00:47:53 +0200306
Steven Rostedt (VMware)301011b2019-08-28 15:05:29 -0400307 /* Now find where we want to store the new cmdline */
308 cmdline = bsearch(&key, tep->cmdlines, tep->cmdline_count - 1,
309 sizeof(*tep->cmdlines), cmdline_slot_cmp);
310
311 cnt = tep->cmdline_count;
312 if (cmdline) {
313 /* cmdline points to the one before the spot we want */
314 cmdline++;
315 cnt -= cmdline - tep->cmdlines;
316
317 } else {
318 /* The new entry is either before or after the list */
319 if (key.pid > tep->cmdlines[tep->cmdline_count - 1].pid) {
320 tep->cmdlines[tep->cmdline_count++] = key;
321 return 0;
322 }
323 cmdline = &tep->cmdlines[0];
324 }
325 memmove(cmdline + 1, cmdline, (cnt * sizeof(*cmdline)));
326 *cmdline = key;
327
328 tep->cmdline_count++;
Steven Rostedtf7d82352012-04-06 00:47:53 +0200329
330 return 0;
331}
332
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -0400333static int _tep_register_comm(struct tep_handle *tep,
Tzvetomir Stoyanovca3958b2018-11-30 10:44:11 -0500334 const char *comm, int pid, bool override)
Steven Rostedtf7d82352012-04-06 00:47:53 +0200335{
336 struct cmdline_list *item;
337
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -0400338 if (tep->cmdlines)
339 return add_new_comm(tep, comm, pid, override);
Steven Rostedtf7d82352012-04-06 00:47:53 +0200340
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -0300341 item = malloc(sizeof(*item));
342 if (!item)
343 return -1;
344
Josef Bacikdeab6f52015-03-24 09:57:49 -0400345 if (comm)
346 item->comm = strdup(comm);
347 else
348 item->comm = strdup("<...>");
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -0300349 if (!item->comm) {
350 free(item);
351 return -1;
352 }
Steven Rostedtf7d82352012-04-06 00:47:53 +0200353 item->pid = pid;
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -0400354 item->next = tep->cmdlist;
Steven Rostedtf7d82352012-04-06 00:47:53 +0200355
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -0400356 tep->cmdlist = item;
357 tep->cmdline_count++;
Steven Rostedtf7d82352012-04-06 00:47:53 +0200358
359 return 0;
360}
361
Tzvetomir Stoyanovca3958b2018-11-30 10:44:11 -0500362/**
363 * tep_register_comm - register a pid / comm mapping
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -0400364 * @tep: a handle to the trace event parser context
Tzvetomir Stoyanovca3958b2018-11-30 10:44:11 -0500365 * @comm: the command line to register
366 * @pid: the pid to map the command line to
367 *
368 * This adds a mapping to search for command line names with
369 * a given pid. The comm is duplicated. If a command with the same pid
370 * already exist, -1 is returned and errno is set to EEXIST
371 */
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -0400372int tep_register_comm(struct tep_handle *tep, const char *comm, int pid)
Tzvetomir Stoyanovca3958b2018-11-30 10:44:11 -0500373{
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -0400374 return _tep_register_comm(tep, comm, pid, false);
Tzvetomir Stoyanovca3958b2018-11-30 10:44:11 -0500375}
376
377/**
378 * tep_override_comm - register a pid / comm mapping
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -0400379 * @tep: a handle to the trace event parser context
Tzvetomir Stoyanovca3958b2018-11-30 10:44:11 -0500380 * @comm: the command line to register
381 * @pid: the pid to map the command line to
382 *
383 * This adds a mapping to search for command line names with
384 * a given pid. The comm is duplicated. If a command with the same pid
385 * already exist, the command string is udapted with the new one
386 */
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -0400387int tep_override_comm(struct tep_handle *tep, const char *comm, int pid)
Tzvetomir Stoyanovca3958b2018-11-30 10:44:11 -0500388{
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -0400389 if (!tep->cmdlines && cmdline_init(tep)) {
Tzvetomir Stoyanovca3958b2018-11-30 10:44:11 -0500390 errno = ENOMEM;
391 return -1;
392 }
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -0400393 return _tep_register_comm(tep, comm, pid, true);
Tzvetomir Stoyanovca3958b2018-11-30 10:44:11 -0500394}
395
Steven Rostedtf7d82352012-04-06 00:47:53 +0200396struct func_map {
397 unsigned long long addr;
398 char *func;
399 char *mod;
400};
401
402struct func_list {
403 struct func_list *next;
404 unsigned long long addr;
405 char *func;
406 char *mod;
407};
408
409static int func_cmp(const void *a, const void *b)
410{
411 const struct func_map *fa = a;
412 const struct func_map *fb = b;
413
414 if (fa->addr < fb->addr)
415 return -1;
416 if (fa->addr > fb->addr)
417 return 1;
418
419 return 0;
420}
421
422/*
423 * We are searching for a record in between, not an exact
424 * match.
425 */
426static int func_bcmp(const void *a, const void *b)
427{
428 const struct func_map *fa = a;
429 const struct func_map *fb = b;
430
431 if ((fa->addr == fb->addr) ||
432
433 (fa->addr > fb->addr &&
434 fa->addr < (fb+1)->addr))
435 return 0;
436
437 if (fa->addr < fb->addr)
438 return -1;
439
440 return 1;
441}
442
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -0400443static int func_map_init(struct tep_handle *tep)
Steven Rostedtf7d82352012-04-06 00:47:53 +0200444{
445 struct func_list *funclist;
446 struct func_list *item;
447 struct func_map *func_map;
448 int i;
449
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -0400450 func_map = malloc(sizeof(*func_map) * (tep->func_count + 1));
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -0300451 if (!func_map)
452 return -1;
453
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -0400454 funclist = tep->funclist;
Steven Rostedtf7d82352012-04-06 00:47:53 +0200455
456 i = 0;
457 while (funclist) {
458 func_map[i].func = funclist->func;
459 func_map[i].addr = funclist->addr;
460 func_map[i].mod = funclist->mod;
461 i++;
462 item = funclist;
463 funclist = funclist->next;
464 free(item);
465 }
466
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -0400467 qsort(func_map, tep->func_count, sizeof(*func_map), func_cmp);
Steven Rostedtf7d82352012-04-06 00:47:53 +0200468
469 /*
470 * Add a special record at the end.
471 */
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -0400472 func_map[tep->func_count].func = NULL;
473 func_map[tep->func_count].addr = 0;
474 func_map[tep->func_count].mod = NULL;
Steven Rostedtf7d82352012-04-06 00:47:53 +0200475
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -0400476 tep->func_map = func_map;
477 tep->funclist = NULL;
Steven Rostedtf7d82352012-04-06 00:47:53 +0200478
479 return 0;
480}
481
482static struct func_map *
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -0400483__find_func(struct tep_handle *tep, unsigned long long addr)
Steven Rostedtf7d82352012-04-06 00:47:53 +0200484{
485 struct func_map *func;
486 struct func_map key;
487
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -0400488 if (!tep->func_map)
489 func_map_init(tep);
Steven Rostedtf7d82352012-04-06 00:47:53 +0200490
491 key.addr = addr;
492
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -0400493 func = bsearch(&key, tep->func_map, tep->func_count,
494 sizeof(*tep->func_map), func_bcmp);
Steven Rostedtf7d82352012-04-06 00:47:53 +0200495
496 return func;
497}
498
Arnaldo Carvalho de Melo33a24712015-07-22 12:36:55 -0300499struct func_resolver {
Tzvetomir Stoyanov (VMware)4d5c58b2018-08-08 14:02:49 -0400500 tep_func_resolver_t *func;
501 void *priv;
502 struct func_map map;
Arnaldo Carvalho de Melo33a24712015-07-22 12:36:55 -0300503};
504
505/**
Tzvetomir Stoyanov (VMware)ece2a4f2018-08-08 14:02:55 -0400506 * tep_set_function_resolver - set an alternative function resolver
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -0400507 * @tep: a handle to the trace event parser context
Arnaldo Carvalho de Melo33a24712015-07-22 12:36:55 -0300508 * @resolver: function to be used
509 * @priv: resolver function private state.
510 *
511 * Some tools may have already a way to resolve kernel functions, allow them to
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -0400512 * keep using it instead of duplicating all the entries inside tep->funclist.
Arnaldo Carvalho de Melo33a24712015-07-22 12:36:55 -0300513 */
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -0400514int tep_set_function_resolver(struct tep_handle *tep,
Tzvetomir Stoyanov (VMware)ece2a4f2018-08-08 14:02:55 -0400515 tep_func_resolver_t *func, void *priv)
Arnaldo Carvalho de Melo33a24712015-07-22 12:36:55 -0300516{
517 struct func_resolver *resolver = malloc(sizeof(*resolver));
518
519 if (resolver == NULL)
520 return -1;
521
522 resolver->func = func;
523 resolver->priv = priv;
524
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -0400525 free(tep->func_resolver);
526 tep->func_resolver = resolver;
Arnaldo Carvalho de Melo33a24712015-07-22 12:36:55 -0300527
528 return 0;
529}
530
531/**
Tzvetomir Stoyanov (VMware)c99eeaf2018-08-08 14:03:08 -0400532 * tep_reset_function_resolver - reset alternative function resolver
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -0400533 * @tep: a handle to the trace event parser context
Arnaldo Carvalho de Melo33a24712015-07-22 12:36:55 -0300534 *
535 * Stop using whatever alternative resolver was set, use the default
536 * one instead.
537 */
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -0400538void tep_reset_function_resolver(struct tep_handle *tep)
Arnaldo Carvalho de Melo33a24712015-07-22 12:36:55 -0300539{
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -0400540 free(tep->func_resolver);
541 tep->func_resolver = NULL;
Arnaldo Carvalho de Melo33a24712015-07-22 12:36:55 -0300542}
543
544static struct func_map *
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -0400545find_func(struct tep_handle *tep, unsigned long long addr)
Arnaldo Carvalho de Melo33a24712015-07-22 12:36:55 -0300546{
547 struct func_map *map;
548
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -0400549 if (!tep->func_resolver)
550 return __find_func(tep, addr);
Arnaldo Carvalho de Melo33a24712015-07-22 12:36:55 -0300551
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -0400552 map = &tep->func_resolver->map;
Arnaldo Carvalho de Melo33a24712015-07-22 12:36:55 -0300553 map->mod = NULL;
554 map->addr = addr;
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -0400555 map->func = tep->func_resolver->func(tep->func_resolver->priv,
556 &map->addr, &map->mod);
Arnaldo Carvalho de Melo33a24712015-07-22 12:36:55 -0300557 if (map->func == NULL)
558 return NULL;
559
560 return map;
561}
562
Steven Rostedtf7d82352012-04-06 00:47:53 +0200563/**
Tzvetomir Stoyanov (VMware)610e1e42018-08-08 14:03:05 -0400564 * tep_find_function - find a function by a given address
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -0400565 * @tep: a handle to the trace event parser context
Steven Rostedtf7d82352012-04-06 00:47:53 +0200566 * @addr: the address to find the function with
567 *
568 * Returns a pointer to the function stored that has the given
569 * address. Note, the address does not have to be exact, it
570 * will select the function that would contain the address.
571 */
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -0400572const char *tep_find_function(struct tep_handle *tep, unsigned long long addr)
Steven Rostedtf7d82352012-04-06 00:47:53 +0200573{
574 struct func_map *map;
575
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -0400576 map = find_func(tep, addr);
Steven Rostedtf7d82352012-04-06 00:47:53 +0200577 if (!map)
578 return NULL;
579
580 return map->func;
581}
582
583/**
Tzvetomir Stoyanov (VMware)610e1e42018-08-08 14:03:05 -0400584 * tep_find_function_address - find a function address by a given address
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -0400585 * @tep: a handle to the trace event parser context
Steven Rostedtf7d82352012-04-06 00:47:53 +0200586 * @addr: the address to find the function with
587 *
588 * Returns the address the function starts at. This can be used in
Tzvetomir Stoyanov (VMware)610e1e42018-08-08 14:03:05 -0400589 * conjunction with tep_find_function to print both the function
Steven Rostedtf7d82352012-04-06 00:47:53 +0200590 * name and the function offset.
591 */
592unsigned long long
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -0400593tep_find_function_address(struct tep_handle *tep, unsigned long long addr)
Steven Rostedtf7d82352012-04-06 00:47:53 +0200594{
595 struct func_map *map;
596
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -0400597 map = find_func(tep, addr);
Steven Rostedtf7d82352012-04-06 00:47:53 +0200598 if (!map)
599 return 0;
600
601 return map->addr;
602}
603
604/**
Tzvetomir Stoyanov (VMware)b843e9c2018-08-08 14:03:02 -0400605 * tep_register_function - register a function with a given address
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -0400606 * @tep: a handle to the trace event parser context
Steven Rostedtf7d82352012-04-06 00:47:53 +0200607 * @function: the function name to register
608 * @addr: the address the function starts at
609 * @mod: the kernel module the function may be in (NULL for none)
610 *
611 * This registers a function name with an address and module.
612 * The @func passed in is duplicated.
613 */
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -0400614int tep_register_function(struct tep_handle *tep, char *func,
Tzvetomir Stoyanov (VMware)b843e9c2018-08-08 14:03:02 -0400615 unsigned long long addr, char *mod)
Steven Rostedtf7d82352012-04-06 00:47:53 +0200616{
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -0300617 struct func_list *item = malloc(sizeof(*item));
Steven Rostedtf7d82352012-04-06 00:47:53 +0200618
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -0300619 if (!item)
620 return -1;
Steven Rostedtf7d82352012-04-06 00:47:53 +0200621
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -0400622 item->next = tep->funclist;
Steven Rostedtf7d82352012-04-06 00:47:53 +0200623 item->func = strdup(func);
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -0300624 if (!item->func)
625 goto out_free;
626
627 if (mod) {
Steven Rostedtf7d82352012-04-06 00:47:53 +0200628 item->mod = strdup(mod);
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -0300629 if (!item->mod)
630 goto out_free_func;
631 } else
Steven Rostedtf7d82352012-04-06 00:47:53 +0200632 item->mod = NULL;
633 item->addr = addr;
634
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -0400635 tep->funclist = item;
636 tep->func_count++;
Steven Rostedtf7d82352012-04-06 00:47:53 +0200637
638 return 0;
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -0300639
640out_free_func:
641 free(item->func);
642 item->func = NULL;
643out_free:
644 free(item);
645 errno = ENOMEM;
646 return -1;
Steven Rostedtf7d82352012-04-06 00:47:53 +0200647}
648
649/**
Tzvetomir Stoyanov (VMware)6a48dc22018-08-08 14:02:52 -0400650 * tep_print_funcs - print out the stored functions
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -0400651 * @tep: a handle to the trace event parser context
Steven Rostedtf7d82352012-04-06 00:47:53 +0200652 *
653 * This prints out the stored functions.
654 */
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -0400655void tep_print_funcs(struct tep_handle *tep)
Steven Rostedtf7d82352012-04-06 00:47:53 +0200656{
657 int i;
658
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -0400659 if (!tep->func_map)
660 func_map_init(tep);
Steven Rostedtf7d82352012-04-06 00:47:53 +0200661
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -0400662 for (i = 0; i < (int)tep->func_count; i++) {
Steven Rostedtf7d82352012-04-06 00:47:53 +0200663 printf("%016llx %s",
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -0400664 tep->func_map[i].addr,
665 tep->func_map[i].func);
666 if (tep->func_map[i].mod)
667 printf(" [%s]\n", tep->func_map[i].mod);
Steven Rostedtf7d82352012-04-06 00:47:53 +0200668 else
669 printf("\n");
670 }
671}
672
673struct printk_map {
674 unsigned long long addr;
675 char *printk;
676};
677
678struct printk_list {
679 struct printk_list *next;
680 unsigned long long addr;
681 char *printk;
682};
683
684static int printk_cmp(const void *a, const void *b)
685{
Namhyung Kim0fc45ef2012-04-09 11:54:29 +0900686 const struct printk_map *pa = a;
687 const struct printk_map *pb = b;
Steven Rostedtf7d82352012-04-06 00:47:53 +0200688
Namhyung Kim0fc45ef2012-04-09 11:54:29 +0900689 if (pa->addr < pb->addr)
Steven Rostedtf7d82352012-04-06 00:47:53 +0200690 return -1;
Namhyung Kim0fc45ef2012-04-09 11:54:29 +0900691 if (pa->addr > pb->addr)
Steven Rostedtf7d82352012-04-06 00:47:53 +0200692 return 1;
693
694 return 0;
695}
696
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -0400697static int printk_map_init(struct tep_handle *tep)
Steven Rostedtf7d82352012-04-06 00:47:53 +0200698{
699 struct printk_list *printklist;
700 struct printk_list *item;
701 struct printk_map *printk_map;
702 int i;
703
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -0400704 printk_map = malloc(sizeof(*printk_map) * (tep->printk_count + 1));
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -0300705 if (!printk_map)
706 return -1;
Steven Rostedtf7d82352012-04-06 00:47:53 +0200707
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -0400708 printklist = tep->printklist;
Steven Rostedtf7d82352012-04-06 00:47:53 +0200709
710 i = 0;
711 while (printklist) {
712 printk_map[i].printk = printklist->printk;
713 printk_map[i].addr = printklist->addr;
714 i++;
715 item = printklist;
716 printklist = printklist->next;
717 free(item);
718 }
719
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -0400720 qsort(printk_map, tep->printk_count, sizeof(*printk_map), printk_cmp);
Steven Rostedtf7d82352012-04-06 00:47:53 +0200721
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -0400722 tep->printk_map = printk_map;
723 tep->printklist = NULL;
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -0300724
725 return 0;
Steven Rostedtf7d82352012-04-06 00:47:53 +0200726}
727
728static struct printk_map *
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -0400729find_printk(struct tep_handle *tep, unsigned long long addr)
Steven Rostedtf7d82352012-04-06 00:47:53 +0200730{
731 struct printk_map *printk;
732 struct printk_map key;
733
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -0400734 if (!tep->printk_map && printk_map_init(tep))
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -0300735 return NULL;
Steven Rostedtf7d82352012-04-06 00:47:53 +0200736
737 key.addr = addr;
738
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -0400739 printk = bsearch(&key, tep->printk_map, tep->printk_count,
740 sizeof(*tep->printk_map), printk_cmp);
Steven Rostedtf7d82352012-04-06 00:47:53 +0200741
742 return printk;
743}
744
745/**
Tzvetomir Stoyanov (VMware)13a41892018-08-08 14:02:54 -0400746 * tep_register_print_string - register a string by its address
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -0400747 * @tep: a handle to the trace event parser context
Steven Rostedtf7d82352012-04-06 00:47:53 +0200748 * @fmt: the string format to register
749 * @addr: the address the string was located at
750 *
751 * This registers a string by the address it was stored in the kernel.
752 * The @fmt passed in is duplicated.
753 */
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -0400754int tep_register_print_string(struct tep_handle *tep, const char *fmt,
Tzvetomir Stoyanov (VMware)13a41892018-08-08 14:02:54 -0400755 unsigned long long addr)
Steven Rostedtf7d82352012-04-06 00:47:53 +0200756{
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -0300757 struct printk_list *item = malloc(sizeof(*item));
Steven Rostedt (Red Hat)18900af2013-11-01 17:53:54 -0400758 char *p;
Steven Rostedtf7d82352012-04-06 00:47:53 +0200759
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -0300760 if (!item)
761 return -1;
Steven Rostedtf7d82352012-04-06 00:47:53 +0200762
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -0400763 item->next = tep->printklist;
Steven Rostedtf7d82352012-04-06 00:47:53 +0200764 item->addr = addr;
765
Steven Rostedt (Red Hat)18900af2013-11-01 17:53:54 -0400766 /* Strip off quotes and '\n' from the end */
767 if (fmt[0] == '"')
768 fmt++;
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -0300769 item->printk = strdup(fmt);
Namhyung Kimca638582012-04-09 11:54:31 +0900770 if (!item->printk)
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -0300771 goto out_free;
Namhyung Kimca638582012-04-09 11:54:31 +0900772
Steven Rostedt (Red Hat)18900af2013-11-01 17:53:54 -0400773 p = item->printk + strlen(item->printk) - 1;
774 if (*p == '"')
775 *p = 0;
776
777 p -= 2;
778 if (strcmp(p, "\\n") == 0)
779 *p = 0;
780
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -0400781 tep->printklist = item;
782 tep->printk_count++;
Steven Rostedtf7d82352012-04-06 00:47:53 +0200783
784 return 0;
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -0300785
786out_free:
787 free(item);
788 errno = ENOMEM;
789 return -1;
Steven Rostedtf7d82352012-04-06 00:47:53 +0200790}
791
792/**
Tzvetomir Stoyanov (VMware)6a48dc22018-08-08 14:02:52 -0400793 * tep_print_printk - print out the stored strings
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -0400794 * @tep: a handle to the trace event parser context
Steven Rostedtf7d82352012-04-06 00:47:53 +0200795 *
796 * This prints the string formats that were stored.
797 */
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -0400798void tep_print_printk(struct tep_handle *tep)
Steven Rostedtf7d82352012-04-06 00:47:53 +0200799{
800 int i;
801
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -0400802 if (!tep->printk_map)
803 printk_map_init(tep);
Steven Rostedtf7d82352012-04-06 00:47:53 +0200804
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -0400805 for (i = 0; i < (int)tep->printk_count; i++) {
Steven Rostedtf7d82352012-04-06 00:47:53 +0200806 printf("%016llx %s\n",
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -0400807 tep->printk_map[i].addr,
808 tep->printk_map[i].printk);
Steven Rostedtf7d82352012-04-06 00:47:53 +0200809 }
810}
811
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -0500812static struct tep_event *alloc_event(void)
Steven Rostedtf7d82352012-04-06 00:47:53 +0200813{
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -0500814 return calloc(1, sizeof(struct tep_event));
Steven Rostedtf7d82352012-04-06 00:47:53 +0200815}
816
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -0400817static int add_event(struct tep_handle *tep, struct tep_event *event)
Steven Rostedtf7d82352012-04-06 00:47:53 +0200818{
819 int i;
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -0400820 struct tep_event **events = realloc(tep->events, sizeof(event) *
821 (tep->nr_events + 1));
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -0300822 if (!events)
823 return -1;
Steven Rostedtf7d82352012-04-06 00:47:53 +0200824
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -0400825 tep->events = events;
Steven Rostedtf7d82352012-04-06 00:47:53 +0200826
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -0400827 for (i = 0; i < tep->nr_events; i++) {
828 if (tep->events[i]->id > event->id)
Steven Rostedtf7d82352012-04-06 00:47:53 +0200829 break;
830 }
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -0400831 if (i < tep->nr_events)
832 memmove(&tep->events[i + 1],
833 &tep->events[i],
834 sizeof(event) * (tep->nr_events - i));
Steven Rostedtf7d82352012-04-06 00:47:53 +0200835
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -0400836 tep->events[i] = event;
837 tep->nr_events++;
Steven Rostedtf7d82352012-04-06 00:47:53 +0200838
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -0400839 event->tep = tep;
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -0300840
841 return 0;
Steven Rostedtf7d82352012-04-06 00:47:53 +0200842}
843
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -0400844static int event_item_type(enum tep_event_type type)
Steven Rostedtf7d82352012-04-06 00:47:53 +0200845{
846 switch (type) {
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -0400847 case TEP_EVENT_ITEM ... TEP_EVENT_SQUOTE:
Steven Rostedtf7d82352012-04-06 00:47:53 +0200848 return 1;
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -0400849 case TEP_EVENT_ERROR ... TEP_EVENT_DELIM:
Steven Rostedtf7d82352012-04-06 00:47:53 +0200850 default:
851 return 0;
852 }
853}
854
Tzvetomir Stoyanov (VMware)5647f942018-09-19 14:56:49 -0400855static void free_flag_sym(struct tep_print_flag_sym *fsym)
Steven Rostedtf7d82352012-04-06 00:47:53 +0200856{
Tzvetomir Stoyanov (VMware)5647f942018-09-19 14:56:49 -0400857 struct tep_print_flag_sym *next;
Steven Rostedtf7d82352012-04-06 00:47:53 +0200858
859 while (fsym) {
860 next = fsym->next;
861 free(fsym->value);
862 free(fsym->str);
863 free(fsym);
864 fsym = next;
865 }
866}
867
Tzvetomir Stoyanov (VMware)5647f942018-09-19 14:56:49 -0400868static void free_arg(struct tep_print_arg *arg)
Steven Rostedtf7d82352012-04-06 00:47:53 +0200869{
Tzvetomir Stoyanov (VMware)5647f942018-09-19 14:56:49 -0400870 struct tep_print_arg *farg;
Steven Rostedtf7d82352012-04-06 00:47:53 +0200871
872 if (!arg)
873 return;
874
875 switch (arg->type) {
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -0400876 case TEP_PRINT_ATOM:
Steven Rostedtf7d82352012-04-06 00:47:53 +0200877 free(arg->atom.atom);
878 break;
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -0400879 case TEP_PRINT_FIELD:
Steven Rostedtf7d82352012-04-06 00:47:53 +0200880 free(arg->field.name);
881 break;
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -0400882 case TEP_PRINT_FLAGS:
Steven Rostedtf7d82352012-04-06 00:47:53 +0200883 free_arg(arg->flags.field);
884 free(arg->flags.delim);
885 free_flag_sym(arg->flags.flags);
886 break;
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -0400887 case TEP_PRINT_SYMBOL:
Steven Rostedtf7d82352012-04-06 00:47:53 +0200888 free_arg(arg->symbol.field);
889 free_flag_sym(arg->symbol.symbols);
890 break;
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -0400891 case TEP_PRINT_HEX:
892 case TEP_PRINT_HEX_STR:
Namhyung Kime080e6f2012-06-27 09:41:41 +0900893 free_arg(arg->hex.field);
894 free_arg(arg->hex.size);
895 break;
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -0400896 case TEP_PRINT_INT_ARRAY:
Javi Merinob839e1e82015-03-24 11:07:19 +0000897 free_arg(arg->int_array.field);
898 free_arg(arg->int_array.count);
899 free_arg(arg->int_array.el_size);
900 break;
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -0400901 case TEP_PRINT_TYPE:
Steven Rostedtf7d82352012-04-06 00:47:53 +0200902 free(arg->typecast.type);
903 free_arg(arg->typecast.item);
904 break;
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -0400905 case TEP_PRINT_STRING:
906 case TEP_PRINT_BSTRING:
Steven Rostedtf7d82352012-04-06 00:47:53 +0200907 free(arg->string.string);
908 break;
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -0400909 case TEP_PRINT_BITMASK:
Steven Rostedt (Red Hat)473a7782014-06-02 23:20:16 -0400910 free(arg->bitmask.bitmask);
911 break;
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -0400912 case TEP_PRINT_DYNAMIC_ARRAY:
913 case TEP_PRINT_DYNAMIC_ARRAY_LEN:
Steven Rostedtf7d82352012-04-06 00:47:53 +0200914 free(arg->dynarray.index);
915 break;
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -0400916 case TEP_PRINT_OP:
Steven Rostedtf7d82352012-04-06 00:47:53 +0200917 free(arg->op.op);
918 free_arg(arg->op.left);
919 free_arg(arg->op.right);
920 break;
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -0400921 case TEP_PRINT_FUNC:
Steven Rostedtf7d82352012-04-06 00:47:53 +0200922 while (arg->func.args) {
923 farg = arg->func.args;
924 arg->func.args = farg->next;
925 free_arg(farg);
926 }
927 break;
928
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -0400929 case TEP_PRINT_NULL:
Steven Rostedtf7d82352012-04-06 00:47:53 +0200930 default:
931 break;
932 }
933
934 free(arg);
935}
936
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -0400937static enum tep_event_type get_type(int ch)
Steven Rostedtf7d82352012-04-06 00:47:53 +0200938{
939 if (ch == '\n')
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -0400940 return TEP_EVENT_NEWLINE;
Steven Rostedtf7d82352012-04-06 00:47:53 +0200941 if (isspace(ch))
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -0400942 return TEP_EVENT_SPACE;
Steven Rostedtf7d82352012-04-06 00:47:53 +0200943 if (isalnum(ch) || ch == '_')
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -0400944 return TEP_EVENT_ITEM;
Steven Rostedtf7d82352012-04-06 00:47:53 +0200945 if (ch == '\'')
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -0400946 return TEP_EVENT_SQUOTE;
Steven Rostedtf7d82352012-04-06 00:47:53 +0200947 if (ch == '"')
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -0400948 return TEP_EVENT_DQUOTE;
Steven Rostedtf7d82352012-04-06 00:47:53 +0200949 if (!isprint(ch))
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -0400950 return TEP_EVENT_NONE;
Steven Rostedtf7d82352012-04-06 00:47:53 +0200951 if (ch == '(' || ch == ')' || ch == ',')
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -0400952 return TEP_EVENT_DELIM;
Steven Rostedtf7d82352012-04-06 00:47:53 +0200953
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -0400954 return TEP_EVENT_OP;
Steven Rostedtf7d82352012-04-06 00:47:53 +0200955}
956
957static int __read_char(void)
958{
959 if (input_buf_ptr >= input_buf_siz)
960 return -1;
961
962 return input_buf[input_buf_ptr++];
963}
964
965static int __peek_char(void)
966{
967 if (input_buf_ptr >= input_buf_siz)
968 return -1;
969
970 return input_buf[input_buf_ptr];
971}
972
973/**
Tzvetomir Stoyanov (VMware)1634e462018-08-08 14:03:07 -0400974 * tep_peek_char - peek at the next character that will be read
Steven Rostedtf7d82352012-04-06 00:47:53 +0200975 *
976 * Returns the next character read, or -1 if end of buffer.
977 */
Tzvetomir Stoyanov (VMware)1634e462018-08-08 14:03:07 -0400978int tep_peek_char(void)
Steven Rostedtf7d82352012-04-06 00:47:53 +0200979{
980 return __peek_char();
981}
982
Namhyung Kimdeba3fb2012-04-09 11:54:30 +0900983static int extend_token(char **tok, char *buf, int size)
984{
985 char *newtok = realloc(*tok, size);
986
987 if (!newtok) {
988 free(*tok);
989 *tok = NULL;
990 return -1;
991 }
992
993 if (!*tok)
994 strcpy(newtok, buf);
995 else
996 strcat(newtok, buf);
997 *tok = newtok;
998
999 return 0;
1000}
1001
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001002static enum tep_event_type force_token(const char *str, char **tok);
Steven Rostedtf7d82352012-04-06 00:47:53 +02001003
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001004static enum tep_event_type __read_token(char **tok)
Steven Rostedtf7d82352012-04-06 00:47:53 +02001005{
1006 char buf[BUFSIZ];
1007 int ch, last_ch, quote_ch, next_ch;
1008 int i = 0;
1009 int tok_size = 0;
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001010 enum tep_event_type type;
Steven Rostedtf7d82352012-04-06 00:47:53 +02001011
1012 *tok = NULL;
1013
1014
1015 ch = __read_char();
1016 if (ch < 0)
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001017 return TEP_EVENT_NONE;
Steven Rostedtf7d82352012-04-06 00:47:53 +02001018
1019 type = get_type(ch);
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001020 if (type == TEP_EVENT_NONE)
Steven Rostedtf7d82352012-04-06 00:47:53 +02001021 return type;
1022
1023 buf[i++] = ch;
1024
1025 switch (type) {
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001026 case TEP_EVENT_NEWLINE:
1027 case TEP_EVENT_DELIM:
Arnaldo Carvalho de Melo0dbca1e2012-09-12 15:39:59 -03001028 if (asprintf(tok, "%c", ch) < 0)
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001029 return TEP_EVENT_ERROR;
Arnaldo Carvalho de Melo0dbca1e2012-09-12 15:39:59 -03001030
Steven Rostedtf7d82352012-04-06 00:47:53 +02001031 return type;
1032
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001033 case TEP_EVENT_OP:
Steven Rostedtf7d82352012-04-06 00:47:53 +02001034 switch (ch) {
1035 case '-':
1036 next_ch = __peek_char();
1037 if (next_ch == '>') {
1038 buf[i++] = __read_char();
1039 break;
1040 }
1041 /* fall through */
1042 case '+':
1043 case '|':
1044 case '&':
1045 case '>':
1046 case '<':
1047 last_ch = ch;
1048 ch = __peek_char();
1049 if (ch != last_ch)
1050 goto test_equal;
1051 buf[i++] = __read_char();
1052 switch (last_ch) {
1053 case '>':
1054 case '<':
1055 goto test_equal;
1056 default:
1057 break;
1058 }
1059 break;
1060 case '!':
1061 case '=':
1062 goto test_equal;
1063 default: /* what should we do instead? */
1064 break;
1065 }
1066 buf[i] = 0;
1067 *tok = strdup(buf);
1068 return type;
1069
1070 test_equal:
1071 ch = __peek_char();
1072 if (ch == '=')
1073 buf[i++] = __read_char();
1074 goto out;
1075
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001076 case TEP_EVENT_DQUOTE:
1077 case TEP_EVENT_SQUOTE:
Steven Rostedtf7d82352012-04-06 00:47:53 +02001078 /* don't keep quotes */
1079 i--;
1080 quote_ch = ch;
1081 last_ch = 0;
1082 concat:
1083 do {
1084 if (i == (BUFSIZ - 1)) {
1085 buf[i] = 0;
Steven Rostedtf7d82352012-04-06 00:47:53 +02001086 tok_size += BUFSIZ;
Namhyung Kimdeba3fb2012-04-09 11:54:30 +09001087
1088 if (extend_token(tok, buf, tok_size) < 0)
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001089 return TEP_EVENT_NONE;
Steven Rostedtf7d82352012-04-06 00:47:53 +02001090 i = 0;
1091 }
1092 last_ch = ch;
1093 ch = __read_char();
1094 buf[i++] = ch;
1095 /* the '\' '\' will cancel itself */
1096 if (ch == '\\' && last_ch == '\\')
1097 last_ch = 0;
1098 } while (ch != quote_ch || last_ch == '\\');
1099 /* remove the last quote */
1100 i--;
1101
1102 /*
1103 * For strings (double quotes) check the next token.
1104 * If it is another string, concatinate the two.
1105 */
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001106 if (type == TEP_EVENT_DQUOTE) {
Steven Rostedtf7d82352012-04-06 00:47:53 +02001107 unsigned long long save_input_buf_ptr = input_buf_ptr;
1108
1109 do {
1110 ch = __read_char();
1111 } while (isspace(ch));
1112 if (ch == '"')
1113 goto concat;
1114 input_buf_ptr = save_input_buf_ptr;
1115 }
1116
1117 goto out;
1118
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001119 case TEP_EVENT_ERROR ... TEP_EVENT_SPACE:
1120 case TEP_EVENT_ITEM:
Steven Rostedtf7d82352012-04-06 00:47:53 +02001121 default:
1122 break;
1123 }
1124
1125 while (get_type(__peek_char()) == type) {
1126 if (i == (BUFSIZ - 1)) {
1127 buf[i] = 0;
Steven Rostedtf7d82352012-04-06 00:47:53 +02001128 tok_size += BUFSIZ;
Namhyung Kimdeba3fb2012-04-09 11:54:30 +09001129
1130 if (extend_token(tok, buf, tok_size) < 0)
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001131 return TEP_EVENT_NONE;
Steven Rostedtf7d82352012-04-06 00:47:53 +02001132 i = 0;
1133 }
1134 ch = __read_char();
1135 buf[i++] = ch;
1136 }
1137
1138 out:
1139 buf[i] = 0;
Namhyung Kimdeba3fb2012-04-09 11:54:30 +09001140 if (extend_token(tok, buf, tok_size + i + 1) < 0)
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001141 return TEP_EVENT_NONE;
Steven Rostedtf7d82352012-04-06 00:47:53 +02001142
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001143 if (type == TEP_EVENT_ITEM) {
Steven Rostedtf7d82352012-04-06 00:47:53 +02001144 /*
1145 * Older versions of the kernel has a bug that
1146 * creates invalid symbols and will break the mac80211
1147 * parsing. This is a work around to that bug.
1148 *
1149 * See Linux kernel commit:
1150 * 811cb50baf63461ce0bdb234927046131fc7fa8b
1151 */
1152 if (strcmp(*tok, "LOCAL_PR_FMT") == 0) {
1153 free(*tok);
1154 *tok = NULL;
Michael Sartain952a99c2018-01-11 19:47:42 -05001155 return force_token("\"%s\" ", tok);
Steven Rostedtf7d82352012-04-06 00:47:53 +02001156 } else if (strcmp(*tok, "STA_PR_FMT") == 0) {
1157 free(*tok);
1158 *tok = NULL;
1159 return force_token("\" sta:%pM\" ", tok);
1160 } else if (strcmp(*tok, "VIF_PR_FMT") == 0) {
1161 free(*tok);
1162 *tok = NULL;
1163 return force_token("\" vif:%p(%d)\" ", tok);
1164 }
1165 }
1166
1167 return type;
1168}
1169
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001170static enum tep_event_type force_token(const char *str, char **tok)
Steven Rostedtf7d82352012-04-06 00:47:53 +02001171{
1172 const char *save_input_buf;
1173 unsigned long long save_input_buf_ptr;
1174 unsigned long long save_input_buf_siz;
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001175 enum tep_event_type type;
Steven Rostedtf7d82352012-04-06 00:47:53 +02001176
1177 /* save off the current input pointers */
1178 save_input_buf = input_buf;
1179 save_input_buf_ptr = input_buf_ptr;
1180 save_input_buf_siz = input_buf_siz;
1181
1182 init_input_buf(str, strlen(str));
1183
1184 type = __read_token(tok);
1185
1186 /* reset back to original token */
1187 input_buf = save_input_buf;
1188 input_buf_ptr = save_input_buf_ptr;
1189 input_buf_siz = save_input_buf_siz;
1190
1191 return type;
1192}
1193
1194static void free_token(char *tok)
1195{
1196 if (tok)
1197 free(tok);
1198}
1199
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001200static enum tep_event_type read_token(char **tok)
Steven Rostedtf7d82352012-04-06 00:47:53 +02001201{
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001202 enum tep_event_type type;
Steven Rostedtf7d82352012-04-06 00:47:53 +02001203
1204 for (;;) {
1205 type = __read_token(tok);
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001206 if (type != TEP_EVENT_SPACE)
Steven Rostedtf7d82352012-04-06 00:47:53 +02001207 return type;
1208
1209 free_token(*tok);
1210 }
1211
1212 /* not reached */
1213 *tok = NULL;
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001214 return TEP_EVENT_NONE;
Steven Rostedtf7d82352012-04-06 00:47:53 +02001215}
1216
1217/**
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04001218 * tep_read_token - access to utilities to use the tep parser
Steven Rostedtf7d82352012-04-06 00:47:53 +02001219 * @tok: The token to return
1220 *
1221 * This will parse tokens from the string given by
Tzvetomir Stoyanov (VMware)0ae98632018-08-08 14:03:09 -04001222 * tep_init_data().
Steven Rostedtf7d82352012-04-06 00:47:53 +02001223 *
1224 * Returns the token type.
1225 */
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001226enum tep_event_type tep_read_token(char **tok)
Steven Rostedtf7d82352012-04-06 00:47:53 +02001227{
1228 return read_token(tok);
1229}
1230
1231/**
Tzvetomir Stoyanov (VMware)1634e462018-08-08 14:03:07 -04001232 * tep_free_token - free a token returned by tep_read_token
Steven Rostedtf7d82352012-04-06 00:47:53 +02001233 * @token: the token to free
1234 */
Tzvetomir Stoyanov (VMware)1634e462018-08-08 14:03:07 -04001235void tep_free_token(char *token)
Steven Rostedtf7d82352012-04-06 00:47:53 +02001236{
1237 free_token(token);
1238}
1239
1240/* no newline */
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001241static enum tep_event_type read_token_item(char **tok)
Steven Rostedtf7d82352012-04-06 00:47:53 +02001242{
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001243 enum tep_event_type type;
Steven Rostedtf7d82352012-04-06 00:47:53 +02001244
1245 for (;;) {
1246 type = __read_token(tok);
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001247 if (type != TEP_EVENT_SPACE && type != TEP_EVENT_NEWLINE)
Steven Rostedtf7d82352012-04-06 00:47:53 +02001248 return type;
1249 free_token(*tok);
1250 *tok = NULL;
1251 }
1252
1253 /* not reached */
1254 *tok = NULL;
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001255 return TEP_EVENT_NONE;
Steven Rostedtf7d82352012-04-06 00:47:53 +02001256}
1257
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001258static int test_type(enum tep_event_type type, enum tep_event_type expect)
Steven Rostedtf7d82352012-04-06 00:47:53 +02001259{
1260 if (type != expect) {
1261 do_warning("Error: expected type %d but read %d",
1262 expect, type);
1263 return -1;
1264 }
1265 return 0;
1266}
1267
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001268static int test_type_token(enum tep_event_type type, const char *token,
1269 enum tep_event_type expect, const char *expect_tok)
Steven Rostedtf7d82352012-04-06 00:47:53 +02001270{
1271 if (type != expect) {
1272 do_warning("Error: expected type %d but read %d",
1273 expect, type);
1274 return -1;
1275 }
1276
1277 if (strcmp(token, expect_tok) != 0) {
1278 do_warning("Error: expected '%s' but read '%s'",
1279 expect_tok, token);
1280 return -1;
1281 }
1282 return 0;
1283}
1284
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001285static int __read_expect_type(enum tep_event_type expect, char **tok, int newline_ok)
Steven Rostedtf7d82352012-04-06 00:47:53 +02001286{
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001287 enum tep_event_type type;
Steven Rostedtf7d82352012-04-06 00:47:53 +02001288
1289 if (newline_ok)
1290 type = read_token(tok);
1291 else
1292 type = read_token_item(tok);
1293 return test_type(type, expect);
1294}
1295
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001296static int read_expect_type(enum tep_event_type expect, char **tok)
Steven Rostedtf7d82352012-04-06 00:47:53 +02001297{
1298 return __read_expect_type(expect, tok, 1);
1299}
1300
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001301static int __read_expected(enum tep_event_type expect, const char *str,
Steven Rostedtf7d82352012-04-06 00:47:53 +02001302 int newline_ok)
1303{
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001304 enum tep_event_type type;
Steven Rostedtf7d82352012-04-06 00:47:53 +02001305 char *token;
1306 int ret;
1307
1308 if (newline_ok)
1309 type = read_token(&token);
1310 else
1311 type = read_token_item(&token);
1312
1313 ret = test_type_token(type, token, expect, str);
1314
1315 free_token(token);
1316
1317 return ret;
1318}
1319
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001320static int read_expected(enum tep_event_type expect, const char *str)
Steven Rostedtf7d82352012-04-06 00:47:53 +02001321{
1322 return __read_expected(expect, str, 1);
1323}
1324
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001325static int read_expected_item(enum tep_event_type expect, const char *str)
Steven Rostedtf7d82352012-04-06 00:47:53 +02001326{
1327 return __read_expected(expect, str, 0);
1328}
1329
1330static char *event_read_name(void)
1331{
1332 char *token;
1333
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001334 if (read_expected(TEP_EVENT_ITEM, "name") < 0)
Steven Rostedtf7d82352012-04-06 00:47:53 +02001335 return NULL;
1336
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001337 if (read_expected(TEP_EVENT_OP, ":") < 0)
Steven Rostedtf7d82352012-04-06 00:47:53 +02001338 return NULL;
1339
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001340 if (read_expect_type(TEP_EVENT_ITEM, &token) < 0)
Steven Rostedtf7d82352012-04-06 00:47:53 +02001341 goto fail;
1342
1343 return token;
1344
1345 fail:
1346 free_token(token);
1347 return NULL;
1348}
1349
1350static int event_read_id(void)
1351{
1352 char *token;
1353 int id;
1354
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001355 if (read_expected_item(TEP_EVENT_ITEM, "ID") < 0)
Steven Rostedtf7d82352012-04-06 00:47:53 +02001356 return -1;
1357
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001358 if (read_expected(TEP_EVENT_OP, ":") < 0)
Steven Rostedtf7d82352012-04-06 00:47:53 +02001359 return -1;
1360
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001361 if (read_expect_type(TEP_EVENT_ITEM, &token) < 0)
Steven Rostedtf7d82352012-04-06 00:47:53 +02001362 goto fail;
1363
1364 id = strtoul(token, NULL, 0);
1365 free_token(token);
1366 return id;
1367
1368 fail:
1369 free_token(token);
1370 return -1;
1371}
1372
Tzvetomir Stoyanov (VMware)2c92f982018-09-19 14:56:45 -04001373static int field_is_string(struct tep_format_field *field)
Steven Rostedtf7d82352012-04-06 00:47:53 +02001374{
Tzvetomir Stoyanov (VMware)bb39ccb2018-09-19 14:56:46 -04001375 if ((field->flags & TEP_FIELD_IS_ARRAY) &&
Steven Rostedtf7d82352012-04-06 00:47:53 +02001376 (strstr(field->type, "char") || strstr(field->type, "u8") ||
1377 strstr(field->type, "s8")))
1378 return 1;
1379
1380 return 0;
1381}
1382
Tzvetomir Stoyanov (VMware)2c92f982018-09-19 14:56:45 -04001383static int field_is_dynamic(struct tep_format_field *field)
Steven Rostedtf7d82352012-04-06 00:47:53 +02001384{
1385 if (strncmp(field->type, "__data_loc", 10) == 0)
1386 return 1;
1387
1388 return 0;
1389}
1390
Tzvetomir Stoyanov (VMware)2c92f982018-09-19 14:56:45 -04001391static int field_is_long(struct tep_format_field *field)
Steven Rostedtf7d82352012-04-06 00:47:53 +02001392{
1393 /* includes long long */
1394 if (strstr(field->type, "long"))
1395 return 1;
1396
1397 return 0;
1398}
1399
Jiri Olsae23c1a52013-01-24 21:46:43 +01001400static unsigned int type_size(const char *name)
1401{
Tzvetomir Stoyanov (VMware)bb39ccb2018-09-19 14:56:46 -04001402 /* This covers all TEP_FIELD_IS_STRING types. */
Jiri Olsae23c1a52013-01-24 21:46:43 +01001403 static struct {
1404 const char *type;
1405 unsigned int size;
1406 } table[] = {
1407 { "u8", 1 },
1408 { "u16", 2 },
1409 { "u32", 4 },
1410 { "u64", 8 },
1411 { "s8", 1 },
1412 { "s16", 2 },
1413 { "s32", 4 },
1414 { "s64", 8 },
1415 { "char", 1 },
1416 { },
1417 };
1418 int i;
1419
1420 for (i = 0; table[i].type; i++) {
1421 if (!strcmp(table[i].type, name))
1422 return table[i].size;
1423 }
1424
1425 return 0;
1426}
1427
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05001428static int event_read_fields(struct tep_event *event, struct tep_format_field **fields)
Steven Rostedtf7d82352012-04-06 00:47:53 +02001429{
Tzvetomir Stoyanov (VMware)2c92f982018-09-19 14:56:45 -04001430 struct tep_format_field *field = NULL;
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001431 enum tep_event_type type;
Steven Rostedtf7d82352012-04-06 00:47:53 +02001432 char *token;
1433 char *last_token;
1434 int count = 0;
1435
1436 do {
Jiri Olsae23c1a52013-01-24 21:46:43 +01001437 unsigned int size_dynamic = 0;
1438
Steven Rostedtf7d82352012-04-06 00:47:53 +02001439 type = read_token(&token);
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001440 if (type == TEP_EVENT_NEWLINE) {
Steven Rostedtf7d82352012-04-06 00:47:53 +02001441 free_token(token);
1442 return count;
1443 }
1444
1445 count++;
1446
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001447 if (test_type_token(type, token, TEP_EVENT_ITEM, "field"))
Steven Rostedtf7d82352012-04-06 00:47:53 +02001448 goto fail;
1449 free_token(token);
1450
1451 type = read_token(&token);
1452 /*
1453 * The ftrace fields may still use the "special" name.
1454 * Just ignore it.
1455 */
Tzvetomir Stoyanov (VMware)c1953bc2018-09-19 14:56:48 -04001456 if (event->flags & TEP_EVENT_FL_ISFTRACE &&
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001457 type == TEP_EVENT_ITEM && strcmp(token, "special") == 0) {
Steven Rostedtf7d82352012-04-06 00:47:53 +02001458 free_token(token);
1459 type = read_token(&token);
1460 }
1461
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001462 if (test_type_token(type, token, TEP_EVENT_OP, ":") < 0)
Steven Rostedtf7d82352012-04-06 00:47:53 +02001463 goto fail;
1464
1465 free_token(token);
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001466 if (read_expect_type(TEP_EVENT_ITEM, &token) < 0)
Steven Rostedtf7d82352012-04-06 00:47:53 +02001467 goto fail;
1468
1469 last_token = token;
1470
Arnaldo Carvalho de Melo87162d82012-09-12 15:39:59 -03001471 field = calloc(1, sizeof(*field));
1472 if (!field)
1473 goto fail;
1474
Steven Rostedtf7d82352012-04-06 00:47:53 +02001475 field->event = event;
1476
1477 /* read the rest of the type */
1478 for (;;) {
1479 type = read_token(&token);
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001480 if (type == TEP_EVENT_ITEM ||
1481 (type == TEP_EVENT_OP && strcmp(token, "*") == 0) ||
Steven Rostedtf7d82352012-04-06 00:47:53 +02001482 /*
1483 * Some of the ftrace fields are broken and have
1484 * an illegal "." in them.
1485 */
Tzvetomir Stoyanov (VMware)c1953bc2018-09-19 14:56:48 -04001486 (event->flags & TEP_EVENT_FL_ISFTRACE &&
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001487 type == TEP_EVENT_OP && strcmp(token, ".") == 0)) {
Steven Rostedtf7d82352012-04-06 00:47:53 +02001488
1489 if (strcmp(token, "*") == 0)
Tzvetomir Stoyanov (VMware)bb39ccb2018-09-19 14:56:46 -04001490 field->flags |= TEP_FIELD_IS_POINTER;
Steven Rostedtf7d82352012-04-06 00:47:53 +02001491
1492 if (field->type) {
Namhyung Kimd2864472012-04-09 11:54:33 +09001493 char *new_type;
1494 new_type = realloc(field->type,
1495 strlen(field->type) +
1496 strlen(last_token) + 2);
1497 if (!new_type) {
1498 free(last_token);
1499 goto fail;
1500 }
1501 field->type = new_type;
Steven Rostedtf7d82352012-04-06 00:47:53 +02001502 strcat(field->type, " ");
1503 strcat(field->type, last_token);
1504 free(last_token);
1505 } else
1506 field->type = last_token;
1507 last_token = token;
1508 continue;
1509 }
1510
1511 break;
1512 }
1513
1514 if (!field->type) {
Namhyung Kim3388cc32014-03-19 10:22:53 +09001515 do_warning_event(event, "%s: no type found", __func__);
Steven Rostedtf7d82352012-04-06 00:47:53 +02001516 goto fail;
1517 }
Jiri Olsad3542432015-04-18 17:50:18 +02001518 field->name = field->alias = last_token;
Steven Rostedtf7d82352012-04-06 00:47:53 +02001519
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001520 if (test_type(type, TEP_EVENT_OP))
Steven Rostedtf7d82352012-04-06 00:47:53 +02001521 goto fail;
1522
1523 if (strcmp(token, "[") == 0) {
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001524 enum tep_event_type last_type = type;
Steven Rostedtf7d82352012-04-06 00:47:53 +02001525 char *brackets = token;
Namhyung Kimd2864472012-04-09 11:54:33 +09001526 char *new_brackets;
Steven Rostedtf7d82352012-04-06 00:47:53 +02001527 int len;
1528
Tzvetomir Stoyanov (VMware)bb39ccb2018-09-19 14:56:46 -04001529 field->flags |= TEP_FIELD_IS_ARRAY;
Steven Rostedtf7d82352012-04-06 00:47:53 +02001530
1531 type = read_token(&token);
1532
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001533 if (type == TEP_EVENT_ITEM)
Steven Rostedtf7d82352012-04-06 00:47:53 +02001534 field->arraylen = strtoul(token, NULL, 0);
1535 else
1536 field->arraylen = 0;
1537
1538 while (strcmp(token, "]") != 0) {
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001539 if (last_type == TEP_EVENT_ITEM &&
1540 type == TEP_EVENT_ITEM)
Steven Rostedtf7d82352012-04-06 00:47:53 +02001541 len = 2;
1542 else
1543 len = 1;
1544 last_type = type;
1545
Namhyung Kimd2864472012-04-09 11:54:33 +09001546 new_brackets = realloc(brackets,
1547 strlen(brackets) +
1548 strlen(token) + len);
1549 if (!new_brackets) {
1550 free(brackets);
1551 goto fail;
1552 }
1553 brackets = new_brackets;
Steven Rostedtf7d82352012-04-06 00:47:53 +02001554 if (len == 2)
1555 strcat(brackets, " ");
1556 strcat(brackets, token);
1557 /* We only care about the last token */
1558 field->arraylen = strtoul(token, NULL, 0);
1559 free_token(token);
1560 type = read_token(&token);
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001561 if (type == TEP_EVENT_NONE) {
Namhyung Kim3388cc32014-03-19 10:22:53 +09001562 do_warning_event(event, "failed to find token");
Steven Rostedtf7d82352012-04-06 00:47:53 +02001563 goto fail;
1564 }
1565 }
1566
1567 free_token(token);
1568
Namhyung Kimd2864472012-04-09 11:54:33 +09001569 new_brackets = realloc(brackets, strlen(brackets) + 2);
1570 if (!new_brackets) {
1571 free(brackets);
1572 goto fail;
1573 }
1574 brackets = new_brackets;
Steven Rostedtf7d82352012-04-06 00:47:53 +02001575 strcat(brackets, "]");
1576
1577 /* add brackets to type */
1578
1579 type = read_token(&token);
1580 /*
1581 * If the next token is not an OP, then it is of
1582 * the format: type [] item;
1583 */
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001584 if (type == TEP_EVENT_ITEM) {
Namhyung Kimd2864472012-04-09 11:54:33 +09001585 char *new_type;
1586 new_type = realloc(field->type,
1587 strlen(field->type) +
1588 strlen(field->name) +
1589 strlen(brackets) + 2);
1590 if (!new_type) {
1591 free(brackets);
1592 goto fail;
1593 }
1594 field->type = new_type;
Steven Rostedtf7d82352012-04-06 00:47:53 +02001595 strcat(field->type, " ");
1596 strcat(field->type, field->name);
Jiri Olsae23c1a52013-01-24 21:46:43 +01001597 size_dynamic = type_size(field->name);
Steven Rostedtf7d82352012-04-06 00:47:53 +02001598 free_token(field->name);
1599 strcat(field->type, brackets);
Jiri Olsad3542432015-04-18 17:50:18 +02001600 field->name = field->alias = token;
Steven Rostedtf7d82352012-04-06 00:47:53 +02001601 type = read_token(&token);
1602 } else {
Namhyung Kimd2864472012-04-09 11:54:33 +09001603 char *new_type;
1604 new_type = realloc(field->type,
1605 strlen(field->type) +
1606 strlen(brackets) + 1);
1607 if (!new_type) {
1608 free(brackets);
1609 goto fail;
1610 }
1611 field->type = new_type;
Steven Rostedtf7d82352012-04-06 00:47:53 +02001612 strcat(field->type, brackets);
1613 }
1614 free(brackets);
1615 }
1616
1617 if (field_is_string(field))
Tzvetomir Stoyanov (VMware)bb39ccb2018-09-19 14:56:46 -04001618 field->flags |= TEP_FIELD_IS_STRING;
Steven Rostedtf7d82352012-04-06 00:47:53 +02001619 if (field_is_dynamic(field))
Tzvetomir Stoyanov (VMware)bb39ccb2018-09-19 14:56:46 -04001620 field->flags |= TEP_FIELD_IS_DYNAMIC;
Steven Rostedtf7d82352012-04-06 00:47:53 +02001621 if (field_is_long(field))
Tzvetomir Stoyanov (VMware)bb39ccb2018-09-19 14:56:46 -04001622 field->flags |= TEP_FIELD_IS_LONG;
Steven Rostedtf7d82352012-04-06 00:47:53 +02001623
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001624 if (test_type_token(type, token, TEP_EVENT_OP, ";"))
Steven Rostedtf7d82352012-04-06 00:47:53 +02001625 goto fail;
1626 free_token(token);
1627
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001628 if (read_expected(TEP_EVENT_ITEM, "offset") < 0)
Steven Rostedtf7d82352012-04-06 00:47:53 +02001629 goto fail_expect;
1630
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001631 if (read_expected(TEP_EVENT_OP, ":") < 0)
Steven Rostedtf7d82352012-04-06 00:47:53 +02001632 goto fail_expect;
1633
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001634 if (read_expect_type(TEP_EVENT_ITEM, &token))
Steven Rostedtf7d82352012-04-06 00:47:53 +02001635 goto fail;
1636 field->offset = strtoul(token, NULL, 0);
1637 free_token(token);
1638
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001639 if (read_expected(TEP_EVENT_OP, ";") < 0)
Steven Rostedtf7d82352012-04-06 00:47:53 +02001640 goto fail_expect;
1641
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001642 if (read_expected(TEP_EVENT_ITEM, "size") < 0)
Steven Rostedtf7d82352012-04-06 00:47:53 +02001643 goto fail_expect;
1644
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001645 if (read_expected(TEP_EVENT_OP, ":") < 0)
Steven Rostedtf7d82352012-04-06 00:47:53 +02001646 goto fail_expect;
1647
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001648 if (read_expect_type(TEP_EVENT_ITEM, &token))
Steven Rostedtf7d82352012-04-06 00:47:53 +02001649 goto fail;
1650 field->size = strtoul(token, NULL, 0);
1651 free_token(token);
1652
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001653 if (read_expected(TEP_EVENT_OP, ";") < 0)
Steven Rostedtf7d82352012-04-06 00:47:53 +02001654 goto fail_expect;
1655
1656 type = read_token(&token);
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001657 if (type != TEP_EVENT_NEWLINE) {
Steven Rostedtf7d82352012-04-06 00:47:53 +02001658 /* newer versions of the kernel have a "signed" type */
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001659 if (test_type_token(type, token, TEP_EVENT_ITEM, "signed"))
Steven Rostedtf7d82352012-04-06 00:47:53 +02001660 goto fail;
1661
1662 free_token(token);
1663
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001664 if (read_expected(TEP_EVENT_OP, ":") < 0)
Steven Rostedtf7d82352012-04-06 00:47:53 +02001665 goto fail_expect;
1666
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001667 if (read_expect_type(TEP_EVENT_ITEM, &token))
Steven Rostedtf7d82352012-04-06 00:47:53 +02001668 goto fail;
1669
Tom Zanussi10ee9fa2013-01-18 13:51:25 -06001670 if (strtoul(token, NULL, 0))
Tzvetomir Stoyanov (VMware)bb39ccb2018-09-19 14:56:46 -04001671 field->flags |= TEP_FIELD_IS_SIGNED;
Steven Rostedtf7d82352012-04-06 00:47:53 +02001672
1673 free_token(token);
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001674 if (read_expected(TEP_EVENT_OP, ";") < 0)
Steven Rostedtf7d82352012-04-06 00:47:53 +02001675 goto fail_expect;
1676
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001677 if (read_expect_type(TEP_EVENT_NEWLINE, &token))
Steven Rostedtf7d82352012-04-06 00:47:53 +02001678 goto fail;
1679 }
1680
1681 free_token(token);
1682
Tzvetomir Stoyanov (VMware)bb39ccb2018-09-19 14:56:46 -04001683 if (field->flags & TEP_FIELD_IS_ARRAY) {
Steven Rostedtf7d82352012-04-06 00:47:53 +02001684 if (field->arraylen)
1685 field->elementsize = field->size / field->arraylen;
Tzvetomir Stoyanov (VMware)bb39ccb2018-09-19 14:56:46 -04001686 else if (field->flags & TEP_FIELD_IS_DYNAMIC)
Jiri Olsae23c1a52013-01-24 21:46:43 +01001687 field->elementsize = size_dynamic;
Tzvetomir Stoyanov (VMware)bb39ccb2018-09-19 14:56:46 -04001688 else if (field->flags & TEP_FIELD_IS_STRING)
Steven Rostedtf7d82352012-04-06 00:47:53 +02001689 field->elementsize = 1;
Tzvetomir Stoyanov (VMware)bb39ccb2018-09-19 14:56:46 -04001690 else if (field->flags & TEP_FIELD_IS_LONG)
Tzvetomir Stoyanov69769ce2019-04-01 12:43:18 -04001691 field->elementsize = event->tep ?
1692 event->tep->long_size :
Jiri Olsae23c1a52013-01-24 21:46:43 +01001693 sizeof(long);
Steven Rostedtf7d82352012-04-06 00:47:53 +02001694 } else
1695 field->elementsize = field->size;
1696
1697 *fields = field;
1698 fields = &field->next;
1699
1700 } while (1);
1701
1702 return 0;
1703
1704fail:
1705 free_token(token);
1706fail_expect:
Namhyung Kim57d34dc2012-05-23 11:36:47 +09001707 if (field) {
1708 free(field->type);
1709 free(field->name);
Steven Rostedtf7d82352012-04-06 00:47:53 +02001710 free(field);
Namhyung Kim57d34dc2012-05-23 11:36:47 +09001711 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02001712 return -1;
1713}
1714
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05001715static int event_read_format(struct tep_event *event)
Steven Rostedtf7d82352012-04-06 00:47:53 +02001716{
1717 char *token;
1718 int ret;
1719
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001720 if (read_expected_item(TEP_EVENT_ITEM, "format") < 0)
Steven Rostedtf7d82352012-04-06 00:47:53 +02001721 return -1;
1722
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001723 if (read_expected(TEP_EVENT_OP, ":") < 0)
Steven Rostedtf7d82352012-04-06 00:47:53 +02001724 return -1;
1725
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001726 if (read_expect_type(TEP_EVENT_NEWLINE, &token))
Steven Rostedtf7d82352012-04-06 00:47:53 +02001727 goto fail;
1728 free_token(token);
1729
1730 ret = event_read_fields(event, &event->format.common_fields);
1731 if (ret < 0)
1732 return ret;
1733 event->format.nr_common = ret;
1734
1735 ret = event_read_fields(event, &event->format.fields);
1736 if (ret < 0)
1737 return ret;
1738 event->format.nr_fields = ret;
1739
1740 return 0;
1741
1742 fail:
1743 free_token(token);
1744 return -1;
1745}
1746
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001747static enum tep_event_type
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05001748process_arg_token(struct tep_event *event, struct tep_print_arg *arg,
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001749 char **tok, enum tep_event_type type);
Steven Rostedtf7d82352012-04-06 00:47:53 +02001750
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001751static enum tep_event_type
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05001752process_arg(struct tep_event *event, struct tep_print_arg *arg, char **tok)
Steven Rostedtf7d82352012-04-06 00:47:53 +02001753{
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001754 enum tep_event_type type;
Steven Rostedtf7d82352012-04-06 00:47:53 +02001755 char *token;
1756
1757 type = read_token(&token);
1758 *tok = token;
1759
1760 return process_arg_token(event, arg, tok, type);
1761}
1762
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001763static enum tep_event_type
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05001764process_op(struct tep_event *event, struct tep_print_arg *arg, char **tok);
Steven Rostedtf7d82352012-04-06 00:47:53 +02001765
Steven Rostedteff2c922013-11-18 14:23:14 -05001766/*
1767 * For __print_symbolic() and __print_flags, we need to completely
1768 * evaluate the first argument, which defines what to print next.
1769 */
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001770static enum tep_event_type
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05001771process_field_arg(struct tep_event *event, struct tep_print_arg *arg, char **tok)
Steven Rostedteff2c922013-11-18 14:23:14 -05001772{
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001773 enum tep_event_type type;
Steven Rostedteff2c922013-11-18 14:23:14 -05001774
1775 type = process_arg(event, arg, tok);
1776
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001777 while (type == TEP_EVENT_OP) {
Steven Rostedteff2c922013-11-18 14:23:14 -05001778 type = process_op(event, arg, tok);
1779 }
1780
1781 return type;
1782}
1783
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001784static enum tep_event_type
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05001785process_cond(struct tep_event *event, struct tep_print_arg *top, char **tok)
Steven Rostedtf7d82352012-04-06 00:47:53 +02001786{
Tzvetomir Stoyanov (VMware)5647f942018-09-19 14:56:49 -04001787 struct tep_print_arg *arg, *left, *right;
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001788 enum tep_event_type type;
Steven Rostedtf7d82352012-04-06 00:47:53 +02001789 char *token = NULL;
1790
1791 arg = alloc_arg();
1792 left = alloc_arg();
1793 right = alloc_arg();
1794
Namhyung Kimb1ac7542012-09-20 11:09:19 +09001795 if (!arg || !left || !right) {
Namhyung Kim3388cc32014-03-19 10:22:53 +09001796 do_warning_event(event, "%s: not enough memory!", __func__);
Namhyung Kimb1ac7542012-09-20 11:09:19 +09001797 /* arg will be freed at out_free */
1798 free_arg(left);
1799 free_arg(right);
1800 goto out_free;
1801 }
1802
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04001803 arg->type = TEP_PRINT_OP;
Steven Rostedtf7d82352012-04-06 00:47:53 +02001804 arg->op.left = left;
1805 arg->op.right = right;
1806
1807 *tok = NULL;
1808 type = process_arg(event, left, &token);
1809
1810 again:
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001811 if (type == TEP_EVENT_ERROR)
Dean Nelson6f56e9c2015-08-20 11:16:32 -04001812 goto out_free;
1813
Steven Rostedtf7d82352012-04-06 00:47:53 +02001814 /* Handle other operations in the arguments */
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001815 if (type == TEP_EVENT_OP && strcmp(token, ":") != 0) {
Steven Rostedtf7d82352012-04-06 00:47:53 +02001816 type = process_op(event, left, &token);
1817 goto again;
1818 }
1819
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001820 if (test_type_token(type, token, TEP_EVENT_OP, ":"))
Steven Rostedtf7d82352012-04-06 00:47:53 +02001821 goto out_free;
1822
1823 arg->op.op = token;
1824
1825 type = process_arg(event, right, &token);
1826
1827 top->op.right = arg;
1828
1829 *tok = token;
1830 return type;
1831
1832out_free:
1833 /* Top may point to itself */
1834 top->op.right = NULL;
1835 free_token(token);
1836 free_arg(arg);
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001837 return TEP_EVENT_ERROR;
Steven Rostedtf7d82352012-04-06 00:47:53 +02001838}
1839
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001840static enum tep_event_type
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05001841process_array(struct tep_event *event, struct tep_print_arg *top, char **tok)
Steven Rostedtf7d82352012-04-06 00:47:53 +02001842{
Tzvetomir Stoyanov (VMware)5647f942018-09-19 14:56:49 -04001843 struct tep_print_arg *arg;
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001844 enum tep_event_type type;
Steven Rostedtf7d82352012-04-06 00:47:53 +02001845 char *token = NULL;
1846
1847 arg = alloc_arg();
Namhyung Kimb1ac7542012-09-20 11:09:19 +09001848 if (!arg) {
Namhyung Kim3388cc32014-03-19 10:22:53 +09001849 do_warning_event(event, "%s: not enough memory!", __func__);
Namhyung Kimb1ac7542012-09-20 11:09:19 +09001850 /* '*tok' is set to top->op.op. No need to free. */
1851 *tok = NULL;
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001852 return TEP_EVENT_ERROR;
Namhyung Kimb1ac7542012-09-20 11:09:19 +09001853 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02001854
1855 *tok = NULL;
1856 type = process_arg(event, arg, &token);
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001857 if (test_type_token(type, token, TEP_EVENT_OP, "]"))
Steven Rostedtf7d82352012-04-06 00:47:53 +02001858 goto out_free;
1859
1860 top->op.right = arg;
1861
1862 free_token(token);
1863 type = read_token_item(&token);
1864 *tok = token;
1865
1866 return type;
1867
1868out_free:
Namhyung Kim1bce6e02012-09-19 15:58:41 +09001869 free_token(token);
Steven Rostedtf7d82352012-04-06 00:47:53 +02001870 free_arg(arg);
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001871 return TEP_EVENT_ERROR;
Steven Rostedtf7d82352012-04-06 00:47:53 +02001872}
1873
1874static int get_op_prio(char *op)
1875{
1876 if (!op[1]) {
1877 switch (op[0]) {
1878 case '~':
1879 case '!':
1880 return 4;
1881 case '*':
1882 case '/':
1883 case '%':
1884 return 6;
1885 case '+':
1886 case '-':
1887 return 7;
1888 /* '>>' and '<<' are 8 */
1889 case '<':
1890 case '>':
1891 return 9;
1892 /* '==' and '!=' are 10 */
1893 case '&':
1894 return 11;
1895 case '^':
1896 return 12;
1897 case '|':
1898 return 13;
1899 case '?':
1900 return 16;
1901 default:
Vaibhav Nagarnaik14ffde02012-04-06 00:48:01 +02001902 do_warning("unknown op '%c'", op[0]);
Steven Rostedtf7d82352012-04-06 00:47:53 +02001903 return -1;
1904 }
1905 } else {
1906 if (strcmp(op, "++") == 0 ||
1907 strcmp(op, "--") == 0) {
1908 return 3;
1909 } else if (strcmp(op, ">>") == 0 ||
1910 strcmp(op, "<<") == 0) {
1911 return 8;
1912 } else if (strcmp(op, ">=") == 0 ||
1913 strcmp(op, "<=") == 0) {
1914 return 9;
1915 } else if (strcmp(op, "==") == 0 ||
1916 strcmp(op, "!=") == 0) {
1917 return 10;
1918 } else if (strcmp(op, "&&") == 0) {
1919 return 14;
1920 } else if (strcmp(op, "||") == 0) {
1921 return 15;
1922 } else {
Vaibhav Nagarnaik14ffde02012-04-06 00:48:01 +02001923 do_warning("unknown op '%s'", op);
Steven Rostedtf7d82352012-04-06 00:47:53 +02001924 return -1;
1925 }
1926 }
1927}
1928
Tzvetomir Stoyanov (VMware)5647f942018-09-19 14:56:49 -04001929static int set_op_prio(struct tep_print_arg *arg)
Steven Rostedtf7d82352012-04-06 00:47:53 +02001930{
1931
1932 /* single ops are the greatest */
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04001933 if (!arg->op.left || arg->op.left->type == TEP_PRINT_NULL)
Steven Rostedtf7d82352012-04-06 00:47:53 +02001934 arg->op.prio = 0;
Vaibhav Nagarnaik14ffde02012-04-06 00:48:01 +02001935 else
1936 arg->op.prio = get_op_prio(arg->op.op);
Steven Rostedtf7d82352012-04-06 00:47:53 +02001937
Vaibhav Nagarnaik14ffde02012-04-06 00:48:01 +02001938 return arg->op.prio;
Steven Rostedtf7d82352012-04-06 00:47:53 +02001939}
1940
1941/* Note, *tok does not get freed, but will most likely be saved */
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001942static enum tep_event_type
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05001943process_op(struct tep_event *event, struct tep_print_arg *arg, char **tok)
Steven Rostedtf7d82352012-04-06 00:47:53 +02001944{
Tzvetomir Stoyanov (VMware)5647f942018-09-19 14:56:49 -04001945 struct tep_print_arg *left, *right = NULL;
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001946 enum tep_event_type type;
Steven Rostedtf7d82352012-04-06 00:47:53 +02001947 char *token;
1948
1949 /* the op is passed in via tok */
1950 token = *tok;
1951
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04001952 if (arg->type == TEP_PRINT_OP && !arg->op.left) {
Steven Rostedtf7d82352012-04-06 00:47:53 +02001953 /* handle single op */
1954 if (token[1]) {
Namhyung Kim3388cc32014-03-19 10:22:53 +09001955 do_warning_event(event, "bad op token %s", token);
Steven Rostedtf7d82352012-04-06 00:47:53 +02001956 goto out_free;
1957 }
1958 switch (token[0]) {
1959 case '~':
1960 case '!':
1961 case '+':
1962 case '-':
1963 break;
1964 default:
Namhyung Kim3388cc32014-03-19 10:22:53 +09001965 do_warning_event(event, "bad op token %s", token);
Steven Rostedtf7d82352012-04-06 00:47:53 +02001966 goto out_free;
1967
1968 }
1969
1970 /* make an empty left */
1971 left = alloc_arg();
Namhyung Kimb1ac7542012-09-20 11:09:19 +09001972 if (!left)
1973 goto out_warn_free;
1974
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04001975 left->type = TEP_PRINT_NULL;
Steven Rostedtf7d82352012-04-06 00:47:53 +02001976 arg->op.left = left;
1977
1978 right = alloc_arg();
Namhyung Kimb1ac7542012-09-20 11:09:19 +09001979 if (!right)
1980 goto out_warn_free;
1981
Steven Rostedtf7d82352012-04-06 00:47:53 +02001982 arg->op.right = right;
1983
1984 /* do not free the token, it belongs to an op */
1985 *tok = NULL;
1986 type = process_arg(event, right, tok);
1987
1988 } else if (strcmp(token, "?") == 0) {
1989
1990 left = alloc_arg();
Namhyung Kimb1ac7542012-09-20 11:09:19 +09001991 if (!left)
1992 goto out_warn_free;
1993
Steven Rostedtf7d82352012-04-06 00:47:53 +02001994 /* copy the top arg to the left */
1995 *left = *arg;
1996
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04001997 arg->type = TEP_PRINT_OP;
Steven Rostedtf7d82352012-04-06 00:47:53 +02001998 arg->op.op = token;
1999 arg->op.left = left;
2000 arg->op.prio = 0;
2001
Namhyung Kim41e51a22012-09-19 15:58:42 +09002002 /* it will set arg->op.right */
Steven Rostedtf7d82352012-04-06 00:47:53 +02002003 type = process_cond(event, arg, tok);
2004
2005 } else if (strcmp(token, ">>") == 0 ||
2006 strcmp(token, "<<") == 0 ||
2007 strcmp(token, "&") == 0 ||
2008 strcmp(token, "|") == 0 ||
2009 strcmp(token, "&&") == 0 ||
2010 strcmp(token, "||") == 0 ||
2011 strcmp(token, "-") == 0 ||
2012 strcmp(token, "+") == 0 ||
2013 strcmp(token, "*") == 0 ||
2014 strcmp(token, "^") == 0 ||
2015 strcmp(token, "/") == 0 ||
Daniel Bristot de Oliveira0e47b382016-02-22 14:08:22 -03002016 strcmp(token, "%") == 0 ||
Steven Rostedtf7d82352012-04-06 00:47:53 +02002017 strcmp(token, "<") == 0 ||
2018 strcmp(token, ">") == 0 ||
Namhyung Kimff582682013-01-15 17:02:19 +09002019 strcmp(token, "<=") == 0 ||
2020 strcmp(token, ">=") == 0 ||
Steven Rostedtf7d82352012-04-06 00:47:53 +02002021 strcmp(token, "==") == 0 ||
2022 strcmp(token, "!=") == 0) {
2023
2024 left = alloc_arg();
Namhyung Kimb1ac7542012-09-20 11:09:19 +09002025 if (!left)
2026 goto out_warn_free;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002027
2028 /* copy the top arg to the left */
2029 *left = *arg;
2030
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04002031 arg->type = TEP_PRINT_OP;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002032 arg->op.op = token;
2033 arg->op.left = left;
Namhyung Kim41e51a22012-09-19 15:58:42 +09002034 arg->op.right = NULL;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002035
Vaibhav Nagarnaik14ffde02012-04-06 00:48:01 +02002036 if (set_op_prio(arg) == -1) {
Tzvetomir Stoyanov (VMware)c1953bc2018-09-19 14:56:48 -04002037 event->flags |= TEP_EVENT_FL_FAILED;
Namhyung Kimd1de1082012-05-23 11:36:49 +09002038 /* arg->op.op (= token) will be freed at out_free */
2039 arg->op.op = NULL;
Vaibhav Nagarnaik14ffde02012-04-06 00:48:01 +02002040 goto out_free;
2041 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02002042
2043 type = read_token_item(&token);
2044 *tok = token;
2045
2046 /* could just be a type pointer */
2047 if ((strcmp(arg->op.op, "*") == 0) &&
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002048 type == TEP_EVENT_DELIM && (strcmp(token, ")") == 0)) {
Namhyung Kimd2864472012-04-09 11:54:33 +09002049 char *new_atom;
2050
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04002051 if (left->type != TEP_PRINT_ATOM) {
Namhyung Kim3388cc32014-03-19 10:22:53 +09002052 do_warning_event(event, "bad pointer type");
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -03002053 goto out_free;
2054 }
Namhyung Kimd2864472012-04-09 11:54:33 +09002055 new_atom = realloc(left->atom.atom,
Steven Rostedtf7d82352012-04-06 00:47:53 +02002056 strlen(left->atom.atom) + 3);
Namhyung Kimd2864472012-04-09 11:54:33 +09002057 if (!new_atom)
Namhyung Kimb1ac7542012-09-20 11:09:19 +09002058 goto out_warn_free;
Namhyung Kimd2864472012-04-09 11:54:33 +09002059
2060 left->atom.atom = new_atom;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002061 strcat(left->atom.atom, " *");
2062 free(arg->op.op);
2063 *arg = *left;
2064 free(left);
2065
2066 return type;
2067 }
2068
2069 right = alloc_arg();
Namhyung Kimb1ac7542012-09-20 11:09:19 +09002070 if (!right)
2071 goto out_warn_free;
2072
Steven Rostedtf7d82352012-04-06 00:47:53 +02002073 type = process_arg_token(event, right, tok, type);
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002074 if (type == TEP_EVENT_ERROR) {
Dean Nelson6f56e9c2015-08-20 11:16:32 -04002075 free_arg(right);
2076 /* token was freed in process_arg_token() via *tok */
2077 token = NULL;
2078 goto out_free;
2079 }
Namhyung Kim3201f0d2015-04-06 14:36:16 +09002080
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04002081 if (right->type == TEP_PRINT_OP &&
Namhyung Kim3201f0d2015-04-06 14:36:16 +09002082 get_op_prio(arg->op.op) < get_op_prio(right->op.op)) {
Tzvetomir Stoyanov (VMware)5647f942018-09-19 14:56:49 -04002083 struct tep_print_arg tmp;
Namhyung Kim3201f0d2015-04-06 14:36:16 +09002084
2085 /* rotate ops according to the priority */
2086 arg->op.right = right->op.left;
2087
2088 tmp = *arg;
2089 *arg = *right;
2090 *right = tmp;
2091
2092 arg->op.left = right;
2093 } else {
2094 arg->op.right = right;
2095 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02002096
2097 } else if (strcmp(token, "[") == 0) {
2098
2099 left = alloc_arg();
Namhyung Kimb1ac7542012-09-20 11:09:19 +09002100 if (!left)
2101 goto out_warn_free;
2102
Steven Rostedtf7d82352012-04-06 00:47:53 +02002103 *left = *arg;
2104
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04002105 arg->type = TEP_PRINT_OP;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002106 arg->op.op = token;
2107 arg->op.left = left;
2108
2109 arg->op.prio = 0;
2110
Namhyung Kim41e51a22012-09-19 15:58:42 +09002111 /* it will set arg->op.right */
Steven Rostedtf7d82352012-04-06 00:47:53 +02002112 type = process_array(event, arg, tok);
2113
2114 } else {
Namhyung Kim3388cc32014-03-19 10:22:53 +09002115 do_warning_event(event, "unknown op '%s'", token);
Tzvetomir Stoyanov (VMware)c1953bc2018-09-19 14:56:48 -04002116 event->flags |= TEP_EVENT_FL_FAILED;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002117 /* the arg is now the left side */
2118 goto out_free;
2119 }
2120
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002121 if (type == TEP_EVENT_OP && strcmp(*tok, ":") != 0) {
Steven Rostedtf7d82352012-04-06 00:47:53 +02002122 int prio;
2123
2124 /* higher prios need to be closer to the root */
2125 prio = get_op_prio(*tok);
2126
2127 if (prio > arg->op.prio)
2128 return process_op(event, arg, tok);
2129
2130 return process_op(event, right, tok);
2131 }
2132
2133 return type;
2134
Namhyung Kimb1ac7542012-09-20 11:09:19 +09002135out_warn_free:
Namhyung Kim3388cc32014-03-19 10:22:53 +09002136 do_warning_event(event, "%s: not enough memory!", __func__);
Namhyung Kimb1ac7542012-09-20 11:09:19 +09002137out_free:
Steven Rostedtf7d82352012-04-06 00:47:53 +02002138 free_token(token);
2139 *tok = NULL;
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002140 return TEP_EVENT_ERROR;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002141}
2142
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002143static enum tep_event_type
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05002144process_entry(struct tep_event *event __maybe_unused, struct tep_print_arg *arg,
Steven Rostedtf7d82352012-04-06 00:47:53 +02002145 char **tok)
2146{
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002147 enum tep_event_type type;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002148 char *field;
2149 char *token;
2150
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002151 if (read_expected(TEP_EVENT_OP, "->") < 0)
Steven Rostedtf7d82352012-04-06 00:47:53 +02002152 goto out_err;
2153
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002154 if (read_expect_type(TEP_EVENT_ITEM, &token) < 0)
Steven Rostedtf7d82352012-04-06 00:47:53 +02002155 goto out_free;
2156 field = token;
2157
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04002158 arg->type = TEP_PRINT_FIELD;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002159 arg->field.name = field;
2160
Tom Zanussi5205aec2012-04-06 00:47:58 +02002161 if (is_flag_field) {
Tzvetomir Stoyanov (VMware)af85cd12018-08-08 14:02:50 -04002162 arg->field.field = tep_find_any_field(event, arg->field.name);
Tzvetomir Stoyanov (VMware)bb39ccb2018-09-19 14:56:46 -04002163 arg->field.field->flags |= TEP_FIELD_IS_FLAG;
Tom Zanussi5205aec2012-04-06 00:47:58 +02002164 is_flag_field = 0;
2165 } else if (is_symbolic_field) {
Tzvetomir Stoyanov (VMware)af85cd12018-08-08 14:02:50 -04002166 arg->field.field = tep_find_any_field(event, arg->field.name);
Tzvetomir Stoyanov (VMware)bb39ccb2018-09-19 14:56:46 -04002167 arg->field.field->flags |= TEP_FIELD_IS_SYMBOLIC;
Tom Zanussi5205aec2012-04-06 00:47:58 +02002168 is_symbolic_field = 0;
2169 }
2170
Steven Rostedtf7d82352012-04-06 00:47:53 +02002171 type = read_token(&token);
2172 *tok = token;
2173
2174 return type;
2175
2176 out_free:
2177 free_token(token);
2178 out_err:
2179 *tok = NULL;
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002180 return TEP_EVENT_ERROR;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002181}
2182
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05002183static int alloc_and_process_delim(struct tep_event *event, char *next_token,
Tzvetomir Stoyanov (VMware)5647f942018-09-19 14:56:49 -04002184 struct tep_print_arg **print_arg)
Javi Merino929a6bb2015-03-20 18:12:55 +00002185{
Tzvetomir Stoyanov (VMware)5647f942018-09-19 14:56:49 -04002186 struct tep_print_arg *field;
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002187 enum tep_event_type type;
Javi Merino929a6bb2015-03-20 18:12:55 +00002188 char *token;
2189 int ret = 0;
2190
2191 field = alloc_arg();
2192 if (!field) {
2193 do_warning_event(event, "%s: not enough memory!", __func__);
2194 errno = ENOMEM;
2195 return -1;
2196 }
2197
2198 type = process_arg(event, field, &token);
2199
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002200 if (test_type_token(type, token, TEP_EVENT_DELIM, next_token)) {
Javi Merino929a6bb2015-03-20 18:12:55 +00002201 errno = EINVAL;
2202 ret = -1;
2203 free_arg(field);
2204 goto out_free_token;
2205 }
2206
2207 *print_arg = field;
2208
2209out_free_token:
2210 free_token(token);
2211
2212 return ret;
2213}
2214
Tzvetomir Stoyanov (VMware)5647f942018-09-19 14:56:49 -04002215static char *arg_eval (struct tep_print_arg *arg);
Steven Rostedtf7d82352012-04-06 00:47:53 +02002216
2217static unsigned long long
2218eval_type_str(unsigned long long val, const char *type, int pointer)
2219{
2220 int sign = 0;
2221 char *ref;
2222 int len;
2223
2224 len = strlen(type);
2225
2226 if (pointer) {
2227
2228 if (type[len-1] != '*') {
2229 do_warning("pointer expected with non pointer type");
2230 return val;
2231 }
2232
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -03002233 ref = malloc(len);
2234 if (!ref) {
2235 do_warning("%s: not enough memory!", __func__);
2236 return val;
2237 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02002238 memcpy(ref, type, len);
2239
2240 /* chop off the " *" */
2241 ref[len - 2] = 0;
2242
2243 val = eval_type_str(val, ref, 0);
2244 free(ref);
2245 return val;
2246 }
2247
2248 /* check if this is a pointer */
2249 if (type[len - 1] == '*')
2250 return val;
2251
2252 /* Try to figure out the arg size*/
2253 if (strncmp(type, "struct", 6) == 0)
2254 /* all bets off */
2255 return val;
2256
2257 if (strcmp(type, "u8") == 0)
2258 return val & 0xff;
2259
2260 if (strcmp(type, "u16") == 0)
2261 return val & 0xffff;
2262
2263 if (strcmp(type, "u32") == 0)
2264 return val & 0xffffffff;
2265
2266 if (strcmp(type, "u64") == 0 ||
Rikard Falkebornf32c2872019-04-09 11:15:29 +02002267 strcmp(type, "s64") == 0)
Steven Rostedtf7d82352012-04-06 00:47:53 +02002268 return val;
2269
2270 if (strcmp(type, "s8") == 0)
2271 return (unsigned long long)(char)val & 0xff;
2272
2273 if (strcmp(type, "s16") == 0)
2274 return (unsigned long long)(short)val & 0xffff;
2275
2276 if (strcmp(type, "s32") == 0)
2277 return (unsigned long long)(int)val & 0xffffffff;
2278
2279 if (strncmp(type, "unsigned ", 9) == 0) {
2280 sign = 0;
2281 type += 9;
2282 }
2283
2284 if (strcmp(type, "char") == 0) {
2285 if (sign)
2286 return (unsigned long long)(char)val & 0xff;
2287 else
2288 return val & 0xff;
2289 }
2290
2291 if (strcmp(type, "short") == 0) {
2292 if (sign)
2293 return (unsigned long long)(short)val & 0xffff;
2294 else
2295 return val & 0xffff;
2296 }
2297
2298 if (strcmp(type, "int") == 0) {
2299 if (sign)
2300 return (unsigned long long)(int)val & 0xffffffff;
2301 else
2302 return val & 0xffffffff;
2303 }
2304
2305 return val;
2306}
2307
2308/*
2309 * Try to figure out the type.
2310 */
2311static unsigned long long
Tzvetomir Stoyanov (VMware)5647f942018-09-19 14:56:49 -04002312eval_type(unsigned long long val, struct tep_print_arg *arg, int pointer)
Steven Rostedtf7d82352012-04-06 00:47:53 +02002313{
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04002314 if (arg->type != TEP_PRINT_TYPE) {
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -03002315 do_warning("expected type argument");
2316 return 0;
2317 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02002318
2319 return eval_type_str(val, arg->typecast.type, pointer);
2320}
2321
Tzvetomir Stoyanov (VMware)5647f942018-09-19 14:56:49 -04002322static int arg_num_eval(struct tep_print_arg *arg, long long *val)
Steven Rostedtf7d82352012-04-06 00:47:53 +02002323{
2324 long long left, right;
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02002325 int ret = 1;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002326
2327 switch (arg->type) {
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04002328 case TEP_PRINT_ATOM:
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02002329 *val = strtoll(arg->atom.atom, NULL, 0);
Steven Rostedtf7d82352012-04-06 00:47:53 +02002330 break;
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04002331 case TEP_PRINT_TYPE:
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02002332 ret = arg_num_eval(arg->typecast.item, val);
2333 if (!ret)
2334 break;
2335 *val = eval_type(*val, arg, 0);
Steven Rostedtf7d82352012-04-06 00:47:53 +02002336 break;
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04002337 case TEP_PRINT_OP:
Steven Rostedtf7d82352012-04-06 00:47:53 +02002338 switch (arg->op.op[0]) {
2339 case '|':
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02002340 ret = arg_num_eval(arg->op.left, &left);
2341 if (!ret)
2342 break;
2343 ret = arg_num_eval(arg->op.right, &right);
2344 if (!ret)
2345 break;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002346 if (arg->op.op[1])
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02002347 *val = left || right;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002348 else
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02002349 *val = left | right;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002350 break;
2351 case '&':
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02002352 ret = arg_num_eval(arg->op.left, &left);
2353 if (!ret)
2354 break;
2355 ret = arg_num_eval(arg->op.right, &right);
2356 if (!ret)
2357 break;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002358 if (arg->op.op[1])
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02002359 *val = left && right;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002360 else
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02002361 *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 switch (arg->op.op[1]) {
2371 case 0:
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02002372 *val = left < right;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002373 break;
2374 case '<':
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02002375 *val = left << right;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002376 break;
2377 case '=':
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02002378 *val = left <= right;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002379 break;
2380 default:
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02002381 do_warning("unknown op '%s'", arg->op.op);
2382 ret = 0;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002383 }
2384 break;
2385 case '>':
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02002386 ret = arg_num_eval(arg->op.left, &left);
2387 if (!ret)
2388 break;
2389 ret = arg_num_eval(arg->op.right, &right);
2390 if (!ret)
2391 break;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002392 switch (arg->op.op[1]) {
2393 case 0:
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02002394 *val = left > right;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002395 break;
2396 case '>':
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02002397 *val = left >> right;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002398 break;
2399 case '=':
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02002400 *val = left >= right;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002401 break;
2402 default:
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02002403 do_warning("unknown op '%s'", arg->op.op);
2404 ret = 0;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002405 }
2406 break;
2407 case '=':
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02002408 ret = arg_num_eval(arg->op.left, &left);
2409 if (!ret)
2410 break;
2411 ret = arg_num_eval(arg->op.right, &right);
2412 if (!ret)
2413 break;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002414
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02002415 if (arg->op.op[1] != '=') {
2416 do_warning("unknown op '%s'", arg->op.op);
2417 ret = 0;
2418 } else
2419 *val = left == right;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002420 break;
2421 case '!':
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02002422 ret = arg_num_eval(arg->op.left, &left);
2423 if (!ret)
2424 break;
2425 ret = arg_num_eval(arg->op.right, &right);
2426 if (!ret)
2427 break;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002428
2429 switch (arg->op.op[1]) {
2430 case '=':
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02002431 *val = left != right;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002432 break;
2433 default:
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02002434 do_warning("unknown op '%s'", arg->op.op);
2435 ret = 0;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002436 }
2437 break;
2438 case '-':
2439 /* check for negative */
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04002440 if (arg->op.left->type == TEP_PRINT_NULL)
Steven Rostedtf7d82352012-04-06 00:47:53 +02002441 left = 0;
2442 else
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02002443 ret = arg_num_eval(arg->op.left, &left);
2444 if (!ret)
2445 break;
2446 ret = arg_num_eval(arg->op.right, &right);
2447 if (!ret)
2448 break;
2449 *val = left - right;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002450 break;
Vaibhav Nagarnaikb4828592012-04-06 00:48:03 +02002451 case '+':
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04002452 if (arg->op.left->type == TEP_PRINT_NULL)
Vaibhav Nagarnaikb4828592012-04-06 00:48:03 +02002453 left = 0;
2454 else
2455 ret = arg_num_eval(arg->op.left, &left);
2456 if (!ret)
2457 break;
2458 ret = arg_num_eval(arg->op.right, &right);
2459 if (!ret)
2460 break;
2461 *val = left + right;
2462 break;
Steven Rostedt9eb42de2016-02-26 18:13:28 -05002463 case '~':
2464 ret = arg_num_eval(arg->op.right, &right);
2465 if (!ret)
2466 break;
2467 *val = ~right;
2468 break;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002469 default:
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02002470 do_warning("unknown op '%s'", arg->op.op);
2471 ret = 0;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002472 }
2473 break;
2474
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04002475 case TEP_PRINT_NULL:
2476 case TEP_PRINT_FIELD ... TEP_PRINT_SYMBOL:
2477 case TEP_PRINT_STRING:
2478 case TEP_PRINT_BSTRING:
2479 case TEP_PRINT_BITMASK:
Steven Rostedtf7d82352012-04-06 00:47:53 +02002480 default:
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02002481 do_warning("invalid eval type %d", arg->type);
2482 ret = 0;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002483
2484 }
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02002485 return ret;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002486}
2487
Tzvetomir Stoyanov (VMware)5647f942018-09-19 14:56:49 -04002488static char *arg_eval (struct tep_print_arg *arg)
Steven Rostedtf7d82352012-04-06 00:47:53 +02002489{
2490 long long val;
Tony Jones7c5b0192019-02-27 17:55:32 -08002491 static char buf[24];
Steven Rostedtf7d82352012-04-06 00:47:53 +02002492
2493 switch (arg->type) {
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04002494 case TEP_PRINT_ATOM:
Steven Rostedtf7d82352012-04-06 00:47:53 +02002495 return arg->atom.atom;
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04002496 case TEP_PRINT_TYPE:
Steven Rostedtf7d82352012-04-06 00:47:53 +02002497 return arg_eval(arg->typecast.item);
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04002498 case TEP_PRINT_OP:
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02002499 if (!arg_num_eval(arg, &val))
2500 break;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002501 sprintf(buf, "%lld", val);
2502 return buf;
2503
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04002504 case TEP_PRINT_NULL:
2505 case TEP_PRINT_FIELD ... TEP_PRINT_SYMBOL:
2506 case TEP_PRINT_STRING:
2507 case TEP_PRINT_BSTRING:
2508 case TEP_PRINT_BITMASK:
Steven Rostedtf7d82352012-04-06 00:47:53 +02002509 default:
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -03002510 do_warning("invalid eval type %d", arg->type);
Steven Rostedtf7d82352012-04-06 00:47:53 +02002511 break;
2512 }
2513
2514 return NULL;
2515}
2516
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002517static enum tep_event_type
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05002518process_fields(struct tep_event *event, struct tep_print_flag_sym **list, char **tok)
Steven Rostedtf7d82352012-04-06 00:47:53 +02002519{
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002520 enum tep_event_type type;
Tzvetomir Stoyanov (VMware)5647f942018-09-19 14:56:49 -04002521 struct tep_print_arg *arg = NULL;
2522 struct tep_print_flag_sym *field;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002523 char *token = *tok;
2524 char *value;
2525
2526 do {
2527 free_token(token);
2528 type = read_token_item(&token);
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002529 if (test_type_token(type, token, TEP_EVENT_OP, "{"))
Steven Rostedtf7d82352012-04-06 00:47:53 +02002530 break;
2531
2532 arg = alloc_arg();
Namhyung Kimb1ac7542012-09-20 11:09:19 +09002533 if (!arg)
2534 goto out_free;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002535
2536 free_token(token);
2537 type = process_arg(event, arg, &token);
Stefan Hajnoczi00b9da72012-05-23 11:36:42 +09002538
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002539 if (type == TEP_EVENT_OP)
Stefan Hajnoczi00b9da72012-05-23 11:36:42 +09002540 type = process_op(event, arg, &token);
2541
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002542 if (type == TEP_EVENT_ERROR)
Stefan Hajnoczi00b9da72012-05-23 11:36:42 +09002543 goto out_free;
2544
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002545 if (test_type_token(type, token, TEP_EVENT_DELIM, ","))
Steven Rostedtf7d82352012-04-06 00:47:53 +02002546 goto out_free;
2547
Arnaldo Carvalho de Melo87162d82012-09-12 15:39:59 -03002548 field = calloc(1, sizeof(*field));
2549 if (!field)
2550 goto out_free;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002551
2552 value = arg_eval(arg);
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02002553 if (value == NULL)
Namhyung Kimf8c49d22012-09-19 15:58:43 +09002554 goto out_free_field;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002555 field->value = strdup(value);
Namhyung Kimca638582012-04-09 11:54:31 +09002556 if (field->value == NULL)
Namhyung Kimf8c49d22012-09-19 15:58:43 +09002557 goto out_free_field;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002558
2559 free_arg(arg);
2560 arg = alloc_arg();
Namhyung Kimb1ac7542012-09-20 11:09:19 +09002561 if (!arg)
2562 goto out_free;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002563
2564 free_token(token);
2565 type = process_arg(event, arg, &token);
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002566 if (test_type_token(type, token, TEP_EVENT_OP, "}"))
Namhyung Kimf8c49d22012-09-19 15:58:43 +09002567 goto out_free_field;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002568
2569 value = arg_eval(arg);
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02002570 if (value == NULL)
Namhyung Kimf8c49d22012-09-19 15:58:43 +09002571 goto out_free_field;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002572 field->str = strdup(value);
Namhyung Kimca638582012-04-09 11:54:31 +09002573 if (field->str == NULL)
Namhyung Kimf8c49d22012-09-19 15:58:43 +09002574 goto out_free_field;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002575 free_arg(arg);
2576 arg = NULL;
2577
2578 *list = field;
2579 list = &field->next;
2580
2581 free_token(token);
2582 type = read_token_item(&token);
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002583 } while (type == TEP_EVENT_DELIM && strcmp(token, ",") == 0);
Steven Rostedtf7d82352012-04-06 00:47:53 +02002584
2585 *tok = token;
2586 return type;
2587
Namhyung Kimf8c49d22012-09-19 15:58:43 +09002588out_free_field:
2589 free_flag_sym(field);
Steven Rostedtf7d82352012-04-06 00:47:53 +02002590out_free:
2591 free_arg(arg);
2592 free_token(token);
2593 *tok = NULL;
2594
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002595 return TEP_EVENT_ERROR;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002596}
2597
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002598static enum tep_event_type
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05002599process_flags(struct tep_event *event, struct tep_print_arg *arg, char **tok)
Steven Rostedtf7d82352012-04-06 00:47:53 +02002600{
Tzvetomir Stoyanov (VMware)5647f942018-09-19 14:56:49 -04002601 struct tep_print_arg *field;
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002602 enum tep_event_type type;
Rickard Strandqvist21da83f2014-06-24 13:09:10 +02002603 char *token = NULL;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002604
2605 memset(arg, 0, sizeof(*arg));
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04002606 arg->type = TEP_PRINT_FLAGS;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002607
2608 field = alloc_arg();
Namhyung Kimb1ac7542012-09-20 11:09:19 +09002609 if (!field) {
Namhyung Kim3388cc32014-03-19 10:22:53 +09002610 do_warning_event(event, "%s: not enough memory!", __func__);
Namhyung Kimb1ac7542012-09-20 11:09:19 +09002611 goto out_free;
2612 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02002613
Steven Rostedteff2c922013-11-18 14:23:14 -05002614 type = process_field_arg(event, field, &token);
Steven Rostedtf7d82352012-04-06 00:47:53 +02002615
2616 /* Handle operations in the first argument */
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002617 while (type == TEP_EVENT_OP)
Steven Rostedtf7d82352012-04-06 00:47:53 +02002618 type = process_op(event, field, &token);
2619
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002620 if (test_type_token(type, token, TEP_EVENT_DELIM, ","))
Namhyung Kim70d93042012-09-19 15:58:44 +09002621 goto out_free_field;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002622 free_token(token);
2623
2624 arg->flags.field = field;
2625
2626 type = read_token_item(&token);
2627 if (event_item_type(type)) {
2628 arg->flags.delim = token;
2629 type = read_token_item(&token);
2630 }
2631
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002632 if (test_type_token(type, token, TEP_EVENT_DELIM, ","))
Steven Rostedtf7d82352012-04-06 00:47:53 +02002633 goto out_free;
2634
2635 type = process_fields(event, &arg->flags.flags, &token);
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002636 if (test_type_token(type, token, TEP_EVENT_DELIM, ")"))
Steven Rostedtf7d82352012-04-06 00:47:53 +02002637 goto out_free;
2638
2639 free_token(token);
2640 type = read_token_item(tok);
2641 return type;
2642
Namhyung Kim70d93042012-09-19 15:58:44 +09002643out_free_field:
2644 free_arg(field);
2645out_free:
Steven Rostedtf7d82352012-04-06 00:47:53 +02002646 free_token(token);
2647 *tok = NULL;
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002648 return TEP_EVENT_ERROR;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002649}
2650
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002651static enum tep_event_type
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05002652process_symbols(struct tep_event *event, struct tep_print_arg *arg, char **tok)
Steven Rostedtf7d82352012-04-06 00:47:53 +02002653{
Tzvetomir Stoyanov (VMware)5647f942018-09-19 14:56:49 -04002654 struct tep_print_arg *field;
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002655 enum tep_event_type type;
Rickard Strandqvist21da83f2014-06-24 13:09:10 +02002656 char *token = NULL;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002657
2658 memset(arg, 0, sizeof(*arg));
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04002659 arg->type = TEP_PRINT_SYMBOL;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002660
2661 field = alloc_arg();
Namhyung Kimb1ac7542012-09-20 11:09:19 +09002662 if (!field) {
Namhyung Kim3388cc32014-03-19 10:22:53 +09002663 do_warning_event(event, "%s: not enough memory!", __func__);
Namhyung Kimb1ac7542012-09-20 11:09:19 +09002664 goto out_free;
2665 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02002666
Steven Rostedteff2c922013-11-18 14:23:14 -05002667 type = process_field_arg(event, field, &token);
2668
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002669 if (test_type_token(type, token, TEP_EVENT_DELIM, ","))
Namhyung Kim70d93042012-09-19 15:58:44 +09002670 goto out_free_field;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002671
2672 arg->symbol.field = field;
2673
2674 type = process_fields(event, &arg->symbol.symbols, &token);
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002675 if (test_type_token(type, token, TEP_EVENT_DELIM, ")"))
Steven Rostedtf7d82352012-04-06 00:47:53 +02002676 goto out_free;
2677
2678 free_token(token);
2679 type = read_token_item(tok);
2680 return type;
2681
Namhyung Kim70d93042012-09-19 15:58:44 +09002682out_free_field:
2683 free_arg(field);
2684out_free:
Steven Rostedtf7d82352012-04-06 00:47:53 +02002685 free_token(token);
2686 *tok = NULL;
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002687 return TEP_EVENT_ERROR;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002688}
2689
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002690static enum tep_event_type
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05002691process_hex_common(struct tep_event *event, struct tep_print_arg *arg,
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04002692 char **tok, enum tep_print_arg_type type)
Namhyung Kime080e6f2012-06-27 09:41:41 +09002693{
Namhyung Kime080e6f2012-06-27 09:41:41 +09002694 memset(arg, 0, sizeof(*arg));
Daniel Borkmann0fe05592017-01-25 02:28:17 +01002695 arg->type = type;
Namhyung Kime080e6f2012-06-27 09:41:41 +09002696
Javi Merino929a6bb2015-03-20 18:12:55 +00002697 if (alloc_and_process_delim(event, ",", &arg->hex.field))
2698 goto out;
Namhyung Kimb1ac7542012-09-20 11:09:19 +09002699
Javi Merino929a6bb2015-03-20 18:12:55 +00002700 if (alloc_and_process_delim(event, ")", &arg->hex.size))
2701 goto free_field;
Namhyung Kime080e6f2012-06-27 09:41:41 +09002702
Javi Merino929a6bb2015-03-20 18:12:55 +00002703 return read_token_item(tok);
Namhyung Kime080e6f2012-06-27 09:41:41 +09002704
Javi Merino929a6bb2015-03-20 18:12:55 +00002705free_field:
2706 free_arg(arg->hex.field);
Steven Rostedt (Red Hat)9ec72ea2016-02-09 15:40:16 -05002707 arg->hex.field = NULL;
Javi Merino929a6bb2015-03-20 18:12:55 +00002708out:
Namhyung Kime080e6f2012-06-27 09:41:41 +09002709 *tok = NULL;
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002710 return TEP_EVENT_ERROR;
Namhyung Kime080e6f2012-06-27 09:41:41 +09002711}
Namhyung Kime080e6f2012-06-27 09:41:41 +09002712
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002713static enum tep_event_type
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05002714process_hex(struct tep_event *event, struct tep_print_arg *arg, char **tok)
Daniel Borkmann0fe05592017-01-25 02:28:17 +01002715{
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04002716 return process_hex_common(event, arg, tok, TEP_PRINT_HEX);
Daniel Borkmann0fe05592017-01-25 02:28:17 +01002717}
2718
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002719static enum tep_event_type
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05002720process_hex_str(struct tep_event *event, struct tep_print_arg *arg,
Daniel Borkmann0fe05592017-01-25 02:28:17 +01002721 char **tok)
2722{
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04002723 return process_hex_common(event, arg, tok, TEP_PRINT_HEX_STR);
Daniel Borkmann0fe05592017-01-25 02:28:17 +01002724}
2725
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002726static enum tep_event_type
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05002727process_int_array(struct tep_event *event, struct tep_print_arg *arg, char **tok)
Javi Merinob839e1e82015-03-24 11:07:19 +00002728{
2729 memset(arg, 0, sizeof(*arg));
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04002730 arg->type = TEP_PRINT_INT_ARRAY;
Namhyung Kime080e6f2012-06-27 09:41:41 +09002731
Javi Merinob839e1e82015-03-24 11:07:19 +00002732 if (alloc_and_process_delim(event, ",", &arg->int_array.field))
2733 goto out;
Namhyung Kime080e6f2012-06-27 09:41:41 +09002734
Javi Merinob839e1e82015-03-24 11:07:19 +00002735 if (alloc_and_process_delim(event, ",", &arg->int_array.count))
2736 goto free_field;
Namhyung Kime080e6f2012-06-27 09:41:41 +09002737
Javi Merinob839e1e82015-03-24 11:07:19 +00002738 if (alloc_and_process_delim(event, ")", &arg->int_array.el_size))
2739 goto free_size;
Namhyung Kime080e6f2012-06-27 09:41:41 +09002740
Javi Merinob839e1e82015-03-24 11:07:19 +00002741 return read_token_item(tok);
Namhyung Kime080e6f2012-06-27 09:41:41 +09002742
Javi Merinob839e1e82015-03-24 11:07:19 +00002743free_size:
2744 free_arg(arg->int_array.count);
Steven Rostedt (Red Hat)9ec72ea2016-02-09 15:40:16 -05002745 arg->int_array.count = NULL;
Javi Merinob839e1e82015-03-24 11:07:19 +00002746free_field:
2747 free_arg(arg->int_array.field);
Steven Rostedt (Red Hat)9ec72ea2016-02-09 15:40:16 -05002748 arg->int_array.field = NULL;
Javi Merinob839e1e82015-03-24 11:07:19 +00002749out:
Namhyung Kime080e6f2012-06-27 09:41:41 +09002750 *tok = NULL;
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002751 return TEP_EVENT_ERROR;
Namhyung Kime080e6f2012-06-27 09:41:41 +09002752}
2753
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002754static enum tep_event_type
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05002755process_dynamic_array(struct tep_event *event, struct tep_print_arg *arg, char **tok)
Steven Rostedtf7d82352012-04-06 00:47:53 +02002756{
Tzvetomir Stoyanov (VMware)2c92f982018-09-19 14:56:45 -04002757 struct tep_format_field *field;
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002758 enum tep_event_type type;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002759 char *token;
2760
2761 memset(arg, 0, sizeof(*arg));
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04002762 arg->type = TEP_PRINT_DYNAMIC_ARRAY;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002763
2764 /*
2765 * The item within the parenthesis is another field that holds
2766 * the index into where the array starts.
2767 */
2768 type = read_token(&token);
2769 *tok = token;
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002770 if (type != TEP_EVENT_ITEM)
Steven Rostedtf7d82352012-04-06 00:47:53 +02002771 goto out_free;
2772
2773 /* Find the field */
2774
Tzvetomir Stoyanov (VMware)af85cd12018-08-08 14:02:50 -04002775 field = tep_find_field(event, token);
Steven Rostedtf7d82352012-04-06 00:47:53 +02002776 if (!field)
2777 goto out_free;
2778
2779 arg->dynarray.field = field;
2780 arg->dynarray.index = 0;
2781
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002782 if (read_expected(TEP_EVENT_DELIM, ")") < 0)
Steven Rostedtf7d82352012-04-06 00:47:53 +02002783 goto out_free;
2784
2785 free_token(token);
2786 type = read_token_item(&token);
2787 *tok = token;
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002788 if (type != TEP_EVENT_OP || strcmp(token, "[") != 0)
Steven Rostedtf7d82352012-04-06 00:47:53 +02002789 return type;
2790
2791 free_token(token);
2792 arg = alloc_arg();
Sasha Levinfba7a782012-12-21 15:00:58 -05002793 if (!arg) {
Namhyung Kim3388cc32014-03-19 10:22:53 +09002794 do_warning_event(event, "%s: not enough memory!", __func__);
Namhyung Kimb1ac7542012-09-20 11:09:19 +09002795 *tok = NULL;
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002796 return TEP_EVENT_ERROR;
Namhyung Kimb1ac7542012-09-20 11:09:19 +09002797 }
2798
Steven Rostedtf7d82352012-04-06 00:47:53 +02002799 type = process_arg(event, arg, &token);
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002800 if (type == TEP_EVENT_ERROR)
Namhyung Kimb3511d02012-05-23 11:36:50 +09002801 goto out_free_arg;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002802
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002803 if (!test_type_token(type, token, TEP_EVENT_OP, "]"))
Namhyung Kimb3511d02012-05-23 11:36:50 +09002804 goto out_free_arg;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002805
2806 free_token(token);
2807 type = read_token_item(tok);
2808 return type;
2809
Namhyung Kimb3511d02012-05-23 11:36:50 +09002810 out_free_arg:
2811 free_arg(arg);
Steven Rostedtf7d82352012-04-06 00:47:53 +02002812 out_free:
Steven Rostedtf7d82352012-04-06 00:47:53 +02002813 free_token(token);
2814 *tok = NULL;
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002815 return TEP_EVENT_ERROR;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002816}
2817
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002818static enum tep_event_type
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05002819process_dynamic_array_len(struct tep_event *event, struct tep_print_arg *arg,
He Kuang76055942015-08-29 04:22:05 +00002820 char **tok)
2821{
Tzvetomir Stoyanov (VMware)2c92f982018-09-19 14:56:45 -04002822 struct tep_format_field *field;
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002823 enum tep_event_type type;
He Kuang76055942015-08-29 04:22:05 +00002824 char *token;
2825
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002826 if (read_expect_type(TEP_EVENT_ITEM, &token) < 0)
He Kuang76055942015-08-29 04:22:05 +00002827 goto out_free;
2828
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04002829 arg->type = TEP_PRINT_DYNAMIC_ARRAY_LEN;
He Kuang76055942015-08-29 04:22:05 +00002830
2831 /* Find the field */
Tzvetomir Stoyanov (VMware)af85cd12018-08-08 14:02:50 -04002832 field = tep_find_field(event, token);
He Kuang76055942015-08-29 04:22:05 +00002833 if (!field)
2834 goto out_free;
2835
2836 arg->dynarray.field = field;
2837 arg->dynarray.index = 0;
2838
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002839 if (read_expected(TEP_EVENT_DELIM, ")") < 0)
He Kuang76055942015-08-29 04:22:05 +00002840 goto out_err;
2841
2842 type = read_token(&token);
2843 *tok = token;
2844
2845 return type;
2846
2847 out_free:
2848 free_token(token);
2849 out_err:
2850 *tok = NULL;
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002851 return TEP_EVENT_ERROR;
He Kuang76055942015-08-29 04:22:05 +00002852}
2853
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002854static enum tep_event_type
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05002855process_paren(struct tep_event *event, struct tep_print_arg *arg, char **tok)
Steven Rostedtf7d82352012-04-06 00:47:53 +02002856{
Tzvetomir Stoyanov (VMware)5647f942018-09-19 14:56:49 -04002857 struct tep_print_arg *item_arg;
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002858 enum tep_event_type type;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002859 char *token;
2860
2861 type = process_arg(event, arg, &token);
2862
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002863 if (type == TEP_EVENT_ERROR)
Steven Rostedtf7d82352012-04-06 00:47:53 +02002864 goto out_free;
2865
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002866 if (type == TEP_EVENT_OP)
Steven Rostedtf7d82352012-04-06 00:47:53 +02002867 type = process_op(event, arg, &token);
2868
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002869 if (type == TEP_EVENT_ERROR)
Steven Rostedtf7d82352012-04-06 00:47:53 +02002870 goto out_free;
2871
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002872 if (test_type_token(type, token, TEP_EVENT_DELIM, ")"))
Steven Rostedtf7d82352012-04-06 00:47:53 +02002873 goto out_free;
2874
2875 free_token(token);
2876 type = read_token_item(&token);
2877
2878 /*
2879 * If the next token is an item or another open paren, then
2880 * this was a typecast.
2881 */
2882 if (event_item_type(type) ||
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002883 (type == TEP_EVENT_DELIM && strcmp(token, "(") == 0)) {
Steven Rostedtf7d82352012-04-06 00:47:53 +02002884
2885 /* make this a typecast and contine */
2886
2887 /* prevous must be an atom */
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04002888 if (arg->type != TEP_PRINT_ATOM) {
2889 do_warning_event(event, "previous needed to be TEP_PRINT_ATOM");
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -03002890 goto out_free;
2891 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02002892
2893 item_arg = alloc_arg();
Namhyung Kimb1ac7542012-09-20 11:09:19 +09002894 if (!item_arg) {
Namhyung Kim3388cc32014-03-19 10:22:53 +09002895 do_warning_event(event, "%s: not enough memory!",
2896 __func__);
Namhyung Kimb1ac7542012-09-20 11:09:19 +09002897 goto out_free;
2898 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02002899
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04002900 arg->type = TEP_PRINT_TYPE;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002901 arg->typecast.type = arg->atom.atom;
2902 arg->typecast.item = item_arg;
2903 type = process_arg_token(event, item_arg, &token, type);
2904
2905 }
2906
2907 *tok = token;
2908 return type;
2909
2910 out_free:
2911 free_token(token);
2912 *tok = NULL;
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002913 return TEP_EVENT_ERROR;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002914}
2915
2916
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002917static enum tep_event_type
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05002918process_str(struct tep_event *event __maybe_unused, struct tep_print_arg *arg,
Irina Tirdea1d037ca2012-09-11 01:15:03 +03002919 char **tok)
Steven Rostedtf7d82352012-04-06 00:47:53 +02002920{
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002921 enum tep_event_type type;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002922 char *token;
2923
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002924 if (read_expect_type(TEP_EVENT_ITEM, &token) < 0)
Steven Rostedtf7d82352012-04-06 00:47:53 +02002925 goto out_free;
2926
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04002927 arg->type = TEP_PRINT_STRING;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002928 arg->string.string = token;
2929 arg->string.offset = -1;
2930
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002931 if (read_expected(TEP_EVENT_DELIM, ")") < 0)
Steven Rostedtf7d82352012-04-06 00:47:53 +02002932 goto out_err;
2933
2934 type = read_token(&token);
2935 *tok = token;
2936
2937 return type;
2938
2939 out_free:
2940 free_token(token);
2941 out_err:
2942 *tok = NULL;
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002943 return TEP_EVENT_ERROR;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002944}
2945
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002946static enum tep_event_type
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05002947process_bitmask(struct tep_event *event __maybe_unused, struct tep_print_arg *arg,
Tzvetomir Stoyanov (VMware)4963b0f2018-09-19 14:56:44 -04002948 char **tok)
Steven Rostedt (Red Hat)473a7782014-06-02 23:20:16 -04002949{
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002950 enum tep_event_type type;
Steven Rostedt (Red Hat)473a7782014-06-02 23:20:16 -04002951 char *token;
2952
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002953 if (read_expect_type(TEP_EVENT_ITEM, &token) < 0)
Steven Rostedt (Red Hat)473a7782014-06-02 23:20:16 -04002954 goto out_free;
2955
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04002956 arg->type = TEP_PRINT_BITMASK;
Steven Rostedt (Red Hat)473a7782014-06-02 23:20:16 -04002957 arg->bitmask.bitmask = token;
2958 arg->bitmask.offset = -1;
2959
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002960 if (read_expected(TEP_EVENT_DELIM, ")") < 0)
Steven Rostedt (Red Hat)473a7782014-06-02 23:20:16 -04002961 goto out_err;
2962
2963 type = read_token(&token);
2964 *tok = token;
2965
2966 return type;
2967
2968 out_free:
2969 free_token(token);
2970 out_err:
2971 *tok = NULL;
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002972 return TEP_EVENT_ERROR;
Steven Rostedt (Red Hat)473a7782014-06-02 23:20:16 -04002973}
2974
Tzvetomir Stoyanov (VMware)3cf47782018-08-08 14:02:59 -04002975static struct tep_function_handler *
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04002976find_func_handler(struct tep_handle *tep, char *func_name)
Steven Rostedtf7d82352012-04-06 00:47:53 +02002977{
Tzvetomir Stoyanov (VMware)3cf47782018-08-08 14:02:59 -04002978 struct tep_function_handler *func;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002979
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04002980 if (!tep)
Steven Rostedt101782e2012-10-01 20:13:51 -04002981 return NULL;
2982
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04002983 for (func = tep->func_handlers; func; func = func->next) {
Steven Rostedtf7d82352012-04-06 00:47:53 +02002984 if (strcmp(func->name, func_name) == 0)
2985 break;
2986 }
2987
2988 return func;
2989}
2990
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04002991static void remove_func_handler(struct tep_handle *tep, char *func_name)
Steven Rostedtf7d82352012-04-06 00:47:53 +02002992{
Tzvetomir Stoyanov (VMware)3cf47782018-08-08 14:02:59 -04002993 struct tep_function_handler *func;
2994 struct tep_function_handler **next;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002995
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04002996 next = &tep->func_handlers;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002997 while ((func = *next)) {
2998 if (strcmp(func->name, func_name) == 0) {
2999 *next = func->next;
3000 free_func_handle(func);
3001 break;
3002 }
3003 next = &func->next;
3004 }
3005}
3006
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04003007static enum tep_event_type
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05003008process_func_handler(struct tep_event *event, struct tep_function_handler *func,
Tzvetomir Stoyanov (VMware)5647f942018-09-19 14:56:49 -04003009 struct tep_print_arg *arg, char **tok)
Steven Rostedtf7d82352012-04-06 00:47:53 +02003010{
Tzvetomir Stoyanov (VMware)5647f942018-09-19 14:56:49 -04003011 struct tep_print_arg **next_arg;
3012 struct tep_print_arg *farg;
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04003013 enum tep_event_type type;
Steven Rostedtf7d82352012-04-06 00:47:53 +02003014 char *token;
Steven Rostedtf7d82352012-04-06 00:47:53 +02003015 int i;
3016
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04003017 arg->type = TEP_PRINT_FUNC;
Steven Rostedtf7d82352012-04-06 00:47:53 +02003018 arg->func.func = func;
3019
3020 *tok = NULL;
3021
3022 next_arg = &(arg->func.args);
3023 for (i = 0; i < func->nr_args; i++) {
3024 farg = alloc_arg();
Namhyung Kimb1ac7542012-09-20 11:09:19 +09003025 if (!farg) {
Namhyung Kim3388cc32014-03-19 10:22:53 +09003026 do_warning_event(event, "%s: not enough memory!",
3027 __func__);
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04003028 return TEP_EVENT_ERROR;
Namhyung Kimb1ac7542012-09-20 11:09:19 +09003029 }
3030
Steven Rostedtf7d82352012-04-06 00:47:53 +02003031 type = process_arg(event, farg, &token);
Steven Rostedt3a3ffa22013-11-18 21:38:20 -05003032 if (i < (func->nr_args - 1)) {
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04003033 if (type != TEP_EVENT_DELIM || strcmp(token, ",") != 0) {
Namhyung Kim9e9e5df2014-03-19 10:22:54 +09003034 do_warning_event(event,
3035 "Error: function '%s()' expects %d arguments but event %s only uses %d",
Steven Rostedt3a3ffa22013-11-18 21:38:20 -05003036 func->name, func->nr_args,
3037 event->name, i + 1);
3038 goto err;
3039 }
3040 } else {
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04003041 if (type != TEP_EVENT_DELIM || strcmp(token, ")") != 0) {
Namhyung Kim9e9e5df2014-03-19 10:22:54 +09003042 do_warning_event(event,
3043 "Error: function '%s()' only expects %d arguments but event %s has more",
Steven Rostedt3a3ffa22013-11-18 21:38:20 -05003044 func->name, func->nr_args, event->name);
3045 goto err;
3046 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02003047 }
3048
3049 *next_arg = farg;
3050 next_arg = &(farg->next);
3051 free_token(token);
3052 }
3053
3054 type = read_token(&token);
3055 *tok = token;
3056
3057 return type;
Steven Rostedt3a3ffa22013-11-18 21:38:20 -05003058
3059err:
3060 free_arg(farg);
3061 free_token(token);
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04003062 return TEP_EVENT_ERROR;
Steven Rostedtf7d82352012-04-06 00:47:53 +02003063}
3064
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04003065static enum tep_event_type
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05003066process_function(struct tep_event *event, struct tep_print_arg *arg,
Steven Rostedtf7d82352012-04-06 00:47:53 +02003067 char *token, char **tok)
3068{
Tzvetomir Stoyanov (VMware)3cf47782018-08-08 14:02:59 -04003069 struct tep_function_handler *func;
Steven Rostedtf7d82352012-04-06 00:47:53 +02003070
3071 if (strcmp(token, "__print_flags") == 0) {
3072 free_token(token);
Tom Zanussi5205aec2012-04-06 00:47:58 +02003073 is_flag_field = 1;
Steven Rostedtf7d82352012-04-06 00:47:53 +02003074 return process_flags(event, arg, tok);
3075 }
3076 if (strcmp(token, "__print_symbolic") == 0) {
3077 free_token(token);
Tom Zanussi5205aec2012-04-06 00:47:58 +02003078 is_symbolic_field = 1;
Steven Rostedtf7d82352012-04-06 00:47:53 +02003079 return process_symbols(event, arg, tok);
3080 }
Namhyung Kime080e6f2012-06-27 09:41:41 +09003081 if (strcmp(token, "__print_hex") == 0) {
3082 free_token(token);
3083 return process_hex(event, arg, tok);
3084 }
Daniel Borkmann0fe05592017-01-25 02:28:17 +01003085 if (strcmp(token, "__print_hex_str") == 0) {
3086 free_token(token);
3087 return process_hex_str(event, arg, tok);
3088 }
Javi Merinob839e1e82015-03-24 11:07:19 +00003089 if (strcmp(token, "__print_array") == 0) {
3090 free_token(token);
3091 return process_int_array(event, arg, tok);
3092 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02003093 if (strcmp(token, "__get_str") == 0) {
3094 free_token(token);
3095 return process_str(event, arg, tok);
3096 }
Steven Rostedt (Red Hat)473a7782014-06-02 23:20:16 -04003097 if (strcmp(token, "__get_bitmask") == 0) {
3098 free_token(token);
3099 return process_bitmask(event, arg, tok);
3100 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02003101 if (strcmp(token, "__get_dynamic_array") == 0) {
3102 free_token(token);
3103 return process_dynamic_array(event, arg, tok);
3104 }
He Kuang76055942015-08-29 04:22:05 +00003105 if (strcmp(token, "__get_dynamic_array_len") == 0) {
3106 free_token(token);
3107 return process_dynamic_array_len(event, arg, tok);
3108 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02003109
Tzvetomir Stoyanov69769ce2019-04-01 12:43:18 -04003110 func = find_func_handler(event->tep, token);
Steven Rostedtf7d82352012-04-06 00:47:53 +02003111 if (func) {
3112 free_token(token);
3113 return process_func_handler(event, func, arg, tok);
3114 }
3115
Namhyung Kim3388cc32014-03-19 10:22:53 +09003116 do_warning_event(event, "function %s not defined", token);
Steven Rostedtf7d82352012-04-06 00:47:53 +02003117 free_token(token);
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04003118 return TEP_EVENT_ERROR;
Steven Rostedtf7d82352012-04-06 00:47:53 +02003119}
3120
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04003121static enum tep_event_type
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05003122process_arg_token(struct tep_event *event, struct tep_print_arg *arg,
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04003123 char **tok, enum tep_event_type type)
Steven Rostedtf7d82352012-04-06 00:47:53 +02003124{
3125 char *token;
3126 char *atom;
3127
3128 token = *tok;
3129
3130 switch (type) {
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04003131 case TEP_EVENT_ITEM:
Steven Rostedtf7d82352012-04-06 00:47:53 +02003132 if (strcmp(token, "REC") == 0) {
3133 free_token(token);
3134 type = process_entry(event, arg, &token);
3135 break;
3136 }
3137 atom = token;
3138 /* test the next token */
3139 type = read_token_item(&token);
3140
3141 /*
3142 * If the next token is a parenthesis, then this
3143 * is a function.
3144 */
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04003145 if (type == TEP_EVENT_DELIM && strcmp(token, "(") == 0) {
Steven Rostedtf7d82352012-04-06 00:47:53 +02003146 free_token(token);
3147 token = NULL;
3148 /* this will free atom. */
3149 type = process_function(event, arg, atom, &token);
3150 break;
3151 }
3152 /* atoms can be more than one token long */
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04003153 while (type == TEP_EVENT_ITEM) {
Namhyung Kimd2864472012-04-09 11:54:33 +09003154 char *new_atom;
3155 new_atom = realloc(atom,
3156 strlen(atom) + strlen(token) + 2);
3157 if (!new_atom) {
3158 free(atom);
3159 *tok = NULL;
3160 free_token(token);
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04003161 return TEP_EVENT_ERROR;
Namhyung Kimd2864472012-04-09 11:54:33 +09003162 }
3163 atom = new_atom;
Steven Rostedtf7d82352012-04-06 00:47:53 +02003164 strcat(atom, " ");
3165 strcat(atom, token);
3166 free_token(token);
3167 type = read_token_item(&token);
3168 }
3169
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04003170 arg->type = TEP_PRINT_ATOM;
Steven Rostedtf7d82352012-04-06 00:47:53 +02003171 arg->atom.atom = atom;
3172 break;
3173
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04003174 case TEP_EVENT_DQUOTE:
3175 case TEP_EVENT_SQUOTE:
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04003176 arg->type = TEP_PRINT_ATOM;
Steven Rostedtf7d82352012-04-06 00:47:53 +02003177 arg->atom.atom = token;
3178 type = read_token_item(&token);
3179 break;
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04003180 case TEP_EVENT_DELIM:
Steven Rostedtf7d82352012-04-06 00:47:53 +02003181 if (strcmp(token, "(") == 0) {
3182 free_token(token);
3183 type = process_paren(event, arg, &token);
3184 break;
3185 }
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04003186 case TEP_EVENT_OP:
Steven Rostedtf7d82352012-04-06 00:47:53 +02003187 /* handle single ops */
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04003188 arg->type = TEP_PRINT_OP;
Steven Rostedtf7d82352012-04-06 00:47:53 +02003189 arg->op.op = token;
3190 arg->op.left = NULL;
3191 type = process_op(event, arg, &token);
3192
3193 /* On error, the op is freed */
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04003194 if (type == TEP_EVENT_ERROR)
Steven Rostedtf7d82352012-04-06 00:47:53 +02003195 arg->op.op = NULL;
3196
3197 /* return error type if errored */
3198 break;
3199
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04003200 case TEP_EVENT_ERROR ... TEP_EVENT_NEWLINE:
Steven Rostedtf7d82352012-04-06 00:47:53 +02003201 default:
Namhyung Kim3388cc32014-03-19 10:22:53 +09003202 do_warning_event(event, "unexpected type %d", type);
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04003203 return TEP_EVENT_ERROR;
Steven Rostedtf7d82352012-04-06 00:47:53 +02003204 }
3205 *tok = token;
3206
3207 return type;
3208}
3209
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05003210static int event_read_print_args(struct tep_event *event, struct tep_print_arg **list)
Steven Rostedtf7d82352012-04-06 00:47:53 +02003211{
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04003212 enum tep_event_type type = TEP_EVENT_ERROR;
Tzvetomir Stoyanov (VMware)5647f942018-09-19 14:56:49 -04003213 struct tep_print_arg *arg;
Steven Rostedtf7d82352012-04-06 00:47:53 +02003214 char *token;
3215 int args = 0;
3216
3217 do {
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04003218 if (type == TEP_EVENT_NEWLINE) {
Steven Rostedtf7d82352012-04-06 00:47:53 +02003219 type = read_token_item(&token);
3220 continue;
3221 }
3222
3223 arg = alloc_arg();
Namhyung Kimb1ac7542012-09-20 11:09:19 +09003224 if (!arg) {
Namhyung Kim3388cc32014-03-19 10:22:53 +09003225 do_warning_event(event, "%s: not enough memory!",
3226 __func__);
Namhyung Kimb1ac7542012-09-20 11:09:19 +09003227 return -1;
3228 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02003229
3230 type = process_arg(event, arg, &token);
3231
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04003232 if (type == TEP_EVENT_ERROR) {
Steven Rostedtf7d82352012-04-06 00:47:53 +02003233 free_token(token);
3234 free_arg(arg);
3235 return -1;
3236 }
3237
3238 *list = arg;
3239 args++;
3240
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04003241 if (type == TEP_EVENT_OP) {
Steven Rostedtf7d82352012-04-06 00:47:53 +02003242 type = process_op(event, arg, &token);
3243 free_token(token);
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04003244 if (type == TEP_EVENT_ERROR) {
Steven Rostedtf7d82352012-04-06 00:47:53 +02003245 *list = NULL;
3246 free_arg(arg);
3247 return -1;
3248 }
3249 list = &arg->next;
3250 continue;
3251 }
3252
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04003253 if (type == TEP_EVENT_DELIM && strcmp(token, ",") == 0) {
Steven Rostedtf7d82352012-04-06 00:47:53 +02003254 free_token(token);
3255 *list = arg;
3256 list = &arg->next;
3257 continue;
3258 }
3259 break;
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04003260 } while (type != TEP_EVENT_NONE);
Steven Rostedtf7d82352012-04-06 00:47:53 +02003261
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04003262 if (type != TEP_EVENT_NONE && type != TEP_EVENT_ERROR)
Steven Rostedtf7d82352012-04-06 00:47:53 +02003263 free_token(token);
3264
3265 return args;
3266}
3267
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05003268static int event_read_print(struct tep_event *event)
Steven Rostedtf7d82352012-04-06 00:47:53 +02003269{
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04003270 enum tep_event_type type;
Steven Rostedtf7d82352012-04-06 00:47:53 +02003271 char *token;
3272 int ret;
3273
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04003274 if (read_expected_item(TEP_EVENT_ITEM, "print") < 0)
Steven Rostedtf7d82352012-04-06 00:47:53 +02003275 return -1;
3276
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04003277 if (read_expected(TEP_EVENT_ITEM, "fmt") < 0)
Steven Rostedtf7d82352012-04-06 00:47:53 +02003278 return -1;
3279
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04003280 if (read_expected(TEP_EVENT_OP, ":") < 0)
Steven Rostedtf7d82352012-04-06 00:47:53 +02003281 return -1;
3282
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04003283 if (read_expect_type(TEP_EVENT_DQUOTE, &token) < 0)
Steven Rostedtf7d82352012-04-06 00:47:53 +02003284 goto fail;
3285
3286 concat:
3287 event->print_fmt.format = token;
3288 event->print_fmt.args = NULL;
3289
3290 /* ok to have no arg */
3291 type = read_token_item(&token);
3292
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04003293 if (type == TEP_EVENT_NONE)
Steven Rostedtf7d82352012-04-06 00:47:53 +02003294 return 0;
3295
3296 /* Handle concatenation of print lines */
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04003297 if (type == TEP_EVENT_DQUOTE) {
Steven Rostedtf7d82352012-04-06 00:47:53 +02003298 char *cat;
3299
Arnaldo Carvalho de Melo0dbca1e2012-09-12 15:39:59 -03003300 if (asprintf(&cat, "%s%s", event->print_fmt.format, token) < 0)
3301 goto fail;
Steven Rostedtf7d82352012-04-06 00:47:53 +02003302 free_token(token);
3303 free_token(event->print_fmt.format);
3304 event->print_fmt.format = NULL;
3305 token = cat;
3306 goto concat;
3307 }
3308
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04003309 if (test_type_token(type, token, TEP_EVENT_DELIM, ","))
Steven Rostedtf7d82352012-04-06 00:47:53 +02003310 goto fail;
3311
3312 free_token(token);
3313
3314 ret = event_read_print_args(event, &event->print_fmt.args);
3315 if (ret < 0)
3316 return -1;
3317
3318 return ret;
3319
3320 fail:
3321 free_token(token);
3322 return -1;
3323}
3324
3325/**
Tzvetomir Stoyanov (VMware)af85cd12018-08-08 14:02:50 -04003326 * tep_find_common_field - return a common field by event
Steven Rostedtf7d82352012-04-06 00:47:53 +02003327 * @event: handle for the event
3328 * @name: the name of the common field to return
3329 *
3330 * Returns a common field from the event by the given @name.
Ingo Molnar3e449f72018-12-03 11:22:00 +01003331 * This only searches the common fields and not all field.
Steven Rostedtf7d82352012-04-06 00:47:53 +02003332 */
Tzvetomir Stoyanov (VMware)2c92f982018-09-19 14:56:45 -04003333struct tep_format_field *
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05003334tep_find_common_field(struct tep_event *event, const char *name)
Steven Rostedtf7d82352012-04-06 00:47:53 +02003335{
Tzvetomir Stoyanov (VMware)2c92f982018-09-19 14:56:45 -04003336 struct tep_format_field *format;
Steven Rostedtf7d82352012-04-06 00:47:53 +02003337
3338 for (format = event->format.common_fields;
3339 format; format = format->next) {
3340 if (strcmp(format->name, name) == 0)
3341 break;
3342 }
3343
3344 return format;
3345}
3346
3347/**
Tzvetomir Stoyanov (VMware)af85cd12018-08-08 14:02:50 -04003348 * tep_find_field - find a non-common field
Steven Rostedtf7d82352012-04-06 00:47:53 +02003349 * @event: handle for the event
3350 * @name: the name of the non-common field
3351 *
3352 * Returns a non-common field by the given @name.
3353 * This does not search common fields.
3354 */
Tzvetomir Stoyanov (VMware)2c92f982018-09-19 14:56:45 -04003355struct tep_format_field *
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05003356tep_find_field(struct tep_event *event, const char *name)
Steven Rostedtf7d82352012-04-06 00:47:53 +02003357{
Tzvetomir Stoyanov (VMware)2c92f982018-09-19 14:56:45 -04003358 struct tep_format_field *format;
Steven Rostedtf7d82352012-04-06 00:47:53 +02003359
3360 for (format = event->format.fields;
3361 format; format = format->next) {
3362 if (strcmp(format->name, name) == 0)
3363 break;
3364 }
3365
3366 return format;
3367}
3368
3369/**
Tzvetomir Stoyanov (VMware)af85cd12018-08-08 14:02:50 -04003370 * tep_find_any_field - find any field by name
Steven Rostedtf7d82352012-04-06 00:47:53 +02003371 * @event: handle for the event
3372 * @name: the name of the field
3373 *
3374 * Returns a field by the given @name.
Ingo Molnar3e449f72018-12-03 11:22:00 +01003375 * This searches the common field names first, then
Steven Rostedtf7d82352012-04-06 00:47:53 +02003376 * the non-common ones if a common one was not found.
3377 */
Tzvetomir Stoyanov (VMware)2c92f982018-09-19 14:56:45 -04003378struct tep_format_field *
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05003379tep_find_any_field(struct tep_event *event, const char *name)
Steven Rostedtf7d82352012-04-06 00:47:53 +02003380{
Tzvetomir Stoyanov (VMware)2c92f982018-09-19 14:56:45 -04003381 struct tep_format_field *format;
Steven Rostedtf7d82352012-04-06 00:47:53 +02003382
Tzvetomir Stoyanov (VMware)af85cd12018-08-08 14:02:50 -04003383 format = tep_find_common_field(event, name);
Steven Rostedtf7d82352012-04-06 00:47:53 +02003384 if (format)
3385 return format;
Tzvetomir Stoyanov (VMware)af85cd12018-08-08 14:02:50 -04003386 return tep_find_field(event, name);
Steven Rostedtf7d82352012-04-06 00:47:53 +02003387}
3388
3389/**
Tzvetomir Stoyanov (VMware)59c1bae2018-08-08 14:02:53 -04003390 * tep_read_number - read a number from data
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04003391 * @tep: a handle to the trace event parser context
Steven Rostedtf7d82352012-04-06 00:47:53 +02003392 * @ptr: the raw data
3393 * @size: the size of the data that holds the number
3394 *
3395 * Returns the number (converted to host) from the
3396 * raw data.
3397 */
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04003398unsigned long long tep_read_number(struct tep_handle *tep,
Tzvetomir Stoyanov (VMware)59c1bae2018-08-08 14:02:53 -04003399 const void *ptr, int size)
Steven Rostedtf7d82352012-04-06 00:47:53 +02003400{
Tzvetomir Stoyanov6cd99d22018-11-30 10:44:10 -05003401 unsigned long long val;
3402
Steven Rostedtf7d82352012-04-06 00:47:53 +02003403 switch (size) {
3404 case 1:
3405 return *(unsigned char *)ptr;
3406 case 2:
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04003407 return tep_data2host2(tep, *(unsigned short *)ptr);
Steven Rostedtf7d82352012-04-06 00:47:53 +02003408 case 4:
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04003409 return tep_data2host4(tep, *(unsigned int *)ptr);
Steven Rostedtf7d82352012-04-06 00:47:53 +02003410 case 8:
Tzvetomir Stoyanov6cd99d22018-11-30 10:44:10 -05003411 memcpy(&val, (ptr), sizeof(unsigned long long));
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04003412 return tep_data2host8(tep, val);
Steven Rostedtf7d82352012-04-06 00:47:53 +02003413 default:
3414 /* BUG! */
3415 return 0;
3416 }
3417}
3418
3419/**
Tzvetomir Stoyanov (VMware)59c1bae2018-08-08 14:02:53 -04003420 * tep_read_number_field - read a number from data
Steven Rostedtf7d82352012-04-06 00:47:53 +02003421 * @field: a handle to the field
3422 * @data: the raw data to read
3423 * @value: the value to place the number in
3424 *
3425 * Reads raw data according to a field offset and size,
3426 * and translates it into @value.
3427 *
3428 * Returns 0 on success, -1 otherwise.
3429 */
Tzvetomir Stoyanov (VMware)2c92f982018-09-19 14:56:45 -04003430int tep_read_number_field(struct tep_format_field *field, const void *data,
Tzvetomir Stoyanov (VMware)59c1bae2018-08-08 14:02:53 -04003431 unsigned long long *value)
Steven Rostedtf7d82352012-04-06 00:47:53 +02003432{
3433 if (!field)
3434 return -1;
3435 switch (field->size) {
3436 case 1:
3437 case 2:
3438 case 4:
3439 case 8:
Tzvetomir Stoyanov69769ce2019-04-01 12:43:18 -04003440 *value = tep_read_number(field->event->tep,
Tzvetomir Stoyanov (VMware)59c1bae2018-08-08 14:02:53 -04003441 data + field->offset, field->size);
Steven Rostedtf7d82352012-04-06 00:47:53 +02003442 return 0;
3443 default:
3444 return -1;
3445 }
3446}
3447
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04003448static int get_common_info(struct tep_handle *tep,
Steven Rostedtf7d82352012-04-06 00:47:53 +02003449 const char *type, int *offset, int *size)
3450{
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05003451 struct tep_event *event;
Tzvetomir Stoyanov (VMware)2c92f982018-09-19 14:56:45 -04003452 struct tep_format_field *field;
Steven Rostedtf7d82352012-04-06 00:47:53 +02003453
3454 /*
3455 * All events should have the same common elements.
3456 * Pick any event to find where the type is;
3457 */
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04003458 if (!tep->events) {
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -03003459 do_warning("no event_list!");
3460 return -1;
3461 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02003462
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04003463 event = tep->events[0];
Tzvetomir Stoyanov (VMware)af85cd12018-08-08 14:02:50 -04003464 field = tep_find_common_field(event, type);
Steven Rostedtf7d82352012-04-06 00:47:53 +02003465 if (!field)
Steven Rostedt0866a972012-05-22 14:52:40 +09003466 return -1;
Steven Rostedtf7d82352012-04-06 00:47:53 +02003467
3468 *offset = field->offset;
3469 *size = field->size;
3470
3471 return 0;
3472}
3473
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04003474static int __parse_common(struct tep_handle *tep, void *data,
Steven Rostedtf7d82352012-04-06 00:47:53 +02003475 int *size, int *offset, const char *name)
3476{
3477 int ret;
3478
3479 if (!*size) {
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04003480 ret = get_common_info(tep, name, offset, size);
Steven Rostedtf7d82352012-04-06 00:47:53 +02003481 if (ret < 0)
3482 return ret;
3483 }
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04003484 return tep_read_number(tep, data + *offset, *size);
Steven Rostedtf7d82352012-04-06 00:47:53 +02003485}
3486
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04003487static int trace_parse_common_type(struct tep_handle *tep, void *data)
Steven Rostedtf7d82352012-04-06 00:47:53 +02003488{
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04003489 return __parse_common(tep, data,
3490 &tep->type_size, &tep->type_offset,
Steven Rostedtf7d82352012-04-06 00:47:53 +02003491 "common_type");
3492}
3493
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04003494static int parse_common_pid(struct tep_handle *tep, void *data)
Steven Rostedtf7d82352012-04-06 00:47:53 +02003495{
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04003496 return __parse_common(tep, data,
3497 &tep->pid_size, &tep->pid_offset,
Steven Rostedtf7d82352012-04-06 00:47:53 +02003498 "common_pid");
3499}
3500
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04003501static int parse_common_pc(struct tep_handle *tep, void *data)
Steven Rostedtf7d82352012-04-06 00:47:53 +02003502{
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04003503 return __parse_common(tep, data,
3504 &tep->pc_size, &tep->pc_offset,
Steven Rostedtf7d82352012-04-06 00:47:53 +02003505 "common_preempt_count");
3506}
3507
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04003508static int parse_common_flags(struct tep_handle *tep, void *data)
Steven Rostedtf7d82352012-04-06 00:47:53 +02003509{
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04003510 return __parse_common(tep, data,
3511 &tep->flags_size, &tep->flags_offset,
Steven Rostedtf7d82352012-04-06 00:47:53 +02003512 "common_flags");
3513}
3514
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04003515static int parse_common_lock_depth(struct tep_handle *tep, void *data)
Steven Rostedtf7d82352012-04-06 00:47:53 +02003516{
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04003517 return __parse_common(tep, data,
3518 &tep->ld_size, &tep->ld_offset,
Steven Rostedt0866a972012-05-22 14:52:40 +09003519 "common_lock_depth");
3520}
Steven Rostedtf7d82352012-04-06 00:47:53 +02003521
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04003522static int parse_common_migrate_disable(struct tep_handle *tep, void *data)
Steven Rostedt0866a972012-05-22 14:52:40 +09003523{
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04003524 return __parse_common(tep, data,
3525 &tep->ld_size, &tep->ld_offset,
Steven Rostedt0866a972012-05-22 14:52:40 +09003526 "common_migrate_disable");
Steven Rostedtf7d82352012-04-06 00:47:53 +02003527}
3528
3529static int events_id_cmp(const void *a, const void *b);
3530
3531/**
Tzvetomir Stoyanov (VMware)af85cd12018-08-08 14:02:50 -04003532 * tep_find_event - find an event by given id
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04003533 * @tep: a handle to the trace event parser context
Steven Rostedtf7d82352012-04-06 00:47:53 +02003534 * @id: the id of the event
3535 *
3536 * Returns an event that has a given @id.
3537 */
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04003538struct tep_event *tep_find_event(struct tep_handle *tep, int id)
Steven Rostedtf7d82352012-04-06 00:47:53 +02003539{
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05003540 struct tep_event **eventptr;
3541 struct tep_event key;
3542 struct tep_event *pkey = &key;
Steven Rostedtf7d82352012-04-06 00:47:53 +02003543
3544 /* Check cache first */
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04003545 if (tep->last_event && tep->last_event->id == id)
3546 return tep->last_event;
Steven Rostedtf7d82352012-04-06 00:47:53 +02003547
3548 key.id = id;
3549
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04003550 eventptr = bsearch(&pkey, tep->events, tep->nr_events,
3551 sizeof(*tep->events), events_id_cmp);
Steven Rostedtf7d82352012-04-06 00:47:53 +02003552
3553 if (eventptr) {
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04003554 tep->last_event = *eventptr;
Steven Rostedtf7d82352012-04-06 00:47:53 +02003555 return *eventptr;
3556 }
3557
3558 return NULL;
3559}
3560
3561/**
Tzvetomir Stoyanov (VMware)610e1e42018-08-08 14:03:05 -04003562 * tep_find_event_by_name - find an event by given name
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04003563 * @tep: a handle to the trace event parser context
Steven Rostedtf7d82352012-04-06 00:47:53 +02003564 * @sys: the system name to search for
3565 * @name: the name of the event to search for
3566 *
3567 * This returns an event with a given @name and under the system
3568 * @sys. If @sys is NULL the first event with @name is returned.
3569 */
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05003570struct tep_event *
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04003571tep_find_event_by_name(struct tep_handle *tep,
Tzvetomir Stoyanov (VMware)610e1e42018-08-08 14:03:05 -04003572 const char *sys, const char *name)
Steven Rostedtf7d82352012-04-06 00:47:53 +02003573{
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05003574 struct tep_event *event = NULL;
Steven Rostedtf7d82352012-04-06 00:47:53 +02003575 int i;
3576
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04003577 if (tep->last_event &&
3578 strcmp(tep->last_event->name, name) == 0 &&
3579 (!sys || strcmp(tep->last_event->system, sys) == 0))
3580 return tep->last_event;
Steven Rostedtf7d82352012-04-06 00:47:53 +02003581
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04003582 for (i = 0; i < tep->nr_events; i++) {
3583 event = tep->events[i];
Steven Rostedtf7d82352012-04-06 00:47:53 +02003584 if (strcmp(event->name, name) == 0) {
3585 if (!sys)
3586 break;
3587 if (strcmp(event->system, sys) == 0)
3588 break;
3589 }
3590 }
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04003591 if (i == tep->nr_events)
Steven Rostedtf7d82352012-04-06 00:47:53 +02003592 event = NULL;
3593
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04003594 tep->last_event = event;
Steven Rostedtf7d82352012-04-06 00:47:53 +02003595 return event;
3596}
3597
3598static unsigned long long
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05003599eval_num_arg(void *data, int size, struct tep_event *event, struct tep_print_arg *arg)
Steven Rostedtf7d82352012-04-06 00:47:53 +02003600{
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04003601 struct tep_handle *tep = event->tep;
Steven Rostedtf7d82352012-04-06 00:47:53 +02003602 unsigned long long val = 0;
3603 unsigned long long left, right;
Tzvetomir Stoyanov (VMware)5647f942018-09-19 14:56:49 -04003604 struct tep_print_arg *typearg = NULL;
3605 struct tep_print_arg *larg;
Steven Rostedtf7d82352012-04-06 00:47:53 +02003606 unsigned long offset;
3607 unsigned int field_size;
3608
3609 switch (arg->type) {
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04003610 case TEP_PRINT_NULL:
Steven Rostedtf7d82352012-04-06 00:47:53 +02003611 /* ?? */
3612 return 0;
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04003613 case TEP_PRINT_ATOM:
Steven Rostedtf7d82352012-04-06 00:47:53 +02003614 return strtoull(arg->atom.atom, NULL, 0);
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04003615 case TEP_PRINT_FIELD:
Steven Rostedtf7d82352012-04-06 00:47:53 +02003616 if (!arg->field.field) {
Tzvetomir Stoyanov (VMware)af85cd12018-08-08 14:02:50 -04003617 arg->field.field = tep_find_any_field(event, arg->field.name);
Steven Rostedtf7d82352012-04-06 00:47:53 +02003618 if (!arg->field.field)
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -03003619 goto out_warning_field;
3620
Steven Rostedtf7d82352012-04-06 00:47:53 +02003621 }
3622 /* must be a number */
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04003623 val = tep_read_number(tep, data + arg->field.field->offset,
Tzvetomir Stoyanov (VMware)59c1bae2018-08-08 14:02:53 -04003624 arg->field.field->size);
Steven Rostedtf7d82352012-04-06 00:47:53 +02003625 break;
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04003626 case TEP_PRINT_FLAGS:
3627 case TEP_PRINT_SYMBOL:
3628 case TEP_PRINT_INT_ARRAY:
3629 case TEP_PRINT_HEX:
3630 case TEP_PRINT_HEX_STR:
Steven Rostedtf7d82352012-04-06 00:47:53 +02003631 break;
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04003632 case TEP_PRINT_TYPE:
Steven Rostedtf7d82352012-04-06 00:47:53 +02003633 val = eval_num_arg(data, size, event, arg->typecast.item);
3634 return eval_type(val, arg, 0);
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04003635 case TEP_PRINT_STRING:
3636 case TEP_PRINT_BSTRING:
3637 case TEP_PRINT_BITMASK:
Steven Rostedtf7d82352012-04-06 00:47:53 +02003638 return 0;
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04003639 case TEP_PRINT_FUNC: {
Steven Rostedtf7d82352012-04-06 00:47:53 +02003640 struct trace_seq s;
3641 trace_seq_init(&s);
3642 val = process_defined_func(&s, data, size, event, arg);
3643 trace_seq_destroy(&s);
3644 return val;
3645 }
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04003646 case TEP_PRINT_OP:
Steven Rostedtf7d82352012-04-06 00:47:53 +02003647 if (strcmp(arg->op.op, "[") == 0) {
3648 /*
3649 * Arrays are special, since we don't want
3650 * to read the arg as is.
3651 */
3652 right = eval_num_arg(data, size, event, arg->op.right);
3653
3654 /* handle typecasts */
3655 larg = arg->op.left;
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04003656 while (larg->type == TEP_PRINT_TYPE) {
Steven Rostedtf7d82352012-04-06 00:47:53 +02003657 if (!typearg)
3658 typearg = larg;
3659 larg = larg->typecast.item;
3660 }
3661
3662 /* Default to long size */
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04003663 field_size = tep->long_size;
Steven Rostedtf7d82352012-04-06 00:47:53 +02003664
3665 switch (larg->type) {
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04003666 case TEP_PRINT_DYNAMIC_ARRAY:
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04003667 offset = tep_read_number(tep,
Steven Rostedtf7d82352012-04-06 00:47:53 +02003668 data + larg->dynarray.field->offset,
3669 larg->dynarray.field->size);
3670 if (larg->dynarray.field->elementsize)
3671 field_size = larg->dynarray.field->elementsize;
3672 /*
3673 * The actual length of the dynamic array is stored
3674 * in the top half of the field, and the offset
3675 * is in the bottom half of the 32 bit field.
3676 */
3677 offset &= 0xffff;
3678 offset += right;
3679 break;
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04003680 case TEP_PRINT_FIELD:
Steven Rostedtf7d82352012-04-06 00:47:53 +02003681 if (!larg->field.field) {
3682 larg->field.field =
Tzvetomir Stoyanov (VMware)af85cd12018-08-08 14:02:50 -04003683 tep_find_any_field(event, larg->field.name);
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -03003684 if (!larg->field.field) {
3685 arg = larg;
3686 goto out_warning_field;
3687 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02003688 }
3689 field_size = larg->field.field->elementsize;
3690 offset = larg->field.field->offset +
3691 right * larg->field.field->elementsize;
3692 break;
3693 default:
3694 goto default_op; /* oops, all bets off */
3695 }
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04003696 val = tep_read_number(tep,
Tzvetomir Stoyanov (VMware)59c1bae2018-08-08 14:02:53 -04003697 data + offset, field_size);
Steven Rostedtf7d82352012-04-06 00:47:53 +02003698 if (typearg)
3699 val = eval_type(val, typearg, 1);
3700 break;
3701 } else if (strcmp(arg->op.op, "?") == 0) {
3702 left = eval_num_arg(data, size, event, arg->op.left);
3703 arg = arg->op.right;
3704 if (left)
3705 val = eval_num_arg(data, size, event, arg->op.left);
3706 else
3707 val = eval_num_arg(data, size, event, arg->op.right);
3708 break;
3709 }
3710 default_op:
3711 left = eval_num_arg(data, size, event, arg->op.left);
3712 right = eval_num_arg(data, size, event, arg->op.right);
3713 switch (arg->op.op[0]) {
3714 case '!':
3715 switch (arg->op.op[1]) {
3716 case 0:
3717 val = !right;
3718 break;
3719 case '=':
3720 val = left != right;
3721 break;
3722 default:
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -03003723 goto out_warning_op;
Steven Rostedtf7d82352012-04-06 00:47:53 +02003724 }
3725 break;
3726 case '~':
3727 val = ~right;
3728 break;
3729 case '|':
3730 if (arg->op.op[1])
3731 val = left || right;
3732 else
3733 val = left | right;
3734 break;
3735 case '&':
3736 if (arg->op.op[1])
3737 val = left && right;
3738 else
3739 val = left & right;
3740 break;
3741 case '<':
3742 switch (arg->op.op[1]) {
3743 case 0:
3744 val = left < right;
3745 break;
3746 case '<':
3747 val = left << right;
3748 break;
3749 case '=':
3750 val = left <= right;
3751 break;
3752 default:
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -03003753 goto out_warning_op;
Steven Rostedtf7d82352012-04-06 00:47:53 +02003754 }
3755 break;
3756 case '>':
3757 switch (arg->op.op[1]) {
3758 case 0:
3759 val = left > right;
3760 break;
3761 case '>':
3762 val = left >> right;
3763 break;
3764 case '=':
3765 val = left >= right;
3766 break;
3767 default:
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -03003768 goto out_warning_op;
Steven Rostedtf7d82352012-04-06 00:47:53 +02003769 }
3770 break;
3771 case '=':
3772 if (arg->op.op[1] != '=')
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -03003773 goto out_warning_op;
3774
Steven Rostedtf7d82352012-04-06 00:47:53 +02003775 val = left == right;
3776 break;
3777 case '-':
3778 val = left - right;
3779 break;
3780 case '+':
3781 val = left + right;
3782 break;
Steven Rostedt2e7a5fc2012-04-06 00:48:04 +02003783 case '/':
3784 val = left / right;
3785 break;
Daniel Bristot de Oliveira0e47b382016-02-22 14:08:22 -03003786 case '%':
3787 val = left % right;
3788 break;
Steven Rostedt2e7a5fc2012-04-06 00:48:04 +02003789 case '*':
3790 val = left * right;
3791 break;
Steven Rostedtf7d82352012-04-06 00:47:53 +02003792 default:
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -03003793 goto out_warning_op;
Steven Rostedtf7d82352012-04-06 00:47:53 +02003794 }
3795 break;
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04003796 case TEP_PRINT_DYNAMIC_ARRAY_LEN:
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04003797 offset = tep_read_number(tep,
Tzvetomir Stoyanov (VMware)59c1bae2018-08-08 14:02:53 -04003798 data + arg->dynarray.field->offset,
3799 arg->dynarray.field->size);
He Kuang76055942015-08-29 04:22:05 +00003800 /*
3801 * The total allocated length of the dynamic array is
3802 * stored in the top half of the field, and the offset
3803 * is in the bottom half of the 32 bit field.
3804 */
3805 val = (unsigned long long)(offset >> 16);
3806 break;
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04003807 case TEP_PRINT_DYNAMIC_ARRAY:
Steven Rostedt0497a9e2013-11-11 16:08:10 -05003808 /* Without [], we pass the address to the dynamic data */
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04003809 offset = tep_read_number(tep,
Tzvetomir Stoyanov (VMware)59c1bae2018-08-08 14:02:53 -04003810 data + arg->dynarray.field->offset,
3811 arg->dynarray.field->size);
Steven Rostedt0497a9e2013-11-11 16:08:10 -05003812 /*
He Kuang76055942015-08-29 04:22:05 +00003813 * The total allocated length of the dynamic array is
3814 * stored in the top half of the field, and the offset
Steven Rostedt0497a9e2013-11-11 16:08:10 -05003815 * is in the bottom half of the 32 bit field.
3816 */
3817 offset &= 0xffff;
Arnaldo Carvalho de Melo6b5fa0b2013-11-19 16:14:51 -03003818 val = (unsigned long long)((unsigned long)data + offset);
Steven Rostedt0497a9e2013-11-11 16:08:10 -05003819 break;
Steven Rostedtf7d82352012-04-06 00:47:53 +02003820 default: /* not sure what to do there */
3821 return 0;
3822 }
3823 return val;
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -03003824
3825out_warning_op:
Namhyung Kim3388cc32014-03-19 10:22:53 +09003826 do_warning_event(event, "%s: unknown op '%s'", __func__, arg->op.op);
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -03003827 return 0;
3828
3829out_warning_field:
Namhyung Kim3388cc32014-03-19 10:22:53 +09003830 do_warning_event(event, "%s: field %s not found",
3831 __func__, arg->field.name);
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -03003832 return 0;
Steven Rostedtf7d82352012-04-06 00:47:53 +02003833}
3834
3835struct flag {
3836 const char *name;
3837 unsigned long long value;
3838};
3839
3840static const struct flag flags[] = {
3841 { "HI_SOFTIRQ", 0 },
3842 { "TIMER_SOFTIRQ", 1 },
3843 { "NET_TX_SOFTIRQ", 2 },
3844 { "NET_RX_SOFTIRQ", 3 },
3845 { "BLOCK_SOFTIRQ", 4 },
Christoph Hellwig511cbce2015-11-10 14:56:14 +01003846 { "IRQ_POLL_SOFTIRQ", 5 },
Steven Rostedtf7d82352012-04-06 00:47:53 +02003847 { "TASKLET_SOFTIRQ", 6 },
3848 { "SCHED_SOFTIRQ", 7 },
3849 { "HRTIMER_SOFTIRQ", 8 },
3850 { "RCU_SOFTIRQ", 9 },
3851
3852 { "HRTIMER_NORESTART", 0 },
3853 { "HRTIMER_RESTART", 1 },
3854};
3855
Steven Rostedt7c27f782015-03-24 14:58:13 -04003856static long long eval_flag(const char *flag)
Steven Rostedtf7d82352012-04-06 00:47:53 +02003857{
3858 int i;
3859
3860 /*
3861 * Some flags in the format files do not get converted.
3862 * If the flag is not numeric, see if it is something that
3863 * we already know about.
3864 */
3865 if (isdigit(flag[0]))
3866 return strtoull(flag, NULL, 0);
3867
3868 for (i = 0; i < (int)(sizeof(flags)/sizeof(flags[0])); i++)
3869 if (strcmp(flags[i].name, flag) == 0)
3870 return flags[i].value;
3871
Steven Rostedt7c27f782015-03-24 14:58:13 -04003872 return -1LL;
Steven Rostedtf7d82352012-04-06 00:47:53 +02003873}
3874
3875static void print_str_to_seq(struct trace_seq *s, const char *format,
3876 int len_arg, const char *str)
3877{
3878 if (len_arg >= 0)
3879 trace_seq_printf(s, format, len_arg, str);
3880 else
3881 trace_seq_printf(s, format, str);
3882}
3883
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04003884static void print_bitmask_to_seq(struct tep_handle *tep,
Steven Rostedt (Red Hat)473a7782014-06-02 23:20:16 -04003885 struct trace_seq *s, const char *format,
3886 int len_arg, const void *data, int size)
3887{
3888 int nr_bits = size * 8;
3889 int str_size = (nr_bits + 3) / 4;
3890 int len = 0;
3891 char buf[3];
3892 char *str;
3893 int index;
3894 int i;
3895
3896 /*
3897 * The kernel likes to put in commas every 32 bits, we
3898 * can do the same.
3899 */
3900 str_size += (nr_bits - 1) / 32;
3901
3902 str = malloc(str_size + 1);
3903 if (!str) {
3904 do_warning("%s: not enough memory!", __func__);
3905 return;
3906 }
3907 str[str_size] = 0;
3908
3909 /* Start out with -2 for the two chars per byte */
3910 for (i = str_size - 2; i >= 0; i -= 2) {
3911 /*
3912 * data points to a bit mask of size bytes.
3913 * In the kernel, this is an array of long words, thus
Ingo Molnar3e449f72018-12-03 11:22:00 +01003914 * endianness is very important.
Steven Rostedt (Red Hat)473a7782014-06-02 23:20:16 -04003915 */
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04003916 if (tep->file_bigendian)
Steven Rostedt (Red Hat)473a7782014-06-02 23:20:16 -04003917 index = size - (len + 1);
3918 else
3919 index = len;
3920
3921 snprintf(buf, 3, "%02x", *((unsigned char *)data + index));
3922 memcpy(str + i, buf, 2);
3923 len++;
3924 if (!(len & 3) && i > 0) {
3925 i--;
3926 str[i] = ',';
3927 }
3928 }
3929
3930 if (len_arg >= 0)
3931 trace_seq_printf(s, format, len_arg, str);
3932 else
3933 trace_seq_printf(s, format, str);
3934
3935 free(str);
3936}
3937
Steven Rostedtf7d82352012-04-06 00:47:53 +02003938static void print_str_arg(struct trace_seq *s, void *data, int size,
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05003939 struct tep_event *event, const char *format,
Tzvetomir Stoyanov (VMware)5647f942018-09-19 14:56:49 -04003940 int len_arg, struct tep_print_arg *arg)
Steven Rostedtf7d82352012-04-06 00:47:53 +02003941{
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04003942 struct tep_handle *tep = event->tep;
Tzvetomir Stoyanov (VMware)5647f942018-09-19 14:56:49 -04003943 struct tep_print_flag_sym *flag;
Tzvetomir Stoyanov (VMware)2c92f982018-09-19 14:56:45 -04003944 struct tep_format_field *field;
Steven Rostedt (Red Hat)0970b5f2013-11-01 17:53:55 -04003945 struct printk_map *printk;
Steven Rostedt7c27f782015-03-24 14:58:13 -04003946 long long val, fval;
Kapileshwar Singhc2e4b242015-09-22 14:22:03 +01003947 unsigned long long addr;
Steven Rostedtf7d82352012-04-06 00:47:53 +02003948 char *str;
Namhyung Kime080e6f2012-06-27 09:41:41 +09003949 unsigned char *hex;
Steven Rostedtf7d82352012-04-06 00:47:53 +02003950 int print;
Namhyung Kime080e6f2012-06-27 09:41:41 +09003951 int i, len;
Steven Rostedtf7d82352012-04-06 00:47:53 +02003952
3953 switch (arg->type) {
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04003954 case TEP_PRINT_NULL:
Steven Rostedtf7d82352012-04-06 00:47:53 +02003955 /* ?? */
3956 return;
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04003957 case TEP_PRINT_ATOM:
Steven Rostedtf7d82352012-04-06 00:47:53 +02003958 print_str_to_seq(s, format, len_arg, arg->atom.atom);
3959 return;
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04003960 case TEP_PRINT_FIELD:
Namhyung Kimb7008072012-06-27 09:41:40 +09003961 field = arg->field.field;
3962 if (!field) {
Tzvetomir Stoyanov (VMware)af85cd12018-08-08 14:02:50 -04003963 field = tep_find_any_field(event, arg->field.name);
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -03003964 if (!field) {
3965 str = arg->field.name;
3966 goto out_warning_field;
3967 }
Namhyung Kimb7008072012-06-27 09:41:40 +09003968 arg->field.field = field;
Steven Rostedtf7d82352012-04-06 00:47:53 +02003969 }
3970 /* Zero sized fields, mean the rest of the data */
Namhyung Kimb7008072012-06-27 09:41:40 +09003971 len = field->size ? : size - field->offset;
Steven Rostedtf7d82352012-04-06 00:47:53 +02003972
3973 /*
3974 * Some events pass in pointers. If this is not an array
3975 * and the size is the same as long_size, assume that it
3976 * is a pointer.
3977 */
Tzvetomir Stoyanov (VMware)bb39ccb2018-09-19 14:56:46 -04003978 if (!(field->flags & TEP_FIELD_IS_ARRAY) &&
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04003979 field->size == tep->long_size) {
Kapileshwar Singhc2e4b242015-09-22 14:22:03 +01003980
3981 /* Handle heterogeneous recording and processing
3982 * architectures
3983 *
3984 * CASE I:
3985 * Traces recorded on 32-bit devices (32-bit
3986 * addressing) and processed on 64-bit devices:
3987 * In this case, only 32 bits should be read.
3988 *
3989 * CASE II:
3990 * Traces recorded on 64 bit devices and processed
3991 * on 32-bit devices:
3992 * In this case, 64 bits must be read.
3993 */
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04003994 addr = (tep->long_size == 8) ?
Kapileshwar Singhc2e4b242015-09-22 14:22:03 +01003995 *(unsigned long long *)(data + field->offset) :
3996 (unsigned long long)*(unsigned int *)(data + field->offset);
3997
Steven Rostedt (Red Hat)0970b5f2013-11-01 17:53:55 -04003998 /* Check if it matches a print format */
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04003999 printk = find_printk(tep, addr);
Steven Rostedt (Red Hat)0970b5f2013-11-01 17:53:55 -04004000 if (printk)
4001 trace_seq_puts(s, printk->printk);
4002 else
Kapileshwar Singhc2e4b242015-09-22 14:22:03 +01004003 trace_seq_printf(s, "%llx", addr);
Steven Rostedtf7d82352012-04-06 00:47:53 +02004004 break;
4005 }
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -03004006 str = malloc(len + 1);
4007 if (!str) {
Namhyung Kim3388cc32014-03-19 10:22:53 +09004008 do_warning_event(event, "%s: not enough memory!",
4009 __func__);
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -03004010 return;
4011 }
Namhyung Kimb7008072012-06-27 09:41:40 +09004012 memcpy(str, data + field->offset, len);
Steven Rostedtf7d82352012-04-06 00:47:53 +02004013 str[len] = 0;
4014 print_str_to_seq(s, format, len_arg, str);
4015 free(str);
4016 break;
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04004017 case TEP_PRINT_FLAGS:
Steven Rostedtf7d82352012-04-06 00:47:53 +02004018 val = eval_num_arg(data, size, event, arg->flags.field);
4019 print = 0;
4020 for (flag = arg->flags.flags; flag; flag = flag->next) {
4021 fval = eval_flag(flag->value);
Steven Rostedt7c27f782015-03-24 14:58:13 -04004022 if (!val && fval < 0) {
Steven Rostedtf7d82352012-04-06 00:47:53 +02004023 print_str_to_seq(s, format, len_arg, flag->str);
4024 break;
4025 }
Steven Rostedt7c27f782015-03-24 14:58:13 -04004026 if (fval > 0 && (val & fval) == fval) {
Steven Rostedtf7d82352012-04-06 00:47:53 +02004027 if (print && arg->flags.delim)
4028 trace_seq_puts(s, arg->flags.delim);
4029 print_str_to_seq(s, format, len_arg, flag->str);
4030 print = 1;
4031 val &= ~fval;
4032 }
4033 }
Steven Rostedt (VMware)3df76c92018-01-11 19:47:43 -05004034 if (val) {
4035 if (print && arg->flags.delim)
4036 trace_seq_puts(s, arg->flags.delim);
4037 trace_seq_printf(s, "0x%llx", val);
4038 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02004039 break;
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04004040 case TEP_PRINT_SYMBOL:
Steven Rostedtf7d82352012-04-06 00:47:53 +02004041 val = eval_num_arg(data, size, event, arg->symbol.field);
4042 for (flag = arg->symbol.symbols; flag; flag = flag->next) {
4043 fval = eval_flag(flag->value);
4044 if (val == fval) {
4045 print_str_to_seq(s, format, len_arg, flag->str);
4046 break;
4047 }
4048 }
Jan Kiszkad6344472018-01-11 19:47:44 -05004049 if (!flag)
4050 trace_seq_printf(s, "0x%llx", val);
Steven Rostedtf7d82352012-04-06 00:47:53 +02004051 break;
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04004052 case TEP_PRINT_HEX:
4053 case TEP_PRINT_HEX_STR:
4054 if (arg->hex.field->type == TEP_PRINT_DYNAMIC_ARRAY) {
Howard Cochranb30f75e2013-11-01 17:53:56 -04004055 unsigned long offset;
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04004056 offset = tep_read_number(tep,
Howard Cochranb30f75e2013-11-01 17:53:56 -04004057 data + arg->hex.field->dynarray.field->offset,
4058 arg->hex.field->dynarray.field->size);
4059 hex = data + (offset & 0xffff);
4060 } else {
4061 field = arg->hex.field->field.field;
4062 if (!field) {
4063 str = arg->hex.field->field.name;
Tzvetomir Stoyanov (VMware)af85cd12018-08-08 14:02:50 -04004064 field = tep_find_any_field(event, str);
Howard Cochranb30f75e2013-11-01 17:53:56 -04004065 if (!field)
4066 goto out_warning_field;
4067 arg->hex.field->field.field = field;
4068 }
4069 hex = data + field->offset;
Namhyung Kime080e6f2012-06-27 09:41:41 +09004070 }
Namhyung Kime080e6f2012-06-27 09:41:41 +09004071 len = eval_num_arg(data, size, event, arg->hex.size);
4072 for (i = 0; i < len; i++) {
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04004073 if (i && arg->type == TEP_PRINT_HEX)
Namhyung Kime080e6f2012-06-27 09:41:41 +09004074 trace_seq_putc(s, ' ');
4075 trace_seq_printf(s, "%02x", hex[i]);
4076 }
4077 break;
Steven Rostedtf7d82352012-04-06 00:47:53 +02004078
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04004079 case TEP_PRINT_INT_ARRAY: {
Javi Merinob839e1e82015-03-24 11:07:19 +00004080 void *num;
4081 int el_size;
4082
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04004083 if (arg->int_array.field->type == TEP_PRINT_DYNAMIC_ARRAY) {
Javi Merinob839e1e82015-03-24 11:07:19 +00004084 unsigned long offset;
Tzvetomir Stoyanov (VMware)2c92f982018-09-19 14:56:45 -04004085 struct tep_format_field *field =
Javi Merinob839e1e82015-03-24 11:07:19 +00004086 arg->int_array.field->dynarray.field;
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04004087 offset = tep_read_number(tep,
Tzvetomir Stoyanov (VMware)59c1bae2018-08-08 14:02:53 -04004088 data + field->offset,
4089 field->size);
Javi Merinob839e1e82015-03-24 11:07:19 +00004090 num = data + (offset & 0xffff);
4091 } else {
4092 field = arg->int_array.field->field.field;
4093 if (!field) {
4094 str = arg->int_array.field->field.name;
Tzvetomir Stoyanov (VMware)af85cd12018-08-08 14:02:50 -04004095 field = tep_find_any_field(event, str);
Javi Merinob839e1e82015-03-24 11:07:19 +00004096 if (!field)
4097 goto out_warning_field;
4098 arg->int_array.field->field.field = field;
4099 }
4100 num = data + field->offset;
4101 }
4102 len = eval_num_arg(data, size, event, arg->int_array.count);
4103 el_size = eval_num_arg(data, size, event,
4104 arg->int_array.el_size);
4105 for (i = 0; i < len; i++) {
4106 if (i)
4107 trace_seq_putc(s, ' ');
4108
4109 if (el_size == 1) {
4110 trace_seq_printf(s, "%u", *(uint8_t *)num);
4111 } else if (el_size == 2) {
4112 trace_seq_printf(s, "%u", *(uint16_t *)num);
4113 } else if (el_size == 4) {
4114 trace_seq_printf(s, "%u", *(uint32_t *)num);
4115 } else if (el_size == 8) {
Namhyung Kim410ceb82015-04-24 10:45:16 +09004116 trace_seq_printf(s, "%"PRIu64, *(uint64_t *)num);
Javi Merinob839e1e82015-03-24 11:07:19 +00004117 } else {
4118 trace_seq_printf(s, "BAD SIZE:%d 0x%x",
4119 el_size, *(uint8_t *)num);
4120 el_size = 1;
4121 }
4122
4123 num += el_size;
4124 }
4125 break;
4126 }
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04004127 case TEP_PRINT_TYPE:
Steven Rostedtf7d82352012-04-06 00:47:53 +02004128 break;
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04004129 case TEP_PRINT_STRING: {
Steven Rostedtf7d82352012-04-06 00:47:53 +02004130 int str_offset;
4131
4132 if (arg->string.offset == -1) {
Tzvetomir Stoyanov (VMware)2c92f982018-09-19 14:56:45 -04004133 struct tep_format_field *f;
Steven Rostedtf7d82352012-04-06 00:47:53 +02004134
Tzvetomir Stoyanov (VMware)af85cd12018-08-08 14:02:50 -04004135 f = tep_find_any_field(event, arg->string.string);
Steven Rostedtf7d82352012-04-06 00:47:53 +02004136 arg->string.offset = f->offset;
4137 }
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04004138 str_offset = tep_data2host4(tep, *(unsigned int *)(data + arg->string.offset));
Steven Rostedtf7d82352012-04-06 00:47:53 +02004139 str_offset &= 0xffff;
4140 print_str_to_seq(s, format, len_arg, ((char *)data) + str_offset);
4141 break;
4142 }
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04004143 case TEP_PRINT_BSTRING:
Steven Rostedtc2e6dc22011-11-15 18:47:48 -05004144 print_str_to_seq(s, format, len_arg, arg->string.string);
Steven Rostedtf7d82352012-04-06 00:47:53 +02004145 break;
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04004146 case TEP_PRINT_BITMASK: {
Steven Rostedt (Red Hat)473a7782014-06-02 23:20:16 -04004147 int bitmask_offset;
4148 int bitmask_size;
4149
4150 if (arg->bitmask.offset == -1) {
Tzvetomir Stoyanov (VMware)2c92f982018-09-19 14:56:45 -04004151 struct tep_format_field *f;
Steven Rostedt (Red Hat)473a7782014-06-02 23:20:16 -04004152
Tzvetomir Stoyanov (VMware)af85cd12018-08-08 14:02:50 -04004153 f = tep_find_any_field(event, arg->bitmask.bitmask);
Steven Rostedt (Red Hat)473a7782014-06-02 23:20:16 -04004154 arg->bitmask.offset = f->offset;
4155 }
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04004156 bitmask_offset = tep_data2host4(tep, *(unsigned int *)(data + arg->bitmask.offset));
Steven Rostedt (Red Hat)473a7782014-06-02 23:20:16 -04004157 bitmask_size = bitmask_offset >> 16;
4158 bitmask_offset &= 0xffff;
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04004159 print_bitmask_to_seq(tep, s, format, len_arg,
Steven Rostedt (Red Hat)473a7782014-06-02 23:20:16 -04004160 data + bitmask_offset, bitmask_size);
4161 break;
4162 }
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04004163 case TEP_PRINT_OP:
Steven Rostedtf7d82352012-04-06 00:47:53 +02004164 /*
4165 * The only op for string should be ? :
4166 */
4167 if (arg->op.op[0] != '?')
4168 return;
4169 val = eval_num_arg(data, size, event, arg->op.left);
4170 if (val)
4171 print_str_arg(s, data, size, event,
4172 format, len_arg, arg->op.right->op.left);
4173 else
4174 print_str_arg(s, data, size, event,
4175 format, len_arg, arg->op.right->op.right);
4176 break;
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04004177 case TEP_PRINT_FUNC:
Steven Rostedtf7d82352012-04-06 00:47:53 +02004178 process_defined_func(s, data, size, event, arg);
4179 break;
4180 default:
4181 /* well... */
4182 break;
4183 }
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -03004184
4185 return;
4186
4187out_warning_field:
Namhyung Kim3388cc32014-03-19 10:22:53 +09004188 do_warning_event(event, "%s: field %s not found",
4189 __func__, arg->field.name);
Steven Rostedtf7d82352012-04-06 00:47:53 +02004190}
4191
4192static unsigned long long
4193process_defined_func(struct trace_seq *s, void *data, int size,
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05004194 struct tep_event *event, struct tep_print_arg *arg)
Steven Rostedtf7d82352012-04-06 00:47:53 +02004195{
Tzvetomir Stoyanov (VMware)3cf47782018-08-08 14:02:59 -04004196 struct tep_function_handler *func_handle = arg->func.func;
Tzvetomir Stoyanov (VMware)0ae98632018-08-08 14:03:09 -04004197 struct func_params *param;
Steven Rostedtf7d82352012-04-06 00:47:53 +02004198 unsigned long long *args;
4199 unsigned long long ret;
Tzvetomir Stoyanov (VMware)5647f942018-09-19 14:56:49 -04004200 struct tep_print_arg *farg;
Steven Rostedtf7d82352012-04-06 00:47:53 +02004201 struct trace_seq str;
4202 struct save_str {
4203 struct save_str *next;
4204 char *str;
4205 } *strings = NULL, *string;
4206 int i;
4207
4208 if (!func_handle->nr_args) {
4209 ret = (*func_handle->func)(s, NULL);
4210 goto out;
4211 }
4212
4213 farg = arg->func.args;
4214 param = func_handle->params;
4215
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -03004216 ret = ULLONG_MAX;
4217 args = malloc(sizeof(*args) * func_handle->nr_args);
4218 if (!args)
4219 goto out;
4220
Steven Rostedtf7d82352012-04-06 00:47:53 +02004221 for (i = 0; i < func_handle->nr_args; i++) {
4222 switch (param->type) {
Tzvetomir Stoyanov (VMware)3cf47782018-08-08 14:02:59 -04004223 case TEP_FUNC_ARG_INT:
4224 case TEP_FUNC_ARG_LONG:
4225 case TEP_FUNC_ARG_PTR:
Steven Rostedtf7d82352012-04-06 00:47:53 +02004226 args[i] = eval_num_arg(data, size, event, farg);
4227 break;
Tzvetomir Stoyanov (VMware)3cf47782018-08-08 14:02:59 -04004228 case TEP_FUNC_ARG_STRING:
Steven Rostedtf7d82352012-04-06 00:47:53 +02004229 trace_seq_init(&str);
4230 print_str_arg(&str, data, size, event, "%s", -1, farg);
4231 trace_seq_terminate(&str);
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -03004232 string = malloc(sizeof(*string));
4233 if (!string) {
Namhyung Kim3388cc32014-03-19 10:22:53 +09004234 do_warning_event(event, "%s(%d): malloc str",
4235 __func__, __LINE__);
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -03004236 goto out_free;
4237 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02004238 string->next = strings;
4239 string->str = strdup(str.buffer);
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -03004240 if (!string->str) {
4241 free(string);
Namhyung Kim3388cc32014-03-19 10:22:53 +09004242 do_warning_event(event, "%s(%d): malloc str",
4243 __func__, __LINE__);
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -03004244 goto out_free;
4245 }
Robert Richter0cf26012012-08-07 19:43:14 +02004246 args[i] = (uintptr_t)string->str;
Steven Rostedtf7d82352012-04-06 00:47:53 +02004247 strings = string;
4248 trace_seq_destroy(&str);
4249 break;
4250 default:
4251 /*
4252 * Something went totally wrong, this is not
4253 * an input error, something in this code broke.
4254 */
Namhyung Kim3388cc32014-03-19 10:22:53 +09004255 do_warning_event(event, "Unexpected end of arguments\n");
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -03004256 goto out_free;
Steven Rostedtf7d82352012-04-06 00:47:53 +02004257 }
4258 farg = farg->next;
Namhyung Kim21c69e722012-05-23 11:36:51 +09004259 param = param->next;
Steven Rostedtf7d82352012-04-06 00:47:53 +02004260 }
4261
4262 ret = (*func_handle->func)(s, args);
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -03004263out_free:
Steven Rostedtf7d82352012-04-06 00:47:53 +02004264 free(args);
4265 while (strings) {
4266 string = strings;
4267 strings = string->next;
4268 free(string->str);
4269 free(string);
4270 }
4271
4272 out:
4273 /* TBD : handle return type here */
4274 return ret;
4275}
4276
Tzvetomir Stoyanov (VMware)5647f942018-09-19 14:56:49 -04004277static void free_args(struct tep_print_arg *args)
Arnaldo Carvalho de Melo0dbca1e2012-09-12 15:39:59 -03004278{
Tzvetomir Stoyanov (VMware)5647f942018-09-19 14:56:49 -04004279 struct tep_print_arg *next;
Arnaldo Carvalho de Melo0dbca1e2012-09-12 15:39:59 -03004280
4281 while (args) {
4282 next = args->next;
4283
4284 free_arg(args);
4285 args = next;
4286 }
4287}
4288
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05004289static struct tep_print_arg *make_bprint_args(char *fmt, void *data, int size, struct tep_event *event)
Steven Rostedtf7d82352012-04-06 00:47:53 +02004290{
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04004291 struct tep_handle *tep = event->tep;
Tzvetomir Stoyanov (VMware)2c92f982018-09-19 14:56:45 -04004292 struct tep_format_field *field, *ip_field;
Tzvetomir Stoyanov (VMware)5647f942018-09-19 14:56:49 -04004293 struct tep_print_arg *args, *arg, **next;
Steven Rostedtf7d82352012-04-06 00:47:53 +02004294 unsigned long long ip, val;
4295 char *ptr;
4296 void *bptr;
Adrian Hunter0631ca32018-11-22 13:29:37 +02004297 int vsize = 0;
Steven Rostedtf7d82352012-04-06 00:47:53 +02004298
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04004299 field = tep->bprint_buf_field;
4300 ip_field = tep->bprint_ip_field;
Steven Rostedtf7d82352012-04-06 00:47:53 +02004301
4302 if (!field) {
Tzvetomir Stoyanov (VMware)af85cd12018-08-08 14:02:50 -04004303 field = tep_find_field(event, "buf");
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -03004304 if (!field) {
Namhyung Kim3388cc32014-03-19 10:22:53 +09004305 do_warning_event(event, "can't find buffer field for binary printk");
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -03004306 return NULL;
4307 }
Tzvetomir Stoyanov (VMware)af85cd12018-08-08 14:02:50 -04004308 ip_field = tep_find_field(event, "ip");
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -03004309 if (!ip_field) {
Namhyung Kim3388cc32014-03-19 10:22:53 +09004310 do_warning_event(event, "can't find ip field for binary printk");
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -03004311 return NULL;
4312 }
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04004313 tep->bprint_buf_field = field;
4314 tep->bprint_ip_field = ip_field;
Steven Rostedtf7d82352012-04-06 00:47:53 +02004315 }
4316
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04004317 ip = tep_read_number(tep, data + ip_field->offset, ip_field->size);
Steven Rostedtf7d82352012-04-06 00:47:53 +02004318
4319 /*
4320 * The first arg is the IP pointer.
4321 */
4322 args = alloc_arg();
Namhyung Kimb1ac7542012-09-20 11:09:19 +09004323 if (!args) {
Namhyung Kim3388cc32014-03-19 10:22:53 +09004324 do_warning_event(event, "%s(%d): not enough memory!",
4325 __func__, __LINE__);
Namhyung Kimb1ac7542012-09-20 11:09:19 +09004326 return NULL;
4327 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02004328 arg = args;
4329 arg->next = NULL;
4330 next = &arg->next;
4331
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04004332 arg->type = TEP_PRINT_ATOM;
Arnaldo Carvalho de Melo0dbca1e2012-09-12 15:39:59 -03004333
4334 if (asprintf(&arg->atom.atom, "%lld", ip) < 0)
4335 goto out_free;
Steven Rostedtf7d82352012-04-06 00:47:53 +02004336
Scott Woodbbedb172015-03-11 22:13:57 -05004337 /* skip the first "%ps: " */
Steven Rostedt (Red Hat)0883d9d2013-11-01 17:53:57 -04004338 for (ptr = fmt + 5, bptr = data + field->offset;
Steven Rostedtf7d82352012-04-06 00:47:53 +02004339 bptr < data + size && *ptr; ptr++) {
4340 int ls = 0;
4341
4342 if (*ptr == '%') {
4343 process_again:
4344 ptr++;
4345 switch (*ptr) {
4346 case '%':
4347 break;
4348 case 'l':
4349 ls++;
4350 goto process_again;
4351 case 'L':
4352 ls = 2;
4353 goto process_again;
4354 case '0' ... '9':
4355 goto process_again;
Steven Rostedtc2e6dc22011-11-15 18:47:48 -05004356 case '.':
4357 goto process_again;
Steven Rostedt (Red Hat)55426292015-03-24 09:57:51 -04004358 case 'z':
4359 case 'Z':
4360 ls = 1;
4361 goto process_again;
Steven Rostedtf7d82352012-04-06 00:47:53 +02004362 case 'p':
4363 ls = 1;
Steven Rostedt (VMware)37db96b2018-01-11 19:47:46 -05004364 if (isalnum(ptr[1])) {
4365 ptr++;
4366 /* Check for special pointers */
4367 switch (*ptr) {
4368 case 's':
4369 case 'S':
Steven Rostedt (VMware)328b82b2019-04-01 12:43:06 -04004370 case 'x':
Steven Rostedt (VMware)37db96b2018-01-11 19:47:46 -05004371 break;
Sakari Ailusb295c3e2019-09-18 16:34:07 +03004372 case 'f':
4373 case 'F':
4374 /*
4375 * Pre-5.5 kernels use %pf and
4376 * %pF for printing symbols
4377 * while kernels since 5.5 use
4378 * %pfw for fwnodes. So check
4379 * %p[fF] isn't followed by 'w'.
4380 */
4381 if (ptr[1] != 'w')
4382 break;
4383 /* fall through */
Steven Rostedt (VMware)37db96b2018-01-11 19:47:46 -05004384 default:
4385 /*
4386 * Older kernels do not process
4387 * dereferenced pointers.
4388 * Only process if the pointer
4389 * value is a printable.
4390 */
4391 if (isprint(*(char *)bptr))
4392 goto process_string;
4393 }
4394 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02004395 /* fall through */
4396 case 'd':
4397 case 'u':
Steven Rostedtf7d82352012-04-06 00:47:53 +02004398 case 'i':
Konstantin Khlebnikov10f64582019-11-10 13:11:01 +03004399 case 'x':
4400 case 'X':
4401 case 'o':
Steven Rostedtc2e6dc22011-11-15 18:47:48 -05004402 switch (ls) {
4403 case 0:
4404 vsize = 4;
4405 break;
4406 case 1:
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04004407 vsize = tep->long_size;
Steven Rostedtc2e6dc22011-11-15 18:47:48 -05004408 break;
4409 case 2:
4410 vsize = 8;
Peter Huewec9bbabe2012-04-24 23:19:40 +02004411 break;
Steven Rostedtc2e6dc22011-11-15 18:47:48 -05004412 default:
4413 vsize = ls; /* ? */
4414 break;
4415 }
4416 /* fall through */
4417 case '*':
4418 if (*ptr == '*')
4419 vsize = 4;
4420
Steven Rostedtf7d82352012-04-06 00:47:53 +02004421 /* the pointers are always 4 bytes aligned */
4422 bptr = (void *)(((unsigned long)bptr + 3) &
4423 ~3);
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04004424 val = tep_read_number(tep, bptr, vsize);
Steven Rostedtc2e6dc22011-11-15 18:47:48 -05004425 bptr += vsize;
Steven Rostedtf7d82352012-04-06 00:47:53 +02004426 arg = alloc_arg();
Namhyung Kimb1ac7542012-09-20 11:09:19 +09004427 if (!arg) {
Namhyung Kim3388cc32014-03-19 10:22:53 +09004428 do_warning_event(event, "%s(%d): not enough memory!",
Namhyung Kimb1ac7542012-09-20 11:09:19 +09004429 __func__, __LINE__);
4430 goto out_free;
4431 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02004432 arg->next = NULL;
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04004433 arg->type = TEP_PRINT_ATOM;
Arnaldo Carvalho de Melo0dbca1e2012-09-12 15:39:59 -03004434 if (asprintf(&arg->atom.atom, "%lld", val) < 0) {
4435 free(arg);
4436 goto out_free;
4437 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02004438 *next = arg;
4439 next = &arg->next;
Steven Rostedtc2e6dc22011-11-15 18:47:48 -05004440 /*
4441 * The '*' case means that an arg is used as the length.
4442 * We need to continue to figure out for what.
4443 */
4444 if (*ptr == '*')
4445 goto process_again;
4446
Steven Rostedtf7d82352012-04-06 00:47:53 +02004447 break;
4448 case 's':
Steven Rostedt (VMware)37db96b2018-01-11 19:47:46 -05004449 process_string:
Steven Rostedtf7d82352012-04-06 00:47:53 +02004450 arg = alloc_arg();
Namhyung Kimb1ac7542012-09-20 11:09:19 +09004451 if (!arg) {
Namhyung Kim3388cc32014-03-19 10:22:53 +09004452 do_warning_event(event, "%s(%d): not enough memory!",
Namhyung Kimb1ac7542012-09-20 11:09:19 +09004453 __func__, __LINE__);
4454 goto out_free;
4455 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02004456 arg->next = NULL;
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04004457 arg->type = TEP_PRINT_BSTRING;
Steven Rostedtf7d82352012-04-06 00:47:53 +02004458 arg->string.string = strdup(bptr);
Namhyung Kimca638582012-04-09 11:54:31 +09004459 if (!arg->string.string)
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -03004460 goto out_free;
Steven Rostedtf7d82352012-04-06 00:47:53 +02004461 bptr += strlen(bptr) + 1;
4462 *next = arg;
4463 next = &arg->next;
4464 default:
4465 break;
4466 }
4467 }
4468 }
4469
4470 return args;
Steven Rostedtf7d82352012-04-06 00:47:53 +02004471
Arnaldo Carvalho de Melo0dbca1e2012-09-12 15:39:59 -03004472out_free:
4473 free_args(args);
4474 return NULL;
Steven Rostedtf7d82352012-04-06 00:47:53 +02004475}
4476
4477static char *
Irina Tirdea1d037ca2012-09-11 01:15:03 +03004478get_bprint_format(void *data, int size __maybe_unused,
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05004479 struct tep_event *event)
Steven Rostedtf7d82352012-04-06 00:47:53 +02004480{
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04004481 struct tep_handle *tep = event->tep;
Steven Rostedtf7d82352012-04-06 00:47:53 +02004482 unsigned long long addr;
Tzvetomir Stoyanov (VMware)2c92f982018-09-19 14:56:45 -04004483 struct tep_format_field *field;
Steven Rostedtf7d82352012-04-06 00:47:53 +02004484 struct printk_map *printk;
4485 char *format;
Steven Rostedtf7d82352012-04-06 00:47:53 +02004486
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04004487 field = tep->bprint_fmt_field;
Steven Rostedtf7d82352012-04-06 00:47:53 +02004488
4489 if (!field) {
Tzvetomir Stoyanov (VMware)af85cd12018-08-08 14:02:50 -04004490 field = tep_find_field(event, "fmt");
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -03004491 if (!field) {
Namhyung Kim3388cc32014-03-19 10:22:53 +09004492 do_warning_event(event, "can't find format field for binary printk");
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -03004493 return NULL;
4494 }
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04004495 tep->bprint_fmt_field = field;
Steven Rostedtf7d82352012-04-06 00:47:53 +02004496 }
4497
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04004498 addr = tep_read_number(tep, data + field->offset, field->size);
Steven Rostedtf7d82352012-04-06 00:47:53 +02004499
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04004500 printk = find_printk(tep, addr);
Steven Rostedtf7d82352012-04-06 00:47:53 +02004501 if (!printk) {
Sakari Ailusb295c3e2019-09-18 16:34:07 +03004502 if (asprintf(&format, "%%ps: (NO FORMAT FOUND at %llx)\n", addr) < 0)
Arnaldo Carvalho de Melo0dbca1e2012-09-12 15:39:59 -03004503 return NULL;
Steven Rostedtf7d82352012-04-06 00:47:53 +02004504 return format;
4505 }
4506
Sakari Ailusb295c3e2019-09-18 16:34:07 +03004507 if (asprintf(&format, "%s: %s", "%ps", printk->printk) < 0)
Arnaldo Carvalho de Melo0dbca1e2012-09-12 15:39:59 -03004508 return NULL;
Steven Rostedtf7d82352012-04-06 00:47:53 +02004509
4510 return format;
4511}
4512
4513static void print_mac_arg(struct trace_seq *s, int mac, void *data, int size,
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05004514 struct tep_event *event, struct tep_print_arg *arg)
Steven Rostedtf7d82352012-04-06 00:47:53 +02004515{
4516 unsigned char *buf;
Arnaldo Carvalho de Melo27f94d52012-11-09 17:40:47 -03004517 const char *fmt = "%.2x:%.2x:%.2x:%.2x:%.2x:%.2x";
Steven Rostedtf7d82352012-04-06 00:47:53 +02004518
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04004519 if (arg->type == TEP_PRINT_FUNC) {
Steven Rostedtf7d82352012-04-06 00:47:53 +02004520 process_defined_func(s, data, size, event, arg);
4521 return;
4522 }
4523
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04004524 if (arg->type != TEP_PRINT_FIELD) {
Steven Rostedtf7d82352012-04-06 00:47:53 +02004525 trace_seq_printf(s, "ARG TYPE NOT FIELD BUT %d",
4526 arg->type);
4527 return;
4528 }
4529
4530 if (mac == 'm')
4531 fmt = "%.2x%.2x%.2x%.2x%.2x%.2x";
4532 if (!arg->field.field) {
4533 arg->field.field =
Tzvetomir Stoyanov (VMware)af85cd12018-08-08 14:02:50 -04004534 tep_find_any_field(event, arg->field.name);
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -03004535 if (!arg->field.field) {
Namhyung Kim3388cc32014-03-19 10:22:53 +09004536 do_warning_event(event, "%s: field %s not found",
4537 __func__, arg->field.name);
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -03004538 return;
4539 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02004540 }
4541 if (arg->field.field->size != 6) {
4542 trace_seq_printf(s, "INVALIDMAC");
4543 return;
4544 }
4545 buf = data + arg->field.field->offset;
4546 trace_seq_printf(s, fmt, buf[0], buf[1], buf[2], buf[3], buf[4], buf[5]);
4547}
4548
David Ahern3d199b52014-12-18 19:11:11 -07004549static void print_ip4_addr(struct trace_seq *s, char i, unsigned char *buf)
4550{
4551 const char *fmt;
4552
4553 if (i == 'i')
4554 fmt = "%03d.%03d.%03d.%03d";
4555 else
4556 fmt = "%d.%d.%d.%d";
4557
4558 trace_seq_printf(s, fmt, buf[0], buf[1], buf[2], buf[3]);
4559}
4560
4561static inline bool ipv6_addr_v4mapped(const struct in6_addr *a)
4562{
4563 return ((unsigned long)(a->s6_addr32[0] | a->s6_addr32[1]) |
4564 (unsigned long)(a->s6_addr32[2] ^ htonl(0x0000ffff))) == 0UL;
4565}
4566
4567static inline bool ipv6_addr_is_isatap(const struct in6_addr *addr)
4568{
4569 return (addr->s6_addr32[2] | htonl(0x02000000)) == htonl(0x02005EFE);
4570}
4571
4572static void print_ip6c_addr(struct trace_seq *s, unsigned char *addr)
4573{
4574 int i, j, range;
4575 unsigned char zerolength[8];
4576 int longest = 1;
4577 int colonpos = -1;
4578 uint16_t word;
4579 uint8_t hi, lo;
4580 bool needcolon = false;
4581 bool useIPv4;
4582 struct in6_addr in6;
4583
4584 memcpy(&in6, addr, sizeof(struct in6_addr));
4585
4586 useIPv4 = ipv6_addr_v4mapped(&in6) || ipv6_addr_is_isatap(&in6);
4587
4588 memset(zerolength, 0, sizeof(zerolength));
4589
4590 if (useIPv4)
4591 range = 6;
4592 else
4593 range = 8;
4594
4595 /* find position of longest 0 run */
4596 for (i = 0; i < range; i++) {
4597 for (j = i; j < range; j++) {
4598 if (in6.s6_addr16[j] != 0)
4599 break;
4600 zerolength[i]++;
4601 }
4602 }
4603 for (i = 0; i < range; i++) {
4604 if (zerolength[i] > longest) {
4605 longest = zerolength[i];
4606 colonpos = i;
4607 }
4608 }
4609 if (longest == 1) /* don't compress a single 0 */
4610 colonpos = -1;
4611
4612 /* emit address */
4613 for (i = 0; i < range; i++) {
4614 if (i == colonpos) {
4615 if (needcolon || i == 0)
4616 trace_seq_printf(s, ":");
4617 trace_seq_printf(s, ":");
4618 needcolon = false;
4619 i += longest - 1;
4620 continue;
4621 }
4622 if (needcolon) {
4623 trace_seq_printf(s, ":");
4624 needcolon = false;
4625 }
4626 /* hex u16 without leading 0s */
4627 word = ntohs(in6.s6_addr16[i]);
4628 hi = word >> 8;
4629 lo = word & 0xff;
4630 if (hi)
4631 trace_seq_printf(s, "%x%02x", hi, lo);
4632 else
4633 trace_seq_printf(s, "%x", lo);
4634
4635 needcolon = true;
4636 }
4637
4638 if (useIPv4) {
4639 if (needcolon)
4640 trace_seq_printf(s, ":");
4641 print_ip4_addr(s, 'I', &in6.s6_addr[12]);
4642 }
4643
4644 return;
4645}
4646
4647static void print_ip6_addr(struct trace_seq *s, char i, unsigned char *buf)
4648{
4649 int j;
4650
4651 for (j = 0; j < 16; j += 2) {
4652 trace_seq_printf(s, "%02x%02x", buf[j], buf[j+1]);
4653 if (i == 'I' && j < 14)
4654 trace_seq_printf(s, ":");
4655 }
4656}
4657
4658/*
4659 * %pi4 print an IPv4 address with leading zeros
4660 * %pI4 print an IPv4 address without leading zeros
4661 * %pi6 print an IPv6 address without colons
4662 * %pI6 print an IPv6 address with colons
4663 * %pI6c print an IPv6 address in compressed form with colons
4664 * %pISpc print an IP address based on sockaddr; p adds port.
4665 */
4666static int print_ipv4_arg(struct trace_seq *s, const char *ptr, char i,
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05004667 void *data, int size, struct tep_event *event,
Tzvetomir Stoyanov (VMware)5647f942018-09-19 14:56:49 -04004668 struct tep_print_arg *arg)
David Ahern3d199b52014-12-18 19:11:11 -07004669{
4670 unsigned char *buf;
4671
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04004672 if (arg->type == TEP_PRINT_FUNC) {
David Ahern3d199b52014-12-18 19:11:11 -07004673 process_defined_func(s, data, size, event, arg);
4674 return 0;
4675 }
4676
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04004677 if (arg->type != TEP_PRINT_FIELD) {
David Ahern3d199b52014-12-18 19:11:11 -07004678 trace_seq_printf(s, "ARG TYPE NOT FIELD BUT %d", arg->type);
4679 return 0;
4680 }
4681
4682 if (!arg->field.field) {
4683 arg->field.field =
Tzvetomir Stoyanov (VMware)af85cd12018-08-08 14:02:50 -04004684 tep_find_any_field(event, arg->field.name);
David Ahern3d199b52014-12-18 19:11:11 -07004685 if (!arg->field.field) {
4686 do_warning("%s: field %s not found",
4687 __func__, arg->field.name);
4688 return 0;
4689 }
4690 }
4691
4692 buf = data + arg->field.field->offset;
4693
4694 if (arg->field.field->size != 4) {
4695 trace_seq_printf(s, "INVALIDIPv4");
4696 return 0;
4697 }
4698 print_ip4_addr(s, i, buf);
4699
4700 return 0;
4701}
4702
4703static int print_ipv6_arg(struct trace_seq *s, const char *ptr, char i,
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05004704 void *data, int size, struct tep_event *event,
Tzvetomir Stoyanov (VMware)5647f942018-09-19 14:56:49 -04004705 struct tep_print_arg *arg)
David Ahern3d199b52014-12-18 19:11:11 -07004706{
4707 char have_c = 0;
4708 unsigned char *buf;
4709 int rc = 0;
4710
4711 /* pI6c */
4712 if (i == 'I' && *ptr == 'c') {
4713 have_c = 1;
4714 ptr++;
4715 rc++;
4716 }
4717
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04004718 if (arg->type == TEP_PRINT_FUNC) {
David Ahern3d199b52014-12-18 19:11:11 -07004719 process_defined_func(s, data, size, event, arg);
4720 return rc;
4721 }
4722
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04004723 if (arg->type != TEP_PRINT_FIELD) {
David Ahern3d199b52014-12-18 19:11:11 -07004724 trace_seq_printf(s, "ARG TYPE NOT FIELD BUT %d", arg->type);
4725 return rc;
4726 }
4727
4728 if (!arg->field.field) {
4729 arg->field.field =
Tzvetomir Stoyanov (VMware)af85cd12018-08-08 14:02:50 -04004730 tep_find_any_field(event, arg->field.name);
David Ahern3d199b52014-12-18 19:11:11 -07004731 if (!arg->field.field) {
4732 do_warning("%s: field %s not found",
4733 __func__, arg->field.name);
4734 return rc;
4735 }
4736 }
4737
4738 buf = data + arg->field.field->offset;
4739
4740 if (arg->field.field->size != 16) {
4741 trace_seq_printf(s, "INVALIDIPv6");
4742 return rc;
4743 }
4744
4745 if (have_c)
4746 print_ip6c_addr(s, buf);
4747 else
4748 print_ip6_addr(s, i, buf);
4749
4750 return rc;
4751}
4752
4753static int print_ipsa_arg(struct trace_seq *s, const char *ptr, char i,
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05004754 void *data, int size, struct tep_event *event,
Tzvetomir Stoyanov (VMware)5647f942018-09-19 14:56:49 -04004755 struct tep_print_arg *arg)
David Ahern3d199b52014-12-18 19:11:11 -07004756{
4757 char have_c = 0, have_p = 0;
4758 unsigned char *buf;
4759 struct sockaddr_storage *sa;
4760 int rc = 0;
4761
4762 /* pISpc */
4763 if (i == 'I') {
4764 if (*ptr == 'p') {
4765 have_p = 1;
4766 ptr++;
4767 rc++;
4768 }
4769 if (*ptr == 'c') {
4770 have_c = 1;
4771 ptr++;
4772 rc++;
4773 }
4774 }
4775
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04004776 if (arg->type == TEP_PRINT_FUNC) {
David Ahern3d199b52014-12-18 19:11:11 -07004777 process_defined_func(s, data, size, event, arg);
4778 return rc;
4779 }
4780
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04004781 if (arg->type != TEP_PRINT_FIELD) {
David Ahern3d199b52014-12-18 19:11:11 -07004782 trace_seq_printf(s, "ARG TYPE NOT FIELD BUT %d", arg->type);
4783 return rc;
4784 }
4785
4786 if (!arg->field.field) {
4787 arg->field.field =
Tzvetomir Stoyanov (VMware)af85cd12018-08-08 14:02:50 -04004788 tep_find_any_field(event, arg->field.name);
David Ahern3d199b52014-12-18 19:11:11 -07004789 if (!arg->field.field) {
4790 do_warning("%s: field %s not found",
4791 __func__, arg->field.name);
4792 return rc;
4793 }
4794 }
4795
4796 sa = (struct sockaddr_storage *) (data + arg->field.field->offset);
4797
4798 if (sa->ss_family == AF_INET) {
4799 struct sockaddr_in *sa4 = (struct sockaddr_in *) sa;
4800
4801 if (arg->field.field->size < sizeof(struct sockaddr_in)) {
4802 trace_seq_printf(s, "INVALIDIPv4");
4803 return rc;
4804 }
4805
4806 print_ip4_addr(s, i, (unsigned char *) &sa4->sin_addr);
4807 if (have_p)
4808 trace_seq_printf(s, ":%d", ntohs(sa4->sin_port));
4809
4810
4811 } else if (sa->ss_family == AF_INET6) {
4812 struct sockaddr_in6 *sa6 = (struct sockaddr_in6 *) sa;
4813
4814 if (arg->field.field->size < sizeof(struct sockaddr_in6)) {
4815 trace_seq_printf(s, "INVALIDIPv6");
4816 return rc;
4817 }
4818
4819 if (have_p)
4820 trace_seq_printf(s, "[");
4821
4822 buf = (unsigned char *) &sa6->sin6_addr;
4823 if (have_c)
4824 print_ip6c_addr(s, buf);
4825 else
4826 print_ip6_addr(s, i, buf);
4827
4828 if (have_p)
4829 trace_seq_printf(s, "]:%d", ntohs(sa6->sin6_port));
4830 }
4831
4832 return rc;
4833}
4834
4835static int print_ip_arg(struct trace_seq *s, const char *ptr,
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05004836 void *data, int size, struct tep_event *event,
Tzvetomir Stoyanov (VMware)5647f942018-09-19 14:56:49 -04004837 struct tep_print_arg *arg)
David Ahern3d199b52014-12-18 19:11:11 -07004838{
4839 char i = *ptr; /* 'i' or 'I' */
4840 char ver;
4841 int rc = 0;
4842
4843 ptr++;
4844 rc++;
4845
4846 ver = *ptr;
4847 ptr++;
4848 rc++;
4849
4850 switch (ver) {
4851 case '4':
4852 rc += print_ipv4_arg(s, ptr, i, data, size, event, arg);
4853 break;
4854 case '6':
4855 rc += print_ipv6_arg(s, ptr, i, data, size, event, arg);
4856 break;
4857 case 'S':
4858 rc += print_ipsa_arg(s, ptr, i, data, size, event, arg);
4859 break;
4860 default:
4861 return 0;
4862 }
4863
4864 return rc;
4865}
4866
Namhyung Kim600da3c2012-06-22 17:10:15 +09004867static int is_printable_array(char *p, unsigned int len)
4868{
4869 unsigned int i;
4870
4871 for (i = 0; i < len && p[i]; i++)
Steven Rostedt (Red Hat)5efb9fb2013-11-01 17:53:58 -04004872 if (!isprint(p[i]) && !isspace(p[i]))
Namhyung Kim600da3c2012-06-22 17:10:15 +09004873 return 0;
4874 return 1;
4875}
4876
Tzvetomir Stoyanov (VMware)6a48dc22018-08-08 14:02:52 -04004877void tep_print_field(struct trace_seq *s, void *data,
Tzvetomir Stoyanov (VMware)2c92f982018-09-19 14:56:45 -04004878 struct tep_format_field *field)
Steven Rostedtf7d82352012-04-06 00:47:53 +02004879{
Steven Rostedtf7d82352012-04-06 00:47:53 +02004880 unsigned long long val;
4881 unsigned int offset, len, i;
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04004882 struct tep_handle *tep = field->event->tep;
Namhyung Kimbe45d402015-12-23 22:08:41 +09004883
Tzvetomir Stoyanov (VMware)bb39ccb2018-09-19 14:56:46 -04004884 if (field->flags & TEP_FIELD_IS_ARRAY) {
Namhyung Kimbe45d402015-12-23 22:08:41 +09004885 offset = field->offset;
4886 len = field->size;
Tzvetomir Stoyanov (VMware)bb39ccb2018-09-19 14:56:46 -04004887 if (field->flags & TEP_FIELD_IS_DYNAMIC) {
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04004888 val = tep_read_number(tep, data + offset, len);
Namhyung Kimbe45d402015-12-23 22:08:41 +09004889 offset = val;
4890 len = offset >> 16;
4891 offset &= 0xffff;
4892 }
Tzvetomir Stoyanov (VMware)bb39ccb2018-09-19 14:56:46 -04004893 if (field->flags & TEP_FIELD_IS_STRING &&
Namhyung Kimbe45d402015-12-23 22:08:41 +09004894 is_printable_array(data + offset, len)) {
4895 trace_seq_printf(s, "%s", (char *)data + offset);
4896 } else {
4897 trace_seq_puts(s, "ARRAY[");
4898 for (i = 0; i < len; i++) {
4899 if (i)
4900 trace_seq_puts(s, ", ");
4901 trace_seq_printf(s, "%02x",
4902 *((unsigned char *)data + offset + i));
4903 }
4904 trace_seq_putc(s, ']');
Tzvetomir Stoyanov (VMware)bb39ccb2018-09-19 14:56:46 -04004905 field->flags &= ~TEP_FIELD_IS_STRING;
Namhyung Kimbe45d402015-12-23 22:08:41 +09004906 }
4907 } else {
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04004908 val = tep_read_number(tep, data + field->offset,
Tzvetomir Stoyanov (VMware)59c1bae2018-08-08 14:02:53 -04004909 field->size);
Tzvetomir Stoyanov (VMware)bb39ccb2018-09-19 14:56:46 -04004910 if (field->flags & TEP_FIELD_IS_POINTER) {
Namhyung Kimbe45d402015-12-23 22:08:41 +09004911 trace_seq_printf(s, "0x%llx", val);
Tzvetomir Stoyanov (VMware)bb39ccb2018-09-19 14:56:46 -04004912 } else if (field->flags & TEP_FIELD_IS_SIGNED) {
Namhyung Kimbe45d402015-12-23 22:08:41 +09004913 switch (field->size) {
4914 case 4:
4915 /*
4916 * If field is long then print it in hex.
4917 * A long usually stores pointers.
4918 */
Tzvetomir Stoyanov (VMware)bb39ccb2018-09-19 14:56:46 -04004919 if (field->flags & TEP_FIELD_IS_LONG)
Namhyung Kimbe45d402015-12-23 22:08:41 +09004920 trace_seq_printf(s, "0x%x", (int)val);
4921 else
4922 trace_seq_printf(s, "%d", (int)val);
4923 break;
4924 case 2:
4925 trace_seq_printf(s, "%2d", (short)val);
4926 break;
4927 case 1:
4928 trace_seq_printf(s, "%1d", (char)val);
4929 break;
4930 default:
4931 trace_seq_printf(s, "%lld", val);
4932 }
4933 } else {
Tzvetomir Stoyanov (VMware)bb39ccb2018-09-19 14:56:46 -04004934 if (field->flags & TEP_FIELD_IS_LONG)
Namhyung Kimbe45d402015-12-23 22:08:41 +09004935 trace_seq_printf(s, "0x%llx", val);
4936 else
4937 trace_seq_printf(s, "%llu", val);
4938 }
4939 }
4940}
4941
Tzvetomir Stoyanov (VMware)6a48dc22018-08-08 14:02:52 -04004942void tep_print_fields(struct trace_seq *s, void *data,
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05004943 int size __maybe_unused, struct tep_event *event)
Namhyung Kimbe45d402015-12-23 22:08:41 +09004944{
Tzvetomir Stoyanov (VMware)2c92f982018-09-19 14:56:45 -04004945 struct tep_format_field *field;
Steven Rostedtf7d82352012-04-06 00:47:53 +02004946
4947 field = event->format.fields;
4948 while (field) {
4949 trace_seq_printf(s, " %s=", field->name);
Tzvetomir Stoyanov (VMware)6a48dc22018-08-08 14:02:52 -04004950 tep_print_field(s, data, field);
Steven Rostedtf7d82352012-04-06 00:47:53 +02004951 field = field->next;
4952 }
4953}
4954
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05004955static void pretty_print(struct trace_seq *s, void *data, int size, struct tep_event *event)
Steven Rostedtf7d82352012-04-06 00:47:53 +02004956{
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04004957 struct tep_handle *tep = event->tep;
Tzvetomir Stoyanov (VMware)5647f942018-09-19 14:56:49 -04004958 struct tep_print_fmt *print_fmt = &event->print_fmt;
4959 struct tep_print_arg *arg = print_fmt->args;
4960 struct tep_print_arg *args = NULL;
Steven Rostedtf7d82352012-04-06 00:47:53 +02004961 const char *ptr = print_fmt->format;
4962 unsigned long long val;
4963 struct func_map *func;
4964 const char *saveptr;
Steven Rostedt12e55562013-11-19 18:29:37 -05004965 struct trace_seq p;
Steven Rostedtf7d82352012-04-06 00:47:53 +02004966 char *bprint_fmt = NULL;
4967 char format[32];
4968 int show_func;
4969 int len_as_arg;
Adrian Hunter0631ca32018-11-22 13:29:37 +02004970 int len_arg = 0;
Steven Rostedtf7d82352012-04-06 00:47:53 +02004971 int len;
4972 int ls;
4973
Tzvetomir Stoyanov (VMware)c1953bc2018-09-19 14:56:48 -04004974 if (event->flags & TEP_EVENT_FL_FAILED) {
Steven Rostedtf7d82352012-04-06 00:47:53 +02004975 trace_seq_printf(s, "[FAILED TO PARSE]");
Tzvetomir Stoyanov (VMware)6a48dc22018-08-08 14:02:52 -04004976 tep_print_fields(s, data, size, event);
Steven Rostedtf7d82352012-04-06 00:47:53 +02004977 return;
4978 }
4979
Tzvetomir Stoyanov (VMware)c1953bc2018-09-19 14:56:48 -04004980 if (event->flags & TEP_EVENT_FL_ISBPRINT) {
Steven Rostedtf7d82352012-04-06 00:47:53 +02004981 bprint_fmt = get_bprint_format(data, size, event);
4982 args = make_bprint_args(bprint_fmt, data, size, event);
4983 arg = args;
4984 ptr = bprint_fmt;
4985 }
4986
4987 for (; *ptr; ptr++) {
4988 ls = 0;
4989 if (*ptr == '\\') {
4990 ptr++;
4991 switch (*ptr) {
4992 case 'n':
4993 trace_seq_putc(s, '\n');
4994 break;
4995 case 't':
4996 trace_seq_putc(s, '\t');
4997 break;
4998 case 'r':
4999 trace_seq_putc(s, '\r');
5000 break;
5001 case '\\':
5002 trace_seq_putc(s, '\\');
5003 break;
5004 default:
5005 trace_seq_putc(s, *ptr);
5006 break;
5007 }
5008
5009 } else if (*ptr == '%') {
5010 saveptr = ptr;
5011 show_func = 0;
5012 len_as_arg = 0;
5013 cont_process:
5014 ptr++;
5015 switch (*ptr) {
5016 case '%':
5017 trace_seq_putc(s, '%');
5018 break;
5019 case '#':
5020 /* FIXME: need to handle properly */
5021 goto cont_process;
5022 case 'h':
5023 ls--;
5024 goto cont_process;
5025 case 'l':
5026 ls++;
5027 goto cont_process;
5028 case 'L':
5029 ls = 2;
5030 goto cont_process;
5031 case '*':
5032 /* The argument is the length. */
Namhyung Kim245c5a12012-09-07 11:49:45 +09005033 if (!arg) {
Namhyung Kim3388cc32014-03-19 10:22:53 +09005034 do_warning_event(event, "no argument match");
Tzvetomir Stoyanov (VMware)c1953bc2018-09-19 14:56:48 -04005035 event->flags |= TEP_EVENT_FL_FAILED;
Namhyung Kim245c5a12012-09-07 11:49:45 +09005036 goto out_failed;
5037 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02005038 len_arg = eval_num_arg(data, size, event, arg);
5039 len_as_arg = 1;
5040 arg = arg->next;
5041 goto cont_process;
5042 case '.':
5043 case 'z':
5044 case 'Z':
5045 case '0' ... '9':
Steven Rostedt1d945012015-08-27 09:46:01 -04005046 case '-':
Steven Rostedtf7d82352012-04-06 00:47:53 +02005047 goto cont_process;
5048 case 'p':
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04005049 if (tep->long_size == 4)
Steven Rostedtf7d82352012-04-06 00:47:53 +02005050 ls = 1;
5051 else
5052 ls = 2;
5053
Steven Rostedt (VMware)38d70b72018-01-11 19:47:45 -05005054 if (isalnum(ptr[1]))
Steven Rostedtf7d82352012-04-06 00:47:53 +02005055 ptr++;
Steven Rostedt (VMware)38d70b72018-01-11 19:47:45 -05005056
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04005057 if (arg->type == TEP_PRINT_BSTRING) {
Steven Rostedt (VMware)37db96b2018-01-11 19:47:46 -05005058 trace_seq_puts(s, arg->string.string);
Steven Rostedt (VMware)f024cf02018-12-10 13:45:22 -05005059 arg = arg->next;
Steven Rostedt (VMware)37db96b2018-01-11 19:47:46 -05005060 break;
5061 }
5062
Steven Rostedt (VMware)38d70b72018-01-11 19:47:45 -05005063 if (*ptr == 'F' || *ptr == 'f' ||
5064 *ptr == 'S' || *ptr == 's') {
Steven Rostedtf7d82352012-04-06 00:47:53 +02005065 show_func = *ptr;
Steven Rostedt (VMware)38d70b72018-01-11 19:47:45 -05005066 } else if (*ptr == 'M' || *ptr == 'm') {
5067 print_mac_arg(s, *ptr, data, size, event, arg);
Steven Rostedtaaf05c72012-01-09 15:58:09 -05005068 arg = arg->next;
Steven Rostedtf7d82352012-04-06 00:47:53 +02005069 break;
Steven Rostedt (VMware)38d70b72018-01-11 19:47:45 -05005070 } else if (*ptr == 'I' || *ptr == 'i') {
David Ahern3d199b52014-12-18 19:11:11 -07005071 int n;
5072
Steven Rostedt (VMware)38d70b72018-01-11 19:47:45 -05005073 n = print_ip_arg(s, ptr, data, size, event, arg);
David Ahern3d199b52014-12-18 19:11:11 -07005074 if (n > 0) {
Steven Rostedt (VMware)38d70b72018-01-11 19:47:45 -05005075 ptr += n - 1;
David Ahern3d199b52014-12-18 19:11:11 -07005076 arg = arg->next;
5077 break;
5078 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02005079 }
5080
5081 /* fall through */
5082 case 'd':
Konstantin Khlebnikov10f64582019-11-10 13:11:01 +03005083 case 'u':
Steven Rostedtf7d82352012-04-06 00:47:53 +02005084 case 'i':
5085 case 'x':
5086 case 'X':
Konstantin Khlebnikov10f64582019-11-10 13:11:01 +03005087 case 'o':
Namhyung Kim245c5a12012-09-07 11:49:45 +09005088 if (!arg) {
Namhyung Kim3388cc32014-03-19 10:22:53 +09005089 do_warning_event(event, "no argument match");
Tzvetomir Stoyanov (VMware)c1953bc2018-09-19 14:56:48 -04005090 event->flags |= TEP_EVENT_FL_FAILED;
Namhyung Kim245c5a12012-09-07 11:49:45 +09005091 goto out_failed;
5092 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02005093
5094 len = ((unsigned long)ptr + 1) -
5095 (unsigned long)saveptr;
5096
5097 /* should never happen */
Namhyung Kim245c5a12012-09-07 11:49:45 +09005098 if (len > 31) {
Namhyung Kim3388cc32014-03-19 10:22:53 +09005099 do_warning_event(event, "bad format!");
Tzvetomir Stoyanov (VMware)c1953bc2018-09-19 14:56:48 -04005100 event->flags |= TEP_EVENT_FL_FAILED;
Namhyung Kim245c5a12012-09-07 11:49:45 +09005101 len = 31;
5102 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02005103
5104 memcpy(format, saveptr, len);
5105 format[len] = 0;
5106
5107 val = eval_num_arg(data, size, event, arg);
5108 arg = arg->next;
5109
5110 if (show_func) {
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04005111 func = find_func(tep, val);
Steven Rostedtf7d82352012-04-06 00:47:53 +02005112 if (func) {
5113 trace_seq_puts(s, func->func);
5114 if (show_func == 'F')
5115 trace_seq_printf(s,
5116 "+0x%llx",
5117 val - func->addr);
5118 break;
5119 }
5120 }
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04005121 if (tep->long_size == 8 && ls == 1 &&
Wolfgang Mauererc5b35b72012-03-22 11:18:21 +01005122 sizeof(long) != 8) {
Steven Rostedtf7d82352012-04-06 00:47:53 +02005123 char *p;
5124
Steven Rostedtf7d82352012-04-06 00:47:53 +02005125 /* make %l into %ll */
Steven Rostedt32abc2e2015-11-16 17:25:16 -05005126 if (ls == 1 && (p = strchr(format, 'l')))
Wolfgang Mauererc5b35b72012-03-22 11:18:21 +01005127 memmove(p+1, p, strlen(p)+1);
Steven Rostedtf7d82352012-04-06 00:47:53 +02005128 else if (strcmp(format, "%p") == 0)
5129 strcpy(format, "0x%llx");
Steven Rostedt32abc2e2015-11-16 17:25:16 -05005130 ls = 2;
Steven Rostedtf7d82352012-04-06 00:47:53 +02005131 }
5132 switch (ls) {
5133 case -2:
5134 if (len_as_arg)
5135 trace_seq_printf(s, format, len_arg, (char)val);
5136 else
5137 trace_seq_printf(s, format, (char)val);
5138 break;
5139 case -1:
5140 if (len_as_arg)
5141 trace_seq_printf(s, format, len_arg, (short)val);
5142 else
5143 trace_seq_printf(s, format, (short)val);
5144 break;
5145 case 0:
5146 if (len_as_arg)
5147 trace_seq_printf(s, format, len_arg, (int)val);
5148 else
5149 trace_seq_printf(s, format, (int)val);
5150 break;
5151 case 1:
5152 if (len_as_arg)
5153 trace_seq_printf(s, format, len_arg, (long)val);
5154 else
5155 trace_seq_printf(s, format, (long)val);
5156 break;
5157 case 2:
5158 if (len_as_arg)
5159 trace_seq_printf(s, format, len_arg,
5160 (long long)val);
5161 else
5162 trace_seq_printf(s, format, (long long)val);
5163 break;
5164 default:
Namhyung Kim3388cc32014-03-19 10:22:53 +09005165 do_warning_event(event, "bad count (%d)", ls);
Tzvetomir Stoyanov (VMware)c1953bc2018-09-19 14:56:48 -04005166 event->flags |= TEP_EVENT_FL_FAILED;
Steven Rostedtf7d82352012-04-06 00:47:53 +02005167 }
5168 break;
5169 case 's':
Namhyung Kim245c5a12012-09-07 11:49:45 +09005170 if (!arg) {
Namhyung Kim3388cc32014-03-19 10:22:53 +09005171 do_warning_event(event, "no matching argument");
Tzvetomir Stoyanov (VMware)c1953bc2018-09-19 14:56:48 -04005172 event->flags |= TEP_EVENT_FL_FAILED;
Namhyung Kim245c5a12012-09-07 11:49:45 +09005173 goto out_failed;
5174 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02005175
5176 len = ((unsigned long)ptr + 1) -
5177 (unsigned long)saveptr;
5178
5179 /* should never happen */
Namhyung Kim245c5a12012-09-07 11:49:45 +09005180 if (len > 31) {
Namhyung Kim3388cc32014-03-19 10:22:53 +09005181 do_warning_event(event, "bad format!");
Tzvetomir Stoyanov (VMware)c1953bc2018-09-19 14:56:48 -04005182 event->flags |= TEP_EVENT_FL_FAILED;
Namhyung Kim245c5a12012-09-07 11:49:45 +09005183 len = 31;
5184 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02005185
5186 memcpy(format, saveptr, len);
5187 format[len] = 0;
5188 if (!len_as_arg)
5189 len_arg = -1;
Steven Rostedt12e55562013-11-19 18:29:37 -05005190 /* Use helper trace_seq */
5191 trace_seq_init(&p);
5192 print_str_arg(&p, data, size, event,
Steven Rostedtf7d82352012-04-06 00:47:53 +02005193 format, len_arg, arg);
Steven Rostedt12e55562013-11-19 18:29:37 -05005194 trace_seq_terminate(&p);
5195 trace_seq_puts(s, p.buffer);
Steven Rostedtde04f862014-04-22 19:23:30 -04005196 trace_seq_destroy(&p);
Steven Rostedtf7d82352012-04-06 00:47:53 +02005197 arg = arg->next;
5198 break;
5199 default:
5200 trace_seq_printf(s, ">%c<", *ptr);
5201
5202 }
5203 } else
5204 trace_seq_putc(s, *ptr);
5205 }
5206
Tzvetomir Stoyanov (VMware)c1953bc2018-09-19 14:56:48 -04005207 if (event->flags & TEP_EVENT_FL_FAILED) {
Namhyung Kim245c5a12012-09-07 11:49:45 +09005208out_failed:
5209 trace_seq_printf(s, "[FAILED TO PARSE]");
5210 }
5211
Steven Rostedtf7d82352012-04-06 00:47:53 +02005212 if (args) {
5213 free_args(args);
5214 free(bprint_fmt);
5215 }
5216}
5217
Tzvetomir Stoyanov38847db2019-08-05 16:43:13 -04005218/*
Steven Rostedtf7d82352012-04-06 00:47:53 +02005219 * This parses out the Latency format (interrupts disabled,
5220 * need rescheduling, in hard/soft interrupt, preempt count
5221 * and lock depth) and places it into the trace_seq.
5222 */
Tzvetomir Stoyanov38847db2019-08-05 16:43:13 -04005223static void data_latency_format(struct tep_handle *tep, struct trace_seq *s,
5224 char *format, struct tep_record *record)
Steven Rostedtf7d82352012-04-06 00:47:53 +02005225{
5226 static int check_lock_depth = 1;
Steven Rostedt0866a972012-05-22 14:52:40 +09005227 static int check_migrate_disable = 1;
Steven Rostedtf7d82352012-04-06 00:47:53 +02005228 static int lock_depth_exists;
Steven Rostedt0866a972012-05-22 14:52:40 +09005229 static int migrate_disable_exists;
Steven Rostedtf7d82352012-04-06 00:47:53 +02005230 unsigned int lat_flags;
Tzvetomir Stoyanov38847db2019-08-05 16:43:13 -04005231 struct trace_seq sq;
Steven Rostedtf7d82352012-04-06 00:47:53 +02005232 unsigned int pc;
Adrian Hunter0631ca32018-11-22 13:29:37 +02005233 int lock_depth = 0;
5234 int migrate_disable = 0;
Steven Rostedtf7d82352012-04-06 00:47:53 +02005235 int hardirq;
5236 int softirq;
5237 void *data = record->data;
5238
Tzvetomir Stoyanov38847db2019-08-05 16:43:13 -04005239 trace_seq_init(&sq);
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04005240 lat_flags = parse_common_flags(tep, data);
5241 pc = parse_common_pc(tep, data);
Steven Rostedtf7d82352012-04-06 00:47:53 +02005242 /* lock_depth may not always exist */
Steven Rostedtf7d82352012-04-06 00:47:53 +02005243 if (lock_depth_exists)
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04005244 lock_depth = parse_common_lock_depth(tep, data);
Steven Rostedt0866a972012-05-22 14:52:40 +09005245 else if (check_lock_depth) {
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04005246 lock_depth = parse_common_lock_depth(tep, data);
Steven Rostedt0866a972012-05-22 14:52:40 +09005247 if (lock_depth < 0)
5248 check_lock_depth = 0;
5249 else
5250 lock_depth_exists = 1;
5251 }
5252
5253 /* migrate_disable may not always exist */
5254 if (migrate_disable_exists)
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04005255 migrate_disable = parse_common_migrate_disable(tep, data);
Steven Rostedt0866a972012-05-22 14:52:40 +09005256 else if (check_migrate_disable) {
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04005257 migrate_disable = parse_common_migrate_disable(tep, data);
Steven Rostedt0866a972012-05-22 14:52:40 +09005258 if (migrate_disable < 0)
5259 check_migrate_disable = 0;
5260 else
5261 migrate_disable_exists = 1;
5262 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02005263
5264 hardirq = lat_flags & TRACE_FLAG_HARDIRQ;
5265 softirq = lat_flags & TRACE_FLAG_SOFTIRQ;
5266
Tzvetomir Stoyanov38847db2019-08-05 16:43:13 -04005267 trace_seq_printf(&sq, "%c%c%c",
Steven Rostedtf7d82352012-04-06 00:47:53 +02005268 (lat_flags & TRACE_FLAG_IRQS_OFF) ? 'd' :
5269 (lat_flags & TRACE_FLAG_IRQS_NOSUPPORT) ?
5270 'X' : '.',
5271 (lat_flags & TRACE_FLAG_NEED_RESCHED) ?
5272 'N' : '.',
5273 (hardirq && softirq) ? 'H' :
5274 hardirq ? 'h' : softirq ? 's' : '.');
5275
5276 if (pc)
Tzvetomir Stoyanov38847db2019-08-05 16:43:13 -04005277 trace_seq_printf(&sq, "%x", pc);
Steven Rostedtf7d82352012-04-06 00:47:53 +02005278 else
Tzvetomir Stoyanov38847db2019-08-05 16:43:13 -04005279 trace_seq_printf(&sq, ".");
Steven Rostedtf7d82352012-04-06 00:47:53 +02005280
Steven Rostedt0866a972012-05-22 14:52:40 +09005281 if (migrate_disable_exists) {
5282 if (migrate_disable < 0)
Tzvetomir Stoyanov38847db2019-08-05 16:43:13 -04005283 trace_seq_printf(&sq, ".");
Steven Rostedt0866a972012-05-22 14:52:40 +09005284 else
Tzvetomir Stoyanov38847db2019-08-05 16:43:13 -04005285 trace_seq_printf(&sq, "%d", migrate_disable);
Steven Rostedt0866a972012-05-22 14:52:40 +09005286 }
5287
Steven Rostedtf7d82352012-04-06 00:47:53 +02005288 if (lock_depth_exists) {
5289 if (lock_depth < 0)
Tzvetomir Stoyanov38847db2019-08-05 16:43:13 -04005290 trace_seq_printf(&sq, ".");
Steven Rostedtf7d82352012-04-06 00:47:53 +02005291 else
Tzvetomir Stoyanov38847db2019-08-05 16:43:13 -04005292 trace_seq_printf(&sq, "%d", lock_depth);
Steven Rostedtf7d82352012-04-06 00:47:53 +02005293 }
5294
Tzvetomir Stoyanov38847db2019-08-05 16:43:13 -04005295 if (sq.state == TRACE_SEQ__MEM_ALLOC_FAILED) {
5296 s->state = TRACE_SEQ__MEM_ALLOC_FAILED;
5297 return;
5298 }
5299
5300 trace_seq_terminate(&sq);
5301 trace_seq_puts(s, sq.buffer);
5302 trace_seq_destroy(&sq);
Steven Rostedtf7d82352012-04-06 00:47:53 +02005303 trace_seq_terminate(s);
5304}
5305
5306/**
Tzvetomir Stoyanov (VMware)dc05ebf2018-08-08 14:03:03 -04005307 * tep_data_type - parse out the given event type
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04005308 * @tep: a handle to the trace event parser context
Steven Rostedtf7d82352012-04-06 00:47:53 +02005309 * @rec: the record to read from
5310 *
5311 * This returns the event id from the @rec.
5312 */
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04005313int tep_data_type(struct tep_handle *tep, struct tep_record *rec)
Steven Rostedtf7d82352012-04-06 00:47:53 +02005314{
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04005315 return trace_parse_common_type(tep, rec->data);
Steven Rostedtf7d82352012-04-06 00:47:53 +02005316}
5317
5318/**
Tzvetomir Stoyanov (VMware)dc05ebf2018-08-08 14:03:03 -04005319 * tep_data_pid - parse the PID from record
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04005320 * @tep: a handle to the trace event parser context
Steven Rostedtf7d82352012-04-06 00:47:53 +02005321 * @rec: the record to parse
5322 *
Steven Rostedtc52d9e42016-11-22 11:31:58 -05005323 * This returns the PID from a record.
Steven Rostedtf7d82352012-04-06 00:47:53 +02005324 */
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04005325int tep_data_pid(struct tep_handle *tep, struct tep_record *rec)
Steven Rostedtf7d82352012-04-06 00:47:53 +02005326{
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04005327 return parse_common_pid(tep, rec->data);
Steven Rostedtf7d82352012-04-06 00:47:53 +02005328}
5329
5330/**
Tzvetomir Stoyanov (VMware)dc05ebf2018-08-08 14:03:03 -04005331 * tep_data_preempt_count - parse the preempt count from the record
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04005332 * @tep: a handle to the trace event parser context
Steven Rostedtc52d9e42016-11-22 11:31:58 -05005333 * @rec: the record to parse
5334 *
5335 * This returns the preempt count from a record.
5336 */
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04005337int tep_data_preempt_count(struct tep_handle *tep, struct tep_record *rec)
Steven Rostedtc52d9e42016-11-22 11:31:58 -05005338{
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04005339 return parse_common_pc(tep, rec->data);
Steven Rostedtc52d9e42016-11-22 11:31:58 -05005340}
5341
5342/**
Tzvetomir Stoyanov (VMware)dc05ebf2018-08-08 14:03:03 -04005343 * tep_data_flags - parse the latency flags from the record
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04005344 * @tep: a handle to the trace event parser context
Steven Rostedtc52d9e42016-11-22 11:31:58 -05005345 * @rec: the record to parse
5346 *
5347 * This returns the latency flags from a record.
5348 *
5349 * Use trace_flag_type enum for the flags (see event-parse.h).
5350 */
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04005351int tep_data_flags(struct tep_handle *tep, struct tep_record *rec)
Steven Rostedtc52d9e42016-11-22 11:31:58 -05005352{
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04005353 return parse_common_flags(tep, rec->data);
Steven Rostedtc52d9e42016-11-22 11:31:58 -05005354}
5355
5356/**
Tzvetomir Stoyanov (VMware)dc05ebf2018-08-08 14:03:03 -04005357 * tep_data_comm_from_pid - return the command line from PID
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04005358 * @tep: a handle to the trace event parser context
Steven Rostedtf7d82352012-04-06 00:47:53 +02005359 * @pid: the PID of the task to search for
5360 *
5361 * This returns a pointer to the command line that has the given
5362 * @pid.
5363 */
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04005364const char *tep_data_comm_from_pid(struct tep_handle *tep, int pid)
Steven Rostedtf7d82352012-04-06 00:47:53 +02005365{
5366 const char *comm;
5367
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04005368 comm = find_cmdline(tep, pid);
Steven Rostedtf7d82352012-04-06 00:47:53 +02005369 return comm;
5370}
5371
Tzvetomir Stoyanov2e4318a2018-11-30 23:08:09 -05005372static struct tep_cmdline *
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04005373pid_from_cmdlist(struct tep_handle *tep, const char *comm, struct tep_cmdline *next)
Steven Rostedt (Red Hat)27719842015-03-24 09:57:52 -04005374{
5375 struct cmdline_list *cmdlist = (struct cmdline_list *)next;
5376
5377 if (cmdlist)
5378 cmdlist = cmdlist->next;
5379 else
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04005380 cmdlist = tep->cmdlist;
Steven Rostedt (Red Hat)27719842015-03-24 09:57:52 -04005381
5382 while (cmdlist && strcmp(cmdlist->comm, comm) != 0)
5383 cmdlist = cmdlist->next;
5384
Tzvetomir Stoyanov2e4318a2018-11-30 23:08:09 -05005385 return (struct tep_cmdline *)cmdlist;
Steven Rostedt (Red Hat)27719842015-03-24 09:57:52 -04005386}
5387
5388/**
Tzvetomir Stoyanov (VMware)dc05ebf2018-08-08 14:03:03 -04005389 * tep_data_pid_from_comm - return the pid from a given comm
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04005390 * @tep: a handle to the trace event parser context
Steven Rostedt (Red Hat)27719842015-03-24 09:57:52 -04005391 * @comm: the cmdline to find the pid from
5392 * @next: the cmdline structure to find the next comm
5393 *
5394 * This returns the cmdline structure that holds a pid for a given
5395 * comm, or NULL if none found. As there may be more than one pid for
5396 * a given comm, the result of this call can be passed back into
Ingo Molnar3e449f72018-12-03 11:22:00 +01005397 * a recurring call in the @next parameter, and then it will find the
Steven Rostedt (Red Hat)27719842015-03-24 09:57:52 -04005398 * next pid.
Ingo Molnar3e449f72018-12-03 11:22:00 +01005399 * Also, it does a linear search, so it may be slow.
Steven Rostedt (Red Hat)27719842015-03-24 09:57:52 -04005400 */
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04005401struct tep_cmdline *tep_data_pid_from_comm(struct tep_handle *tep, const char *comm,
Tzvetomir Stoyanov2e4318a2018-11-30 23:08:09 -05005402 struct tep_cmdline *next)
Steven Rostedt (Red Hat)27719842015-03-24 09:57:52 -04005403{
Tzvetomir Stoyanov2e4318a2018-11-30 23:08:09 -05005404 struct tep_cmdline *cmdline;
Steven Rostedt (Red Hat)27719842015-03-24 09:57:52 -04005405
5406 /*
5407 * If the cmdlines have not been converted yet, then use
5408 * the list.
5409 */
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04005410 if (!tep->cmdlines)
5411 return pid_from_cmdlist(tep, comm, next);
Steven Rostedt (Red Hat)27719842015-03-24 09:57:52 -04005412
5413 if (next) {
5414 /*
5415 * The next pointer could have been still from
5416 * a previous call before cmdlines were created
5417 */
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04005418 if (next < tep->cmdlines ||
5419 next >= tep->cmdlines + tep->cmdline_count)
Steven Rostedt (Red Hat)27719842015-03-24 09:57:52 -04005420 next = NULL;
5421 else
5422 cmdline = next++;
5423 }
5424
5425 if (!next)
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04005426 cmdline = tep->cmdlines;
Steven Rostedt (Red Hat)27719842015-03-24 09:57:52 -04005427
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04005428 while (cmdline < tep->cmdlines + tep->cmdline_count) {
Steven Rostedt (Red Hat)27719842015-03-24 09:57:52 -04005429 if (strcmp(cmdline->comm, comm) == 0)
5430 return cmdline;
5431 cmdline++;
5432 }
5433 return NULL;
5434}
5435
5436/**
Tzvetomir Stoyanov (VMware)dc05ebf2018-08-08 14:03:03 -04005437 * tep_cmdline_pid - return the pid associated to a given cmdline
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04005438 * @tep: a handle to the trace event parser context
Steven Rostedt (Red Hat)27719842015-03-24 09:57:52 -04005439 * @cmdline: The cmdline structure to get the pid from
5440 *
5441 * Returns the pid for a give cmdline. If @cmdline is NULL, then
5442 * -1 is returned.
5443 */
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04005444int tep_cmdline_pid(struct tep_handle *tep, struct tep_cmdline *cmdline)
Steven Rostedt (Red Hat)27719842015-03-24 09:57:52 -04005445{
5446 struct cmdline_list *cmdlist = (struct cmdline_list *)cmdline;
5447
5448 if (!cmdline)
5449 return -1;
5450
5451 /*
5452 * If cmdlines have not been created yet, or cmdline is
5453 * not part of the array, then treat it as a cmdlist instead.
5454 */
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04005455 if (!tep->cmdlines ||
5456 cmdline < tep->cmdlines ||
5457 cmdline >= tep->cmdlines + tep->cmdline_count)
Steven Rostedt (Red Hat)27719842015-03-24 09:57:52 -04005458 return cmdlist->pid;
5459
5460 return cmdline->pid;
5461}
5462
Tzvetomir Stoyanov38847db2019-08-05 16:43:13 -04005463/*
Steven Rostedtf7d82352012-04-06 00:47:53 +02005464 * This parses the raw @data using the given @event information and
5465 * writes the print format into the trace_seq.
5466 */
Tzvetomir Stoyanov38847db2019-08-05 16:43:13 -04005467static void print_event_info(struct trace_seq *s, char *format, bool raw,
5468 struct tep_event *event, struct tep_record *record)
Steven Rostedtf7d82352012-04-06 00:47:53 +02005469{
5470 int print_pretty = 1;
5471
Tzvetomir Stoyanov38847db2019-08-05 16:43:13 -04005472 if (raw || (event->flags & TEP_EVENT_FL_PRINTRAW))
Tzvetomir Stoyanov (VMware)6a48dc22018-08-08 14:02:52 -04005473 tep_print_fields(s, record->data, record->size, event);
Steven Rostedtf7d82352012-04-06 00:47:53 +02005474 else {
5475
Tzvetomir Stoyanov (VMware)c1953bc2018-09-19 14:56:48 -04005476 if (event->handler && !(event->flags & TEP_EVENT_FL_NOHANDLE))
Steven Rostedtf7d82352012-04-06 00:47:53 +02005477 print_pretty = event->handler(s, record, event,
5478 event->context);
5479
5480 if (print_pretty)
5481 pretty_print(s, record->data, record->size, event);
5482 }
5483
5484 trace_seq_terminate(s);
5485}
5486
Steven Rostedta6745332016-02-29 09:01:28 -05005487/**
Tzvetomir Stoyanov (VMware)610e1e42018-08-08 14:03:05 -04005488 * tep_find_event_by_record - return the event from a given record
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04005489 * @tep: a handle to the trace event parser context
Steven Rostedta6745332016-02-29 09:01:28 -05005490 * @record: The record to get the event from
5491 *
5492 * Returns the associated event for a given record, or NULL if non is
5493 * is found.
5494 */
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05005495struct tep_event *
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04005496tep_find_event_by_record(struct tep_handle *tep, struct tep_record *record)
Steven Rostedtf7d82352012-04-06 00:47:53 +02005497{
Steven Rostedta6745332016-02-29 09:01:28 -05005498 int type;
5499
5500 if (record->size < 0) {
5501 do_warning("ug! negative record size %d", record->size);
5502 return NULL;
5503 }
5504
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04005505 type = trace_parse_common_type(tep, record->data);
Steven Rostedta6745332016-02-29 09:01:28 -05005506
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04005507 return tep_find_event(tep, type);
Steven Rostedta6745332016-02-29 09:01:28 -05005508}
5509
Tzvetomir Stoyanov38847db2019-08-05 16:43:13 -04005510/*
5511 * Writes the timestamp of the record into @s. Time divisor and precision can be
5512 * specified as part of printf @format string. Example:
5513 * "%3.1000d" - divide the time by 1000 and print the first 3 digits
5514 * before the dot. Thus, the timestamp "123456000" will be printed as
5515 * "123.456"
Steven Rostedta6745332016-02-29 09:01:28 -05005516 */
Tzvetomir Stoyanov38847db2019-08-05 16:43:13 -04005517static void print_event_time(struct tep_handle *tep, struct trace_seq *s,
5518 char *format, struct tep_event *event,
5519 struct tep_record *record)
Steven Rostedta6745332016-02-29 09:01:28 -05005520{
Tzvetomir Stoyanov38847db2019-08-05 16:43:13 -04005521 unsigned long long time;
5522 char *divstr;
5523 int prec = 0, pr;
5524 int div = 0;
5525 int p10 = 1;
5526
5527 if (isdigit(*(format + 1)))
5528 prec = atoi(format + 1);
5529 divstr = strchr(format, '.');
5530 if (divstr && isdigit(*(divstr + 1)))
5531 div = atoi(divstr + 1);
5532 time = record->ts;
Steven Rostedt (VMware)5c8da722019-09-19 16:51:19 -04005533 if (div) {
5534 time += div / 2;
Tzvetomir Stoyanov38847db2019-08-05 16:43:13 -04005535 time /= div;
Steven Rostedt (VMware)5c8da722019-09-19 16:51:19 -04005536 }
Tzvetomir Stoyanov38847db2019-08-05 16:43:13 -04005537 pr = prec;
5538 while (pr--)
5539 p10 *= 10;
5540
5541 if (p10 > 1 && p10 < time)
5542 trace_seq_printf(s, "%5llu.%0*llu", time / p10, prec, time % p10);
5543 else
Steven Rostedt (VMware)401d61c2020-03-03 23:18:52 -05005544 trace_seq_printf(s, "%12llu", time);
Tzvetomir Stoyanov38847db2019-08-05 16:43:13 -04005545}
5546
5547struct print_event_type {
5548 enum {
5549 EVENT_TYPE_INT = 1,
5550 EVENT_TYPE_STRING,
5551 EVENT_TYPE_UNKNOWN,
5552 } type;
5553 char format[32];
5554};
5555
5556static void print_string(struct tep_handle *tep, struct trace_seq *s,
5557 struct tep_record *record, struct tep_event *event,
5558 const char *arg, struct print_event_type *type)
5559{
Steven Rostedta6745332016-02-29 09:01:28 -05005560 const char *comm;
5561 int pid;
5562
Tzvetomir Stoyanov38847db2019-08-05 16:43:13 -04005563 if (strncmp(arg, TEP_PRINT_LATENCY, strlen(TEP_PRINT_LATENCY)) == 0) {
5564 data_latency_format(tep, s, type->format, record);
5565 } else if (strncmp(arg, TEP_PRINT_COMM, strlen(TEP_PRINT_COMM)) == 0) {
5566 pid = parse_common_pid(tep, record->data);
5567 comm = find_cmdline(tep, pid);
5568 trace_seq_printf(s, type->format, comm);
5569 } else if (strncmp(arg, TEP_PRINT_INFO_RAW, strlen(TEP_PRINT_INFO_RAW)) == 0) {
5570 print_event_info(s, type->format, true, event, record);
5571 } else if (strncmp(arg, TEP_PRINT_INFO, strlen(TEP_PRINT_INFO)) == 0) {
5572 print_event_info(s, type->format, false, event, record);
5573 } else if (strncmp(arg, TEP_PRINT_NAME, strlen(TEP_PRINT_NAME)) == 0) {
5574 trace_seq_printf(s, type->format, event->name);
5575 } else {
5576 trace_seq_printf(s, "[UNKNOWN TEP TYPE %s]", arg);
Yoshihiro YUNOMAE1b372ca2013-11-01 17:53:53 -04005577 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02005578
Steven Rostedta6745332016-02-29 09:01:28 -05005579}
5580
Tzvetomir Stoyanov38847db2019-08-05 16:43:13 -04005581static void print_int(struct tep_handle *tep, struct trace_seq *s,
5582 struct tep_record *record, struct tep_event *event,
5583 int arg, struct print_event_type *type)
Steven Rostedta6745332016-02-29 09:01:28 -05005584{
Tzvetomir Stoyanov38847db2019-08-05 16:43:13 -04005585 int param;
Steven Rostedta6745332016-02-29 09:01:28 -05005586
Tzvetomir Stoyanov38847db2019-08-05 16:43:13 -04005587 switch (arg) {
5588 case TEP_PRINT_CPU:
5589 param = record->cpu;
5590 break;
5591 case TEP_PRINT_PID:
5592 param = parse_common_pid(tep, record->data);
5593 break;
5594 case TEP_PRINT_TIME:
5595 return print_event_time(tep, s, type->format, event, record);
5596 default:
Steven Rostedta6745332016-02-29 09:01:28 -05005597 return;
5598 }
Tzvetomir Stoyanov38847db2019-08-05 16:43:13 -04005599 trace_seq_printf(s, type->format, param);
5600}
Steven Rostedta6745332016-02-29 09:01:28 -05005601
Tzvetomir Stoyanov38847db2019-08-05 16:43:13 -04005602static int tep_print_event_param_type(char *format,
5603 struct print_event_type *type)
5604{
5605 char *str = format + 1;
5606 int i = 1;
5607
5608 type->type = EVENT_TYPE_UNKNOWN;
5609 while (*str) {
5610 switch (*str) {
5611 case 'd':
5612 case 'u':
5613 case 'i':
5614 case 'x':
5615 case 'X':
5616 case 'o':
5617 type->type = EVENT_TYPE_INT;
5618 break;
5619 case 's':
5620 type->type = EVENT_TYPE_STRING;
5621 break;
5622 }
5623 str++;
5624 i++;
5625 if (type->type != EVENT_TYPE_UNKNOWN)
5626 break;
5627 }
5628 memset(type->format, 0, 32);
5629 memcpy(type->format, format, i < 32 ? i : 31);
5630 return i;
5631}
5632
5633/**
5634 * tep_print_event - Write various event information
5635 * @tep: a handle to the trace event parser context
5636 * @s: the trace_seq to write to
5637 * @record: The record to get the event from
5638 * @format: a printf format string. Supported event fileds:
5639 * TEP_PRINT_PID, "%d" - event PID
5640 * TEP_PRINT_CPU, "%d" - event CPU
5641 * TEP_PRINT_COMM, "%s" - event command string
5642 * TEP_PRINT_NAME, "%s" - event name
5643 * TEP_PRINT_LATENCY, "%s" - event latency
5644 * TEP_PRINT_TIME, %d - event time stamp. A divisor and precision
5645 * can be specified as part of this format string:
5646 * "%precision.divisord". Example:
5647 * "%3.1000d" - divide the time by 1000 and print the first
5648 * 3 digits before the dot. Thus, the time stamp
5649 * "123456000" will be printed as "123.456"
5650 * TEP_PRINT_INFO, "%s" - event information. If any width is specified in
5651 * the format string, the event information will be printed
5652 * in raw format.
5653 * Writes the specified event information into @s.
5654 */
5655void tep_print_event(struct tep_handle *tep, struct trace_seq *s,
5656 struct tep_record *record, const char *fmt, ...)
5657{
5658 struct print_event_type type;
5659 char *format = strdup(fmt);
5660 char *current = format;
5661 char *str = format;
5662 int offset;
5663 va_list args;
5664 struct tep_event *event;
5665
5666 if (!format)
5667 return;
5668
5669 event = tep_find_event_by_record(tep, record);
5670 va_start(args, fmt);
5671 while (*current) {
5672 current = strchr(str, '%');
5673 if (!current) {
5674 trace_seq_puts(s, str);
5675 break;
5676 }
5677 memset(&type, 0, sizeof(type));
5678 offset = tep_print_event_param_type(current, &type);
5679 *current = '\0';
5680 trace_seq_puts(s, str);
5681 current += offset;
5682 switch (type.type) {
5683 case EVENT_TYPE_STRING:
5684 print_string(tep, s, record, event,
5685 va_arg(args, char*), &type);
5686 break;
5687 case EVENT_TYPE_INT:
5688 print_int(tep, s, record, event,
5689 va_arg(args, int), &type);
5690 break;
5691 case EVENT_TYPE_UNKNOWN:
5692 default:
5693 trace_seq_printf(s, "[UNKNOWN TYPE]");
5694 break;
5695 }
5696 str = current;
5697
5698 }
5699 va_end(args);
5700 free(format);
Steven Rostedta6745332016-02-29 09:01:28 -05005701}
5702
Steven Rostedtf7d82352012-04-06 00:47:53 +02005703static int events_id_cmp(const void *a, const void *b)
5704{
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05005705 struct tep_event * const * ea = a;
5706 struct tep_event * const * eb = b;
Steven Rostedtf7d82352012-04-06 00:47:53 +02005707
5708 if ((*ea)->id < (*eb)->id)
5709 return -1;
5710
5711 if ((*ea)->id > (*eb)->id)
5712 return 1;
5713
5714 return 0;
5715}
5716
5717static int events_name_cmp(const void *a, const void *b)
5718{
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05005719 struct tep_event * const * ea = a;
5720 struct tep_event * const * eb = b;
Steven Rostedtf7d82352012-04-06 00:47:53 +02005721 int res;
5722
5723 res = strcmp((*ea)->name, (*eb)->name);
5724 if (res)
5725 return res;
5726
5727 res = strcmp((*ea)->system, (*eb)->system);
5728 if (res)
5729 return res;
5730
5731 return events_id_cmp(a, b);
5732}
5733
5734static int events_system_cmp(const void *a, const void *b)
5735{
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05005736 struct tep_event * const * ea = a;
5737 struct tep_event * const * eb = b;
Steven Rostedtf7d82352012-04-06 00:47:53 +02005738 int res;
5739
5740 res = strcmp((*ea)->system, (*eb)->system);
5741 if (res)
5742 return res;
5743
5744 res = strcmp((*ea)->name, (*eb)->name);
5745 if (res)
5746 return res;
5747
5748 return events_id_cmp(a, b);
5749}
5750
Tzvetomir Stoyanov6699ed72019-04-01 12:43:08 -04005751static struct tep_event **list_events_copy(struct tep_handle *tep)
Steven Rostedtf7d82352012-04-06 00:47:53 +02005752{
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05005753 struct tep_event **events;
Tzvetomir Stoyanov6699ed72019-04-01 12:43:08 -04005754
5755 if (!tep)
5756 return NULL;
5757
5758 events = malloc(sizeof(*events) * (tep->nr_events + 1));
5759 if (!events)
5760 return NULL;
5761
5762 memcpy(events, tep->events, sizeof(*events) * tep->nr_events);
5763 events[tep->nr_events] = NULL;
5764 return events;
5765}
5766
5767static void list_events_sort(struct tep_event **events, int nr_events,
5768 enum tep_event_sort_type sort_type)
5769{
Steven Rostedtf7d82352012-04-06 00:47:53 +02005770 int (*sort)(const void *a, const void *b);
5771
Steven Rostedtf7d82352012-04-06 00:47:53 +02005772 switch (sort_type) {
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04005773 case TEP_EVENT_SORT_ID:
Steven Rostedtf7d82352012-04-06 00:47:53 +02005774 sort = events_id_cmp;
5775 break;
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04005776 case TEP_EVENT_SORT_NAME:
Steven Rostedtf7d82352012-04-06 00:47:53 +02005777 sort = events_name_cmp;
5778 break;
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04005779 case TEP_EVENT_SORT_SYSTEM:
Steven Rostedtf7d82352012-04-06 00:47:53 +02005780 sort = events_system_cmp;
5781 break;
5782 default:
Tzvetomir Stoyanov6699ed72019-04-01 12:43:08 -04005783 sort = NULL;
Steven Rostedtf7d82352012-04-06 00:47:53 +02005784 }
5785
Tzvetomir Stoyanov6699ed72019-04-01 12:43:08 -04005786 if (sort)
5787 qsort(events, nr_events, sizeof(*events), sort);
5788}
5789
5790/**
5791 * tep_list_events - Get events, sorted by given criteria.
5792 * @tep: a handle to the tep context
5793 * @sort_type: desired sort order of the events in the array
5794 *
5795 * Returns an array of pointers to all events, sorted by the given
5796 * @sort_type criteria. The last element of the array is NULL. The returned
5797 * memory must not be freed, it is managed by the library.
5798 * The function is not thread safe.
5799 */
5800struct tep_event **tep_list_events(struct tep_handle *tep,
5801 enum tep_event_sort_type sort_type)
5802{
5803 struct tep_event **events;
5804
5805 if (!tep)
5806 return NULL;
5807
5808 events = tep->sort_events;
5809 if (events && tep->last_type == sort_type)
5810 return events;
5811
5812 if (!events) {
5813 events = list_events_copy(tep);
5814 if (!events)
5815 return NULL;
5816
5817 tep->sort_events = events;
5818
5819 /* the internal events are sorted by id */
5820 if (sort_type == TEP_EVENT_SORT_ID) {
5821 tep->last_type = sort_type;
5822 return events;
5823 }
5824 }
5825
5826 list_events_sort(events, tep->nr_events, sort_type);
5827 tep->last_type = sort_type;
5828
5829 return events;
5830}
5831
5832
5833/**
5834 * tep_list_events_copy - Thread safe version of tep_list_events()
5835 * @tep: a handle to the tep context
5836 * @sort_type: desired sort order of the events in the array
5837 *
5838 * Returns an array of pointers to all events, sorted by the given
5839 * @sort_type criteria. The last element of the array is NULL. The returned
5840 * array is newly allocated inside the function and must be freed by the caller
5841 */
5842struct tep_event **tep_list_events_copy(struct tep_handle *tep,
5843 enum tep_event_sort_type sort_type)
5844{
5845 struct tep_event **events;
5846
5847 if (!tep)
5848 return NULL;
5849
5850 events = list_events_copy(tep);
5851 if (!events)
5852 return NULL;
5853
5854 /* the internal events are sorted by id */
5855 if (sort_type == TEP_EVENT_SORT_ID)
5856 return events;
5857
5858 list_events_sort(events, tep->nr_events, sort_type);
Steven Rostedtf7d82352012-04-06 00:47:53 +02005859
5860 return events;
5861}
5862
Tzvetomir Stoyanov (VMware)2c92f982018-09-19 14:56:45 -04005863static struct tep_format_field **
Steven Rostedtf7d82352012-04-06 00:47:53 +02005864get_event_fields(const char *type, const char *name,
Tzvetomir Stoyanov (VMware)2c92f982018-09-19 14:56:45 -04005865 int count, struct tep_format_field *list)
Steven Rostedtf7d82352012-04-06 00:47:53 +02005866{
Tzvetomir Stoyanov (VMware)2c92f982018-09-19 14:56:45 -04005867 struct tep_format_field **fields;
5868 struct tep_format_field *field;
Steven Rostedtf7d82352012-04-06 00:47:53 +02005869 int i = 0;
5870
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -03005871 fields = malloc(sizeof(*fields) * (count + 1));
5872 if (!fields)
5873 return NULL;
5874
Steven Rostedtf7d82352012-04-06 00:47:53 +02005875 for (field = list; field; field = field->next) {
5876 fields[i++] = field;
5877 if (i == count + 1) {
5878 do_warning("event %s has more %s fields than specified",
5879 name, type);
5880 i--;
5881 break;
5882 }
5883 }
5884
5885 if (i != count)
5886 do_warning("event %s has less %s fields than specified",
5887 name, type);
5888
5889 fields[i] = NULL;
5890
5891 return fields;
5892}
5893
5894/**
Tzvetomir Stoyanov (VMware)c99eeaf2018-08-08 14:03:08 -04005895 * tep_event_common_fields - return a list of common fields for an event
Steven Rostedtf7d82352012-04-06 00:47:53 +02005896 * @event: the event to return the common fields of.
5897 *
5898 * Returns an allocated array of fields. The last item in the array is NULL.
5899 * The array must be freed with free().
5900 */
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05005901struct tep_format_field **tep_event_common_fields(struct tep_event *event)
Steven Rostedtf7d82352012-04-06 00:47:53 +02005902{
5903 return get_event_fields("common", event->name,
5904 event->format.nr_common,
5905 event->format.common_fields);
5906}
5907
5908/**
Tzvetomir Stoyanov (VMware)c99eeaf2018-08-08 14:03:08 -04005909 * tep_event_fields - return a list of event specific fields for an event
Steven Rostedtf7d82352012-04-06 00:47:53 +02005910 * @event: the event to return the fields of.
5911 *
5912 * Returns an allocated array of fields. The last item in the array is NULL.
5913 * The array must be freed with free().
5914 */
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05005915struct tep_format_field **tep_event_fields(struct tep_event *event)
Steven Rostedtf7d82352012-04-06 00:47:53 +02005916{
5917 return get_event_fields("event", event->name,
5918 event->format.nr_fields,
5919 event->format.fields);
5920}
5921
Tzvetomir Stoyanov (VMware)5647f942018-09-19 14:56:49 -04005922static void print_fields(struct trace_seq *s, struct tep_print_flag_sym *field)
Steven Rostedtf7d82352012-04-06 00:47:53 +02005923{
5924 trace_seq_printf(s, "{ %s, %s }", field->value, field->str);
5925 if (field->next) {
5926 trace_seq_puts(s, ", ");
5927 print_fields(s, field->next);
5928 }
5929}
5930
5931/* for debugging */
Tzvetomir Stoyanov (VMware)5647f942018-09-19 14:56:49 -04005932static void print_args(struct tep_print_arg *args)
Steven Rostedtf7d82352012-04-06 00:47:53 +02005933{
5934 int print_paren = 1;
5935 struct trace_seq s;
5936
5937 switch (args->type) {
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04005938 case TEP_PRINT_NULL:
Steven Rostedtf7d82352012-04-06 00:47:53 +02005939 printf("null");
5940 break;
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04005941 case TEP_PRINT_ATOM:
Steven Rostedtf7d82352012-04-06 00:47:53 +02005942 printf("%s", args->atom.atom);
5943 break;
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04005944 case TEP_PRINT_FIELD:
Steven Rostedtf7d82352012-04-06 00:47:53 +02005945 printf("REC->%s", args->field.name);
5946 break;
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04005947 case TEP_PRINT_FLAGS:
Steven Rostedtf7d82352012-04-06 00:47:53 +02005948 printf("__print_flags(");
5949 print_args(args->flags.field);
5950 printf(", %s, ", args->flags.delim);
5951 trace_seq_init(&s);
5952 print_fields(&s, args->flags.flags);
5953 trace_seq_do_printf(&s);
5954 trace_seq_destroy(&s);
5955 printf(")");
5956 break;
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04005957 case TEP_PRINT_SYMBOL:
Steven Rostedtf7d82352012-04-06 00:47:53 +02005958 printf("__print_symbolic(");
5959 print_args(args->symbol.field);
5960 printf(", ");
5961 trace_seq_init(&s);
5962 print_fields(&s, args->symbol.symbols);
5963 trace_seq_do_printf(&s);
5964 trace_seq_destroy(&s);
5965 printf(")");
5966 break;
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04005967 case TEP_PRINT_HEX:
Namhyung Kime080e6f2012-06-27 09:41:41 +09005968 printf("__print_hex(");
5969 print_args(args->hex.field);
5970 printf(", ");
5971 print_args(args->hex.size);
5972 printf(")");
5973 break;
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04005974 case TEP_PRINT_HEX_STR:
Daniel Borkmann0fe05592017-01-25 02:28:17 +01005975 printf("__print_hex_str(");
5976 print_args(args->hex.field);
5977 printf(", ");
5978 print_args(args->hex.size);
5979 printf(")");
5980 break;
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04005981 case TEP_PRINT_INT_ARRAY:
Javi Merinob839e1e82015-03-24 11:07:19 +00005982 printf("__print_array(");
5983 print_args(args->int_array.field);
5984 printf(", ");
5985 print_args(args->int_array.count);
5986 printf(", ");
5987 print_args(args->int_array.el_size);
5988 printf(")");
5989 break;
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04005990 case TEP_PRINT_STRING:
5991 case TEP_PRINT_BSTRING:
Steven Rostedtf7d82352012-04-06 00:47:53 +02005992 printf("__get_str(%s)", args->string.string);
5993 break;
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04005994 case TEP_PRINT_BITMASK:
Steven Rostedt (Red Hat)473a7782014-06-02 23:20:16 -04005995 printf("__get_bitmask(%s)", args->bitmask.bitmask);
5996 break;
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04005997 case TEP_PRINT_TYPE:
Steven Rostedtf7d82352012-04-06 00:47:53 +02005998 printf("(%s)", args->typecast.type);
5999 print_args(args->typecast.item);
6000 break;
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04006001 case TEP_PRINT_OP:
Steven Rostedtf7d82352012-04-06 00:47:53 +02006002 if (strcmp(args->op.op, ":") == 0)
6003 print_paren = 0;
6004 if (print_paren)
6005 printf("(");
6006 print_args(args->op.left);
6007 printf(" %s ", args->op.op);
6008 print_args(args->op.right);
6009 if (print_paren)
6010 printf(")");
6011 break;
6012 default:
6013 /* we should warn... */
6014 return;
6015 }
6016 if (args->next) {
6017 printf("\n");
6018 print_args(args->next);
6019 }
6020}
6021
6022static void parse_header_field(const char *field,
6023 int *offset, int *size, int mandatory)
6024{
6025 unsigned long long save_input_buf_ptr;
6026 unsigned long long save_input_buf_siz;
6027 char *token;
6028 int type;
6029
6030 save_input_buf_ptr = input_buf_ptr;
6031 save_input_buf_siz = input_buf_siz;
6032
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04006033 if (read_expected(TEP_EVENT_ITEM, "field") < 0)
Steven Rostedtf7d82352012-04-06 00:47:53 +02006034 return;
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04006035 if (read_expected(TEP_EVENT_OP, ":") < 0)
Steven Rostedtf7d82352012-04-06 00:47:53 +02006036 return;
6037
6038 /* type */
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04006039 if (read_expect_type(TEP_EVENT_ITEM, &token) < 0)
Steven Rostedtf7d82352012-04-06 00:47:53 +02006040 goto fail;
6041 free_token(token);
6042
6043 /*
6044 * If this is not a mandatory field, then test it first.
6045 */
6046 if (mandatory) {
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04006047 if (read_expected(TEP_EVENT_ITEM, field) < 0)
Steven Rostedtf7d82352012-04-06 00:47:53 +02006048 return;
6049 } else {
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04006050 if (read_expect_type(TEP_EVENT_ITEM, &token) < 0)
Steven Rostedtf7d82352012-04-06 00:47:53 +02006051 goto fail;
6052 if (strcmp(token, field) != 0)
6053 goto discard;
6054 free_token(token);
6055 }
6056
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04006057 if (read_expected(TEP_EVENT_OP, ";") < 0)
Steven Rostedtf7d82352012-04-06 00:47:53 +02006058 return;
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04006059 if (read_expected(TEP_EVENT_ITEM, "offset") < 0)
Steven Rostedtf7d82352012-04-06 00:47:53 +02006060 return;
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04006061 if (read_expected(TEP_EVENT_OP, ":") < 0)
Steven Rostedtf7d82352012-04-06 00:47:53 +02006062 return;
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04006063 if (read_expect_type(TEP_EVENT_ITEM, &token) < 0)
Steven Rostedtf7d82352012-04-06 00:47:53 +02006064 goto fail;
6065 *offset = atoi(token);
6066 free_token(token);
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04006067 if (read_expected(TEP_EVENT_OP, ";") < 0)
Steven Rostedtf7d82352012-04-06 00:47:53 +02006068 return;
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04006069 if (read_expected(TEP_EVENT_ITEM, "size") < 0)
Steven Rostedtf7d82352012-04-06 00:47:53 +02006070 return;
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04006071 if (read_expected(TEP_EVENT_OP, ":") < 0)
Steven Rostedtf7d82352012-04-06 00:47:53 +02006072 return;
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04006073 if (read_expect_type(TEP_EVENT_ITEM, &token) < 0)
Steven Rostedtf7d82352012-04-06 00:47:53 +02006074 goto fail;
6075 *size = atoi(token);
6076 free_token(token);
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04006077 if (read_expected(TEP_EVENT_OP, ";") < 0)
Steven Rostedtf7d82352012-04-06 00:47:53 +02006078 return;
6079 type = read_token(&token);
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04006080 if (type != TEP_EVENT_NEWLINE) {
Steven Rostedtf7d82352012-04-06 00:47:53 +02006081 /* newer versions of the kernel have a "signed" type */
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04006082 if (type != TEP_EVENT_ITEM)
Steven Rostedtf7d82352012-04-06 00:47:53 +02006083 goto fail;
6084
6085 if (strcmp(token, "signed") != 0)
6086 goto fail;
6087
6088 free_token(token);
6089
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04006090 if (read_expected(TEP_EVENT_OP, ":") < 0)
Steven Rostedtf7d82352012-04-06 00:47:53 +02006091 return;
6092
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04006093 if (read_expect_type(TEP_EVENT_ITEM, &token))
Steven Rostedtf7d82352012-04-06 00:47:53 +02006094 goto fail;
6095
6096 free_token(token);
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04006097 if (read_expected(TEP_EVENT_OP, ";") < 0)
Steven Rostedtf7d82352012-04-06 00:47:53 +02006098 return;
6099
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04006100 if (read_expect_type(TEP_EVENT_NEWLINE, &token))
Steven Rostedtf7d82352012-04-06 00:47:53 +02006101 goto fail;
6102 }
6103 fail:
6104 free_token(token);
6105 return;
6106
6107 discard:
6108 input_buf_ptr = save_input_buf_ptr;
6109 input_buf_siz = save_input_buf_siz;
6110 *offset = 0;
6111 *size = 0;
6112 free_token(token);
6113}
6114
6115/**
Tzvetomir Stoyanov (VMware)c60167c2018-08-08 14:02:51 -04006116 * tep_parse_header_page - parse the data stored in the header page
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04006117 * @tep: a handle to the trace event parser context
Steven Rostedtf7d82352012-04-06 00:47:53 +02006118 * @buf: the buffer storing the header page format string
6119 * @size: the size of @buf
6120 * @long_size: the long size to use if there is no header
6121 *
6122 * This parses the header page format for information on the
6123 * ring buffer used. The @buf should be copied from
6124 *
6125 * /sys/kernel/debug/tracing/events/header_page
6126 */
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04006127int tep_parse_header_page(struct tep_handle *tep, char *buf, unsigned long size,
Tzvetomir Stoyanov (VMware)c60167c2018-08-08 14:02:51 -04006128 int long_size)
Steven Rostedtf7d82352012-04-06 00:47:53 +02006129{
6130 int ignore;
6131
6132 if (!size) {
6133 /*
6134 * Old kernels did not have header page info.
6135 * Sorry but we just use what we find here in user space.
6136 */
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04006137 tep->header_page_ts_size = sizeof(long long);
6138 tep->header_page_size_size = long_size;
6139 tep->header_page_data_offset = sizeof(long long) + long_size;
6140 tep->old_format = 1;
Steven Rostedtf7d82352012-04-06 00:47:53 +02006141 return -1;
6142 }
6143 init_input_buf(buf, size);
6144
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04006145 parse_header_field("timestamp", &tep->header_page_ts_offset,
6146 &tep->header_page_ts_size, 1);
6147 parse_header_field("commit", &tep->header_page_size_offset,
6148 &tep->header_page_size_size, 1);
6149 parse_header_field("overwrite", &tep->header_page_overwrite,
Steven Rostedtf7d82352012-04-06 00:47:53 +02006150 &ignore, 0);
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04006151 parse_header_field("data", &tep->header_page_data_offset,
6152 &tep->header_page_data_size, 1);
Steven Rostedtf7d82352012-04-06 00:47:53 +02006153
6154 return 0;
6155}
6156
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05006157static int event_matches(struct tep_event *event,
Steven Rostedtf7d82352012-04-06 00:47:53 +02006158 int id, const char *sys_name,
6159 const char *event_name)
6160{
6161 if (id >= 0 && id != event->id)
6162 return 0;
6163
6164 if (event_name && (strcmp(event_name, event->name) != 0))
6165 return 0;
6166
6167 if (sys_name && (strcmp(sys_name, event->system) != 0))
6168 return 0;
6169
6170 return 1;
6171}
6172
6173static void free_handler(struct event_handler *handle)
6174{
6175 free((void *)handle->sys_name);
6176 free((void *)handle->event_name);
6177 free(handle);
6178}
6179
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04006180static int find_event_handle(struct tep_handle *tep, struct tep_event *event)
Steven Rostedtf7d82352012-04-06 00:47:53 +02006181{
6182 struct event_handler *handle, **next;
6183
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04006184 for (next = &tep->handlers; *next;
Steven Rostedtf7d82352012-04-06 00:47:53 +02006185 next = &(*next)->next) {
6186 handle = *next;
6187 if (event_matches(event, handle->id,
6188 handle->sys_name,
6189 handle->event_name))
6190 break;
6191 }
6192
6193 if (!(*next))
6194 return 0;
6195
6196 pr_stat("overriding event (%d) %s:%s with new print handler",
6197 event->id, event->system, event->name);
6198
6199 event->handler = handle->func;
6200 event->context = handle->context;
6201
6202 *next = handle->next;
6203 free_handler(handle);
6204
6205 return 1;
6206}
6207
6208/**
Tzvetomir Stoyanov (VMware)0ae98632018-08-08 14:03:09 -04006209 * __tep_parse_format - parse the event format
Steven Rostedtf7d82352012-04-06 00:47:53 +02006210 * @buf: the buffer storing the event format string
6211 * @size: the size of @buf
6212 * @sys: the system the event belongs to
6213 *
6214 * This parses the event format and creates an event structure
6215 * to quickly parse raw data for a given event.
6216 *
6217 * These files currently come from:
6218 *
6219 * /sys/kernel/debug/tracing/events/.../.../format
6220 */
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05006221enum tep_errno __tep_parse_format(struct tep_event **eventp,
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04006222 struct tep_handle *tep, const char *buf,
Tzvetomir Stoyanov (VMware)0ae98632018-08-08 14:03:09 -04006223 unsigned long size, const char *sys)
Steven Rostedtf7d82352012-04-06 00:47:53 +02006224{
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05006225 struct tep_event *event;
Steven Rostedtf7d82352012-04-06 00:47:53 +02006226 int ret;
6227
6228 init_input_buf(buf, size);
6229
Arnaldo Carvalho de Melo2b291752012-09-18 11:13:15 -03006230 *eventp = event = alloc_event();
Steven Rostedtf7d82352012-04-06 00:47:53 +02006231 if (!event)
Tzvetomir Stoyanov (VMware)d97f4ef2018-08-08 14:02:58 -04006232 return TEP_ERRNO__MEM_ALLOC_FAILED;
Steven Rostedtf7d82352012-04-06 00:47:53 +02006233
6234 event->name = event_read_name();
6235 if (!event->name) {
6236 /* Bad event? */
Tzvetomir Stoyanov (VMware)d97f4ef2018-08-08 14:02:58 -04006237 ret = TEP_ERRNO__MEM_ALLOC_FAILED;
Namhyung Kimbffddff2012-08-22 16:00:29 +09006238 goto event_alloc_failed;
Steven Rostedtf7d82352012-04-06 00:47:53 +02006239 }
6240
6241 if (strcmp(sys, "ftrace") == 0) {
Tzvetomir Stoyanov (VMware)c1953bc2018-09-19 14:56:48 -04006242 event->flags |= TEP_EVENT_FL_ISFTRACE;
Steven Rostedtf7d82352012-04-06 00:47:53 +02006243
6244 if (strcmp(event->name, "bprint") == 0)
Tzvetomir Stoyanov (VMware)c1953bc2018-09-19 14:56:48 -04006245 event->flags |= TEP_EVENT_FL_ISBPRINT;
Steven Rostedtf7d82352012-04-06 00:47:53 +02006246 }
6247
6248 event->id = event_read_id();
Namhyung Kimbffddff2012-08-22 16:00:29 +09006249 if (event->id < 0) {
Tzvetomir Stoyanov (VMware)d97f4ef2018-08-08 14:02:58 -04006250 ret = TEP_ERRNO__READ_ID_FAILED;
Namhyung Kimbffddff2012-08-22 16:00:29 +09006251 /*
6252 * This isn't an allocation error actually.
6253 * But as the ID is critical, just bail out.
6254 */
6255 goto event_alloc_failed;
6256 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02006257
6258 event->system = strdup(sys);
Namhyung Kimbffddff2012-08-22 16:00:29 +09006259 if (!event->system) {
Tzvetomir Stoyanov (VMware)d97f4ef2018-08-08 14:02:58 -04006260 ret = TEP_ERRNO__MEM_ALLOC_FAILED;
Namhyung Kimbffddff2012-08-22 16:00:29 +09006261 goto event_alloc_failed;
6262 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02006263
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04006264 /* Add tep to event so that it can be referenced */
6265 event->tep = tep;
Steven Rostedt101782e2012-10-01 20:13:51 -04006266
Steven Rostedtf7d82352012-04-06 00:47:53 +02006267 ret = event_read_format(event);
6268 if (ret < 0) {
Tzvetomir Stoyanov (VMware)d97f4ef2018-08-08 14:02:58 -04006269 ret = TEP_ERRNO__READ_FORMAT_FAILED;
Namhyung Kimbffddff2012-08-22 16:00:29 +09006270 goto event_parse_failed;
Steven Rostedtf7d82352012-04-06 00:47:53 +02006271 }
6272
6273 /*
6274 * If the event has an override, don't print warnings if the event
6275 * print format fails to parse.
6276 */
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04006277 if (tep && find_event_handle(tep, event))
Steven Rostedtf7d82352012-04-06 00:47:53 +02006278 show_warning = 0;
6279
6280 ret = event_read_print(event);
Arnaldo Carvalho de Melo2b291752012-09-18 11:13:15 -03006281 show_warning = 1;
6282
Steven Rostedtf7d82352012-04-06 00:47:53 +02006283 if (ret < 0) {
Tzvetomir Stoyanov (VMware)d97f4ef2018-08-08 14:02:58 -04006284 ret = TEP_ERRNO__READ_PRINT_FAILED;
Namhyung Kimbffddff2012-08-22 16:00:29 +09006285 goto event_parse_failed;
Steven Rostedtf7d82352012-04-06 00:47:53 +02006286 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02006287
Tzvetomir Stoyanov (VMware)c1953bc2018-09-19 14:56:48 -04006288 if (!ret && (event->flags & TEP_EVENT_FL_ISFTRACE)) {
Tzvetomir Stoyanov (VMware)2c92f982018-09-19 14:56:45 -04006289 struct tep_format_field *field;
Tzvetomir Stoyanov (VMware)5647f942018-09-19 14:56:49 -04006290 struct tep_print_arg *arg, **list;
Steven Rostedtf7d82352012-04-06 00:47:53 +02006291
6292 /* old ftrace had no args */
Steven Rostedtf7d82352012-04-06 00:47:53 +02006293 list = &event->print_fmt.args;
6294 for (field = event->format.fields; field; field = field->next) {
6295 arg = alloc_arg();
Namhyung Kimb1ac7542012-09-20 11:09:19 +09006296 if (!arg) {
Tzvetomir Stoyanov (VMware)c1953bc2018-09-19 14:56:48 -04006297 event->flags |= TEP_EVENT_FL_FAILED;
Tzvetomir Stoyanov (VMware)d97f4ef2018-08-08 14:02:58 -04006298 return TEP_ERRNO__OLD_FTRACE_ARG_FAILED;
Namhyung Kimb1ac7542012-09-20 11:09:19 +09006299 }
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04006300 arg->type = TEP_PRINT_FIELD;
Steven Rostedtf7d82352012-04-06 00:47:53 +02006301 arg->field.name = strdup(field->name);
Namhyung Kimca638582012-04-09 11:54:31 +09006302 if (!arg->field.name) {
Tzvetomir Stoyanov (VMware)c1953bc2018-09-19 14:56:48 -04006303 event->flags |= TEP_EVENT_FL_FAILED;
Namhyung Kimfd34f0b2012-08-22 16:00:28 +09006304 free_arg(arg);
Tzvetomir Stoyanov (VMware)d97f4ef2018-08-08 14:02:58 -04006305 return TEP_ERRNO__OLD_FTRACE_ARG_FAILED;
Namhyung Kimca638582012-04-09 11:54:31 +09006306 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02006307 arg->field.field = field;
Namhyung Kimfd34f0b2012-08-22 16:00:28 +09006308 *list = arg;
6309 list = &arg->next;
Steven Rostedtf7d82352012-04-06 00:47:53 +02006310 }
6311 return 0;
6312 }
6313
Arnaldo Carvalho de Melo2b291752012-09-18 11:13:15 -03006314 return 0;
6315
6316 event_parse_failed:
Tzvetomir Stoyanov (VMware)c1953bc2018-09-19 14:56:48 -04006317 event->flags |= TEP_EVENT_FL_FAILED;
Arnaldo Carvalho de Melo2b291752012-09-18 11:13:15 -03006318 return ret;
6319
6320 event_alloc_failed:
6321 free(event->system);
6322 free(event->name);
6323 free(event);
6324 *eventp = NULL;
6325 return ret;
6326}
6327
Tzvetomir Stoyanov (VMware)d97f4ef2018-08-08 14:02:58 -04006328static enum tep_errno
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04006329__parse_event(struct tep_handle *tep,
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05006330 struct tep_event **eventp,
Tzvetomir Stoyanov (VMware)0ae98632018-08-08 14:03:09 -04006331 const char *buf, unsigned long size,
6332 const char *sys)
Jiri Olsa71ad9582013-12-03 14:09:19 +01006333{
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04006334 int ret = __tep_parse_format(eventp, tep, buf, size, sys);
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05006335 struct tep_event *event = *eventp;
Jiri Olsa71ad9582013-12-03 14:09:19 +01006336
6337 if (event == NULL)
6338 return ret;
6339
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04006340 if (tep && add_event(tep, event)) {
Tzvetomir Stoyanov (VMware)d97f4ef2018-08-08 14:02:58 -04006341 ret = TEP_ERRNO__MEM_ALLOC_FAILED;
Jiri Olsa71ad9582013-12-03 14:09:19 +01006342 goto event_add_failed;
6343 }
6344
6345#define PRINT_ARGS 0
6346 if (PRINT_ARGS && event->print_fmt.args)
6347 print_args(event->print_fmt.args);
6348
6349 return 0;
6350
6351event_add_failed:
Tzvetomir Stoyanovfc398512018-11-30 10:44:08 -05006352 tep_free_event(event);
Jiri Olsa71ad9582013-12-03 14:09:19 +01006353 return ret;
6354}
6355
Arnaldo Carvalho de Melo2b291752012-09-18 11:13:15 -03006356/**
Tzvetomir Stoyanov (VMware)c60167c2018-08-08 14:02:51 -04006357 * tep_parse_format - parse the event format
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04006358 * @tep: a handle to the trace event parser context
Jiri Olsa71ad9582013-12-03 14:09:19 +01006359 * @eventp: returned format
Arnaldo Carvalho de Melo2b291752012-09-18 11:13:15 -03006360 * @buf: the buffer storing the event format string
6361 * @size: the size of @buf
6362 * @sys: the system the event belongs to
6363 *
6364 * This parses the event format and creates an event structure
6365 * to quickly parse raw data for a given event.
6366 *
6367 * These files currently come from:
6368 *
6369 * /sys/kernel/debug/tracing/events/.../.../format
6370 */
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04006371enum tep_errno tep_parse_format(struct tep_handle *tep,
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05006372 struct tep_event **eventp,
Tzvetomir Stoyanov (VMware)d97f4ef2018-08-08 14:02:58 -04006373 const char *buf,
6374 unsigned long size, const char *sys)
Arnaldo Carvalho de Melo2b291752012-09-18 11:13:15 -03006375{
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04006376 return __parse_event(tep, eventp, buf, size, sys);
Arnaldo Carvalho de Melo2b291752012-09-18 11:13:15 -03006377}
6378
6379/**
Tzvetomir Stoyanov (VMware)c60167c2018-08-08 14:02:51 -04006380 * tep_parse_event - parse the event format
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04006381 * @tep: a handle to the trace event parser context
Arnaldo Carvalho de Melo2b291752012-09-18 11:13:15 -03006382 * @buf: the buffer storing the event format string
6383 * @size: the size of @buf
6384 * @sys: the system the event belongs to
6385 *
6386 * This parses the event format and creates an event structure
6387 * to quickly parse raw data for a given event.
6388 *
6389 * These files currently come from:
6390 *
6391 * /sys/kernel/debug/tracing/events/.../.../format
6392 */
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04006393enum tep_errno tep_parse_event(struct tep_handle *tep, const char *buf,
Tzvetomir Stoyanov (VMware)d97f4ef2018-08-08 14:02:58 -04006394 unsigned long size, const char *sys)
Arnaldo Carvalho de Melo2b291752012-09-18 11:13:15 -03006395{
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05006396 struct tep_event *event = NULL;
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04006397 return __parse_event(tep, &event, buf, size, sys);
Steven Rostedtf7d82352012-04-06 00:47:53 +02006398}
6399
Tzvetomir Stoyanov (VMware)2c92f982018-09-19 14:56:45 -04006400int get_field_val(struct trace_seq *s, struct tep_format_field *field,
Tzvetomir Stoyanov (VMware)cbc49b22018-08-08 14:02:47 -04006401 const char *name, struct tep_record *record,
Steven Rostedtf7d82352012-04-06 00:47:53 +02006402 unsigned long long *val, int err)
6403{
6404 if (!field) {
6405 if (err)
6406 trace_seq_printf(s, "<CANT FIND FIELD %s>", name);
6407 return -1;
6408 }
6409
Tzvetomir Stoyanov (VMware)59c1bae2018-08-08 14:02:53 -04006410 if (tep_read_number_field(field, record->data, val)) {
Steven Rostedtf7d82352012-04-06 00:47:53 +02006411 if (err)
6412 trace_seq_printf(s, " %s=INVALID", name);
6413 return -1;
6414 }
6415
6416 return 0;
6417}
6418
6419/**
Tzvetomir Stoyanov (VMware)8b3e0872018-08-08 14:03:04 -04006420 * tep_get_field_raw - return the raw pointer into the data field
Steven Rostedtf7d82352012-04-06 00:47:53 +02006421 * @s: The seq to print to on error
6422 * @event: the event that the field is for
6423 * @name: The name of the field
6424 * @record: The record with the field name.
6425 * @len: place to store the field length.
6426 * @err: print default error if failed.
6427 *
6428 * Returns a pointer into record->data of the field and places
6429 * the length of the field in @len.
6430 *
6431 * On failure, it returns NULL.
6432 */
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05006433void *tep_get_field_raw(struct trace_seq *s, struct tep_event *event,
Tzvetomir Stoyanov (VMware)8b3e0872018-08-08 14:03:04 -04006434 const char *name, struct tep_record *record,
6435 int *len, int err)
Steven Rostedtf7d82352012-04-06 00:47:53 +02006436{
Tzvetomir Stoyanov (VMware)2c92f982018-09-19 14:56:45 -04006437 struct tep_format_field *field;
Steven Rostedtf7d82352012-04-06 00:47:53 +02006438 void *data = record->data;
6439 unsigned offset;
6440 int dummy;
6441
6442 if (!event)
6443 return NULL;
6444
Tzvetomir Stoyanov (VMware)af85cd12018-08-08 14:02:50 -04006445 field = tep_find_field(event, name);
Steven Rostedtf7d82352012-04-06 00:47:53 +02006446
6447 if (!field) {
6448 if (err)
6449 trace_seq_printf(s, "<CANT FIND FIELD %s>", name);
6450 return NULL;
6451 }
6452
6453 /* Allow @len to be NULL */
6454 if (!len)
6455 len = &dummy;
6456
6457 offset = field->offset;
Tzvetomir Stoyanov (VMware)bb39ccb2018-09-19 14:56:46 -04006458 if (field->flags & TEP_FIELD_IS_DYNAMIC) {
Tzvetomir Stoyanov69769ce2019-04-01 12:43:18 -04006459 offset = tep_read_number(event->tep,
6460 data + offset, field->size);
Steven Rostedtf7d82352012-04-06 00:47:53 +02006461 *len = offset >> 16;
6462 offset &= 0xffff;
6463 } else
6464 *len = field->size;
6465
6466 return data + offset;
6467}
6468
6469/**
Tzvetomir Stoyanov (VMware)8b3e0872018-08-08 14:03:04 -04006470 * tep_get_field_val - find a field and return its value
Steven Rostedtf7d82352012-04-06 00:47:53 +02006471 * @s: The seq to print to on error
6472 * @event: the event that the field is for
6473 * @name: The name of the field
6474 * @record: The record with the field name.
6475 * @val: place to store the value of the field.
6476 * @err: print default error if failed.
6477 *
6478 * Returns 0 on success -1 on field not found.
6479 */
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05006480int tep_get_field_val(struct trace_seq *s, struct tep_event *event,
Tzvetomir Stoyanov (VMware)8b3e0872018-08-08 14:03:04 -04006481 const char *name, struct tep_record *record,
6482 unsigned long long *val, int err)
Steven Rostedtf7d82352012-04-06 00:47:53 +02006483{
Tzvetomir Stoyanov (VMware)2c92f982018-09-19 14:56:45 -04006484 struct tep_format_field *field;
Steven Rostedtf7d82352012-04-06 00:47:53 +02006485
6486 if (!event)
6487 return -1;
6488
Tzvetomir Stoyanov (VMware)af85cd12018-08-08 14:02:50 -04006489 field = tep_find_field(event, name);
Steven Rostedtf7d82352012-04-06 00:47:53 +02006490
6491 return get_field_val(s, field, name, record, val, err);
6492}
6493
6494/**
Tzvetomir Stoyanov (VMware)8b3e0872018-08-08 14:03:04 -04006495 * tep_get_common_field_val - find a common field and return its value
Steven Rostedtf7d82352012-04-06 00:47:53 +02006496 * @s: The seq to print to on error
6497 * @event: the event that the field is for
6498 * @name: The name of the field
6499 * @record: The record with the field name.
6500 * @val: place to store the value of the field.
6501 * @err: print default error if failed.
6502 *
6503 * Returns 0 on success -1 on field not found.
6504 */
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05006505int tep_get_common_field_val(struct trace_seq *s, struct tep_event *event,
Tzvetomir Stoyanov (VMware)8b3e0872018-08-08 14:03:04 -04006506 const char *name, struct tep_record *record,
6507 unsigned long long *val, int err)
Steven Rostedtf7d82352012-04-06 00:47:53 +02006508{
Tzvetomir Stoyanov (VMware)2c92f982018-09-19 14:56:45 -04006509 struct tep_format_field *field;
Steven Rostedtf7d82352012-04-06 00:47:53 +02006510
6511 if (!event)
6512 return -1;
6513
Tzvetomir Stoyanov (VMware)af85cd12018-08-08 14:02:50 -04006514 field = tep_find_common_field(event, name);
Steven Rostedtf7d82352012-04-06 00:47:53 +02006515
6516 return get_field_val(s, field, name, record, val, err);
6517}
6518
6519/**
Tzvetomir Stoyanov (VMware)8b3e0872018-08-08 14:03:04 -04006520 * tep_get_any_field_val - find a any field and return its value
Steven Rostedtf7d82352012-04-06 00:47:53 +02006521 * @s: The seq to print to on error
6522 * @event: the event that the field is for
6523 * @name: The name of the field
6524 * @record: The record with the field name.
6525 * @val: place to store the value of the field.
6526 * @err: print default error if failed.
6527 *
6528 * Returns 0 on success -1 on field not found.
6529 */
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05006530int tep_get_any_field_val(struct trace_seq *s, struct tep_event *event,
Tzvetomir Stoyanov (VMware)8b3e0872018-08-08 14:03:04 -04006531 const char *name, struct tep_record *record,
6532 unsigned long long *val, int err)
Steven Rostedtf7d82352012-04-06 00:47:53 +02006533{
Tzvetomir Stoyanov (VMware)2c92f982018-09-19 14:56:45 -04006534 struct tep_format_field *field;
Steven Rostedtf7d82352012-04-06 00:47:53 +02006535
6536 if (!event)
6537 return -1;
6538
Tzvetomir Stoyanov (VMware)af85cd12018-08-08 14:02:50 -04006539 field = tep_find_any_field(event, name);
Steven Rostedtf7d82352012-04-06 00:47:53 +02006540
6541 return get_field_val(s, field, name, record, val, err);
6542}
6543
6544/**
Tzvetomir Stoyanov (VMware)6a48dc22018-08-08 14:02:52 -04006545 * tep_print_num_field - print a field and a format
Steven Rostedtf7d82352012-04-06 00:47:53 +02006546 * @s: The seq to print to
6547 * @fmt: The printf format to print the field with.
6548 * @event: the event that the field is for
6549 * @name: The name of the field
6550 * @record: The record with the field name.
6551 * @err: print default error if failed.
6552 *
Tzvetomir Stoyanov489b3492019-04-01 12:43:10 -04006553 * Returns positive value on success, negative in case of an error,
6554 * or 0 if buffer is full.
Steven Rostedtf7d82352012-04-06 00:47:53 +02006555 */
Tzvetomir Stoyanov (VMware)6a48dc22018-08-08 14:02:52 -04006556int tep_print_num_field(struct trace_seq *s, const char *fmt,
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05006557 struct tep_event *event, const char *name,
Tzvetomir Stoyanov (VMware)6a48dc22018-08-08 14:02:52 -04006558 struct tep_record *record, int err)
Steven Rostedtf7d82352012-04-06 00:47:53 +02006559{
Tzvetomir Stoyanov (VMware)2c92f982018-09-19 14:56:45 -04006560 struct tep_format_field *field = tep_find_field(event, name);
Steven Rostedtf7d82352012-04-06 00:47:53 +02006561 unsigned long long val;
6562
6563 if (!field)
6564 goto failed;
6565
Tzvetomir Stoyanov (VMware)59c1bae2018-08-08 14:02:53 -04006566 if (tep_read_number_field(field, record->data, &val))
Steven Rostedtf7d82352012-04-06 00:47:53 +02006567 goto failed;
6568
6569 return trace_seq_printf(s, fmt, val);
6570
6571 failed:
6572 if (err)
6573 trace_seq_printf(s, "CAN'T FIND FIELD \"%s\"", name);
6574 return -1;
6575}
6576
Steven Rostedt6d862b82013-11-01 17:54:00 -04006577/**
Tzvetomir Stoyanov (VMware)6a48dc22018-08-08 14:02:52 -04006578 * tep_print_func_field - print a field and a format for function pointers
Steven Rostedt6d862b82013-11-01 17:54:00 -04006579 * @s: The seq to print to
6580 * @fmt: The printf format to print the field with.
6581 * @event: the event that the field is for
6582 * @name: The name of the field
6583 * @record: The record with the field name.
6584 * @err: print default error if failed.
6585 *
Tzvetomir Stoyanov489b3492019-04-01 12:43:10 -04006586 * Returns positive value on success, negative in case of an error,
6587 * or 0 if buffer is full.
Steven Rostedt6d862b82013-11-01 17:54:00 -04006588 */
Tzvetomir Stoyanov (VMware)6a48dc22018-08-08 14:02:52 -04006589int tep_print_func_field(struct trace_seq *s, const char *fmt,
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05006590 struct tep_event *event, const char *name,
Tzvetomir Stoyanov (VMware)6a48dc22018-08-08 14:02:52 -04006591 struct tep_record *record, int err)
Steven Rostedt6d862b82013-11-01 17:54:00 -04006592{
Tzvetomir Stoyanov (VMware)2c92f982018-09-19 14:56:45 -04006593 struct tep_format_field *field = tep_find_field(event, name);
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04006594 struct tep_handle *tep = event->tep;
Steven Rostedt6d862b82013-11-01 17:54:00 -04006595 unsigned long long val;
6596 struct func_map *func;
6597 char tmp[128];
6598
6599 if (!field)
6600 goto failed;
6601
Tzvetomir Stoyanov (VMware)59c1bae2018-08-08 14:02:53 -04006602 if (tep_read_number_field(field, record->data, &val))
Steven Rostedt6d862b82013-11-01 17:54:00 -04006603 goto failed;
6604
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04006605 func = find_func(tep, val);
Steven Rostedt6d862b82013-11-01 17:54:00 -04006606
6607 if (func)
6608 snprintf(tmp, 128, "%s/0x%llx", func->func, func->addr - val);
6609 else
6610 sprintf(tmp, "0x%08llx", val);
6611
6612 return trace_seq_printf(s, fmt, tmp);
6613
6614 failed:
6615 if (err)
6616 trace_seq_printf(s, "CAN'T FIND FIELD \"%s\"", name);
6617 return -1;
6618}
6619
Tzvetomir Stoyanov (VMware)3cf47782018-08-08 14:02:59 -04006620static void free_func_handle(struct tep_function_handler *func)
Steven Rostedtf7d82352012-04-06 00:47:53 +02006621{
Tzvetomir Stoyanov (VMware)0ae98632018-08-08 14:03:09 -04006622 struct func_params *params;
Steven Rostedtf7d82352012-04-06 00:47:53 +02006623
6624 free(func->name);
6625
6626 while (func->params) {
6627 params = func->params;
6628 func->params = params->next;
6629 free(params);
6630 }
6631
6632 free(func);
6633}
6634
6635/**
Tzvetomir Stoyanov (VMware)b843e9c2018-08-08 14:03:02 -04006636 * tep_register_print_function - register a helper function
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04006637 * @tep: a handle to the trace event parser context
Steven Rostedtf7d82352012-04-06 00:47:53 +02006638 * @func: the function to process the helper function
Namhyung Kim16e6b8f2012-04-23 13:58:35 +09006639 * @ret_type: the return type of the helper function
Steven Rostedtf7d82352012-04-06 00:47:53 +02006640 * @name: the name of the helper function
Tzvetomir Stoyanov (VMware)3cf47782018-08-08 14:02:59 -04006641 * @parameters: A list of enum tep_func_arg_type
Steven Rostedtf7d82352012-04-06 00:47:53 +02006642 *
6643 * Some events may have helper functions in the print format arguments.
Namhyung Kim16e6b8f2012-04-23 13:58:35 +09006644 * This allows a plugin to dynamically create a way to process one
Steven Rostedtf7d82352012-04-06 00:47:53 +02006645 * of these functions.
6646 *
Tzvetomir Stoyanov (VMware)3cf47782018-08-08 14:02:59 -04006647 * The @parameters is a variable list of tep_func_arg_type enums that
6648 * must end with TEP_FUNC_ARG_VOID.
Steven Rostedtf7d82352012-04-06 00:47:53 +02006649 */
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04006650int tep_register_print_function(struct tep_handle *tep,
Tzvetomir Stoyanov (VMware)b843e9c2018-08-08 14:03:02 -04006651 tep_func_handler func,
6652 enum tep_func_arg_type ret_type,
6653 char *name, ...)
Steven Rostedtf7d82352012-04-06 00:47:53 +02006654{
Tzvetomir Stoyanov (VMware)3cf47782018-08-08 14:02:59 -04006655 struct tep_function_handler *func_handle;
Tzvetomir Stoyanov (VMware)0ae98632018-08-08 14:03:09 -04006656 struct func_params **next_param;
6657 struct func_params *param;
Tzvetomir Stoyanov (VMware)3cf47782018-08-08 14:02:59 -04006658 enum tep_func_arg_type type;
Steven Rostedtf7d82352012-04-06 00:47:53 +02006659 va_list ap;
Namhyung Kim67ed9392012-09-07 11:49:47 +09006660 int ret;
Steven Rostedtf7d82352012-04-06 00:47:53 +02006661
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04006662 func_handle = find_func_handler(tep, name);
Steven Rostedtf7d82352012-04-06 00:47:53 +02006663 if (func_handle) {
6664 /*
6665 * This is most like caused by the users own
6666 * plugins updating the function. This overrides the
6667 * system defaults.
6668 */
6669 pr_stat("override of function helper '%s'", name);
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04006670 remove_func_handler(tep, name);
Steven Rostedtf7d82352012-04-06 00:47:53 +02006671 }
6672
Arnaldo Carvalho de Melo87162d82012-09-12 15:39:59 -03006673 func_handle = calloc(1, sizeof(*func_handle));
Namhyung Kim67ed9392012-09-07 11:49:47 +09006674 if (!func_handle) {
6675 do_warning("Failed to allocate function handler");
Tzvetomir Stoyanov (VMware)d97f4ef2018-08-08 14:02:58 -04006676 return TEP_ERRNO__MEM_ALLOC_FAILED;
Namhyung Kim67ed9392012-09-07 11:49:47 +09006677 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02006678
6679 func_handle->ret_type = ret_type;
6680 func_handle->name = strdup(name);
6681 func_handle->func = func;
Namhyung Kim67ed9392012-09-07 11:49:47 +09006682 if (!func_handle->name) {
6683 do_warning("Failed to allocate function name");
6684 free(func_handle);
Tzvetomir Stoyanov (VMware)d97f4ef2018-08-08 14:02:58 -04006685 return TEP_ERRNO__MEM_ALLOC_FAILED;
Namhyung Kim67ed9392012-09-07 11:49:47 +09006686 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02006687
6688 next_param = &(func_handle->params);
6689 va_start(ap, name);
6690 for (;;) {
Tzvetomir Stoyanov (VMware)3cf47782018-08-08 14:02:59 -04006691 type = va_arg(ap, enum tep_func_arg_type);
6692 if (type == TEP_FUNC_ARG_VOID)
Steven Rostedtf7d82352012-04-06 00:47:53 +02006693 break;
6694
Tzvetomir Stoyanov (VMware)3cf47782018-08-08 14:02:59 -04006695 if (type >= TEP_FUNC_ARG_MAX_TYPES) {
Namhyung Kim67ed9392012-09-07 11:49:47 +09006696 do_warning("Invalid argument type %d", type);
Tzvetomir Stoyanov (VMware)d97f4ef2018-08-08 14:02:58 -04006697 ret = TEP_ERRNO__INVALID_ARG_TYPE;
Steven Rostedtf7d82352012-04-06 00:47:53 +02006698 goto out_free;
6699 }
6700
Namhyung Kim67ed9392012-09-07 11:49:47 +09006701 param = malloc(sizeof(*param));
6702 if (!param) {
6703 do_warning("Failed to allocate function param");
Tzvetomir Stoyanov (VMware)d97f4ef2018-08-08 14:02:58 -04006704 ret = TEP_ERRNO__MEM_ALLOC_FAILED;
Namhyung Kim67ed9392012-09-07 11:49:47 +09006705 goto out_free;
6706 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02006707 param->type = type;
6708 param->next = NULL;
6709
6710 *next_param = param;
6711 next_param = &(param->next);
6712
6713 func_handle->nr_args++;
6714 }
6715 va_end(ap);
6716
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04006717 func_handle->next = tep->func_handlers;
6718 tep->func_handlers = func_handle;
Steven Rostedtf7d82352012-04-06 00:47:53 +02006719
6720 return 0;
6721 out_free:
6722 va_end(ap);
6723 free_func_handle(func_handle);
Namhyung Kim67ed9392012-09-07 11:49:47 +09006724 return ret;
Steven Rostedtf7d82352012-04-06 00:47:53 +02006725}
6726
Namhyung Kim20c7e5a2014-01-16 11:31:08 +09006727/**
Tzvetomir Stoyanov (VMware)b843e9c2018-08-08 14:03:02 -04006728 * tep_unregister_print_function - unregister a helper function
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04006729 * @tep: a handle to the trace event parser context
Namhyung Kim20c7e5a2014-01-16 11:31:08 +09006730 * @func: the function to process the helper function
6731 * @name: the name of the helper function
6732 *
6733 * This function removes existing print handler for function @name.
6734 *
6735 * Returns 0 if the handler was removed successully, -1 otherwise.
6736 */
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04006737int tep_unregister_print_function(struct tep_handle *tep,
Tzvetomir Stoyanov (VMware)b843e9c2018-08-08 14:03:02 -04006738 tep_func_handler func, char *name)
Namhyung Kim20c7e5a2014-01-16 11:31:08 +09006739{
Tzvetomir Stoyanov (VMware)3cf47782018-08-08 14:02:59 -04006740 struct tep_function_handler *func_handle;
Namhyung Kim20c7e5a2014-01-16 11:31:08 +09006741
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04006742 func_handle = find_func_handler(tep, name);
Namhyung Kim20c7e5a2014-01-16 11:31:08 +09006743 if (func_handle && func_handle->func == func) {
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04006744 remove_func_handler(tep, name);
Namhyung Kim20c7e5a2014-01-16 11:31:08 +09006745 return 0;
6746 }
6747 return -1;
6748}
6749
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04006750static struct tep_event *search_event(struct tep_handle *tep, int id,
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05006751 const char *sys_name,
6752 const char *event_name)
Namhyung Kimad137012014-01-16 11:31:07 +09006753{
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05006754 struct tep_event *event;
Namhyung Kimad137012014-01-16 11:31:07 +09006755
6756 if (id >= 0) {
6757 /* search by id */
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04006758 event = tep_find_event(tep, id);
Namhyung Kimad137012014-01-16 11:31:07 +09006759 if (!event)
6760 return NULL;
6761 if (event_name && (strcmp(event_name, event->name) != 0))
6762 return NULL;
6763 if (sys_name && (strcmp(sys_name, event->system) != 0))
6764 return NULL;
6765 } else {
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04006766 event = tep_find_event_by_name(tep, sys_name, event_name);
Namhyung Kimad137012014-01-16 11:31:07 +09006767 if (!event)
6768 return NULL;
6769 }
6770 return event;
6771}
6772
Steven Rostedtf7d82352012-04-06 00:47:53 +02006773/**
Tzvetomir Stoyanov (VMware)b843e9c2018-08-08 14:03:02 -04006774 * tep_register_event_handler - register a way to parse an event
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04006775 * @tep: a handle to the trace event parser context
Steven Rostedtf7d82352012-04-06 00:47:53 +02006776 * @id: the id of the event to register
6777 * @sys_name: the system name the event belongs to
6778 * @event_name: the name of the event
6779 * @func: the function to call to parse the event information
Namhyung Kim16e6b8f2012-04-23 13:58:35 +09006780 * @context: the data to be passed to @func
Steven Rostedtf7d82352012-04-06 00:47:53 +02006781 *
6782 * This function allows a developer to override the parsing of
6783 * a given event. If for some reason the default print format
6784 * is not sufficient, this function will register a function
6785 * for an event to be used to parse the data instead.
6786 *
6787 * If @id is >= 0, then it is used to find the event.
6788 * else @sys_name and @event_name are used.
Tzvetomir Stoyanovf87ce7c2018-11-30 23:08:11 -05006789 *
6790 * Returns:
6791 * TEP_REGISTER_SUCCESS_OVERWRITE if an existing handler is overwritten
6792 * TEP_REGISTER_SUCCESS if a new handler is registered successfully
6793 * negative TEP_ERRNO_... in case of an error
6794 *
Steven Rostedtf7d82352012-04-06 00:47:53 +02006795 */
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04006796int tep_register_event_handler(struct tep_handle *tep, int id,
Tzvetomir Stoyanov (VMware)b843e9c2018-08-08 14:03:02 -04006797 const char *sys_name, const char *event_name,
6798 tep_event_handler_func func, void *context)
Steven Rostedtf7d82352012-04-06 00:47:53 +02006799{
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05006800 struct tep_event *event;
Steven Rostedtf7d82352012-04-06 00:47:53 +02006801 struct event_handler *handle;
6802
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04006803 event = search_event(tep, id, sys_name, event_name);
Namhyung Kimad137012014-01-16 11:31:07 +09006804 if (event == NULL)
6805 goto not_found;
Steven Rostedtf7d82352012-04-06 00:47:53 +02006806
6807 pr_stat("overriding event (%d) %s:%s with new print handler",
6808 event->id, event->system, event->name);
6809
6810 event->handler = func;
6811 event->context = context;
Tzvetomir Stoyanovf87ce7c2018-11-30 23:08:11 -05006812 return TEP_REGISTER_SUCCESS_OVERWRITE;
Steven Rostedtf7d82352012-04-06 00:47:53 +02006813
6814 not_found:
6815 /* Save for later use. */
Arnaldo Carvalho de Melo87162d82012-09-12 15:39:59 -03006816 handle = calloc(1, sizeof(*handle));
Namhyung Kim0ca8da02012-09-07 11:49:46 +09006817 if (!handle) {
6818 do_warning("Failed to allocate event handler");
Tzvetomir Stoyanov (VMware)d97f4ef2018-08-08 14:02:58 -04006819 return TEP_ERRNO__MEM_ALLOC_FAILED;
Namhyung Kim0ca8da02012-09-07 11:49:46 +09006820 }
6821
Steven Rostedtf7d82352012-04-06 00:47:53 +02006822 handle->id = id;
6823 if (event_name)
6824 handle->event_name = strdup(event_name);
6825 if (sys_name)
6826 handle->sys_name = strdup(sys_name);
6827
Namhyung Kimca638582012-04-09 11:54:31 +09006828 if ((event_name && !handle->event_name) ||
6829 (sys_name && !handle->sys_name)) {
Namhyung Kim0ca8da02012-09-07 11:49:46 +09006830 do_warning("Failed to allocate event/sys name");
6831 free((void *)handle->event_name);
6832 free((void *)handle->sys_name);
6833 free(handle);
Tzvetomir Stoyanov (VMware)d97f4ef2018-08-08 14:02:58 -04006834 return TEP_ERRNO__MEM_ALLOC_FAILED;
Namhyung Kimca638582012-04-09 11:54:31 +09006835 }
6836
Steven Rostedtf7d82352012-04-06 00:47:53 +02006837 handle->func = func;
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04006838 handle->next = tep->handlers;
6839 tep->handlers = handle;
Steven Rostedtf7d82352012-04-06 00:47:53 +02006840 handle->context = context;
6841
Tzvetomir Stoyanovf87ce7c2018-11-30 23:08:11 -05006842 return TEP_REGISTER_SUCCESS;
Steven Rostedtf7d82352012-04-06 00:47:53 +02006843}
6844
Namhyung Kimad137012014-01-16 11:31:07 +09006845static int handle_matches(struct event_handler *handler, int id,
6846 const char *sys_name, const char *event_name,
Tzvetomir Stoyanov (VMware)c32d52b2018-08-08 14:02:48 -04006847 tep_event_handler_func func, void *context)
Namhyung Kimad137012014-01-16 11:31:07 +09006848{
6849 if (id >= 0 && id != handler->id)
6850 return 0;
6851
6852 if (event_name && (strcmp(event_name, handler->event_name) != 0))
6853 return 0;
6854
6855 if (sys_name && (strcmp(sys_name, handler->sys_name) != 0))
6856 return 0;
6857
6858 if (func != handler->func || context != handler->context)
6859 return 0;
6860
6861 return 1;
6862}
6863
6864/**
Tzvetomir Stoyanov (VMware)b843e9c2018-08-08 14:03:02 -04006865 * tep_unregister_event_handler - unregister an existing event handler
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04006866 * @tep: a handle to the trace event parser context
Namhyung Kimad137012014-01-16 11:31:07 +09006867 * @id: the id of the event to unregister
6868 * @sys_name: the system name the handler belongs to
6869 * @event_name: the name of the event handler
6870 * @func: the function to call to parse the event information
6871 * @context: the data to be passed to @func
6872 *
6873 * This function removes existing event handler (parser).
6874 *
6875 * If @id is >= 0, then it is used to find the event.
6876 * else @sys_name and @event_name are used.
6877 *
6878 * Returns 0 if handler was removed successfully, -1 if event was not found.
6879 */
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04006880int tep_unregister_event_handler(struct tep_handle *tep, int id,
Tzvetomir Stoyanov (VMware)b843e9c2018-08-08 14:03:02 -04006881 const char *sys_name, const char *event_name,
6882 tep_event_handler_func func, void *context)
Namhyung Kimad137012014-01-16 11:31:07 +09006883{
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05006884 struct tep_event *event;
Namhyung Kimad137012014-01-16 11:31:07 +09006885 struct event_handler *handle;
6886 struct event_handler **next;
6887
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04006888 event = search_event(tep, id, sys_name, event_name);
Namhyung Kimad137012014-01-16 11:31:07 +09006889 if (event == NULL)
6890 goto not_found;
6891
6892 if (event->handler == func && event->context == context) {
6893 pr_stat("removing override handler for event (%d) %s:%s. Going back to default handler.",
6894 event->id, event->system, event->name);
6895
6896 event->handler = NULL;
6897 event->context = NULL;
6898 return 0;
6899 }
6900
6901not_found:
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04006902 for (next = &tep->handlers; *next; next = &(*next)->next) {
Namhyung Kimad137012014-01-16 11:31:07 +09006903 handle = *next;
6904 if (handle_matches(handle, id, sys_name, event_name,
6905 func, context))
6906 break;
6907 }
6908
6909 if (!(*next))
6910 return -1;
6911
6912 *next = handle->next;
6913 free_handler(handle);
6914
6915 return 0;
6916}
6917
Steven Rostedtf7d82352012-04-06 00:47:53 +02006918/**
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04006919 * tep_alloc - create a tep handle
Steven Rostedtf7d82352012-04-06 00:47:53 +02006920 */
Tzvetomir Stoyanov (VMware)4d5c58b2018-08-08 14:02:49 -04006921struct tep_handle *tep_alloc(void)
Steven Rostedtf7d82352012-04-06 00:47:53 +02006922{
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04006923 struct tep_handle *tep = calloc(1, sizeof(*tep));
Steven Rostedtf7d82352012-04-06 00:47:53 +02006924
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04006925 if (tep) {
6926 tep->ref_count = 1;
6927 tep->host_bigendian = tep_is_bigendian();
Tzvetomir Stoyanoveed14f42018-11-30 23:08:08 -05006928 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02006929
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04006930 return tep;
Steven Rostedtf7d82352012-04-06 00:47:53 +02006931}
6932
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04006933void tep_ref(struct tep_handle *tep)
Steven Rostedtf7d82352012-04-06 00:47:53 +02006934{
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04006935 tep->ref_count++;
Steven Rostedtf7d82352012-04-06 00:47:53 +02006936}
6937
Tzvetomir Stoyanov477be102018-11-30 10:44:04 -05006938int tep_get_ref(struct tep_handle *tep)
6939{
6940 if (tep)
6941 return tep->ref_count;
6942 return 0;
6943}
6944
Tzvetomir Stoyanov (VMware)2c92f982018-09-19 14:56:45 -04006945void tep_free_format_field(struct tep_format_field *field)
David Ahern00ae1122015-03-19 12:36:21 -06006946{
6947 free(field->type);
Jiri Olsad3542432015-04-18 17:50:18 +02006948 if (field->alias != field->name)
6949 free(field->alias);
David Ahern00ae1122015-03-19 12:36:21 -06006950 free(field->name);
6951 free(field);
6952}
6953
Tzvetomir Stoyanov (VMware)2c92f982018-09-19 14:56:45 -04006954static void free_format_fields(struct tep_format_field *field)
Steven Rostedtf7d82352012-04-06 00:47:53 +02006955{
Tzvetomir Stoyanov (VMware)2c92f982018-09-19 14:56:45 -04006956 struct tep_format_field *next;
Steven Rostedtf7d82352012-04-06 00:47:53 +02006957
6958 while (field) {
6959 next = field->next;
Tzvetomir Stoyanov (VMware)8b3e0872018-08-08 14:03:04 -04006960 tep_free_format_field(field);
Steven Rostedtf7d82352012-04-06 00:47:53 +02006961 field = next;
6962 }
6963}
6964
Tzvetomir Stoyanov (VMware)2c92f982018-09-19 14:56:45 -04006965static void free_formats(struct tep_format *format)
Steven Rostedtf7d82352012-04-06 00:47:53 +02006966{
6967 free_format_fields(format->common_fields);
6968 free_format_fields(format->fields);
6969}
6970
Tzvetomir Stoyanovfc398512018-11-30 10:44:08 -05006971void tep_free_event(struct tep_event *event)
Steven Rostedtf7d82352012-04-06 00:47:53 +02006972{
6973 free(event->name);
6974 free(event->system);
6975
6976 free_formats(&event->format);
6977
6978 free(event->print_fmt.format);
6979 free_args(event->print_fmt.args);
6980
6981 free(event);
6982}
6983
6984/**
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04006985 * tep_free - free a tep handle
6986 * @tep: the tep handle to free
Steven Rostedtf7d82352012-04-06 00:47:53 +02006987 */
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04006988void tep_free(struct tep_handle *tep)
Steven Rostedtf7d82352012-04-06 00:47:53 +02006989{
Steven Rostedta2525a02012-04-06 00:48:02 +02006990 struct cmdline_list *cmdlist, *cmdnext;
6991 struct func_list *funclist, *funcnext;
6992 struct printk_list *printklist, *printknext;
Tzvetomir Stoyanov (VMware)3cf47782018-08-08 14:02:59 -04006993 struct tep_function_handler *func_handler;
Steven Rostedtf7d82352012-04-06 00:47:53 +02006994 struct event_handler *handle;
6995 int i;
6996
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04006997 if (!tep)
Steven Rostedta2525a02012-04-06 00:48:02 +02006998 return;
6999
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04007000 cmdlist = tep->cmdlist;
7001 funclist = tep->funclist;
7002 printklist = tep->printklist;
Steven Rostedta2525a02012-04-06 00:48:02 +02007003
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04007004 tep->ref_count--;
7005 if (tep->ref_count)
Steven Rostedtf7d82352012-04-06 00:47:53 +02007006 return;
7007
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04007008 if (tep->cmdlines) {
7009 for (i = 0; i < tep->cmdline_count; i++)
7010 free(tep->cmdlines[i].comm);
7011 free(tep->cmdlines);
Steven Rostedtf7d82352012-04-06 00:47:53 +02007012 }
7013
7014 while (cmdlist) {
7015 cmdnext = cmdlist->next;
7016 free(cmdlist->comm);
7017 free(cmdlist);
7018 cmdlist = cmdnext;
7019 }
7020
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04007021 if (tep->func_map) {
7022 for (i = 0; i < (int)tep->func_count; i++) {
7023 free(tep->func_map[i].func);
7024 free(tep->func_map[i].mod);
Steven Rostedtf7d82352012-04-06 00:47:53 +02007025 }
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04007026 free(tep->func_map);
Steven Rostedtf7d82352012-04-06 00:47:53 +02007027 }
7028
7029 while (funclist) {
7030 funcnext = funclist->next;
7031 free(funclist->func);
7032 free(funclist->mod);
7033 free(funclist);
7034 funclist = funcnext;
7035 }
7036
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04007037 while (tep->func_handlers) {
7038 func_handler = tep->func_handlers;
7039 tep->func_handlers = func_handler->next;
Steven Rostedtf7d82352012-04-06 00:47:53 +02007040 free_func_handle(func_handler);
7041 }
7042
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04007043 if (tep->printk_map) {
7044 for (i = 0; i < (int)tep->printk_count; i++)
7045 free(tep->printk_map[i].printk);
7046 free(tep->printk_map);
Steven Rostedtf7d82352012-04-06 00:47:53 +02007047 }
7048
7049 while (printklist) {
7050 printknext = printklist->next;
7051 free(printklist->printk);
7052 free(printklist);
7053 printklist = printknext;
7054 }
7055
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04007056 for (i = 0; i < tep->nr_events; i++)
7057 tep_free_event(tep->events[i]);
Steven Rostedtf7d82352012-04-06 00:47:53 +02007058
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04007059 while (tep->handlers) {
7060 handle = tep->handlers;
7061 tep->handlers = handle->next;
Steven Rostedtf7d82352012-04-06 00:47:53 +02007062 free_handler(handle);
7063 }
7064
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04007065 free(tep->events);
7066 free(tep->sort_events);
7067 free(tep->func_resolver);
Steven Rostedtf7d82352012-04-06 00:47:53 +02007068
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04007069 free(tep);
Steven Rostedtf7d82352012-04-06 00:47:53 +02007070}
7071
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04007072void tep_unref(struct tep_handle *tep)
Steven Rostedtf7d82352012-04-06 00:47:53 +02007073{
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04007074 tep_free(tep);
Steven Rostedtf7d82352012-04-06 00:47:53 +02007075}