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>
33 static char *opt_event_list
;
34 static int opt_event_type
;
35 static char *opt_kernel
;
36 static char *opt_cmd_name
;
37 static char *opt_session_name
;
38 static int opt_pid_all
;
39 static int opt_userspace
;
40 static int opt_enable_all
;
42 static char *opt_probe
;
43 static char *opt_function_symbol
;
44 static char *opt_channel_name
;
55 static struct poptOption long_options
[] = {
56 /* longName, shortName, argInfo, argPtr, value, descrip, argDesc */
57 {"help", 'h', POPT_ARG_NONE
, 0, OPT_HELP
, 0, 0},
58 {"session", 's', POPT_ARG_STRING
, &opt_session_name
, 0, 0, 0},
59 {"all-events", 'a', POPT_ARG_VAL
, &opt_enable_all
, 1, 0, 0},
60 {"channel", 'c', POPT_ARG_STRING
, &opt_channel_name
, 0, 0, 0},
61 {"kernel", 'k', POPT_ARG_VAL
, &opt_kernel
, 1, 0, 0},
62 {"userspace", 'u', POPT_ARG_STRING
| POPT_ARGFLAG_OPTIONAL
, 0, OPT_USERSPACE
, 0, 0},
63 {"all", 0, POPT_ARG_VAL
, &opt_pid_all
, 1, 0, 0},
64 {"pid", 'p', POPT_ARG_INT
, &opt_pid
, 0, 0, 0},
65 {"tracepoint", 0, POPT_ARG_NONE
, 0, OPT_TRACEPOINT
, 0, 0},
66 {"marker", 0, POPT_ARG_NONE
, 0, OPT_MARKER
, 0, 0},
67 {"probe", 0, POPT_ARG_STRING
, 0, OPT_PROBE
, 0, 0},
68 {"function", 0, POPT_ARG_STRING
, 0, OPT_FUNCTION
, 0, 0},
75 static void usage(FILE *ofp
)
77 fprintf(ofp
, "usage: lttng enable-event NAME[,NAME2,...] [options] [event_options]\n");
79 fprintf(ofp
, " -h, --help Show this help\n");
80 fprintf(ofp
, " -s, --session Apply on session name\n");
81 fprintf(ofp
, " -c, --channel Apply on this channel\n");
82 fprintf(ofp
, " -a, --all-events Enable all tracepoints\n");
83 fprintf(ofp
, " -k, --kernel Apply for the kernel tracer\n");
84 fprintf(ofp
, " -u, --userspace [CMD] Apply for the user-space tracer\n");
85 fprintf(ofp
, " --all If -u, apply on all traceable apps\n");
86 fprintf(ofp
, " -p, --pid PID If -u, apply on a specific PID\n");
88 fprintf(ofp
, "Event options:\n");
89 fprintf(ofp
, " --tracepoint Tracepoint event (default)\n");
90 fprintf(ofp
, " --probe [addr | symbol+offset]\n");
91 fprintf(ofp
, " Dynamic probe.\n");
92 fprintf(ofp
, " Addr and offset can be octal (0NNN...),\n");
93 fprintf(ofp
, " decimal (NNN...) or hexadecimal (0xNNN...)\n");
94 fprintf(ofp
, " --function SYMBOL Function tracer event\n");
95 fprintf(ofp
, " --marker User-space marker (deprecated)\n");
102 * Parse probe options.
104 static int parse_probe_opts(struct lttng_event
*ev
, char *opt
)
108 char name
[LTTNG_SYMBOL_NAME_LEN
];
115 /* Check for symbol+offset */
116 ret
= sscanf(opt
, "%[^'+']+%s", name
, s_hex
);
118 strncpy(ev
->attr
.probe
.symbol_name
, name
, LTTNG_SYMBOL_NAME_LEN
);
119 DBG("probe symbol %s", ev
->attr
.probe
.symbol_name
);
120 if (strlen(s_hex
) == 0) {
121 ERR("Invalid probe offset %s", s_hex
);
125 ev
->attr
.probe
.offset
= strtoul(s_hex
, NULL
, 0);
126 DBG("probe offset %" PRIu64
, ev
->attr
.probe
.offset
);
127 ev
->attr
.probe
.addr
= 0;
131 /* Check for address */
132 ret
= sscanf(opt
, "%s", s_hex
);
134 if (strlen(s_hex
) == 0) {
135 ERR("Invalid probe address %s", s_hex
);
139 ev
->attr
.probe
.addr
= strtoul(s_hex
, NULL
, 0);
140 DBG("probe addr %" PRIu64
, ev
->attr
.probe
.addr
);
141 ev
->attr
.probe
.offset
= 0;
142 memset(ev
->attr
.probe
.symbol_name
, 0, LTTNG_SYMBOL_NAME_LEN
);
156 * Enabling event using the lttng API.
158 static int enable_events(void)
160 int err
, ret
= CMD_SUCCESS
;
161 char *event_name
, *channel_name
= NULL
;
162 struct lttng_event ev
;
163 struct lttng_domain dom
;
165 if (set_session_name(opt_session_name
) < 0) {
170 if (opt_channel_name
== NULL
) {
171 err
= asprintf(&channel_name
, DEFAULT_CHANNEL_NAME
);
177 channel_name
= opt_channel_name
;
180 /* Create lttng domain */
182 dom
.type
= LTTNG_DOMAIN_KERNEL
;
185 if (opt_enable_all
) {
187 ret
= lttng_enable_event(&dom
, NULL
, channel_name
);
189 MSG("All kernel events are enabled in channel %s", channel_name
);
194 /* TODO: User-space tracer */
197 /* Strip event list */
198 event_name
= strtok(opt_event_list
, ",");
199 while (event_name
!= NULL
) {
200 /* Kernel tracer action */
202 DBG("Enabling kernel event %s for channel %s",
203 event_name
, channel_name
);
204 /* Copy name and type of the event */
205 strncpy(ev
.name
, event_name
, LTTNG_SYMBOL_NAME_LEN
);
206 ev
.type
= opt_event_type
;
208 switch (opt_event_type
) {
209 case LTTNG_EVENT_TRACEPOINT
:
211 case LTTNG_EVENT_PROBE
:
212 ret
= parse_probe_opts(&ev
, opt_probe
);
214 ERR("Unable to parse probe options");
219 case LTTNG_EVENT_FUNCTION
:
220 strncpy(ev
.attr
.ftrace
.symbol_name
, opt_function_symbol
, LTTNG_SYMBOL_NAME_LEN
);
223 ret
= CMD_NOT_IMPLEMENTED
;
227 ret
= lttng_enable_event(&dom
, &ev
, channel_name
);
229 MSG("Kernel event %s created in channel %s", event_name
, channel_name
);
231 } else if (opt_userspace
) { /* User-space tracer action */
233 * TODO: Waiting on lttng UST 2.0
236 } else if (opt_pid
!= 0) {
238 ret
= CMD_NOT_IMPLEMENTED
;
241 ERR("Please specify a tracer (kernel or user-space)");
246 event_name
= strtok(NULL
, ",");
250 if (opt_channel_name
== NULL
) {
259 * Add event to trace session
261 int cmd_enable_events(int argc
, const char **argv
)
264 static poptContext pc
;
266 pc
= poptGetContext(NULL
, argc
, argv
, long_options
, 0);
267 poptReadDefaultConfig(pc
, 0);
269 /* Default event type */
270 opt_event_type
= LTTNG_EVENT_TRACEPOINT
;
272 while ((opt
= poptGetNextOpt(pc
)) != -1) {
280 opt_cmd_name
= poptGetOptArg(pc
);
283 opt_event_type
= LTTNG_EVENT_TRACEPOINT
;
286 ret
= CMD_NOT_IMPLEMENTED
;
289 opt_event_type
= LTTNG_EVENT_PROBE
;
290 opt_probe
= poptGetOptArg(pc
);
293 opt_event_type
= LTTNG_EVENT_FUNCTION
;
294 opt_function_symbol
= poptGetOptArg(pc
);
303 opt_event_list
= (char*) poptGetArg(pc
);
304 if (opt_event_list
== NULL
&& opt_enable_all
== 0) {
305 ERR("Missing event name(s).\n");
311 ret
= enable_events();
This page took 0.03706 seconds and 5 git commands to generate.