blob: 5acc18b326061ffb3d66e01704555014dbb8cb03 [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
Steven Rostedt (VMware)27d4d332020-03-24 16:08:46 -04001428static int append(char **buf, const char *delim, const char *str)
1429{
1430 char *new_buf;
1431
1432 new_buf = realloc(*buf, strlen(*buf) + strlen(delim) + strlen(str) + 1);
1433 if (!new_buf)
1434 return -1;
1435 strcat(new_buf, delim);
1436 strcat(new_buf, str);
1437 *buf = new_buf;
1438 return 0;
1439}
1440
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05001441static int event_read_fields(struct tep_event *event, struct tep_format_field **fields)
Steven Rostedtf7d82352012-04-06 00:47:53 +02001442{
Tzvetomir Stoyanov (VMware)2c92f982018-09-19 14:56:45 -04001443 struct tep_format_field *field = NULL;
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001444 enum tep_event_type type;
Steven Rostedtf7d82352012-04-06 00:47:53 +02001445 char *token;
1446 char *last_token;
Steven Rostedt (VMware)74621d92020-03-24 16:08:47 -04001447 char *delim = " ";
Steven Rostedtf7d82352012-04-06 00:47:53 +02001448 int count = 0;
Steven Rostedt (VMware)27d4d332020-03-24 16:08:46 -04001449 int ret;
Steven Rostedtf7d82352012-04-06 00:47:53 +02001450
1451 do {
Jiri Olsae23c1a52013-01-24 21:46:43 +01001452 unsigned int size_dynamic = 0;
1453
Steven Rostedtf7d82352012-04-06 00:47:53 +02001454 type = read_token(&token);
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001455 if (type == TEP_EVENT_NEWLINE) {
Steven Rostedtf7d82352012-04-06 00:47:53 +02001456 free_token(token);
1457 return count;
1458 }
1459
1460 count++;
1461
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001462 if (test_type_token(type, token, TEP_EVENT_ITEM, "field"))
Steven Rostedtf7d82352012-04-06 00:47:53 +02001463 goto fail;
1464 free_token(token);
1465
1466 type = read_token(&token);
1467 /*
1468 * The ftrace fields may still use the "special" name.
1469 * Just ignore it.
1470 */
Tzvetomir Stoyanov (VMware)c1953bc2018-09-19 14:56:48 -04001471 if (event->flags & TEP_EVENT_FL_ISFTRACE &&
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001472 type == TEP_EVENT_ITEM && strcmp(token, "special") == 0) {
Steven Rostedtf7d82352012-04-06 00:47:53 +02001473 free_token(token);
1474 type = read_token(&token);
1475 }
1476
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001477 if (test_type_token(type, token, TEP_EVENT_OP, ":") < 0)
Steven Rostedtf7d82352012-04-06 00:47:53 +02001478 goto fail;
1479
1480 free_token(token);
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001481 if (read_expect_type(TEP_EVENT_ITEM, &token) < 0)
Steven Rostedtf7d82352012-04-06 00:47:53 +02001482 goto fail;
1483
1484 last_token = token;
1485
Arnaldo Carvalho de Melo87162d82012-09-12 15:39:59 -03001486 field = calloc(1, sizeof(*field));
1487 if (!field)
1488 goto fail;
1489
Steven Rostedtf7d82352012-04-06 00:47:53 +02001490 field->event = event;
1491
1492 /* read the rest of the type */
1493 for (;;) {
1494 type = read_token(&token);
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001495 if (type == TEP_EVENT_ITEM ||
1496 (type == TEP_EVENT_OP && strcmp(token, "*") == 0) ||
Steven Rostedtf7d82352012-04-06 00:47:53 +02001497 /*
1498 * Some of the ftrace fields are broken and have
1499 * an illegal "." in them.
1500 */
Tzvetomir Stoyanov (VMware)c1953bc2018-09-19 14:56:48 -04001501 (event->flags & TEP_EVENT_FL_ISFTRACE &&
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001502 type == TEP_EVENT_OP && strcmp(token, ".") == 0)) {
Steven Rostedtf7d82352012-04-06 00:47:53 +02001503
1504 if (strcmp(token, "*") == 0)
Tzvetomir Stoyanov (VMware)bb39ccb2018-09-19 14:56:46 -04001505 field->flags |= TEP_FIELD_IS_POINTER;
Steven Rostedtf7d82352012-04-06 00:47:53 +02001506
1507 if (field->type) {
Steven Rostedt (VMware)74621d92020-03-24 16:08:47 -04001508 ret = append(&field->type, delim, last_token);
Steven Rostedtf7d82352012-04-06 00:47:53 +02001509 free(last_token);
Steven Rostedt (VMware)27d4d332020-03-24 16:08:46 -04001510 if (ret < 0)
1511 goto fail;
Steven Rostedtf7d82352012-04-06 00:47:53 +02001512 } else
1513 field->type = last_token;
1514 last_token = token;
Steven Rostedt (VMware)74621d92020-03-24 16:08:47 -04001515 delim = " ";
1516 continue;
1517 }
1518
1519 /* Handle __attribute__((user)) */
1520 if ((type == TEP_EVENT_DELIM) &&
1521 strcmp("__attribute__", last_token) == 0 &&
1522 token[0] == '(') {
1523 int depth = 1;
1524 int ret;
1525
1526 ret = append(&field->type, " ", last_token);
1527 ret |= append(&field->type, "", "(");
1528 if (ret < 0)
1529 goto fail;
1530
1531 delim = " ";
1532 while ((type = read_token(&token)) != TEP_EVENT_NONE) {
1533 if (type == TEP_EVENT_DELIM) {
1534 if (token[0] == '(')
1535 depth++;
1536 else if (token[0] == ')')
1537 depth--;
1538 if (!depth)
1539 break;
1540 ret = append(&field->type, "", token);
1541 delim = "";
1542 } else {
1543 ret = append(&field->type, delim, token);
1544 delim = " ";
1545 }
1546 if (ret < 0)
1547 goto fail;
1548 free(last_token);
1549 last_token = token;
1550 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02001551 continue;
1552 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02001553 break;
1554 }
1555
1556 if (!field->type) {
Namhyung Kim3388cc32014-03-19 10:22:53 +09001557 do_warning_event(event, "%s: no type found", __func__);
Steven Rostedtf7d82352012-04-06 00:47:53 +02001558 goto fail;
1559 }
Jiri Olsad3542432015-04-18 17:50:18 +02001560 field->name = field->alias = last_token;
Steven Rostedtf7d82352012-04-06 00:47:53 +02001561
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001562 if (test_type(type, TEP_EVENT_OP))
Steven Rostedtf7d82352012-04-06 00:47:53 +02001563 goto fail;
1564
1565 if (strcmp(token, "[") == 0) {
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001566 enum tep_event_type last_type = type;
Steven Rostedtf7d82352012-04-06 00:47:53 +02001567 char *brackets = token;
Steven Rostedtf7d82352012-04-06 00:47:53 +02001568
Tzvetomir Stoyanov (VMware)bb39ccb2018-09-19 14:56:46 -04001569 field->flags |= TEP_FIELD_IS_ARRAY;
Steven Rostedtf7d82352012-04-06 00:47:53 +02001570
1571 type = read_token(&token);
1572
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001573 if (type == TEP_EVENT_ITEM)
Steven Rostedtf7d82352012-04-06 00:47:53 +02001574 field->arraylen = strtoul(token, NULL, 0);
1575 else
1576 field->arraylen = 0;
1577
1578 while (strcmp(token, "]") != 0) {
Steven Rostedt (VMware)27d4d332020-03-24 16:08:46 -04001579 const char *delim;
1580
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001581 if (last_type == TEP_EVENT_ITEM &&
1582 type == TEP_EVENT_ITEM)
Steven Rostedt (VMware)27d4d332020-03-24 16:08:46 -04001583 delim = " ";
Steven Rostedtf7d82352012-04-06 00:47:53 +02001584 else
Steven Rostedt (VMware)27d4d332020-03-24 16:08:46 -04001585 delim = "";
1586
Steven Rostedtf7d82352012-04-06 00:47:53 +02001587 last_type = type;
1588
Steven Rostedt (VMware)27d4d332020-03-24 16:08:46 -04001589 ret = append(&brackets, delim, token);
1590 if (ret < 0) {
Namhyung Kimd2864472012-04-09 11:54:33 +09001591 free(brackets);
1592 goto fail;
1593 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02001594 /* We only care about the last token */
1595 field->arraylen = strtoul(token, NULL, 0);
1596 free_token(token);
1597 type = read_token(&token);
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001598 if (type == TEP_EVENT_NONE) {
Steven Rostedt (VMware)27d4d332020-03-24 16:08:46 -04001599 free(brackets);
Namhyung Kim3388cc32014-03-19 10:22:53 +09001600 do_warning_event(event, "failed to find token");
Steven Rostedtf7d82352012-04-06 00:47:53 +02001601 goto fail;
1602 }
1603 }
1604
1605 free_token(token);
1606
Steven Rostedt (VMware)27d4d332020-03-24 16:08:46 -04001607 ret = append(&brackets, "", "]");
1608 if (ret < 0) {
Namhyung Kimd2864472012-04-09 11:54:33 +09001609 free(brackets);
1610 goto fail;
1611 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02001612
1613 /* add brackets to type */
1614
1615 type = read_token(&token);
1616 /*
1617 * If the next token is not an OP, then it is of
1618 * the format: type [] item;
1619 */
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001620 if (type == TEP_EVENT_ITEM) {
Steven Rostedt (VMware)27d4d332020-03-24 16:08:46 -04001621 ret = append(&field->type, " ", field->name);
1622 if (ret < 0) {
Namhyung Kimd2864472012-04-09 11:54:33 +09001623 free(brackets);
1624 goto fail;
1625 }
Steven Rostedt (VMware)27d4d332020-03-24 16:08:46 -04001626 ret = append(&field->type, "", brackets);
1627
Jiri Olsae23c1a52013-01-24 21:46:43 +01001628 size_dynamic = type_size(field->name);
Steven Rostedtf7d82352012-04-06 00:47:53 +02001629 free_token(field->name);
Jiri Olsad3542432015-04-18 17:50:18 +02001630 field->name = field->alias = token;
Steven Rostedtf7d82352012-04-06 00:47:53 +02001631 type = read_token(&token);
1632 } else {
Steven Rostedt (VMware)27d4d332020-03-24 16:08:46 -04001633 ret = append(&field->type, "", brackets);
1634 if (ret < 0) {
Namhyung Kimd2864472012-04-09 11:54:33 +09001635 free(brackets);
1636 goto fail;
1637 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02001638 }
1639 free(brackets);
1640 }
1641
1642 if (field_is_string(field))
Tzvetomir Stoyanov (VMware)bb39ccb2018-09-19 14:56:46 -04001643 field->flags |= TEP_FIELD_IS_STRING;
Steven Rostedtf7d82352012-04-06 00:47:53 +02001644 if (field_is_dynamic(field))
Tzvetomir Stoyanov (VMware)bb39ccb2018-09-19 14:56:46 -04001645 field->flags |= TEP_FIELD_IS_DYNAMIC;
Steven Rostedtf7d82352012-04-06 00:47:53 +02001646 if (field_is_long(field))
Tzvetomir Stoyanov (VMware)bb39ccb2018-09-19 14:56:46 -04001647 field->flags |= TEP_FIELD_IS_LONG;
Steven Rostedtf7d82352012-04-06 00:47:53 +02001648
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001649 if (test_type_token(type, token, TEP_EVENT_OP, ";"))
Steven Rostedtf7d82352012-04-06 00:47:53 +02001650 goto fail;
1651 free_token(token);
1652
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001653 if (read_expected(TEP_EVENT_ITEM, "offset") < 0)
Steven Rostedtf7d82352012-04-06 00:47:53 +02001654 goto fail_expect;
1655
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001656 if (read_expected(TEP_EVENT_OP, ":") < 0)
Steven Rostedtf7d82352012-04-06 00:47:53 +02001657 goto fail_expect;
1658
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001659 if (read_expect_type(TEP_EVENT_ITEM, &token))
Steven Rostedtf7d82352012-04-06 00:47:53 +02001660 goto fail;
1661 field->offset = strtoul(token, NULL, 0);
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_expected(TEP_EVENT_ITEM, "size") < 0)
Steven Rostedtf7d82352012-04-06 00:47:53 +02001668 goto fail_expect;
1669
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001670 if (read_expected(TEP_EVENT_OP, ":") < 0)
Steven Rostedtf7d82352012-04-06 00:47:53 +02001671 goto fail_expect;
1672
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001673 if (read_expect_type(TEP_EVENT_ITEM, &token))
Steven Rostedtf7d82352012-04-06 00:47:53 +02001674 goto fail;
1675 field->size = strtoul(token, NULL, 0);
1676 free_token(token);
1677
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001678 if (read_expected(TEP_EVENT_OP, ";") < 0)
Steven Rostedtf7d82352012-04-06 00:47:53 +02001679 goto fail_expect;
1680
1681 type = read_token(&token);
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001682 if (type != TEP_EVENT_NEWLINE) {
Steven Rostedtf7d82352012-04-06 00:47:53 +02001683 /* newer versions of the kernel have a "signed" type */
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001684 if (test_type_token(type, token, TEP_EVENT_ITEM, "signed"))
Steven Rostedtf7d82352012-04-06 00:47:53 +02001685 goto fail;
1686
1687 free_token(token);
1688
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001689 if (read_expected(TEP_EVENT_OP, ":") < 0)
Steven Rostedtf7d82352012-04-06 00:47:53 +02001690 goto fail_expect;
1691
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001692 if (read_expect_type(TEP_EVENT_ITEM, &token))
Steven Rostedtf7d82352012-04-06 00:47:53 +02001693 goto fail;
1694
Tom Zanussi10ee9fa2013-01-18 13:51:25 -06001695 if (strtoul(token, NULL, 0))
Tzvetomir Stoyanov (VMware)bb39ccb2018-09-19 14:56:46 -04001696 field->flags |= TEP_FIELD_IS_SIGNED;
Steven Rostedtf7d82352012-04-06 00:47:53 +02001697
1698 free_token(token);
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001699 if (read_expected(TEP_EVENT_OP, ";") < 0)
Steven Rostedtf7d82352012-04-06 00:47:53 +02001700 goto fail_expect;
1701
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001702 if (read_expect_type(TEP_EVENT_NEWLINE, &token))
Steven Rostedtf7d82352012-04-06 00:47:53 +02001703 goto fail;
1704 }
1705
1706 free_token(token);
1707
Tzvetomir Stoyanov (VMware)bb39ccb2018-09-19 14:56:46 -04001708 if (field->flags & TEP_FIELD_IS_ARRAY) {
Steven Rostedtf7d82352012-04-06 00:47:53 +02001709 if (field->arraylen)
1710 field->elementsize = field->size / field->arraylen;
Tzvetomir Stoyanov (VMware)bb39ccb2018-09-19 14:56:46 -04001711 else if (field->flags & TEP_FIELD_IS_DYNAMIC)
Jiri Olsae23c1a52013-01-24 21:46:43 +01001712 field->elementsize = size_dynamic;
Tzvetomir Stoyanov (VMware)bb39ccb2018-09-19 14:56:46 -04001713 else if (field->flags & TEP_FIELD_IS_STRING)
Steven Rostedtf7d82352012-04-06 00:47:53 +02001714 field->elementsize = 1;
Tzvetomir Stoyanov (VMware)bb39ccb2018-09-19 14:56:46 -04001715 else if (field->flags & TEP_FIELD_IS_LONG)
Tzvetomir Stoyanov69769ce2019-04-01 12:43:18 -04001716 field->elementsize = event->tep ?
1717 event->tep->long_size :
Jiri Olsae23c1a52013-01-24 21:46:43 +01001718 sizeof(long);
Steven Rostedtf7d82352012-04-06 00:47:53 +02001719 } else
1720 field->elementsize = field->size;
1721
1722 *fields = field;
1723 fields = &field->next;
1724
1725 } while (1);
1726
1727 return 0;
1728
1729fail:
1730 free_token(token);
1731fail_expect:
Namhyung Kim57d34dc2012-05-23 11:36:47 +09001732 if (field) {
1733 free(field->type);
1734 free(field->name);
Steven Rostedtf7d82352012-04-06 00:47:53 +02001735 free(field);
Namhyung Kim57d34dc2012-05-23 11:36:47 +09001736 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02001737 return -1;
1738}
1739
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05001740static int event_read_format(struct tep_event *event)
Steven Rostedtf7d82352012-04-06 00:47:53 +02001741{
1742 char *token;
1743 int ret;
1744
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001745 if (read_expected_item(TEP_EVENT_ITEM, "format") < 0)
Steven Rostedtf7d82352012-04-06 00:47:53 +02001746 return -1;
1747
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001748 if (read_expected(TEP_EVENT_OP, ":") < 0)
Steven Rostedtf7d82352012-04-06 00:47:53 +02001749 return -1;
1750
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001751 if (read_expect_type(TEP_EVENT_NEWLINE, &token))
Steven Rostedtf7d82352012-04-06 00:47:53 +02001752 goto fail;
1753 free_token(token);
1754
1755 ret = event_read_fields(event, &event->format.common_fields);
1756 if (ret < 0)
1757 return ret;
1758 event->format.nr_common = ret;
1759
1760 ret = event_read_fields(event, &event->format.fields);
1761 if (ret < 0)
1762 return ret;
1763 event->format.nr_fields = ret;
1764
1765 return 0;
1766
1767 fail:
1768 free_token(token);
1769 return -1;
1770}
1771
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001772static enum tep_event_type
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05001773process_arg_token(struct tep_event *event, struct tep_print_arg *arg,
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001774 char **tok, enum tep_event_type type);
Steven Rostedtf7d82352012-04-06 00:47:53 +02001775
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001776static enum tep_event_type
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05001777process_arg(struct tep_event *event, struct tep_print_arg *arg, char **tok)
Steven Rostedtf7d82352012-04-06 00:47:53 +02001778{
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001779 enum tep_event_type type;
Steven Rostedtf7d82352012-04-06 00:47:53 +02001780 char *token;
1781
1782 type = read_token(&token);
1783 *tok = token;
1784
1785 return process_arg_token(event, arg, tok, type);
1786}
1787
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001788static enum tep_event_type
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05001789process_op(struct tep_event *event, struct tep_print_arg *arg, char **tok);
Steven Rostedtf7d82352012-04-06 00:47:53 +02001790
Steven Rostedteff2c922013-11-18 14:23:14 -05001791/*
1792 * For __print_symbolic() and __print_flags, we need to completely
1793 * evaluate the first argument, which defines what to print next.
1794 */
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001795static enum tep_event_type
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05001796process_field_arg(struct tep_event *event, struct tep_print_arg *arg, char **tok)
Steven Rostedteff2c922013-11-18 14:23:14 -05001797{
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001798 enum tep_event_type type;
Steven Rostedteff2c922013-11-18 14:23:14 -05001799
1800 type = process_arg(event, arg, tok);
1801
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001802 while (type == TEP_EVENT_OP) {
Steven Rostedteff2c922013-11-18 14:23:14 -05001803 type = process_op(event, arg, tok);
1804 }
1805
1806 return type;
1807}
1808
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001809static enum tep_event_type
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05001810process_cond(struct tep_event *event, struct tep_print_arg *top, char **tok)
Steven Rostedtf7d82352012-04-06 00:47:53 +02001811{
Tzvetomir Stoyanov (VMware)5647f942018-09-19 14:56:49 -04001812 struct tep_print_arg *arg, *left, *right;
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001813 enum tep_event_type type;
Steven Rostedtf7d82352012-04-06 00:47:53 +02001814 char *token = NULL;
1815
1816 arg = alloc_arg();
1817 left = alloc_arg();
1818 right = alloc_arg();
1819
Namhyung Kimb1ac7542012-09-20 11:09:19 +09001820 if (!arg || !left || !right) {
Namhyung Kim3388cc32014-03-19 10:22:53 +09001821 do_warning_event(event, "%s: not enough memory!", __func__);
Namhyung Kimb1ac7542012-09-20 11:09:19 +09001822 /* arg will be freed at out_free */
1823 free_arg(left);
1824 free_arg(right);
1825 goto out_free;
1826 }
1827
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04001828 arg->type = TEP_PRINT_OP;
Steven Rostedtf7d82352012-04-06 00:47:53 +02001829 arg->op.left = left;
1830 arg->op.right = right;
1831
1832 *tok = NULL;
1833 type = process_arg(event, left, &token);
1834
1835 again:
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001836 if (type == TEP_EVENT_ERROR)
Dean Nelson6f56e9c2015-08-20 11:16:32 -04001837 goto out_free;
1838
Steven Rostedtf7d82352012-04-06 00:47:53 +02001839 /* Handle other operations in the arguments */
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001840 if (type == TEP_EVENT_OP && strcmp(token, ":") != 0) {
Steven Rostedtf7d82352012-04-06 00:47:53 +02001841 type = process_op(event, left, &token);
1842 goto again;
1843 }
1844
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001845 if (test_type_token(type, token, TEP_EVENT_OP, ":"))
Steven Rostedtf7d82352012-04-06 00:47:53 +02001846 goto out_free;
1847
1848 arg->op.op = token;
1849
1850 type = process_arg(event, right, &token);
1851
1852 top->op.right = arg;
1853
1854 *tok = token;
1855 return type;
1856
1857out_free:
1858 /* Top may point to itself */
1859 top->op.right = NULL;
1860 free_token(token);
1861 free_arg(arg);
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001862 return TEP_EVENT_ERROR;
Steven Rostedtf7d82352012-04-06 00:47:53 +02001863}
1864
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001865static enum tep_event_type
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05001866process_array(struct tep_event *event, struct tep_print_arg *top, char **tok)
Steven Rostedtf7d82352012-04-06 00:47:53 +02001867{
Tzvetomir Stoyanov (VMware)5647f942018-09-19 14:56:49 -04001868 struct tep_print_arg *arg;
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001869 enum tep_event_type type;
Steven Rostedtf7d82352012-04-06 00:47:53 +02001870 char *token = NULL;
1871
1872 arg = alloc_arg();
Namhyung Kimb1ac7542012-09-20 11:09:19 +09001873 if (!arg) {
Namhyung Kim3388cc32014-03-19 10:22:53 +09001874 do_warning_event(event, "%s: not enough memory!", __func__);
Namhyung Kimb1ac7542012-09-20 11:09:19 +09001875 /* '*tok' is set to top->op.op. No need to free. */
1876 *tok = NULL;
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001877 return TEP_EVENT_ERROR;
Namhyung Kimb1ac7542012-09-20 11:09:19 +09001878 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02001879
1880 *tok = NULL;
1881 type = process_arg(event, arg, &token);
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001882 if (test_type_token(type, token, TEP_EVENT_OP, "]"))
Steven Rostedtf7d82352012-04-06 00:47:53 +02001883 goto out_free;
1884
1885 top->op.right = arg;
1886
1887 free_token(token);
1888 type = read_token_item(&token);
1889 *tok = token;
1890
1891 return type;
1892
1893out_free:
Namhyung Kim1bce6e02012-09-19 15:58:41 +09001894 free_token(token);
Steven Rostedtf7d82352012-04-06 00:47:53 +02001895 free_arg(arg);
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001896 return TEP_EVENT_ERROR;
Steven Rostedtf7d82352012-04-06 00:47:53 +02001897}
1898
1899static int get_op_prio(char *op)
1900{
1901 if (!op[1]) {
1902 switch (op[0]) {
1903 case '~':
1904 case '!':
1905 return 4;
1906 case '*':
1907 case '/':
1908 case '%':
1909 return 6;
1910 case '+':
1911 case '-':
1912 return 7;
1913 /* '>>' and '<<' are 8 */
1914 case '<':
1915 case '>':
1916 return 9;
1917 /* '==' and '!=' are 10 */
1918 case '&':
1919 return 11;
1920 case '^':
1921 return 12;
1922 case '|':
1923 return 13;
1924 case '?':
1925 return 16;
1926 default:
Vaibhav Nagarnaik14ffde02012-04-06 00:48:01 +02001927 do_warning("unknown op '%c'", op[0]);
Steven Rostedtf7d82352012-04-06 00:47:53 +02001928 return -1;
1929 }
1930 } else {
1931 if (strcmp(op, "++") == 0 ||
1932 strcmp(op, "--") == 0) {
1933 return 3;
1934 } else if (strcmp(op, ">>") == 0 ||
1935 strcmp(op, "<<") == 0) {
1936 return 8;
1937 } else if (strcmp(op, ">=") == 0 ||
1938 strcmp(op, "<=") == 0) {
1939 return 9;
1940 } else if (strcmp(op, "==") == 0 ||
1941 strcmp(op, "!=") == 0) {
1942 return 10;
1943 } else if (strcmp(op, "&&") == 0) {
1944 return 14;
1945 } else if (strcmp(op, "||") == 0) {
1946 return 15;
1947 } else {
Vaibhav Nagarnaik14ffde02012-04-06 00:48:01 +02001948 do_warning("unknown op '%s'", op);
Steven Rostedtf7d82352012-04-06 00:47:53 +02001949 return -1;
1950 }
1951 }
1952}
1953
Tzvetomir Stoyanov (VMware)5647f942018-09-19 14:56:49 -04001954static int set_op_prio(struct tep_print_arg *arg)
Steven Rostedtf7d82352012-04-06 00:47:53 +02001955{
1956
1957 /* single ops are the greatest */
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04001958 if (!arg->op.left || arg->op.left->type == TEP_PRINT_NULL)
Steven Rostedtf7d82352012-04-06 00:47:53 +02001959 arg->op.prio = 0;
Vaibhav Nagarnaik14ffde02012-04-06 00:48:01 +02001960 else
1961 arg->op.prio = get_op_prio(arg->op.op);
Steven Rostedtf7d82352012-04-06 00:47:53 +02001962
Vaibhav Nagarnaik14ffde02012-04-06 00:48:01 +02001963 return arg->op.prio;
Steven Rostedtf7d82352012-04-06 00:47:53 +02001964}
1965
1966/* Note, *tok does not get freed, but will most likely be saved */
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001967static enum tep_event_type
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05001968process_op(struct tep_event *event, struct tep_print_arg *arg, char **tok)
Steven Rostedtf7d82352012-04-06 00:47:53 +02001969{
Tzvetomir Stoyanov (VMware)5647f942018-09-19 14:56:49 -04001970 struct tep_print_arg *left, *right = NULL;
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04001971 enum tep_event_type type;
Steven Rostedtf7d82352012-04-06 00:47:53 +02001972 char *token;
1973
1974 /* the op is passed in via tok */
1975 token = *tok;
1976
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04001977 if (arg->type == TEP_PRINT_OP && !arg->op.left) {
Steven Rostedtf7d82352012-04-06 00:47:53 +02001978 /* handle single op */
1979 if (token[1]) {
Namhyung Kim3388cc32014-03-19 10:22:53 +09001980 do_warning_event(event, "bad op token %s", token);
Steven Rostedtf7d82352012-04-06 00:47:53 +02001981 goto out_free;
1982 }
1983 switch (token[0]) {
1984 case '~':
1985 case '!':
1986 case '+':
1987 case '-':
1988 break;
1989 default:
Namhyung Kim3388cc32014-03-19 10:22:53 +09001990 do_warning_event(event, "bad op token %s", token);
Steven Rostedtf7d82352012-04-06 00:47:53 +02001991 goto out_free;
1992
1993 }
1994
1995 /* make an empty left */
1996 left = alloc_arg();
Namhyung Kimb1ac7542012-09-20 11:09:19 +09001997 if (!left)
1998 goto out_warn_free;
1999
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04002000 left->type = TEP_PRINT_NULL;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002001 arg->op.left = left;
2002
2003 right = alloc_arg();
Namhyung Kimb1ac7542012-09-20 11:09:19 +09002004 if (!right)
2005 goto out_warn_free;
2006
Steven Rostedtf7d82352012-04-06 00:47:53 +02002007 arg->op.right = right;
2008
2009 /* do not free the token, it belongs to an op */
2010 *tok = NULL;
2011 type = process_arg(event, right, tok);
2012
2013 } else if (strcmp(token, "?") == 0) {
2014
2015 left = alloc_arg();
Namhyung Kimb1ac7542012-09-20 11:09:19 +09002016 if (!left)
2017 goto out_warn_free;
2018
Steven Rostedtf7d82352012-04-06 00:47:53 +02002019 /* copy the top arg to the left */
2020 *left = *arg;
2021
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04002022 arg->type = TEP_PRINT_OP;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002023 arg->op.op = token;
2024 arg->op.left = left;
2025 arg->op.prio = 0;
2026
Namhyung Kim41e51a22012-09-19 15:58:42 +09002027 /* it will set arg->op.right */
Steven Rostedtf7d82352012-04-06 00:47:53 +02002028 type = process_cond(event, arg, tok);
2029
2030 } else if (strcmp(token, ">>") == 0 ||
2031 strcmp(token, "<<") == 0 ||
2032 strcmp(token, "&") == 0 ||
2033 strcmp(token, "|") == 0 ||
2034 strcmp(token, "&&") == 0 ||
2035 strcmp(token, "||") == 0 ||
2036 strcmp(token, "-") == 0 ||
2037 strcmp(token, "+") == 0 ||
2038 strcmp(token, "*") == 0 ||
2039 strcmp(token, "^") == 0 ||
2040 strcmp(token, "/") == 0 ||
Daniel Bristot de Oliveira0e47b382016-02-22 14:08:22 -03002041 strcmp(token, "%") == 0 ||
Steven Rostedtf7d82352012-04-06 00:47:53 +02002042 strcmp(token, "<") == 0 ||
2043 strcmp(token, ">") == 0 ||
Namhyung Kimff582682013-01-15 17:02:19 +09002044 strcmp(token, "<=") == 0 ||
2045 strcmp(token, ">=") == 0 ||
Steven Rostedtf7d82352012-04-06 00:47:53 +02002046 strcmp(token, "==") == 0 ||
2047 strcmp(token, "!=") == 0) {
2048
2049 left = alloc_arg();
Namhyung Kimb1ac7542012-09-20 11:09:19 +09002050 if (!left)
2051 goto out_warn_free;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002052
2053 /* copy the top arg to the left */
2054 *left = *arg;
2055
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04002056 arg->type = TEP_PRINT_OP;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002057 arg->op.op = token;
2058 arg->op.left = left;
Namhyung Kim41e51a22012-09-19 15:58:42 +09002059 arg->op.right = NULL;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002060
Vaibhav Nagarnaik14ffde02012-04-06 00:48:01 +02002061 if (set_op_prio(arg) == -1) {
Tzvetomir Stoyanov (VMware)c1953bc2018-09-19 14:56:48 -04002062 event->flags |= TEP_EVENT_FL_FAILED;
Namhyung Kimd1de1082012-05-23 11:36:49 +09002063 /* arg->op.op (= token) will be freed at out_free */
2064 arg->op.op = NULL;
Vaibhav Nagarnaik14ffde02012-04-06 00:48:01 +02002065 goto out_free;
2066 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02002067
2068 type = read_token_item(&token);
2069 *tok = token;
2070
2071 /* could just be a type pointer */
2072 if ((strcmp(arg->op.op, "*") == 0) &&
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002073 type == TEP_EVENT_DELIM && (strcmp(token, ")") == 0)) {
Steven Rostedt (VMware)27d4d332020-03-24 16:08:46 -04002074 int ret;
Namhyung Kimd2864472012-04-09 11:54:33 +09002075
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04002076 if (left->type != TEP_PRINT_ATOM) {
Namhyung Kim3388cc32014-03-19 10:22:53 +09002077 do_warning_event(event, "bad pointer type");
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -03002078 goto out_free;
2079 }
Steven Rostedt (VMware)27d4d332020-03-24 16:08:46 -04002080 ret = append(&left->atom.atom, " ", "*");
2081 if (ret < 0)
Namhyung Kimb1ac7542012-09-20 11:09:19 +09002082 goto out_warn_free;
Namhyung Kimd2864472012-04-09 11:54:33 +09002083
Steven Rostedtf7d82352012-04-06 00:47:53 +02002084 free(arg->op.op);
2085 *arg = *left;
2086 free(left);
2087
2088 return type;
2089 }
2090
2091 right = alloc_arg();
Namhyung Kimb1ac7542012-09-20 11:09:19 +09002092 if (!right)
2093 goto out_warn_free;
2094
Steven Rostedtf7d82352012-04-06 00:47:53 +02002095 type = process_arg_token(event, right, tok, type);
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002096 if (type == TEP_EVENT_ERROR) {
Dean Nelson6f56e9c2015-08-20 11:16:32 -04002097 free_arg(right);
2098 /* token was freed in process_arg_token() via *tok */
2099 token = NULL;
2100 goto out_free;
2101 }
Namhyung Kim3201f0d2015-04-06 14:36:16 +09002102
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04002103 if (right->type == TEP_PRINT_OP &&
Namhyung Kim3201f0d2015-04-06 14:36:16 +09002104 get_op_prio(arg->op.op) < get_op_prio(right->op.op)) {
Tzvetomir Stoyanov (VMware)5647f942018-09-19 14:56:49 -04002105 struct tep_print_arg tmp;
Namhyung Kim3201f0d2015-04-06 14:36:16 +09002106
2107 /* rotate ops according to the priority */
2108 arg->op.right = right->op.left;
2109
2110 tmp = *arg;
2111 *arg = *right;
2112 *right = tmp;
2113
2114 arg->op.left = right;
2115 } else {
2116 arg->op.right = right;
2117 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02002118
2119 } else if (strcmp(token, "[") == 0) {
2120
2121 left = alloc_arg();
Namhyung Kimb1ac7542012-09-20 11:09:19 +09002122 if (!left)
2123 goto out_warn_free;
2124
Steven Rostedtf7d82352012-04-06 00:47:53 +02002125 *left = *arg;
2126
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04002127 arg->type = TEP_PRINT_OP;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002128 arg->op.op = token;
2129 arg->op.left = left;
2130
2131 arg->op.prio = 0;
2132
Namhyung Kim41e51a22012-09-19 15:58:42 +09002133 /* it will set arg->op.right */
Steven Rostedtf7d82352012-04-06 00:47:53 +02002134 type = process_array(event, arg, tok);
2135
2136 } else {
Namhyung Kim3388cc32014-03-19 10:22:53 +09002137 do_warning_event(event, "unknown op '%s'", token);
Tzvetomir Stoyanov (VMware)c1953bc2018-09-19 14:56:48 -04002138 event->flags |= TEP_EVENT_FL_FAILED;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002139 /* the arg is now the left side */
2140 goto out_free;
2141 }
2142
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002143 if (type == TEP_EVENT_OP && strcmp(*tok, ":") != 0) {
Steven Rostedtf7d82352012-04-06 00:47:53 +02002144 int prio;
2145
2146 /* higher prios need to be closer to the root */
2147 prio = get_op_prio(*tok);
2148
2149 if (prio > arg->op.prio)
2150 return process_op(event, arg, tok);
2151
2152 return process_op(event, right, tok);
2153 }
2154
2155 return type;
2156
Namhyung Kimb1ac7542012-09-20 11:09:19 +09002157out_warn_free:
Namhyung Kim3388cc32014-03-19 10:22:53 +09002158 do_warning_event(event, "%s: not enough memory!", __func__);
Namhyung Kimb1ac7542012-09-20 11:09:19 +09002159out_free:
Steven Rostedtf7d82352012-04-06 00:47:53 +02002160 free_token(token);
2161 *tok = NULL;
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002162 return TEP_EVENT_ERROR;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002163}
2164
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002165static enum tep_event_type
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05002166process_entry(struct tep_event *event __maybe_unused, struct tep_print_arg *arg,
Steven Rostedtf7d82352012-04-06 00:47:53 +02002167 char **tok)
2168{
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002169 enum tep_event_type type;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002170 char *field;
2171 char *token;
2172
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002173 if (read_expected(TEP_EVENT_OP, "->") < 0)
Steven Rostedtf7d82352012-04-06 00:47:53 +02002174 goto out_err;
2175
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002176 if (read_expect_type(TEP_EVENT_ITEM, &token) < 0)
Steven Rostedtf7d82352012-04-06 00:47:53 +02002177 goto out_free;
2178 field = token;
2179
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04002180 arg->type = TEP_PRINT_FIELD;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002181 arg->field.name = field;
2182
Tom Zanussi5205aec2012-04-06 00:47:58 +02002183 if (is_flag_field) {
Tzvetomir Stoyanov (VMware)af85cd12018-08-08 14:02:50 -04002184 arg->field.field = tep_find_any_field(event, arg->field.name);
Tzvetomir Stoyanov (VMware)bb39ccb2018-09-19 14:56:46 -04002185 arg->field.field->flags |= TEP_FIELD_IS_FLAG;
Tom Zanussi5205aec2012-04-06 00:47:58 +02002186 is_flag_field = 0;
2187 } else if (is_symbolic_field) {
Tzvetomir Stoyanov (VMware)af85cd12018-08-08 14:02:50 -04002188 arg->field.field = tep_find_any_field(event, arg->field.name);
Tzvetomir Stoyanov (VMware)bb39ccb2018-09-19 14:56:46 -04002189 arg->field.field->flags |= TEP_FIELD_IS_SYMBOLIC;
Tom Zanussi5205aec2012-04-06 00:47:58 +02002190 is_symbolic_field = 0;
2191 }
2192
Steven Rostedtf7d82352012-04-06 00:47:53 +02002193 type = read_token(&token);
2194 *tok = token;
2195
2196 return type;
2197
2198 out_free:
2199 free_token(token);
2200 out_err:
2201 *tok = NULL;
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002202 return TEP_EVENT_ERROR;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002203}
2204
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05002205static int alloc_and_process_delim(struct tep_event *event, char *next_token,
Tzvetomir Stoyanov (VMware)5647f942018-09-19 14:56:49 -04002206 struct tep_print_arg **print_arg)
Javi Merino929a6bb2015-03-20 18:12:55 +00002207{
Tzvetomir Stoyanov (VMware)5647f942018-09-19 14:56:49 -04002208 struct tep_print_arg *field;
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002209 enum tep_event_type type;
Javi Merino929a6bb2015-03-20 18:12:55 +00002210 char *token;
2211 int ret = 0;
2212
2213 field = alloc_arg();
2214 if (!field) {
2215 do_warning_event(event, "%s: not enough memory!", __func__);
2216 errno = ENOMEM;
2217 return -1;
2218 }
2219
2220 type = process_arg(event, field, &token);
2221
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002222 if (test_type_token(type, token, TEP_EVENT_DELIM, next_token)) {
Javi Merino929a6bb2015-03-20 18:12:55 +00002223 errno = EINVAL;
2224 ret = -1;
2225 free_arg(field);
2226 goto out_free_token;
2227 }
2228
2229 *print_arg = field;
2230
2231out_free_token:
2232 free_token(token);
2233
2234 return ret;
2235}
2236
Tzvetomir Stoyanov (VMware)5647f942018-09-19 14:56:49 -04002237static char *arg_eval (struct tep_print_arg *arg);
Steven Rostedtf7d82352012-04-06 00:47:53 +02002238
2239static unsigned long long
2240eval_type_str(unsigned long long val, const char *type, int pointer)
2241{
2242 int sign = 0;
2243 char *ref;
2244 int len;
2245
2246 len = strlen(type);
2247
2248 if (pointer) {
2249
2250 if (type[len-1] != '*') {
2251 do_warning("pointer expected with non pointer type");
2252 return val;
2253 }
2254
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -03002255 ref = malloc(len);
2256 if (!ref) {
2257 do_warning("%s: not enough memory!", __func__);
2258 return val;
2259 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02002260 memcpy(ref, type, len);
2261
2262 /* chop off the " *" */
2263 ref[len - 2] = 0;
2264
2265 val = eval_type_str(val, ref, 0);
2266 free(ref);
2267 return val;
2268 }
2269
2270 /* check if this is a pointer */
2271 if (type[len - 1] == '*')
2272 return val;
2273
2274 /* Try to figure out the arg size*/
2275 if (strncmp(type, "struct", 6) == 0)
2276 /* all bets off */
2277 return val;
2278
2279 if (strcmp(type, "u8") == 0)
2280 return val & 0xff;
2281
2282 if (strcmp(type, "u16") == 0)
2283 return val & 0xffff;
2284
2285 if (strcmp(type, "u32") == 0)
2286 return val & 0xffffffff;
2287
2288 if (strcmp(type, "u64") == 0 ||
Rikard Falkebornf32c2872019-04-09 11:15:29 +02002289 strcmp(type, "s64") == 0)
Steven Rostedtf7d82352012-04-06 00:47:53 +02002290 return val;
2291
2292 if (strcmp(type, "s8") == 0)
2293 return (unsigned long long)(char)val & 0xff;
2294
2295 if (strcmp(type, "s16") == 0)
2296 return (unsigned long long)(short)val & 0xffff;
2297
2298 if (strcmp(type, "s32") == 0)
2299 return (unsigned long long)(int)val & 0xffffffff;
2300
2301 if (strncmp(type, "unsigned ", 9) == 0) {
2302 sign = 0;
2303 type += 9;
2304 }
2305
2306 if (strcmp(type, "char") == 0) {
2307 if (sign)
2308 return (unsigned long long)(char)val & 0xff;
2309 else
2310 return val & 0xff;
2311 }
2312
2313 if (strcmp(type, "short") == 0) {
2314 if (sign)
2315 return (unsigned long long)(short)val & 0xffff;
2316 else
2317 return val & 0xffff;
2318 }
2319
2320 if (strcmp(type, "int") == 0) {
2321 if (sign)
2322 return (unsigned long long)(int)val & 0xffffffff;
2323 else
2324 return val & 0xffffffff;
2325 }
2326
2327 return val;
2328}
2329
2330/*
2331 * Try to figure out the type.
2332 */
2333static unsigned long long
Tzvetomir Stoyanov (VMware)5647f942018-09-19 14:56:49 -04002334eval_type(unsigned long long val, struct tep_print_arg *arg, int pointer)
Steven Rostedtf7d82352012-04-06 00:47:53 +02002335{
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04002336 if (arg->type != TEP_PRINT_TYPE) {
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -03002337 do_warning("expected type argument");
2338 return 0;
2339 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02002340
2341 return eval_type_str(val, arg->typecast.type, pointer);
2342}
2343
Tzvetomir Stoyanov (VMware)5647f942018-09-19 14:56:49 -04002344static int arg_num_eval(struct tep_print_arg *arg, long long *val)
Steven Rostedtf7d82352012-04-06 00:47:53 +02002345{
2346 long long left, right;
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02002347 int ret = 1;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002348
2349 switch (arg->type) {
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04002350 case TEP_PRINT_ATOM:
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02002351 *val = strtoll(arg->atom.atom, NULL, 0);
Steven Rostedtf7d82352012-04-06 00:47:53 +02002352 break;
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04002353 case TEP_PRINT_TYPE:
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02002354 ret = arg_num_eval(arg->typecast.item, val);
2355 if (!ret)
2356 break;
2357 *val = eval_type(*val, arg, 0);
Steven Rostedtf7d82352012-04-06 00:47:53 +02002358 break;
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04002359 case TEP_PRINT_OP:
Steven Rostedtf7d82352012-04-06 00:47:53 +02002360 switch (arg->op.op[0]) {
2361 case '|':
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02002362 ret = arg_num_eval(arg->op.left, &left);
2363 if (!ret)
2364 break;
2365 ret = arg_num_eval(arg->op.right, &right);
2366 if (!ret)
2367 break;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002368 if (arg->op.op[1])
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02002369 *val = left || right;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002370 else
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02002371 *val = left | right;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002372 break;
2373 case '&':
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02002374 ret = arg_num_eval(arg->op.left, &left);
2375 if (!ret)
2376 break;
2377 ret = arg_num_eval(arg->op.right, &right);
2378 if (!ret)
2379 break;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002380 if (arg->op.op[1])
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02002381 *val = left && right;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002382 else
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02002383 *val = left & right;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002384 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 switch (arg->op.op[1]) {
2415 case 0:
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02002416 *val = left > right;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002417 break;
2418 case '>':
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02002419 *val = left >> right;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002420 break;
2421 case '=':
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02002422 *val = left >= right;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002423 break;
2424 default:
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02002425 do_warning("unknown op '%s'", arg->op.op);
2426 ret = 0;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002427 }
2428 break;
2429 case '=':
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02002430 ret = arg_num_eval(arg->op.left, &left);
2431 if (!ret)
2432 break;
2433 ret = arg_num_eval(arg->op.right, &right);
2434 if (!ret)
2435 break;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002436
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02002437 if (arg->op.op[1] != '=') {
2438 do_warning("unknown op '%s'", arg->op.op);
2439 ret = 0;
2440 } else
2441 *val = left == right;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002442 break;
2443 case '!':
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02002444 ret = arg_num_eval(arg->op.left, &left);
2445 if (!ret)
2446 break;
2447 ret = arg_num_eval(arg->op.right, &right);
2448 if (!ret)
2449 break;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002450
2451 switch (arg->op.op[1]) {
2452 case '=':
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02002453 *val = left != right;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002454 break;
2455 default:
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02002456 do_warning("unknown op '%s'", arg->op.op);
2457 ret = 0;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002458 }
2459 break;
2460 case '-':
2461 /* check for negative */
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04002462 if (arg->op.left->type == TEP_PRINT_NULL)
Steven Rostedtf7d82352012-04-06 00:47:53 +02002463 left = 0;
2464 else
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02002465 ret = arg_num_eval(arg->op.left, &left);
2466 if (!ret)
2467 break;
2468 ret = arg_num_eval(arg->op.right, &right);
2469 if (!ret)
2470 break;
2471 *val = left - right;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002472 break;
Vaibhav Nagarnaikb4828592012-04-06 00:48:03 +02002473 case '+':
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04002474 if (arg->op.left->type == TEP_PRINT_NULL)
Vaibhav Nagarnaikb4828592012-04-06 00:48:03 +02002475 left = 0;
2476 else
2477 ret = arg_num_eval(arg->op.left, &left);
2478 if (!ret)
2479 break;
2480 ret = arg_num_eval(arg->op.right, &right);
2481 if (!ret)
2482 break;
2483 *val = left + right;
2484 break;
Steven Rostedt9eb42de2016-02-26 18:13:28 -05002485 case '~':
2486 ret = arg_num_eval(arg->op.right, &right);
2487 if (!ret)
2488 break;
2489 *val = ~right;
2490 break;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002491 default:
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02002492 do_warning("unknown op '%s'", arg->op.op);
2493 ret = 0;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002494 }
2495 break;
2496
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04002497 case TEP_PRINT_NULL:
2498 case TEP_PRINT_FIELD ... TEP_PRINT_SYMBOL:
2499 case TEP_PRINT_STRING:
2500 case TEP_PRINT_BSTRING:
2501 case TEP_PRINT_BITMASK:
Steven Rostedtf7d82352012-04-06 00:47:53 +02002502 default:
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02002503 do_warning("invalid eval type %d", arg->type);
2504 ret = 0;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002505
2506 }
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02002507 return ret;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002508}
2509
Tzvetomir Stoyanov (VMware)5647f942018-09-19 14:56:49 -04002510static char *arg_eval (struct tep_print_arg *arg)
Steven Rostedtf7d82352012-04-06 00:47:53 +02002511{
2512 long long val;
Tony Jones7c5b0192019-02-27 17:55:32 -08002513 static char buf[24];
Steven Rostedtf7d82352012-04-06 00:47:53 +02002514
2515 switch (arg->type) {
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04002516 case TEP_PRINT_ATOM:
Steven Rostedtf7d82352012-04-06 00:47:53 +02002517 return arg->atom.atom;
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04002518 case TEP_PRINT_TYPE:
Steven Rostedtf7d82352012-04-06 00:47:53 +02002519 return arg_eval(arg->typecast.item);
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04002520 case TEP_PRINT_OP:
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02002521 if (!arg_num_eval(arg, &val))
2522 break;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002523 sprintf(buf, "%lld", val);
2524 return buf;
2525
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04002526 case TEP_PRINT_NULL:
2527 case TEP_PRINT_FIELD ... TEP_PRINT_SYMBOL:
2528 case TEP_PRINT_STRING:
2529 case TEP_PRINT_BSTRING:
2530 case TEP_PRINT_BITMASK:
Steven Rostedtf7d82352012-04-06 00:47:53 +02002531 default:
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -03002532 do_warning("invalid eval type %d", arg->type);
Steven Rostedtf7d82352012-04-06 00:47:53 +02002533 break;
2534 }
2535
2536 return NULL;
2537}
2538
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002539static enum tep_event_type
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05002540process_fields(struct tep_event *event, struct tep_print_flag_sym **list, char **tok)
Steven Rostedtf7d82352012-04-06 00:47:53 +02002541{
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002542 enum tep_event_type type;
Tzvetomir Stoyanov (VMware)5647f942018-09-19 14:56:49 -04002543 struct tep_print_arg *arg = NULL;
2544 struct tep_print_flag_sym *field;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002545 char *token = *tok;
2546 char *value;
2547
2548 do {
2549 free_token(token);
2550 type = read_token_item(&token);
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002551 if (test_type_token(type, token, TEP_EVENT_OP, "{"))
Steven Rostedtf7d82352012-04-06 00:47:53 +02002552 break;
2553
2554 arg = alloc_arg();
Namhyung Kimb1ac7542012-09-20 11:09:19 +09002555 if (!arg)
2556 goto out_free;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002557
2558 free_token(token);
2559 type = process_arg(event, arg, &token);
Stefan Hajnoczi00b9da72012-05-23 11:36:42 +09002560
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002561 if (type == TEP_EVENT_OP)
Stefan Hajnoczi00b9da72012-05-23 11:36:42 +09002562 type = process_op(event, arg, &token);
2563
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002564 if (type == TEP_EVENT_ERROR)
Stefan Hajnoczi00b9da72012-05-23 11:36:42 +09002565 goto out_free;
2566
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002567 if (test_type_token(type, token, TEP_EVENT_DELIM, ","))
Steven Rostedtf7d82352012-04-06 00:47:53 +02002568 goto out_free;
2569
Arnaldo Carvalho de Melo87162d82012-09-12 15:39:59 -03002570 field = calloc(1, sizeof(*field));
2571 if (!field)
2572 goto out_free;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002573
2574 value = arg_eval(arg);
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02002575 if (value == NULL)
Namhyung Kimf8c49d22012-09-19 15:58:43 +09002576 goto out_free_field;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002577 field->value = strdup(value);
Namhyung Kimca638582012-04-09 11:54:31 +09002578 if (field->value == NULL)
Namhyung Kimf8c49d22012-09-19 15:58:43 +09002579 goto out_free_field;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002580
2581 free_arg(arg);
2582 arg = alloc_arg();
Namhyung Kimb1ac7542012-09-20 11:09:19 +09002583 if (!arg)
2584 goto out_free;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002585
2586 free_token(token);
2587 type = process_arg(event, arg, &token);
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002588 if (test_type_token(type, token, TEP_EVENT_OP, "}"))
Namhyung Kimf8c49d22012-09-19 15:58:43 +09002589 goto out_free_field;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002590
2591 value = arg_eval(arg);
Vaibhav Nagarnaikd69afed52012-04-06 00:48:00 +02002592 if (value == NULL)
Namhyung Kimf8c49d22012-09-19 15:58:43 +09002593 goto out_free_field;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002594 field->str = strdup(value);
Namhyung Kimca638582012-04-09 11:54:31 +09002595 if (field->str == NULL)
Namhyung Kimf8c49d22012-09-19 15:58:43 +09002596 goto out_free_field;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002597 free_arg(arg);
2598 arg = NULL;
2599
2600 *list = field;
2601 list = &field->next;
2602
2603 free_token(token);
2604 type = read_token_item(&token);
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002605 } while (type == TEP_EVENT_DELIM && strcmp(token, ",") == 0);
Steven Rostedtf7d82352012-04-06 00:47:53 +02002606
2607 *tok = token;
2608 return type;
2609
Namhyung Kimf8c49d22012-09-19 15:58:43 +09002610out_free_field:
2611 free_flag_sym(field);
Steven Rostedtf7d82352012-04-06 00:47:53 +02002612out_free:
2613 free_arg(arg);
2614 free_token(token);
2615 *tok = NULL;
2616
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002617 return TEP_EVENT_ERROR;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002618}
2619
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002620static enum tep_event_type
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05002621process_flags(struct tep_event *event, struct tep_print_arg *arg, char **tok)
Steven Rostedtf7d82352012-04-06 00:47:53 +02002622{
Tzvetomir Stoyanov (VMware)5647f942018-09-19 14:56:49 -04002623 struct tep_print_arg *field;
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002624 enum tep_event_type type;
Rickard Strandqvist21da83f2014-06-24 13:09:10 +02002625 char *token = NULL;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002626
2627 memset(arg, 0, sizeof(*arg));
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04002628 arg->type = TEP_PRINT_FLAGS;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002629
2630 field = alloc_arg();
Namhyung Kimb1ac7542012-09-20 11:09:19 +09002631 if (!field) {
Namhyung Kim3388cc32014-03-19 10:22:53 +09002632 do_warning_event(event, "%s: not enough memory!", __func__);
Namhyung Kimb1ac7542012-09-20 11:09:19 +09002633 goto out_free;
2634 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02002635
Steven Rostedteff2c922013-11-18 14:23:14 -05002636 type = process_field_arg(event, field, &token);
Steven Rostedtf7d82352012-04-06 00:47:53 +02002637
2638 /* Handle operations in the first argument */
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002639 while (type == TEP_EVENT_OP)
Steven Rostedtf7d82352012-04-06 00:47:53 +02002640 type = process_op(event, field, &token);
2641
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002642 if (test_type_token(type, token, TEP_EVENT_DELIM, ","))
Namhyung Kim70d93042012-09-19 15:58:44 +09002643 goto out_free_field;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002644 free_token(token);
2645
2646 arg->flags.field = field;
2647
2648 type = read_token_item(&token);
2649 if (event_item_type(type)) {
2650 arg->flags.delim = token;
2651 type = read_token_item(&token);
2652 }
2653
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002654 if (test_type_token(type, token, TEP_EVENT_DELIM, ","))
Steven Rostedtf7d82352012-04-06 00:47:53 +02002655 goto out_free;
2656
2657 type = process_fields(event, &arg->flags.flags, &token);
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002658 if (test_type_token(type, token, TEP_EVENT_DELIM, ")"))
Steven Rostedtf7d82352012-04-06 00:47:53 +02002659 goto out_free;
2660
2661 free_token(token);
2662 type = read_token_item(tok);
2663 return type;
2664
Namhyung Kim70d93042012-09-19 15:58:44 +09002665out_free_field:
2666 free_arg(field);
2667out_free:
Steven Rostedtf7d82352012-04-06 00:47:53 +02002668 free_token(token);
2669 *tok = NULL;
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002670 return TEP_EVENT_ERROR;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002671}
2672
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002673static enum tep_event_type
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05002674process_symbols(struct tep_event *event, struct tep_print_arg *arg, char **tok)
Steven Rostedtf7d82352012-04-06 00:47:53 +02002675{
Tzvetomir Stoyanov (VMware)5647f942018-09-19 14:56:49 -04002676 struct tep_print_arg *field;
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002677 enum tep_event_type type;
Rickard Strandqvist21da83f2014-06-24 13:09:10 +02002678 char *token = NULL;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002679
2680 memset(arg, 0, sizeof(*arg));
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04002681 arg->type = TEP_PRINT_SYMBOL;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002682
2683 field = alloc_arg();
Namhyung Kimb1ac7542012-09-20 11:09:19 +09002684 if (!field) {
Namhyung Kim3388cc32014-03-19 10:22:53 +09002685 do_warning_event(event, "%s: not enough memory!", __func__);
Namhyung Kimb1ac7542012-09-20 11:09:19 +09002686 goto out_free;
2687 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02002688
Steven Rostedteff2c922013-11-18 14:23:14 -05002689 type = process_field_arg(event, field, &token);
2690
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002691 if (test_type_token(type, token, TEP_EVENT_DELIM, ","))
Namhyung Kim70d93042012-09-19 15:58:44 +09002692 goto out_free_field;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002693
2694 arg->symbol.field = field;
2695
2696 type = process_fields(event, &arg->symbol.symbols, &token);
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002697 if (test_type_token(type, token, TEP_EVENT_DELIM, ")"))
Steven Rostedtf7d82352012-04-06 00:47:53 +02002698 goto out_free;
2699
2700 free_token(token);
2701 type = read_token_item(tok);
2702 return type;
2703
Namhyung Kim70d93042012-09-19 15:58:44 +09002704out_free_field:
2705 free_arg(field);
2706out_free:
Steven Rostedtf7d82352012-04-06 00:47:53 +02002707 free_token(token);
2708 *tok = NULL;
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002709 return TEP_EVENT_ERROR;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002710}
2711
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002712static enum tep_event_type
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05002713process_hex_common(struct tep_event *event, struct tep_print_arg *arg,
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04002714 char **tok, enum tep_print_arg_type type)
Namhyung Kime080e6f2012-06-27 09:41:41 +09002715{
Namhyung Kime080e6f2012-06-27 09:41:41 +09002716 memset(arg, 0, sizeof(*arg));
Daniel Borkmann0fe05592017-01-25 02:28:17 +01002717 arg->type = type;
Namhyung Kime080e6f2012-06-27 09:41:41 +09002718
Javi Merino929a6bb2015-03-20 18:12:55 +00002719 if (alloc_and_process_delim(event, ",", &arg->hex.field))
2720 goto out;
Namhyung Kimb1ac7542012-09-20 11:09:19 +09002721
Javi Merino929a6bb2015-03-20 18:12:55 +00002722 if (alloc_and_process_delim(event, ")", &arg->hex.size))
2723 goto free_field;
Namhyung Kime080e6f2012-06-27 09:41:41 +09002724
Javi Merino929a6bb2015-03-20 18:12:55 +00002725 return read_token_item(tok);
Namhyung Kime080e6f2012-06-27 09:41:41 +09002726
Javi Merino929a6bb2015-03-20 18:12:55 +00002727free_field:
2728 free_arg(arg->hex.field);
Steven Rostedt (Red Hat)9ec72ea2016-02-09 15:40:16 -05002729 arg->hex.field = NULL;
Javi Merino929a6bb2015-03-20 18:12:55 +00002730out:
Namhyung Kime080e6f2012-06-27 09:41:41 +09002731 *tok = NULL;
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002732 return TEP_EVENT_ERROR;
Namhyung Kime080e6f2012-06-27 09:41:41 +09002733}
Namhyung Kime080e6f2012-06-27 09:41:41 +09002734
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002735static enum tep_event_type
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05002736process_hex(struct tep_event *event, struct tep_print_arg *arg, char **tok)
Daniel Borkmann0fe05592017-01-25 02:28:17 +01002737{
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04002738 return process_hex_common(event, arg, tok, TEP_PRINT_HEX);
Daniel Borkmann0fe05592017-01-25 02:28:17 +01002739}
2740
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002741static enum tep_event_type
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05002742process_hex_str(struct tep_event *event, struct tep_print_arg *arg,
Daniel Borkmann0fe05592017-01-25 02:28:17 +01002743 char **tok)
2744{
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04002745 return process_hex_common(event, arg, tok, TEP_PRINT_HEX_STR);
Daniel Borkmann0fe05592017-01-25 02:28:17 +01002746}
2747
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002748static enum tep_event_type
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05002749process_int_array(struct tep_event *event, struct tep_print_arg *arg, char **tok)
Javi Merinob839e1e82015-03-24 11:07:19 +00002750{
2751 memset(arg, 0, sizeof(*arg));
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04002752 arg->type = TEP_PRINT_INT_ARRAY;
Namhyung Kime080e6f2012-06-27 09:41:41 +09002753
Javi Merinob839e1e82015-03-24 11:07:19 +00002754 if (alloc_and_process_delim(event, ",", &arg->int_array.field))
2755 goto out;
Namhyung Kime080e6f2012-06-27 09:41:41 +09002756
Javi Merinob839e1e82015-03-24 11:07:19 +00002757 if (alloc_and_process_delim(event, ",", &arg->int_array.count))
2758 goto free_field;
Namhyung Kime080e6f2012-06-27 09:41:41 +09002759
Javi Merinob839e1e82015-03-24 11:07:19 +00002760 if (alloc_and_process_delim(event, ")", &arg->int_array.el_size))
2761 goto free_size;
Namhyung Kime080e6f2012-06-27 09:41:41 +09002762
Javi Merinob839e1e82015-03-24 11:07:19 +00002763 return read_token_item(tok);
Namhyung Kime080e6f2012-06-27 09:41:41 +09002764
Javi Merinob839e1e82015-03-24 11:07:19 +00002765free_size:
2766 free_arg(arg->int_array.count);
Steven Rostedt (Red Hat)9ec72ea2016-02-09 15:40:16 -05002767 arg->int_array.count = NULL;
Javi Merinob839e1e82015-03-24 11:07:19 +00002768free_field:
2769 free_arg(arg->int_array.field);
Steven Rostedt (Red Hat)9ec72ea2016-02-09 15:40:16 -05002770 arg->int_array.field = NULL;
Javi Merinob839e1e82015-03-24 11:07:19 +00002771out:
Namhyung Kime080e6f2012-06-27 09:41:41 +09002772 *tok = NULL;
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002773 return TEP_EVENT_ERROR;
Namhyung Kime080e6f2012-06-27 09:41:41 +09002774}
2775
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002776static enum tep_event_type
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05002777process_dynamic_array(struct tep_event *event, struct tep_print_arg *arg, char **tok)
Steven Rostedtf7d82352012-04-06 00:47:53 +02002778{
Tzvetomir Stoyanov (VMware)2c92f982018-09-19 14:56:45 -04002779 struct tep_format_field *field;
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002780 enum tep_event_type type;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002781 char *token;
2782
2783 memset(arg, 0, sizeof(*arg));
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04002784 arg->type = TEP_PRINT_DYNAMIC_ARRAY;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002785
2786 /*
2787 * The item within the parenthesis is another field that holds
2788 * the index into where the array starts.
2789 */
2790 type = read_token(&token);
2791 *tok = token;
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002792 if (type != TEP_EVENT_ITEM)
Steven Rostedtf7d82352012-04-06 00:47:53 +02002793 goto out_free;
2794
2795 /* Find the field */
2796
Tzvetomir Stoyanov (VMware)af85cd12018-08-08 14:02:50 -04002797 field = tep_find_field(event, token);
Steven Rostedtf7d82352012-04-06 00:47:53 +02002798 if (!field)
2799 goto out_free;
2800
2801 arg->dynarray.field = field;
2802 arg->dynarray.index = 0;
2803
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002804 if (read_expected(TEP_EVENT_DELIM, ")") < 0)
Steven Rostedtf7d82352012-04-06 00:47:53 +02002805 goto out_free;
2806
2807 free_token(token);
2808 type = read_token_item(&token);
2809 *tok = token;
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002810 if (type != TEP_EVENT_OP || strcmp(token, "[") != 0)
Steven Rostedtf7d82352012-04-06 00:47:53 +02002811 return type;
2812
2813 free_token(token);
2814 arg = alloc_arg();
Sasha Levinfba7a782012-12-21 15:00:58 -05002815 if (!arg) {
Namhyung Kim3388cc32014-03-19 10:22:53 +09002816 do_warning_event(event, "%s: not enough memory!", __func__);
Namhyung Kimb1ac7542012-09-20 11:09:19 +09002817 *tok = NULL;
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002818 return TEP_EVENT_ERROR;
Namhyung Kimb1ac7542012-09-20 11:09:19 +09002819 }
2820
Steven Rostedtf7d82352012-04-06 00:47:53 +02002821 type = process_arg(event, arg, &token);
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002822 if (type == TEP_EVENT_ERROR)
Namhyung Kimb3511d02012-05-23 11:36:50 +09002823 goto out_free_arg;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002824
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002825 if (!test_type_token(type, token, TEP_EVENT_OP, "]"))
Namhyung Kimb3511d02012-05-23 11:36:50 +09002826 goto out_free_arg;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002827
2828 free_token(token);
2829 type = read_token_item(tok);
2830 return type;
2831
Namhyung Kimb3511d02012-05-23 11:36:50 +09002832 out_free_arg:
2833 free_arg(arg);
Steven Rostedtf7d82352012-04-06 00:47:53 +02002834 out_free:
Steven Rostedtf7d82352012-04-06 00:47:53 +02002835 free_token(token);
2836 *tok = NULL;
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002837 return TEP_EVENT_ERROR;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002838}
2839
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002840static enum tep_event_type
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05002841process_dynamic_array_len(struct tep_event *event, struct tep_print_arg *arg,
He Kuang76055942015-08-29 04:22:05 +00002842 char **tok)
2843{
Tzvetomir Stoyanov (VMware)2c92f982018-09-19 14:56:45 -04002844 struct tep_format_field *field;
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002845 enum tep_event_type type;
He Kuang76055942015-08-29 04:22:05 +00002846 char *token;
2847
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002848 if (read_expect_type(TEP_EVENT_ITEM, &token) < 0)
He Kuang76055942015-08-29 04:22:05 +00002849 goto out_free;
2850
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04002851 arg->type = TEP_PRINT_DYNAMIC_ARRAY_LEN;
He Kuang76055942015-08-29 04:22:05 +00002852
2853 /* Find the field */
Tzvetomir Stoyanov (VMware)af85cd12018-08-08 14:02:50 -04002854 field = tep_find_field(event, token);
He Kuang76055942015-08-29 04:22:05 +00002855 if (!field)
2856 goto out_free;
2857
2858 arg->dynarray.field = field;
2859 arg->dynarray.index = 0;
2860
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002861 if (read_expected(TEP_EVENT_DELIM, ")") < 0)
He Kuang76055942015-08-29 04:22:05 +00002862 goto out_err;
2863
Philippe Duplessis-Guindone24c6442020-07-30 11:02:36 -04002864 free_token(token);
He Kuang76055942015-08-29 04:22:05 +00002865 type = read_token(&token);
2866 *tok = token;
2867
2868 return type;
2869
2870 out_free:
2871 free_token(token);
2872 out_err:
2873 *tok = NULL;
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002874 return TEP_EVENT_ERROR;
He Kuang76055942015-08-29 04:22:05 +00002875}
2876
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002877static enum tep_event_type
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05002878process_paren(struct tep_event *event, struct tep_print_arg *arg, char **tok)
Steven Rostedtf7d82352012-04-06 00:47:53 +02002879{
Tzvetomir Stoyanov (VMware)5647f942018-09-19 14:56:49 -04002880 struct tep_print_arg *item_arg;
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002881 enum tep_event_type type;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002882 char *token;
2883
2884 type = process_arg(event, arg, &token);
2885
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002886 if (type == TEP_EVENT_ERROR)
Steven Rostedtf7d82352012-04-06 00:47:53 +02002887 goto out_free;
2888
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002889 if (type == TEP_EVENT_OP)
Steven Rostedtf7d82352012-04-06 00:47:53 +02002890 type = process_op(event, arg, &token);
2891
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002892 if (type == TEP_EVENT_ERROR)
Steven Rostedtf7d82352012-04-06 00:47:53 +02002893 goto out_free;
2894
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002895 if (test_type_token(type, token, TEP_EVENT_DELIM, ")"))
Steven Rostedtf7d82352012-04-06 00:47:53 +02002896 goto out_free;
2897
2898 free_token(token);
2899 type = read_token_item(&token);
2900
2901 /*
2902 * If the next token is an item or another open paren, then
2903 * this was a typecast.
2904 */
2905 if (event_item_type(type) ||
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002906 (type == TEP_EVENT_DELIM && strcmp(token, "(") == 0)) {
Steven Rostedtf7d82352012-04-06 00:47:53 +02002907
2908 /* make this a typecast and contine */
2909
2910 /* prevous must be an atom */
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04002911 if (arg->type != TEP_PRINT_ATOM) {
2912 do_warning_event(event, "previous needed to be TEP_PRINT_ATOM");
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -03002913 goto out_free;
2914 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02002915
2916 item_arg = alloc_arg();
Namhyung Kimb1ac7542012-09-20 11:09:19 +09002917 if (!item_arg) {
Namhyung Kim3388cc32014-03-19 10:22:53 +09002918 do_warning_event(event, "%s: not enough memory!",
2919 __func__);
Namhyung Kimb1ac7542012-09-20 11:09:19 +09002920 goto out_free;
2921 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02002922
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04002923 arg->type = TEP_PRINT_TYPE;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002924 arg->typecast.type = arg->atom.atom;
2925 arg->typecast.item = item_arg;
2926 type = process_arg_token(event, item_arg, &token, type);
2927
2928 }
2929
2930 *tok = token;
2931 return type;
2932
2933 out_free:
2934 free_token(token);
2935 *tok = NULL;
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002936 return TEP_EVENT_ERROR;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002937}
2938
2939
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002940static enum tep_event_type
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05002941process_str(struct tep_event *event __maybe_unused, struct tep_print_arg *arg,
Irina Tirdea1d037ca2012-09-11 01:15:03 +03002942 char **tok)
Steven Rostedtf7d82352012-04-06 00:47:53 +02002943{
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002944 enum tep_event_type type;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002945 char *token;
2946
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002947 if (read_expect_type(TEP_EVENT_ITEM, &token) < 0)
Steven Rostedtf7d82352012-04-06 00:47:53 +02002948 goto out_free;
2949
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04002950 arg->type = TEP_PRINT_STRING;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002951 arg->string.string = token;
2952 arg->string.offset = -1;
2953
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002954 if (read_expected(TEP_EVENT_DELIM, ")") < 0)
Steven Rostedtf7d82352012-04-06 00:47:53 +02002955 goto out_err;
2956
2957 type = read_token(&token);
2958 *tok = token;
2959
2960 return type;
2961
2962 out_free:
2963 free_token(token);
2964 out_err:
2965 *tok = NULL;
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002966 return TEP_EVENT_ERROR;
Steven Rostedtf7d82352012-04-06 00:47:53 +02002967}
2968
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002969static enum tep_event_type
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05002970process_bitmask(struct tep_event *event __maybe_unused, struct tep_print_arg *arg,
Tzvetomir Stoyanov (VMware)4963b0f2018-09-19 14:56:44 -04002971 char **tok)
Steven Rostedt (Red Hat)473a7782014-06-02 23:20:16 -04002972{
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002973 enum tep_event_type type;
Steven Rostedt (Red Hat)473a7782014-06-02 23:20:16 -04002974 char *token;
2975
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002976 if (read_expect_type(TEP_EVENT_ITEM, &token) < 0)
Steven Rostedt (Red Hat)473a7782014-06-02 23:20:16 -04002977 goto out_free;
2978
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04002979 arg->type = TEP_PRINT_BITMASK;
Steven Rostedt (Red Hat)473a7782014-06-02 23:20:16 -04002980 arg->bitmask.bitmask = token;
2981 arg->bitmask.offset = -1;
2982
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002983 if (read_expected(TEP_EVENT_DELIM, ")") < 0)
Steven Rostedt (Red Hat)473a7782014-06-02 23:20:16 -04002984 goto out_err;
2985
2986 type = read_token(&token);
2987 *tok = token;
2988
2989 return type;
2990
2991 out_free:
2992 free_token(token);
2993 out_err:
2994 *tok = NULL;
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04002995 return TEP_EVENT_ERROR;
Steven Rostedt (Red Hat)473a7782014-06-02 23:20:16 -04002996}
2997
Tzvetomir Stoyanov (VMware)3cf47782018-08-08 14:02:59 -04002998static struct tep_function_handler *
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04002999find_func_handler(struct tep_handle *tep, char *func_name)
Steven Rostedtf7d82352012-04-06 00:47:53 +02003000{
Tzvetomir Stoyanov (VMware)3cf47782018-08-08 14:02:59 -04003001 struct tep_function_handler *func;
Steven Rostedtf7d82352012-04-06 00:47:53 +02003002
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04003003 if (!tep)
Steven Rostedt101782e2012-10-01 20:13:51 -04003004 return NULL;
3005
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04003006 for (func = tep->func_handlers; func; func = func->next) {
Steven Rostedtf7d82352012-04-06 00:47:53 +02003007 if (strcmp(func->name, func_name) == 0)
3008 break;
3009 }
3010
3011 return func;
3012}
3013
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04003014static void remove_func_handler(struct tep_handle *tep, char *func_name)
Steven Rostedtf7d82352012-04-06 00:47:53 +02003015{
Tzvetomir Stoyanov (VMware)3cf47782018-08-08 14:02:59 -04003016 struct tep_function_handler *func;
3017 struct tep_function_handler **next;
Steven Rostedtf7d82352012-04-06 00:47:53 +02003018
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04003019 next = &tep->func_handlers;
Steven Rostedtf7d82352012-04-06 00:47:53 +02003020 while ((func = *next)) {
3021 if (strcmp(func->name, func_name) == 0) {
3022 *next = func->next;
3023 free_func_handle(func);
3024 break;
3025 }
3026 next = &func->next;
3027 }
3028}
3029
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04003030static enum tep_event_type
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05003031process_func_handler(struct tep_event *event, struct tep_function_handler *func,
Tzvetomir Stoyanov (VMware)5647f942018-09-19 14:56:49 -04003032 struct tep_print_arg *arg, char **tok)
Steven Rostedtf7d82352012-04-06 00:47:53 +02003033{
Tzvetomir Stoyanov (VMware)5647f942018-09-19 14:56:49 -04003034 struct tep_print_arg **next_arg;
3035 struct tep_print_arg *farg;
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04003036 enum tep_event_type type;
Steven Rostedtf7d82352012-04-06 00:47:53 +02003037 char *token;
Steven Rostedtf7d82352012-04-06 00:47:53 +02003038 int i;
3039
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04003040 arg->type = TEP_PRINT_FUNC;
Steven Rostedtf7d82352012-04-06 00:47:53 +02003041 arg->func.func = func;
3042
3043 *tok = NULL;
3044
3045 next_arg = &(arg->func.args);
3046 for (i = 0; i < func->nr_args; i++) {
3047 farg = alloc_arg();
Namhyung Kimb1ac7542012-09-20 11:09:19 +09003048 if (!farg) {
Namhyung Kim3388cc32014-03-19 10:22:53 +09003049 do_warning_event(event, "%s: not enough memory!",
3050 __func__);
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04003051 return TEP_EVENT_ERROR;
Namhyung Kimb1ac7542012-09-20 11:09:19 +09003052 }
3053
Steven Rostedtf7d82352012-04-06 00:47:53 +02003054 type = process_arg(event, farg, &token);
Steven Rostedt3a3ffa22013-11-18 21:38:20 -05003055 if (i < (func->nr_args - 1)) {
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04003056 if (type != TEP_EVENT_DELIM || strcmp(token, ",") != 0) {
Namhyung Kim9e9e5df2014-03-19 10:22:54 +09003057 do_warning_event(event,
3058 "Error: function '%s()' expects %d arguments but event %s only uses %d",
Steven Rostedt3a3ffa22013-11-18 21:38:20 -05003059 func->name, func->nr_args,
3060 event->name, i + 1);
3061 goto err;
3062 }
3063 } else {
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04003064 if (type != TEP_EVENT_DELIM || strcmp(token, ")") != 0) {
Namhyung Kim9e9e5df2014-03-19 10:22:54 +09003065 do_warning_event(event,
3066 "Error: function '%s()' only expects %d arguments but event %s has more",
Steven Rostedt3a3ffa22013-11-18 21:38:20 -05003067 func->name, func->nr_args, event->name);
3068 goto err;
3069 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02003070 }
3071
3072 *next_arg = farg;
3073 next_arg = &(farg->next);
3074 free_token(token);
3075 }
3076
3077 type = read_token(&token);
3078 *tok = token;
3079
3080 return type;
Steven Rostedt3a3ffa22013-11-18 21:38:20 -05003081
3082err:
3083 free_arg(farg);
3084 free_token(token);
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04003085 return TEP_EVENT_ERROR;
Steven Rostedtf7d82352012-04-06 00:47:53 +02003086}
3087
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04003088static enum tep_event_type
Steven Rostedt (VMware)1b20d942020-03-24 16:08:48 -04003089process_builtin_expect(struct tep_event *event, struct tep_print_arg *arg, char **tok)
3090{
3091 enum tep_event_type type;
3092 char *token = NULL;
3093
3094 /* Handle __builtin_expect( cond, #) */
3095 type = process_arg(event, arg, &token);
3096
3097 if (type != TEP_EVENT_DELIM || token[0] != ',')
3098 goto out_free;
3099
3100 free_token(token);
3101
3102 /* We don't care what the second parameter is of the __builtin_expect() */
3103 if (read_expect_type(TEP_EVENT_ITEM, &token) < 0)
3104 goto out_free;
3105
3106 if (read_expected(TEP_EVENT_DELIM, ")") < 0)
3107 goto out_free;
3108
3109 free_token(token);
3110 type = read_token_item(tok);
3111 return type;
3112
3113out_free:
3114 free_token(token);
3115 *tok = NULL;
3116 return TEP_EVENT_ERROR;
3117}
3118
3119static enum tep_event_type
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05003120process_function(struct tep_event *event, struct tep_print_arg *arg,
Steven Rostedtf7d82352012-04-06 00:47:53 +02003121 char *token, char **tok)
3122{
Tzvetomir Stoyanov (VMware)3cf47782018-08-08 14:02:59 -04003123 struct tep_function_handler *func;
Steven Rostedtf7d82352012-04-06 00:47:53 +02003124
3125 if (strcmp(token, "__print_flags") == 0) {
3126 free_token(token);
Tom Zanussi5205aec2012-04-06 00:47:58 +02003127 is_flag_field = 1;
Steven Rostedtf7d82352012-04-06 00:47:53 +02003128 return process_flags(event, arg, tok);
3129 }
3130 if (strcmp(token, "__print_symbolic") == 0) {
3131 free_token(token);
Tom Zanussi5205aec2012-04-06 00:47:58 +02003132 is_symbolic_field = 1;
Steven Rostedtf7d82352012-04-06 00:47:53 +02003133 return process_symbols(event, arg, tok);
3134 }
Namhyung Kime080e6f2012-06-27 09:41:41 +09003135 if (strcmp(token, "__print_hex") == 0) {
3136 free_token(token);
3137 return process_hex(event, arg, tok);
3138 }
Daniel Borkmann0fe05592017-01-25 02:28:17 +01003139 if (strcmp(token, "__print_hex_str") == 0) {
3140 free_token(token);
3141 return process_hex_str(event, arg, tok);
3142 }
Javi Merinob839e1e82015-03-24 11:07:19 +00003143 if (strcmp(token, "__print_array") == 0) {
3144 free_token(token);
3145 return process_int_array(event, arg, tok);
3146 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02003147 if (strcmp(token, "__get_str") == 0) {
3148 free_token(token);
3149 return process_str(event, arg, tok);
3150 }
Steven Rostedt (Red Hat)473a7782014-06-02 23:20:16 -04003151 if (strcmp(token, "__get_bitmask") == 0) {
3152 free_token(token);
3153 return process_bitmask(event, arg, tok);
3154 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02003155 if (strcmp(token, "__get_dynamic_array") == 0) {
3156 free_token(token);
3157 return process_dynamic_array(event, arg, tok);
3158 }
He Kuang76055942015-08-29 04:22:05 +00003159 if (strcmp(token, "__get_dynamic_array_len") == 0) {
3160 free_token(token);
3161 return process_dynamic_array_len(event, arg, tok);
3162 }
Steven Rostedt (VMware)1b20d942020-03-24 16:08:48 -04003163 if (strcmp(token, "__builtin_expect") == 0) {
3164 free_token(token);
3165 return process_builtin_expect(event, arg, tok);
3166 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02003167
Tzvetomir Stoyanov69769ce2019-04-01 12:43:18 -04003168 func = find_func_handler(event->tep, token);
Steven Rostedtf7d82352012-04-06 00:47:53 +02003169 if (func) {
3170 free_token(token);
3171 return process_func_handler(event, func, arg, tok);
3172 }
3173
Namhyung Kim3388cc32014-03-19 10:22:53 +09003174 do_warning_event(event, "function %s not defined", token);
Steven Rostedtf7d82352012-04-06 00:47:53 +02003175 free_token(token);
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04003176 return TEP_EVENT_ERROR;
Steven Rostedtf7d82352012-04-06 00:47:53 +02003177}
3178
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04003179static enum tep_event_type
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05003180process_arg_token(struct tep_event *event, struct tep_print_arg *arg,
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04003181 char **tok, enum tep_event_type type)
Steven Rostedtf7d82352012-04-06 00:47:53 +02003182{
3183 char *token;
3184 char *atom;
3185
3186 token = *tok;
3187
3188 switch (type) {
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04003189 case TEP_EVENT_ITEM:
Steven Rostedtf7d82352012-04-06 00:47:53 +02003190 if (strcmp(token, "REC") == 0) {
3191 free_token(token);
3192 type = process_entry(event, arg, &token);
3193 break;
3194 }
3195 atom = token;
3196 /* test the next token */
3197 type = read_token_item(&token);
3198
3199 /*
3200 * If the next token is a parenthesis, then this
3201 * is a function.
3202 */
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04003203 if (type == TEP_EVENT_DELIM && strcmp(token, "(") == 0) {
Steven Rostedtf7d82352012-04-06 00:47:53 +02003204 free_token(token);
3205 token = NULL;
3206 /* this will free atom. */
3207 type = process_function(event, arg, atom, &token);
3208 break;
3209 }
3210 /* atoms can be more than one token long */
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04003211 while (type == TEP_EVENT_ITEM) {
Steven Rostedt (VMware)27d4d332020-03-24 16:08:46 -04003212 int ret;
3213
3214 ret = append(&atom, " ", token);
3215 if (ret < 0) {
Namhyung Kimd2864472012-04-09 11:54:33 +09003216 free(atom);
3217 *tok = NULL;
3218 free_token(token);
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04003219 return TEP_EVENT_ERROR;
Namhyung Kimd2864472012-04-09 11:54:33 +09003220 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02003221 free_token(token);
3222 type = read_token_item(&token);
3223 }
3224
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04003225 arg->type = TEP_PRINT_ATOM;
Steven Rostedtf7d82352012-04-06 00:47:53 +02003226 arg->atom.atom = atom;
3227 break;
3228
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04003229 case TEP_EVENT_DQUOTE:
3230 case TEP_EVENT_SQUOTE:
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04003231 arg->type = TEP_PRINT_ATOM;
Steven Rostedtf7d82352012-04-06 00:47:53 +02003232 arg->atom.atom = token;
3233 type = read_token_item(&token);
3234 break;
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04003235 case TEP_EVENT_DELIM:
Steven Rostedtf7d82352012-04-06 00:47:53 +02003236 if (strcmp(token, "(") == 0) {
3237 free_token(token);
3238 type = process_paren(event, arg, &token);
3239 break;
3240 }
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04003241 case TEP_EVENT_OP:
Steven Rostedtf7d82352012-04-06 00:47:53 +02003242 /* handle single ops */
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04003243 arg->type = TEP_PRINT_OP;
Steven Rostedtf7d82352012-04-06 00:47:53 +02003244 arg->op.op = token;
3245 arg->op.left = NULL;
3246 type = process_op(event, arg, &token);
3247
3248 /* On error, the op is freed */
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04003249 if (type == TEP_EVENT_ERROR)
Steven Rostedtf7d82352012-04-06 00:47:53 +02003250 arg->op.op = NULL;
3251
3252 /* return error type if errored */
3253 break;
3254
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04003255 case TEP_EVENT_ERROR ... TEP_EVENT_NEWLINE:
Steven Rostedtf7d82352012-04-06 00:47:53 +02003256 default:
Namhyung Kim3388cc32014-03-19 10:22:53 +09003257 do_warning_event(event, "unexpected type %d", type);
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04003258 return TEP_EVENT_ERROR;
Steven Rostedtf7d82352012-04-06 00:47:53 +02003259 }
3260 *tok = token;
3261
3262 return type;
3263}
3264
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05003265static int event_read_print_args(struct tep_event *event, struct tep_print_arg **list)
Steven Rostedtf7d82352012-04-06 00:47:53 +02003266{
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04003267 enum tep_event_type type = TEP_EVENT_ERROR;
Tzvetomir Stoyanov (VMware)5647f942018-09-19 14:56:49 -04003268 struct tep_print_arg *arg;
Steven Rostedtf7d82352012-04-06 00:47:53 +02003269 char *token;
3270 int args = 0;
3271
3272 do {
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04003273 if (type == TEP_EVENT_NEWLINE) {
Steven Rostedtf7d82352012-04-06 00:47:53 +02003274 type = read_token_item(&token);
3275 continue;
3276 }
3277
3278 arg = alloc_arg();
Namhyung Kimb1ac7542012-09-20 11:09:19 +09003279 if (!arg) {
Namhyung Kim3388cc32014-03-19 10:22:53 +09003280 do_warning_event(event, "%s: not enough memory!",
3281 __func__);
Namhyung Kimb1ac7542012-09-20 11:09:19 +09003282 return -1;
3283 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02003284
3285 type = process_arg(event, arg, &token);
3286
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04003287 if (type == TEP_EVENT_ERROR) {
Steven Rostedtf7d82352012-04-06 00:47:53 +02003288 free_token(token);
3289 free_arg(arg);
3290 return -1;
3291 }
3292
3293 *list = arg;
3294 args++;
3295
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04003296 if (type == TEP_EVENT_OP) {
Steven Rostedtf7d82352012-04-06 00:47:53 +02003297 type = process_op(event, arg, &token);
3298 free_token(token);
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04003299 if (type == TEP_EVENT_ERROR) {
Steven Rostedtf7d82352012-04-06 00:47:53 +02003300 *list = NULL;
3301 free_arg(arg);
3302 return -1;
3303 }
3304 list = &arg->next;
3305 continue;
3306 }
3307
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04003308 if (type == TEP_EVENT_DELIM && strcmp(token, ",") == 0) {
Steven Rostedtf7d82352012-04-06 00:47:53 +02003309 free_token(token);
3310 *list = arg;
3311 list = &arg->next;
3312 continue;
3313 }
3314 break;
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04003315 } while (type != TEP_EVENT_NONE);
Steven Rostedtf7d82352012-04-06 00:47:53 +02003316
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04003317 if (type != TEP_EVENT_NONE && type != TEP_EVENT_ERROR)
Steven Rostedtf7d82352012-04-06 00:47:53 +02003318 free_token(token);
3319
3320 return args;
3321}
3322
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05003323static int event_read_print(struct tep_event *event)
Steven Rostedtf7d82352012-04-06 00:47:53 +02003324{
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04003325 enum tep_event_type type;
Steven Rostedtf7d82352012-04-06 00:47:53 +02003326 char *token;
3327 int ret;
3328
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04003329 if (read_expected_item(TEP_EVENT_ITEM, "print") < 0)
Steven Rostedtf7d82352012-04-06 00:47:53 +02003330 return -1;
3331
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04003332 if (read_expected(TEP_EVENT_ITEM, "fmt") < 0)
Steven Rostedtf7d82352012-04-06 00:47:53 +02003333 return -1;
3334
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04003335 if (read_expected(TEP_EVENT_OP, ":") < 0)
Steven Rostedtf7d82352012-04-06 00:47:53 +02003336 return -1;
3337
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04003338 if (read_expect_type(TEP_EVENT_DQUOTE, &token) < 0)
Steven Rostedtf7d82352012-04-06 00:47:53 +02003339 goto fail;
3340
3341 concat:
3342 event->print_fmt.format = token;
3343 event->print_fmt.args = NULL;
3344
3345 /* ok to have no arg */
3346 type = read_token_item(&token);
3347
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04003348 if (type == TEP_EVENT_NONE)
Steven Rostedtf7d82352012-04-06 00:47:53 +02003349 return 0;
3350
3351 /* Handle concatenation of print lines */
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04003352 if (type == TEP_EVENT_DQUOTE) {
Steven Rostedtf7d82352012-04-06 00:47:53 +02003353 char *cat;
3354
Arnaldo Carvalho de Melo0dbca1e2012-09-12 15:39:59 -03003355 if (asprintf(&cat, "%s%s", event->print_fmt.format, token) < 0)
3356 goto fail;
Steven Rostedtf7d82352012-04-06 00:47:53 +02003357 free_token(token);
3358 free_token(event->print_fmt.format);
3359 event->print_fmt.format = NULL;
3360 token = cat;
3361 goto concat;
3362 }
3363
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04003364 if (test_type_token(type, token, TEP_EVENT_DELIM, ","))
Steven Rostedtf7d82352012-04-06 00:47:53 +02003365 goto fail;
3366
3367 free_token(token);
3368
3369 ret = event_read_print_args(event, &event->print_fmt.args);
3370 if (ret < 0)
3371 return -1;
3372
3373 return ret;
3374
3375 fail:
3376 free_token(token);
3377 return -1;
3378}
3379
3380/**
Tzvetomir Stoyanov (VMware)af85cd12018-08-08 14:02:50 -04003381 * tep_find_common_field - return a common field by event
Steven Rostedtf7d82352012-04-06 00:47:53 +02003382 * @event: handle for the event
3383 * @name: the name of the common field to return
3384 *
3385 * Returns a common field from the event by the given @name.
Ingo Molnar3e449f72018-12-03 11:22:00 +01003386 * This only searches the common fields and not all field.
Steven Rostedtf7d82352012-04-06 00:47:53 +02003387 */
Tzvetomir Stoyanov (VMware)2c92f982018-09-19 14:56:45 -04003388struct tep_format_field *
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05003389tep_find_common_field(struct tep_event *event, const char *name)
Steven Rostedtf7d82352012-04-06 00:47:53 +02003390{
Tzvetomir Stoyanov (VMware)2c92f982018-09-19 14:56:45 -04003391 struct tep_format_field *format;
Steven Rostedtf7d82352012-04-06 00:47:53 +02003392
3393 for (format = event->format.common_fields;
3394 format; format = format->next) {
3395 if (strcmp(format->name, name) == 0)
3396 break;
3397 }
3398
3399 return format;
3400}
3401
3402/**
Tzvetomir Stoyanov (VMware)af85cd12018-08-08 14:02:50 -04003403 * tep_find_field - find a non-common field
Steven Rostedtf7d82352012-04-06 00:47:53 +02003404 * @event: handle for the event
3405 * @name: the name of the non-common field
3406 *
3407 * Returns a non-common field by the given @name.
3408 * This does not search common fields.
3409 */
Tzvetomir Stoyanov (VMware)2c92f982018-09-19 14:56:45 -04003410struct tep_format_field *
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05003411tep_find_field(struct tep_event *event, const char *name)
Steven Rostedtf7d82352012-04-06 00:47:53 +02003412{
Tzvetomir Stoyanov (VMware)2c92f982018-09-19 14:56:45 -04003413 struct tep_format_field *format;
Steven Rostedtf7d82352012-04-06 00:47:53 +02003414
3415 for (format = event->format.fields;
3416 format; format = format->next) {
3417 if (strcmp(format->name, name) == 0)
3418 break;
3419 }
3420
3421 return format;
3422}
3423
3424/**
Tzvetomir Stoyanov (VMware)af85cd12018-08-08 14:02:50 -04003425 * tep_find_any_field - find any field by name
Steven Rostedtf7d82352012-04-06 00:47:53 +02003426 * @event: handle for the event
3427 * @name: the name of the field
3428 *
3429 * Returns a field by the given @name.
Ingo Molnar3e449f72018-12-03 11:22:00 +01003430 * This searches the common field names first, then
Steven Rostedtf7d82352012-04-06 00:47:53 +02003431 * the non-common ones if a common one was not found.
3432 */
Tzvetomir Stoyanov (VMware)2c92f982018-09-19 14:56:45 -04003433struct tep_format_field *
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05003434tep_find_any_field(struct tep_event *event, const char *name)
Steven Rostedtf7d82352012-04-06 00:47:53 +02003435{
Tzvetomir Stoyanov (VMware)2c92f982018-09-19 14:56:45 -04003436 struct tep_format_field *format;
Steven Rostedtf7d82352012-04-06 00:47:53 +02003437
Tzvetomir Stoyanov (VMware)af85cd12018-08-08 14:02:50 -04003438 format = tep_find_common_field(event, name);
Steven Rostedtf7d82352012-04-06 00:47:53 +02003439 if (format)
3440 return format;
Tzvetomir Stoyanov (VMware)af85cd12018-08-08 14:02:50 -04003441 return tep_find_field(event, name);
Steven Rostedtf7d82352012-04-06 00:47:53 +02003442}
3443
3444/**
Tzvetomir Stoyanov (VMware)59c1bae2018-08-08 14:02:53 -04003445 * tep_read_number - read a number from data
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04003446 * @tep: a handle to the trace event parser context
Steven Rostedtf7d82352012-04-06 00:47:53 +02003447 * @ptr: the raw data
3448 * @size: the size of the data that holds the number
3449 *
3450 * Returns the number (converted to host) from the
3451 * raw data.
3452 */
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04003453unsigned long long tep_read_number(struct tep_handle *tep,
Tzvetomir Stoyanov (VMware)59c1bae2018-08-08 14:02:53 -04003454 const void *ptr, int size)
Steven Rostedtf7d82352012-04-06 00:47:53 +02003455{
Tzvetomir Stoyanov6cd99d22018-11-30 10:44:10 -05003456 unsigned long long val;
3457
Steven Rostedtf7d82352012-04-06 00:47:53 +02003458 switch (size) {
3459 case 1:
3460 return *(unsigned char *)ptr;
3461 case 2:
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04003462 return tep_data2host2(tep, *(unsigned short *)ptr);
Steven Rostedtf7d82352012-04-06 00:47:53 +02003463 case 4:
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04003464 return tep_data2host4(tep, *(unsigned int *)ptr);
Steven Rostedtf7d82352012-04-06 00:47:53 +02003465 case 8:
Tzvetomir Stoyanov6cd99d22018-11-30 10:44:10 -05003466 memcpy(&val, (ptr), sizeof(unsigned long long));
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04003467 return tep_data2host8(tep, val);
Steven Rostedtf7d82352012-04-06 00:47:53 +02003468 default:
3469 /* BUG! */
3470 return 0;
3471 }
3472}
3473
3474/**
Tzvetomir Stoyanov (VMware)59c1bae2018-08-08 14:02:53 -04003475 * tep_read_number_field - read a number from data
Steven Rostedtf7d82352012-04-06 00:47:53 +02003476 * @field: a handle to the field
3477 * @data: the raw data to read
3478 * @value: the value to place the number in
3479 *
3480 * Reads raw data according to a field offset and size,
3481 * and translates it into @value.
3482 *
3483 * Returns 0 on success, -1 otherwise.
3484 */
Tzvetomir Stoyanov (VMware)2c92f982018-09-19 14:56:45 -04003485int tep_read_number_field(struct tep_format_field *field, const void *data,
Tzvetomir Stoyanov (VMware)59c1bae2018-08-08 14:02:53 -04003486 unsigned long long *value)
Steven Rostedtf7d82352012-04-06 00:47:53 +02003487{
3488 if (!field)
3489 return -1;
3490 switch (field->size) {
3491 case 1:
3492 case 2:
3493 case 4:
3494 case 8:
Tzvetomir Stoyanov69769ce2019-04-01 12:43:18 -04003495 *value = tep_read_number(field->event->tep,
Tzvetomir Stoyanov (VMware)59c1bae2018-08-08 14:02:53 -04003496 data + field->offset, field->size);
Steven Rostedtf7d82352012-04-06 00:47:53 +02003497 return 0;
3498 default:
3499 return -1;
3500 }
3501}
3502
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04003503static int get_common_info(struct tep_handle *tep,
Steven Rostedtf7d82352012-04-06 00:47:53 +02003504 const char *type, int *offset, int *size)
3505{
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05003506 struct tep_event *event;
Tzvetomir Stoyanov (VMware)2c92f982018-09-19 14:56:45 -04003507 struct tep_format_field *field;
Steven Rostedtf7d82352012-04-06 00:47:53 +02003508
3509 /*
3510 * All events should have the same common elements.
3511 * Pick any event to find where the type is;
3512 */
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04003513 if (!tep->events) {
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -03003514 do_warning("no event_list!");
3515 return -1;
3516 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02003517
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04003518 event = tep->events[0];
Tzvetomir Stoyanov (VMware)af85cd12018-08-08 14:02:50 -04003519 field = tep_find_common_field(event, type);
Steven Rostedtf7d82352012-04-06 00:47:53 +02003520 if (!field)
Steven Rostedt0866a972012-05-22 14:52:40 +09003521 return -1;
Steven Rostedtf7d82352012-04-06 00:47:53 +02003522
3523 *offset = field->offset;
3524 *size = field->size;
3525
3526 return 0;
3527}
3528
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04003529static int __parse_common(struct tep_handle *tep, void *data,
Steven Rostedtf7d82352012-04-06 00:47:53 +02003530 int *size, int *offset, const char *name)
3531{
3532 int ret;
3533
3534 if (!*size) {
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04003535 ret = get_common_info(tep, name, offset, size);
Steven Rostedtf7d82352012-04-06 00:47:53 +02003536 if (ret < 0)
3537 return ret;
3538 }
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04003539 return tep_read_number(tep, data + *offset, *size);
Steven Rostedtf7d82352012-04-06 00:47:53 +02003540}
3541
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04003542static int trace_parse_common_type(struct tep_handle *tep, void *data)
Steven Rostedtf7d82352012-04-06 00:47:53 +02003543{
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04003544 return __parse_common(tep, data,
3545 &tep->type_size, &tep->type_offset,
Steven Rostedtf7d82352012-04-06 00:47:53 +02003546 "common_type");
3547}
3548
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04003549static int parse_common_pid(struct tep_handle *tep, void *data)
Steven Rostedtf7d82352012-04-06 00:47:53 +02003550{
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04003551 return __parse_common(tep, data,
3552 &tep->pid_size, &tep->pid_offset,
Steven Rostedtf7d82352012-04-06 00:47:53 +02003553 "common_pid");
3554}
3555
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04003556static int parse_common_pc(struct tep_handle *tep, void *data)
Steven Rostedtf7d82352012-04-06 00:47:53 +02003557{
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04003558 return __parse_common(tep, data,
3559 &tep->pc_size, &tep->pc_offset,
Steven Rostedtf7d82352012-04-06 00:47:53 +02003560 "common_preempt_count");
3561}
3562
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04003563static int parse_common_flags(struct tep_handle *tep, void *data)
Steven Rostedtf7d82352012-04-06 00:47:53 +02003564{
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04003565 return __parse_common(tep, data,
3566 &tep->flags_size, &tep->flags_offset,
Steven Rostedtf7d82352012-04-06 00:47:53 +02003567 "common_flags");
3568}
3569
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04003570static int parse_common_lock_depth(struct tep_handle *tep, void *data)
Steven Rostedtf7d82352012-04-06 00:47:53 +02003571{
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04003572 return __parse_common(tep, data,
3573 &tep->ld_size, &tep->ld_offset,
Steven Rostedt0866a972012-05-22 14:52:40 +09003574 "common_lock_depth");
3575}
Steven Rostedtf7d82352012-04-06 00:47:53 +02003576
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04003577static int parse_common_migrate_disable(struct tep_handle *tep, void *data)
Steven Rostedt0866a972012-05-22 14:52:40 +09003578{
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04003579 return __parse_common(tep, data,
3580 &tep->ld_size, &tep->ld_offset,
Steven Rostedt0866a972012-05-22 14:52:40 +09003581 "common_migrate_disable");
Steven Rostedtf7d82352012-04-06 00:47:53 +02003582}
3583
3584static int events_id_cmp(const void *a, const void *b);
3585
3586/**
Tzvetomir Stoyanov (VMware)af85cd12018-08-08 14:02:50 -04003587 * tep_find_event - find an event by given id
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04003588 * @tep: a handle to the trace event parser context
Steven Rostedtf7d82352012-04-06 00:47:53 +02003589 * @id: the id of the event
3590 *
3591 * Returns an event that has a given @id.
3592 */
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04003593struct tep_event *tep_find_event(struct tep_handle *tep, int id)
Steven Rostedtf7d82352012-04-06 00:47:53 +02003594{
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05003595 struct tep_event **eventptr;
3596 struct tep_event key;
3597 struct tep_event *pkey = &key;
Steven Rostedtf7d82352012-04-06 00:47:53 +02003598
3599 /* Check cache first */
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04003600 if (tep->last_event && tep->last_event->id == id)
3601 return tep->last_event;
Steven Rostedtf7d82352012-04-06 00:47:53 +02003602
3603 key.id = id;
3604
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04003605 eventptr = bsearch(&pkey, tep->events, tep->nr_events,
3606 sizeof(*tep->events), events_id_cmp);
Steven Rostedtf7d82352012-04-06 00:47:53 +02003607
3608 if (eventptr) {
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04003609 tep->last_event = *eventptr;
Steven Rostedtf7d82352012-04-06 00:47:53 +02003610 return *eventptr;
3611 }
3612
3613 return NULL;
3614}
3615
3616/**
Tzvetomir Stoyanov (VMware)610e1e42018-08-08 14:03:05 -04003617 * tep_find_event_by_name - find an event by given name
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04003618 * @tep: a handle to the trace event parser context
Steven Rostedtf7d82352012-04-06 00:47:53 +02003619 * @sys: the system name to search for
3620 * @name: the name of the event to search for
3621 *
3622 * This returns an event with a given @name and under the system
3623 * @sys. If @sys is NULL the first event with @name is returned.
3624 */
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05003625struct tep_event *
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04003626tep_find_event_by_name(struct tep_handle *tep,
Tzvetomir Stoyanov (VMware)610e1e42018-08-08 14:03:05 -04003627 const char *sys, const char *name)
Steven Rostedtf7d82352012-04-06 00:47:53 +02003628{
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05003629 struct tep_event *event = NULL;
Steven Rostedtf7d82352012-04-06 00:47:53 +02003630 int i;
3631
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04003632 if (tep->last_event &&
3633 strcmp(tep->last_event->name, name) == 0 &&
3634 (!sys || strcmp(tep->last_event->system, sys) == 0))
3635 return tep->last_event;
Steven Rostedtf7d82352012-04-06 00:47:53 +02003636
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04003637 for (i = 0; i < tep->nr_events; i++) {
3638 event = tep->events[i];
Steven Rostedtf7d82352012-04-06 00:47:53 +02003639 if (strcmp(event->name, name) == 0) {
3640 if (!sys)
3641 break;
3642 if (strcmp(event->system, sys) == 0)
3643 break;
3644 }
3645 }
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04003646 if (i == tep->nr_events)
Steven Rostedtf7d82352012-04-06 00:47:53 +02003647 event = NULL;
3648
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04003649 tep->last_event = event;
Steven Rostedtf7d82352012-04-06 00:47:53 +02003650 return event;
3651}
3652
3653static unsigned long long
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05003654eval_num_arg(void *data, int size, struct tep_event *event, struct tep_print_arg *arg)
Steven Rostedtf7d82352012-04-06 00:47:53 +02003655{
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04003656 struct tep_handle *tep = event->tep;
Steven Rostedtf7d82352012-04-06 00:47:53 +02003657 unsigned long long val = 0;
3658 unsigned long long left, right;
Tzvetomir Stoyanov (VMware)5647f942018-09-19 14:56:49 -04003659 struct tep_print_arg *typearg = NULL;
3660 struct tep_print_arg *larg;
Steven Rostedtf7d82352012-04-06 00:47:53 +02003661 unsigned long offset;
3662 unsigned int field_size;
3663
3664 switch (arg->type) {
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04003665 case TEP_PRINT_NULL:
Steven Rostedtf7d82352012-04-06 00:47:53 +02003666 /* ?? */
3667 return 0;
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04003668 case TEP_PRINT_ATOM:
Steven Rostedtf7d82352012-04-06 00:47:53 +02003669 return strtoull(arg->atom.atom, NULL, 0);
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04003670 case TEP_PRINT_FIELD:
Steven Rostedtf7d82352012-04-06 00:47:53 +02003671 if (!arg->field.field) {
Tzvetomir Stoyanov (VMware)af85cd12018-08-08 14:02:50 -04003672 arg->field.field = tep_find_any_field(event, arg->field.name);
Steven Rostedtf7d82352012-04-06 00:47:53 +02003673 if (!arg->field.field)
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -03003674 goto out_warning_field;
3675
Steven Rostedtf7d82352012-04-06 00:47:53 +02003676 }
3677 /* must be a number */
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04003678 val = tep_read_number(tep, data + arg->field.field->offset,
Tzvetomir Stoyanov (VMware)59c1bae2018-08-08 14:02:53 -04003679 arg->field.field->size);
Steven Rostedtf7d82352012-04-06 00:47:53 +02003680 break;
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04003681 case TEP_PRINT_FLAGS:
3682 case TEP_PRINT_SYMBOL:
3683 case TEP_PRINT_INT_ARRAY:
3684 case TEP_PRINT_HEX:
3685 case TEP_PRINT_HEX_STR:
Steven Rostedtf7d82352012-04-06 00:47:53 +02003686 break;
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04003687 case TEP_PRINT_TYPE:
Steven Rostedtf7d82352012-04-06 00:47:53 +02003688 val = eval_num_arg(data, size, event, arg->typecast.item);
3689 return eval_type(val, arg, 0);
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04003690 case TEP_PRINT_STRING:
3691 case TEP_PRINT_BSTRING:
3692 case TEP_PRINT_BITMASK:
Steven Rostedtf7d82352012-04-06 00:47:53 +02003693 return 0;
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04003694 case TEP_PRINT_FUNC: {
Steven Rostedtf7d82352012-04-06 00:47:53 +02003695 struct trace_seq s;
3696 trace_seq_init(&s);
3697 val = process_defined_func(&s, data, size, event, arg);
3698 trace_seq_destroy(&s);
3699 return val;
3700 }
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04003701 case TEP_PRINT_OP:
Steven Rostedtf7d82352012-04-06 00:47:53 +02003702 if (strcmp(arg->op.op, "[") == 0) {
3703 /*
3704 * Arrays are special, since we don't want
3705 * to read the arg as is.
3706 */
3707 right = eval_num_arg(data, size, event, arg->op.right);
3708
3709 /* handle typecasts */
3710 larg = arg->op.left;
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04003711 while (larg->type == TEP_PRINT_TYPE) {
Steven Rostedtf7d82352012-04-06 00:47:53 +02003712 if (!typearg)
3713 typearg = larg;
3714 larg = larg->typecast.item;
3715 }
3716
3717 /* Default to long size */
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04003718 field_size = tep->long_size;
Steven Rostedtf7d82352012-04-06 00:47:53 +02003719
3720 switch (larg->type) {
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04003721 case TEP_PRINT_DYNAMIC_ARRAY:
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04003722 offset = tep_read_number(tep,
Steven Rostedtf7d82352012-04-06 00:47:53 +02003723 data + larg->dynarray.field->offset,
3724 larg->dynarray.field->size);
3725 if (larg->dynarray.field->elementsize)
3726 field_size = larg->dynarray.field->elementsize;
3727 /*
3728 * The actual length of the dynamic array is stored
3729 * in the top half of the field, and the offset
3730 * is in the bottom half of the 32 bit field.
3731 */
3732 offset &= 0xffff;
3733 offset += right;
3734 break;
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04003735 case TEP_PRINT_FIELD:
Steven Rostedtf7d82352012-04-06 00:47:53 +02003736 if (!larg->field.field) {
3737 larg->field.field =
Tzvetomir Stoyanov (VMware)af85cd12018-08-08 14:02:50 -04003738 tep_find_any_field(event, larg->field.name);
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -03003739 if (!larg->field.field) {
3740 arg = larg;
3741 goto out_warning_field;
3742 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02003743 }
3744 field_size = larg->field.field->elementsize;
3745 offset = larg->field.field->offset +
3746 right * larg->field.field->elementsize;
3747 break;
3748 default:
3749 goto default_op; /* oops, all bets off */
3750 }
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04003751 val = tep_read_number(tep,
Tzvetomir Stoyanov (VMware)59c1bae2018-08-08 14:02:53 -04003752 data + offset, field_size);
Steven Rostedtf7d82352012-04-06 00:47:53 +02003753 if (typearg)
3754 val = eval_type(val, typearg, 1);
3755 break;
3756 } else if (strcmp(arg->op.op, "?") == 0) {
3757 left = eval_num_arg(data, size, event, arg->op.left);
3758 arg = arg->op.right;
3759 if (left)
3760 val = eval_num_arg(data, size, event, arg->op.left);
3761 else
3762 val = eval_num_arg(data, size, event, arg->op.right);
3763 break;
3764 }
3765 default_op:
3766 left = eval_num_arg(data, size, event, arg->op.left);
3767 right = eval_num_arg(data, size, event, arg->op.right);
3768 switch (arg->op.op[0]) {
3769 case '!':
3770 switch (arg->op.op[1]) {
3771 case 0:
3772 val = !right;
3773 break;
3774 case '=':
3775 val = left != right;
3776 break;
3777 default:
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -03003778 goto out_warning_op;
Steven Rostedtf7d82352012-04-06 00:47:53 +02003779 }
3780 break;
3781 case '~':
3782 val = ~right;
3783 break;
3784 case '|':
3785 if (arg->op.op[1])
3786 val = left || right;
3787 else
3788 val = left | right;
3789 break;
3790 case '&':
3791 if (arg->op.op[1])
3792 val = left && right;
3793 else
3794 val = left & right;
3795 break;
3796 case '<':
3797 switch (arg->op.op[1]) {
3798 case 0:
3799 val = left < right;
3800 break;
3801 case '<':
3802 val = left << right;
3803 break;
3804 case '=':
3805 val = left <= right;
3806 break;
3807 default:
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -03003808 goto out_warning_op;
Steven Rostedtf7d82352012-04-06 00:47:53 +02003809 }
3810 break;
3811 case '>':
3812 switch (arg->op.op[1]) {
3813 case 0:
3814 val = left > right;
3815 break;
3816 case '>':
3817 val = left >> right;
3818 break;
3819 case '=':
3820 val = left >= right;
3821 break;
3822 default:
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -03003823 goto out_warning_op;
Steven Rostedtf7d82352012-04-06 00:47:53 +02003824 }
3825 break;
3826 case '=':
3827 if (arg->op.op[1] != '=')
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -03003828 goto out_warning_op;
3829
Steven Rostedtf7d82352012-04-06 00:47:53 +02003830 val = left == right;
3831 break;
3832 case '-':
3833 val = left - right;
3834 break;
3835 case '+':
3836 val = left + right;
3837 break;
Steven Rostedt2e7a5fc2012-04-06 00:48:04 +02003838 case '/':
3839 val = left / right;
3840 break;
Daniel Bristot de Oliveira0e47b382016-02-22 14:08:22 -03003841 case '%':
3842 val = left % right;
3843 break;
Steven Rostedt2e7a5fc2012-04-06 00:48:04 +02003844 case '*':
3845 val = left * right;
3846 break;
Steven Rostedtf7d82352012-04-06 00:47:53 +02003847 default:
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -03003848 goto out_warning_op;
Steven Rostedtf7d82352012-04-06 00:47:53 +02003849 }
3850 break;
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04003851 case TEP_PRINT_DYNAMIC_ARRAY_LEN:
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04003852 offset = tep_read_number(tep,
Tzvetomir Stoyanov (VMware)59c1bae2018-08-08 14:02:53 -04003853 data + arg->dynarray.field->offset,
3854 arg->dynarray.field->size);
He Kuang76055942015-08-29 04:22:05 +00003855 /*
3856 * The total allocated length of the dynamic array is
3857 * stored in the top half of the field, and the offset
3858 * is in the bottom half of the 32 bit field.
3859 */
3860 val = (unsigned long long)(offset >> 16);
3861 break;
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04003862 case TEP_PRINT_DYNAMIC_ARRAY:
Steven Rostedt0497a9e2013-11-11 16:08:10 -05003863 /* Without [], we pass the address to the dynamic data */
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04003864 offset = tep_read_number(tep,
Tzvetomir Stoyanov (VMware)59c1bae2018-08-08 14:02:53 -04003865 data + arg->dynarray.field->offset,
3866 arg->dynarray.field->size);
Steven Rostedt0497a9e2013-11-11 16:08:10 -05003867 /*
He Kuang76055942015-08-29 04:22:05 +00003868 * The total allocated length of the dynamic array is
3869 * stored in the top half of the field, and the offset
Steven Rostedt0497a9e2013-11-11 16:08:10 -05003870 * is in the bottom half of the 32 bit field.
3871 */
3872 offset &= 0xffff;
Arnaldo Carvalho de Melo6b5fa0b2013-11-19 16:14:51 -03003873 val = (unsigned long long)((unsigned long)data + offset);
Steven Rostedt0497a9e2013-11-11 16:08:10 -05003874 break;
Steven Rostedtf7d82352012-04-06 00:47:53 +02003875 default: /* not sure what to do there */
3876 return 0;
3877 }
3878 return val;
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -03003879
3880out_warning_op:
Namhyung Kim3388cc32014-03-19 10:22:53 +09003881 do_warning_event(event, "%s: unknown op '%s'", __func__, arg->op.op);
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -03003882 return 0;
3883
3884out_warning_field:
Namhyung Kim3388cc32014-03-19 10:22:53 +09003885 do_warning_event(event, "%s: field %s not found",
3886 __func__, arg->field.name);
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -03003887 return 0;
Steven Rostedtf7d82352012-04-06 00:47:53 +02003888}
3889
3890struct flag {
3891 const char *name;
3892 unsigned long long value;
3893};
3894
3895static const struct flag flags[] = {
3896 { "HI_SOFTIRQ", 0 },
3897 { "TIMER_SOFTIRQ", 1 },
3898 { "NET_TX_SOFTIRQ", 2 },
3899 { "NET_RX_SOFTIRQ", 3 },
3900 { "BLOCK_SOFTIRQ", 4 },
Christoph Hellwig511cbce2015-11-10 14:56:14 +01003901 { "IRQ_POLL_SOFTIRQ", 5 },
Steven Rostedtf7d82352012-04-06 00:47:53 +02003902 { "TASKLET_SOFTIRQ", 6 },
3903 { "SCHED_SOFTIRQ", 7 },
3904 { "HRTIMER_SOFTIRQ", 8 },
3905 { "RCU_SOFTIRQ", 9 },
3906
3907 { "HRTIMER_NORESTART", 0 },
3908 { "HRTIMER_RESTART", 1 },
3909};
3910
Steven Rostedt7c27f782015-03-24 14:58:13 -04003911static long long eval_flag(const char *flag)
Steven Rostedtf7d82352012-04-06 00:47:53 +02003912{
3913 int i;
3914
3915 /*
3916 * Some flags in the format files do not get converted.
3917 * If the flag is not numeric, see if it is something that
3918 * we already know about.
3919 */
3920 if (isdigit(flag[0]))
3921 return strtoull(flag, NULL, 0);
3922
3923 for (i = 0; i < (int)(sizeof(flags)/sizeof(flags[0])); i++)
3924 if (strcmp(flags[i].name, flag) == 0)
3925 return flags[i].value;
3926
Steven Rostedt7c27f782015-03-24 14:58:13 -04003927 return -1LL;
Steven Rostedtf7d82352012-04-06 00:47:53 +02003928}
3929
3930static void print_str_to_seq(struct trace_seq *s, const char *format,
3931 int len_arg, const char *str)
3932{
3933 if (len_arg >= 0)
3934 trace_seq_printf(s, format, len_arg, str);
3935 else
3936 trace_seq_printf(s, format, str);
3937}
3938
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04003939static void print_bitmask_to_seq(struct tep_handle *tep,
Steven Rostedt (Red Hat)473a7782014-06-02 23:20:16 -04003940 struct trace_seq *s, const char *format,
3941 int len_arg, const void *data, int size)
3942{
3943 int nr_bits = size * 8;
3944 int str_size = (nr_bits + 3) / 4;
3945 int len = 0;
3946 char buf[3];
3947 char *str;
3948 int index;
3949 int i;
3950
3951 /*
3952 * The kernel likes to put in commas every 32 bits, we
3953 * can do the same.
3954 */
3955 str_size += (nr_bits - 1) / 32;
3956
3957 str = malloc(str_size + 1);
3958 if (!str) {
3959 do_warning("%s: not enough memory!", __func__);
3960 return;
3961 }
3962 str[str_size] = 0;
3963
3964 /* Start out with -2 for the two chars per byte */
3965 for (i = str_size - 2; i >= 0; i -= 2) {
3966 /*
3967 * data points to a bit mask of size bytes.
3968 * In the kernel, this is an array of long words, thus
Ingo Molnar3e449f72018-12-03 11:22:00 +01003969 * endianness is very important.
Steven Rostedt (Red Hat)473a7782014-06-02 23:20:16 -04003970 */
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04003971 if (tep->file_bigendian)
Steven Rostedt (Red Hat)473a7782014-06-02 23:20:16 -04003972 index = size - (len + 1);
3973 else
3974 index = len;
3975
3976 snprintf(buf, 3, "%02x", *((unsigned char *)data + index));
3977 memcpy(str + i, buf, 2);
3978 len++;
3979 if (!(len & 3) && i > 0) {
3980 i--;
3981 str[i] = ',';
3982 }
3983 }
3984
3985 if (len_arg >= 0)
3986 trace_seq_printf(s, format, len_arg, str);
3987 else
3988 trace_seq_printf(s, format, str);
3989
3990 free(str);
3991}
3992
Steven Rostedtf7d82352012-04-06 00:47:53 +02003993static void print_str_arg(struct trace_seq *s, void *data, int size,
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05003994 struct tep_event *event, const char *format,
Tzvetomir Stoyanov (VMware)5647f942018-09-19 14:56:49 -04003995 int len_arg, struct tep_print_arg *arg)
Steven Rostedtf7d82352012-04-06 00:47:53 +02003996{
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04003997 struct tep_handle *tep = event->tep;
Tzvetomir Stoyanov (VMware)5647f942018-09-19 14:56:49 -04003998 struct tep_print_flag_sym *flag;
Tzvetomir Stoyanov (VMware)2c92f982018-09-19 14:56:45 -04003999 struct tep_format_field *field;
Steven Rostedt (Red Hat)0970b5f2013-11-01 17:53:55 -04004000 struct printk_map *printk;
Steven Rostedt7c27f782015-03-24 14:58:13 -04004001 long long val, fval;
Kapileshwar Singhc2e4b242015-09-22 14:22:03 +01004002 unsigned long long addr;
Steven Rostedtf7d82352012-04-06 00:47:53 +02004003 char *str;
Namhyung Kime080e6f2012-06-27 09:41:41 +09004004 unsigned char *hex;
Steven Rostedtf7d82352012-04-06 00:47:53 +02004005 int print;
Namhyung Kime080e6f2012-06-27 09:41:41 +09004006 int i, len;
Steven Rostedtf7d82352012-04-06 00:47:53 +02004007
4008 switch (arg->type) {
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04004009 case TEP_PRINT_NULL:
Steven Rostedtf7d82352012-04-06 00:47:53 +02004010 /* ?? */
4011 return;
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04004012 case TEP_PRINT_ATOM:
Steven Rostedtf7d82352012-04-06 00:47:53 +02004013 print_str_to_seq(s, format, len_arg, arg->atom.atom);
4014 return;
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04004015 case TEP_PRINT_FIELD:
Namhyung Kimb7008072012-06-27 09:41:40 +09004016 field = arg->field.field;
4017 if (!field) {
Tzvetomir Stoyanov (VMware)af85cd12018-08-08 14:02:50 -04004018 field = tep_find_any_field(event, arg->field.name);
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -03004019 if (!field) {
4020 str = arg->field.name;
4021 goto out_warning_field;
4022 }
Namhyung Kimb7008072012-06-27 09:41:40 +09004023 arg->field.field = field;
Steven Rostedtf7d82352012-04-06 00:47:53 +02004024 }
4025 /* Zero sized fields, mean the rest of the data */
Namhyung Kimb7008072012-06-27 09:41:40 +09004026 len = field->size ? : size - field->offset;
Steven Rostedtf7d82352012-04-06 00:47:53 +02004027
4028 /*
4029 * Some events pass in pointers. If this is not an array
4030 * and the size is the same as long_size, assume that it
4031 * is a pointer.
4032 */
Tzvetomir Stoyanov (VMware)bb39ccb2018-09-19 14:56:46 -04004033 if (!(field->flags & TEP_FIELD_IS_ARRAY) &&
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04004034 field->size == tep->long_size) {
Kapileshwar Singhc2e4b242015-09-22 14:22:03 +01004035
4036 /* Handle heterogeneous recording and processing
4037 * architectures
4038 *
4039 * CASE I:
4040 * Traces recorded on 32-bit devices (32-bit
4041 * addressing) and processed on 64-bit devices:
4042 * In this case, only 32 bits should be read.
4043 *
4044 * CASE II:
4045 * Traces recorded on 64 bit devices and processed
4046 * on 32-bit devices:
4047 * In this case, 64 bits must be read.
4048 */
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04004049 addr = (tep->long_size == 8) ?
Kapileshwar Singhc2e4b242015-09-22 14:22:03 +01004050 *(unsigned long long *)(data + field->offset) :
4051 (unsigned long long)*(unsigned int *)(data + field->offset);
4052
Steven Rostedt (Red Hat)0970b5f2013-11-01 17:53:55 -04004053 /* Check if it matches a print format */
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04004054 printk = find_printk(tep, addr);
Steven Rostedt (Red Hat)0970b5f2013-11-01 17:53:55 -04004055 if (printk)
4056 trace_seq_puts(s, printk->printk);
4057 else
Kapileshwar Singhc2e4b242015-09-22 14:22:03 +01004058 trace_seq_printf(s, "%llx", addr);
Steven Rostedtf7d82352012-04-06 00:47:53 +02004059 break;
4060 }
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -03004061 str = malloc(len + 1);
4062 if (!str) {
Namhyung Kim3388cc32014-03-19 10:22:53 +09004063 do_warning_event(event, "%s: not enough memory!",
4064 __func__);
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -03004065 return;
4066 }
Namhyung Kimb7008072012-06-27 09:41:40 +09004067 memcpy(str, data + field->offset, len);
Steven Rostedtf7d82352012-04-06 00:47:53 +02004068 str[len] = 0;
4069 print_str_to_seq(s, format, len_arg, str);
4070 free(str);
4071 break;
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04004072 case TEP_PRINT_FLAGS:
Steven Rostedtf7d82352012-04-06 00:47:53 +02004073 val = eval_num_arg(data, size, event, arg->flags.field);
4074 print = 0;
4075 for (flag = arg->flags.flags; flag; flag = flag->next) {
4076 fval = eval_flag(flag->value);
Steven Rostedt7c27f782015-03-24 14:58:13 -04004077 if (!val && fval < 0) {
Steven Rostedtf7d82352012-04-06 00:47:53 +02004078 print_str_to_seq(s, format, len_arg, flag->str);
4079 break;
4080 }
Steven Rostedt7c27f782015-03-24 14:58:13 -04004081 if (fval > 0 && (val & fval) == fval) {
Steven Rostedtf7d82352012-04-06 00:47:53 +02004082 if (print && arg->flags.delim)
4083 trace_seq_puts(s, arg->flags.delim);
4084 print_str_to_seq(s, format, len_arg, flag->str);
4085 print = 1;
4086 val &= ~fval;
4087 }
4088 }
Steven Rostedt (VMware)3df76c92018-01-11 19:47:43 -05004089 if (val) {
4090 if (print && arg->flags.delim)
4091 trace_seq_puts(s, arg->flags.delim);
4092 trace_seq_printf(s, "0x%llx", val);
4093 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02004094 break;
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04004095 case TEP_PRINT_SYMBOL:
Steven Rostedtf7d82352012-04-06 00:47:53 +02004096 val = eval_num_arg(data, size, event, arg->symbol.field);
4097 for (flag = arg->symbol.symbols; flag; flag = flag->next) {
4098 fval = eval_flag(flag->value);
4099 if (val == fval) {
4100 print_str_to_seq(s, format, len_arg, flag->str);
4101 break;
4102 }
4103 }
Jan Kiszkad6344472018-01-11 19:47:44 -05004104 if (!flag)
4105 trace_seq_printf(s, "0x%llx", val);
Steven Rostedtf7d82352012-04-06 00:47:53 +02004106 break;
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04004107 case TEP_PRINT_HEX:
4108 case TEP_PRINT_HEX_STR:
4109 if (arg->hex.field->type == TEP_PRINT_DYNAMIC_ARRAY) {
Howard Cochranb30f75e2013-11-01 17:53:56 -04004110 unsigned long offset;
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04004111 offset = tep_read_number(tep,
Howard Cochranb30f75e2013-11-01 17:53:56 -04004112 data + arg->hex.field->dynarray.field->offset,
4113 arg->hex.field->dynarray.field->size);
4114 hex = data + (offset & 0xffff);
4115 } else {
4116 field = arg->hex.field->field.field;
4117 if (!field) {
4118 str = arg->hex.field->field.name;
Tzvetomir Stoyanov (VMware)af85cd12018-08-08 14:02:50 -04004119 field = tep_find_any_field(event, str);
Howard Cochranb30f75e2013-11-01 17:53:56 -04004120 if (!field)
4121 goto out_warning_field;
4122 arg->hex.field->field.field = field;
4123 }
4124 hex = data + field->offset;
Namhyung Kime080e6f2012-06-27 09:41:41 +09004125 }
Namhyung Kime080e6f2012-06-27 09:41:41 +09004126 len = eval_num_arg(data, size, event, arg->hex.size);
4127 for (i = 0; i < len; i++) {
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04004128 if (i && arg->type == TEP_PRINT_HEX)
Namhyung Kime080e6f2012-06-27 09:41:41 +09004129 trace_seq_putc(s, ' ');
4130 trace_seq_printf(s, "%02x", hex[i]);
4131 }
4132 break;
Steven Rostedtf7d82352012-04-06 00:47:53 +02004133
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04004134 case TEP_PRINT_INT_ARRAY: {
Javi Merinob839e1e82015-03-24 11:07:19 +00004135 void *num;
4136 int el_size;
4137
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04004138 if (arg->int_array.field->type == TEP_PRINT_DYNAMIC_ARRAY) {
Javi Merinob839e1e82015-03-24 11:07:19 +00004139 unsigned long offset;
Tzvetomir Stoyanov (VMware)2c92f982018-09-19 14:56:45 -04004140 struct tep_format_field *field =
Javi Merinob839e1e82015-03-24 11:07:19 +00004141 arg->int_array.field->dynarray.field;
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04004142 offset = tep_read_number(tep,
Tzvetomir Stoyanov (VMware)59c1bae2018-08-08 14:02:53 -04004143 data + field->offset,
4144 field->size);
Javi Merinob839e1e82015-03-24 11:07:19 +00004145 num = data + (offset & 0xffff);
4146 } else {
4147 field = arg->int_array.field->field.field;
4148 if (!field) {
4149 str = arg->int_array.field->field.name;
Tzvetomir Stoyanov (VMware)af85cd12018-08-08 14:02:50 -04004150 field = tep_find_any_field(event, str);
Javi Merinob839e1e82015-03-24 11:07:19 +00004151 if (!field)
4152 goto out_warning_field;
4153 arg->int_array.field->field.field = field;
4154 }
4155 num = data + field->offset;
4156 }
4157 len = eval_num_arg(data, size, event, arg->int_array.count);
4158 el_size = eval_num_arg(data, size, event,
4159 arg->int_array.el_size);
4160 for (i = 0; i < len; i++) {
4161 if (i)
4162 trace_seq_putc(s, ' ');
4163
4164 if (el_size == 1) {
4165 trace_seq_printf(s, "%u", *(uint8_t *)num);
4166 } else if (el_size == 2) {
4167 trace_seq_printf(s, "%u", *(uint16_t *)num);
4168 } else if (el_size == 4) {
4169 trace_seq_printf(s, "%u", *(uint32_t *)num);
4170 } else if (el_size == 8) {
Namhyung Kim410ceb82015-04-24 10:45:16 +09004171 trace_seq_printf(s, "%"PRIu64, *(uint64_t *)num);
Javi Merinob839e1e82015-03-24 11:07:19 +00004172 } else {
4173 trace_seq_printf(s, "BAD SIZE:%d 0x%x",
4174 el_size, *(uint8_t *)num);
4175 el_size = 1;
4176 }
4177
4178 num += el_size;
4179 }
4180 break;
4181 }
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04004182 case TEP_PRINT_TYPE:
Steven Rostedtf7d82352012-04-06 00:47:53 +02004183 break;
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04004184 case TEP_PRINT_STRING: {
Steven Rostedtf7d82352012-04-06 00:47:53 +02004185 int str_offset;
4186
4187 if (arg->string.offset == -1) {
Tzvetomir Stoyanov (VMware)2c92f982018-09-19 14:56:45 -04004188 struct tep_format_field *f;
Steven Rostedtf7d82352012-04-06 00:47:53 +02004189
Tzvetomir Stoyanov (VMware)af85cd12018-08-08 14:02:50 -04004190 f = tep_find_any_field(event, arg->string.string);
Steven Rostedtf7d82352012-04-06 00:47:53 +02004191 arg->string.offset = f->offset;
4192 }
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04004193 str_offset = tep_data2host4(tep, *(unsigned int *)(data + arg->string.offset));
Steven Rostedtf7d82352012-04-06 00:47:53 +02004194 str_offset &= 0xffff;
4195 print_str_to_seq(s, format, len_arg, ((char *)data) + str_offset);
4196 break;
4197 }
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04004198 case TEP_PRINT_BSTRING:
Steven Rostedtc2e6dc22011-11-15 18:47:48 -05004199 print_str_to_seq(s, format, len_arg, arg->string.string);
Steven Rostedtf7d82352012-04-06 00:47:53 +02004200 break;
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04004201 case TEP_PRINT_BITMASK: {
Steven Rostedt (Red Hat)473a7782014-06-02 23:20:16 -04004202 int bitmask_offset;
4203 int bitmask_size;
4204
4205 if (arg->bitmask.offset == -1) {
Tzvetomir Stoyanov (VMware)2c92f982018-09-19 14:56:45 -04004206 struct tep_format_field *f;
Steven Rostedt (Red Hat)473a7782014-06-02 23:20:16 -04004207
Tzvetomir Stoyanov (VMware)af85cd12018-08-08 14:02:50 -04004208 f = tep_find_any_field(event, arg->bitmask.bitmask);
Steven Rostedt (Red Hat)473a7782014-06-02 23:20:16 -04004209 arg->bitmask.offset = f->offset;
4210 }
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04004211 bitmask_offset = tep_data2host4(tep, *(unsigned int *)(data + arg->bitmask.offset));
Steven Rostedt (Red Hat)473a7782014-06-02 23:20:16 -04004212 bitmask_size = bitmask_offset >> 16;
4213 bitmask_offset &= 0xffff;
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04004214 print_bitmask_to_seq(tep, s, format, len_arg,
Steven Rostedt (Red Hat)473a7782014-06-02 23:20:16 -04004215 data + bitmask_offset, bitmask_size);
4216 break;
4217 }
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04004218 case TEP_PRINT_OP:
Steven Rostedtf7d82352012-04-06 00:47:53 +02004219 /*
4220 * The only op for string should be ? :
4221 */
4222 if (arg->op.op[0] != '?')
4223 return;
4224 val = eval_num_arg(data, size, event, arg->op.left);
4225 if (val)
4226 print_str_arg(s, data, size, event,
4227 format, len_arg, arg->op.right->op.left);
4228 else
4229 print_str_arg(s, data, size, event,
4230 format, len_arg, arg->op.right->op.right);
4231 break;
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04004232 case TEP_PRINT_FUNC:
Steven Rostedtf7d82352012-04-06 00:47:53 +02004233 process_defined_func(s, data, size, event, arg);
4234 break;
4235 default:
4236 /* well... */
4237 break;
4238 }
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -03004239
4240 return;
4241
4242out_warning_field:
Namhyung Kim3388cc32014-03-19 10:22:53 +09004243 do_warning_event(event, "%s: field %s not found",
4244 __func__, arg->field.name);
Steven Rostedtf7d82352012-04-06 00:47:53 +02004245}
4246
4247static unsigned long long
4248process_defined_func(struct trace_seq *s, void *data, int size,
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05004249 struct tep_event *event, struct tep_print_arg *arg)
Steven Rostedtf7d82352012-04-06 00:47:53 +02004250{
Tzvetomir Stoyanov (VMware)3cf47782018-08-08 14:02:59 -04004251 struct tep_function_handler *func_handle = arg->func.func;
Tzvetomir Stoyanov (VMware)0ae98632018-08-08 14:03:09 -04004252 struct func_params *param;
Steven Rostedtf7d82352012-04-06 00:47:53 +02004253 unsigned long long *args;
4254 unsigned long long ret;
Tzvetomir Stoyanov (VMware)5647f942018-09-19 14:56:49 -04004255 struct tep_print_arg *farg;
Steven Rostedtf7d82352012-04-06 00:47:53 +02004256 struct trace_seq str;
4257 struct save_str {
4258 struct save_str *next;
4259 char *str;
4260 } *strings = NULL, *string;
4261 int i;
4262
4263 if (!func_handle->nr_args) {
4264 ret = (*func_handle->func)(s, NULL);
4265 goto out;
4266 }
4267
4268 farg = arg->func.args;
4269 param = func_handle->params;
4270
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -03004271 ret = ULLONG_MAX;
4272 args = malloc(sizeof(*args) * func_handle->nr_args);
4273 if (!args)
4274 goto out;
4275
Steven Rostedtf7d82352012-04-06 00:47:53 +02004276 for (i = 0; i < func_handle->nr_args; i++) {
4277 switch (param->type) {
Tzvetomir Stoyanov (VMware)3cf47782018-08-08 14:02:59 -04004278 case TEP_FUNC_ARG_INT:
4279 case TEP_FUNC_ARG_LONG:
4280 case TEP_FUNC_ARG_PTR:
Steven Rostedtf7d82352012-04-06 00:47:53 +02004281 args[i] = eval_num_arg(data, size, event, farg);
4282 break;
Tzvetomir Stoyanov (VMware)3cf47782018-08-08 14:02:59 -04004283 case TEP_FUNC_ARG_STRING:
Steven Rostedtf7d82352012-04-06 00:47:53 +02004284 trace_seq_init(&str);
4285 print_str_arg(&str, data, size, event, "%s", -1, farg);
4286 trace_seq_terminate(&str);
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -03004287 string = malloc(sizeof(*string));
4288 if (!string) {
Namhyung Kim3388cc32014-03-19 10:22:53 +09004289 do_warning_event(event, "%s(%d): malloc str",
4290 __func__, __LINE__);
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -03004291 goto out_free;
4292 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02004293 string->next = strings;
4294 string->str = strdup(str.buffer);
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -03004295 if (!string->str) {
4296 free(string);
Namhyung Kim3388cc32014-03-19 10:22:53 +09004297 do_warning_event(event, "%s(%d): malloc str",
4298 __func__, __LINE__);
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -03004299 goto out_free;
4300 }
Robert Richter0cf26012012-08-07 19:43:14 +02004301 args[i] = (uintptr_t)string->str;
Steven Rostedtf7d82352012-04-06 00:47:53 +02004302 strings = string;
4303 trace_seq_destroy(&str);
4304 break;
4305 default:
4306 /*
4307 * Something went totally wrong, this is not
4308 * an input error, something in this code broke.
4309 */
Namhyung Kim3388cc32014-03-19 10:22:53 +09004310 do_warning_event(event, "Unexpected end of arguments\n");
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -03004311 goto out_free;
Steven Rostedtf7d82352012-04-06 00:47:53 +02004312 }
4313 farg = farg->next;
Namhyung Kim21c69e722012-05-23 11:36:51 +09004314 param = param->next;
Steven Rostedtf7d82352012-04-06 00:47:53 +02004315 }
4316
4317 ret = (*func_handle->func)(s, args);
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -03004318out_free:
Steven Rostedtf7d82352012-04-06 00:47:53 +02004319 free(args);
4320 while (strings) {
4321 string = strings;
4322 strings = string->next;
4323 free(string->str);
4324 free(string);
4325 }
4326
4327 out:
4328 /* TBD : handle return type here */
4329 return ret;
4330}
4331
Tzvetomir Stoyanov (VMware)5647f942018-09-19 14:56:49 -04004332static void free_args(struct tep_print_arg *args)
Arnaldo Carvalho de Melo0dbca1e2012-09-12 15:39:59 -03004333{
Tzvetomir Stoyanov (VMware)5647f942018-09-19 14:56:49 -04004334 struct tep_print_arg *next;
Arnaldo Carvalho de Melo0dbca1e2012-09-12 15:39:59 -03004335
4336 while (args) {
4337 next = args->next;
4338
4339 free_arg(args);
4340 args = next;
4341 }
4342}
4343
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05004344static struct tep_print_arg *make_bprint_args(char *fmt, void *data, int size, struct tep_event *event)
Steven Rostedtf7d82352012-04-06 00:47:53 +02004345{
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04004346 struct tep_handle *tep = event->tep;
Tzvetomir Stoyanov (VMware)2c92f982018-09-19 14:56:45 -04004347 struct tep_format_field *field, *ip_field;
Tzvetomir Stoyanov (VMware)5647f942018-09-19 14:56:49 -04004348 struct tep_print_arg *args, *arg, **next;
Steven Rostedtf7d82352012-04-06 00:47:53 +02004349 unsigned long long ip, val;
4350 char *ptr;
4351 void *bptr;
Adrian Hunter0631ca32018-11-22 13:29:37 +02004352 int vsize = 0;
Steven Rostedtf7d82352012-04-06 00:47:53 +02004353
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04004354 field = tep->bprint_buf_field;
4355 ip_field = tep->bprint_ip_field;
Steven Rostedtf7d82352012-04-06 00:47:53 +02004356
4357 if (!field) {
Tzvetomir Stoyanov (VMware)af85cd12018-08-08 14:02:50 -04004358 field = tep_find_field(event, "buf");
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -03004359 if (!field) {
Namhyung Kim3388cc32014-03-19 10:22:53 +09004360 do_warning_event(event, "can't find buffer field for binary printk");
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -03004361 return NULL;
4362 }
Tzvetomir Stoyanov (VMware)af85cd12018-08-08 14:02:50 -04004363 ip_field = tep_find_field(event, "ip");
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -03004364 if (!ip_field) {
Namhyung Kim3388cc32014-03-19 10:22:53 +09004365 do_warning_event(event, "can't find ip field for binary printk");
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -03004366 return NULL;
4367 }
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04004368 tep->bprint_buf_field = field;
4369 tep->bprint_ip_field = ip_field;
Steven Rostedtf7d82352012-04-06 00:47:53 +02004370 }
4371
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04004372 ip = tep_read_number(tep, data + ip_field->offset, ip_field->size);
Steven Rostedtf7d82352012-04-06 00:47:53 +02004373
4374 /*
4375 * The first arg is the IP pointer.
4376 */
4377 args = alloc_arg();
Namhyung Kimb1ac7542012-09-20 11:09:19 +09004378 if (!args) {
Namhyung Kim3388cc32014-03-19 10:22:53 +09004379 do_warning_event(event, "%s(%d): not enough memory!",
4380 __func__, __LINE__);
Namhyung Kimb1ac7542012-09-20 11:09:19 +09004381 return NULL;
4382 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02004383 arg = args;
4384 arg->next = NULL;
4385 next = &arg->next;
4386
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04004387 arg->type = TEP_PRINT_ATOM;
Arnaldo Carvalho de Melo0dbca1e2012-09-12 15:39:59 -03004388
4389 if (asprintf(&arg->atom.atom, "%lld", ip) < 0)
4390 goto out_free;
Steven Rostedtf7d82352012-04-06 00:47:53 +02004391
Scott Woodbbedb172015-03-11 22:13:57 -05004392 /* skip the first "%ps: " */
Steven Rostedt (Red Hat)0883d9d2013-11-01 17:53:57 -04004393 for (ptr = fmt + 5, bptr = data + field->offset;
Steven Rostedtf7d82352012-04-06 00:47:53 +02004394 bptr < data + size && *ptr; ptr++) {
4395 int ls = 0;
4396
4397 if (*ptr == '%') {
4398 process_again:
4399 ptr++;
4400 switch (*ptr) {
4401 case '%':
4402 break;
4403 case 'l':
4404 ls++;
4405 goto process_again;
4406 case 'L':
4407 ls = 2;
4408 goto process_again;
4409 case '0' ... '9':
4410 goto process_again;
Steven Rostedtc2e6dc22011-11-15 18:47:48 -05004411 case '.':
4412 goto process_again;
Steven Rostedt (Red Hat)55426292015-03-24 09:57:51 -04004413 case 'z':
4414 case 'Z':
4415 ls = 1;
4416 goto process_again;
Steven Rostedtf7d82352012-04-06 00:47:53 +02004417 case 'p':
4418 ls = 1;
Steven Rostedt (VMware)37db96b2018-01-11 19:47:46 -05004419 if (isalnum(ptr[1])) {
4420 ptr++;
4421 /* Check for special pointers */
4422 switch (*ptr) {
4423 case 's':
4424 case 'S':
Steven Rostedt (VMware)328b82b2019-04-01 12:43:06 -04004425 case 'x':
Steven Rostedt (VMware)37db96b2018-01-11 19:47:46 -05004426 break;
Sakari Ailusb295c3e2019-09-18 16:34:07 +03004427 case 'f':
4428 case 'F':
4429 /*
4430 * Pre-5.5 kernels use %pf and
4431 * %pF for printing symbols
4432 * while kernels since 5.5 use
4433 * %pfw for fwnodes. So check
4434 * %p[fF] isn't followed by 'w'.
4435 */
4436 if (ptr[1] != 'w')
4437 break;
4438 /* fall through */
Steven Rostedt (VMware)37db96b2018-01-11 19:47:46 -05004439 default:
4440 /*
4441 * Older kernels do not process
4442 * dereferenced pointers.
4443 * Only process if the pointer
4444 * value is a printable.
4445 */
4446 if (isprint(*(char *)bptr))
4447 goto process_string;
4448 }
4449 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02004450 /* fall through */
4451 case 'd':
4452 case 'u':
Steven Rostedtf7d82352012-04-06 00:47:53 +02004453 case 'i':
Konstantin Khlebnikov10f64582019-11-10 13:11:01 +03004454 case 'x':
4455 case 'X':
4456 case 'o':
Steven Rostedtc2e6dc22011-11-15 18:47:48 -05004457 switch (ls) {
4458 case 0:
4459 vsize = 4;
4460 break;
4461 case 1:
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04004462 vsize = tep->long_size;
Steven Rostedtc2e6dc22011-11-15 18:47:48 -05004463 break;
4464 case 2:
4465 vsize = 8;
Peter Huewec9bbabe2012-04-24 23:19:40 +02004466 break;
Steven Rostedtc2e6dc22011-11-15 18:47:48 -05004467 default:
4468 vsize = ls; /* ? */
4469 break;
4470 }
4471 /* fall through */
4472 case '*':
4473 if (*ptr == '*')
4474 vsize = 4;
4475
Steven Rostedtf7d82352012-04-06 00:47:53 +02004476 /* the pointers are always 4 bytes aligned */
4477 bptr = (void *)(((unsigned long)bptr + 3) &
4478 ~3);
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04004479 val = tep_read_number(tep, bptr, vsize);
Steven Rostedtc2e6dc22011-11-15 18:47:48 -05004480 bptr += vsize;
Steven Rostedtf7d82352012-04-06 00:47:53 +02004481 arg = alloc_arg();
Namhyung Kimb1ac7542012-09-20 11:09:19 +09004482 if (!arg) {
Namhyung Kim3388cc32014-03-19 10:22:53 +09004483 do_warning_event(event, "%s(%d): not enough memory!",
Namhyung Kimb1ac7542012-09-20 11:09:19 +09004484 __func__, __LINE__);
4485 goto out_free;
4486 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02004487 arg->next = NULL;
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04004488 arg->type = TEP_PRINT_ATOM;
Arnaldo Carvalho de Melo0dbca1e2012-09-12 15:39:59 -03004489 if (asprintf(&arg->atom.atom, "%lld", val) < 0) {
4490 free(arg);
4491 goto out_free;
4492 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02004493 *next = arg;
4494 next = &arg->next;
Steven Rostedtc2e6dc22011-11-15 18:47:48 -05004495 /*
4496 * The '*' case means that an arg is used as the length.
4497 * We need to continue to figure out for what.
4498 */
4499 if (*ptr == '*')
4500 goto process_again;
4501
Steven Rostedtf7d82352012-04-06 00:47:53 +02004502 break;
4503 case 's':
Steven Rostedt (VMware)37db96b2018-01-11 19:47:46 -05004504 process_string:
Steven Rostedtf7d82352012-04-06 00:47:53 +02004505 arg = alloc_arg();
Namhyung Kimb1ac7542012-09-20 11:09:19 +09004506 if (!arg) {
Namhyung Kim3388cc32014-03-19 10:22:53 +09004507 do_warning_event(event, "%s(%d): not enough memory!",
Namhyung Kimb1ac7542012-09-20 11:09:19 +09004508 __func__, __LINE__);
4509 goto out_free;
4510 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02004511 arg->next = NULL;
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04004512 arg->type = TEP_PRINT_BSTRING;
Steven Rostedtf7d82352012-04-06 00:47:53 +02004513 arg->string.string = strdup(bptr);
Namhyung Kimca638582012-04-09 11:54:31 +09004514 if (!arg->string.string)
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -03004515 goto out_free;
Steven Rostedtf7d82352012-04-06 00:47:53 +02004516 bptr += strlen(bptr) + 1;
4517 *next = arg;
4518 next = &arg->next;
4519 default:
4520 break;
4521 }
4522 }
4523 }
4524
4525 return args;
Steven Rostedtf7d82352012-04-06 00:47:53 +02004526
Arnaldo Carvalho de Melo0dbca1e2012-09-12 15:39:59 -03004527out_free:
4528 free_args(args);
4529 return NULL;
Steven Rostedtf7d82352012-04-06 00:47:53 +02004530}
4531
4532static char *
Irina Tirdea1d037ca2012-09-11 01:15:03 +03004533get_bprint_format(void *data, int size __maybe_unused,
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05004534 struct tep_event *event)
Steven Rostedtf7d82352012-04-06 00:47:53 +02004535{
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04004536 struct tep_handle *tep = event->tep;
Steven Rostedtf7d82352012-04-06 00:47:53 +02004537 unsigned long long addr;
Tzvetomir Stoyanov (VMware)2c92f982018-09-19 14:56:45 -04004538 struct tep_format_field *field;
Steven Rostedtf7d82352012-04-06 00:47:53 +02004539 struct printk_map *printk;
4540 char *format;
Steven Rostedtf7d82352012-04-06 00:47:53 +02004541
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04004542 field = tep->bprint_fmt_field;
Steven Rostedtf7d82352012-04-06 00:47:53 +02004543
4544 if (!field) {
Tzvetomir Stoyanov (VMware)af85cd12018-08-08 14:02:50 -04004545 field = tep_find_field(event, "fmt");
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -03004546 if (!field) {
Namhyung Kim3388cc32014-03-19 10:22:53 +09004547 do_warning_event(event, "can't find format field for binary printk");
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -03004548 return NULL;
4549 }
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04004550 tep->bprint_fmt_field = field;
Steven Rostedtf7d82352012-04-06 00:47:53 +02004551 }
4552
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04004553 addr = tep_read_number(tep, data + field->offset, field->size);
Steven Rostedtf7d82352012-04-06 00:47:53 +02004554
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04004555 printk = find_printk(tep, addr);
Steven Rostedtf7d82352012-04-06 00:47:53 +02004556 if (!printk) {
Sakari Ailusb295c3e2019-09-18 16:34:07 +03004557 if (asprintf(&format, "%%ps: (NO FORMAT FOUND at %llx)\n", addr) < 0)
Arnaldo Carvalho de Melo0dbca1e2012-09-12 15:39:59 -03004558 return NULL;
Steven Rostedtf7d82352012-04-06 00:47:53 +02004559 return format;
4560 }
4561
Sakari Ailusb295c3e2019-09-18 16:34:07 +03004562 if (asprintf(&format, "%s: %s", "%ps", printk->printk) < 0)
Arnaldo Carvalho de Melo0dbca1e2012-09-12 15:39:59 -03004563 return NULL;
Steven Rostedtf7d82352012-04-06 00:47:53 +02004564
4565 return format;
4566}
4567
Tzvetomir Stoyanov (VMware)487ae1f2020-07-02 14:53:50 -04004568static int print_mac_arg(struct trace_seq *s, const char *format,
4569 void *data, int size, struct tep_event *event,
4570 struct tep_print_arg *arg)
Steven Rostedtf7d82352012-04-06 00:47:53 +02004571{
Arnaldo Carvalho de Melo27f94d52012-11-09 17:40:47 -03004572 const char *fmt = "%.2x:%.2x:%.2x:%.2x:%.2x:%.2x";
Tzvetomir Stoyanov (VMware)487ae1f2020-07-02 14:53:50 -04004573 bool reverse = false;
4574 unsigned char *buf;
4575 int ret = 0;
Steven Rostedtf7d82352012-04-06 00:47:53 +02004576
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04004577 if (arg->type == TEP_PRINT_FUNC) {
Steven Rostedtf7d82352012-04-06 00:47:53 +02004578 process_defined_func(s, data, size, event, arg);
Tzvetomir Stoyanov (VMware)487ae1f2020-07-02 14:53:50 -04004579 return 0;
Steven Rostedtf7d82352012-04-06 00:47:53 +02004580 }
4581
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04004582 if (arg->type != TEP_PRINT_FIELD) {
Steven Rostedtf7d82352012-04-06 00:47:53 +02004583 trace_seq_printf(s, "ARG TYPE NOT FIELD BUT %d",
4584 arg->type);
Tzvetomir Stoyanov (VMware)487ae1f2020-07-02 14:53:50 -04004585 return 0;
Steven Rostedtf7d82352012-04-06 00:47:53 +02004586 }
4587
Tzvetomir Stoyanov (VMware)487ae1f2020-07-02 14:53:50 -04004588 if (format[0] == 'm') {
Steven Rostedtf7d82352012-04-06 00:47:53 +02004589 fmt = "%.2x%.2x%.2x%.2x%.2x%.2x";
Tzvetomir Stoyanov (VMware)487ae1f2020-07-02 14:53:50 -04004590 } else if (format[0] == 'M' && format[1] == 'F') {
4591 fmt = "%.2x-%.2x-%.2x-%.2x-%.2x-%.2x";
4592 ret++;
4593 }
4594 if (format[1] == 'R') {
4595 reverse = true;
4596 ret++;
4597 }
4598
Steven Rostedtf7d82352012-04-06 00:47:53 +02004599 if (!arg->field.field) {
4600 arg->field.field =
Tzvetomir Stoyanov (VMware)af85cd12018-08-08 14:02:50 -04004601 tep_find_any_field(event, arg->field.name);
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -03004602 if (!arg->field.field) {
Namhyung Kim3388cc32014-03-19 10:22:53 +09004603 do_warning_event(event, "%s: field %s not found",
4604 __func__, arg->field.name);
Tzvetomir Stoyanov (VMware)487ae1f2020-07-02 14:53:50 -04004605 return ret;
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -03004606 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02004607 }
4608 if (arg->field.field->size != 6) {
4609 trace_seq_printf(s, "INVALIDMAC");
Tzvetomir Stoyanov (VMware)487ae1f2020-07-02 14:53:50 -04004610 return ret;
Steven Rostedtf7d82352012-04-06 00:47:53 +02004611 }
Tzvetomir Stoyanov (VMware)487ae1f2020-07-02 14:53:50 -04004612
Steven Rostedtf7d82352012-04-06 00:47:53 +02004613 buf = data + arg->field.field->offset;
Tzvetomir Stoyanov (VMware)487ae1f2020-07-02 14:53:50 -04004614 if (reverse)
4615 trace_seq_printf(s, fmt, buf[5], buf[4], buf[3], buf[2], buf[1], buf[0]);
4616 else
4617 trace_seq_printf(s, fmt, buf[0], buf[1], buf[2], buf[3], buf[4], buf[5]);
4618
4619 return ret;
Steven Rostedtf7d82352012-04-06 00:47:53 +02004620}
4621
Tzvetomir Stoyanov (VMware)487ae1f2020-07-02 14:53:50 -04004622static int parse_ip4_print_args(struct tep_handle *tep,
4623 const char *ptr, bool *reverse)
4624{
4625 int ret = 0;
4626
4627 *reverse = false;
4628
4629 /* hnbl */
4630 switch (*ptr) {
4631 case 'h':
4632 if (tep->file_bigendian)
4633 *reverse = false;
4634 else
4635 *reverse = true;
4636 ret++;
Tzvetomir Stoyanov (VMware)d339a192020-07-21 21:16:48 -04004637 break;
Tzvetomir Stoyanov (VMware)487ae1f2020-07-02 14:53:50 -04004638 case 'l':
4639 *reverse = true;
4640 ret++;
Tzvetomir Stoyanov (VMware)d339a192020-07-21 21:16:48 -04004641 break;
Tzvetomir Stoyanov (VMware)487ae1f2020-07-02 14:53:50 -04004642 case 'n':
4643 case 'b':
4644 ret++;
4645 /* fall through */
4646 default:
4647 *reverse = false;
4648 break;
4649 }
4650
4651 return ret;
4652}
4653
4654static void print_ip4_addr(struct trace_seq *s, char i, bool reverse, unsigned char *buf)
David Ahern3d199b52014-12-18 19:11:11 -07004655{
4656 const char *fmt;
4657
4658 if (i == 'i')
4659 fmt = "%03d.%03d.%03d.%03d";
4660 else
4661 fmt = "%d.%d.%d.%d";
4662
Tzvetomir Stoyanov (VMware)487ae1f2020-07-02 14:53:50 -04004663 if (reverse)
4664 trace_seq_printf(s, fmt, buf[3], buf[2], buf[1], buf[0]);
4665 else
4666 trace_seq_printf(s, fmt, buf[0], buf[1], buf[2], buf[3]);
4667
David Ahern3d199b52014-12-18 19:11:11 -07004668}
4669
4670static inline bool ipv6_addr_v4mapped(const struct in6_addr *a)
4671{
4672 return ((unsigned long)(a->s6_addr32[0] | a->s6_addr32[1]) |
4673 (unsigned long)(a->s6_addr32[2] ^ htonl(0x0000ffff))) == 0UL;
4674}
4675
4676static inline bool ipv6_addr_is_isatap(const struct in6_addr *addr)
4677{
4678 return (addr->s6_addr32[2] | htonl(0x02000000)) == htonl(0x02005EFE);
4679}
4680
4681static void print_ip6c_addr(struct trace_seq *s, unsigned char *addr)
4682{
4683 int i, j, range;
4684 unsigned char zerolength[8];
4685 int longest = 1;
4686 int colonpos = -1;
4687 uint16_t word;
4688 uint8_t hi, lo;
4689 bool needcolon = false;
4690 bool useIPv4;
4691 struct in6_addr in6;
4692
4693 memcpy(&in6, addr, sizeof(struct in6_addr));
4694
4695 useIPv4 = ipv6_addr_v4mapped(&in6) || ipv6_addr_is_isatap(&in6);
4696
4697 memset(zerolength, 0, sizeof(zerolength));
4698
4699 if (useIPv4)
4700 range = 6;
4701 else
4702 range = 8;
4703
4704 /* find position of longest 0 run */
4705 for (i = 0; i < range; i++) {
4706 for (j = i; j < range; j++) {
4707 if (in6.s6_addr16[j] != 0)
4708 break;
4709 zerolength[i]++;
4710 }
4711 }
4712 for (i = 0; i < range; i++) {
4713 if (zerolength[i] > longest) {
4714 longest = zerolength[i];
4715 colonpos = i;
4716 }
4717 }
4718 if (longest == 1) /* don't compress a single 0 */
4719 colonpos = -1;
4720
4721 /* emit address */
4722 for (i = 0; i < range; i++) {
4723 if (i == colonpos) {
4724 if (needcolon || i == 0)
4725 trace_seq_printf(s, ":");
4726 trace_seq_printf(s, ":");
4727 needcolon = false;
4728 i += longest - 1;
4729 continue;
4730 }
4731 if (needcolon) {
4732 trace_seq_printf(s, ":");
4733 needcolon = false;
4734 }
4735 /* hex u16 without leading 0s */
4736 word = ntohs(in6.s6_addr16[i]);
4737 hi = word >> 8;
4738 lo = word & 0xff;
4739 if (hi)
4740 trace_seq_printf(s, "%x%02x", hi, lo);
4741 else
4742 trace_seq_printf(s, "%x", lo);
4743
4744 needcolon = true;
4745 }
4746
4747 if (useIPv4) {
4748 if (needcolon)
4749 trace_seq_printf(s, ":");
Tzvetomir Stoyanov (VMware)487ae1f2020-07-02 14:53:50 -04004750 print_ip4_addr(s, 'I', false, &in6.s6_addr[12]);
David Ahern3d199b52014-12-18 19:11:11 -07004751 }
4752
4753 return;
4754}
4755
4756static void print_ip6_addr(struct trace_seq *s, char i, unsigned char *buf)
4757{
4758 int j;
4759
4760 for (j = 0; j < 16; j += 2) {
4761 trace_seq_printf(s, "%02x%02x", buf[j], buf[j+1]);
4762 if (i == 'I' && j < 14)
4763 trace_seq_printf(s, ":");
4764 }
4765}
4766
4767/*
4768 * %pi4 print an IPv4 address with leading zeros
4769 * %pI4 print an IPv4 address without leading zeros
4770 * %pi6 print an IPv6 address without colons
4771 * %pI6 print an IPv6 address with colons
4772 * %pI6c print an IPv6 address in compressed form with colons
4773 * %pISpc print an IP address based on sockaddr; p adds port.
4774 */
4775static int print_ipv4_arg(struct trace_seq *s, const char *ptr, char i,
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05004776 void *data, int size, struct tep_event *event,
Tzvetomir Stoyanov (VMware)5647f942018-09-19 14:56:49 -04004777 struct tep_print_arg *arg)
David Ahern3d199b52014-12-18 19:11:11 -07004778{
Tzvetomir Stoyanov (VMware)487ae1f2020-07-02 14:53:50 -04004779 bool reverse = false;
David Ahern3d199b52014-12-18 19:11:11 -07004780 unsigned char *buf;
Tzvetomir Stoyanov (VMware)487ae1f2020-07-02 14:53:50 -04004781 int ret;
4782
4783 ret = parse_ip4_print_args(event->tep, ptr, &reverse);
David Ahern3d199b52014-12-18 19:11:11 -07004784
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04004785 if (arg->type == TEP_PRINT_FUNC) {
David Ahern3d199b52014-12-18 19:11:11 -07004786 process_defined_func(s, data, size, event, arg);
Tzvetomir Stoyanov (VMware)487ae1f2020-07-02 14:53:50 -04004787 return ret;
David Ahern3d199b52014-12-18 19:11:11 -07004788 }
4789
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04004790 if (arg->type != TEP_PRINT_FIELD) {
David Ahern3d199b52014-12-18 19:11:11 -07004791 trace_seq_printf(s, "ARG TYPE NOT FIELD BUT %d", arg->type);
Tzvetomir Stoyanov (VMware)487ae1f2020-07-02 14:53:50 -04004792 return ret;
David Ahern3d199b52014-12-18 19:11:11 -07004793 }
4794
4795 if (!arg->field.field) {
4796 arg->field.field =
Tzvetomir Stoyanov (VMware)af85cd12018-08-08 14:02:50 -04004797 tep_find_any_field(event, arg->field.name);
David Ahern3d199b52014-12-18 19:11:11 -07004798 if (!arg->field.field) {
4799 do_warning("%s: field %s not found",
4800 __func__, arg->field.name);
Tzvetomir Stoyanov (VMware)487ae1f2020-07-02 14:53:50 -04004801 return ret;
David Ahern3d199b52014-12-18 19:11:11 -07004802 }
4803 }
4804
4805 buf = data + arg->field.field->offset;
4806
4807 if (arg->field.field->size != 4) {
4808 trace_seq_printf(s, "INVALIDIPv4");
Tzvetomir Stoyanov (VMware)487ae1f2020-07-02 14:53:50 -04004809 return ret;
David Ahern3d199b52014-12-18 19:11:11 -07004810 }
David Ahern3d199b52014-12-18 19:11:11 -07004811
Tzvetomir Stoyanov (VMware)487ae1f2020-07-02 14:53:50 -04004812 print_ip4_addr(s, i, reverse, buf);
4813 return ret;
4814
David Ahern3d199b52014-12-18 19:11:11 -07004815}
4816
4817static int print_ipv6_arg(struct trace_seq *s, const char *ptr, char i,
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05004818 void *data, int size, struct tep_event *event,
Tzvetomir Stoyanov (VMware)5647f942018-09-19 14:56:49 -04004819 struct tep_print_arg *arg)
David Ahern3d199b52014-12-18 19:11:11 -07004820{
4821 char have_c = 0;
4822 unsigned char *buf;
4823 int rc = 0;
4824
4825 /* pI6c */
4826 if (i == 'I' && *ptr == 'c') {
4827 have_c = 1;
4828 ptr++;
4829 rc++;
4830 }
4831
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04004832 if (arg->type == TEP_PRINT_FUNC) {
David Ahern3d199b52014-12-18 19:11:11 -07004833 process_defined_func(s, data, size, event, arg);
4834 return rc;
4835 }
4836
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04004837 if (arg->type != TEP_PRINT_FIELD) {
David Ahern3d199b52014-12-18 19:11:11 -07004838 trace_seq_printf(s, "ARG TYPE NOT FIELD BUT %d", arg->type);
4839 return rc;
4840 }
4841
4842 if (!arg->field.field) {
4843 arg->field.field =
Tzvetomir Stoyanov (VMware)af85cd12018-08-08 14:02:50 -04004844 tep_find_any_field(event, arg->field.name);
David Ahern3d199b52014-12-18 19:11:11 -07004845 if (!arg->field.field) {
4846 do_warning("%s: field %s not found",
4847 __func__, arg->field.name);
4848 return rc;
4849 }
4850 }
4851
4852 buf = data + arg->field.field->offset;
4853
4854 if (arg->field.field->size != 16) {
4855 trace_seq_printf(s, "INVALIDIPv6");
4856 return rc;
4857 }
4858
4859 if (have_c)
4860 print_ip6c_addr(s, buf);
4861 else
4862 print_ip6_addr(s, i, buf);
4863
4864 return rc;
4865}
4866
4867static int print_ipsa_arg(struct trace_seq *s, const char *ptr, char i,
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05004868 void *data, int size, struct tep_event *event,
Tzvetomir Stoyanov (VMware)5647f942018-09-19 14:56:49 -04004869 struct tep_print_arg *arg)
David Ahern3d199b52014-12-18 19:11:11 -07004870{
4871 char have_c = 0, have_p = 0;
4872 unsigned char *buf;
4873 struct sockaddr_storage *sa;
Tzvetomir Stoyanov (VMware)487ae1f2020-07-02 14:53:50 -04004874 bool reverse = false;
David Ahern3d199b52014-12-18 19:11:11 -07004875 int rc = 0;
Tzvetomir Stoyanov (VMware)487ae1f2020-07-02 14:53:50 -04004876 int ret;
David Ahern3d199b52014-12-18 19:11:11 -07004877
4878 /* pISpc */
4879 if (i == 'I') {
4880 if (*ptr == 'p') {
4881 have_p = 1;
4882 ptr++;
4883 rc++;
4884 }
4885 if (*ptr == 'c') {
4886 have_c = 1;
4887 ptr++;
4888 rc++;
4889 }
4890 }
Tzvetomir Stoyanov (VMware)487ae1f2020-07-02 14:53:50 -04004891 ret = parse_ip4_print_args(event->tep, ptr, &reverse);
4892 ptr += ret;
4893 rc += ret;
David Ahern3d199b52014-12-18 19:11:11 -07004894
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04004895 if (arg->type == TEP_PRINT_FUNC) {
David Ahern3d199b52014-12-18 19:11:11 -07004896 process_defined_func(s, data, size, event, arg);
4897 return rc;
4898 }
4899
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04004900 if (arg->type != TEP_PRINT_FIELD) {
David Ahern3d199b52014-12-18 19:11:11 -07004901 trace_seq_printf(s, "ARG TYPE NOT FIELD BUT %d", arg->type);
4902 return rc;
4903 }
4904
4905 if (!arg->field.field) {
4906 arg->field.field =
Tzvetomir Stoyanov (VMware)af85cd12018-08-08 14:02:50 -04004907 tep_find_any_field(event, arg->field.name);
David Ahern3d199b52014-12-18 19:11:11 -07004908 if (!arg->field.field) {
4909 do_warning("%s: field %s not found",
4910 __func__, arg->field.name);
4911 return rc;
4912 }
4913 }
4914
4915 sa = (struct sockaddr_storage *) (data + arg->field.field->offset);
4916
4917 if (sa->ss_family == AF_INET) {
4918 struct sockaddr_in *sa4 = (struct sockaddr_in *) sa;
4919
4920 if (arg->field.field->size < sizeof(struct sockaddr_in)) {
4921 trace_seq_printf(s, "INVALIDIPv4");
4922 return rc;
4923 }
4924
Tzvetomir Stoyanov (VMware)487ae1f2020-07-02 14:53:50 -04004925 print_ip4_addr(s, i, reverse, (unsigned char *) &sa4->sin_addr);
David Ahern3d199b52014-12-18 19:11:11 -07004926 if (have_p)
4927 trace_seq_printf(s, ":%d", ntohs(sa4->sin_port));
4928
4929
4930 } else if (sa->ss_family == AF_INET6) {
4931 struct sockaddr_in6 *sa6 = (struct sockaddr_in6 *) sa;
4932
4933 if (arg->field.field->size < sizeof(struct sockaddr_in6)) {
4934 trace_seq_printf(s, "INVALIDIPv6");
4935 return rc;
4936 }
4937
4938 if (have_p)
4939 trace_seq_printf(s, "[");
4940
4941 buf = (unsigned char *) &sa6->sin6_addr;
4942 if (have_c)
4943 print_ip6c_addr(s, buf);
4944 else
4945 print_ip6_addr(s, i, buf);
4946
4947 if (have_p)
4948 trace_seq_printf(s, "]:%d", ntohs(sa6->sin6_port));
4949 }
4950
4951 return rc;
4952}
4953
4954static int print_ip_arg(struct trace_seq *s, const char *ptr,
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05004955 void *data, int size, struct tep_event *event,
Tzvetomir Stoyanov (VMware)5647f942018-09-19 14:56:49 -04004956 struct tep_print_arg *arg)
David Ahern3d199b52014-12-18 19:11:11 -07004957{
4958 char i = *ptr; /* 'i' or 'I' */
Tzvetomir Stoyanov (VMware)487ae1f2020-07-02 14:53:50 -04004959 int rc = 1;
David Ahern3d199b52014-12-18 19:11:11 -07004960
Tzvetomir Stoyanov (VMware)487ae1f2020-07-02 14:53:50 -04004961 /* IP version */
David Ahern3d199b52014-12-18 19:11:11 -07004962 ptr++;
David Ahern3d199b52014-12-18 19:11:11 -07004963
Tzvetomir Stoyanov (VMware)487ae1f2020-07-02 14:53:50 -04004964 switch (*ptr) {
David Ahern3d199b52014-12-18 19:11:11 -07004965 case '4':
Tzvetomir Stoyanov (VMware)487ae1f2020-07-02 14:53:50 -04004966 rc += print_ipv4_arg(s, ptr + 1, i, data, size, event, arg);
David Ahern3d199b52014-12-18 19:11:11 -07004967 break;
4968 case '6':
Tzvetomir Stoyanov (VMware)487ae1f2020-07-02 14:53:50 -04004969 rc += print_ipv6_arg(s, ptr + 1, i, data, size, event, arg);
David Ahern3d199b52014-12-18 19:11:11 -07004970 break;
4971 case 'S':
Tzvetomir Stoyanov (VMware)487ae1f2020-07-02 14:53:50 -04004972 rc += print_ipsa_arg(s, ptr + 1, i, data, size, event, arg);
David Ahern3d199b52014-12-18 19:11:11 -07004973 break;
4974 default:
4975 return 0;
4976 }
4977
4978 return rc;
4979}
4980
Tzvetomir Stoyanov (VMware)487ae1f2020-07-02 14:53:50 -04004981static const int guid_index[16] = {3, 2, 1, 0, 5, 4, 7, 6, 8, 9, 10, 11, 12, 13, 14, 15};
4982static const int uuid_index[16] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15};
4983
4984static int print_uuid_arg(struct trace_seq *s, const char *ptr,
4985 void *data, int size, struct tep_event *event,
4986 struct tep_print_arg *arg)
4987{
4988 const int *index = uuid_index;
4989 char *format = "%02x";
4990 int ret = 0;
4991 char *buf;
4992 int i;
4993
4994 switch (*(ptr + 1)) {
4995 case 'L':
4996 format = "%02X";
4997 /* fall through */
4998 case 'l':
4999 index = guid_index;
5000 ret++;
5001 break;
5002 case 'B':
5003 format = "%02X";
5004 /* fall through */
5005 case 'b':
5006 ret++;
5007 break;
5008 }
5009
5010 if (arg->type == TEP_PRINT_FUNC) {
5011 process_defined_func(s, data, size, event, arg);
5012 return ret;
5013 }
5014
5015 if (arg->type != TEP_PRINT_FIELD) {
5016 trace_seq_printf(s, "ARG TYPE NOT FIELD BUT %d", arg->type);
5017 return ret;
5018 }
5019
5020 if (!arg->field.field) {
5021 arg->field.field =
5022 tep_find_any_field(event, arg->field.name);
5023 if (!arg->field.field) {
5024 do_warning("%s: field %s not found",
5025 __func__, arg->field.name);
5026 return ret;
5027 }
5028 }
5029
5030 if (arg->field.field->size != 16) {
5031 trace_seq_printf(s, "INVALIDUUID");
5032 return ret;
5033 }
5034
5035 buf = data + arg->field.field->offset;
5036
5037 for (i = 0; i < 16; i++) {
5038 trace_seq_printf(s, format, buf[index[i]] & 0xff);
5039 switch (i) {
5040 case 3:
5041 case 5:
5042 case 7:
5043 case 9:
5044 trace_seq_printf(s, "-");
5045 break;
5046 }
5047 }
5048
5049 return ret;
5050}
5051
5052static int print_raw_buff_arg(struct trace_seq *s, const char *ptr,
5053 void *data, int size, struct tep_event *event,
5054 struct tep_print_arg *arg, int print_len)
5055{
5056 int plen = print_len;
5057 char *delim = " ";
5058 int ret = 0;
5059 char *buf;
5060 int i;
5061 unsigned long offset;
5062 int arr_len;
5063
5064 switch (*(ptr + 1)) {
5065 case 'C':
5066 delim = ":";
5067 ret++;
5068 break;
5069 case 'D':
5070 delim = "-";
5071 ret++;
5072 break;
5073 case 'N':
5074 delim = "";
5075 ret++;
5076 break;
5077 }
5078
5079 if (arg->type == TEP_PRINT_FUNC) {
5080 process_defined_func(s, data, size, event, arg);
5081 return ret;
5082 }
5083
5084 if (arg->type != TEP_PRINT_DYNAMIC_ARRAY) {
5085 trace_seq_printf(s, "ARG TYPE NOT FIELD BUT %d", arg->type);
5086 return ret;
5087 }
5088
5089 offset = tep_read_number(event->tep,
5090 data + arg->dynarray.field->offset,
5091 arg->dynarray.field->size);
5092 arr_len = (unsigned long long)(offset >> 16);
5093 buf = data + (offset & 0xffff);
5094
5095 if (arr_len < plen)
5096 plen = arr_len;
5097
5098 if (plen < 1)
5099 return ret;
5100
5101 trace_seq_printf(s, "%02x", buf[0] & 0xff);
5102 for (i = 1; i < plen; i++)
5103 trace_seq_printf(s, "%s%02x", delim, buf[i] & 0xff);
5104
5105 return ret;
5106}
5107
Namhyung Kim600da3c2012-06-22 17:10:15 +09005108static int is_printable_array(char *p, unsigned int len)
5109{
5110 unsigned int i;
5111
5112 for (i = 0; i < len && p[i]; i++)
Steven Rostedt (Red Hat)5efb9fb2013-11-01 17:53:58 -04005113 if (!isprint(p[i]) && !isspace(p[i]))
Namhyung Kim600da3c2012-06-22 17:10:15 +09005114 return 0;
5115 return 1;
5116}
5117
Tzvetomir Stoyanov (VMware)6a48dc22018-08-08 14:02:52 -04005118void tep_print_field(struct trace_seq *s, void *data,
Tzvetomir Stoyanov (VMware)2c92f982018-09-19 14:56:45 -04005119 struct tep_format_field *field)
Steven Rostedtf7d82352012-04-06 00:47:53 +02005120{
Steven Rostedtf7d82352012-04-06 00:47:53 +02005121 unsigned long long val;
5122 unsigned int offset, len, i;
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04005123 struct tep_handle *tep = field->event->tep;
Namhyung Kimbe45d402015-12-23 22:08:41 +09005124
Tzvetomir Stoyanov (VMware)bb39ccb2018-09-19 14:56:46 -04005125 if (field->flags & TEP_FIELD_IS_ARRAY) {
Namhyung Kimbe45d402015-12-23 22:08:41 +09005126 offset = field->offset;
5127 len = field->size;
Tzvetomir Stoyanov (VMware)bb39ccb2018-09-19 14:56:46 -04005128 if (field->flags & TEP_FIELD_IS_DYNAMIC) {
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04005129 val = tep_read_number(tep, data + offset, len);
Namhyung Kimbe45d402015-12-23 22:08:41 +09005130 offset = val;
5131 len = offset >> 16;
5132 offset &= 0xffff;
5133 }
Tzvetomir Stoyanov (VMware)bb39ccb2018-09-19 14:56:46 -04005134 if (field->flags & TEP_FIELD_IS_STRING &&
Namhyung Kimbe45d402015-12-23 22:08:41 +09005135 is_printable_array(data + offset, len)) {
5136 trace_seq_printf(s, "%s", (char *)data + offset);
5137 } else {
5138 trace_seq_puts(s, "ARRAY[");
5139 for (i = 0; i < len; i++) {
5140 if (i)
5141 trace_seq_puts(s, ", ");
5142 trace_seq_printf(s, "%02x",
5143 *((unsigned char *)data + offset + i));
5144 }
5145 trace_seq_putc(s, ']');
Tzvetomir Stoyanov (VMware)bb39ccb2018-09-19 14:56:46 -04005146 field->flags &= ~TEP_FIELD_IS_STRING;
Namhyung Kimbe45d402015-12-23 22:08:41 +09005147 }
5148 } else {
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04005149 val = tep_read_number(tep, data + field->offset,
Tzvetomir Stoyanov (VMware)59c1bae2018-08-08 14:02:53 -04005150 field->size);
Tzvetomir Stoyanov (VMware)bb39ccb2018-09-19 14:56:46 -04005151 if (field->flags & TEP_FIELD_IS_POINTER) {
Namhyung Kimbe45d402015-12-23 22:08:41 +09005152 trace_seq_printf(s, "0x%llx", val);
Tzvetomir Stoyanov (VMware)bb39ccb2018-09-19 14:56:46 -04005153 } else if (field->flags & TEP_FIELD_IS_SIGNED) {
Namhyung Kimbe45d402015-12-23 22:08:41 +09005154 switch (field->size) {
5155 case 4:
5156 /*
5157 * If field is long then print it in hex.
5158 * A long usually stores pointers.
5159 */
Tzvetomir Stoyanov (VMware)bb39ccb2018-09-19 14:56:46 -04005160 if (field->flags & TEP_FIELD_IS_LONG)
Namhyung Kimbe45d402015-12-23 22:08:41 +09005161 trace_seq_printf(s, "0x%x", (int)val);
5162 else
5163 trace_seq_printf(s, "%d", (int)val);
5164 break;
5165 case 2:
5166 trace_seq_printf(s, "%2d", (short)val);
5167 break;
5168 case 1:
5169 trace_seq_printf(s, "%1d", (char)val);
5170 break;
5171 default:
5172 trace_seq_printf(s, "%lld", val);
5173 }
5174 } else {
Tzvetomir Stoyanov (VMware)bb39ccb2018-09-19 14:56:46 -04005175 if (field->flags & TEP_FIELD_IS_LONG)
Namhyung Kimbe45d402015-12-23 22:08:41 +09005176 trace_seq_printf(s, "0x%llx", val);
5177 else
5178 trace_seq_printf(s, "%llu", val);
5179 }
5180 }
5181}
5182
Tzvetomir Stoyanov (VMware)6a48dc22018-08-08 14:02:52 -04005183void tep_print_fields(struct trace_seq *s, void *data,
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05005184 int size __maybe_unused, struct tep_event *event)
Namhyung Kimbe45d402015-12-23 22:08:41 +09005185{
Tzvetomir Stoyanov (VMware)2c92f982018-09-19 14:56:45 -04005186 struct tep_format_field *field;
Steven Rostedtf7d82352012-04-06 00:47:53 +02005187
5188 field = event->format.fields;
5189 while (field) {
5190 trace_seq_printf(s, " %s=", field->name);
Tzvetomir Stoyanov (VMware)6a48dc22018-08-08 14:02:52 -04005191 tep_print_field(s, data, field);
Steven Rostedtf7d82352012-04-06 00:47:53 +02005192 field = field->next;
5193 }
5194}
5195
Tzvetomir Stoyanov (VMware)487ae1f2020-07-02 14:53:50 -04005196static int print_function(struct trace_seq *s, const char *format,
5197 void *data, int size, struct tep_event *event,
5198 struct tep_print_arg *arg)
5199{
5200 struct func_map *func;
5201 unsigned long long val;
5202
5203 val = eval_num_arg(data, size, event, arg);
5204 func = find_func(event->tep, val);
5205 if (func) {
5206 trace_seq_puts(s, func->func);
5207 if (*format == 'F' || *format == 'S')
5208 trace_seq_printf(s, "+0x%llx", val - func->addr);
5209 } else {
5210 if (event->tep->long_size == 4)
5211 trace_seq_printf(s, "0x%lx", (long)val);
5212 else
5213 trace_seq_printf(s, "0x%llx", (long long)val);
5214 }
5215
5216 return 0;
5217}
5218
Tzvetomir Stoyanov (VMware)e7a90882020-07-02 14:53:51 -04005219static int print_arg_pointer(struct trace_seq *s, const char *format, int plen,
5220 void *data, int size,
5221 struct tep_event *event, struct tep_print_arg *arg)
Tzvetomir Stoyanov (VMware)487ae1f2020-07-02 14:53:50 -04005222{
5223 unsigned long long val;
5224 int ret = 1;
5225
Tzvetomir Stoyanov (VMware)e7a90882020-07-02 14:53:51 -04005226 if (arg->type == TEP_PRINT_BSTRING) {
5227 trace_seq_puts(s, arg->string.string);
5228 return 0;
5229 }
5230 while (*format) {
5231 if (*format == 'p') {
5232 format++;
5233 break;
5234 }
5235 format++;
5236 }
5237
Tzvetomir Stoyanov (VMware)487ae1f2020-07-02 14:53:50 -04005238 switch (*format) {
5239 case 'F':
5240 case 'f':
5241 case 'S':
5242 case 's':
5243 ret += print_function(s, format, data, size, event, arg);
5244 break;
5245 case 'M':
5246 case 'm':
5247 ret += print_mac_arg(s, format, data, size, event, arg);
5248 break;
5249 case 'I':
5250 case 'i':
5251 ret += print_ip_arg(s, format, data, size, event, arg);
5252 break;
5253 case 'U':
5254 ret += print_uuid_arg(s, format, data, size, event, arg);
5255 break;
5256 case 'h':
5257 ret += print_raw_buff_arg(s, format, data, size, event, arg, plen);
5258 break;
5259 default:
5260 ret = 0;
5261 val = eval_num_arg(data, size, event, arg);
Tzvetomir Stoyanov (VMware)10a6f5c2020-09-02 13:31:21 +03005262 trace_seq_printf(s, "%p", (void *)(intptr_t)val);
Tzvetomir Stoyanov (VMware)487ae1f2020-07-02 14:53:50 -04005263 break;
5264 }
5265
5266 return ret;
5267
5268}
5269
Tzvetomir Stoyanov (VMware)e7a90882020-07-02 14:53:51 -04005270static int print_arg_number(struct trace_seq *s, const char *format, int plen,
5271 void *data, int size, int ls,
5272 struct tep_event *event, struct tep_print_arg *arg)
5273{
5274 unsigned long long val;
5275
5276 val = eval_num_arg(data, size, event, arg);
5277
5278 switch (ls) {
5279 case -2:
5280 if (plen >= 0)
5281 trace_seq_printf(s, format, plen, (char)val);
5282 else
5283 trace_seq_printf(s, format, (char)val);
5284 break;
5285 case -1:
5286 if (plen >= 0)
5287 trace_seq_printf(s, format, plen, (short)val);
5288 else
5289 trace_seq_printf(s, format, (short)val);
5290 break;
5291 case 0:
5292 if (plen >= 0)
5293 trace_seq_printf(s, format, plen, (int)val);
5294 else
5295 trace_seq_printf(s, format, (int)val);
5296 break;
5297 case 1:
5298 if (plen >= 0)
5299 trace_seq_printf(s, format, plen, (long)val);
5300 else
5301 trace_seq_printf(s, format, (long)val);
5302 break;
5303 case 2:
5304 if (plen >= 0)
5305 trace_seq_printf(s, format, plen, (long long)val);
5306 else
5307 trace_seq_printf(s, format, (long long)val);
5308 break;
5309 default:
5310 do_warning_event(event, "bad count (%d)", ls);
5311 event->flags |= TEP_EVENT_FL_FAILED;
5312 }
5313 return 0;
5314}
5315
5316
5317static void print_arg_string(struct trace_seq *s, const char *format, int plen,
5318 void *data, int size,
5319 struct tep_event *event, struct tep_print_arg *arg)
5320{
5321 struct trace_seq p;
5322
5323 /* Use helper trace_seq */
5324 trace_seq_init(&p);
5325 print_str_arg(&p, data, size, event,
5326 format, plen, arg);
5327 trace_seq_terminate(&p);
5328 trace_seq_puts(s, p.buffer);
5329 trace_seq_destroy(&p);
5330}
5331
5332static int parse_arg_format_pointer(const char *format)
5333{
5334 int ret = 0;
5335 int index;
5336 int loop;
5337
5338 switch (*format) {
5339 case 'F':
5340 case 'S':
5341 case 'f':
5342 case 's':
5343 ret++;
5344 break;
5345 case 'M':
5346 case 'm':
5347 /* [mM]R , [mM]F */
5348 switch (format[1]) {
5349 case 'R':
5350 case 'F':
5351 ret++;
5352 break;
5353 }
5354 ret++;
5355 break;
5356 case 'I':
5357 case 'i':
5358 index = 2;
5359 loop = 1;
5360 switch (format[1]) {
5361 case 'S':
5362 /*[S][pfs]*/
5363 while (loop) {
5364 switch (format[index]) {
5365 case 'p':
5366 case 'f':
5367 case 's':
5368 ret++;
5369 index++;
5370 break;
5371 default:
5372 loop = 0;
5373 break;
5374 }
5375 }
5376 /* fall through */
5377 case '4':
5378 /* [4S][hnbl] */
5379 switch (format[index]) {
5380 case 'h':
5381 case 'n':
5382 case 'l':
5383 case 'b':
5384 ret++;
5385 index++;
5386 break;
5387 }
5388 if (format[1] == '4') {
5389 ret++;
5390 break;
5391 }
5392 /* fall through */
5393 case '6':
5394 /* [6S]c */
5395 if (format[index] == 'c')
5396 ret++;
5397 ret++;
5398 break;
5399 }
5400 ret++;
5401 break;
5402 case 'U':
5403 switch (format[1]) {
5404 case 'L':
5405 case 'l':
5406 case 'B':
5407 case 'b':
5408 ret++;
5409 break;
5410 }
5411 ret++;
5412 break;
5413 case 'h':
5414 switch (format[1]) {
5415 case 'C':
5416 case 'D':
5417 case 'N':
5418 ret++;
5419 break;
5420 }
5421 ret++;
5422 break;
5423 default:
5424 break;
5425 }
5426
5427 return ret;
5428}
5429
5430static void free_parse_args(struct tep_print_parse *arg)
5431{
5432 struct tep_print_parse *del;
5433
5434 while (arg) {
5435 del = arg;
5436 arg = del->next;
5437 free(del->format);
5438 free(del);
5439 }
5440}
5441
5442static int parse_arg_add(struct tep_print_parse **parse, char *format,
5443 enum tep_print_parse_type type,
5444 struct tep_print_arg *arg,
5445 struct tep_print_arg *len_as_arg,
5446 int ls)
5447{
5448 struct tep_print_parse *parg = NULL;
5449
5450 parg = calloc(1, sizeof(*parg));
5451 if (!parg)
5452 goto error;
5453 parg->format = strdup(format);
5454 if (!parg->format)
5455 goto error;
5456 parg->type = type;
5457 parg->arg = arg;
5458 parg->len_as_arg = len_as_arg;
5459 parg->ls = ls;
5460 *parse = parg;
5461 return 0;
5462error:
5463 if (parg) {
5464 free(parg->format);
5465 free(parg);
5466 }
5467 return -1;
5468}
5469
5470static int parse_arg_format(struct tep_print_parse **parse,
5471 struct tep_event *event,
5472 const char *format, struct tep_print_arg **arg)
5473{
5474 struct tep_print_arg *len_arg = NULL;
5475 char print_format[32];
5476 const char *start = format;
5477 int ret = 0;
5478 int ls = 0;
5479 int res;
5480 int len;
5481
5482 format++;
5483 ret++;
5484 for (; *format; format++) {
5485 switch (*format) {
5486 case '#':
5487 /* FIXME: need to handle properly */
5488 break;
5489 case 'h':
5490 ls--;
5491 break;
5492 case 'l':
5493 ls++;
5494 break;
5495 case 'L':
5496 ls = 2;
5497 break;
5498 case '.':
5499 case 'z':
5500 case 'Z':
5501 case '0' ... '9':
5502 case '-':
5503 break;
5504 case '*':
5505 /* The argument is the length. */
5506 if (!*arg) {
5507 do_warning_event(event, "no argument match");
5508 event->flags |= TEP_EVENT_FL_FAILED;
5509 goto out_failed;
5510 }
5511 if (len_arg) {
5512 do_warning_event(event, "argument already matched");
5513 event->flags |= TEP_EVENT_FL_FAILED;
5514 goto out_failed;
5515 }
5516 len_arg = *arg;
5517 *arg = (*arg)->next;
5518 break;
5519 case 'p':
5520 if (!*arg) {
5521 do_warning_event(event, "no argument match");
5522 event->flags |= TEP_EVENT_FL_FAILED;
5523 goto out_failed;
5524 }
5525 res = parse_arg_format_pointer(format + 1);
5526 if (res > 0) {
5527 format += res;
5528 ret += res;
5529 }
5530 len = ((unsigned long)format + 1) -
5531 (unsigned long)start;
5532 /* should never happen */
5533 if (len > 31) {
5534 do_warning_event(event, "bad format!");
5535 event->flags |= TEP_EVENT_FL_FAILED;
5536 len = 31;
5537 }
5538 memcpy(print_format, start, len);
5539 print_format[len] = 0;
5540
5541 parse_arg_add(parse, print_format,
5542 PRINT_FMT_ARG_POINTER, *arg, len_arg, ls);
5543 *arg = (*arg)->next;
5544 ret++;
5545 return ret;
5546 case 'd':
5547 case 'u':
5548 case 'i':
5549 case 'x':
5550 case 'X':
5551 case 'o':
5552 if (!*arg) {
5553 do_warning_event(event, "no argument match");
5554 event->flags |= TEP_EVENT_FL_FAILED;
5555 goto out_failed;
5556 }
5557
5558 len = ((unsigned long)format + 1) -
5559 (unsigned long)start;
5560
5561 /* should never happen */
5562 if (len > 30) {
5563 do_warning_event(event, "bad format!");
5564 event->flags |= TEP_EVENT_FL_FAILED;
5565 len = 31;
5566 }
5567 memcpy(print_format, start, len);
5568 print_format[len] = 0;
5569
5570 if (event->tep->long_size == 8 && ls == 1 &&
5571 sizeof(long) != 8) {
5572 char *p;
5573
5574 /* make %l into %ll */
5575 if (ls == 1 && (p = strchr(print_format, 'l')))
5576 memmove(p+1, p, strlen(p)+1);
5577 ls = 2;
5578 }
5579 if (ls < -2 || ls > 2) {
5580 do_warning_event(event, "bad count (%d)", ls);
5581 event->flags |= TEP_EVENT_FL_FAILED;
5582 }
5583 parse_arg_add(parse, print_format,
5584 PRINT_FMT_ARG_DIGIT, *arg, len_arg, ls);
5585 *arg = (*arg)->next;
5586 ret++;
5587 return ret;
5588 case 's':
5589 if (!*arg) {
5590 do_warning_event(event, "no matching argument");
5591 event->flags |= TEP_EVENT_FL_FAILED;
5592 goto out_failed;
5593 }
5594
5595 len = ((unsigned long)format + 1) -
5596 (unsigned long)start;
5597
5598 /* should never happen */
5599 if (len > 31) {
5600 do_warning_event(event, "bad format!");
5601 event->flags |= TEP_EVENT_FL_FAILED;
5602 len = 31;
5603 }
5604
5605 memcpy(print_format, start, len);
5606 print_format[len] = 0;
5607
5608 parse_arg_add(parse, print_format,
5609 PRINT_FMT_ARG_STRING, *arg, len_arg, 0);
5610 *arg = (*arg)->next;
5611 ret++;
5612 return ret;
5613 default:
5614 snprintf(print_format, 32, ">%c<", *format);
5615 parse_arg_add(parse, print_format,
Tzvetomir Stoyanov (VMware)602e29f2020-07-21 21:16:49 -04005616 PRINT_FMT_STRING, NULL, NULL, 0);
Tzvetomir Stoyanov (VMware)e7a90882020-07-02 14:53:51 -04005617 ret++;
5618 return ret;
5619 }
5620 ret++;
5621 }
5622
5623out_failed:
5624 return ret;
5625
5626}
5627
5628static int parse_arg_string(struct tep_print_parse **parse, const char *format)
5629{
5630 struct trace_seq s;
5631 int ret = 0;
5632
5633 trace_seq_init(&s);
5634 for (; *format; format++) {
5635 if (*format == '\\') {
5636 format++;
5637 ret++;
5638 switch (*format) {
5639 case 'n':
5640 trace_seq_putc(&s, '\n');
5641 break;
5642 case 't':
5643 trace_seq_putc(&s, '\t');
5644 break;
5645 case 'r':
5646 trace_seq_putc(&s, '\r');
5647 break;
5648 case '\\':
5649 trace_seq_putc(&s, '\\');
5650 break;
5651 default:
5652 trace_seq_putc(&s, *format);
5653 break;
5654 }
5655 } else if (*format == '%') {
5656 if (*(format + 1) == '%') {
5657 trace_seq_putc(&s, '%');
5658 format++;
5659 ret++;
5660 } else
5661 break;
5662 } else
5663 trace_seq_putc(&s, *format);
5664
5665 ret++;
5666 }
5667 trace_seq_terminate(&s);
Tzvetomir Stoyanov (VMware)602e29f2020-07-21 21:16:49 -04005668 parse_arg_add(parse, s.buffer, PRINT_FMT_STRING, NULL, NULL, 0);
Tzvetomir Stoyanov (VMware)e7a90882020-07-02 14:53:51 -04005669 trace_seq_destroy(&s);
5670
5671 return ret;
5672}
5673
5674static struct tep_print_parse *
5675parse_args(struct tep_event *event, const char *format, struct tep_print_arg *arg)
5676{
5677 struct tep_print_parse *parse_ret = NULL;
5678 struct tep_print_parse **parse = NULL;
5679 int ret;
5680 int len;
5681
5682 len = strlen(format);
5683 while (*format) {
5684 if (!parse_ret)
5685 parse = &parse_ret;
5686 if (*format == '%' && *(format + 1) != '%')
5687 ret = parse_arg_format(parse, event, format, &arg);
5688 else
5689 ret = parse_arg_string(parse, format);
5690 if (*parse)
5691 parse = &((*parse)->next);
5692
5693 len -= ret;
5694 if (len > 0)
5695 format += ret;
5696 else
5697 break;
5698 }
5699 return parse_ret;
5700}
5701
5702static void print_event_cache(struct tep_print_parse *parse, struct trace_seq *s,
5703 void *data, int size, struct tep_event *event)
5704{
5705 int len_arg;
5706
5707 while (parse) {
5708 if (parse->len_as_arg)
5709 len_arg = eval_num_arg(data, size, event, parse->len_as_arg);
5710 switch (parse->type) {
5711 case PRINT_FMT_ARG_DIGIT:
5712 print_arg_number(s, parse->format,
5713 parse->len_as_arg ? len_arg : -1, data,
5714 size, parse->ls, event, parse->arg);
5715 break;
5716 case PRINT_FMT_ARG_POINTER:
5717 print_arg_pointer(s, parse->format,
5718 parse->len_as_arg ? len_arg : 1,
5719 data, size, event, parse->arg);
5720 break;
5721 case PRINT_FMT_ARG_STRING:
5722 print_arg_string(s, parse->format,
5723 parse->len_as_arg ? len_arg : -1,
5724 data, size, event, parse->arg);
5725 break;
Tzvetomir Stoyanov (VMware)602e29f2020-07-21 21:16:49 -04005726 case PRINT_FMT_STRING:
Tzvetomir Stoyanov (VMware)e7a90882020-07-02 14:53:51 -04005727 default:
5728 trace_seq_printf(s, "%s", parse->format);
5729 break;
5730 }
5731 parse = parse->next;
5732 }
5733}
5734
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05005735static void pretty_print(struct trace_seq *s, void *data, int size, struct tep_event *event)
Steven Rostedtf7d82352012-04-06 00:47:53 +02005736{
Tzvetomir Stoyanov (VMware)e7a90882020-07-02 14:53:51 -04005737 struct tep_print_parse *parse = event->print_fmt.print_cache;
Tzvetomir Stoyanov (VMware)5647f942018-09-19 14:56:49 -04005738 struct tep_print_arg *args = NULL;
Steven Rostedtf7d82352012-04-06 00:47:53 +02005739 char *bprint_fmt = NULL;
Steven Rostedtf7d82352012-04-06 00:47:53 +02005740
Tzvetomir Stoyanov (VMware)c1953bc2018-09-19 14:56:48 -04005741 if (event->flags & TEP_EVENT_FL_FAILED) {
Steven Rostedtf7d82352012-04-06 00:47:53 +02005742 trace_seq_printf(s, "[FAILED TO PARSE]");
Tzvetomir Stoyanov (VMware)6a48dc22018-08-08 14:02:52 -04005743 tep_print_fields(s, data, size, event);
Steven Rostedtf7d82352012-04-06 00:47:53 +02005744 return;
5745 }
5746
Tzvetomir Stoyanov (VMware)c1953bc2018-09-19 14:56:48 -04005747 if (event->flags & TEP_EVENT_FL_ISBPRINT) {
Steven Rostedtf7d82352012-04-06 00:47:53 +02005748 bprint_fmt = get_bprint_format(data, size, event);
5749 args = make_bprint_args(bprint_fmt, data, size, event);
Tzvetomir Stoyanov (VMware)e7a90882020-07-02 14:53:51 -04005750 parse = parse_args(event, bprint_fmt, args);
Steven Rostedtf7d82352012-04-06 00:47:53 +02005751 }
5752
Tzvetomir Stoyanov (VMware)e7a90882020-07-02 14:53:51 -04005753 print_event_cache(parse, s, data, size, event);
Steven Rostedtf7d82352012-04-06 00:47:53 +02005754
Tzvetomir Stoyanov (VMware)e7a90882020-07-02 14:53:51 -04005755 if (event->flags & TEP_EVENT_FL_ISBPRINT) {
5756 free_parse_args(parse);
Steven Rostedtf7d82352012-04-06 00:47:53 +02005757 free_args(args);
5758 free(bprint_fmt);
5759 }
5760}
5761
Tzvetomir Stoyanov38847db2019-08-05 16:43:13 -04005762/*
Steven Rostedtf7d82352012-04-06 00:47:53 +02005763 * This parses out the Latency format (interrupts disabled,
5764 * need rescheduling, in hard/soft interrupt, preempt count
5765 * and lock depth) and places it into the trace_seq.
5766 */
Tzvetomir Stoyanov38847db2019-08-05 16:43:13 -04005767static void data_latency_format(struct tep_handle *tep, struct trace_seq *s,
5768 char *format, struct tep_record *record)
Steven Rostedtf7d82352012-04-06 00:47:53 +02005769{
5770 static int check_lock_depth = 1;
Steven Rostedt0866a972012-05-22 14:52:40 +09005771 static int check_migrate_disable = 1;
Steven Rostedtf7d82352012-04-06 00:47:53 +02005772 static int lock_depth_exists;
Steven Rostedt0866a972012-05-22 14:52:40 +09005773 static int migrate_disable_exists;
Steven Rostedtf7d82352012-04-06 00:47:53 +02005774 unsigned int lat_flags;
Tzvetomir Stoyanov38847db2019-08-05 16:43:13 -04005775 struct trace_seq sq;
Steven Rostedtf7d82352012-04-06 00:47:53 +02005776 unsigned int pc;
Adrian Hunter0631ca32018-11-22 13:29:37 +02005777 int lock_depth = 0;
5778 int migrate_disable = 0;
Steven Rostedtf7d82352012-04-06 00:47:53 +02005779 int hardirq;
5780 int softirq;
5781 void *data = record->data;
5782
Tzvetomir Stoyanov38847db2019-08-05 16:43:13 -04005783 trace_seq_init(&sq);
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04005784 lat_flags = parse_common_flags(tep, data);
5785 pc = parse_common_pc(tep, data);
Steven Rostedtf7d82352012-04-06 00:47:53 +02005786 /* lock_depth may not always exist */
Steven Rostedtf7d82352012-04-06 00:47:53 +02005787 if (lock_depth_exists)
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04005788 lock_depth = parse_common_lock_depth(tep, data);
Steven Rostedt0866a972012-05-22 14:52:40 +09005789 else if (check_lock_depth) {
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04005790 lock_depth = parse_common_lock_depth(tep, data);
Steven Rostedt0866a972012-05-22 14:52:40 +09005791 if (lock_depth < 0)
5792 check_lock_depth = 0;
5793 else
5794 lock_depth_exists = 1;
5795 }
5796
5797 /* migrate_disable may not always exist */
5798 if (migrate_disable_exists)
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04005799 migrate_disable = parse_common_migrate_disable(tep, data);
Steven Rostedt0866a972012-05-22 14:52:40 +09005800 else if (check_migrate_disable) {
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04005801 migrate_disable = parse_common_migrate_disable(tep, data);
Steven Rostedt0866a972012-05-22 14:52:40 +09005802 if (migrate_disable < 0)
5803 check_migrate_disable = 0;
5804 else
5805 migrate_disable_exists = 1;
5806 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02005807
5808 hardirq = lat_flags & TRACE_FLAG_HARDIRQ;
5809 softirq = lat_flags & TRACE_FLAG_SOFTIRQ;
5810
Tzvetomir Stoyanov38847db2019-08-05 16:43:13 -04005811 trace_seq_printf(&sq, "%c%c%c",
Steven Rostedtf7d82352012-04-06 00:47:53 +02005812 (lat_flags & TRACE_FLAG_IRQS_OFF) ? 'd' :
5813 (lat_flags & TRACE_FLAG_IRQS_NOSUPPORT) ?
5814 'X' : '.',
5815 (lat_flags & TRACE_FLAG_NEED_RESCHED) ?
5816 'N' : '.',
5817 (hardirq && softirq) ? 'H' :
5818 hardirq ? 'h' : softirq ? 's' : '.');
5819
5820 if (pc)
Tzvetomir Stoyanov38847db2019-08-05 16:43:13 -04005821 trace_seq_printf(&sq, "%x", pc);
Steven Rostedtf7d82352012-04-06 00:47:53 +02005822 else
Tzvetomir Stoyanov38847db2019-08-05 16:43:13 -04005823 trace_seq_printf(&sq, ".");
Steven Rostedtf7d82352012-04-06 00:47:53 +02005824
Steven Rostedt0866a972012-05-22 14:52:40 +09005825 if (migrate_disable_exists) {
5826 if (migrate_disable < 0)
Tzvetomir Stoyanov38847db2019-08-05 16:43:13 -04005827 trace_seq_printf(&sq, ".");
Steven Rostedt0866a972012-05-22 14:52:40 +09005828 else
Tzvetomir Stoyanov38847db2019-08-05 16:43:13 -04005829 trace_seq_printf(&sq, "%d", migrate_disable);
Steven Rostedt0866a972012-05-22 14:52:40 +09005830 }
5831
Steven Rostedtf7d82352012-04-06 00:47:53 +02005832 if (lock_depth_exists) {
5833 if (lock_depth < 0)
Tzvetomir Stoyanov38847db2019-08-05 16:43:13 -04005834 trace_seq_printf(&sq, ".");
Steven Rostedtf7d82352012-04-06 00:47:53 +02005835 else
Tzvetomir Stoyanov38847db2019-08-05 16:43:13 -04005836 trace_seq_printf(&sq, "%d", lock_depth);
Steven Rostedtf7d82352012-04-06 00:47:53 +02005837 }
5838
Tzvetomir Stoyanov38847db2019-08-05 16:43:13 -04005839 if (sq.state == TRACE_SEQ__MEM_ALLOC_FAILED) {
5840 s->state = TRACE_SEQ__MEM_ALLOC_FAILED;
5841 return;
5842 }
5843
5844 trace_seq_terminate(&sq);
5845 trace_seq_puts(s, sq.buffer);
5846 trace_seq_destroy(&sq);
Steven Rostedtf7d82352012-04-06 00:47:53 +02005847 trace_seq_terminate(s);
5848}
5849
5850/**
Tzvetomir Stoyanov (VMware)dc05ebf2018-08-08 14:03:03 -04005851 * tep_data_type - parse out the given event type
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04005852 * @tep: a handle to the trace event parser context
Steven Rostedtf7d82352012-04-06 00:47:53 +02005853 * @rec: the record to read from
5854 *
5855 * This returns the event id from the @rec.
5856 */
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04005857int tep_data_type(struct tep_handle *tep, struct tep_record *rec)
Steven Rostedtf7d82352012-04-06 00:47:53 +02005858{
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04005859 return trace_parse_common_type(tep, rec->data);
Steven Rostedtf7d82352012-04-06 00:47:53 +02005860}
5861
5862/**
Tzvetomir Stoyanov (VMware)dc05ebf2018-08-08 14:03:03 -04005863 * tep_data_pid - parse the PID from record
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04005864 * @tep: a handle to the trace event parser context
Steven Rostedtf7d82352012-04-06 00:47:53 +02005865 * @rec: the record to parse
5866 *
Steven Rostedtc52d9e42016-11-22 11:31:58 -05005867 * This returns the PID from a record.
Steven Rostedtf7d82352012-04-06 00:47:53 +02005868 */
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04005869int tep_data_pid(struct tep_handle *tep, struct tep_record *rec)
Steven Rostedtf7d82352012-04-06 00:47:53 +02005870{
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04005871 return parse_common_pid(tep, rec->data);
Steven Rostedtf7d82352012-04-06 00:47:53 +02005872}
5873
5874/**
Tzvetomir Stoyanov (VMware)dc05ebf2018-08-08 14:03:03 -04005875 * tep_data_preempt_count - parse the preempt count from the record
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04005876 * @tep: a handle to the trace event parser context
Steven Rostedtc52d9e42016-11-22 11:31:58 -05005877 * @rec: the record to parse
5878 *
5879 * This returns the preempt count from a record.
5880 */
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04005881int tep_data_preempt_count(struct tep_handle *tep, struct tep_record *rec)
Steven Rostedtc52d9e42016-11-22 11:31:58 -05005882{
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04005883 return parse_common_pc(tep, rec->data);
Steven Rostedtc52d9e42016-11-22 11:31:58 -05005884}
5885
5886/**
Tzvetomir Stoyanov (VMware)dc05ebf2018-08-08 14:03:03 -04005887 * tep_data_flags - parse the latency flags from the record
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04005888 * @tep: a handle to the trace event parser context
Steven Rostedtc52d9e42016-11-22 11:31:58 -05005889 * @rec: the record to parse
5890 *
5891 * This returns the latency flags from a record.
5892 *
5893 * Use trace_flag_type enum for the flags (see event-parse.h).
5894 */
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04005895int tep_data_flags(struct tep_handle *tep, struct tep_record *rec)
Steven Rostedtc52d9e42016-11-22 11:31:58 -05005896{
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04005897 return parse_common_flags(tep, rec->data);
Steven Rostedtc52d9e42016-11-22 11:31:58 -05005898}
5899
5900/**
Tzvetomir Stoyanov (VMware)dc05ebf2018-08-08 14:03:03 -04005901 * tep_data_comm_from_pid - return the command line from PID
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04005902 * @tep: a handle to the trace event parser context
Steven Rostedtf7d82352012-04-06 00:47:53 +02005903 * @pid: the PID of the task to search for
5904 *
5905 * This returns a pointer to the command line that has the given
5906 * @pid.
5907 */
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04005908const char *tep_data_comm_from_pid(struct tep_handle *tep, int pid)
Steven Rostedtf7d82352012-04-06 00:47:53 +02005909{
5910 const char *comm;
5911
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04005912 comm = find_cmdline(tep, pid);
Steven Rostedtf7d82352012-04-06 00:47:53 +02005913 return comm;
5914}
5915
Tzvetomir Stoyanov2e4318a2018-11-30 23:08:09 -05005916static struct tep_cmdline *
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04005917pid_from_cmdlist(struct tep_handle *tep, const char *comm, struct tep_cmdline *next)
Steven Rostedt (Red Hat)27719842015-03-24 09:57:52 -04005918{
5919 struct cmdline_list *cmdlist = (struct cmdline_list *)next;
5920
5921 if (cmdlist)
5922 cmdlist = cmdlist->next;
5923 else
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04005924 cmdlist = tep->cmdlist;
Steven Rostedt (Red Hat)27719842015-03-24 09:57:52 -04005925
5926 while (cmdlist && strcmp(cmdlist->comm, comm) != 0)
5927 cmdlist = cmdlist->next;
5928
Tzvetomir Stoyanov2e4318a2018-11-30 23:08:09 -05005929 return (struct tep_cmdline *)cmdlist;
Steven Rostedt (Red Hat)27719842015-03-24 09:57:52 -04005930}
5931
5932/**
Tzvetomir Stoyanov (VMware)dc05ebf2018-08-08 14:03:03 -04005933 * tep_data_pid_from_comm - return the pid from a given comm
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04005934 * @tep: a handle to the trace event parser context
Steven Rostedt (Red Hat)27719842015-03-24 09:57:52 -04005935 * @comm: the cmdline to find the pid from
5936 * @next: the cmdline structure to find the next comm
5937 *
5938 * This returns the cmdline structure that holds a pid for a given
5939 * comm, or NULL if none found. As there may be more than one pid for
5940 * a given comm, the result of this call can be passed back into
Ingo Molnar3e449f72018-12-03 11:22:00 +01005941 * a recurring call in the @next parameter, and then it will find the
Steven Rostedt (Red Hat)27719842015-03-24 09:57:52 -04005942 * next pid.
Ingo Molnar3e449f72018-12-03 11:22:00 +01005943 * Also, it does a linear search, so it may be slow.
Steven Rostedt (Red Hat)27719842015-03-24 09:57:52 -04005944 */
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04005945struct tep_cmdline *tep_data_pid_from_comm(struct tep_handle *tep, const char *comm,
Tzvetomir Stoyanov2e4318a2018-11-30 23:08:09 -05005946 struct tep_cmdline *next)
Steven Rostedt (Red Hat)27719842015-03-24 09:57:52 -04005947{
Tzvetomir Stoyanov2e4318a2018-11-30 23:08:09 -05005948 struct tep_cmdline *cmdline;
Steven Rostedt (Red Hat)27719842015-03-24 09:57:52 -04005949
5950 /*
5951 * If the cmdlines have not been converted yet, then use
5952 * the list.
5953 */
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04005954 if (!tep->cmdlines)
5955 return pid_from_cmdlist(tep, comm, next);
Steven Rostedt (Red Hat)27719842015-03-24 09:57:52 -04005956
5957 if (next) {
5958 /*
5959 * The next pointer could have been still from
5960 * a previous call before cmdlines were created
5961 */
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04005962 if (next < tep->cmdlines ||
5963 next >= tep->cmdlines + tep->cmdline_count)
Steven Rostedt (Red Hat)27719842015-03-24 09:57:52 -04005964 next = NULL;
5965 else
5966 cmdline = next++;
5967 }
5968
5969 if (!next)
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04005970 cmdline = tep->cmdlines;
Steven Rostedt (Red Hat)27719842015-03-24 09:57:52 -04005971
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04005972 while (cmdline < tep->cmdlines + tep->cmdline_count) {
Steven Rostedt (Red Hat)27719842015-03-24 09:57:52 -04005973 if (strcmp(cmdline->comm, comm) == 0)
5974 return cmdline;
5975 cmdline++;
5976 }
5977 return NULL;
5978}
5979
5980/**
Tzvetomir Stoyanov (VMware)dc05ebf2018-08-08 14:03:03 -04005981 * tep_cmdline_pid - return the pid associated to a given cmdline
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04005982 * @tep: a handle to the trace event parser context
Steven Rostedt (Red Hat)27719842015-03-24 09:57:52 -04005983 * @cmdline: The cmdline structure to get the pid from
5984 *
5985 * Returns the pid for a give cmdline. If @cmdline is NULL, then
5986 * -1 is returned.
5987 */
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04005988int tep_cmdline_pid(struct tep_handle *tep, struct tep_cmdline *cmdline)
Steven Rostedt (Red Hat)27719842015-03-24 09:57:52 -04005989{
5990 struct cmdline_list *cmdlist = (struct cmdline_list *)cmdline;
5991
5992 if (!cmdline)
5993 return -1;
5994
5995 /*
5996 * If cmdlines have not been created yet, or cmdline is
5997 * not part of the array, then treat it as a cmdlist instead.
5998 */
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04005999 if (!tep->cmdlines ||
6000 cmdline < tep->cmdlines ||
6001 cmdline >= tep->cmdlines + tep->cmdline_count)
Steven Rostedt (Red Hat)27719842015-03-24 09:57:52 -04006002 return cmdlist->pid;
6003
6004 return cmdline->pid;
6005}
6006
Tzvetomir Stoyanov38847db2019-08-05 16:43:13 -04006007/*
Steven Rostedtf7d82352012-04-06 00:47:53 +02006008 * This parses the raw @data using the given @event information and
6009 * writes the print format into the trace_seq.
6010 */
Tzvetomir Stoyanov38847db2019-08-05 16:43:13 -04006011static void print_event_info(struct trace_seq *s, char *format, bool raw,
6012 struct tep_event *event, struct tep_record *record)
Steven Rostedtf7d82352012-04-06 00:47:53 +02006013{
6014 int print_pretty = 1;
6015
Tzvetomir Stoyanov38847db2019-08-05 16:43:13 -04006016 if (raw || (event->flags & TEP_EVENT_FL_PRINTRAW))
Tzvetomir Stoyanov (VMware)6a48dc22018-08-08 14:02:52 -04006017 tep_print_fields(s, record->data, record->size, event);
Steven Rostedtf7d82352012-04-06 00:47:53 +02006018 else {
6019
Tzvetomir Stoyanov (VMware)c1953bc2018-09-19 14:56:48 -04006020 if (event->handler && !(event->flags & TEP_EVENT_FL_NOHANDLE))
Steven Rostedtf7d82352012-04-06 00:47:53 +02006021 print_pretty = event->handler(s, record, event,
6022 event->context);
6023
6024 if (print_pretty)
6025 pretty_print(s, record->data, record->size, event);
6026 }
6027
6028 trace_seq_terminate(s);
6029}
6030
Steven Rostedta6745332016-02-29 09:01:28 -05006031/**
Tzvetomir Stoyanov (VMware)610e1e42018-08-08 14:03:05 -04006032 * tep_find_event_by_record - return the event from a given record
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04006033 * @tep: a handle to the trace event parser context
Steven Rostedta6745332016-02-29 09:01:28 -05006034 * @record: The record to get the event from
6035 *
6036 * Returns the associated event for a given record, or NULL if non is
6037 * is found.
6038 */
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05006039struct tep_event *
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04006040tep_find_event_by_record(struct tep_handle *tep, struct tep_record *record)
Steven Rostedtf7d82352012-04-06 00:47:53 +02006041{
Steven Rostedta6745332016-02-29 09:01:28 -05006042 int type;
6043
6044 if (record->size < 0) {
6045 do_warning("ug! negative record size %d", record->size);
6046 return NULL;
6047 }
6048
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04006049 type = trace_parse_common_type(tep, record->data);
Steven Rostedta6745332016-02-29 09:01:28 -05006050
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04006051 return tep_find_event(tep, type);
Steven Rostedta6745332016-02-29 09:01:28 -05006052}
6053
Tzvetomir Stoyanov38847db2019-08-05 16:43:13 -04006054/*
6055 * Writes the timestamp of the record into @s. Time divisor and precision can be
6056 * specified as part of printf @format string. Example:
6057 * "%3.1000d" - divide the time by 1000 and print the first 3 digits
6058 * before the dot. Thus, the timestamp "123456000" will be printed as
6059 * "123.456"
Steven Rostedta6745332016-02-29 09:01:28 -05006060 */
Tzvetomir Stoyanov38847db2019-08-05 16:43:13 -04006061static void print_event_time(struct tep_handle *tep, struct trace_seq *s,
6062 char *format, struct tep_event *event,
6063 struct tep_record *record)
Steven Rostedta6745332016-02-29 09:01:28 -05006064{
Tzvetomir Stoyanov38847db2019-08-05 16:43:13 -04006065 unsigned long long time;
6066 char *divstr;
6067 int prec = 0, pr;
6068 int div = 0;
6069 int p10 = 1;
6070
6071 if (isdigit(*(format + 1)))
6072 prec = atoi(format + 1);
6073 divstr = strchr(format, '.');
6074 if (divstr && isdigit(*(divstr + 1)))
6075 div = atoi(divstr + 1);
6076 time = record->ts;
Steven Rostedt (VMware)5c8da722019-09-19 16:51:19 -04006077 if (div) {
6078 time += div / 2;
Tzvetomir Stoyanov38847db2019-08-05 16:43:13 -04006079 time /= div;
Steven Rostedt (VMware)5c8da722019-09-19 16:51:19 -04006080 }
Tzvetomir Stoyanov38847db2019-08-05 16:43:13 -04006081 pr = prec;
6082 while (pr--)
6083 p10 *= 10;
6084
6085 if (p10 > 1 && p10 < time)
6086 trace_seq_printf(s, "%5llu.%0*llu", time / p10, prec, time % p10);
6087 else
Steven Rostedt (VMware)401d61c2020-03-03 23:18:52 -05006088 trace_seq_printf(s, "%12llu", time);
Tzvetomir Stoyanov38847db2019-08-05 16:43:13 -04006089}
6090
6091struct print_event_type {
6092 enum {
6093 EVENT_TYPE_INT = 1,
6094 EVENT_TYPE_STRING,
6095 EVENT_TYPE_UNKNOWN,
6096 } type;
6097 char format[32];
6098};
6099
6100static void print_string(struct tep_handle *tep, struct trace_seq *s,
6101 struct tep_record *record, struct tep_event *event,
6102 const char *arg, struct print_event_type *type)
6103{
Steven Rostedta6745332016-02-29 09:01:28 -05006104 const char *comm;
6105 int pid;
6106
Tzvetomir Stoyanov38847db2019-08-05 16:43:13 -04006107 if (strncmp(arg, TEP_PRINT_LATENCY, strlen(TEP_PRINT_LATENCY)) == 0) {
6108 data_latency_format(tep, s, type->format, record);
6109 } else if (strncmp(arg, TEP_PRINT_COMM, strlen(TEP_PRINT_COMM)) == 0) {
6110 pid = parse_common_pid(tep, record->data);
6111 comm = find_cmdline(tep, pid);
6112 trace_seq_printf(s, type->format, comm);
6113 } else if (strncmp(arg, TEP_PRINT_INFO_RAW, strlen(TEP_PRINT_INFO_RAW)) == 0) {
6114 print_event_info(s, type->format, true, event, record);
6115 } else if (strncmp(arg, TEP_PRINT_INFO, strlen(TEP_PRINT_INFO)) == 0) {
6116 print_event_info(s, type->format, false, event, record);
6117 } else if (strncmp(arg, TEP_PRINT_NAME, strlen(TEP_PRINT_NAME)) == 0) {
6118 trace_seq_printf(s, type->format, event->name);
6119 } else {
6120 trace_seq_printf(s, "[UNKNOWN TEP TYPE %s]", arg);
Yoshihiro YUNOMAE1b372ca2013-11-01 17:53:53 -04006121 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02006122
Steven Rostedta6745332016-02-29 09:01:28 -05006123}
6124
Tzvetomir Stoyanov38847db2019-08-05 16:43:13 -04006125static void print_int(struct tep_handle *tep, struct trace_seq *s,
6126 struct tep_record *record, struct tep_event *event,
6127 int arg, struct print_event_type *type)
Steven Rostedta6745332016-02-29 09:01:28 -05006128{
Tzvetomir Stoyanov38847db2019-08-05 16:43:13 -04006129 int param;
Steven Rostedta6745332016-02-29 09:01:28 -05006130
Tzvetomir Stoyanov38847db2019-08-05 16:43:13 -04006131 switch (arg) {
6132 case TEP_PRINT_CPU:
6133 param = record->cpu;
6134 break;
6135 case TEP_PRINT_PID:
6136 param = parse_common_pid(tep, record->data);
6137 break;
6138 case TEP_PRINT_TIME:
6139 return print_event_time(tep, s, type->format, event, record);
6140 default:
Steven Rostedta6745332016-02-29 09:01:28 -05006141 return;
6142 }
Tzvetomir Stoyanov38847db2019-08-05 16:43:13 -04006143 trace_seq_printf(s, type->format, param);
6144}
Steven Rostedta6745332016-02-29 09:01:28 -05006145
Tzvetomir Stoyanov38847db2019-08-05 16:43:13 -04006146static int tep_print_event_param_type(char *format,
6147 struct print_event_type *type)
6148{
6149 char *str = format + 1;
6150 int i = 1;
6151
6152 type->type = EVENT_TYPE_UNKNOWN;
6153 while (*str) {
6154 switch (*str) {
6155 case 'd':
6156 case 'u':
6157 case 'i':
6158 case 'x':
6159 case 'X':
6160 case 'o':
6161 type->type = EVENT_TYPE_INT;
6162 break;
6163 case 's':
6164 type->type = EVENT_TYPE_STRING;
6165 break;
6166 }
6167 str++;
6168 i++;
6169 if (type->type != EVENT_TYPE_UNKNOWN)
6170 break;
6171 }
6172 memset(type->format, 0, 32);
6173 memcpy(type->format, format, i < 32 ? i : 31);
6174 return i;
6175}
6176
6177/**
6178 * tep_print_event - Write various event information
6179 * @tep: a handle to the trace event parser context
6180 * @s: the trace_seq to write to
6181 * @record: The record to get the event from
6182 * @format: a printf format string. Supported event fileds:
6183 * TEP_PRINT_PID, "%d" - event PID
6184 * TEP_PRINT_CPU, "%d" - event CPU
6185 * TEP_PRINT_COMM, "%s" - event command string
6186 * TEP_PRINT_NAME, "%s" - event name
6187 * TEP_PRINT_LATENCY, "%s" - event latency
6188 * TEP_PRINT_TIME, %d - event time stamp. A divisor and precision
6189 * can be specified as part of this format string:
6190 * "%precision.divisord". Example:
6191 * "%3.1000d" - divide the time by 1000 and print the first
6192 * 3 digits before the dot. Thus, the time stamp
6193 * "123456000" will be printed as "123.456"
6194 * TEP_PRINT_INFO, "%s" - event information. If any width is specified in
6195 * the format string, the event information will be printed
6196 * in raw format.
6197 * Writes the specified event information into @s.
6198 */
6199void tep_print_event(struct tep_handle *tep, struct trace_seq *s,
6200 struct tep_record *record, const char *fmt, ...)
6201{
6202 struct print_event_type type;
6203 char *format = strdup(fmt);
6204 char *current = format;
6205 char *str = format;
6206 int offset;
6207 va_list args;
6208 struct tep_event *event;
6209
6210 if (!format)
6211 return;
6212
6213 event = tep_find_event_by_record(tep, record);
6214 va_start(args, fmt);
6215 while (*current) {
6216 current = strchr(str, '%');
6217 if (!current) {
6218 trace_seq_puts(s, str);
6219 break;
6220 }
6221 memset(&type, 0, sizeof(type));
6222 offset = tep_print_event_param_type(current, &type);
6223 *current = '\0';
6224 trace_seq_puts(s, str);
6225 current += offset;
6226 switch (type.type) {
6227 case EVENT_TYPE_STRING:
6228 print_string(tep, s, record, event,
6229 va_arg(args, char*), &type);
6230 break;
6231 case EVENT_TYPE_INT:
6232 print_int(tep, s, record, event,
6233 va_arg(args, int), &type);
6234 break;
6235 case EVENT_TYPE_UNKNOWN:
6236 default:
6237 trace_seq_printf(s, "[UNKNOWN TYPE]");
6238 break;
6239 }
6240 str = current;
6241
6242 }
6243 va_end(args);
6244 free(format);
Steven Rostedta6745332016-02-29 09:01:28 -05006245}
6246
Steven Rostedtf7d82352012-04-06 00:47:53 +02006247static int events_id_cmp(const void *a, const void *b)
6248{
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05006249 struct tep_event * const * ea = a;
6250 struct tep_event * const * eb = b;
Steven Rostedtf7d82352012-04-06 00:47:53 +02006251
6252 if ((*ea)->id < (*eb)->id)
6253 return -1;
6254
6255 if ((*ea)->id > (*eb)->id)
6256 return 1;
6257
6258 return 0;
6259}
6260
6261static int events_name_cmp(const void *a, const void *b)
6262{
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05006263 struct tep_event * const * ea = a;
6264 struct tep_event * const * eb = b;
Steven Rostedtf7d82352012-04-06 00:47:53 +02006265 int res;
6266
6267 res = strcmp((*ea)->name, (*eb)->name);
6268 if (res)
6269 return res;
6270
6271 res = strcmp((*ea)->system, (*eb)->system);
6272 if (res)
6273 return res;
6274
6275 return events_id_cmp(a, b);
6276}
6277
6278static int events_system_cmp(const void *a, const void *b)
6279{
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05006280 struct tep_event * const * ea = a;
6281 struct tep_event * const * eb = b;
Steven Rostedtf7d82352012-04-06 00:47:53 +02006282 int res;
6283
6284 res = strcmp((*ea)->system, (*eb)->system);
6285 if (res)
6286 return res;
6287
6288 res = strcmp((*ea)->name, (*eb)->name);
6289 if (res)
6290 return res;
6291
6292 return events_id_cmp(a, b);
6293}
6294
Tzvetomir Stoyanov6699ed72019-04-01 12:43:08 -04006295static struct tep_event **list_events_copy(struct tep_handle *tep)
Steven Rostedtf7d82352012-04-06 00:47:53 +02006296{
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05006297 struct tep_event **events;
Tzvetomir Stoyanov6699ed72019-04-01 12:43:08 -04006298
6299 if (!tep)
6300 return NULL;
6301
6302 events = malloc(sizeof(*events) * (tep->nr_events + 1));
6303 if (!events)
6304 return NULL;
6305
6306 memcpy(events, tep->events, sizeof(*events) * tep->nr_events);
6307 events[tep->nr_events] = NULL;
6308 return events;
6309}
6310
6311static void list_events_sort(struct tep_event **events, int nr_events,
6312 enum tep_event_sort_type sort_type)
6313{
Steven Rostedtf7d82352012-04-06 00:47:53 +02006314 int (*sort)(const void *a, const void *b);
6315
Steven Rostedtf7d82352012-04-06 00:47:53 +02006316 switch (sort_type) {
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04006317 case TEP_EVENT_SORT_ID:
Steven Rostedtf7d82352012-04-06 00:47:53 +02006318 sort = events_id_cmp;
6319 break;
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04006320 case TEP_EVENT_SORT_NAME:
Steven Rostedtf7d82352012-04-06 00:47:53 +02006321 sort = events_name_cmp;
6322 break;
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04006323 case TEP_EVENT_SORT_SYSTEM:
Steven Rostedtf7d82352012-04-06 00:47:53 +02006324 sort = events_system_cmp;
6325 break;
6326 default:
Tzvetomir Stoyanov6699ed72019-04-01 12:43:08 -04006327 sort = NULL;
Steven Rostedtf7d82352012-04-06 00:47:53 +02006328 }
6329
Tzvetomir Stoyanov6699ed72019-04-01 12:43:08 -04006330 if (sort)
6331 qsort(events, nr_events, sizeof(*events), sort);
6332}
6333
6334/**
6335 * tep_list_events - Get events, sorted by given criteria.
6336 * @tep: a handle to the tep context
6337 * @sort_type: desired sort order of the events in the array
6338 *
6339 * Returns an array of pointers to all events, sorted by the given
6340 * @sort_type criteria. The last element of the array is NULL. The returned
6341 * memory must not be freed, it is managed by the library.
6342 * The function is not thread safe.
6343 */
6344struct tep_event **tep_list_events(struct tep_handle *tep,
6345 enum tep_event_sort_type sort_type)
6346{
6347 struct tep_event **events;
6348
6349 if (!tep)
6350 return NULL;
6351
6352 events = tep->sort_events;
6353 if (events && tep->last_type == sort_type)
6354 return events;
6355
6356 if (!events) {
6357 events = list_events_copy(tep);
6358 if (!events)
6359 return NULL;
6360
6361 tep->sort_events = events;
6362
6363 /* the internal events are sorted by id */
6364 if (sort_type == TEP_EVENT_SORT_ID) {
6365 tep->last_type = sort_type;
6366 return events;
6367 }
6368 }
6369
6370 list_events_sort(events, tep->nr_events, sort_type);
6371 tep->last_type = sort_type;
6372
6373 return events;
6374}
6375
6376
6377/**
6378 * tep_list_events_copy - Thread safe version of tep_list_events()
6379 * @tep: a handle to the tep context
6380 * @sort_type: desired sort order of the events in the array
6381 *
6382 * Returns an array of pointers to all events, sorted by the given
6383 * @sort_type criteria. The last element of the array is NULL. The returned
6384 * array is newly allocated inside the function and must be freed by the caller
6385 */
6386struct tep_event **tep_list_events_copy(struct tep_handle *tep,
6387 enum tep_event_sort_type sort_type)
6388{
6389 struct tep_event **events;
6390
6391 if (!tep)
6392 return NULL;
6393
6394 events = list_events_copy(tep);
6395 if (!events)
6396 return NULL;
6397
6398 /* the internal events are sorted by id */
6399 if (sort_type == TEP_EVENT_SORT_ID)
6400 return events;
6401
6402 list_events_sort(events, tep->nr_events, sort_type);
Steven Rostedtf7d82352012-04-06 00:47:53 +02006403
6404 return events;
6405}
6406
Tzvetomir Stoyanov (VMware)2c92f982018-09-19 14:56:45 -04006407static struct tep_format_field **
Steven Rostedtf7d82352012-04-06 00:47:53 +02006408get_event_fields(const char *type, const char *name,
Tzvetomir Stoyanov (VMware)2c92f982018-09-19 14:56:45 -04006409 int count, struct tep_format_field *list)
Steven Rostedtf7d82352012-04-06 00:47:53 +02006410{
Tzvetomir Stoyanov (VMware)2c92f982018-09-19 14:56:45 -04006411 struct tep_format_field **fields;
6412 struct tep_format_field *field;
Steven Rostedtf7d82352012-04-06 00:47:53 +02006413 int i = 0;
6414
Arnaldo Carvalho de Meloa6d2a612012-09-12 17:30:50 -03006415 fields = malloc(sizeof(*fields) * (count + 1));
6416 if (!fields)
6417 return NULL;
6418
Steven Rostedtf7d82352012-04-06 00:47:53 +02006419 for (field = list; field; field = field->next) {
6420 fields[i++] = field;
6421 if (i == count + 1) {
6422 do_warning("event %s has more %s fields than specified",
6423 name, type);
6424 i--;
6425 break;
6426 }
6427 }
6428
6429 if (i != count)
6430 do_warning("event %s has less %s fields than specified",
6431 name, type);
6432
6433 fields[i] = NULL;
6434
6435 return fields;
6436}
6437
6438/**
Tzvetomir Stoyanov (VMware)c99eeaf2018-08-08 14:03:08 -04006439 * tep_event_common_fields - return a list of common fields for an event
Steven Rostedtf7d82352012-04-06 00:47:53 +02006440 * @event: the event to return the common fields of.
6441 *
6442 * Returns an allocated array of fields. The last item in the array is NULL.
6443 * The array must be freed with free().
6444 */
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05006445struct tep_format_field **tep_event_common_fields(struct tep_event *event)
Steven Rostedtf7d82352012-04-06 00:47:53 +02006446{
6447 return get_event_fields("common", event->name,
6448 event->format.nr_common,
6449 event->format.common_fields);
6450}
6451
6452/**
Tzvetomir Stoyanov (VMware)c99eeaf2018-08-08 14:03:08 -04006453 * tep_event_fields - return a list of event specific fields for an event
Steven Rostedtf7d82352012-04-06 00:47:53 +02006454 * @event: the event to return the fields of.
6455 *
6456 * Returns an allocated array of fields. The last item in the array is NULL.
6457 * The array must be freed with free().
6458 */
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05006459struct tep_format_field **tep_event_fields(struct tep_event *event)
Steven Rostedtf7d82352012-04-06 00:47:53 +02006460{
6461 return get_event_fields("event", event->name,
6462 event->format.nr_fields,
6463 event->format.fields);
6464}
6465
Tzvetomir Stoyanov (VMware)5647f942018-09-19 14:56:49 -04006466static void print_fields(struct trace_seq *s, struct tep_print_flag_sym *field)
Steven Rostedtf7d82352012-04-06 00:47:53 +02006467{
6468 trace_seq_printf(s, "{ %s, %s }", field->value, field->str);
6469 if (field->next) {
6470 trace_seq_puts(s, ", ");
6471 print_fields(s, field->next);
6472 }
6473}
6474
6475/* for debugging */
Tzvetomir Stoyanov (VMware)5647f942018-09-19 14:56:49 -04006476static void print_args(struct tep_print_arg *args)
Steven Rostedtf7d82352012-04-06 00:47:53 +02006477{
6478 int print_paren = 1;
6479 struct trace_seq s;
6480
6481 switch (args->type) {
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04006482 case TEP_PRINT_NULL:
Steven Rostedtf7d82352012-04-06 00:47:53 +02006483 printf("null");
6484 break;
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04006485 case TEP_PRINT_ATOM:
Steven Rostedtf7d82352012-04-06 00:47:53 +02006486 printf("%s", args->atom.atom);
6487 break;
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04006488 case TEP_PRINT_FIELD:
Steven Rostedtf7d82352012-04-06 00:47:53 +02006489 printf("REC->%s", args->field.name);
6490 break;
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04006491 case TEP_PRINT_FLAGS:
Steven Rostedtf7d82352012-04-06 00:47:53 +02006492 printf("__print_flags(");
6493 print_args(args->flags.field);
6494 printf(", %s, ", args->flags.delim);
6495 trace_seq_init(&s);
6496 print_fields(&s, args->flags.flags);
6497 trace_seq_do_printf(&s);
6498 trace_seq_destroy(&s);
6499 printf(")");
6500 break;
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04006501 case TEP_PRINT_SYMBOL:
Steven Rostedtf7d82352012-04-06 00:47:53 +02006502 printf("__print_symbolic(");
6503 print_args(args->symbol.field);
6504 printf(", ");
6505 trace_seq_init(&s);
6506 print_fields(&s, args->symbol.symbols);
6507 trace_seq_do_printf(&s);
6508 trace_seq_destroy(&s);
6509 printf(")");
6510 break;
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04006511 case TEP_PRINT_HEX:
Namhyung Kime080e6f2012-06-27 09:41:41 +09006512 printf("__print_hex(");
6513 print_args(args->hex.field);
6514 printf(", ");
6515 print_args(args->hex.size);
6516 printf(")");
6517 break;
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04006518 case TEP_PRINT_HEX_STR:
Daniel Borkmann0fe05592017-01-25 02:28:17 +01006519 printf("__print_hex_str(");
6520 print_args(args->hex.field);
6521 printf(", ");
6522 print_args(args->hex.size);
6523 printf(")");
6524 break;
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04006525 case TEP_PRINT_INT_ARRAY:
Javi Merinob839e1e82015-03-24 11:07:19 +00006526 printf("__print_array(");
6527 print_args(args->int_array.field);
6528 printf(", ");
6529 print_args(args->int_array.count);
6530 printf(", ");
6531 print_args(args->int_array.el_size);
6532 printf(")");
6533 break;
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04006534 case TEP_PRINT_STRING:
6535 case TEP_PRINT_BSTRING:
Steven Rostedtf7d82352012-04-06 00:47:53 +02006536 printf("__get_str(%s)", args->string.string);
6537 break;
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04006538 case TEP_PRINT_BITMASK:
Steven Rostedt (Red Hat)473a7782014-06-02 23:20:16 -04006539 printf("__get_bitmask(%s)", args->bitmask.bitmask);
6540 break;
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04006541 case TEP_PRINT_TYPE:
Steven Rostedtf7d82352012-04-06 00:47:53 +02006542 printf("(%s)", args->typecast.type);
6543 print_args(args->typecast.item);
6544 break;
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04006545 case TEP_PRINT_OP:
Steven Rostedtf7d82352012-04-06 00:47:53 +02006546 if (strcmp(args->op.op, ":") == 0)
6547 print_paren = 0;
6548 if (print_paren)
6549 printf("(");
6550 print_args(args->op.left);
6551 printf(" %s ", args->op.op);
6552 print_args(args->op.right);
6553 if (print_paren)
6554 printf(")");
6555 break;
6556 default:
6557 /* we should warn... */
6558 return;
6559 }
6560 if (args->next) {
6561 printf("\n");
6562 print_args(args->next);
6563 }
6564}
6565
6566static void parse_header_field(const char *field,
6567 int *offset, int *size, int mandatory)
6568{
6569 unsigned long long save_input_buf_ptr;
6570 unsigned long long save_input_buf_siz;
6571 char *token;
6572 int type;
6573
6574 save_input_buf_ptr = input_buf_ptr;
6575 save_input_buf_siz = input_buf_siz;
6576
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04006577 if (read_expected(TEP_EVENT_ITEM, "field") < 0)
Steven Rostedtf7d82352012-04-06 00:47:53 +02006578 return;
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04006579 if (read_expected(TEP_EVENT_OP, ":") < 0)
Steven Rostedtf7d82352012-04-06 00:47:53 +02006580 return;
6581
6582 /* type */
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04006583 if (read_expect_type(TEP_EVENT_ITEM, &token) < 0)
Steven Rostedtf7d82352012-04-06 00:47:53 +02006584 goto fail;
6585 free_token(token);
6586
6587 /*
6588 * If this is not a mandatory field, then test it first.
6589 */
6590 if (mandatory) {
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04006591 if (read_expected(TEP_EVENT_ITEM, field) < 0)
Steven Rostedtf7d82352012-04-06 00:47:53 +02006592 return;
6593 } else {
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04006594 if (read_expect_type(TEP_EVENT_ITEM, &token) < 0)
Steven Rostedtf7d82352012-04-06 00:47:53 +02006595 goto fail;
6596 if (strcmp(token, field) != 0)
6597 goto discard;
6598 free_token(token);
6599 }
6600
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04006601 if (read_expected(TEP_EVENT_OP, ";") < 0)
Steven Rostedtf7d82352012-04-06 00:47:53 +02006602 return;
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04006603 if (read_expected(TEP_EVENT_ITEM, "offset") < 0)
Steven Rostedtf7d82352012-04-06 00:47:53 +02006604 return;
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04006605 if (read_expected(TEP_EVENT_OP, ":") < 0)
Steven Rostedtf7d82352012-04-06 00:47:53 +02006606 return;
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04006607 if (read_expect_type(TEP_EVENT_ITEM, &token) < 0)
Steven Rostedtf7d82352012-04-06 00:47:53 +02006608 goto fail;
6609 *offset = atoi(token);
6610 free_token(token);
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04006611 if (read_expected(TEP_EVENT_OP, ";") < 0)
Steven Rostedtf7d82352012-04-06 00:47:53 +02006612 return;
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04006613 if (read_expected(TEP_EVENT_ITEM, "size") < 0)
Steven Rostedtf7d82352012-04-06 00:47:53 +02006614 return;
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04006615 if (read_expected(TEP_EVENT_OP, ":") < 0)
Steven Rostedtf7d82352012-04-06 00:47:53 +02006616 return;
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04006617 if (read_expect_type(TEP_EVENT_ITEM, &token) < 0)
Steven Rostedtf7d82352012-04-06 00:47:53 +02006618 goto fail;
6619 *size = atoi(token);
6620 free_token(token);
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04006621 if (read_expected(TEP_EVENT_OP, ";") < 0)
Steven Rostedtf7d82352012-04-06 00:47:53 +02006622 return;
6623 type = read_token(&token);
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04006624 if (type != TEP_EVENT_NEWLINE) {
Steven Rostedtf7d82352012-04-06 00:47:53 +02006625 /* newer versions of the kernel have a "signed" type */
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04006626 if (type != TEP_EVENT_ITEM)
Steven Rostedtf7d82352012-04-06 00:47:53 +02006627 goto fail;
6628
6629 if (strcmp(token, "signed") != 0)
6630 goto fail;
6631
6632 free_token(token);
6633
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04006634 if (read_expected(TEP_EVENT_OP, ":") < 0)
Steven Rostedtf7d82352012-04-06 00:47:53 +02006635 return;
6636
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04006637 if (read_expect_type(TEP_EVENT_ITEM, &token))
Steven Rostedtf7d82352012-04-06 00:47:53 +02006638 goto fail;
6639
6640 free_token(token);
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04006641 if (read_expected(TEP_EVENT_OP, ";") < 0)
Steven Rostedtf7d82352012-04-06 00:47:53 +02006642 return;
6643
Tzvetomir Stoyanov (VMware)f25d9e02018-09-19 14:56:47 -04006644 if (read_expect_type(TEP_EVENT_NEWLINE, &token))
Steven Rostedtf7d82352012-04-06 00:47:53 +02006645 goto fail;
6646 }
6647 fail:
6648 free_token(token);
6649 return;
6650
6651 discard:
6652 input_buf_ptr = save_input_buf_ptr;
6653 input_buf_siz = save_input_buf_siz;
6654 *offset = 0;
6655 *size = 0;
6656 free_token(token);
6657}
6658
6659/**
Tzvetomir Stoyanov (VMware)c60167c2018-08-08 14:02:51 -04006660 * tep_parse_header_page - parse the data stored in the header page
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04006661 * @tep: a handle to the trace event parser context
Steven Rostedtf7d82352012-04-06 00:47:53 +02006662 * @buf: the buffer storing the header page format string
6663 * @size: the size of @buf
6664 * @long_size: the long size to use if there is no header
6665 *
6666 * This parses the header page format for information on the
6667 * ring buffer used. The @buf should be copied from
6668 *
6669 * /sys/kernel/debug/tracing/events/header_page
6670 */
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04006671int tep_parse_header_page(struct tep_handle *tep, char *buf, unsigned long size,
Tzvetomir Stoyanov (VMware)c60167c2018-08-08 14:02:51 -04006672 int long_size)
Steven Rostedtf7d82352012-04-06 00:47:53 +02006673{
6674 int ignore;
6675
6676 if (!size) {
6677 /*
6678 * Old kernels did not have header page info.
6679 * Sorry but we just use what we find here in user space.
6680 */
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04006681 tep->header_page_ts_size = sizeof(long long);
6682 tep->header_page_size_size = long_size;
6683 tep->header_page_data_offset = sizeof(long long) + long_size;
6684 tep->old_format = 1;
Steven Rostedtf7d82352012-04-06 00:47:53 +02006685 return -1;
6686 }
6687 init_input_buf(buf, size);
6688
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04006689 parse_header_field("timestamp", &tep->header_page_ts_offset,
6690 &tep->header_page_ts_size, 1);
6691 parse_header_field("commit", &tep->header_page_size_offset,
6692 &tep->header_page_size_size, 1);
6693 parse_header_field("overwrite", &tep->header_page_overwrite,
Steven Rostedtf7d82352012-04-06 00:47:53 +02006694 &ignore, 0);
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04006695 parse_header_field("data", &tep->header_page_data_offset,
6696 &tep->header_page_data_size, 1);
Steven Rostedtf7d82352012-04-06 00:47:53 +02006697
6698 return 0;
6699}
6700
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05006701static int event_matches(struct tep_event *event,
Steven Rostedtf7d82352012-04-06 00:47:53 +02006702 int id, const char *sys_name,
6703 const char *event_name)
6704{
6705 if (id >= 0 && id != event->id)
6706 return 0;
6707
6708 if (event_name && (strcmp(event_name, event->name) != 0))
6709 return 0;
6710
6711 if (sys_name && (strcmp(sys_name, event->system) != 0))
6712 return 0;
6713
6714 return 1;
6715}
6716
6717static void free_handler(struct event_handler *handle)
6718{
6719 free((void *)handle->sys_name);
6720 free((void *)handle->event_name);
6721 free(handle);
6722}
6723
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04006724static int find_event_handle(struct tep_handle *tep, struct tep_event *event)
Steven Rostedtf7d82352012-04-06 00:47:53 +02006725{
6726 struct event_handler *handle, **next;
6727
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04006728 for (next = &tep->handlers; *next;
Steven Rostedtf7d82352012-04-06 00:47:53 +02006729 next = &(*next)->next) {
6730 handle = *next;
6731 if (event_matches(event, handle->id,
6732 handle->sys_name,
6733 handle->event_name))
6734 break;
6735 }
6736
6737 if (!(*next))
6738 return 0;
6739
6740 pr_stat("overriding event (%d) %s:%s with new print handler",
6741 event->id, event->system, event->name);
6742
6743 event->handler = handle->func;
6744 event->context = handle->context;
6745
6746 *next = handle->next;
6747 free_handler(handle);
6748
6749 return 1;
6750}
6751
6752/**
Tzvetomir Stoyanov (VMware)0ae98632018-08-08 14:03:09 -04006753 * __tep_parse_format - parse the event format
Steven Rostedtf7d82352012-04-06 00:47:53 +02006754 * @buf: the buffer storing the event format string
6755 * @size: the size of @buf
6756 * @sys: the system the event belongs to
6757 *
6758 * This parses the event format and creates an event structure
6759 * to quickly parse raw data for a given event.
6760 *
6761 * These files currently come from:
6762 *
6763 * /sys/kernel/debug/tracing/events/.../.../format
6764 */
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05006765enum tep_errno __tep_parse_format(struct tep_event **eventp,
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04006766 struct tep_handle *tep, const char *buf,
Tzvetomir Stoyanov (VMware)0ae98632018-08-08 14:03:09 -04006767 unsigned long size, const char *sys)
Steven Rostedtf7d82352012-04-06 00:47:53 +02006768{
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05006769 struct tep_event *event;
Steven Rostedtf7d82352012-04-06 00:47:53 +02006770 int ret;
6771
6772 init_input_buf(buf, size);
6773
Arnaldo Carvalho de Melo2b291752012-09-18 11:13:15 -03006774 *eventp = event = alloc_event();
Steven Rostedtf7d82352012-04-06 00:47:53 +02006775 if (!event)
Tzvetomir Stoyanov (VMware)d97f4ef2018-08-08 14:02:58 -04006776 return TEP_ERRNO__MEM_ALLOC_FAILED;
Steven Rostedtf7d82352012-04-06 00:47:53 +02006777
6778 event->name = event_read_name();
6779 if (!event->name) {
6780 /* Bad event? */
Tzvetomir Stoyanov (VMware)d97f4ef2018-08-08 14:02:58 -04006781 ret = TEP_ERRNO__MEM_ALLOC_FAILED;
Namhyung Kimbffddff2012-08-22 16:00:29 +09006782 goto event_alloc_failed;
Steven Rostedtf7d82352012-04-06 00:47:53 +02006783 }
6784
6785 if (strcmp(sys, "ftrace") == 0) {
Tzvetomir Stoyanov (VMware)c1953bc2018-09-19 14:56:48 -04006786 event->flags |= TEP_EVENT_FL_ISFTRACE;
Steven Rostedtf7d82352012-04-06 00:47:53 +02006787
6788 if (strcmp(event->name, "bprint") == 0)
Tzvetomir Stoyanov (VMware)c1953bc2018-09-19 14:56:48 -04006789 event->flags |= TEP_EVENT_FL_ISBPRINT;
Steven Rostedtf7d82352012-04-06 00:47:53 +02006790 }
6791
6792 event->id = event_read_id();
Namhyung Kimbffddff2012-08-22 16:00:29 +09006793 if (event->id < 0) {
Tzvetomir Stoyanov (VMware)d97f4ef2018-08-08 14:02:58 -04006794 ret = TEP_ERRNO__READ_ID_FAILED;
Namhyung Kimbffddff2012-08-22 16:00:29 +09006795 /*
6796 * This isn't an allocation error actually.
6797 * But as the ID is critical, just bail out.
6798 */
6799 goto event_alloc_failed;
6800 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02006801
6802 event->system = strdup(sys);
Namhyung Kimbffddff2012-08-22 16:00:29 +09006803 if (!event->system) {
Tzvetomir Stoyanov (VMware)d97f4ef2018-08-08 14:02:58 -04006804 ret = TEP_ERRNO__MEM_ALLOC_FAILED;
Namhyung Kimbffddff2012-08-22 16:00:29 +09006805 goto event_alloc_failed;
6806 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02006807
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04006808 /* Add tep to event so that it can be referenced */
6809 event->tep = tep;
Steven Rostedt101782e2012-10-01 20:13:51 -04006810
Steven Rostedtf7d82352012-04-06 00:47:53 +02006811 ret = event_read_format(event);
6812 if (ret < 0) {
Tzvetomir Stoyanov (VMware)d97f4ef2018-08-08 14:02:58 -04006813 ret = TEP_ERRNO__READ_FORMAT_FAILED;
Namhyung Kimbffddff2012-08-22 16:00:29 +09006814 goto event_parse_failed;
Steven Rostedtf7d82352012-04-06 00:47:53 +02006815 }
6816
6817 /*
6818 * If the event has an override, don't print warnings if the event
6819 * print format fails to parse.
6820 */
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04006821 if (tep && find_event_handle(tep, event))
Steven Rostedtf7d82352012-04-06 00:47:53 +02006822 show_warning = 0;
6823
6824 ret = event_read_print(event);
Arnaldo Carvalho de Melo2b291752012-09-18 11:13:15 -03006825 show_warning = 1;
6826
Steven Rostedtf7d82352012-04-06 00:47:53 +02006827 if (ret < 0) {
Tzvetomir Stoyanov (VMware)d97f4ef2018-08-08 14:02:58 -04006828 ret = TEP_ERRNO__READ_PRINT_FAILED;
Namhyung Kimbffddff2012-08-22 16:00:29 +09006829 goto event_parse_failed;
Steven Rostedtf7d82352012-04-06 00:47:53 +02006830 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02006831
Tzvetomir Stoyanov (VMware)c1953bc2018-09-19 14:56:48 -04006832 if (!ret && (event->flags & TEP_EVENT_FL_ISFTRACE)) {
Tzvetomir Stoyanov (VMware)2c92f982018-09-19 14:56:45 -04006833 struct tep_format_field *field;
Tzvetomir Stoyanov (VMware)5647f942018-09-19 14:56:49 -04006834 struct tep_print_arg *arg, **list;
Steven Rostedtf7d82352012-04-06 00:47:53 +02006835
6836 /* old ftrace had no args */
Steven Rostedtf7d82352012-04-06 00:47:53 +02006837 list = &event->print_fmt.args;
6838 for (field = event->format.fields; field; field = field->next) {
6839 arg = alloc_arg();
Namhyung Kimb1ac7542012-09-20 11:09:19 +09006840 if (!arg) {
Tzvetomir Stoyanov (VMware)c1953bc2018-09-19 14:56:48 -04006841 event->flags |= TEP_EVENT_FL_FAILED;
Tzvetomir Stoyanov (VMware)d97f4ef2018-08-08 14:02:58 -04006842 return TEP_ERRNO__OLD_FTRACE_ARG_FAILED;
Namhyung Kimb1ac7542012-09-20 11:09:19 +09006843 }
Tzvetomir Stoyanov (VMware)1e97216f2018-09-19 14:56:50 -04006844 arg->type = TEP_PRINT_FIELD;
Steven Rostedtf7d82352012-04-06 00:47:53 +02006845 arg->field.name = strdup(field->name);
Namhyung Kimca638582012-04-09 11:54:31 +09006846 if (!arg->field.name) {
Tzvetomir Stoyanov (VMware)c1953bc2018-09-19 14:56:48 -04006847 event->flags |= TEP_EVENT_FL_FAILED;
Namhyung Kimfd34f0b2012-08-22 16:00:28 +09006848 free_arg(arg);
Tzvetomir Stoyanov (VMware)d97f4ef2018-08-08 14:02:58 -04006849 return TEP_ERRNO__OLD_FTRACE_ARG_FAILED;
Namhyung Kimca638582012-04-09 11:54:31 +09006850 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02006851 arg->field.field = field;
Namhyung Kimfd34f0b2012-08-22 16:00:28 +09006852 *list = arg;
6853 list = &arg->next;
Steven Rostedtf7d82352012-04-06 00:47:53 +02006854 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02006855 }
6856
Tzvetomir Stoyanov (VMware)e7a90882020-07-02 14:53:51 -04006857 if (!(event->flags & TEP_EVENT_FL_ISBPRINT))
6858 event->print_fmt.print_cache = parse_args(event,
6859 event->print_fmt.format,
6860 event->print_fmt.args);
6861
Arnaldo Carvalho de Melo2b291752012-09-18 11:13:15 -03006862 return 0;
6863
6864 event_parse_failed:
Tzvetomir Stoyanov (VMware)c1953bc2018-09-19 14:56:48 -04006865 event->flags |= TEP_EVENT_FL_FAILED;
Arnaldo Carvalho de Melo2b291752012-09-18 11:13:15 -03006866 return ret;
6867
6868 event_alloc_failed:
6869 free(event->system);
6870 free(event->name);
6871 free(event);
6872 *eventp = NULL;
6873 return ret;
6874}
6875
Tzvetomir Stoyanov (VMware)d97f4ef2018-08-08 14:02:58 -04006876static enum tep_errno
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04006877__parse_event(struct tep_handle *tep,
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05006878 struct tep_event **eventp,
Tzvetomir Stoyanov (VMware)0ae98632018-08-08 14:03:09 -04006879 const char *buf, unsigned long size,
6880 const char *sys)
Jiri Olsa71ad9582013-12-03 14:09:19 +01006881{
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04006882 int ret = __tep_parse_format(eventp, tep, buf, size, sys);
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05006883 struct tep_event *event = *eventp;
Jiri Olsa71ad9582013-12-03 14:09:19 +01006884
6885 if (event == NULL)
6886 return ret;
6887
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04006888 if (tep && add_event(tep, event)) {
Tzvetomir Stoyanov (VMware)d97f4ef2018-08-08 14:02:58 -04006889 ret = TEP_ERRNO__MEM_ALLOC_FAILED;
Jiri Olsa71ad9582013-12-03 14:09:19 +01006890 goto event_add_failed;
6891 }
6892
6893#define PRINT_ARGS 0
6894 if (PRINT_ARGS && event->print_fmt.args)
6895 print_args(event->print_fmt.args);
6896
6897 return 0;
6898
6899event_add_failed:
Tzvetomir Stoyanovfc398512018-11-30 10:44:08 -05006900 tep_free_event(event);
Jiri Olsa71ad9582013-12-03 14:09:19 +01006901 return ret;
6902}
6903
Arnaldo Carvalho de Melo2b291752012-09-18 11:13:15 -03006904/**
Tzvetomir Stoyanov (VMware)c60167c2018-08-08 14:02:51 -04006905 * tep_parse_format - parse the event format
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04006906 * @tep: a handle to the trace event parser context
Jiri Olsa71ad9582013-12-03 14:09:19 +01006907 * @eventp: returned format
Arnaldo Carvalho de Melo2b291752012-09-18 11:13:15 -03006908 * @buf: the buffer storing the event format string
6909 * @size: the size of @buf
6910 * @sys: the system the event belongs to
6911 *
6912 * This parses the event format and creates an event structure
6913 * to quickly parse raw data for a given event.
6914 *
6915 * These files currently come from:
6916 *
6917 * /sys/kernel/debug/tracing/events/.../.../format
6918 */
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04006919enum tep_errno tep_parse_format(struct tep_handle *tep,
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05006920 struct tep_event **eventp,
Tzvetomir Stoyanov (VMware)d97f4ef2018-08-08 14:02:58 -04006921 const char *buf,
6922 unsigned long size, const char *sys)
Arnaldo Carvalho de Melo2b291752012-09-18 11:13:15 -03006923{
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04006924 return __parse_event(tep, eventp, buf, size, sys);
Arnaldo Carvalho de Melo2b291752012-09-18 11:13:15 -03006925}
6926
6927/**
Tzvetomir Stoyanov (VMware)c60167c2018-08-08 14:02:51 -04006928 * tep_parse_event - parse the event format
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04006929 * @tep: a handle to the trace event parser context
Arnaldo Carvalho de Melo2b291752012-09-18 11:13:15 -03006930 * @buf: the buffer storing the event format string
6931 * @size: the size of @buf
6932 * @sys: the system the event belongs to
6933 *
6934 * This parses the event format and creates an event structure
6935 * to quickly parse raw data for a given event.
6936 *
6937 * These files currently come from:
6938 *
6939 * /sys/kernel/debug/tracing/events/.../.../format
6940 */
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04006941enum tep_errno tep_parse_event(struct tep_handle *tep, const char *buf,
Tzvetomir Stoyanov (VMware)d97f4ef2018-08-08 14:02:58 -04006942 unsigned long size, const char *sys)
Arnaldo Carvalho de Melo2b291752012-09-18 11:13:15 -03006943{
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05006944 struct tep_event *event = NULL;
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04006945 return __parse_event(tep, &event, buf, size, sys);
Steven Rostedtf7d82352012-04-06 00:47:53 +02006946}
6947
Tzvetomir Stoyanov (VMware)2c92f982018-09-19 14:56:45 -04006948int get_field_val(struct trace_seq *s, struct tep_format_field *field,
Tzvetomir Stoyanov (VMware)cbc49b22018-08-08 14:02:47 -04006949 const char *name, struct tep_record *record,
Steven Rostedtf7d82352012-04-06 00:47:53 +02006950 unsigned long long *val, int err)
6951{
6952 if (!field) {
6953 if (err)
6954 trace_seq_printf(s, "<CANT FIND FIELD %s>", name);
6955 return -1;
6956 }
6957
Tzvetomir Stoyanov (VMware)59c1bae2018-08-08 14:02:53 -04006958 if (tep_read_number_field(field, record->data, val)) {
Steven Rostedtf7d82352012-04-06 00:47:53 +02006959 if (err)
6960 trace_seq_printf(s, " %s=INVALID", name);
6961 return -1;
6962 }
6963
6964 return 0;
6965}
6966
6967/**
Tzvetomir Stoyanov (VMware)8b3e0872018-08-08 14:03:04 -04006968 * tep_get_field_raw - return the raw pointer into the data field
Steven Rostedtf7d82352012-04-06 00:47:53 +02006969 * @s: The seq to print to on error
6970 * @event: the event that the field is for
6971 * @name: The name of the field
6972 * @record: The record with the field name.
6973 * @len: place to store the field length.
6974 * @err: print default error if failed.
6975 *
6976 * Returns a pointer into record->data of the field and places
6977 * the length of the field in @len.
6978 *
6979 * On failure, it returns NULL.
6980 */
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05006981void *tep_get_field_raw(struct trace_seq *s, struct tep_event *event,
Tzvetomir Stoyanov (VMware)8b3e0872018-08-08 14:03:04 -04006982 const char *name, struct tep_record *record,
6983 int *len, int err)
Steven Rostedtf7d82352012-04-06 00:47:53 +02006984{
Tzvetomir Stoyanov (VMware)2c92f982018-09-19 14:56:45 -04006985 struct tep_format_field *field;
Steven Rostedtf7d82352012-04-06 00:47:53 +02006986 void *data = record->data;
6987 unsigned offset;
6988 int dummy;
6989
6990 if (!event)
6991 return NULL;
6992
Tzvetomir Stoyanov (VMware)af85cd12018-08-08 14:02:50 -04006993 field = tep_find_field(event, name);
Steven Rostedtf7d82352012-04-06 00:47:53 +02006994
6995 if (!field) {
6996 if (err)
6997 trace_seq_printf(s, "<CANT FIND FIELD %s>", name);
6998 return NULL;
6999 }
7000
7001 /* Allow @len to be NULL */
7002 if (!len)
7003 len = &dummy;
7004
7005 offset = field->offset;
Tzvetomir Stoyanov (VMware)bb39ccb2018-09-19 14:56:46 -04007006 if (field->flags & TEP_FIELD_IS_DYNAMIC) {
Tzvetomir Stoyanov69769ce2019-04-01 12:43:18 -04007007 offset = tep_read_number(event->tep,
7008 data + offset, field->size);
Steven Rostedtf7d82352012-04-06 00:47:53 +02007009 *len = offset >> 16;
7010 offset &= 0xffff;
7011 } else
7012 *len = field->size;
7013
7014 return data + offset;
7015}
7016
7017/**
Tzvetomir Stoyanov (VMware)8b3e0872018-08-08 14:03:04 -04007018 * tep_get_field_val - find a field and return its value
Steven Rostedtf7d82352012-04-06 00:47:53 +02007019 * @s: The seq to print to on error
7020 * @event: the event that the field is for
7021 * @name: The name of the field
7022 * @record: The record with the field name.
7023 * @val: place to store the value of the field.
7024 * @err: print default error if failed.
7025 *
7026 * Returns 0 on success -1 on field not found.
7027 */
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05007028int tep_get_field_val(struct trace_seq *s, struct tep_event *event,
Tzvetomir Stoyanov (VMware)8b3e0872018-08-08 14:03:04 -04007029 const char *name, struct tep_record *record,
7030 unsigned long long *val, int err)
Steven Rostedtf7d82352012-04-06 00:47:53 +02007031{
Tzvetomir Stoyanov (VMware)2c92f982018-09-19 14:56:45 -04007032 struct tep_format_field *field;
Steven Rostedtf7d82352012-04-06 00:47:53 +02007033
7034 if (!event)
7035 return -1;
7036
Tzvetomir Stoyanov (VMware)af85cd12018-08-08 14:02:50 -04007037 field = tep_find_field(event, name);
Steven Rostedtf7d82352012-04-06 00:47:53 +02007038
7039 return get_field_val(s, field, name, record, val, err);
7040}
7041
7042/**
Tzvetomir Stoyanov (VMware)8b3e0872018-08-08 14:03:04 -04007043 * tep_get_common_field_val - find a common field and return its value
Steven Rostedtf7d82352012-04-06 00:47:53 +02007044 * @s: The seq to print to on error
7045 * @event: the event that the field is for
7046 * @name: The name of the field
7047 * @record: The record with the field name.
7048 * @val: place to store the value of the field.
7049 * @err: print default error if failed.
7050 *
7051 * Returns 0 on success -1 on field not found.
7052 */
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05007053int tep_get_common_field_val(struct trace_seq *s, struct tep_event *event,
Tzvetomir Stoyanov (VMware)8b3e0872018-08-08 14:03:04 -04007054 const char *name, struct tep_record *record,
7055 unsigned long long *val, int err)
Steven Rostedtf7d82352012-04-06 00:47:53 +02007056{
Tzvetomir Stoyanov (VMware)2c92f982018-09-19 14:56:45 -04007057 struct tep_format_field *field;
Steven Rostedtf7d82352012-04-06 00:47:53 +02007058
7059 if (!event)
7060 return -1;
7061
Tzvetomir Stoyanov (VMware)af85cd12018-08-08 14:02:50 -04007062 field = tep_find_common_field(event, name);
Steven Rostedtf7d82352012-04-06 00:47:53 +02007063
7064 return get_field_val(s, field, name, record, val, err);
7065}
7066
7067/**
Tzvetomir Stoyanov (VMware)8b3e0872018-08-08 14:03:04 -04007068 * tep_get_any_field_val - find a any field and return its value
Steven Rostedtf7d82352012-04-06 00:47:53 +02007069 * @s: The seq to print to on error
7070 * @event: the event that the field is for
7071 * @name: The name of the field
7072 * @record: The record with the field name.
7073 * @val: place to store the value of the field.
7074 * @err: print default error if failed.
7075 *
7076 * Returns 0 on success -1 on field not found.
7077 */
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05007078int tep_get_any_field_val(struct trace_seq *s, struct tep_event *event,
Tzvetomir Stoyanov (VMware)8b3e0872018-08-08 14:03:04 -04007079 const char *name, struct tep_record *record,
7080 unsigned long long *val, int err)
Steven Rostedtf7d82352012-04-06 00:47:53 +02007081{
Tzvetomir Stoyanov (VMware)2c92f982018-09-19 14:56:45 -04007082 struct tep_format_field *field;
Steven Rostedtf7d82352012-04-06 00:47:53 +02007083
7084 if (!event)
7085 return -1;
7086
Tzvetomir Stoyanov (VMware)af85cd12018-08-08 14:02:50 -04007087 field = tep_find_any_field(event, name);
Steven Rostedtf7d82352012-04-06 00:47:53 +02007088
7089 return get_field_val(s, field, name, record, val, err);
7090}
7091
7092/**
Tzvetomir Stoyanov (VMware)6a48dc22018-08-08 14:02:52 -04007093 * tep_print_num_field - print a field and a format
Steven Rostedtf7d82352012-04-06 00:47:53 +02007094 * @s: The seq to print to
7095 * @fmt: The printf format to print the field with.
7096 * @event: the event that the field is for
7097 * @name: The name of the field
7098 * @record: The record with the field name.
7099 * @err: print default error if failed.
7100 *
Tzvetomir Stoyanov489b3492019-04-01 12:43:10 -04007101 * Returns positive value on success, negative in case of an error,
7102 * or 0 if buffer is full.
Steven Rostedtf7d82352012-04-06 00:47:53 +02007103 */
Tzvetomir Stoyanov (VMware)6a48dc22018-08-08 14:02:52 -04007104int tep_print_num_field(struct trace_seq *s, const char *fmt,
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05007105 struct tep_event *event, const char *name,
Tzvetomir Stoyanov (VMware)6a48dc22018-08-08 14:02:52 -04007106 struct tep_record *record, int err)
Steven Rostedtf7d82352012-04-06 00:47:53 +02007107{
Tzvetomir Stoyanov (VMware)2c92f982018-09-19 14:56:45 -04007108 struct tep_format_field *field = tep_find_field(event, name);
Steven Rostedtf7d82352012-04-06 00:47:53 +02007109 unsigned long long val;
7110
7111 if (!field)
7112 goto failed;
7113
Tzvetomir Stoyanov (VMware)59c1bae2018-08-08 14:02:53 -04007114 if (tep_read_number_field(field, record->data, &val))
Steven Rostedtf7d82352012-04-06 00:47:53 +02007115 goto failed;
7116
7117 return trace_seq_printf(s, fmt, val);
7118
7119 failed:
7120 if (err)
7121 trace_seq_printf(s, "CAN'T FIND FIELD \"%s\"", name);
7122 return -1;
7123}
7124
Steven Rostedt6d862b82013-11-01 17:54:00 -04007125/**
Tzvetomir Stoyanov (VMware)6a48dc22018-08-08 14:02:52 -04007126 * tep_print_func_field - print a field and a format for function pointers
Steven Rostedt6d862b82013-11-01 17:54:00 -04007127 * @s: The seq to print to
7128 * @fmt: The printf format to print the field with.
7129 * @event: the event that the field is for
7130 * @name: The name of the field
7131 * @record: The record with the field name.
7132 * @err: print default error if failed.
7133 *
Tzvetomir Stoyanov489b3492019-04-01 12:43:10 -04007134 * Returns positive value on success, negative in case of an error,
7135 * or 0 if buffer is full.
Steven Rostedt6d862b82013-11-01 17:54:00 -04007136 */
Tzvetomir Stoyanov (VMware)6a48dc22018-08-08 14:02:52 -04007137int tep_print_func_field(struct trace_seq *s, const char *fmt,
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05007138 struct tep_event *event, const char *name,
Tzvetomir Stoyanov (VMware)6a48dc22018-08-08 14:02:52 -04007139 struct tep_record *record, int err)
Steven Rostedt6d862b82013-11-01 17:54:00 -04007140{
Tzvetomir Stoyanov (VMware)2c92f982018-09-19 14:56:45 -04007141 struct tep_format_field *field = tep_find_field(event, name);
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04007142 struct tep_handle *tep = event->tep;
Steven Rostedt6d862b82013-11-01 17:54:00 -04007143 unsigned long long val;
7144 struct func_map *func;
7145 char tmp[128];
7146
7147 if (!field)
7148 goto failed;
7149
Tzvetomir Stoyanov (VMware)59c1bae2018-08-08 14:02:53 -04007150 if (tep_read_number_field(field, record->data, &val))
Steven Rostedt6d862b82013-11-01 17:54:00 -04007151 goto failed;
7152
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04007153 func = find_func(tep, val);
Steven Rostedt6d862b82013-11-01 17:54:00 -04007154
7155 if (func)
7156 snprintf(tmp, 128, "%s/0x%llx", func->func, func->addr - val);
7157 else
7158 sprintf(tmp, "0x%08llx", val);
7159
7160 return trace_seq_printf(s, fmt, tmp);
7161
7162 failed:
7163 if (err)
7164 trace_seq_printf(s, "CAN'T FIND FIELD \"%s\"", name);
7165 return -1;
7166}
7167
Tzvetomir Stoyanov (VMware)3cf47782018-08-08 14:02:59 -04007168static void free_func_handle(struct tep_function_handler *func)
Steven Rostedtf7d82352012-04-06 00:47:53 +02007169{
Tzvetomir Stoyanov (VMware)0ae98632018-08-08 14:03:09 -04007170 struct func_params *params;
Steven Rostedtf7d82352012-04-06 00:47:53 +02007171
7172 free(func->name);
7173
7174 while (func->params) {
7175 params = func->params;
7176 func->params = params->next;
7177 free(params);
7178 }
7179
7180 free(func);
7181}
7182
7183/**
Tzvetomir Stoyanov (VMware)b843e9c2018-08-08 14:03:02 -04007184 * tep_register_print_function - register a helper function
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04007185 * @tep: a handle to the trace event parser context
Steven Rostedtf7d82352012-04-06 00:47:53 +02007186 * @func: the function to process the helper function
Namhyung Kim16e6b8f2012-04-23 13:58:35 +09007187 * @ret_type: the return type of the helper function
Steven Rostedtf7d82352012-04-06 00:47:53 +02007188 * @name: the name of the helper function
Tzvetomir Stoyanov (VMware)3cf47782018-08-08 14:02:59 -04007189 * @parameters: A list of enum tep_func_arg_type
Steven Rostedtf7d82352012-04-06 00:47:53 +02007190 *
7191 * Some events may have helper functions in the print format arguments.
Namhyung Kim16e6b8f2012-04-23 13:58:35 +09007192 * This allows a plugin to dynamically create a way to process one
Steven Rostedtf7d82352012-04-06 00:47:53 +02007193 * of these functions.
7194 *
Tzvetomir Stoyanov (VMware)3cf47782018-08-08 14:02:59 -04007195 * The @parameters is a variable list of tep_func_arg_type enums that
7196 * must end with TEP_FUNC_ARG_VOID.
Steven Rostedtf7d82352012-04-06 00:47:53 +02007197 */
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04007198int tep_register_print_function(struct tep_handle *tep,
Tzvetomir Stoyanov (VMware)b843e9c2018-08-08 14:03:02 -04007199 tep_func_handler func,
7200 enum tep_func_arg_type ret_type,
7201 char *name, ...)
Steven Rostedtf7d82352012-04-06 00:47:53 +02007202{
Tzvetomir Stoyanov (VMware)3cf47782018-08-08 14:02:59 -04007203 struct tep_function_handler *func_handle;
Tzvetomir Stoyanov (VMware)0ae98632018-08-08 14:03:09 -04007204 struct func_params **next_param;
7205 struct func_params *param;
Tzvetomir Stoyanov (VMware)3cf47782018-08-08 14:02:59 -04007206 enum tep_func_arg_type type;
Steven Rostedtf7d82352012-04-06 00:47:53 +02007207 va_list ap;
Namhyung Kim67ed9392012-09-07 11:49:47 +09007208 int ret;
Steven Rostedtf7d82352012-04-06 00:47:53 +02007209
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04007210 func_handle = find_func_handler(tep, name);
Steven Rostedtf7d82352012-04-06 00:47:53 +02007211 if (func_handle) {
7212 /*
7213 * This is most like caused by the users own
7214 * plugins updating the function. This overrides the
7215 * system defaults.
7216 */
7217 pr_stat("override of function helper '%s'", name);
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04007218 remove_func_handler(tep, name);
Steven Rostedtf7d82352012-04-06 00:47:53 +02007219 }
7220
Arnaldo Carvalho de Melo87162d82012-09-12 15:39:59 -03007221 func_handle = calloc(1, sizeof(*func_handle));
Namhyung Kim67ed9392012-09-07 11:49:47 +09007222 if (!func_handle) {
7223 do_warning("Failed to allocate function handler");
Tzvetomir Stoyanov (VMware)d97f4ef2018-08-08 14:02:58 -04007224 return TEP_ERRNO__MEM_ALLOC_FAILED;
Namhyung Kim67ed9392012-09-07 11:49:47 +09007225 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02007226
7227 func_handle->ret_type = ret_type;
7228 func_handle->name = strdup(name);
7229 func_handle->func = func;
Namhyung Kim67ed9392012-09-07 11:49:47 +09007230 if (!func_handle->name) {
7231 do_warning("Failed to allocate function name");
7232 free(func_handle);
Tzvetomir Stoyanov (VMware)d97f4ef2018-08-08 14:02:58 -04007233 return TEP_ERRNO__MEM_ALLOC_FAILED;
Namhyung Kim67ed9392012-09-07 11:49:47 +09007234 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02007235
7236 next_param = &(func_handle->params);
7237 va_start(ap, name);
7238 for (;;) {
Tzvetomir Stoyanov (VMware)3cf47782018-08-08 14:02:59 -04007239 type = va_arg(ap, enum tep_func_arg_type);
7240 if (type == TEP_FUNC_ARG_VOID)
Steven Rostedtf7d82352012-04-06 00:47:53 +02007241 break;
7242
Tzvetomir Stoyanov (VMware)3cf47782018-08-08 14:02:59 -04007243 if (type >= TEP_FUNC_ARG_MAX_TYPES) {
Namhyung Kim67ed9392012-09-07 11:49:47 +09007244 do_warning("Invalid argument type %d", type);
Tzvetomir Stoyanov (VMware)d97f4ef2018-08-08 14:02:58 -04007245 ret = TEP_ERRNO__INVALID_ARG_TYPE;
Steven Rostedtf7d82352012-04-06 00:47:53 +02007246 goto out_free;
7247 }
7248
Namhyung Kim67ed9392012-09-07 11:49:47 +09007249 param = malloc(sizeof(*param));
7250 if (!param) {
7251 do_warning("Failed to allocate function param");
Tzvetomir Stoyanov (VMware)d97f4ef2018-08-08 14:02:58 -04007252 ret = TEP_ERRNO__MEM_ALLOC_FAILED;
Namhyung Kim67ed9392012-09-07 11:49:47 +09007253 goto out_free;
7254 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02007255 param->type = type;
7256 param->next = NULL;
7257
7258 *next_param = param;
7259 next_param = &(param->next);
7260
7261 func_handle->nr_args++;
7262 }
7263 va_end(ap);
7264
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04007265 func_handle->next = tep->func_handlers;
7266 tep->func_handlers = func_handle;
Steven Rostedtf7d82352012-04-06 00:47:53 +02007267
7268 return 0;
7269 out_free:
7270 va_end(ap);
7271 free_func_handle(func_handle);
Namhyung Kim67ed9392012-09-07 11:49:47 +09007272 return ret;
Steven Rostedtf7d82352012-04-06 00:47:53 +02007273}
7274
Namhyung Kim20c7e5a2014-01-16 11:31:08 +09007275/**
Tzvetomir Stoyanov (VMware)b843e9c2018-08-08 14:03:02 -04007276 * tep_unregister_print_function - unregister a helper function
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04007277 * @tep: a handle to the trace event parser context
Namhyung Kim20c7e5a2014-01-16 11:31:08 +09007278 * @func: the function to process the helper function
7279 * @name: the name of the helper function
7280 *
7281 * This function removes existing print handler for function @name.
7282 *
7283 * Returns 0 if the handler was removed successully, -1 otherwise.
7284 */
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04007285int tep_unregister_print_function(struct tep_handle *tep,
Tzvetomir Stoyanov (VMware)b843e9c2018-08-08 14:03:02 -04007286 tep_func_handler func, char *name)
Namhyung Kim20c7e5a2014-01-16 11:31:08 +09007287{
Tzvetomir Stoyanov (VMware)3cf47782018-08-08 14:02:59 -04007288 struct tep_function_handler *func_handle;
Namhyung Kim20c7e5a2014-01-16 11:31:08 +09007289
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04007290 func_handle = find_func_handler(tep, name);
Namhyung Kim20c7e5a2014-01-16 11:31:08 +09007291 if (func_handle && func_handle->func == func) {
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04007292 remove_func_handler(tep, name);
Namhyung Kim20c7e5a2014-01-16 11:31:08 +09007293 return 0;
7294 }
7295 return -1;
7296}
7297
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04007298static struct tep_event *search_event(struct tep_handle *tep, int id,
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05007299 const char *sys_name,
7300 const char *event_name)
Namhyung Kimad137012014-01-16 11:31:07 +09007301{
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05007302 struct tep_event *event;
Namhyung Kimad137012014-01-16 11:31:07 +09007303
7304 if (id >= 0) {
7305 /* search by id */
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04007306 event = tep_find_event(tep, id);
Namhyung Kimad137012014-01-16 11:31:07 +09007307 if (!event)
7308 return NULL;
7309 if (event_name && (strcmp(event_name, event->name) != 0))
7310 return NULL;
7311 if (sys_name && (strcmp(sys_name, event->system) != 0))
7312 return NULL;
7313 } else {
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04007314 event = tep_find_event_by_name(tep, sys_name, event_name);
Namhyung Kimad137012014-01-16 11:31:07 +09007315 if (!event)
7316 return NULL;
7317 }
7318 return event;
7319}
7320
Steven Rostedtf7d82352012-04-06 00:47:53 +02007321/**
Tzvetomir Stoyanov (VMware)b843e9c2018-08-08 14:03:02 -04007322 * tep_register_event_handler - register a way to parse an event
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04007323 * @tep: a handle to the trace event parser context
Steven Rostedtf7d82352012-04-06 00:47:53 +02007324 * @id: the id of the event to register
7325 * @sys_name: the system name the event belongs to
7326 * @event_name: the name of the event
7327 * @func: the function to call to parse the event information
Namhyung Kim16e6b8f2012-04-23 13:58:35 +09007328 * @context: the data to be passed to @func
Steven Rostedtf7d82352012-04-06 00:47:53 +02007329 *
7330 * This function allows a developer to override the parsing of
7331 * a given event. If for some reason the default print format
7332 * is not sufficient, this function will register a function
7333 * for an event to be used to parse the data instead.
7334 *
7335 * If @id is >= 0, then it is used to find the event.
7336 * else @sys_name and @event_name are used.
Tzvetomir Stoyanovf87ce7c2018-11-30 23:08:11 -05007337 *
7338 * Returns:
7339 * TEP_REGISTER_SUCCESS_OVERWRITE if an existing handler is overwritten
7340 * TEP_REGISTER_SUCCESS if a new handler is registered successfully
7341 * negative TEP_ERRNO_... in case of an error
7342 *
Steven Rostedtf7d82352012-04-06 00:47:53 +02007343 */
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04007344int tep_register_event_handler(struct tep_handle *tep, int id,
Tzvetomir Stoyanov (VMware)b843e9c2018-08-08 14:03:02 -04007345 const char *sys_name, const char *event_name,
7346 tep_event_handler_func func, void *context)
Steven Rostedtf7d82352012-04-06 00:47:53 +02007347{
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05007348 struct tep_event *event;
Steven Rostedtf7d82352012-04-06 00:47:53 +02007349 struct event_handler *handle;
7350
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04007351 event = search_event(tep, id, sys_name, event_name);
Namhyung Kimad137012014-01-16 11:31:07 +09007352 if (event == NULL)
7353 goto not_found;
Steven Rostedtf7d82352012-04-06 00:47:53 +02007354
7355 pr_stat("overriding event (%d) %s:%s with new print handler",
7356 event->id, event->system, event->name);
7357
7358 event->handler = func;
7359 event->context = context;
Tzvetomir Stoyanovf87ce7c2018-11-30 23:08:11 -05007360 return TEP_REGISTER_SUCCESS_OVERWRITE;
Steven Rostedtf7d82352012-04-06 00:47:53 +02007361
7362 not_found:
7363 /* Save for later use. */
Arnaldo Carvalho de Melo87162d82012-09-12 15:39:59 -03007364 handle = calloc(1, sizeof(*handle));
Namhyung Kim0ca8da02012-09-07 11:49:46 +09007365 if (!handle) {
7366 do_warning("Failed to allocate event handler");
Tzvetomir Stoyanov (VMware)d97f4ef2018-08-08 14:02:58 -04007367 return TEP_ERRNO__MEM_ALLOC_FAILED;
Namhyung Kim0ca8da02012-09-07 11:49:46 +09007368 }
7369
Steven Rostedtf7d82352012-04-06 00:47:53 +02007370 handle->id = id;
7371 if (event_name)
7372 handle->event_name = strdup(event_name);
7373 if (sys_name)
7374 handle->sys_name = strdup(sys_name);
7375
Namhyung Kimca638582012-04-09 11:54:31 +09007376 if ((event_name && !handle->event_name) ||
7377 (sys_name && !handle->sys_name)) {
Namhyung Kim0ca8da02012-09-07 11:49:46 +09007378 do_warning("Failed to allocate event/sys name");
7379 free((void *)handle->event_name);
7380 free((void *)handle->sys_name);
7381 free(handle);
Tzvetomir Stoyanov (VMware)d97f4ef2018-08-08 14:02:58 -04007382 return TEP_ERRNO__MEM_ALLOC_FAILED;
Namhyung Kimca638582012-04-09 11:54:31 +09007383 }
7384
Steven Rostedtf7d82352012-04-06 00:47:53 +02007385 handle->func = func;
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04007386 handle->next = tep->handlers;
7387 tep->handlers = handle;
Steven Rostedtf7d82352012-04-06 00:47:53 +02007388 handle->context = context;
7389
Tzvetomir Stoyanovf87ce7c2018-11-30 23:08:11 -05007390 return TEP_REGISTER_SUCCESS;
Steven Rostedtf7d82352012-04-06 00:47:53 +02007391}
7392
Namhyung Kimad137012014-01-16 11:31:07 +09007393static int handle_matches(struct event_handler *handler, int id,
7394 const char *sys_name, const char *event_name,
Tzvetomir Stoyanov (VMware)c32d52b2018-08-08 14:02:48 -04007395 tep_event_handler_func func, void *context)
Namhyung Kimad137012014-01-16 11:31:07 +09007396{
7397 if (id >= 0 && id != handler->id)
7398 return 0;
7399
7400 if (event_name && (strcmp(event_name, handler->event_name) != 0))
7401 return 0;
7402
7403 if (sys_name && (strcmp(sys_name, handler->sys_name) != 0))
7404 return 0;
7405
7406 if (func != handler->func || context != handler->context)
7407 return 0;
7408
7409 return 1;
7410}
7411
7412/**
Tzvetomir Stoyanov (VMware)b843e9c2018-08-08 14:03:02 -04007413 * tep_unregister_event_handler - unregister an existing event handler
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04007414 * @tep: a handle to the trace event parser context
Namhyung Kimad137012014-01-16 11:31:07 +09007415 * @id: the id of the event to unregister
7416 * @sys_name: the system name the handler belongs to
7417 * @event_name: the name of the event handler
7418 * @func: the function to call to parse the event information
7419 * @context: the data to be passed to @func
7420 *
7421 * This function removes existing event handler (parser).
7422 *
7423 * If @id is >= 0, then it is used to find the event.
7424 * else @sys_name and @event_name are used.
7425 *
7426 * Returns 0 if handler was removed successfully, -1 if event was not found.
7427 */
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04007428int tep_unregister_event_handler(struct tep_handle *tep, int id,
Tzvetomir Stoyanov (VMware)b843e9c2018-08-08 14:03:02 -04007429 const char *sys_name, const char *event_name,
7430 tep_event_handler_func func, void *context)
Namhyung Kimad137012014-01-16 11:31:07 +09007431{
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05007432 struct tep_event *event;
Namhyung Kimad137012014-01-16 11:31:07 +09007433 struct event_handler *handle;
7434 struct event_handler **next;
7435
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04007436 event = search_event(tep, id, sys_name, event_name);
Namhyung Kimad137012014-01-16 11:31:07 +09007437 if (event == NULL)
7438 goto not_found;
7439
7440 if (event->handler == func && event->context == context) {
7441 pr_stat("removing override handler for event (%d) %s:%s. Going back to default handler.",
7442 event->id, event->system, event->name);
7443
7444 event->handler = NULL;
7445 event->context = NULL;
7446 return 0;
7447 }
7448
7449not_found:
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04007450 for (next = &tep->handlers; *next; next = &(*next)->next) {
Namhyung Kimad137012014-01-16 11:31:07 +09007451 handle = *next;
7452 if (handle_matches(handle, id, sys_name, event_name,
7453 func, context))
7454 break;
7455 }
7456
7457 if (!(*next))
7458 return -1;
7459
7460 *next = handle->next;
7461 free_handler(handle);
7462
7463 return 0;
7464}
7465
Steven Rostedtf7d82352012-04-06 00:47:53 +02007466/**
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04007467 * tep_alloc - create a tep handle
Steven Rostedtf7d82352012-04-06 00:47:53 +02007468 */
Tzvetomir Stoyanov (VMware)4d5c58b2018-08-08 14:02:49 -04007469struct tep_handle *tep_alloc(void)
Steven Rostedtf7d82352012-04-06 00:47:53 +02007470{
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04007471 struct tep_handle *tep = calloc(1, sizeof(*tep));
Steven Rostedtf7d82352012-04-06 00:47:53 +02007472
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04007473 if (tep) {
7474 tep->ref_count = 1;
7475 tep->host_bigendian = tep_is_bigendian();
Tzvetomir Stoyanoveed14f42018-11-30 23:08:08 -05007476 }
Steven Rostedtf7d82352012-04-06 00:47:53 +02007477
Tzvetomir Stoyanovc9bd7792019-04-01 12:43:20 -04007478 return tep;
Steven Rostedtf7d82352012-04-06 00:47:53 +02007479}
7480
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04007481void tep_ref(struct tep_handle *tep)
Steven Rostedtf7d82352012-04-06 00:47:53 +02007482{
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04007483 tep->ref_count++;
Steven Rostedtf7d82352012-04-06 00:47:53 +02007484}
7485
Tzvetomir Stoyanov477be102018-11-30 10:44:04 -05007486int tep_get_ref(struct tep_handle *tep)
7487{
7488 if (tep)
7489 return tep->ref_count;
7490 return 0;
7491}
7492
Tzvetomir Stoyanov (VMware)2c92f982018-09-19 14:56:45 -04007493void tep_free_format_field(struct tep_format_field *field)
David Ahern00ae1122015-03-19 12:36:21 -06007494{
7495 free(field->type);
Jiri Olsad3542432015-04-18 17:50:18 +02007496 if (field->alias != field->name)
7497 free(field->alias);
David Ahern00ae1122015-03-19 12:36:21 -06007498 free(field->name);
7499 free(field);
7500}
7501
Tzvetomir Stoyanov (VMware)2c92f982018-09-19 14:56:45 -04007502static void free_format_fields(struct tep_format_field *field)
Steven Rostedtf7d82352012-04-06 00:47:53 +02007503{
Tzvetomir Stoyanov (VMware)2c92f982018-09-19 14:56:45 -04007504 struct tep_format_field *next;
Steven Rostedtf7d82352012-04-06 00:47:53 +02007505
7506 while (field) {
7507 next = field->next;
Tzvetomir Stoyanov (VMware)8b3e0872018-08-08 14:03:04 -04007508 tep_free_format_field(field);
Steven Rostedtf7d82352012-04-06 00:47:53 +02007509 field = next;
7510 }
7511}
7512
Tzvetomir Stoyanov (VMware)2c92f982018-09-19 14:56:45 -04007513static void free_formats(struct tep_format *format)
Steven Rostedtf7d82352012-04-06 00:47:53 +02007514{
7515 free_format_fields(format->common_fields);
7516 free_format_fields(format->fields);
7517}
7518
Tzvetomir Stoyanovfc398512018-11-30 10:44:08 -05007519void tep_free_event(struct tep_event *event)
Steven Rostedtf7d82352012-04-06 00:47:53 +02007520{
7521 free(event->name);
7522 free(event->system);
7523
7524 free_formats(&event->format);
7525
7526 free(event->print_fmt.format);
7527 free_args(event->print_fmt.args);
Tzvetomir Stoyanov (VMware)e7a90882020-07-02 14:53:51 -04007528 free_parse_args(event->print_fmt.print_cache);
Steven Rostedtf7d82352012-04-06 00:47:53 +02007529 free(event);
7530}
7531
7532/**
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04007533 * tep_free - free a tep handle
7534 * @tep: the tep handle to free
Steven Rostedtf7d82352012-04-06 00:47:53 +02007535 */
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04007536void tep_free(struct tep_handle *tep)
Steven Rostedtf7d82352012-04-06 00:47:53 +02007537{
Steven Rostedta2525a02012-04-06 00:48:02 +02007538 struct cmdline_list *cmdlist, *cmdnext;
7539 struct func_list *funclist, *funcnext;
7540 struct printk_list *printklist, *printknext;
Tzvetomir Stoyanov (VMware)3cf47782018-08-08 14:02:59 -04007541 struct tep_function_handler *func_handler;
Steven Rostedtf7d82352012-04-06 00:47:53 +02007542 struct event_handler *handle;
7543 int i;
7544
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04007545 if (!tep)
Steven Rostedta2525a02012-04-06 00:48:02 +02007546 return;
7547
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04007548 cmdlist = tep->cmdlist;
7549 funclist = tep->funclist;
7550 printklist = tep->printklist;
Steven Rostedta2525a02012-04-06 00:48:02 +02007551
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04007552 tep->ref_count--;
7553 if (tep->ref_count)
Steven Rostedtf7d82352012-04-06 00:47:53 +02007554 return;
7555
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04007556 if (tep->cmdlines) {
7557 for (i = 0; i < tep->cmdline_count; i++)
7558 free(tep->cmdlines[i].comm);
7559 free(tep->cmdlines);
Steven Rostedtf7d82352012-04-06 00:47:53 +02007560 }
7561
7562 while (cmdlist) {
7563 cmdnext = cmdlist->next;
7564 free(cmdlist->comm);
7565 free(cmdlist);
7566 cmdlist = cmdnext;
7567 }
7568
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04007569 if (tep->func_map) {
7570 for (i = 0; i < (int)tep->func_count; i++) {
7571 free(tep->func_map[i].func);
7572 free(tep->func_map[i].mod);
Steven Rostedtf7d82352012-04-06 00:47:53 +02007573 }
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04007574 free(tep->func_map);
Steven Rostedtf7d82352012-04-06 00:47:53 +02007575 }
7576
7577 while (funclist) {
7578 funcnext = funclist->next;
7579 free(funclist->func);
7580 free(funclist->mod);
7581 free(funclist);
7582 funclist = funcnext;
7583 }
7584
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04007585 while (tep->func_handlers) {
7586 func_handler = tep->func_handlers;
7587 tep->func_handlers = func_handler->next;
Steven Rostedtf7d82352012-04-06 00:47:53 +02007588 free_func_handle(func_handler);
7589 }
7590
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04007591 if (tep->printk_map) {
7592 for (i = 0; i < (int)tep->printk_count; i++)
7593 free(tep->printk_map[i].printk);
7594 free(tep->printk_map);
Steven Rostedtf7d82352012-04-06 00:47:53 +02007595 }
7596
7597 while (printklist) {
7598 printknext = printklist->next;
7599 free(printklist->printk);
7600 free(printklist);
7601 printklist = printknext;
7602 }
7603
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04007604 for (i = 0; i < tep->nr_events; i++)
7605 tep_free_event(tep->events[i]);
Steven Rostedtf7d82352012-04-06 00:47:53 +02007606
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04007607 while (tep->handlers) {
7608 handle = tep->handlers;
7609 tep->handlers = handle->next;
Steven Rostedtf7d82352012-04-06 00:47:53 +02007610 free_handler(handle);
7611 }
7612
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04007613 free(tep->events);
7614 free(tep->sort_events);
7615 free(tep->func_resolver);
Tzvetomir Stoyanov (VMware)4d70cae2020-07-02 14:53:49 -04007616 tep_free_plugin_paths(tep);
Steven Rostedtf7d82352012-04-06 00:47:53 +02007617
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04007618 free(tep);
Steven Rostedtf7d82352012-04-06 00:47:53 +02007619}
7620
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04007621void tep_unref(struct tep_handle *tep)
Steven Rostedtf7d82352012-04-06 00:47:53 +02007622{
Tzvetomir Stoyanov047ff222019-04-01 12:43:17 -04007623 tep_free(tep);
Steven Rostedtf7d82352012-04-06 00:47:53 +02007624}