blob: 2f4996ab313d928145b4cae003018de40ca1b218 [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>
Jiri Olsa592d5a62015-09-02 09:56:34 +020011#include <api/fs/tracing_path.h>
Jiri Olsa29f5ffd2013-12-03 14:09:23 +010012#include "trace-event.h"
Arnaldo Carvalho de Meloc3168b02015-07-22 16:14:29 -030013#include "machine.h"
Jiri Olsa97978b32013-12-03 14:09:24 +010014#include "util.h"
15
16/*
17 * global trace_event object used by trace_event__tp_format
18 *
19 * TODO There's no cleanup call for this. Add some sort of
20 * __exit function support and call trace_event__cleanup
21 * there.
22 */
23static struct trace_event tevent;
Arnaldo Carvalho de Meloc3168b02015-07-22 16:14:29 -030024static bool tevent_initialized;
Jiri Olsa29f5ffd2013-12-03 14:09:23 +010025
26int trace_event__init(struct trace_event *t)
27{
28 struct pevent *pevent = pevent_alloc();
29
30 if (pevent) {
31 t->plugin_list = traceevent_load_plugins(pevent);
32 t->pevent = pevent;
33 }
34
35 return pevent ? 0 : -1;
36}
37
Arnaldo Carvalho de Meloc3168b02015-07-22 16:14:29 -030038static int trace_event__init2(void)
39{
40 int be = traceevent_host_bigendian();
41 struct pevent *pevent;
42
43 if (trace_event__init(&tevent))
44 return -1;
45
46 pevent = tevent.pevent;
47 pevent_set_flag(pevent, PEVENT_NSEC_OUTPUT);
48 pevent_set_file_bigendian(pevent, be);
49 pevent_set_host_bigendian(pevent, be);
50 tevent_initialized = true;
51 return 0;
52}
53
Arnaldo Carvalho de Melo959c2192015-07-24 12:13:05 -030054int trace_event__register_resolver(struct machine *machine,
55 pevent_func_resolver_t *func)
Arnaldo Carvalho de Meloc3168b02015-07-22 16:14:29 -030056{
57 if (!tevent_initialized && trace_event__init2())
58 return -1;
59
Arnaldo Carvalho de Melo959c2192015-07-24 12:13:05 -030060 return pevent_set_function_resolver(tevent.pevent, func, machine);
Arnaldo Carvalho de Meloc3168b02015-07-22 16:14:29 -030061}
62
Jiri Olsa29f5ffd2013-12-03 14:09:23 +010063void trace_event__cleanup(struct trace_event *t)
64{
Namhyung Kim8d0c2222014-01-15 10:45:28 +090065 traceevent_unload_plugins(t->plugin_list, t->pevent);
Jiri Olsa29f5ffd2013-12-03 14:09:23 +010066 pevent_free(t->pevent);
Jiri Olsa29f5ffd2013-12-03 14:09:23 +010067}
Jiri Olsa97978b32013-12-03 14:09:24 +010068
69static struct event_format*
70tp_format(const char *sys, const char *name)
71{
72 struct pevent *pevent = tevent.pevent;
73 struct event_format *event = NULL;
74 char path[PATH_MAX];
75 size_t size;
76 char *data;
77
78 scnprintf(path, PATH_MAX, "%s/%s/%s/format",
79 tracing_events_path, sys, name);
80
81 if (filename__read_str(path, &data, &size))
82 return NULL;
83
84 pevent_parse_format(pevent, &event, data, size, sys);
85
86 free(data);
87 return event;
88}
89
90struct event_format*
91trace_event__tp_format(const char *sys, const char *name)
92{
Arnaldo Carvalho de Meloc3168b02015-07-22 16:14:29 -030093 if (!tevent_initialized && trace_event__init2())
94 return NULL;
Jiri Olsa97978b32013-12-03 14:09:24 +010095
96 return tp_format(sys, name);
97}