New UST default buffers is now per UID
[lttng-tools.git] / src / bin / lttng / commands / enable_events.c
1 /*
2 * Copyright (C) 2011 - David Goulet <david.goulet@polymtl.ca>
3 *
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.
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 *
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.
16 */
17
18 #define _GNU_SOURCE
19 #include <popt.h>
20 #include <stdio.h>
21 #include <stdlib.h>
22 #include <string.h>
23 #include <sys/stat.h>
24 #include <sys/types.h>
25 #include <unistd.h>
26 #include <inttypes.h>
27 #include <ctype.h>
28
29 #include "../command.h"
30 #include <src/common/sessiond-comm/sessiond-comm.h>
31
32 static char *opt_event_list;
33 static int opt_event_type;
34 static const char *opt_loglevel;
35 static int opt_loglevel_type;
36 static int opt_kernel;
37 static char *opt_session_name;
38 static int opt_userspace;
39 static int opt_enable_all;
40 static char *opt_probe;
41 static char *opt_function;
42 static char *opt_function_entry_symbol;
43 static char *opt_channel_name;
44 static char *opt_filter;
45 #if 0
46 /* Not implemented yet */
47 static char *opt_cmd_name;
48 static pid_t opt_pid;
49 #endif
50
51 enum {
52 OPT_HELP = 1,
53 OPT_TRACEPOINT,
54 OPT_PROBE,
55 OPT_FUNCTION,
56 OPT_FUNCTION_ENTRY,
57 OPT_SYSCALL,
58 OPT_USERSPACE,
59 OPT_LOGLEVEL,
60 OPT_LOGLEVEL_ONLY,
61 OPT_LIST_OPTIONS,
62 OPT_FILTER,
63 };
64
65 static struct lttng_handle *handle;
66
67 static struct poptOption long_options[] = {
68 /* longName, shortName, argInfo, argPtr, value, descrip, argDesc */
69 {"help", 'h', POPT_ARG_NONE, 0, OPT_HELP, 0, 0},
70 {"session", 's', POPT_ARG_STRING, &opt_session_name, 0, 0, 0},
71 {"all", 'a', POPT_ARG_VAL, &opt_enable_all, 1, 0, 0},
72 {"channel", 'c', POPT_ARG_STRING, &opt_channel_name, 0, 0, 0},
73 {"kernel", 'k', POPT_ARG_VAL, &opt_kernel, 1, 0, 0},
74 {"userspace", 'u', POPT_ARG_NONE, 0, OPT_USERSPACE, 0, 0},
75 {"tracepoint", 0, POPT_ARG_NONE, 0, OPT_TRACEPOINT, 0, 0},
76 {"probe", 0, POPT_ARG_STRING, &opt_probe, OPT_PROBE, 0, 0},
77 {"function", 0, POPT_ARG_STRING, &opt_function, OPT_FUNCTION, 0, 0},
78 #if 0
79 /*
80 * Currently removed from lttng kernel tracer. Removed from
81 * lttng UI to discourage its use.
82 */
83 {"function:entry", 0, POPT_ARG_STRING, &opt_function_entry_symbol, OPT_FUNCTION_ENTRY, 0, 0},
84 #endif
85 {"syscall", 0, POPT_ARG_NONE, 0, OPT_SYSCALL, 0, 0},
86 {"loglevel", 0, POPT_ARG_STRING, 0, OPT_LOGLEVEL, 0, 0},
87 {"loglevel-only", 0, POPT_ARG_STRING, 0, OPT_LOGLEVEL_ONLY, 0, 0},
88 {"list-options", 0, POPT_ARG_NONE, NULL, OPT_LIST_OPTIONS, NULL, NULL},
89 {"filter", 'f', POPT_ARG_STRING, &opt_filter, OPT_FILTER, 0, 0},
90 {0, 0, 0, 0, 0, 0, 0}
91 };
92
93 /*
94 * usage
95 */
96 static void usage(FILE *ofp)
97 {
98 fprintf(ofp, "usage: lttng enable-event NAME[,NAME2,...] [-k|-u] [OPTIONS] \n");
99 fprintf(ofp, "\n");
100 fprintf(ofp, "Options:\n");
101 fprintf(ofp, " -h, --help Show this help\n");
102 fprintf(ofp, " --list-options Simple listing of options\n");
103 fprintf(ofp, " -s, --session NAME Apply to session name\n");
104 fprintf(ofp, " -c, --channel NAME Apply to this channel\n");
105 fprintf(ofp, " -a, --all Enable all tracepoints and syscalls\n");
106 fprintf(ofp, " -k, --kernel Apply for the kernel tracer\n");
107 fprintf(ofp, " -u, --userspace Apply to the user-space tracer\n");
108 fprintf(ofp, "\n");
109 fprintf(ofp, "Event options:\n");
110 fprintf(ofp, " --tracepoint Tracepoint event (default)\n");
111 fprintf(ofp, " - userspace tracer supports wildcards at end of string.\n");
112 fprintf(ofp, " Don't forget to quote to deal with bash expansion.\n");
113 fprintf(ofp, " e.g.:\n");
114 fprintf(ofp, " \"*\"\n");
115 fprintf(ofp, " \"app_component:na*\"\n");
116 fprintf(ofp, " --probe [addr | symbol | symbol+offset]\n");
117 fprintf(ofp, " Dynamic probe.\n");
118 fprintf(ofp, " Addr and offset can be octal (0NNN...),\n");
119 fprintf(ofp, " decimal (NNN...) or hexadecimal (0xNNN...)\n");
120 fprintf(ofp, " --function [addr | symbol | symbol+offset]\n");
121 fprintf(ofp, " Dynamic function entry/return probe.\n");
122 fprintf(ofp, " Addr and offset can be octal (0NNN...),\n");
123 fprintf(ofp, " decimal (NNN...) or hexadecimal (0xNNN...)\n");
124 #if 0
125 fprintf(ofp, " --function:entry symbol\n");
126 fprintf(ofp, " Function tracer event\n");
127 #endif
128 fprintf(ofp, " --syscall System call event\n");
129 fprintf(ofp, "\n");
130 fprintf(ofp, " --loglevel name\n");
131 fprintf(ofp, " Tracepoint loglevel range from 0 to loglevel\n");
132 fprintf(ofp, " --loglevel-only name\n");
133 fprintf(ofp, " Tracepoint loglevel (only this loglevel)\n");
134 fprintf(ofp, "\n");
135 fprintf(ofp, " The loglevel or loglevel-only options should be\n");
136 fprintf(ofp, " combined with a tracepoint name or tracepoint\n");
137 fprintf(ofp, " wildcard.\n");
138 fprintf(ofp, " Available loglevels:\n");
139 fprintf(ofp, " (higher value is more verbose)\n");
140 fprintf(ofp, " TRACE_EMERG = 0\n");
141 fprintf(ofp, " TRACE_ALERT = 1\n");
142 fprintf(ofp, " TRACE_CRIT = 2\n");
143 fprintf(ofp, " TRACE_ERR = 3\n");
144 fprintf(ofp, " TRACE_WARNING = 4\n");
145 fprintf(ofp, " TRACE_NOTICE = 5\n");
146 fprintf(ofp, " TRACE_INFO = 6\n");
147 fprintf(ofp, " TRACE_DEBUG_SYSTEM = 7\n");
148 fprintf(ofp, " TRACE_DEBUG_PROGRAM = 8\n");
149 fprintf(ofp, " TRACE_DEBUG_PROCESS = 9\n");
150 fprintf(ofp, " TRACE_DEBUG_MODULE = 10\n");
151 fprintf(ofp, " TRACE_DEBUG_UNIT = 11\n");
152 fprintf(ofp, " TRACE_DEBUG_FUNCTION = 12\n");
153 fprintf(ofp, " TRACE_DEBUG_LINE = 13\n");
154 fprintf(ofp, " TRACE_DEBUG = 14\n");
155 fprintf(ofp, " (shortcuts such as \"system\" are allowed)\n");
156 fprintf(ofp, " --filter \'expression\'\n");
157 fprintf(ofp, " Filter expression on event fields and context.\n");
158 fprintf(ofp, " Event recording depends on evaluation.\n");
159 fprintf(ofp, " Only specify on first activation of\n");
160 fprintf(ofp, " a given event within a session.\n");
161 fprintf(ofp, " Filter only allowed when enabling\n");
162 fprintf(ofp, " events within a session before tracing\n");
163 fprintf(ofp, " is started. If the filter fails to link\n");
164 fprintf(ofp, " with the event within the traced domain,\n");
165 fprintf(ofp, " the event will be discarded. Currently,\n");
166 fprintf(ofp, " filter is only implemented for the user-space\n");
167 fprintf(ofp, " tracer.\n");
168 fprintf(ofp, " Expression examples:.\n");
169 fprintf(ofp, " \n");
170 fprintf(ofp, " 'intfield > 500 && intfield < 503'\n");
171 fprintf(ofp, " '(stringfield == \"test\" || intfield != 10) && intfield > 33'\n");
172 fprintf(ofp, " 'doublefield > 1.1 && intfield < 5.3'\n");
173 fprintf(ofp, " \n");
174 fprintf(ofp, " Wildcards are allowed at the end of strings:\n");
175 fprintf(ofp, " 'seqfield1 == \"te*\"'\n");
176 fprintf(ofp, " In string literals, the escape character is '\\'.\n");
177 fprintf(ofp, " Use '\\*' for the '*' character, and '\\\\' for\n");
178 fprintf(ofp, " the '\\' character. Wildcard match any sequence of,\n");
179 fprintf(ofp, " characters including an empty sub-string (match 0 or\n");
180 fprintf(ofp, " more characters).\n");
181 fprintf(ofp, "\n");
182 fprintf(ofp, " Context information can be used for filtering. The\n");
183 fprintf(ofp, " examples below show usage of context filtering on\n");
184 fprintf(ofp, " process name (with a wildcard), process ID range, and\n");
185 fprintf(ofp, " unique thread ID for filtering. The process and\n");
186 fprintf(ofp, " thread ID of running applications can be found under\n");
187 fprintf(ofp, " columns \"PID\" and \"LWP\" of the \"ps -eLf\" command.\n");
188 fprintf(ofp, "\n");
189 fprintf(ofp, " '$ctx.procname == \"demo*\"'\n");
190 fprintf(ofp, " '$ctx.vpid >= 4433 && $ctx.vpid < 4455'\n");
191 fprintf(ofp, " '$ctx.vtid == 1234'\n");
192 fprintf(ofp, "\n");
193 }
194
195 /*
196 * Parse probe options.
197 */
198 static int parse_probe_opts(struct lttng_event *ev, char *opt)
199 {
200 int ret;
201 char s_hex[19];
202 char name[LTTNG_SYMBOL_NAME_LEN];
203
204 if (opt == NULL) {
205 ret = -1;
206 goto end;
207 }
208
209 /* Check for symbol+offset */
210 ret = sscanf(opt, "%[^'+']+%s", name, s_hex);
211 if (ret == 2) {
212 strncpy(ev->attr.probe.symbol_name, name, LTTNG_SYMBOL_NAME_LEN);
213 ev->attr.probe.symbol_name[LTTNG_SYMBOL_NAME_LEN - 1] = '\0';
214 DBG("probe symbol %s", ev->attr.probe.symbol_name);
215 if (*s_hex == '\0') {
216 ERR("Invalid probe offset %s", s_hex);
217 ret = -1;
218 goto end;
219 }
220 ev->attr.probe.offset = strtoul(s_hex, NULL, 0);
221 DBG("probe offset %" PRIu64, ev->attr.probe.offset);
222 ev->attr.probe.addr = 0;
223 goto end;
224 }
225
226 /* Check for symbol */
227 if (isalpha(name[0])) {
228 ret = sscanf(opt, "%s", name);
229 if (ret == 1) {
230 strncpy(ev->attr.probe.symbol_name, name, LTTNG_SYMBOL_NAME_LEN);
231 ev->attr.probe.symbol_name[LTTNG_SYMBOL_NAME_LEN - 1] = '\0';
232 DBG("probe symbol %s", ev->attr.probe.symbol_name);
233 ev->attr.probe.offset = 0;
234 DBG("probe offset %" PRIu64, ev->attr.probe.offset);
235 ev->attr.probe.addr = 0;
236 goto end;
237 }
238 }
239
240 /* Check for address */
241 ret = sscanf(opt, "%s", s_hex);
242 if (ret > 0) {
243 if (*s_hex == '\0') {
244 ERR("Invalid probe address %s", s_hex);
245 ret = -1;
246 goto end;
247 }
248 ev->attr.probe.addr = strtoul(s_hex, NULL, 0);
249 DBG("probe addr %" PRIu64, ev->attr.probe.addr);
250 ev->attr.probe.offset = 0;
251 memset(ev->attr.probe.symbol_name, 0, LTTNG_SYMBOL_NAME_LEN);
252 goto end;
253 }
254
255 /* No match */
256 ret = -1;
257
258 end:
259 return ret;
260 }
261
262 /*
263 * Maps loglevel from string to value
264 */
265 static
266 int loglevel_str_to_value(const char *inputstr)
267 {
268 int i = 0;
269 char str[LTTNG_SYMBOL_NAME_LEN];
270
271 /*
272 * Loop up to LTTNG_SYMBOL_NAME_LEN minus one because the NULL bytes is
273 * added at the end of the loop so a the upper bound we avoid the overflow.
274 */
275 while (i < (LTTNG_SYMBOL_NAME_LEN - 1) && inputstr[i] != '\0') {
276 str[i] = toupper(inputstr[i]);
277 i++;
278 }
279 str[i] = '\0';
280 if (!strcmp(str, "TRACE_EMERG") || !strcmp(str, "EMERG")) {
281 return LTTNG_LOGLEVEL_EMERG;
282 } else if (!strcmp(str, "TRACE_ALERT") || !strcmp(str, "ALERT")) {
283 return LTTNG_LOGLEVEL_ALERT;
284 } else if (!strcmp(str, "TRACE_CRIT") || !strcmp(str, "CRIT")) {
285 return LTTNG_LOGLEVEL_CRIT;
286 } else if (!strcmp(str, "TRACE_ERR") || !strcmp(str, "ERR")) {
287 return LTTNG_LOGLEVEL_ERR;
288 } else if (!strcmp(str, "TRACE_WARNING") || !strcmp(str, "WARNING")) {
289 return LTTNG_LOGLEVEL_WARNING;
290 } else if (!strcmp(str, "TRACE_NOTICE") || !strcmp(str, "NOTICE")) {
291 return LTTNG_LOGLEVEL_NOTICE;
292 } else if (!strcmp(str, "TRACE_INFO") || !strcmp(str, "INFO")) {
293 return LTTNG_LOGLEVEL_INFO;
294 } else if (!strcmp(str, "TRACE_DEBUG_SYSTEM") || !strcmp(str, "DEBUG_SYSTEM") || !strcmp(str, "SYSTEM")) {
295 return LTTNG_LOGLEVEL_DEBUG_SYSTEM;
296 } else if (!strcmp(str, "TRACE_DEBUG_PROGRAM") || !strcmp(str, "DEBUG_PROGRAM") || !strcmp(str, "PROGRAM")) {
297 return LTTNG_LOGLEVEL_DEBUG_PROGRAM;
298 } else if (!strcmp(str, "TRACE_DEBUG_PROCESS") || !strcmp(str, "DEBUG_PROCESS") || !strcmp(str, "PROCESS")) {
299 return LTTNG_LOGLEVEL_DEBUG_PROCESS;
300 } else if (!strcmp(str, "TRACE_DEBUG_MODULE") || !strcmp(str, "DEBUG_MODULE") || !strcmp(str, "MODULE")) {
301 return LTTNG_LOGLEVEL_DEBUG_MODULE;
302 } else if (!strcmp(str, "TRACE_DEBUG_UNIT") || !strcmp(str, "DEBUG_UNIT") || !strcmp(str, "UNIT")) {
303 return LTTNG_LOGLEVEL_DEBUG_UNIT;
304 } else if (!strcmp(str, "TRACE_DEBUG_FUNCTION") || !strcmp(str, "DEBUG_FUNCTION") || !strcmp(str, "FUNCTION")) {
305 return LTTNG_LOGLEVEL_DEBUG_FUNCTION;
306 } else if (!strcmp(str, "TRACE_DEBUG_LINE") || !strcmp(str, "DEBUG_LINE") || !strcmp(str, "LINE")) {
307 return LTTNG_LOGLEVEL_DEBUG_LINE;
308 } else if (!strcmp(str, "TRACE_DEBUG") || !strcmp(str, "DEBUG")) {
309 return LTTNG_LOGLEVEL_DEBUG;
310 } else {
311 return -1;
312 }
313 }
314
315 /*
316 * Enabling event using the lttng API.
317 */
318 static int enable_events(char *session_name)
319 {
320 int err, ret = CMD_SUCCESS, warn = 0;
321 char *event_name, *channel_name = NULL;
322 struct lttng_event ev;
323 struct lttng_domain dom;
324
325 memset(&ev, 0, sizeof(ev));
326 memset(&dom, 0, sizeof(dom));
327
328 if (opt_kernel) {
329 if (opt_filter) {
330 ERR("Filter not implement for kernel tracing yet");
331 ret = CMD_ERROR;
332 goto error;
333 }
334 }
335
336 /* Create lttng domain */
337 if (opt_kernel) {
338 dom.type = LTTNG_DOMAIN_KERNEL;
339 dom.buf_type = LTTNG_BUFFER_GLOBAL;
340 } else if (opt_userspace) {
341 dom.type = LTTNG_DOMAIN_UST;
342 /* Default. */
343 dom.buf_type = LTTNG_BUFFER_PER_UID;
344 } else {
345 ERR("Please specify a tracer (-k/--kernel or -u/--userspace)");
346 ret = CMD_ERROR;
347 goto error;
348 }
349
350 if (opt_channel_name == NULL) {
351 err = asprintf(&channel_name, DEFAULT_CHANNEL_NAME);
352 if (err < 0) {
353 ret = CMD_FATAL;
354 goto error;
355 }
356 } else {
357 channel_name = opt_channel_name;
358 }
359
360 handle = lttng_create_handle(session_name, &dom);
361 if (handle == NULL) {
362 ret = -1;
363 goto error;
364 }
365
366 if (opt_enable_all) {
367 /* Default setup for enable all */
368 if (opt_kernel) {
369 ev.type = opt_event_type;
370 ev.name[0] = '\0';
371 /* kernel loglevels not implemented */
372 ev.loglevel_type = LTTNG_EVENT_LOGLEVEL_ALL;
373 } else {
374 ev.type = LTTNG_EVENT_TRACEPOINT;
375 strcpy(ev.name, "*");
376 ev.loglevel_type = opt_loglevel_type;
377 if (opt_loglevel) {
378 ev.loglevel = loglevel_str_to_value(opt_loglevel);
379 if (ev.loglevel == -1) {
380 ERR("Unknown loglevel %s", opt_loglevel);
381 ret = -LTTNG_ERR_INVALID;
382 goto error;
383 }
384 } else {
385 ev.loglevel = -1;
386 }
387 }
388
389 if (!opt_filter) {
390 ret = lttng_enable_event(handle, &ev, channel_name);
391 if (ret < 0) {
392 switch (-ret) {
393 case LTTNG_ERR_KERN_EVENT_EXIST:
394 WARN("Kernel events already enabled (channel %s, session %s)",
395 channel_name, session_name);
396 break;
397 default:
398 ERR("Events: %s (channel %s, session %s)",
399 lttng_strerror(ret), channel_name, session_name);
400 break;
401 }
402 goto end;
403 }
404
405 switch (opt_event_type) {
406 case LTTNG_EVENT_TRACEPOINT:
407 if (opt_loglevel) {
408 MSG("All %s tracepoints are enabled in channel %s for loglevel %s",
409 opt_kernel ? "kernel" : "UST", channel_name,
410 opt_loglevel);
411 } else {
412 MSG("All %s tracepoints are enabled in channel %s",
413 opt_kernel ? "kernel" : "UST", channel_name);
414
415 }
416 break;
417 case LTTNG_EVENT_SYSCALL:
418 if (opt_kernel) {
419 MSG("All kernel system calls are enabled in channel %s",
420 channel_name);
421 }
422 break;
423 case LTTNG_EVENT_ALL:
424 if (opt_loglevel) {
425 MSG("All %s events are enabled in channel %s for loglevel %s",
426 opt_kernel ? "kernel" : "UST", channel_name,
427 opt_loglevel);
428 } else {
429 MSG("All %s events are enabled in channel %s",
430 opt_kernel ? "kernel" : "UST", channel_name);
431 }
432 break;
433 default:
434 /*
435 * We should not be here since lttng_enable_event should have
436 * failed on the event type.
437 */
438 goto error;
439 }
440 }
441 if (opt_filter) {
442 ret = lttng_enable_event_with_filter(handle, &ev, channel_name,
443 opt_filter);
444 if (ret < 0) {
445 switch (-ret) {
446 case LTTNG_ERR_FILTER_EXIST:
447 WARN("Filter on events is already enabled"
448 " (channel %s, session %s)",
449 channel_name, session_name);
450 break;
451 case LTTNG_ERR_FILTER_INVAL:
452 case LTTNG_ERR_FILTER_NOMEM:
453 default:
454 ERR("%s", lttng_strerror(ret));
455 break;
456 }
457 goto error;
458 } else {
459 MSG("Filter '%s' successfully set", opt_filter);
460 }
461 }
462 goto end;
463 }
464
465 /* Strip event list */
466 event_name = strtok(opt_event_list, ",");
467 while (event_name != NULL) {
468 /* Copy name and type of the event */
469 strncpy(ev.name, event_name, LTTNG_SYMBOL_NAME_LEN);
470 ev.name[LTTNG_SYMBOL_NAME_LEN - 1] = '\0';
471 ev.type = opt_event_type;
472
473 /* Kernel tracer action */
474 if (opt_kernel) {
475 DBG("Enabling kernel event %s for channel %s",
476 event_name, channel_name);
477
478 switch (opt_event_type) {
479 case LTTNG_EVENT_ALL: /* Default behavior is tracepoint */
480 ev.type = LTTNG_EVENT_TRACEPOINT;
481 /* Fall-through */
482 case LTTNG_EVENT_TRACEPOINT:
483 break;
484 case LTTNG_EVENT_PROBE:
485 ret = parse_probe_opts(&ev, opt_probe);
486 if (ret < 0) {
487 ERR("Unable to parse probe options");
488 ret = 0;
489 goto error;
490 }
491 break;
492 case LTTNG_EVENT_FUNCTION:
493 ret = parse_probe_opts(&ev, opt_function);
494 if (ret < 0) {
495 ERR("Unable to parse function probe options");
496 ret = 0;
497 goto error;
498 }
499 break;
500 case LTTNG_EVENT_FUNCTION_ENTRY:
501 strncpy(ev.attr.ftrace.symbol_name, opt_function_entry_symbol,
502 LTTNG_SYMBOL_NAME_LEN);
503 ev.attr.ftrace.symbol_name[LTTNG_SYMBOL_NAME_LEN - 1] = '\0';
504 break;
505 case LTTNG_EVENT_SYSCALL:
506 MSG("per-syscall selection not supported yet. Use \"-a\" "
507 "for all syscalls.");
508 default:
509 ret = CMD_UNDEFINED;
510 goto error;
511 }
512
513 if (opt_loglevel) {
514 MSG("Kernel loglevels are not supported.");
515 ret = CMD_UNSUPPORTED;
516 goto error;
517 }
518
519 /* kernel loglevels not implemented */
520 ev.loglevel_type = LTTNG_EVENT_LOGLEVEL_ALL;
521 } else if (opt_userspace) { /* User-space tracer action */
522 #if 0
523 if (opt_cmd_name != NULL || opt_pid) {
524 MSG("Only supporting tracing all UST processes (-u) for now.");
525 ret = CMD_UNDEFINED;
526 goto error;
527 }
528 #endif
529
530 DBG("Enabling UST event %s for channel %s, loglevel %s", event_name,
531 channel_name, opt_loglevel ? : "<all>");
532
533 switch (opt_event_type) {
534 case LTTNG_EVENT_ALL: /* Default behavior is tracepoint */
535 /* Fall-through */
536 case LTTNG_EVENT_TRACEPOINT:
537 /* Copy name and type of the event */
538 ev.type = LTTNG_EVENT_TRACEPOINT;
539 strncpy(ev.name, event_name, LTTNG_SYMBOL_NAME_LEN);
540 ev.name[LTTNG_SYMBOL_NAME_LEN - 1] = '\0';
541 break;
542 case LTTNG_EVENT_PROBE:
543 case LTTNG_EVENT_FUNCTION:
544 case LTTNG_EVENT_FUNCTION_ENTRY:
545 case LTTNG_EVENT_SYSCALL:
546 default:
547 ERR("Event type not available for user-space tracing");
548 ret = CMD_UNSUPPORTED;
549 goto error;
550 }
551
552 ev.loglevel_type = opt_loglevel_type;
553 if (opt_loglevel) {
554 ev.loglevel = loglevel_str_to_value(opt_loglevel);
555 if (ev.loglevel == -1) {
556 ERR("Unknown loglevel %s", opt_loglevel);
557 ret = -LTTNG_ERR_INVALID;
558 goto error;
559 }
560 } else {
561 ev.loglevel = -1;
562 }
563 } else {
564 ERR("Please specify a tracer (-k/--kernel or -u/--userspace)");
565 ret = CMD_ERROR;
566 goto error;
567 }
568
569 if (!opt_filter) {
570 ret = lttng_enable_event(handle, &ev, channel_name);
571 if (ret < 0) {
572 /* Turn ret to positive value to handle the positive error code */
573 switch (-ret) {
574 case LTTNG_ERR_KERN_EVENT_EXIST:
575 WARN("Kernel event %s already enabled (channel %s, session %s)",
576 event_name, channel_name, session_name);
577 break;
578 default:
579 ERR("Event %s: %s (channel %s, session %s)", event_name,
580 lttng_strerror(ret), channel_name, session_name);
581 break;
582 }
583 warn = 1;
584 } else {
585 MSG("%s event %s created in channel %s",
586 opt_kernel ? "kernel": "UST", event_name, channel_name);
587 }
588 }
589
590 if (opt_filter) {
591 ret = lttng_enable_event_with_filter(handle, &ev, channel_name,
592 opt_filter);
593 if (ret < 0) {
594 switch (-ret) {
595 case LTTNG_ERR_FILTER_EXIST:
596 WARN("Filter on event %s is already enabled"
597 " (channel %s, session %s)",
598 event_name, channel_name, session_name);
599 break;
600 case LTTNG_ERR_FILTER_INVAL:
601 case LTTNG_ERR_FILTER_NOMEM:
602 ERR("%s", lttng_strerror(ret));
603 default:
604 ERR("Setting filter for event %s: '%s'", ev.name,
605 opt_filter);
606 break;
607 }
608 goto error;
609 } else {
610 MSG("Filter '%s' successfully set", opt_filter);
611 }
612 }
613
614 /* Next event */
615 event_name = strtok(NULL, ",");
616 }
617
618 end:
619 error:
620 if (warn) {
621 ret = CMD_WARNING;
622 }
623 if (opt_channel_name == NULL) {
624 free(channel_name);
625 }
626 lttng_destroy_handle(handle);
627
628 return ret;
629 }
630
631 /*
632 * Add event to trace session
633 */
634 int cmd_enable_events(int argc, const char **argv)
635 {
636 int opt, ret = CMD_SUCCESS;
637 static poptContext pc;
638 char *session_name = NULL;
639 int event_type = -1;
640
641 pc = poptGetContext(NULL, argc, argv, long_options, 0);
642 poptReadDefaultConfig(pc, 0);
643
644 /* Default event type */
645 opt_event_type = LTTNG_EVENT_ALL;
646
647 while ((opt = poptGetNextOpt(pc)) != -1) {
648 switch (opt) {
649 case OPT_HELP:
650 usage(stdout);
651 goto end;
652 case OPT_TRACEPOINT:
653 opt_event_type = LTTNG_EVENT_TRACEPOINT;
654 break;
655 case OPT_PROBE:
656 opt_event_type = LTTNG_EVENT_PROBE;
657 break;
658 case OPT_FUNCTION:
659 opt_event_type = LTTNG_EVENT_FUNCTION;
660 break;
661 case OPT_FUNCTION_ENTRY:
662 opt_event_type = LTTNG_EVENT_FUNCTION_ENTRY;
663 break;
664 case OPT_SYSCALL:
665 opt_event_type = LTTNG_EVENT_SYSCALL;
666 break;
667 case OPT_USERSPACE:
668 opt_userspace = 1;
669 break;
670 case OPT_LOGLEVEL:
671 opt_loglevel_type = LTTNG_EVENT_LOGLEVEL_RANGE;
672 opt_loglevel = poptGetOptArg(pc);
673 break;
674 case OPT_LOGLEVEL_ONLY:
675 opt_loglevel_type = LTTNG_EVENT_LOGLEVEL_SINGLE;
676 opt_loglevel = poptGetOptArg(pc);
677 break;
678 case OPT_LIST_OPTIONS:
679 list_cmd_options(stdout, long_options);
680 goto end;
681 case OPT_FILTER:
682 break;
683 default:
684 usage(stderr);
685 ret = CMD_UNDEFINED;
686 goto end;
687 }
688
689 /* Validate event type. Multiple event type are not supported. */
690 if (event_type == -1) {
691 event_type = opt_event_type;
692 } else {
693 if (event_type != opt_event_type) {
694 ERR("Multiple event type not supported.");
695 ret = CMD_ERROR;
696 goto end;
697 }
698 }
699 }
700
701 opt_event_list = (char*) poptGetArg(pc);
702 if (opt_event_list == NULL && opt_enable_all == 0) {
703 ERR("Missing event name(s).\n");
704 usage(stderr);
705 ret = CMD_ERROR;
706 goto end;
707 }
708
709 if (!opt_session_name) {
710 session_name = get_session_name();
711 if (session_name == NULL) {
712 ret = CMD_ERROR;
713 goto end;
714 }
715 } else {
716 session_name = opt_session_name;
717 }
718
719 ret = enable_events(session_name);
720
721 end:
722 if (opt_session_name == NULL) {
723 free(session_name);
724 }
725
726 poptFreeContext(pc);
727 return ret;
728 }
This page took 0.046011 seconds and 5 git commands to generate.