Fix: parse_prob_opts return the actual success of the function
[lttng-tools.git] / src / bin / lttng / commands / enable_events.c
CommitLineData
f3ed775e
DG
1/*
2 * Copyright (C) 2011 - David Goulet <david.goulet@polymtl.ca>
3 *
d14d33bf
AM
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License, version 2 only,
6 * as published by the Free Software Foundation.
f3ed775e
DG
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
d14d33bf
AM
13 * You should have received a copy of the GNU General Public License along
14 * with this program; if not, write to the Free Software Foundation, Inc.,
15 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
f3ed775e
DG
16 */
17
18#define _GNU_SOURCE
b2064f54 19#include <assert.h>
f3ed775e
DG
20#include <popt.h>
21#include <stdio.h>
22#include <stdlib.h>
23#include <string.h>
24#include <sys/stat.h>
25#include <sys/types.h>
26#include <unistd.h>
5a0de755 27#include <inttypes.h>
8f0d098b 28#include <ctype.h>
f3ed775e 29
c399183f 30#include "../command.h"
42224349 31#include <src/common/sessiond-comm/sessiond-comm.h>
f3ed775e 32
8ab7c0d9
MD
33#if (LTTNG_SYMBOL_NAME_LEN == 256)
34#define LTTNG_SYMBOL_NAME_LEN_SCANF_IS_A_BROKEN_API "255"
35#endif
36
f3ed775e
DG
37static char *opt_event_list;
38static int opt_event_type;
0cda4f28
MD
39static const char *opt_loglevel;
40static int opt_loglevel_type;
6181537c 41static int opt_kernel;
5440dc42 42static char *opt_session_name;
f3ed775e 43static int opt_userspace;
b9dfb167 44static int opt_jul;
f3ed775e 45static int opt_enable_all;
cf0e5467 46static char *opt_probe;
8f0d098b
MD
47static char *opt_function;
48static char *opt_function_entry_symbol;
f3ed775e 49static char *opt_channel_name;
53a80697 50static char *opt_filter;
fac3366c 51static char *opt_exclude;
d78d6610
DG
52#if 0
53/* Not implemented yet */
54static char *opt_cmd_name;
55static pid_t opt_pid;
56#endif
f3ed775e
DG
57
58enum {
59 OPT_HELP = 1,
f3ed775e 60 OPT_TRACEPOINT,
cf0e5467 61 OPT_PROBE,
f3ed775e 62 OPT_FUNCTION,
8f0d098b 63 OPT_FUNCTION_ENTRY,
a54bd42d 64 OPT_SYSCALL,
eeac7d46 65 OPT_USERSPACE,
0cda4f28
MD
66 OPT_LOGLEVEL,
67 OPT_LOGLEVEL_ONLY,
679b4943 68 OPT_LIST_OPTIONS,
53a80697 69 OPT_FILTER,
fac3366c 70 OPT_EXCLUDE,
f3ed775e
DG
71};
72
cd80958d
DG
73static struct lttng_handle *handle;
74
f3ed775e
DG
75static struct poptOption long_options[] = {
76 /* longName, shortName, argInfo, argPtr, value, descrip, argDesc */
77 {"help", 'h', POPT_ARG_NONE, 0, OPT_HELP, 0, 0},
5440dc42 78 {"session", 's', POPT_ARG_STRING, &opt_session_name, 0, 0, 0},
e14f64a8 79 {"all", 'a', POPT_ARG_VAL, &opt_enable_all, 1, 0, 0},
f3ed775e
DG
80 {"channel", 'c', POPT_ARG_STRING, &opt_channel_name, 0, 0, 0},
81 {"kernel", 'k', POPT_ARG_VAL, &opt_kernel, 1, 0, 0},
d78d6610 82 {"userspace", 'u', POPT_ARG_NONE, 0, OPT_USERSPACE, 0, 0},
b9dfb167 83 {"jul", 'j', POPT_ARG_VAL, &opt_jul, 1, 0, 0},
f3ed775e 84 {"tracepoint", 0, POPT_ARG_NONE, 0, OPT_TRACEPOINT, 0, 0},
7ebae521 85 {"probe", 0, POPT_ARG_STRING, &opt_probe, OPT_PROBE, 0, 0},
40e9d5d3 86 {"function", 0, POPT_ARG_STRING, &opt_function, OPT_FUNCTION, 0, 0},
b213d387
MD
87#if 0
88 /*
89 * Currently removed from lttng kernel tracer. Removed from
90 * lttng UI to discourage its use.
91 */
40e9d5d3 92 {"function:entry", 0, POPT_ARG_STRING, &opt_function_entry_symbol, OPT_FUNCTION_ENTRY, 0, 0},
b213d387 93#endif
7ebae521 94 {"syscall", 0, POPT_ARG_NONE, 0, OPT_SYSCALL, 0, 0},
0cda4f28
MD
95 {"loglevel", 0, POPT_ARG_STRING, 0, OPT_LOGLEVEL, 0, 0},
96 {"loglevel-only", 0, POPT_ARG_STRING, 0, OPT_LOGLEVEL_ONLY, 0, 0},
679b4943 97 {"list-options", 0, POPT_ARG_NONE, NULL, OPT_LIST_OPTIONS, NULL, NULL},
53a80697 98 {"filter", 'f', POPT_ARG_STRING, &opt_filter, OPT_FILTER, 0, 0},
fac3366c 99 {"exclude", 'x', POPT_ARG_STRING, &opt_exclude, OPT_EXCLUDE, 0, 0},
f3ed775e
DG
100 {0, 0, 0, 0, 0, 0, 0}
101};
102
103/*
104 * usage
105 */
106static void usage(FILE *ofp)
107{
32a6298d 108 fprintf(ofp, "usage: lttng enable-event NAME[,NAME2,...] [-k|-u] [OPTIONS] \n");
f3ed775e 109 fprintf(ofp, "\n");
32a6298d 110 fprintf(ofp, "Options:\n");
f3ed775e 111 fprintf(ofp, " -h, --help Show this help\n");
679b4943 112 fprintf(ofp, " --list-options Simple listing of options\n");
32a6298d
DG
113 fprintf(ofp, " -s, --session NAME Apply to session name\n");
114 fprintf(ofp, " -c, --channel NAME Apply to this channel\n");
e08bff8d 115 fprintf(ofp, " -a, --all Enable all tracepoints and syscalls\n");
f3ed775e 116 fprintf(ofp, " -k, --kernel Apply for the kernel tracer\n");
27221701 117 fprintf(ofp, " -u, --userspace Apply to the user-space tracer\n");
b9dfb167 118 fprintf(ofp, " -j, --jul Apply for Java application using JUL\n");
f3ed775e
DG
119 fprintf(ofp, "\n");
120 fprintf(ofp, "Event options:\n");
121 fprintf(ofp, " --tracepoint Tracepoint event (default)\n");
be49af1e
MD
122 fprintf(ofp, " - userspace tracer supports wildcards at end of string.\n");
123 fprintf(ofp, " Don't forget to quote to deal with bash expansion.\n");
124 fprintf(ofp, " e.g.:\n");
125 fprintf(ofp, " \"*\"\n");
126 fprintf(ofp, " \"app_component:na*\"\n");
6a240cd9 127 fprintf(ofp, " --probe (addr | symbol | symbol+offset)\n");
cf0e5467
MD
128 fprintf(ofp, " Dynamic probe.\n");
129 fprintf(ofp, " Addr and offset can be octal (0NNN...),\n");
130 fprintf(ofp, " decimal (NNN...) or hexadecimal (0xNNN...)\n");
6a240cd9 131 fprintf(ofp, " --function (addr | symbol | symbol+offset)\n");
8f0d098b
MD
132 fprintf(ofp, " Dynamic function entry/return probe.\n");
133 fprintf(ofp, " Addr and offset can be octal (0NNN...),\n");
134 fprintf(ofp, " decimal (NNN...) or hexadecimal (0xNNN...)\n");
b213d387 135#if 0
8f0d098b
MD
136 fprintf(ofp, " --function:entry symbol\n");
137 fprintf(ofp, " Function tracer event\n");
b213d387 138#endif
a54bd42d 139 fprintf(ofp, " --syscall System call event\n");
f3ed775e 140 fprintf(ofp, "\n");
300b8fd5 141 fprintf(ofp, " --loglevel name\n");
f9e8873b
DG
142 fprintf(ofp, " Tracepoint loglevel range from 0 to loglevel.\n");
143 fprintf(ofp, " For JUL domain, see the table below for the range values.\n");
300b8fd5
MD
144 fprintf(ofp, " --loglevel-only name\n");
145 fprintf(ofp, " Tracepoint loglevel (only this loglevel)\n");
146 fprintf(ofp, "\n");
0c8477c8
MD
147 fprintf(ofp, " The loglevel or loglevel-only options should be\n");
148 fprintf(ofp, " combined with a tracepoint name or tracepoint\n");
149 fprintf(ofp, " wildcard.\n");
150 fprintf(ofp, " Available loglevels:\n");
151 fprintf(ofp, " (higher value is more verbose)\n");
46839cc2
MD
152 fprintf(ofp, " TRACE_EMERG = 0\n");
153 fprintf(ofp, " TRACE_ALERT = 1\n");
154 fprintf(ofp, " TRACE_CRIT = 2\n");
155 fprintf(ofp, " TRACE_ERR = 3\n");
156 fprintf(ofp, " TRACE_WARNING = 4\n");
157 fprintf(ofp, " TRACE_NOTICE = 5\n");
158 fprintf(ofp, " TRACE_INFO = 6\n");
159 fprintf(ofp, " TRACE_DEBUG_SYSTEM = 7\n");
160 fprintf(ofp, " TRACE_DEBUG_PROGRAM = 8\n");
161 fprintf(ofp, " TRACE_DEBUG_PROCESS = 9\n");
162 fprintf(ofp, " TRACE_DEBUG_MODULE = 10\n");
163 fprintf(ofp, " TRACE_DEBUG_UNIT = 11\n");
164 fprintf(ofp, " TRACE_DEBUG_FUNCTION = 12\n");
165 fprintf(ofp, " TRACE_DEBUG_LINE = 13\n");
166 fprintf(ofp, " TRACE_DEBUG = 14\n");
167 fprintf(ofp, " (shortcuts such as \"system\" are allowed)\n");
b2064f54
DG
168 fprintf(ofp, "\n");
169 fprintf(ofp, " Available JUL domain loglevels:\n");
170 fprintf(ofp, " JUL_OFF = INT32_MAX\n");
171 fprintf(ofp, " JUL_SEVERE = %d\n", LTTNG_LOGLEVEL_JUL_SEVERE);
172 fprintf(ofp, " JUL_WARNING = %d\n", LTTNG_LOGLEVEL_JUL_WARNING);
173 fprintf(ofp, " JUL_INFO = %d\n", LTTNG_LOGLEVEL_JUL_INFO);
174 fprintf(ofp, " JUL_CONFIG = %d\n", LTTNG_LOGLEVEL_JUL_CONFIG);
175 fprintf(ofp, " JUL_FINE = %d\n", LTTNG_LOGLEVEL_JUL_FINE);
176 fprintf(ofp, " JUL_FINER = %d\n", LTTNG_LOGLEVEL_JUL_FINER);
177 fprintf(ofp, " JUL_FINEST = %d\n", LTTNG_LOGLEVEL_JUL_FINEST);
178 fprintf(ofp, " JUL_ALL = INT32_MIN\n");
179 fprintf(ofp, " (shortcuts such as \"severe\" are allowed)\n");
180 fprintf(ofp, "\n");
f2611ab0 181 fprintf(ofp, " -f, --filter \'expression\'\n");
ee8ccafa
MD
182 fprintf(ofp, " Filter expression on event fields and context.\n");
183 fprintf(ofp, " Event recording depends on evaluation.\n");
919e300c
MD
184 fprintf(ofp, " Only specify on first activation of\n");
185 fprintf(ofp, " a given event within a session.\n");
186 fprintf(ofp, " Filter only allowed when enabling\n");
187 fprintf(ofp, " events within a session before tracing\n");
9bd578f5
MD
188 fprintf(ofp, " is started. If the filter fails to link\n");
189 fprintf(ofp, " with the event within the traced domain,\n");
190 fprintf(ofp, " the event will be discarded. Currently,\n");
191 fprintf(ofp, " filter is only implemented for the user-space\n");
192 fprintf(ofp, " tracer.\n");
193 fprintf(ofp, " Expression examples:.\n");
194 fprintf(ofp, " \n");
195 fprintf(ofp, " 'intfield > 500 && intfield < 503'\n");
6a240cd9 196 fprintf(ofp, " '(strfield == \"test\" || intfield != 10) && intfield > 33'\n");
9bd578f5
MD
197 fprintf(ofp, " 'doublefield > 1.1 && intfield < 5.3'\n");
198 fprintf(ofp, " \n");
199 fprintf(ofp, " Wildcards are allowed at the end of strings:\n");
200 fprintf(ofp, " 'seqfield1 == \"te*\"'\n");
201 fprintf(ofp, " In string literals, the escape character is '\\'.\n");
202 fprintf(ofp, " Use '\\*' for the '*' character, and '\\\\' for\n");
ee8ccafa
MD
203 fprintf(ofp, " the '\\' character. Wildcard match any sequence of,\n");
204 fprintf(ofp, " characters including an empty sub-string (match 0 or\n");
205 fprintf(ofp, " more characters).\n");
206 fprintf(ofp, "\n");
207 fprintf(ofp, " Context information can be used for filtering. The\n");
208 fprintf(ofp, " examples below show usage of context filtering on\n");
209 fprintf(ofp, " process name (with a wildcard), process ID range, and\n");
210 fprintf(ofp, " unique thread ID for filtering. The process and\n");
211 fprintf(ofp, " thread ID of running applications can be found under\n");
212 fprintf(ofp, " columns \"PID\" and \"LWP\" of the \"ps -eLf\" command.\n");
213 fprintf(ofp, "\n");
214 fprintf(ofp, " '$ctx.procname == \"demo*\"'\n");
215 fprintf(ofp, " '$ctx.vpid >= 4433 && $ctx.vpid < 4455'\n");
216 fprintf(ofp, " '$ctx.vtid == 1234'\n");
c2063d0b
JI
217 fprintf(ofp, " -x, --exclude LIST\n");
218 fprintf(ofp, " Add exclusions to UST tracepoints:\n");
219 fprintf(ofp, " Events that match any of the items\n");
220 fprintf(ofp, " in the comma-separated LIST are not\n");
221 fprintf(ofp, " enabled, even if they match a wildcard\n");
222 fprintf(ofp, " definition of the event.\n");
300b8fd5 223 fprintf(ofp, "\n");
f3ed775e
DG
224}
225
0d63dd19 226/*
6181537c 227 * Parse probe options.
0d63dd19 228 */
cf0e5467 229static int parse_probe_opts(struct lttng_event *ev, char *opt)
0d63dd19 230{
fbdb7e15
JRJ
231 int ret = CMD_SUCCESS;
232 int match;
8ff0bbd0 233 char s_hex[19];
8ab7c0d9 234#define S_HEX_LEN_SCANF_IS_A_BROKEN_API "18" /* 18 is (19 - 1) (\0 is extra) */
0d63dd19
DG
235 char name[LTTNG_SYMBOL_NAME_LEN];
236
237 if (opt == NULL) {
fbdb7e15 238 ret = CMD_ERROR;
8f0d098b 239 goto end;
0d63dd19
DG
240 }
241
242 /* Check for symbol+offset */
fbdb7e15 243 match = sscanf(opt, "%" LTTNG_SYMBOL_NAME_LEN_SCANF_IS_A_BROKEN_API
8ab7c0d9 244 "[^'+']+%" S_HEX_LEN_SCANF_IS_A_BROKEN_API "s", name, s_hex);
fbdb7e15 245 if (match == 2) {
7d29a247 246 strncpy(ev->attr.probe.symbol_name, name, LTTNG_SYMBOL_NAME_LEN);
99497cd0 247 ev->attr.probe.symbol_name[LTTNG_SYMBOL_NAME_LEN - 1] = '\0';
cf0e5467 248 DBG("probe symbol %s", ev->attr.probe.symbol_name);
9d035200 249 if (*s_hex == '\0') {
8ff0bbd0 250 ERR("Invalid probe offset %s", s_hex);
fbdb7e15 251 ret = CMD_ERROR;
8f0d098b 252 goto end;
0d63dd19 253 }
8ff0bbd0 254 ev->attr.probe.offset = strtoul(s_hex, NULL, 0);
cf0e5467 255 DBG("probe offset %" PRIu64, ev->attr.probe.offset);
3000dc78 256 ev->attr.probe.addr = 0;
8f0d098b
MD
257 goto end;
258 }
259
260 /* Check for symbol */
261 if (isalpha(name[0])) {
fbdb7e15 262 match = sscanf(opt, "%" LTTNG_SYMBOL_NAME_LEN_SCANF_IS_A_BROKEN_API "s",
8ab7c0d9 263 name);
fbdb7e15 264 if (match == 1) {
8f0d098b 265 strncpy(ev->attr.probe.symbol_name, name, LTTNG_SYMBOL_NAME_LEN);
99497cd0 266 ev->attr.probe.symbol_name[LTTNG_SYMBOL_NAME_LEN - 1] = '\0';
8f0d098b
MD
267 DBG("probe symbol %s", ev->attr.probe.symbol_name);
268 ev->attr.probe.offset = 0;
269 DBG("probe offset %" PRIu64, ev->attr.probe.offset);
270 ev->attr.probe.addr = 0;
271 goto end;
272 }
0d63dd19
DG
273 }
274
275 /* Check for address */
fbdb7e15
JRJ
276 match = sscanf(opt, "%" S_HEX_LEN_SCANF_IS_A_BROKEN_API "s", s_hex);
277 if (match > 0) {
9d035200 278 if (*s_hex == '\0') {
8ff0bbd0 279 ERR("Invalid probe address %s", s_hex);
fbdb7e15 280 ret = CMD_ERROR;
8f0d098b 281 goto end;
0d63dd19 282 }
8ff0bbd0 283 ev->attr.probe.addr = strtoul(s_hex, NULL, 0);
cf0e5467 284 DBG("probe addr %" PRIu64, ev->attr.probe.addr);
3000dc78
DG
285 ev->attr.probe.offset = 0;
286 memset(ev->attr.probe.symbol_name, 0, LTTNG_SYMBOL_NAME_LEN);
8f0d098b 287 goto end;
0d63dd19
DG
288 }
289
290 /* No match */
fbdb7e15 291 ret = CMD_ERROR;
0d63dd19 292
8f0d098b 293end:
0d63dd19
DG
294 return ret;
295}
296
b2064f54
DG
297/*
298 * Maps JUL loglevel from string to value
299 */
300static int loglevel_jul_str_to_value(const char *inputstr)
301{
302 int i = 0;
303 char str[LTTNG_SYMBOL_NAME_LEN];
304
305 /*
306 * Loop up to LTTNG_SYMBOL_NAME_LEN minus one because the NULL bytes is
307 * added at the end of the loop so a the upper bound we avoid the overflow.
308 */
309 while (i < (LTTNG_SYMBOL_NAME_LEN - 1) && inputstr[i] != '\0') {
310 str[i] = toupper(inputstr[i]);
311 i++;
312 }
313 str[i] = '\0';
314
315 if (!strcmp(str, "JUL_OFF") || !strcmp(str, "OFF")) {
316 return LTTNG_LOGLEVEL_JUL_OFF;
317 } else if (!strcmp(str, "JUL_SEVERE") || !strcmp(str, "SEVERE")) {
318 return LTTNG_LOGLEVEL_JUL_SEVERE;
319 } else if (!strcmp(str, "JUL_WARNING") || !strcmp(str, "WARNING")) {
320 return LTTNG_LOGLEVEL_JUL_WARNING;
321 } else if (!strcmp(str, "JUL_INFO") || !strcmp(str, "INFO")) {
322 return LTTNG_LOGLEVEL_JUL_INFO;
323 } else if (!strcmp(str, "JUL_CONFIG") || !strcmp(str, "CONFIG")) {
324 return LTTNG_LOGLEVEL_JUL_CONFIG;
325 } else if (!strcmp(str, "JUL_FINE") || !strcmp(str, "FINE")) {
326 return LTTNG_LOGLEVEL_JUL_FINE;
327 } else if (!strcmp(str, "JUL_FINER") || !strcmp(str, "FINER")) {
328 return LTTNG_LOGLEVEL_JUL_FINER;
329 } else if (!strcmp(str, "JUL_FINEST") || !strcmp(str, "FINEST")) {
330 return LTTNG_LOGLEVEL_JUL_FINEST;
331 } else if (!strcmp(str, "JUL_ALL") || !strcmp(str, "ALL")) {
332 return LTTNG_LOGLEVEL_JUL_ALL;
333 } else {
334 return -1;
335 }
336}
337
8005f29a 338/*
0c8477c8 339 * Maps loglevel from string to value
8005f29a
MD
340 */
341static
46839cc2 342int loglevel_str_to_value(const char *inputstr)
8005f29a 343{
46839cc2
MD
344 int i = 0;
345 char str[LTTNG_SYMBOL_NAME_LEN];
346
e051e07c
DG
347 /*
348 * Loop up to LTTNG_SYMBOL_NAME_LEN minus one because the NULL bytes is
349 * added at the end of the loop so a the upper bound we avoid the overflow.
350 */
351 while (i < (LTTNG_SYMBOL_NAME_LEN - 1) && inputstr[i] != '\0') {
46839cc2
MD
352 str[i] = toupper(inputstr[i]);
353 i++;
354 }
355 str[i] = '\0';
356 if (!strcmp(str, "TRACE_EMERG") || !strcmp(str, "EMERG")) {
357 return LTTNG_LOGLEVEL_EMERG;
358 } else if (!strcmp(str, "TRACE_ALERT") || !strcmp(str, "ALERT")) {
359 return LTTNG_LOGLEVEL_ALERT;
360 } else if (!strcmp(str, "TRACE_CRIT") || !strcmp(str, "CRIT")) {
361 return LTTNG_LOGLEVEL_CRIT;
362 } else if (!strcmp(str, "TRACE_ERR") || !strcmp(str, "ERR")) {
363 return LTTNG_LOGLEVEL_ERR;
364 } else if (!strcmp(str, "TRACE_WARNING") || !strcmp(str, "WARNING")) {
365 return LTTNG_LOGLEVEL_WARNING;
366 } else if (!strcmp(str, "TRACE_NOTICE") || !strcmp(str, "NOTICE")) {
367 return LTTNG_LOGLEVEL_NOTICE;
368 } else if (!strcmp(str, "TRACE_INFO") || !strcmp(str, "INFO")) {
369 return LTTNG_LOGLEVEL_INFO;
370 } else if (!strcmp(str, "TRACE_DEBUG_SYSTEM") || !strcmp(str, "DEBUG_SYSTEM") || !strcmp(str, "SYSTEM")) {
371 return LTTNG_LOGLEVEL_DEBUG_SYSTEM;
372 } else if (!strcmp(str, "TRACE_DEBUG_PROGRAM") || !strcmp(str, "DEBUG_PROGRAM") || !strcmp(str, "PROGRAM")) {
373 return LTTNG_LOGLEVEL_DEBUG_PROGRAM;
374 } else if (!strcmp(str, "TRACE_DEBUG_PROCESS") || !strcmp(str, "DEBUG_PROCESS") || !strcmp(str, "PROCESS")) {
375 return LTTNG_LOGLEVEL_DEBUG_PROCESS;
376 } else if (!strcmp(str, "TRACE_DEBUG_MODULE") || !strcmp(str, "DEBUG_MODULE") || !strcmp(str, "MODULE")) {
377 return LTTNG_LOGLEVEL_DEBUG_MODULE;
378 } else if (!strcmp(str, "TRACE_DEBUG_UNIT") || !strcmp(str, "DEBUG_UNIT") || !strcmp(str, "UNIT")) {
379 return LTTNG_LOGLEVEL_DEBUG_UNIT;
380 } else if (!strcmp(str, "TRACE_DEBUG_FUNCTION") || !strcmp(str, "DEBUG_FUNCTION") || !strcmp(str, "FUNCTION")) {
381 return LTTNG_LOGLEVEL_DEBUG_FUNCTION;
382 } else if (!strcmp(str, "TRACE_DEBUG_LINE") || !strcmp(str, "DEBUG_LINE") || !strcmp(str, "LINE")) {
383 return LTTNG_LOGLEVEL_DEBUG_LINE;
384 } else if (!strcmp(str, "TRACE_DEBUG") || !strcmp(str, "DEBUG")) {
385 return LTTNG_LOGLEVEL_DEBUG;
8005f29a
MD
386 } else {
387 return -1;
388 }
389}
390
85076754
MD
391static
392const char *print_channel_name(const char *name)
393{
394 return name ? : DEFAULT_CHANNEL_NAME;
395}
396
397static
398const char *print_raw_channel_name(const char *name)
399{
400 return name ? : "<default>";
401}
402
9c48cab3
JI
403/*
404 * Return allocated string for pretty-printing exclusion names.
405 */
406static
407char *print_exclusions(int count, char **names)
408{
409 int length = 0;
410 int i;
411 const char *preamble = " excluding ";
412 char *ret;
413
414 if (count == 0) {
415 return strdup("");
416 }
417
418 /* calculate total required length */
419 for (i = 0; i < count; i++) {
420 length += strlen(names[i]) + 1;
421 }
422
423 /* add length of preamble + one for NUL - one for last (missing) comma */
424 length += strlen(preamble);
425 ret = malloc(length);
426 strncpy(ret, preamble, length);
427 for (i = 0; i < count; i++) {
428 strcat(ret, names[i]);
429 if (i != count - 1) {
430 strcat(ret, ",");
431 }
432 }
433 return ret;
434}
435
748bde76
JI
436/*
437 * Compare list of exclusions against an event name.
438 * Return a list of legal exclusion names.
439 * Produce an error or a warning about others (depending on the situation)
440 */
441static
442int check_exclusion_subsets(const char *event_name,
443 const char *exclusions,
444 int *exclusion_count_ptr,
445 char ***exclusion_list_ptr)
446{
447 const char *excluder_ptr;
448 const char *event_ptr;
449 const char *next_excluder;
450 int excluder_length;
451 int exclusion_count = 0;
452 char **exclusion_list = NULL;
453 int ret = CMD_SUCCESS;
454
455 if (event_name[strlen(event_name) - 1] != '*') {
456 ERR("Event %s: Excluders can only be used with wildcarded events", event_name);
457 goto error;
458 }
459
460 next_excluder = exclusions;
461 while (*next_excluder != 0) {
462 event_ptr = event_name;
463 excluder_ptr = next_excluder;
464 excluder_length = strcspn(next_excluder, ",");
465
466 /* Scan both the excluder and the event letter by letter */
467 while (1) {
468 char e, x;
469
470 e = *event_ptr;
471 x = *excluder_ptr;
472
473 if (x == '*') {
474 /* Event is a subset of the excluder */
475 ERR("Event %s: %.*s excludes all events from %s",
476 event_name,
477 excluder_length,
478 next_excluder,
479 event_name);
480 goto error;
481 }
482 if (e == '*') {
483 /* Excluder is a proper subset of event */
484 exclusion_count++;
485 exclusion_list = realloc(exclusion_list, sizeof(char **) * exclusion_count);
486 exclusion_list[exclusion_count - 1] = strndup(next_excluder, excluder_length);
487
488 break;
489 }
490 if (x != e) {
491 /* Excluder and event sets have no common elements */
492 WARN("Event %s: %.*s does not exclude any events from %s",
493 event_name,
494 excluder_length,
495 next_excluder,
496 event_name);
497 break;
498 }
499 excluder_ptr++;
500 event_ptr++;
501 }
502 /* next excluder */
503 next_excluder += excluder_length;
504 if (*next_excluder == ',') {
505 next_excluder++;
506 }
507 }
508 goto end;
509error:
510 while (exclusion_count--) {
511 free(exclusion_list[exclusion_count]);
512 }
513 if (exclusion_list != NULL) {
514 free(exclusion_list);
515 }
516 exclusion_list = NULL;
517 exclusion_count = 0;
518 ret = CMD_ERROR;
519end:
520 *exclusion_count_ptr = exclusion_count;
521 *exclusion_list_ptr = exclusion_list;
522 return ret;
523}
f3ed775e 524/*
6181537c 525 * Enabling event using the lttng API.
f3ed775e 526 */
cd80958d 527static int enable_events(char *session_name)
f3ed775e 528{
85076754 529 int ret = CMD_SUCCESS, warn = 0;
b73d0b29 530 char *event_name, *channel_name = NULL;
f3ed775e 531 struct lttng_event ev;
7d29a247 532 struct lttng_domain dom;
7ed70bc9
JI
533 int exclusion_count = 0;
534 char **exclusion_list = NULL;
f3ed775e 535
441c16a7
MD
536 memset(&ev, 0, sizeof(ev));
537 memset(&dom, 0, sizeof(dom));
538
53a80697
MD
539 if (opt_kernel) {
540 if (opt_filter) {
541 ERR("Filter not implement for kernel tracing yet");
542 ret = CMD_ERROR;
543 goto error;
544 }
67b58630
JG
545 if (opt_loglevel) {
546 WARN("Kernel loglevels are not supported.");
547 }
53a80697
MD
548 }
549
7d29a247
DG
550 /* Create lttng domain */
551 if (opt_kernel) {
552 dom.type = LTTNG_DOMAIN_KERNEL;
7972aab2 553 dom.buf_type = LTTNG_BUFFER_GLOBAL;
d78d6610 554 } else if (opt_userspace) {
2bdd86d4 555 dom.type = LTTNG_DOMAIN_UST;
7972aab2 556 /* Default. */
8692d4e5 557 dom.buf_type = LTTNG_BUFFER_PER_UID;
b9dfb167
DG
558 } else if (opt_jul) {
559 dom.type = LTTNG_DOMAIN_JUL;
560 /* Default. */
561 dom.buf_type = LTTNG_BUFFER_PER_UID;
6181537c 562 } else {
b9dfb167 563 print_missing_domain();
d16c1a4c 564 ret = CMD_ERROR;
6181537c 565 goto error;
2bdd86d4 566 }
7d29a247 567
d5dd17fd
JI
568 if (opt_kernel && opt_exclude) {
569 ERR("Event name exclusions are not yet implemented for kernel events");
570 ret = CMD_ERROR;
571 goto error;
572 }
573
85076754 574 channel_name = opt_channel_name;
ae856491 575
cd80958d
DG
576 handle = lttng_create_handle(session_name, &dom);
577 if (handle == NULL) {
578 ret = -1;
579 goto error;
580 }
1aef21b6 581
cd80958d 582 if (opt_enable_all) {
8c9ae521 583 /* Default setup for enable all */
75e8c5ab
MD
584 if (opt_kernel) {
585 ev.type = opt_event_type;
586 ev.name[0] = '\0';
300b8fd5
MD
587 /* kernel loglevels not implemented */
588 ev.loglevel_type = LTTNG_EVENT_LOGLEVEL_ALL;
75e8c5ab
MD
589 } else {
590 ev.type = LTTNG_EVENT_TRACEPOINT;
591 strcpy(ev.name, "*");
300b8fd5
MD
592 ev.loglevel_type = opt_loglevel_type;
593 if (opt_loglevel) {
b2064f54
DG
594 assert(opt_userspace || opt_jul);
595 if (opt_userspace) {
596 ev.loglevel = loglevel_str_to_value(opt_loglevel);
597 } else if (opt_jul) {
598 ev.loglevel = loglevel_jul_str_to_value(opt_loglevel);
599 }
300b8fd5
MD
600 if (ev.loglevel == -1) {
601 ERR("Unknown loglevel %s", opt_loglevel);
2f70b271 602 ret = -LTTNG_ERR_INVALID;
300b8fd5
MD
603 goto error;
604 }
22e25b71 605 } else {
b2064f54
DG
606 assert(opt_userspace || opt_jul);
607 if (opt_userspace) {
608 ev.loglevel = -1;
609 } else if (opt_jul) {
610 ev.loglevel = LTTNG_LOGLEVEL_JUL_ALL;
611 }
300b8fd5 612 }
75e8c5ab 613 }
8c9ae521 614
7ed70bc9
JI
615 if (opt_exclude) {
616 ret = check_exclusion_subsets("*", opt_exclude,
617 &exclusion_count, &exclusion_list);
618 if (ret == CMD_ERROR) {
619 goto error;
620 }
621 }
025faf73 622 if (!opt_filter) {
7ed70bc9
JI
623 ret = lttng_enable_event_with_exclusions(handle,
624 &ev, channel_name,
625 NULL,
626 exclusion_count, exclusion_list);
025faf73
DG
627 if (ret < 0) {
628 switch (-ret) {
629 case LTTNG_ERR_KERN_EVENT_EXIST:
630 WARN("Kernel events already enabled (channel %s, session %s)",
85076754 631 print_channel_name(channel_name), session_name);
025faf73
DG
632 break;
633 default:
634 ERR("Events: %s (channel %s, session %s)",
85076754
MD
635 lttng_strerror(ret),
636 ret == -LTTNG_ERR_NEED_CHANNEL_NAME
637 ? print_raw_channel_name(channel_name)
638 : print_channel_name(channel_name),
639 session_name);
025faf73
DG
640 break;
641 }
642 goto end;
42224349 643 }
8c9ae521 644
025faf73
DG
645 switch (opt_event_type) {
646 case LTTNG_EVENT_TRACEPOINT:
67b58630 647 if (opt_loglevel && dom.type != LTTNG_DOMAIN_KERNEL) {
9c48cab3
JI
648 char *exclusion_string = print_exclusions(exclusion_count, exclusion_list);
649 MSG("All %s tracepoints%s are enabled in channel %s for loglevel %s",
b9dfb167 650 get_domain_str(dom.type),
9c48cab3 651 exclusion_string,
85076754 652 print_channel_name(channel_name),
025faf73 653 opt_loglevel);
9c48cab3 654 free(exclusion_string);
025faf73 655 } else {
9c48cab3
JI
656 char *exclusion_string = print_exclusions(exclusion_count, exclusion_list);
657 MSG("All %s tracepoints%s are enabled in channel %s",
b9dfb167 658 get_domain_str(dom.type),
9c48cab3 659 exclusion_string,
85076754 660 print_channel_name(channel_name));
9c48cab3 661 free(exclusion_string);
025faf73
DG
662 }
663 break;
664 case LTTNG_EVENT_SYSCALL:
665 if (opt_kernel) {
666 MSG("All kernel system calls are enabled in channel %s",
85076754 667 print_channel_name(channel_name));
025faf73
DG
668 }
669 break;
670 case LTTNG_EVENT_ALL:
67b58630 671 if (opt_loglevel && dom.type != LTTNG_DOMAIN_KERNEL) {
9c48cab3
JI
672 char *exclusion_string = print_exclusions(exclusion_count, exclusion_list);
673 MSG("All %s events%s are enabled in channel %s for loglevel %s",
b9dfb167 674 get_domain_str(dom.type),
9c48cab3 675 exclusion_string,
85076754 676 print_channel_name(channel_name),
025faf73 677 opt_loglevel);
9c48cab3 678 free(exclusion_string);
025faf73 679 } else {
9c48cab3
JI
680 char *exclusion_string = print_exclusions(exclusion_count, exclusion_list);
681 MSG("All %s events%s are enabled in channel %s",
b9dfb167 682 get_domain_str(dom.type),
9c48cab3 683 exclusion_string,
85076754 684 print_channel_name(channel_name));
9c48cab3 685 free(exclusion_string);
025faf73
DG
686 }
687 break;
688 default:
689 /*
690 * We should not be here since lttng_enable_event should have
691 * failed on the event type.
692 */
693 goto error;
57064ada 694 }
f3ed775e 695 }
025faf73 696 if (opt_filter) {
7ed70bc9
JI
697 ret = lttng_enable_event_with_exclusions(handle, &ev, channel_name,
698 opt_filter, exclusion_count, exclusion_list);
16363652
DG
699 if (ret < 0) {
700 switch (-ret) {
701 case LTTNG_ERR_FILTER_EXIST:
85076754 702 WARN("Filter on all events is already enabled"
16363652 703 " (channel %s, session %s)",
85076754 704 print_channel_name(channel_name), session_name);
16363652
DG
705 break;
706 default:
85076754
MD
707 ERR("All events: %s (channel %s, session %s, filter \'%s\')",
708 lttng_strerror(ret),
709 ret == -LTTNG_ERR_NEED_CHANNEL_NAME
710 ? print_raw_channel_name(channel_name)
711 : print_channel_name(channel_name),
712 session_name, opt_filter);
16363652
DG
713 break;
714 }
715 goto error;
716 } else {
717 MSG("Filter '%s' successfully set", opt_filter);
718 }
719 }
8c9ae521 720 goto end;
f3ed775e
DG
721 }
722
723 /* Strip event list */
724 event_name = strtok(opt_event_list, ",");
725 while (event_name != NULL) {
6181537c
DG
726 /* Copy name and type of the event */
727 strncpy(ev.name, event_name, LTTNG_SYMBOL_NAME_LEN);
728 ev.name[LTTNG_SYMBOL_NAME_LEN - 1] = '\0';
729 ev.type = opt_event_type;
730
f3ed775e
DG
731 /* Kernel tracer action */
732 if (opt_kernel) {
733 DBG("Enabling kernel event %s for channel %s",
85076754
MD
734 event_name,
735 print_channel_name(channel_name));
f3ed775e
DG
736
737 switch (opt_event_type) {
7a3d1328
MD
738 case LTTNG_EVENT_ALL: /* Default behavior is tracepoint */
739 ev.type = LTTNG_EVENT_TRACEPOINT;
740 /* Fall-through */
e6ddca71 741 case LTTNG_EVENT_TRACEPOINT:
f3ed775e 742 break;
7d29a247 743 case LTTNG_EVENT_PROBE:
cf0e5467 744 ret = parse_probe_opts(&ev, opt_probe);
fbdb7e15 745 if (ret) {
cf0e5467 746 ERR("Unable to parse probe options");
0d63dd19
DG
747 ret = 0;
748 goto error;
749 }
f3ed775e
DG
750 break;
751 case LTTNG_EVENT_FUNCTION:
8f0d098b 752 ret = parse_probe_opts(&ev, opt_function);
fbdb7e15 753 if (ret) {
8f0d098b
MD
754 ERR("Unable to parse function probe options");
755 ret = 0;
756 goto error;
757 }
758 break;
759 case LTTNG_EVENT_FUNCTION_ENTRY:
6181537c
DG
760 strncpy(ev.attr.ftrace.symbol_name, opt_function_entry_symbol,
761 LTTNG_SYMBOL_NAME_LEN);
99497cd0 762 ev.attr.ftrace.symbol_name[LTTNG_SYMBOL_NAME_LEN - 1] = '\0';
f3ed775e 763 break;
a54bd42d 764 case LTTNG_EVENT_SYSCALL:
6181537c
DG
765 MSG("per-syscall selection not supported yet. Use \"-a\" "
766 "for all syscalls.");
f3ed775e 767 default:
1ab1ea0b 768 ret = CMD_UNDEFINED;
f3ed775e
DG
769 goto error;
770 }
0cda4f28 771
0cda4f28 772 /* kernel loglevels not implemented */
8005f29a 773 ev.loglevel_type = LTTNG_EVENT_LOGLEVEL_ALL;
f3ed775e 774 } else if (opt_userspace) { /* User-space tracer action */
d78d6610 775#if 0
e14f64a8
DG
776 if (opt_cmd_name != NULL || opt_pid) {
777 MSG("Only supporting tracing all UST processes (-u) for now.");
1ab1ea0b 778 ret = CMD_UNDEFINED;
2bdd86d4
MD
779 goto error;
780 }
d78d6610 781#endif
6181537c 782
300b8fd5 783 DBG("Enabling UST event %s for channel %s, loglevel %s", event_name,
85076754 784 print_channel_name(channel_name), opt_loglevel ? : "<all>");
2bdd86d4
MD
785
786 switch (opt_event_type) {
787 case LTTNG_EVENT_ALL: /* Default behavior is tracepoint */
2bdd86d4
MD
788 /* Fall-through */
789 case LTTNG_EVENT_TRACEPOINT:
e4baff1e
MD
790 /* Copy name and type of the event */
791 ev.type = LTTNG_EVENT_TRACEPOINT;
792 strncpy(ev.name, event_name, LTTNG_SYMBOL_NAME_LEN);
793 ev.name[LTTNG_SYMBOL_NAME_LEN - 1] = '\0';
2bdd86d4
MD
794 break;
795 case LTTNG_EVENT_PROBE:
796 case LTTNG_EVENT_FUNCTION:
797 case LTTNG_EVENT_FUNCTION_ENTRY:
798 case LTTNG_EVENT_SYSCALL:
799 default:
cc62c0c0 800 ERR("Event type not available for user-space tracing");
4ce78777 801 ret = CMD_UNSUPPORTED;
2bdd86d4
MD
802 goto error;
803 }
0cda4f28 804
7ed70bc9 805 if (opt_exclude) {
d5dd17fd
JI
806 if (opt_event_type != LTTNG_EVENT_ALL && opt_event_type != LTTNG_EVENT_TRACEPOINT) {
807 ERR("Exclusion option can only be used with tracepoint events");
808 ret = CMD_ERROR;
809 goto error;
810 }
7ed70bc9
JI
811 /* Free previously allocated items */
812 if (exclusion_list != NULL) {
813 while (exclusion_count--) {
814 free(exclusion_list[exclusion_count]);
815 }
816 free(exclusion_list);
817 exclusion_list = NULL;
818 }
819 /* Check for proper subsets */
820 ret = check_exclusion_subsets(event_name, opt_exclude,
821 &exclusion_count, &exclusion_list);
822 if (ret == CMD_ERROR) {
823 goto error;
824 }
825 }
826
0cda4f28 827 ev.loglevel_type = opt_loglevel_type;
ed7f4083 828 if (opt_loglevel) {
8005f29a
MD
829 ev.loglevel = loglevel_str_to_value(opt_loglevel);
830 if (ev.loglevel == -1) {
831 ERR("Unknown loglevel %s", opt_loglevel);
2f70b271 832 ret = -LTTNG_ERR_INVALID;
8005f29a
MD
833 goto error;
834 }
22e25b71
MD
835 } else {
836 ev.loglevel = -1;
ed7f4083 837 }
b9dfb167
DG
838 } else if (opt_jul) {
839 if (opt_event_type != LTTNG_EVENT_ALL &&
840 opt_event_type != LTTNG_EVENT_TRACEPOINT) {
841 ERR("Event type not supported for JUL domain.");
842 ret = CMD_UNSUPPORTED;
843 goto error;
844 }
b2064f54
DG
845
846 ev.loglevel_type = opt_loglevel_type;
847 if (opt_loglevel) {
848 ev.loglevel = loglevel_jul_str_to_value(opt_loglevel);
849 if (ev.loglevel == -1) {
850 ERR("Unknown loglevel %s", opt_loglevel);
851 ret = -LTTNG_ERR_INVALID;
852 goto error;
853 }
854 } else {
855 ev.loglevel = LTTNG_LOGLEVEL_JUL_ALL;
856 }
b9dfb167
DG
857 ev.type = LTTNG_EVENT_TRACEPOINT;
858 strncpy(ev.name, event_name, LTTNG_SYMBOL_NAME_LEN);
859 ev.name[LTTNG_SYMBOL_NAME_LEN - 1] = '\0';
f3ed775e 860 } else {
b9dfb167 861 print_missing_domain();
300b8fd5 862 ret = CMD_ERROR;
f3ed775e
DG
863 goto error;
864 }
865
025faf73 866 if (!opt_filter) {
9c48cab3
JI
867 char *exclusion_string;
868
7ed70bc9
JI
869 ret = lttng_enable_event_with_exclusions(handle,
870 &ev, channel_name,
871 NULL, exclusion_count, exclusion_list);
9c48cab3 872 exclusion_string = print_exclusions(exclusion_count, exclusion_list);
025faf73
DG
873 if (ret < 0) {
874 /* Turn ret to positive value to handle the positive error code */
875 switch (-ret) {
876 case LTTNG_ERR_KERN_EVENT_EXIST:
9c48cab3 877 WARN("Kernel event %s%s already enabled (channel %s, session %s)",
85076754 878 event_name,
9c48cab3 879 exclusion_string,
85076754 880 print_channel_name(channel_name), session_name);
025faf73
DG
881 break;
882 default:
9c48cab3
JI
883 ERR("Event %s%s: %s (channel %s, session %s)", event_name,
884 exclusion_string,
85076754
MD
885 lttng_strerror(ret),
886 ret == -LTTNG_ERR_NEED_CHANNEL_NAME
887 ? print_raw_channel_name(channel_name)
888 : print_channel_name(channel_name),
889 session_name);
025faf73
DG
890 break;
891 }
892 warn = 1;
893 } else {
9c48cab3 894 MSG("%s event %s%s created in channel %s",
b9dfb167 895 get_domain_str(dom.type), event_name,
9c48cab3 896 exclusion_string,
85076754 897 print_channel_name(channel_name));
42224349 898 }
9c48cab3 899 free(exclusion_string);
6181537c 900 }
025faf73
DG
901
902 if (opt_filter) {
9c48cab3
JI
903 char *exclusion_string;
904
7ed70bc9
JI
905 ret = lttng_enable_event_with_exclusions(handle, &ev, channel_name,
906 opt_filter, exclusion_count, exclusion_list);
9c48cab3
JI
907 exclusion_string = print_exclusions(exclusion_count, exclusion_list);
908
53a80697 909 if (ret < 0) {
7671f53c
CB
910 switch (-ret) {
911 case LTTNG_ERR_FILTER_EXIST:
9c48cab3 912 WARN("Filter on event %s%s is already enabled"
7671f53c 913 " (channel %s, session %s)",
85076754 914 event_name,
9c48cab3 915 exclusion_string,
85076754 916 print_channel_name(channel_name), session_name);
7671f53c
CB
917 break;
918 default:
9c48cab3
JI
919 ERR("Event %s%s: %s (channel %s, session %s, filter \'%s\')", ev.name,
920 exclusion_string,
85076754
MD
921 lttng_strerror(ret),
922 ret == -LTTNG_ERR_NEED_CHANNEL_NAME
923 ? print_raw_channel_name(channel_name)
924 : print_channel_name(channel_name),
925 session_name, opt_filter);
7671f53c
CB
926 break;
927 }
b69793ae 928 free(exclusion_string);
53a80697 929 goto error;
16363652 930 } else {
9c48cab3
JI
931 MSG("Event %s%s: Filter '%s' successfully set",
932 event_name, exclusion_string,
933 opt_filter);
53a80697 934 }
9c48cab3 935 free(exclusion_string);
53a80697 936 }
6181537c 937
f3ed775e
DG
938 /* Next event */
939 event_name = strtok(NULL, ",");
940 }
941
8c9ae521 942end:
f3ed775e 943error:
ae856491
DG
944 if (warn) {
945 ret = CMD_WARNING;
946 }
cd80958d
DG
947 lttng_destroy_handle(handle);
948
7ed70bc9
JI
949 if (exclusion_list != NULL) {
950 while (exclusion_count--) {
951 free(exclusion_list[exclusion_count]);
952 }
953 free(exclusion_list);
954 }
955
f3ed775e
DG
956 return ret;
957}
958
959/*
6181537c 960 * Add event to trace session
f3ed775e
DG
961 */
962int cmd_enable_events(int argc, const char **argv)
963{
ca1c3607 964 int opt, ret = CMD_SUCCESS;
f3ed775e 965 static poptContext pc;
cd80958d 966 char *session_name = NULL;
de044b7a 967 int event_type = -1;
f3ed775e
DG
968
969 pc = poptGetContext(NULL, argc, argv, long_options, 0);
970 poptReadDefaultConfig(pc, 0);
971
972 /* Default event type */
7a3d1328 973 opt_event_type = LTTNG_EVENT_ALL;
f3ed775e
DG
974
975 while ((opt = poptGetNextOpt(pc)) != -1) {
976 switch (opt) {
977 case OPT_HELP:
ca1c3607 978 usage(stdout);
f3ed775e 979 goto end;
f3ed775e 980 case OPT_TRACEPOINT:
e6ddca71 981 opt_event_type = LTTNG_EVENT_TRACEPOINT;
f3ed775e 982 break;
cf0e5467 983 case OPT_PROBE:
7d29a247 984 opt_event_type = LTTNG_EVENT_PROBE;
f3ed775e
DG
985 break;
986 case OPT_FUNCTION:
987 opt_event_type = LTTNG_EVENT_FUNCTION;
8f0d098b
MD
988 break;
989 case OPT_FUNCTION_ENTRY:
990 opt_event_type = LTTNG_EVENT_FUNCTION_ENTRY;
f3ed775e 991 break;
a54bd42d
MD
992 case OPT_SYSCALL:
993 opt_event_type = LTTNG_EVENT_SYSCALL;
0133c199 994 break;
eeac7d46
MD
995 case OPT_USERSPACE:
996 opt_userspace = 1;
eeac7d46 997 break;
0cda4f28 998 case OPT_LOGLEVEL:
8005f29a 999 opt_loglevel_type = LTTNG_EVENT_LOGLEVEL_RANGE;
0cda4f28
MD
1000 opt_loglevel = poptGetOptArg(pc);
1001 break;
1002 case OPT_LOGLEVEL_ONLY:
8005f29a 1003 opt_loglevel_type = LTTNG_EVENT_LOGLEVEL_SINGLE;
0cda4f28 1004 opt_loglevel = poptGetOptArg(pc);
13dce3b7 1005 break;
679b4943
SM
1006 case OPT_LIST_OPTIONS:
1007 list_cmd_options(stdout, long_options);
679b4943 1008 goto end;
53a80697
MD
1009 case OPT_FILTER:
1010 break;
fac3366c
JI
1011 case OPT_EXCLUDE:
1012 break;
f3ed775e
DG
1013 default:
1014 usage(stderr);
1015 ret = CMD_UNDEFINED;
1016 goto end;
1017 }
de044b7a
DG
1018
1019 /* Validate event type. Multiple event type are not supported. */
1020 if (event_type == -1) {
1021 event_type = opt_event_type;
1022 } else {
1023 if (event_type != opt_event_type) {
1024 ERR("Multiple event type not supported.");
1025 ret = CMD_ERROR;
1026 goto end;
1027 }
1028 }
f3ed775e
DG
1029 }
1030
1031 opt_event_list = (char*) poptGetArg(pc);
1032 if (opt_event_list == NULL && opt_enable_all == 0) {
1033 ERR("Missing event name(s).\n");
1034 usage(stderr);
ca1c3607 1035 ret = CMD_ERROR;
f3ed775e
DG
1036 goto end;
1037 }
1038
cd80958d
DG
1039 if (!opt_session_name) {
1040 session_name = get_session_name();
1041 if (session_name == NULL) {
ca1c3607 1042 ret = CMD_ERROR;
cd80958d
DG
1043 goto end;
1044 }
1045 } else {
1046 session_name = opt_session_name;
1047 }
1048
1049 ret = enable_events(session_name);
f3ed775e
DG
1050
1051end:
cd80958d
DG
1052 if (opt_session_name == NULL) {
1053 free(session_name);
1054 }
1055
ca1c3607 1056 poptFreeContext(pc);
f3ed775e
DG
1057 return ret;
1058}
This page took 0.197813 seconds and 4 git commands to generate.