Fix: HT must not be destroyed with a rcu_read_lock held
[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
42224349 30#include <src/common/sessiond-comm/sessiond-comm.h>
f3ed775e 31
89476427
JRJ
32/* Mi dependancy */
33#include <common/mi-lttng.h>
34
35#include "../command.h"
36
8ab7c0d9
MD
37#if (LTTNG_SYMBOL_NAME_LEN == 256)
38#define LTTNG_SYMBOL_NAME_LEN_SCANF_IS_A_BROKEN_API "255"
39#endif
40
f3ed775e
DG
41static char *opt_event_list;
42static int opt_event_type;
0cda4f28
MD
43static const char *opt_loglevel;
44static int opt_loglevel_type;
6181537c 45static int opt_kernel;
5440dc42 46static char *opt_session_name;
f3ed775e 47static int opt_userspace;
b9dfb167 48static int opt_jul;
5cdb6027 49static int opt_log4j;
0e115563 50static int opt_python;
f3ed775e 51static int opt_enable_all;
cf0e5467 52static char *opt_probe;
8f0d098b
MD
53static char *opt_function;
54static char *opt_function_entry_symbol;
f3ed775e 55static char *opt_channel_name;
53a80697 56static char *opt_filter;
fac3366c 57static char *opt_exclude;
d78d6610
DG
58#if 0
59/* Not implemented yet */
60static char *opt_cmd_name;
61static pid_t opt_pid;
62#endif
f3ed775e
DG
63
64enum {
65 OPT_HELP = 1,
f3ed775e 66 OPT_TRACEPOINT,
cf0e5467 67 OPT_PROBE,
f3ed775e 68 OPT_FUNCTION,
8f0d098b 69 OPT_FUNCTION_ENTRY,
a54bd42d 70 OPT_SYSCALL,
eeac7d46 71 OPT_USERSPACE,
0cda4f28
MD
72 OPT_LOGLEVEL,
73 OPT_LOGLEVEL_ONLY,
679b4943 74 OPT_LIST_OPTIONS,
53a80697 75 OPT_FILTER,
fac3366c 76 OPT_EXCLUDE,
f3ed775e
DG
77};
78
cd80958d 79static struct lttng_handle *handle;
89476427 80static struct mi_writer *writer;
cd80958d 81
f3ed775e
DG
82static struct poptOption long_options[] = {
83 /* longName, shortName, argInfo, argPtr, value, descrip, argDesc */
84 {"help", 'h', POPT_ARG_NONE, 0, OPT_HELP, 0, 0},
5440dc42 85 {"session", 's', POPT_ARG_STRING, &opt_session_name, 0, 0, 0},
e14f64a8 86 {"all", 'a', POPT_ARG_VAL, &opt_enable_all, 1, 0, 0},
f3ed775e
DG
87 {"channel", 'c', POPT_ARG_STRING, &opt_channel_name, 0, 0, 0},
88 {"kernel", 'k', POPT_ARG_VAL, &opt_kernel, 1, 0, 0},
d78d6610 89 {"userspace", 'u', POPT_ARG_NONE, 0, OPT_USERSPACE, 0, 0},
b9dfb167 90 {"jul", 'j', POPT_ARG_VAL, &opt_jul, 1, 0, 0},
5cdb6027 91 {"log4j", 'l', POPT_ARG_VAL, &opt_log4j, 1, 0, 0},
0e115563 92 {"python", 'p', POPT_ARG_VAL, &opt_python, 1, 0, 0},
f3ed775e 93 {"tracepoint", 0, POPT_ARG_NONE, 0, OPT_TRACEPOINT, 0, 0},
7ebae521 94 {"probe", 0, POPT_ARG_STRING, &opt_probe, OPT_PROBE, 0, 0},
40e9d5d3 95 {"function", 0, POPT_ARG_STRING, &opt_function, OPT_FUNCTION, 0, 0},
b213d387
MD
96#if 0
97 /*
98 * Currently removed from lttng kernel tracer. Removed from
99 * lttng UI to discourage its use.
100 */
40e9d5d3 101 {"function:entry", 0, POPT_ARG_STRING, &opt_function_entry_symbol, OPT_FUNCTION_ENTRY, 0, 0},
b213d387 102#endif
7ebae521 103 {"syscall", 0, POPT_ARG_NONE, 0, OPT_SYSCALL, 0, 0},
0cda4f28
MD
104 {"loglevel", 0, POPT_ARG_STRING, 0, OPT_LOGLEVEL, 0, 0},
105 {"loglevel-only", 0, POPT_ARG_STRING, 0, OPT_LOGLEVEL_ONLY, 0, 0},
679b4943 106 {"list-options", 0, POPT_ARG_NONE, NULL, OPT_LIST_OPTIONS, NULL, NULL},
53a80697 107 {"filter", 'f', POPT_ARG_STRING, &opt_filter, OPT_FILTER, 0, 0},
fac3366c 108 {"exclude", 'x', POPT_ARG_STRING, &opt_exclude, OPT_EXCLUDE, 0, 0},
f3ed775e
DG
109 {0, 0, 0, 0, 0, 0, 0}
110};
111
112/*
113 * usage
114 */
115static void usage(FILE *ofp)
116{
32a6298d 117 fprintf(ofp, "usage: lttng enable-event NAME[,NAME2,...] [-k|-u] [OPTIONS] \n");
f3ed775e 118 fprintf(ofp, "\n");
32a6298d 119 fprintf(ofp, "Options:\n");
f3ed775e 120 fprintf(ofp, " -h, --help Show this help\n");
679b4943 121 fprintf(ofp, " --list-options Simple listing of options\n");
32a6298d
DG
122 fprintf(ofp, " -s, --session NAME Apply to session name\n");
123 fprintf(ofp, " -c, --channel NAME Apply to this channel\n");
e08bff8d 124 fprintf(ofp, " -a, --all Enable all tracepoints and syscalls\n");
f3ed775e 125 fprintf(ofp, " -k, --kernel Apply for the kernel tracer\n");
27221701 126 fprintf(ofp, " -u, --userspace Apply to the user-space tracer\n");
b9dfb167 127 fprintf(ofp, " -j, --jul Apply for Java application using JUL\n");
5cdb6027 128 fprintf(ofp, " -l, --log4j Apply for Java application using LOG4j\n");
0e115563 129 fprintf(ofp, " -p, --python Apply for Java application using LOG4j\n");
f3ed775e
DG
130 fprintf(ofp, "\n");
131 fprintf(ofp, "Event options:\n");
132 fprintf(ofp, " --tracepoint Tracepoint event (default)\n");
be49af1e
MD
133 fprintf(ofp, " - userspace tracer supports wildcards at end of string.\n");
134 fprintf(ofp, " Don't forget to quote to deal with bash expansion.\n");
135 fprintf(ofp, " e.g.:\n");
136 fprintf(ofp, " \"*\"\n");
137 fprintf(ofp, " \"app_component:na*\"\n");
6a240cd9 138 fprintf(ofp, " --probe (addr | symbol | symbol+offset)\n");
cf0e5467
MD
139 fprintf(ofp, " Dynamic probe.\n");
140 fprintf(ofp, " Addr and offset can be octal (0NNN...),\n");
141 fprintf(ofp, " decimal (NNN...) or hexadecimal (0xNNN...)\n");
6a240cd9 142 fprintf(ofp, " --function (addr | symbol | symbol+offset)\n");
8f0d098b
MD
143 fprintf(ofp, " Dynamic function entry/return probe.\n");
144 fprintf(ofp, " Addr and offset can be octal (0NNN...),\n");
145 fprintf(ofp, " decimal (NNN...) or hexadecimal (0xNNN...)\n");
b213d387 146#if 0
8f0d098b
MD
147 fprintf(ofp, " --function:entry symbol\n");
148 fprintf(ofp, " Function tracer event\n");
b213d387 149#endif
a54bd42d 150 fprintf(ofp, " --syscall System call event\n");
f3ed775e 151 fprintf(ofp, "\n");
300b8fd5 152 fprintf(ofp, " --loglevel name\n");
f9e8873b 153 fprintf(ofp, " Tracepoint loglevel range from 0 to loglevel.\n");
5cdb6027 154 fprintf(ofp, " For JUL/LOG4j domain, see the table below for the range values.\n");
300b8fd5
MD
155 fprintf(ofp, " --loglevel-only name\n");
156 fprintf(ofp, " Tracepoint loglevel (only this loglevel)\n");
157 fprintf(ofp, "\n");
0c8477c8
MD
158 fprintf(ofp, " The loglevel or loglevel-only options should be\n");
159 fprintf(ofp, " combined with a tracepoint name or tracepoint\n");
160 fprintf(ofp, " wildcard.\n");
161 fprintf(ofp, " Available loglevels:\n");
162 fprintf(ofp, " (higher value is more verbose)\n");
46839cc2
MD
163 fprintf(ofp, " TRACE_EMERG = 0\n");
164 fprintf(ofp, " TRACE_ALERT = 1\n");
165 fprintf(ofp, " TRACE_CRIT = 2\n");
166 fprintf(ofp, " TRACE_ERR = 3\n");
167 fprintf(ofp, " TRACE_WARNING = 4\n");
168 fprintf(ofp, " TRACE_NOTICE = 5\n");
169 fprintf(ofp, " TRACE_INFO = 6\n");
170 fprintf(ofp, " TRACE_DEBUG_SYSTEM = 7\n");
171 fprintf(ofp, " TRACE_DEBUG_PROGRAM = 8\n");
172 fprintf(ofp, " TRACE_DEBUG_PROCESS = 9\n");
173 fprintf(ofp, " TRACE_DEBUG_MODULE = 10\n");
174 fprintf(ofp, " TRACE_DEBUG_UNIT = 11\n");
175 fprintf(ofp, " TRACE_DEBUG_FUNCTION = 12\n");
176 fprintf(ofp, " TRACE_DEBUG_LINE = 13\n");
177 fprintf(ofp, " TRACE_DEBUG = 14\n");
178 fprintf(ofp, " (shortcuts such as \"system\" are allowed)\n");
b2064f54
DG
179 fprintf(ofp, "\n");
180 fprintf(ofp, " Available JUL domain loglevels:\n");
181 fprintf(ofp, " JUL_OFF = INT32_MAX\n");
182 fprintf(ofp, " JUL_SEVERE = %d\n", LTTNG_LOGLEVEL_JUL_SEVERE);
183 fprintf(ofp, " JUL_WARNING = %d\n", LTTNG_LOGLEVEL_JUL_WARNING);
184 fprintf(ofp, " JUL_INFO = %d\n", LTTNG_LOGLEVEL_JUL_INFO);
185 fprintf(ofp, " JUL_CONFIG = %d\n", LTTNG_LOGLEVEL_JUL_CONFIG);
186 fprintf(ofp, " JUL_FINE = %d\n", LTTNG_LOGLEVEL_JUL_FINE);
187 fprintf(ofp, " JUL_FINER = %d\n", LTTNG_LOGLEVEL_JUL_FINER);
188 fprintf(ofp, " JUL_FINEST = %d\n", LTTNG_LOGLEVEL_JUL_FINEST);
189 fprintf(ofp, " JUL_ALL = INT32_MIN\n");
190 fprintf(ofp, " (shortcuts such as \"severe\" are allowed)\n");
191 fprintf(ofp, "\n");
5cdb6027
DG
192 fprintf(ofp, " Available LOG4j domain loglevels:\n");
193 fprintf(ofp, " LOG4J_OFF = INT32_MAX\n");
194 fprintf(ofp, " LOG4J_FATAL = %d\n", LTTNG_LOGLEVEL_LOG4J_FATAL);
195 fprintf(ofp, " LOG4J_ERROR = %d\n", LTTNG_LOGLEVEL_LOG4J_ERROR);
196 fprintf(ofp, " LOG4J_WARN = %d\n", LTTNG_LOGLEVEL_LOG4J_WARN);
197 fprintf(ofp, " LOG4J_INFO = %d\n", LTTNG_LOGLEVEL_LOG4J_INFO);
198 fprintf(ofp, " LOG4J_DEBUG = %d\n", LTTNG_LOGLEVEL_LOG4J_DEBUG);
199 fprintf(ofp, " LOG4J_TRACE = %d\n", LTTNG_LOGLEVEL_LOG4J_TRACE);
200 fprintf(ofp, " LOG4J_ALL = INT32_MIN\n");
201 fprintf(ofp, " (shortcuts such as \"severe\" are allowed)\n");
202 fprintf(ofp, "\n");
0e115563
DG
203 fprintf(ofp, " Available Python domain loglevels:\n");
204 fprintf(ofp, " PYTHON_CRITICAL = %d\n", LTTNG_LOGLEVEL_PYTHON_CRITICAL);
205 fprintf(ofp, " PYTHON_ERROR = %d\n", LTTNG_LOGLEVEL_PYTHON_ERROR);
206 fprintf(ofp, " PYTHON_WARNING = %d\n", LTTNG_LOGLEVEL_PYTHON_WARNING);
207 fprintf(ofp, " PYTHON_INFO = %d\n", LTTNG_LOGLEVEL_PYTHON_INFO);
208 fprintf(ofp, " PYTHON_DEBUG = %d\n", LTTNG_LOGLEVEL_PYTHON_DEBUG);
209 fprintf(ofp, " PYTHON_NOTSET = %d\n", LTTNG_LOGLEVEL_PYTHON_NOTSET);
210 fprintf(ofp, " (shortcuts such as \"critical\" are allowed)\n");
211 fprintf(ofp, "\n");
f2611ab0 212 fprintf(ofp, " -f, --filter \'expression\'\n");
ee8ccafa
MD
213 fprintf(ofp, " Filter expression on event fields and context.\n");
214 fprintf(ofp, " Event recording depends on evaluation.\n");
919e300c
MD
215 fprintf(ofp, " Only specify on first activation of\n");
216 fprintf(ofp, " a given event within a session.\n");
217 fprintf(ofp, " Filter only allowed when enabling\n");
218 fprintf(ofp, " events within a session before tracing\n");
9bd578f5
MD
219 fprintf(ofp, " is started. If the filter fails to link\n");
220 fprintf(ofp, " with the event within the traced domain,\n");
221 fprintf(ofp, " the event will be discarded. Currently,\n");
222 fprintf(ofp, " filter is only implemented for the user-space\n");
223 fprintf(ofp, " tracer.\n");
224 fprintf(ofp, " Expression examples:.\n");
225 fprintf(ofp, " \n");
226 fprintf(ofp, " 'intfield > 500 && intfield < 503'\n");
6a240cd9 227 fprintf(ofp, " '(strfield == \"test\" || intfield != 10) && intfield > 33'\n");
9bd578f5
MD
228 fprintf(ofp, " 'doublefield > 1.1 && intfield < 5.3'\n");
229 fprintf(ofp, " \n");
230 fprintf(ofp, " Wildcards are allowed at the end of strings:\n");
231 fprintf(ofp, " 'seqfield1 == \"te*\"'\n");
232 fprintf(ofp, " In string literals, the escape character is '\\'.\n");
233 fprintf(ofp, " Use '\\*' for the '*' character, and '\\\\' for\n");
ee8ccafa
MD
234 fprintf(ofp, " the '\\' character. Wildcard match any sequence of,\n");
235 fprintf(ofp, " characters including an empty sub-string (match 0 or\n");
236 fprintf(ofp, " more characters).\n");
237 fprintf(ofp, "\n");
238 fprintf(ofp, " Context information can be used for filtering. The\n");
239 fprintf(ofp, " examples below show usage of context filtering on\n");
240 fprintf(ofp, " process name (with a wildcard), process ID range, and\n");
241 fprintf(ofp, " unique thread ID for filtering. The process and\n");
242 fprintf(ofp, " thread ID of running applications can be found under\n");
243 fprintf(ofp, " columns \"PID\" and \"LWP\" of the \"ps -eLf\" command.\n");
244 fprintf(ofp, "\n");
245 fprintf(ofp, " '$ctx.procname == \"demo*\"'\n");
246 fprintf(ofp, " '$ctx.vpid >= 4433 && $ctx.vpid < 4455'\n");
247 fprintf(ofp, " '$ctx.vtid == 1234'\n");
c2063d0b
JI
248 fprintf(ofp, " -x, --exclude LIST\n");
249 fprintf(ofp, " Add exclusions to UST tracepoints:\n");
250 fprintf(ofp, " Events that match any of the items\n");
251 fprintf(ofp, " in the comma-separated LIST are not\n");
252 fprintf(ofp, " enabled, even if they match a wildcard\n");
253 fprintf(ofp, " definition of the event.\n");
300b8fd5 254 fprintf(ofp, "\n");
f3ed775e
DG
255}
256
0d63dd19 257/*
6181537c 258 * Parse probe options.
0d63dd19 259 */
cf0e5467 260static int parse_probe_opts(struct lttng_event *ev, char *opt)
0d63dd19 261{
49d4e302
JRJ
262 int ret = CMD_SUCCESS;
263 int match;
8ff0bbd0 264 char s_hex[19];
8ab7c0d9 265#define S_HEX_LEN_SCANF_IS_A_BROKEN_API "18" /* 18 is (19 - 1) (\0 is extra) */
0d63dd19
DG
266 char name[LTTNG_SYMBOL_NAME_LEN];
267
268 if (opt == NULL) {
49d4e302 269 ret = CMD_ERROR;
8f0d098b 270 goto end;
0d63dd19
DG
271 }
272
273 /* Check for symbol+offset */
49d4e302 274 match = sscanf(opt, "%" LTTNG_SYMBOL_NAME_LEN_SCANF_IS_A_BROKEN_API
8ab7c0d9 275 "[^'+']+%" S_HEX_LEN_SCANF_IS_A_BROKEN_API "s", name, s_hex);
49d4e302 276 if (match == 2) {
7d29a247 277 strncpy(ev->attr.probe.symbol_name, name, LTTNG_SYMBOL_NAME_LEN);
99497cd0 278 ev->attr.probe.symbol_name[LTTNG_SYMBOL_NAME_LEN - 1] = '\0';
cf0e5467 279 DBG("probe symbol %s", ev->attr.probe.symbol_name);
9d035200 280 if (*s_hex == '\0') {
8ff0bbd0 281 ERR("Invalid probe offset %s", s_hex);
49d4e302 282 ret = CMD_ERROR;
8f0d098b 283 goto end;
0d63dd19 284 }
8ff0bbd0 285 ev->attr.probe.offset = strtoul(s_hex, NULL, 0);
cf0e5467 286 DBG("probe offset %" PRIu64, ev->attr.probe.offset);
3000dc78 287 ev->attr.probe.addr = 0;
8f0d098b
MD
288 goto end;
289 }
290
291 /* Check for symbol */
292 if (isalpha(name[0])) {
49d4e302 293 match = sscanf(opt, "%" LTTNG_SYMBOL_NAME_LEN_SCANF_IS_A_BROKEN_API "s",
8ab7c0d9 294 name);
49d4e302 295 if (match == 1) {
8f0d098b 296 strncpy(ev->attr.probe.symbol_name, name, LTTNG_SYMBOL_NAME_LEN);
99497cd0 297 ev->attr.probe.symbol_name[LTTNG_SYMBOL_NAME_LEN - 1] = '\0';
8f0d098b
MD
298 DBG("probe symbol %s", ev->attr.probe.symbol_name);
299 ev->attr.probe.offset = 0;
300 DBG("probe offset %" PRIu64, ev->attr.probe.offset);
301 ev->attr.probe.addr = 0;
302 goto end;
303 }
0d63dd19
DG
304 }
305
306 /* Check for address */
49d4e302
JRJ
307 match = sscanf(opt, "%" S_HEX_LEN_SCANF_IS_A_BROKEN_API "s", s_hex);
308 if (match > 0) {
9d035200 309 if (*s_hex == '\0') {
8ff0bbd0 310 ERR("Invalid probe address %s", s_hex);
49d4e302 311 ret = CMD_ERROR;
8f0d098b 312 goto end;
0d63dd19 313 }
8ff0bbd0 314 ev->attr.probe.addr = strtoul(s_hex, NULL, 0);
cf0e5467 315 DBG("probe addr %" PRIu64, ev->attr.probe.addr);
3000dc78
DG
316 ev->attr.probe.offset = 0;
317 memset(ev->attr.probe.symbol_name, 0, LTTNG_SYMBOL_NAME_LEN);
8f0d098b 318 goto end;
0d63dd19
DG
319 }
320
321 /* No match */
49d4e302 322 ret = CMD_ERROR;
0d63dd19 323
8f0d098b 324end:
0d63dd19
DG
325 return ret;
326}
327
5cdb6027
DG
328/*
329 * Maps LOG4j loglevel from string to value
330 */
331static int loglevel_log4j_str_to_value(const char *inputstr)
332{
333 int i = 0;
334 char str[LTTNG_SYMBOL_NAME_LEN];
335
336 /*
337 * Loop up to LTTNG_SYMBOL_NAME_LEN minus one because the NULL bytes is
338 * added at the end of the loop so a the upper bound we avoid the overflow.
339 */
340 while (i < (LTTNG_SYMBOL_NAME_LEN - 1) && inputstr[i] != '\0') {
341 str[i] = toupper(inputstr[i]);
342 i++;
343 }
344 str[i] = '\0';
345
346 if (!strcmp(str, "LOG4J_OFF") || !strcmp(str, "OFF")) {
347 return LTTNG_LOGLEVEL_LOG4J_OFF;
348 } else if (!strcmp(str, "LOG4J_FATAL") || !strcmp(str, "FATAL")) {
349 return LTTNG_LOGLEVEL_LOG4J_FATAL;
350 } else if (!strcmp(str, "LOG4J_ERROR") || !strcmp(str, "ERROR")) {
351 return LTTNG_LOGLEVEL_LOG4J_ERROR;
352 } else if (!strcmp(str, "LOG4J_WARN") || !strcmp(str, "WARN")) {
353 return LTTNG_LOGLEVEL_LOG4J_WARN;
354 } else if (!strcmp(str, "LOG4J_INFO") || !strcmp(str, "INFO")) {
355 return LTTNG_LOGLEVEL_LOG4J_INFO;
356 } else if (!strcmp(str, "LOG4J_DEBUG") || !strcmp(str, "DEBUG")) {
357 return LTTNG_LOGLEVEL_LOG4J_DEBUG;
358 } else if (!strcmp(str, "LOG4J_TRACE") || !strcmp(str, "TRACE")) {
359 return LTTNG_LOGLEVEL_LOG4J_TRACE;
360 } else if (!strcmp(str, "LOG4J_ALL") || !strcmp(str, "ALL")) {
361 return LTTNG_LOGLEVEL_LOG4J_ALL;
362 } else {
363 return -1;
364 }
365}
366
b2064f54
DG
367/*
368 * Maps JUL loglevel from string to value
369 */
370static int loglevel_jul_str_to_value(const char *inputstr)
371{
372 int i = 0;
373 char str[LTTNG_SYMBOL_NAME_LEN];
374
375 /*
376 * Loop up to LTTNG_SYMBOL_NAME_LEN minus one because the NULL bytes is
377 * added at the end of the loop so a the upper bound we avoid the overflow.
378 */
379 while (i < (LTTNG_SYMBOL_NAME_LEN - 1) && inputstr[i] != '\0') {
380 str[i] = toupper(inputstr[i]);
381 i++;
382 }
383 str[i] = '\0';
384
385 if (!strcmp(str, "JUL_OFF") || !strcmp(str, "OFF")) {
386 return LTTNG_LOGLEVEL_JUL_OFF;
387 } else if (!strcmp(str, "JUL_SEVERE") || !strcmp(str, "SEVERE")) {
388 return LTTNG_LOGLEVEL_JUL_SEVERE;
389 } else if (!strcmp(str, "JUL_WARNING") || !strcmp(str, "WARNING")) {
390 return LTTNG_LOGLEVEL_JUL_WARNING;
391 } else if (!strcmp(str, "JUL_INFO") || !strcmp(str, "INFO")) {
392 return LTTNG_LOGLEVEL_JUL_INFO;
393 } else if (!strcmp(str, "JUL_CONFIG") || !strcmp(str, "CONFIG")) {
394 return LTTNG_LOGLEVEL_JUL_CONFIG;
395 } else if (!strcmp(str, "JUL_FINE") || !strcmp(str, "FINE")) {
396 return LTTNG_LOGLEVEL_JUL_FINE;
397 } else if (!strcmp(str, "JUL_FINER") || !strcmp(str, "FINER")) {
398 return LTTNG_LOGLEVEL_JUL_FINER;
399 } else if (!strcmp(str, "JUL_FINEST") || !strcmp(str, "FINEST")) {
400 return LTTNG_LOGLEVEL_JUL_FINEST;
401 } else if (!strcmp(str, "JUL_ALL") || !strcmp(str, "ALL")) {
402 return LTTNG_LOGLEVEL_JUL_ALL;
403 } else {
404 return -1;
405 }
406}
407
0e115563
DG
408/*
409 * Maps Python loglevel from string to value
410 */
411static int loglevel_python_str_to_value(const char *inputstr)
412{
413 int i = 0;
414 char str[LTTNG_SYMBOL_NAME_LEN];
415
416 /*
417 * Loop up to LTTNG_SYMBOL_NAME_LEN minus one because the NULL bytes is
418 * added at the end of the loop so a the upper bound we avoid the overflow.
419 */
420 while (i < (LTTNG_SYMBOL_NAME_LEN - 1) && inputstr[i] != '\0') {
421 str[i] = toupper(inputstr[i]);
422 i++;
423 }
424 str[i] = '\0';
425
426 if (!strcmp(str, "PYTHON_CRITICAL") || !strcmp(str, "CRITICAL")) {
427 return LTTNG_LOGLEVEL_PYTHON_CRITICAL;
428 } else if (!strcmp(str, "PYTHON_ERROR") || !strcmp(str, "ERROR")) {
429 return LTTNG_LOGLEVEL_PYTHON_ERROR;
430 } else if (!strcmp(str, "PYTHON_WARNING") || !strcmp(str, "WARNING")) {
431 return LTTNG_LOGLEVEL_PYTHON_WARNING;
432 } else if (!strcmp(str, "PYTHON_INFO") || !strcmp(str, "INFO")) {
433 return LTTNG_LOGLEVEL_PYTHON_INFO;
434 } else if (!strcmp(str, "PYTNON_DEBUG") || !strcmp(str, "DEBUG")) {
435 return LTTNG_LOGLEVEL_PYTHON_DEBUG;
436 } else if (!strcmp(str, "PYTHON_NOTSET") || !strcmp(str, "NOTSET")) {
437 return LTTNG_LOGLEVEL_PYTHON_NOTSET;
438 } else {
439 return -1;
440 }
441}
442
8005f29a 443/*
0c8477c8 444 * Maps loglevel from string to value
8005f29a
MD
445 */
446static
46839cc2 447int loglevel_str_to_value(const char *inputstr)
8005f29a 448{
46839cc2
MD
449 int i = 0;
450 char str[LTTNG_SYMBOL_NAME_LEN];
451
e051e07c
DG
452 /*
453 * Loop up to LTTNG_SYMBOL_NAME_LEN minus one because the NULL bytes is
454 * added at the end of the loop so a the upper bound we avoid the overflow.
455 */
456 while (i < (LTTNG_SYMBOL_NAME_LEN - 1) && inputstr[i] != '\0') {
46839cc2
MD
457 str[i] = toupper(inputstr[i]);
458 i++;
459 }
460 str[i] = '\0';
461 if (!strcmp(str, "TRACE_EMERG") || !strcmp(str, "EMERG")) {
462 return LTTNG_LOGLEVEL_EMERG;
463 } else if (!strcmp(str, "TRACE_ALERT") || !strcmp(str, "ALERT")) {
464 return LTTNG_LOGLEVEL_ALERT;
465 } else if (!strcmp(str, "TRACE_CRIT") || !strcmp(str, "CRIT")) {
466 return LTTNG_LOGLEVEL_CRIT;
467 } else if (!strcmp(str, "TRACE_ERR") || !strcmp(str, "ERR")) {
468 return LTTNG_LOGLEVEL_ERR;
469 } else if (!strcmp(str, "TRACE_WARNING") || !strcmp(str, "WARNING")) {
470 return LTTNG_LOGLEVEL_WARNING;
471 } else if (!strcmp(str, "TRACE_NOTICE") || !strcmp(str, "NOTICE")) {
472 return LTTNG_LOGLEVEL_NOTICE;
473 } else if (!strcmp(str, "TRACE_INFO") || !strcmp(str, "INFO")) {
474 return LTTNG_LOGLEVEL_INFO;
475 } else if (!strcmp(str, "TRACE_DEBUG_SYSTEM") || !strcmp(str, "DEBUG_SYSTEM") || !strcmp(str, "SYSTEM")) {
476 return LTTNG_LOGLEVEL_DEBUG_SYSTEM;
477 } else if (!strcmp(str, "TRACE_DEBUG_PROGRAM") || !strcmp(str, "DEBUG_PROGRAM") || !strcmp(str, "PROGRAM")) {
478 return LTTNG_LOGLEVEL_DEBUG_PROGRAM;
479 } else if (!strcmp(str, "TRACE_DEBUG_PROCESS") || !strcmp(str, "DEBUG_PROCESS") || !strcmp(str, "PROCESS")) {
480 return LTTNG_LOGLEVEL_DEBUG_PROCESS;
481 } else if (!strcmp(str, "TRACE_DEBUG_MODULE") || !strcmp(str, "DEBUG_MODULE") || !strcmp(str, "MODULE")) {
482 return LTTNG_LOGLEVEL_DEBUG_MODULE;
483 } else if (!strcmp(str, "TRACE_DEBUG_UNIT") || !strcmp(str, "DEBUG_UNIT") || !strcmp(str, "UNIT")) {
484 return LTTNG_LOGLEVEL_DEBUG_UNIT;
485 } else if (!strcmp(str, "TRACE_DEBUG_FUNCTION") || !strcmp(str, "DEBUG_FUNCTION") || !strcmp(str, "FUNCTION")) {
486 return LTTNG_LOGLEVEL_DEBUG_FUNCTION;
487 } else if (!strcmp(str, "TRACE_DEBUG_LINE") || !strcmp(str, "DEBUG_LINE") || !strcmp(str, "LINE")) {
488 return LTTNG_LOGLEVEL_DEBUG_LINE;
489 } else if (!strcmp(str, "TRACE_DEBUG") || !strcmp(str, "DEBUG")) {
490 return LTTNG_LOGLEVEL_DEBUG;
8005f29a
MD
491 } else {
492 return -1;
493 }
494}
495
85076754
MD
496static
497const char *print_channel_name(const char *name)
498{
499 return name ? : DEFAULT_CHANNEL_NAME;
500}
501
502static
503const char *print_raw_channel_name(const char *name)
504{
505 return name ? : "<default>";
506}
507
89476427
JRJ
508/*
509 * Mi print exlcusion list
510 */
511static
512int mi_print_exclusion(int count, char **names)
513{
514 int i, ret;
515
516 assert(writer);
517
518 if (count == 0) {
519 ret = 0;
520 goto end;
521 }
522 ret = mi_lttng_writer_open_element(writer, config_element_exclusions);
523 if (ret) {
524 goto end;
525 }
526
527 for (i = 0; i < count; i++) {
528 ret = mi_lttng_writer_write_element_string(writer,
529 config_element_exclusion, names[i]);
530 if (ret) {
531 goto end;
532 }
533 }
534
535 /* Close exclusions element */
536 ret = mi_lttng_writer_close_element(writer);
537
538end:
539 return ret;
540}
541
9c48cab3
JI
542/*
543 * Return allocated string for pretty-printing exclusion names.
544 */
545static
546char *print_exclusions(int count, char **names)
547{
548 int length = 0;
549 int i;
550 const char *preamble = " excluding ";
551 char *ret;
552
553 if (count == 0) {
554 return strdup("");
555 }
556
557 /* calculate total required length */
558 for (i = 0; i < count; i++) {
559 length += strlen(names[i]) + 1;
560 }
561
562 /* add length of preamble + one for NUL - one for last (missing) comma */
563 length += strlen(preamble);
564 ret = malloc(length);
565 strncpy(ret, preamble, length);
566 for (i = 0; i < count; i++) {
567 strcat(ret, names[i]);
568 if (i != count - 1) {
569 strcat(ret, ",");
570 }
571 }
89476427 572
9c48cab3
JI
573 return ret;
574}
575
748bde76
JI
576/*
577 * Compare list of exclusions against an event name.
578 * Return a list of legal exclusion names.
579 * Produce an error or a warning about others (depending on the situation)
580 */
581static
582int check_exclusion_subsets(const char *event_name,
583 const char *exclusions,
584 int *exclusion_count_ptr,
585 char ***exclusion_list_ptr)
586{
587 const char *excluder_ptr;
588 const char *event_ptr;
589 const char *next_excluder;
590 int excluder_length;
591 int exclusion_count = 0;
592 char **exclusion_list = NULL;
593 int ret = CMD_SUCCESS;
594
595 if (event_name[strlen(event_name) - 1] != '*') {
596 ERR("Event %s: Excluders can only be used with wildcarded events", event_name);
597 goto error;
598 }
599
600 next_excluder = exclusions;
601 while (*next_excluder != 0) {
602 event_ptr = event_name;
603 excluder_ptr = next_excluder;
604 excluder_length = strcspn(next_excluder, ",");
605
606 /* Scan both the excluder and the event letter by letter */
607 while (1) {
608 char e, x;
609
610 e = *event_ptr;
611 x = *excluder_ptr;
612
613 if (x == '*') {
614 /* Event is a subset of the excluder */
615 ERR("Event %s: %.*s excludes all events from %s",
616 event_name,
617 excluder_length,
618 next_excluder,
619 event_name);
620 goto error;
621 }
622 if (e == '*') {
623 /* Excluder is a proper subset of event */
624 exclusion_count++;
625 exclusion_list = realloc(exclusion_list, sizeof(char **) * exclusion_count);
626 exclusion_list[exclusion_count - 1] = strndup(next_excluder, excluder_length);
627
628 break;
629 }
630 if (x != e) {
631 /* Excluder and event sets have no common elements */
632 WARN("Event %s: %.*s does not exclude any events from %s",
633 event_name,
634 excluder_length,
635 next_excluder,
636 event_name);
637 break;
638 }
639 excluder_ptr++;
640 event_ptr++;
641 }
642 /* next excluder */
643 next_excluder += excluder_length;
644 if (*next_excluder == ',') {
645 next_excluder++;
646 }
647 }
648 goto end;
649error:
650 while (exclusion_count--) {
651 free(exclusion_list[exclusion_count]);
652 }
653 if (exclusion_list != NULL) {
654 free(exclusion_list);
655 }
656 exclusion_list = NULL;
657 exclusion_count = 0;
658 ret = CMD_ERROR;
659end:
660 *exclusion_count_ptr = exclusion_count;
661 *exclusion_list_ptr = exclusion_list;
662 return ret;
663}
f3ed775e 664/*
6181537c 665 * Enabling event using the lttng API.
89476427 666 * Note: in case of error only the last error code will be return.
f3ed775e 667 */
cd80958d 668static int enable_events(char *session_name)
f3ed775e 669{
89476427
JRJ
670 int ret = CMD_SUCCESS, command_ret = CMD_SUCCESS;
671 int error_holder = CMD_SUCCESS, warn = 0, error = 0, success = 1;
b73d0b29 672 char *event_name, *channel_name = NULL;
f3ed775e 673 struct lttng_event ev;
7d29a247 674 struct lttng_domain dom;
7ed70bc9
JI
675 int exclusion_count = 0;
676 char **exclusion_list = NULL;
f3ed775e 677
441c16a7
MD
678 memset(&ev, 0, sizeof(ev));
679 memset(&dom, 0, sizeof(dom));
680
53a80697
MD
681 if (opt_kernel) {
682 if (opt_filter) {
683 ERR("Filter not implement for kernel tracing yet");
684 ret = CMD_ERROR;
685 goto error;
686 }
67b58630
JG
687 if (opt_loglevel) {
688 WARN("Kernel loglevels are not supported.");
689 }
53a80697
MD
690 }
691
7d29a247
DG
692 /* Create lttng domain */
693 if (opt_kernel) {
694 dom.type = LTTNG_DOMAIN_KERNEL;
7972aab2 695 dom.buf_type = LTTNG_BUFFER_GLOBAL;
d78d6610 696 } else if (opt_userspace) {
2bdd86d4 697 dom.type = LTTNG_DOMAIN_UST;
7972aab2 698 /* Default. */
8692d4e5 699 dom.buf_type = LTTNG_BUFFER_PER_UID;
b9dfb167
DG
700 } else if (opt_jul) {
701 dom.type = LTTNG_DOMAIN_JUL;
702 /* Default. */
703 dom.buf_type = LTTNG_BUFFER_PER_UID;
5cdb6027
DG
704 } else if (opt_log4j) {
705 dom.type = LTTNG_DOMAIN_LOG4J;
706 /* Default. */
707 dom.buf_type = LTTNG_BUFFER_PER_UID;
0e115563
DG
708 } else if (opt_python) {
709 dom.type = LTTNG_DOMAIN_PYTHON;
710 /* Default. */
711 dom.buf_type = LTTNG_BUFFER_PER_UID;
6181537c 712 } else {
b9dfb167 713 print_missing_domain();
d16c1a4c 714 ret = CMD_ERROR;
6181537c 715 goto error;
2bdd86d4 716 }
7d29a247 717
d5dd17fd
JI
718 if (opt_kernel && opt_exclude) {
719 ERR("Event name exclusions are not yet implemented for kernel events");
720 ret = CMD_ERROR;
721 goto error;
722 }
723
85076754 724 channel_name = opt_channel_name;
ae856491 725
cd80958d
DG
726 handle = lttng_create_handle(session_name, &dom);
727 if (handle == NULL) {
728 ret = -1;
729 goto error;
730 }
1aef21b6 731
89476427
JRJ
732 /* Prepare Mi */
733 if (lttng_opt_mi) {
734 /* Open a events element */
735 ret = mi_lttng_writer_open_element(writer, config_element_events);
736 if (ret) {
737 ret = CMD_ERROR;
738 goto error;
739 }
740 }
741
cd80958d 742 if (opt_enable_all) {
8c9ae521 743 /* Default setup for enable all */
75e8c5ab
MD
744 if (opt_kernel) {
745 ev.type = opt_event_type;
746 ev.name[0] = '\0';
300b8fd5
MD
747 /* kernel loglevels not implemented */
748 ev.loglevel_type = LTTNG_EVENT_LOGLEVEL_ALL;
75e8c5ab
MD
749 } else {
750 ev.type = LTTNG_EVENT_TRACEPOINT;
751 strcpy(ev.name, "*");
300b8fd5
MD
752 ev.loglevel_type = opt_loglevel_type;
753 if (opt_loglevel) {
0e115563 754 assert(opt_userspace || opt_jul || opt_log4j || opt_python);
b2064f54
DG
755 if (opt_userspace) {
756 ev.loglevel = loglevel_str_to_value(opt_loglevel);
757 } else if (opt_jul) {
758 ev.loglevel = loglevel_jul_str_to_value(opt_loglevel);
5cdb6027
DG
759 } else if (opt_log4j) {
760 ev.loglevel = loglevel_log4j_str_to_value(opt_loglevel);
0e115563
DG
761 } else if (opt_python) {
762 ev.loglevel = loglevel_python_str_to_value(opt_loglevel);
b2064f54 763 }
300b8fd5
MD
764 if (ev.loglevel == -1) {
765 ERR("Unknown loglevel %s", opt_loglevel);
2f70b271 766 ret = -LTTNG_ERR_INVALID;
300b8fd5
MD
767 goto error;
768 }
22e25b71 769 } else {
0e115563 770 assert(opt_userspace || opt_jul || opt_log4j || opt_python);
b2064f54
DG
771 if (opt_userspace) {
772 ev.loglevel = -1;
5cdb6027 773 } else if (opt_jul || opt_log4j) {
b2064f54 774 ev.loglevel = LTTNG_LOGLEVEL_JUL_ALL;
0e115563
DG
775 } else if (opt_python) {
776 ev.loglevel = LTTNG_LOGLEVEL_PYTHON_DEBUG;
b2064f54 777 }
300b8fd5 778 }
75e8c5ab 779 }
8c9ae521 780
7ed70bc9
JI
781 if (opt_exclude) {
782 ret = check_exclusion_subsets("*", opt_exclude,
783 &exclusion_count, &exclusion_list);
784 if (ret == CMD_ERROR) {
785 goto error;
786 }
89476427 787 ev.exclusion = 1;
7ed70bc9 788 }
025faf73 789 if (!opt_filter) {
7ed70bc9
JI
790 ret = lttng_enable_event_with_exclusions(handle,
791 &ev, channel_name,
792 NULL,
793 exclusion_count, exclusion_list);
025faf73
DG
794 if (ret < 0) {
795 switch (-ret) {
796 case LTTNG_ERR_KERN_EVENT_EXIST:
797 WARN("Kernel events already enabled (channel %s, session %s)",
85076754 798 print_channel_name(channel_name), session_name);
89476427 799 warn = 1;
025faf73 800 break;
45d5d421
CB
801 case LTTNG_ERR_TRACE_ALREADY_STARTED:
802 {
803 const char *msg = "The command tried to enable an event in a new domain for a session that has already been started once.";
804 ERR("Events: %s (channel %s, session %s)",
805 msg,
806 print_channel_name(channel_name),
807 session_name);
808 error = 1;
809 break;
810 }
025faf73
DG
811 default:
812 ERR("Events: %s (channel %s, session %s)",
85076754
MD
813 lttng_strerror(ret),
814 ret == -LTTNG_ERR_NEED_CHANNEL_NAME
815 ? print_raw_channel_name(channel_name)
816 : print_channel_name(channel_name),
817 session_name);
89476427 818 error = 1;
025faf73
DG
819 break;
820 }
821 goto end;
42224349 822 }
8c9ae521 823
025faf73
DG
824 switch (opt_event_type) {
825 case LTTNG_EVENT_TRACEPOINT:
67b58630 826 if (opt_loglevel && dom.type != LTTNG_DOMAIN_KERNEL) {
9c48cab3
JI
827 char *exclusion_string = print_exclusions(exclusion_count, exclusion_list);
828 MSG("All %s tracepoints%s are enabled in channel %s for loglevel %s",
b9dfb167 829 get_domain_str(dom.type),
9c48cab3 830 exclusion_string,
85076754 831 print_channel_name(channel_name),
025faf73 832 opt_loglevel);
9c48cab3 833 free(exclusion_string);
025faf73 834 } else {
9c48cab3
JI
835 char *exclusion_string = print_exclusions(exclusion_count, exclusion_list);
836 MSG("All %s tracepoints%s are enabled in channel %s",
b9dfb167 837 get_domain_str(dom.type),
9c48cab3 838 exclusion_string,
85076754 839 print_channel_name(channel_name));
9c48cab3 840 free(exclusion_string);
025faf73
DG
841 }
842 break;
843 case LTTNG_EVENT_SYSCALL:
844 if (opt_kernel) {
6e911cad
MD
845 MSG("All %s system calls are enabled in channel %s",
846 get_domain_str(dom.type),
85076754 847 print_channel_name(channel_name));
025faf73
DG
848 }
849 break;
850 case LTTNG_EVENT_ALL:
67b58630 851 if (opt_loglevel && dom.type != LTTNG_DOMAIN_KERNEL) {
9c48cab3
JI
852 char *exclusion_string = print_exclusions(exclusion_count, exclusion_list);
853 MSG("All %s events%s are enabled in channel %s for loglevel %s",
b9dfb167 854 get_domain_str(dom.type),
9c48cab3 855 exclusion_string,
85076754 856 print_channel_name(channel_name),
025faf73 857 opt_loglevel);
9c48cab3 858 free(exclusion_string);
025faf73 859 } else {
9c48cab3
JI
860 char *exclusion_string = print_exclusions(exclusion_count, exclusion_list);
861 MSG("All %s events%s are enabled in channel %s",
b9dfb167 862 get_domain_str(dom.type),
9c48cab3 863 exclusion_string,
85076754 864 print_channel_name(channel_name));
9c48cab3 865 free(exclusion_string);
025faf73
DG
866 }
867 break;
868 default:
869 /*
870 * We should not be here since lttng_enable_event should have
871 * failed on the event type.
872 */
873 goto error;
57064ada 874 }
f3ed775e 875 }
89476427 876
025faf73 877 if (opt_filter) {
89476427 878 command_ret = lttng_enable_event_with_exclusions(handle, &ev, channel_name,
7ed70bc9 879 opt_filter, exclusion_count, exclusion_list);
89476427
JRJ
880 if (command_ret < 0) {
881 switch (-command_ret) {
16363652 882 case LTTNG_ERR_FILTER_EXIST:
85076754 883 WARN("Filter on all events is already enabled"
16363652 884 " (channel %s, session %s)",
85076754 885 print_channel_name(channel_name), session_name);
89476427 886 warn = 1;
16363652 887 break;
45d5d421
CB
888 case LTTNG_ERR_TRACE_ALREADY_STARTED:
889 {
890 const char *msg = "The command tried to enable an event in a new domain for a session that has already been started once.";
891 ERR("All events: %s (channel %s, session %s, filter \'%s\')",
892 msg,
893 print_channel_name(channel_name),
894 session_name, opt_filter);
895 error = 1;
896 break;
897 }
16363652 898 default:
85076754 899 ERR("All events: %s (channel %s, session %s, filter \'%s\')",
da3d7d0e
JRJ
900 lttng_strerror(command_ret),
901 command_ret == -LTTNG_ERR_NEED_CHANNEL_NAME
85076754
MD
902 ? print_raw_channel_name(channel_name)
903 : print_channel_name(channel_name),
904 session_name, opt_filter);
89476427 905 error = 1;
16363652
DG
906 break;
907 }
89476427 908 error_holder = command_ret;
16363652 909 } else {
89476427 910 ev.filter = 1;
16363652
DG
911 MSG("Filter '%s' successfully set", opt_filter);
912 }
913 }
89476427
JRJ
914
915 if (lttng_opt_mi) {
916 /* The wildcard * is used for kernel and ust domain to
917 * represent ALL. We copy * in event name to force the wildcard use
918 * for kernel domain
919 *
920 * Note: this is strictly for semantic and printing while in
921 * machine interface mode.
922 */
923 strcpy(ev.name, "*");
924
925 /* If we reach here the events are enabled */
926 if (!error && !warn) {
927 ev.enabled = 1;
928 } else {
929 ev.enabled = 0;
930 success = 0;
931 }
970d848b 932 ret = mi_lttng_event(writer, &ev, 1, handle->domain.type);
89476427
JRJ
933 if (ret) {
934 ret = CMD_ERROR;
935 goto error;
936 }
937
938 /* print exclusion */
939 ret = mi_print_exclusion(exclusion_count, exclusion_list);
940 if (ret) {
941 ret = CMD_ERROR;
942 goto error;
943 }
944
945 /* Success ? */
946 ret = mi_lttng_writer_write_element_bool(writer,
947 mi_lttng_element_command_success, success);
948 if (ret) {
949 ret = CMD_ERROR;
950 goto error;
951 }
952
953 /* Close event element */
954 ret = mi_lttng_writer_close_element(writer);
955 if (ret) {
956 ret = CMD_ERROR;
957 goto error;
958 }
959 }
960
8c9ae521 961 goto end;
f3ed775e
DG
962 }
963
964 /* Strip event list */
965 event_name = strtok(opt_event_list, ",");
966 while (event_name != NULL) {
6181537c
DG
967 /* Copy name and type of the event */
968 strncpy(ev.name, event_name, LTTNG_SYMBOL_NAME_LEN);
969 ev.name[LTTNG_SYMBOL_NAME_LEN - 1] = '\0';
970 ev.type = opt_event_type;
971
f3ed775e
DG
972 /* Kernel tracer action */
973 if (opt_kernel) {
974 DBG("Enabling kernel event %s for channel %s",
85076754
MD
975 event_name,
976 print_channel_name(channel_name));
f3ed775e
DG
977
978 switch (opt_event_type) {
7a3d1328
MD
979 case LTTNG_EVENT_ALL: /* Default behavior is tracepoint */
980 ev.type = LTTNG_EVENT_TRACEPOINT;
981 /* Fall-through */
e6ddca71 982 case LTTNG_EVENT_TRACEPOINT:
f3ed775e 983 break;
7d29a247 984 case LTTNG_EVENT_PROBE:
cf0e5467 985 ret = parse_probe_opts(&ev, opt_probe);
49d4e302 986 if (ret) {
cf0e5467 987 ERR("Unable to parse probe options");
0d63dd19
DG
988 ret = 0;
989 goto error;
990 }
f3ed775e
DG
991 break;
992 case LTTNG_EVENT_FUNCTION:
8f0d098b 993 ret = parse_probe_opts(&ev, opt_function);
49d4e302 994 if (ret) {
8f0d098b
MD
995 ERR("Unable to parse function probe options");
996 ret = 0;
997 goto error;
998 }
999 break;
1000 case LTTNG_EVENT_FUNCTION_ENTRY:
6181537c
DG
1001 strncpy(ev.attr.ftrace.symbol_name, opt_function_entry_symbol,
1002 LTTNG_SYMBOL_NAME_LEN);
99497cd0 1003 ev.attr.ftrace.symbol_name[LTTNG_SYMBOL_NAME_LEN - 1] = '\0';
f3ed775e 1004 break;
a54bd42d 1005 case LTTNG_EVENT_SYSCALL:
c6aa2d41
MD
1006 ev.type = LTTNG_EVENT_SYSCALL;
1007 break;
f3ed775e 1008 default:
1ab1ea0b 1009 ret = CMD_UNDEFINED;
f3ed775e
DG
1010 goto error;
1011 }
0cda4f28 1012
0cda4f28 1013 /* kernel loglevels not implemented */
8005f29a 1014 ev.loglevel_type = LTTNG_EVENT_LOGLEVEL_ALL;
f3ed775e 1015 } else if (opt_userspace) { /* User-space tracer action */
d78d6610 1016#if 0
e14f64a8
DG
1017 if (opt_cmd_name != NULL || opt_pid) {
1018 MSG("Only supporting tracing all UST processes (-u) for now.");
1ab1ea0b 1019 ret = CMD_UNDEFINED;
2bdd86d4
MD
1020 goto error;
1021 }
d78d6610 1022#endif
6181537c 1023
300b8fd5 1024 DBG("Enabling UST event %s for channel %s, loglevel %s", event_name,
85076754 1025 print_channel_name(channel_name), opt_loglevel ? : "<all>");
2bdd86d4
MD
1026
1027 switch (opt_event_type) {
1028 case LTTNG_EVENT_ALL: /* Default behavior is tracepoint */
2bdd86d4
MD
1029 /* Fall-through */
1030 case LTTNG_EVENT_TRACEPOINT:
e4baff1e
MD
1031 /* Copy name and type of the event */
1032 ev.type = LTTNG_EVENT_TRACEPOINT;
1033 strncpy(ev.name, event_name, LTTNG_SYMBOL_NAME_LEN);
1034 ev.name[LTTNG_SYMBOL_NAME_LEN - 1] = '\0';
2bdd86d4
MD
1035 break;
1036 case LTTNG_EVENT_PROBE:
1037 case LTTNG_EVENT_FUNCTION:
1038 case LTTNG_EVENT_FUNCTION_ENTRY:
1039 case LTTNG_EVENT_SYSCALL:
1040 default:
cc62c0c0 1041 ERR("Event type not available for user-space tracing");
4ce78777 1042 ret = CMD_UNSUPPORTED;
2bdd86d4
MD
1043 goto error;
1044 }
0cda4f28 1045
7ed70bc9 1046 if (opt_exclude) {
89476427 1047 ev.exclusion = 1;
d5dd17fd
JI
1048 if (opt_event_type != LTTNG_EVENT_ALL && opt_event_type != LTTNG_EVENT_TRACEPOINT) {
1049 ERR("Exclusion option can only be used with tracepoint events");
1050 ret = CMD_ERROR;
1051 goto error;
1052 }
7ed70bc9
JI
1053 /* Free previously allocated items */
1054 if (exclusion_list != NULL) {
1055 while (exclusion_count--) {
1056 free(exclusion_list[exclusion_count]);
1057 }
1058 free(exclusion_list);
1059 exclusion_list = NULL;
1060 }
1061 /* Check for proper subsets */
1062 ret = check_exclusion_subsets(event_name, opt_exclude,
1063 &exclusion_count, &exclusion_list);
1064 if (ret == CMD_ERROR) {
1065 goto error;
1066 }
1067 }
1068
0cda4f28 1069 ev.loglevel_type = opt_loglevel_type;
ed7f4083 1070 if (opt_loglevel) {
8005f29a
MD
1071 ev.loglevel = loglevel_str_to_value(opt_loglevel);
1072 if (ev.loglevel == -1) {
1073 ERR("Unknown loglevel %s", opt_loglevel);
2f70b271 1074 ret = -LTTNG_ERR_INVALID;
8005f29a
MD
1075 goto error;
1076 }
22e25b71
MD
1077 } else {
1078 ev.loglevel = -1;
ed7f4083 1079 }
0e115563 1080 } else if (opt_jul || opt_log4j || opt_python) {
b9dfb167
DG
1081 if (opt_event_type != LTTNG_EVENT_ALL &&
1082 opt_event_type != LTTNG_EVENT_TRACEPOINT) {
5cdb6027 1083 ERR("Event type not supported for domain.");
b9dfb167
DG
1084 ret = CMD_UNSUPPORTED;
1085 goto error;
1086 }
b2064f54
DG
1087
1088 ev.loglevel_type = opt_loglevel_type;
1089 if (opt_loglevel) {
5cdb6027
DG
1090 if (opt_jul) {
1091 ev.loglevel = loglevel_jul_str_to_value(opt_loglevel);
1092 } else if (opt_log4j) {
1093 ev.loglevel = loglevel_log4j_str_to_value(opt_loglevel);
0e115563
DG
1094 } else if (opt_python) {
1095 ev.loglevel = loglevel_python_str_to_value(opt_loglevel);
5cdb6027 1096 }
b2064f54
DG
1097 if (ev.loglevel == -1) {
1098 ERR("Unknown loglevel %s", opt_loglevel);
1099 ret = -LTTNG_ERR_INVALID;
1100 goto error;
1101 }
1102 } else {
5cdb6027
DG
1103 if (opt_jul) {
1104 ev.loglevel = LTTNG_LOGLEVEL_JUL_ALL;
1105 } else if (opt_log4j) {
1106 ev.loglevel = LTTNG_LOGLEVEL_LOG4J_ALL;
0e115563
DG
1107 } else if (opt_python) {
1108 ev.loglevel = LTTNG_LOGLEVEL_PYTHON_DEBUG;
5cdb6027 1109 }
b2064f54 1110 }
b9dfb167
DG
1111 ev.type = LTTNG_EVENT_TRACEPOINT;
1112 strncpy(ev.name, event_name, LTTNG_SYMBOL_NAME_LEN);
1113 ev.name[LTTNG_SYMBOL_NAME_LEN - 1] = '\0';
f3ed775e 1114 } else {
b9dfb167 1115 print_missing_domain();
300b8fd5 1116 ret = CMD_ERROR;
f3ed775e
DG
1117 goto error;
1118 }
1119
025faf73 1120 if (!opt_filter) {
9c48cab3
JI
1121 char *exclusion_string;
1122
89476427 1123 command_ret = lttng_enable_event_with_exclusions(handle,
7ed70bc9
JI
1124 &ev, channel_name,
1125 NULL, exclusion_count, exclusion_list);
9c48cab3 1126 exclusion_string = print_exclusions(exclusion_count, exclusion_list);
89476427 1127 if (command_ret < 0) {
025faf73 1128 /* Turn ret to positive value to handle the positive error code */
89476427 1129 switch (-command_ret) {
025faf73 1130 case LTTNG_ERR_KERN_EVENT_EXIST:
9c48cab3 1131 WARN("Kernel event %s%s already enabled (channel %s, session %s)",
85076754 1132 event_name,
9c48cab3 1133 exclusion_string,
85076754 1134 print_channel_name(channel_name), session_name);
89476427 1135 warn = 1;
025faf73 1136 break;
45d5d421
CB
1137 case LTTNG_ERR_TRACE_ALREADY_STARTED:
1138 {
1139 const char *msg = "The command tried to enable an event in a new domain for a session that has already been started once.";
1140 ERR("Event %s%s: %s (channel %s, session %s)", event_name,
1141 exclusion_string,
1142 msg,
1143 print_channel_name(channel_name),
1144 session_name);
1145 error = 1;
1146 break;
1147 }
025faf73 1148 default:
9c48cab3
JI
1149 ERR("Event %s%s: %s (channel %s, session %s)", event_name,
1150 exclusion_string,
da3d7d0e
JRJ
1151 lttng_strerror(command_ret),
1152 command_ret == -LTTNG_ERR_NEED_CHANNEL_NAME
85076754
MD
1153 ? print_raw_channel_name(channel_name)
1154 : print_channel_name(channel_name),
1155 session_name);
89476427 1156 error = 1;
025faf73
DG
1157 break;
1158 }
89476427 1159 error_holder = command_ret;
025faf73 1160 } else {
5cdb6027
DG
1161 /* So we don't print the default channel name for agent domain. */
1162 if (dom.type == LTTNG_DOMAIN_JUL ||
1163 dom.type == LTTNG_DOMAIN_LOG4J) {
49ceaa70
DG
1164 MSG("%s event %s%s enabled.",
1165 get_domain_str(dom.type), event_name,
1166 exclusion_string);
1167 } else {
1168 MSG("%s event %s%s created in channel %s",
1169 get_domain_str(dom.type), event_name,
1170 exclusion_string,
1171 print_channel_name(channel_name));
1172 }
42224349 1173 }
9c48cab3 1174 free(exclusion_string);
6181537c 1175 }
025faf73
DG
1176
1177 if (opt_filter) {
9c48cab3
JI
1178 char *exclusion_string;
1179
89476427
JRJ
1180 /* Filter present */
1181 ev.filter = 1;
1182
1183 command_ret = lttng_enable_event_with_exclusions(handle, &ev, channel_name,
7ed70bc9 1184 opt_filter, exclusion_count, exclusion_list);
9c48cab3
JI
1185 exclusion_string = print_exclusions(exclusion_count, exclusion_list);
1186
89476427
JRJ
1187 if (command_ret < 0) {
1188 switch (-command_ret) {
7671f53c 1189 case LTTNG_ERR_FILTER_EXIST:
9c48cab3 1190 WARN("Filter on event %s%s is already enabled"
7671f53c 1191 " (channel %s, session %s)",
85076754 1192 event_name,
9c48cab3 1193 exclusion_string,
85076754 1194 print_channel_name(channel_name), session_name);
89476427 1195 warn = 1;
7671f53c 1196 break;
45d5d421
CB
1197 case LTTNG_ERR_TRACE_ALREADY_STARTED:
1198 {
1199 const char *msg = "The command tried to enable an event in a new domain for a session that has already been started once.";
1200 ERR("Event %s%s: %s (channel %s, session %s, filter \'%s\')", ev.name,
1201 exclusion_string,
1202 msg,
1203 print_channel_name(channel_name),
1204 session_name, opt_filter);
1205 error = 1;
1206 break;
1207 }
7671f53c 1208 default:
9c48cab3
JI
1209 ERR("Event %s%s: %s (channel %s, session %s, filter \'%s\')", ev.name,
1210 exclusion_string,
da3d7d0e
JRJ
1211 lttng_strerror(command_ret),
1212 command_ret == -LTTNG_ERR_NEED_CHANNEL_NAME
85076754
MD
1213 ? print_raw_channel_name(channel_name)
1214 : print_channel_name(channel_name),
1215 session_name, opt_filter);
89476427 1216 error = 1;
7671f53c
CB
1217 break;
1218 }
89476427
JRJ
1219 error_holder = command_ret;
1220
16363652 1221 } else {
9c48cab3
JI
1222 MSG("Event %s%s: Filter '%s' successfully set",
1223 event_name, exclusion_string,
1224 opt_filter);
53a80697 1225 }
9c48cab3 1226 free(exclusion_string);
53a80697 1227 }
6181537c 1228
89476427
JRJ
1229 if (lttng_opt_mi) {
1230 if (command_ret) {
1231 success = 0;
1232 ev.enabled = 0;
1233 } else {
1234 ev.enabled = 1;
1235 }
1236
970d848b 1237 ret = mi_lttng_event(writer, &ev, 1, handle->domain.type);
89476427
JRJ
1238 if (ret) {
1239 ret = CMD_ERROR;
1240 goto error;
1241 }
1242
1243 /* print exclusion */
1244 ret = mi_print_exclusion(exclusion_count, exclusion_list);
1245 if (ret) {
1246 ret = CMD_ERROR;
1247 goto error;
1248 }
1249
1250 /* Success ? */
1251 ret = mi_lttng_writer_write_element_bool(writer,
1252 mi_lttng_element_command_success, success);
1253 if (ret) {
1254 ret = CMD_ERROR;
1255 goto end;
1256 }
1257
1258 /* Close event element */
1259 ret = mi_lttng_writer_close_element(writer);
1260 if (ret) {
1261 ret = CMD_ERROR;
1262 goto end;
1263 }
1264 }
1265
f3ed775e
DG
1266 /* Next event */
1267 event_name = strtok(NULL, ",");
89476427
JRJ
1268 /* Reset warn, error and success */
1269 success = 1;
f3ed775e
DG
1270 }
1271
8c9ae521 1272end:
89476427
JRJ
1273 /* Close Mi */
1274 if (lttng_opt_mi) {
1275 /* Close events element */
1276 ret = mi_lttng_writer_close_element(writer);
1277 if (ret) {
1278 ret = CMD_ERROR;
1279 goto error;
1280 }
1281 }
f3ed775e 1282error:
ae856491
DG
1283 if (warn) {
1284 ret = CMD_WARNING;
1285 }
89476427
JRJ
1286 if (error) {
1287 ret = CMD_ERROR;
1288 }
cd80958d
DG
1289 lttng_destroy_handle(handle);
1290
7ed70bc9
JI
1291 if (exclusion_list != NULL) {
1292 while (exclusion_count--) {
1293 free(exclusion_list[exclusion_count]);
1294 }
1295 free(exclusion_list);
1296 }
1297
89476427
JRJ
1298 /* Overwrite ret with error_holder if there was an actual error with
1299 * enabling an event.
1300 */
1301 ret = error_holder ? error_holder : ret;
1302
f3ed775e
DG
1303 return ret;
1304}
1305
1306/*
6181537c 1307 * Add event to trace session
f3ed775e
DG
1308 */
1309int cmd_enable_events(int argc, const char **argv)
1310{
89476427 1311 int opt, ret = CMD_SUCCESS, command_ret = CMD_SUCCESS, success = 1;
f3ed775e 1312 static poptContext pc;
cd80958d 1313 char *session_name = NULL;
de044b7a 1314 int event_type = -1;
f3ed775e
DG
1315
1316 pc = poptGetContext(NULL, argc, argv, long_options, 0);
1317 poptReadDefaultConfig(pc, 0);
1318
1319 /* Default event type */
7a3d1328 1320 opt_event_type = LTTNG_EVENT_ALL;
f3ed775e
DG
1321
1322 while ((opt = poptGetNextOpt(pc)) != -1) {
1323 switch (opt) {
1324 case OPT_HELP:
ca1c3607 1325 usage(stdout);
f3ed775e 1326 goto end;
f3ed775e 1327 case OPT_TRACEPOINT:
e6ddca71 1328 opt_event_type = LTTNG_EVENT_TRACEPOINT;
f3ed775e 1329 break;
cf0e5467 1330 case OPT_PROBE:
7d29a247 1331 opt_event_type = LTTNG_EVENT_PROBE;
f3ed775e
DG
1332 break;
1333 case OPT_FUNCTION:
1334 opt_event_type = LTTNG_EVENT_FUNCTION;
8f0d098b
MD
1335 break;
1336 case OPT_FUNCTION_ENTRY:
1337 opt_event_type = LTTNG_EVENT_FUNCTION_ENTRY;
f3ed775e 1338 break;
a54bd42d
MD
1339 case OPT_SYSCALL:
1340 opt_event_type = LTTNG_EVENT_SYSCALL;
0133c199 1341 break;
eeac7d46
MD
1342 case OPT_USERSPACE:
1343 opt_userspace = 1;
eeac7d46 1344 break;
0cda4f28 1345 case OPT_LOGLEVEL:
8005f29a 1346 opt_loglevel_type = LTTNG_EVENT_LOGLEVEL_RANGE;
0cda4f28
MD
1347 opt_loglevel = poptGetOptArg(pc);
1348 break;
1349 case OPT_LOGLEVEL_ONLY:
8005f29a 1350 opt_loglevel_type = LTTNG_EVENT_LOGLEVEL_SINGLE;
0cda4f28 1351 opt_loglevel = poptGetOptArg(pc);
13dce3b7 1352 break;
679b4943
SM
1353 case OPT_LIST_OPTIONS:
1354 list_cmd_options(stdout, long_options);
679b4943 1355 goto end;
53a80697
MD
1356 case OPT_FILTER:
1357 break;
fac3366c
JI
1358 case OPT_EXCLUDE:
1359 break;
f3ed775e
DG
1360 default:
1361 usage(stderr);
1362 ret = CMD_UNDEFINED;
1363 goto end;
1364 }
de044b7a
DG
1365
1366 /* Validate event type. Multiple event type are not supported. */
1367 if (event_type == -1) {
1368 event_type = opt_event_type;
1369 } else {
1370 if (event_type != opt_event_type) {
1371 ERR("Multiple event type not supported.");
1372 ret = CMD_ERROR;
1373 goto end;
1374 }
1375 }
f3ed775e
DG
1376 }
1377
89476427
JRJ
1378 /* Mi check */
1379 if (lttng_opt_mi) {
1380 writer = mi_lttng_writer_create(fileno(stdout), lttng_opt_mi);
1381 if (!writer) {
1382 ret = -LTTNG_ERR_NOMEM;
1383 goto end;
1384 }
1385
1386 /* Open command element */
1387 ret = mi_lttng_writer_command_open(writer,
1388 mi_lttng_element_command_enable_event);
1389 if (ret) {
1390 ret = CMD_ERROR;
1391 goto end;
1392 }
1393
1394 /* Open output element */
1395 ret = mi_lttng_writer_open_element(writer,
1396 mi_lttng_element_command_output);
1397 if (ret) {
1398 ret = CMD_ERROR;
1399 goto end;
1400 }
1401 }
1402
f3ed775e
DG
1403 opt_event_list = (char*) poptGetArg(pc);
1404 if (opt_event_list == NULL && opt_enable_all == 0) {
1405 ERR("Missing event name(s).\n");
1406 usage(stderr);
ca1c3607 1407 ret = CMD_ERROR;
f3ed775e
DG
1408 goto end;
1409 }
1410
cd80958d
DG
1411 if (!opt_session_name) {
1412 session_name = get_session_name();
1413 if (session_name == NULL) {
89476427
JRJ
1414 command_ret = CMD_ERROR;
1415 success = 0;
1416 goto mi_closing;
cd80958d
DG
1417 }
1418 } else {
1419 session_name = opt_session_name;
1420 }
1421
89476427
JRJ
1422 command_ret = enable_events(session_name);
1423 if (command_ret) {
1424 success = 0;
1425 goto mi_closing;
1426 }
1427
1428mi_closing:
1429 /* Mi closing */
1430 if (lttng_opt_mi) {
1431 /* Close output element */
1432 ret = mi_lttng_writer_close_element(writer);
1433 if (ret) {
1434 ret = CMD_ERROR;
1435 goto end;
1436 }
1437
1438 ret = mi_lttng_writer_write_element_bool(writer,
1439 mi_lttng_element_command_success, success);
1440 if (ret) {
1441 ret = CMD_ERROR;
1442 goto end;
1443 }
1444
1445 /* Command element close */
1446 ret = mi_lttng_writer_command_close(writer);
1447 if (ret) {
1448 ret = CMD_ERROR;
1449 goto end;
1450 }
1451 }
f3ed775e
DG
1452
1453end:
89476427
JRJ
1454 /* Mi clean-up */
1455 if (writer && mi_lttng_writer_destroy(writer)) {
1456 /* Preserve original error code */
1457 ret = ret ? ret : LTTNG_ERR_MI_IO_FAIL;
1458 }
1459
cd80958d
DG
1460 if (opt_session_name == NULL) {
1461 free(session_name);
1462 }
1463
89476427
JRJ
1464 /* Overwrite ret if an error occurred in enable_events */
1465 ret = command_ret ? command_ret : ret;
1466
ca1c3607 1467 poptFreeContext(pc);
f3ed775e
DG
1468 return ret;
1469}
This page took 0.111438 seconds and 4 git commands to generate.