blob: b90e646c7a91c399ea23f1f23c49991e5e8511d3 [file] [log] [blame]
Jiri Olsa29f5ffd2013-12-03 14:09:23 +01001
Jiri Olsa97978b32013-12-03 14:09:24 +01002#include <stdio.h>
3#include <unistd.h>
4#include <stdlib.h>
5#include <errno.h>
6#include <sys/types.h>
7#include <sys/stat.h>
8#include <fcntl.h>
9#include <linux/kernel.h>
Jiri Olsa29f5ffd2013-12-03 14:09:23 +010010#include <traceevent/event-parse.h>
11#include "trace-event.h"
Arnaldo Carvalho de Meloc3168b02015-07-22 16:14:29 -030012#include "machine.h"
Jiri Olsa97978b32013-12-03 14:09:24 +010013#include "util.h"
14
15/*
16 * global trace_event object used by trace_event__tp_format
17 *
18 * TODO There's no cleanup call for this. Add some sort of
19 * __exit function support and call trace_event__cleanup
20 * there.
21 */
22static struct trace_event tevent;
Arnaldo Carvalho de Meloc3168b02015-07-22 16:14:29 -030023static bool tevent_initialized;
Jiri Olsa29f5ffd2013-12-03 14:09:23 +010024
25int trace_event__init(struct trace_event *t)
26{
27 struct pevent *pevent = pevent_alloc();
28
29 if (pevent) {
30 t->plugin_list = traceevent_load_plugins(pevent);
31 t->pevent = pevent;
32 }
33
34 return pevent ? 0 : -1;
35}
36
Arnaldo Carvalho de Meloc3168b02015-07-22 16:14:29 -030037static int trace_event__init2(void)
38{
39 int be = traceevent_host_bigendian();
40 struct pevent *pevent;
41
42 if (trace_event__init(&tevent))
43 return -1;
44
45 pevent = tevent.pevent;
46 pevent_set_flag(pevent, PEVENT_NSEC_OUTPUT);
47 pevent_set_file_bigendian(pevent, be);
48 pevent_set_host_bigendian(pevent, be);
49 tevent_initialized = true;
50 return 0;
51}
52
Arnaldo Carvalho de Melo959c2192015-07-24 12:13:05 -030053int trace_event__register_resolver(struct machine *machine,
54 pevent_func_resolver_t *func)
Arnaldo Carvalho de Meloc3168b02015-07-22 16:14:29 -030055{
56 if (!tevent_initialized && trace_event__init2())
57 return -1;
58
Arnaldo Carvalho de Melo959c2192015-07-24 12:13:05 -030059 return pevent_set_function_resolver(tevent.pevent, func, machine);
Arnaldo Carvalho de Meloc3168b02015-07-22 16:14:29 -030060}
61
Jiri Olsa29f5ffd2013-12-03 14:09:23 +010062void trace_event__cleanup(struct trace_event *t)
63{
Namhyung Kim8d0c2222014-01-15 10:45:28 +090064 traceevent_unload_plugins(t->plugin_list, t->pevent);
Jiri Olsa29f5ffd2013-12-03 14:09:23 +010065 pevent_free(t->pevent);
Jiri Olsa29f5ffd2013-12-03 14:09:23 +010066}
Jiri Olsa97978b32013-12-03 14:09:24 +010067
68static struct event_format*
69tp_format(const char *sys, const char *name)
70{
71 struct pevent *pevent = tevent.pevent;
72 struct event_format *event = NULL;
73 char path[PATH_MAX];
74 size_t size;
75 char *data;
76
77 scnprintf(path, PATH_MAX, "%s/%s/%s/format",
78 tracing_events_path, sys, name);
79
80 if (filename__read_str(path, &data, &size))
81 return NULL;
82
83 pevent_parse_format(pevent, &event, data, size, sys);
84
85 free(data);
86 return event;
87}
88
89struct event_format*
90trace_event__tp_format(const char *sys, const char *name)
91{
Arnaldo Carvalho de Meloc3168b02015-07-22 16:14:29 -030092 if (!tevent_initialized && trace_event__init2())
93 return NULL;
Jiri Olsa97978b32013-12-03 14:09:24 +010094
95 return tp_format(sys, name);
96}