2 * Copyright (C) 2011 - David Goulet <david.goulet@polymtl.ca>
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; only version 2
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
25 #include <sys/types.h>
34 static char *opt_event_list
;
35 static int opt_event_type
;
36 static char *opt_kernel
;
37 static char *opt_cmd_name
;
38 static char *opt_session_name
;
39 static int opt_pid_all
;
40 static int opt_userspace
;
41 static int opt_enable_all
;
43 static char *opt_probe
;
44 static char *opt_function
;
45 static char *opt_function_entry_symbol
;
46 static char *opt_channel_name
;
58 static struct poptOption long_options
[] = {
59 /* longName, shortName, argInfo, argPtr, value, descrip, argDesc */
60 {"help", 'h', POPT_ARG_NONE
, 0, OPT_HELP
, 0, 0},
61 {"session", 's', POPT_ARG_STRING
, &opt_session_name
, 0, 0, 0},
62 {"all-events", 'a', POPT_ARG_VAL
, &opt_enable_all
, 1, 0, 0},
63 {"channel", 'c', POPT_ARG_STRING
, &opt_channel_name
, 0, 0, 0},
64 {"kernel", 'k', POPT_ARG_VAL
, &opt_kernel
, 1, 0, 0},
65 {"userspace", 'u', POPT_ARG_STRING
| POPT_ARGFLAG_OPTIONAL
, 0, OPT_USERSPACE
, 0, 0},
66 {"all", 0, POPT_ARG_VAL
, &opt_pid_all
, 1, 0, 0},
67 {"pid", 'p', POPT_ARG_INT
, &opt_pid
, 0, 0, 0},
68 {"tracepoint", 0, POPT_ARG_NONE
, 0, OPT_TRACEPOINT
, 0, 0},
69 {"marker", 0, POPT_ARG_NONE
, 0, OPT_MARKER
, 0, 0},
70 {"probe", 0, POPT_ARG_STRING
, 0, OPT_PROBE
, 0, 0},
71 {"function", 0, POPT_ARG_STRING
, 0, OPT_FUNCTION
, 0, 0},
72 {"function:entry", 0, POPT_ARG_STRING
, 0, OPT_FUNCTION_ENTRY
, 0, 0},
79 static void usage(FILE *ofp
)
81 fprintf(ofp
, "usage: lttng enable-event NAME[,NAME2,...] [options] [event_options]\n");
83 fprintf(ofp
, " -h, --help Show this help\n");
84 fprintf(ofp
, " -s, --session Apply on session name\n");
85 fprintf(ofp
, " -c, --channel Apply on this channel\n");
86 fprintf(ofp
, " -a, --all-events Enable all tracepoints\n");
87 fprintf(ofp
, " -k, --kernel Apply for the kernel tracer\n");
88 fprintf(ofp
, " -u, --userspace [CMD] Apply for the user-space tracer\n");
89 fprintf(ofp
, " --all If -u, apply on all traceable apps\n");
90 fprintf(ofp
, " -p, --pid PID If -u, apply on a specific PID\n");
92 fprintf(ofp
, "Event options:\n");
93 fprintf(ofp
, " --tracepoint Tracepoint event (default)\n");
94 fprintf(ofp
, " --probe [addr | symbol | symbol+offset]\n");
95 fprintf(ofp
, " Dynamic probe.\n");
96 fprintf(ofp
, " Addr and offset can be octal (0NNN...),\n");
97 fprintf(ofp
, " decimal (NNN...) or hexadecimal (0xNNN...)\n");
98 fprintf(ofp
, " --function [addr | symbol | symbol+offset]\n");
99 fprintf(ofp
, " Dynamic function entry/return probe.\n");
100 fprintf(ofp
, " Addr and offset can be octal (0NNN...),\n");
101 fprintf(ofp
, " decimal (NNN...) or hexadecimal (0xNNN...)\n");
102 fprintf(ofp
, " --function:entry symbol\n");
103 fprintf(ofp
, " Function tracer event\n");
104 fprintf(ofp
, " --marker User-space marker (deprecated)\n");
111 * Parse probe options.
113 static int parse_probe_opts(struct lttng_event
*ev
, char *opt
)
117 char name
[LTTNG_SYMBOL_NAME_LEN
];
124 /* Check for symbol+offset */
125 ret
= sscanf(opt
, "%[^'+']+%s", name
, s_hex
);
127 strncpy(ev
->attr
.probe
.symbol_name
, name
, LTTNG_SYMBOL_NAME_LEN
);
128 DBG("probe symbol %s", ev
->attr
.probe
.symbol_name
);
129 if (strlen(s_hex
) == 0) {
130 ERR("Invalid probe offset %s", s_hex
);
134 ev
->attr
.probe
.offset
= strtoul(s_hex
, NULL
, 0);
135 DBG("probe offset %" PRIu64
, ev
->attr
.probe
.offset
);
136 ev
->attr
.probe
.addr
= 0;
140 /* Check for symbol */
141 if (isalpha(name
[0])) {
142 ret
= sscanf(opt
, "%s", name
);
144 strncpy(ev
->attr
.probe
.symbol_name
, name
, LTTNG_SYMBOL_NAME_LEN
);
145 DBG("probe symbol %s", ev
->attr
.probe
.symbol_name
);
146 ev
->attr
.probe
.offset
= 0;
147 DBG("probe offset %" PRIu64
, ev
->attr
.probe
.offset
);
148 ev
->attr
.probe
.addr
= 0;
153 /* Check for address */
154 ret
= sscanf(opt
, "%s", s_hex
);
156 if (strlen(s_hex
) == 0) {
157 ERR("Invalid probe address %s", s_hex
);
161 ev
->attr
.probe
.addr
= strtoul(s_hex
, NULL
, 0);
162 DBG("probe addr %" PRIu64
, ev
->attr
.probe
.addr
);
163 ev
->attr
.probe
.offset
= 0;
164 memset(ev
->attr
.probe
.symbol_name
, 0, LTTNG_SYMBOL_NAME_LEN
);
178 * Enabling event using the lttng API.
180 static int enable_events(void)
182 int err
, ret
= CMD_SUCCESS
;
183 char *event_name
, *channel_name
= NULL
;
184 struct lttng_event ev
;
185 struct lttng_domain dom
;
187 if (opt_channel_name
== NULL
) {
188 err
= asprintf(&channel_name
, DEFAULT_CHANNEL_NAME
);
194 channel_name
= opt_channel_name
;
197 /* Create lttng domain */
199 dom
.type
= LTTNG_DOMAIN_KERNEL
;
202 if (opt_enable_all
) {
203 if (set_session_name(opt_session_name
) < 0) {
209 ret
= lttng_enable_event(&dom
, NULL
, channel_name
);
211 MSG("All kernel events are enabled in channel %s", channel_name
);
216 /* TODO: User-space tracer */
219 /* Strip event list */
220 event_name
= strtok(opt_event_list
, ",");
221 while (event_name
!= NULL
) {
222 if (set_session_name(opt_session_name
) < 0) {
227 /* Kernel tracer action */
229 DBG("Enabling kernel event %s for channel %s",
230 event_name
, channel_name
);
231 /* Copy name and type of the event */
232 strncpy(ev
.name
, event_name
, LTTNG_SYMBOL_NAME_LEN
);
233 ev
.type
= opt_event_type
;
235 switch (opt_event_type
) {
236 case LTTNG_EVENT_TRACEPOINT
:
238 case LTTNG_EVENT_PROBE
:
239 ret
= parse_probe_opts(&ev
, opt_probe
);
241 ERR("Unable to parse probe options");
246 case LTTNG_EVENT_FUNCTION
:
247 ret
= parse_probe_opts(&ev
, opt_function
);
249 ERR("Unable to parse function probe options");
254 case LTTNG_EVENT_FUNCTION_ENTRY
:
255 strncpy(ev
.attr
.ftrace
.symbol_name
,
256 opt_function_entry_symbol
,
257 LTTNG_SYMBOL_NAME_LEN
);
260 ret
= CMD_NOT_IMPLEMENTED
;
264 ret
= lttng_enable_event(&dom
, &ev
, channel_name
);
266 MSG("Kernel event %s created in channel %s", event_name
, channel_name
);
268 } else if (opt_userspace
) { /* User-space tracer action */
270 * TODO: Waiting on lttng UST 2.0
273 } else if (opt_pid
!= 0) {
275 ret
= CMD_NOT_IMPLEMENTED
;
278 ERR("Please specify a tracer (--kernel or --userspace)");
283 event_name
= strtok(NULL
, ",");
287 if (opt_channel_name
== NULL
) {
296 * Add event to trace session
298 int cmd_enable_events(int argc
, const char **argv
)
301 static poptContext pc
;
303 pc
= poptGetContext(NULL
, argc
, argv
, long_options
, 0);
304 poptReadDefaultConfig(pc
, 0);
306 /* Default event type */
307 opt_event_type
= LTTNG_EVENT_TRACEPOINT
;
309 while ((opt
= poptGetNextOpt(pc
)) != -1) {
317 opt_cmd_name
= poptGetOptArg(pc
);
320 opt_event_type
= LTTNG_EVENT_TRACEPOINT
;
323 ret
= CMD_NOT_IMPLEMENTED
;
326 opt_event_type
= LTTNG_EVENT_PROBE
;
327 opt_probe
= poptGetOptArg(pc
);
330 opt_event_type
= LTTNG_EVENT_FUNCTION
;
331 opt_function
= poptGetOptArg(pc
);
333 case OPT_FUNCTION_ENTRY
:
334 opt_event_type
= LTTNG_EVENT_FUNCTION_ENTRY
;
335 opt_function_entry_symbol
= poptGetOptArg(pc
);
344 opt_event_list
= (char*) poptGetArg(pc
);
345 if (opt_event_list
== NULL
&& opt_enable_all
== 0) {
346 ERR("Missing event name(s).\n");
352 ret
= enable_events();