Fix: logger name dropped from filter condition when loglevels are used
[lttng-tools.git] / src / lib / lttng-ctl / lttng-ctl.c
1 /*
2 * liblttngctl.c
3 *
4 * Linux Trace Toolkit Control Library
5 *
6 * Copyright (C) 2011 David Goulet <david.goulet@polymtl.ca>
7 *
8 * This library is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU Lesser General Public License, version 2.1 only,
10 * as published by the Free Software Foundation.
11 *
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
16 *
17 * You should have received a copy of the GNU Lesser General Public License
18 * along with this library; if not, write to the Free Software Foundation,
19 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20 */
21
22 #define _GNU_SOURCE
23 #include <assert.h>
24 #include <grp.h>
25 #include <errno.h>
26 #include <stdio.h>
27 #include <stdlib.h>
28 #include <string.h>
29 #include <unistd.h>
30
31 #include <common/common.h>
32 #include <common/defaults.h>
33 #include <common/sessiond-comm/sessiond-comm.h>
34 #include <common/uri.h>
35 #include <common/utils.h>
36 #include <lttng/lttng.h>
37 #include <lttng/health-internal.h>
38
39 #include "filter/filter-ast.h"
40 #include "filter/filter-parser.h"
41 #include "filter/filter-bytecode.h"
42 #include "filter/memstream.h"
43 #include "lttng-ctl-helper.h"
44
45 #ifdef DEBUG
46 static const int print_xml = 1;
47 #define dbg_printf(fmt, args...) \
48 printf("[debug liblttng-ctl] " fmt, ## args)
49 #else
50 static const int print_xml = 0;
51 #define dbg_printf(fmt, args...) \
52 do { \
53 /* do nothing but check printf format */ \
54 if (0) \
55 printf("[debug liblttnctl] " fmt, ## args); \
56 } while (0)
57 #endif
58
59
60 /* Socket to session daemon for communication */
61 static int sessiond_socket;
62 static char sessiond_sock_path[PATH_MAX];
63
64 /* Variables */
65 static char *tracing_group;
66 static int connected;
67
68 /* Global */
69
70 /*
71 * Those two variables are used by error.h to silent or control the verbosity of
72 * error message. They are global to the library so application linking with it
73 * are able to compile correctly and also control verbosity of the library.
74 */
75 int lttng_opt_quiet;
76 int lttng_opt_verbose;
77
78 /*
79 * Copy string from src to dst and enforce null terminated byte.
80 */
81 LTTNG_HIDDEN
82 void lttng_ctl_copy_string(char *dst, const char *src, size_t len)
83 {
84 if (src && dst) {
85 strncpy(dst, src, len);
86 /* Enforce the NULL terminated byte */
87 dst[len - 1] = '\0';
88 } else if (dst) {
89 dst[0] = '\0';
90 }
91 }
92
93 /*
94 * Copy domain to lttcomm_session_msg domain.
95 *
96 * If domain is unknown, default domain will be the kernel.
97 */
98 LTTNG_HIDDEN
99 void lttng_ctl_copy_lttng_domain(struct lttng_domain *dst,
100 struct lttng_domain *src)
101 {
102 if (src && dst) {
103 switch (src->type) {
104 case LTTNG_DOMAIN_KERNEL:
105 case LTTNG_DOMAIN_UST:
106 case LTTNG_DOMAIN_JUL:
107 memcpy(dst, src, sizeof(struct lttng_domain));
108 break;
109 default:
110 memset(dst, 0, sizeof(struct lttng_domain));
111 break;
112 }
113 }
114 }
115
116 /*
117 * Send lttcomm_session_msg to the session daemon.
118 *
119 * On success, returns the number of bytes sent (>=0)
120 * On error, returns -1
121 */
122 static int send_session_msg(struct lttcomm_session_msg *lsm)
123 {
124 int ret;
125
126 if (!connected) {
127 ret = -LTTNG_ERR_NO_SESSIOND;
128 goto end;
129 }
130
131 DBG("LSM cmd type : %d", lsm->cmd_type);
132
133 ret = lttcomm_send_creds_unix_sock(sessiond_socket, lsm,
134 sizeof(struct lttcomm_session_msg));
135 if (ret < 0) {
136 ret = -LTTNG_ERR_FATAL;
137 }
138
139 end:
140 return ret;
141 }
142
143 /*
144 * Send var len data to the session daemon.
145 *
146 * On success, returns the number of bytes sent (>=0)
147 * On error, returns -1
148 */
149 static int send_session_varlen(void *data, size_t len)
150 {
151 int ret;
152
153 if (!connected) {
154 ret = -LTTNG_ERR_NO_SESSIOND;
155 goto end;
156 }
157
158 if (!data || !len) {
159 ret = 0;
160 goto end;
161 }
162
163 ret = lttcomm_send_unix_sock(sessiond_socket, data, len);
164 if (ret < 0) {
165 ret = -LTTNG_ERR_FATAL;
166 }
167
168 end:
169 return ret;
170 }
171
172 /*
173 * Receive data from the sessiond socket.
174 *
175 * On success, returns the number of bytes received (>=0)
176 * On error, returns -1 (recvmsg() error) or -ENOTCONN
177 */
178 static int recv_data_sessiond(void *buf, size_t len)
179 {
180 int ret;
181
182 if (!connected) {
183 ret = -LTTNG_ERR_NO_SESSIOND;
184 goto end;
185 }
186
187 ret = lttcomm_recv_unix_sock(sessiond_socket, buf, len);
188 if (ret < 0) {
189 ret = -LTTNG_ERR_FATAL;
190 }
191
192 end:
193 return ret;
194 }
195
196 /*
197 * Check if we are in the specified group.
198 *
199 * If yes return 1, else return -1.
200 */
201 LTTNG_HIDDEN
202 int lttng_check_tracing_group(void)
203 {
204 struct group *grp_tracing; /* no free(). See getgrnam(3) */
205 gid_t *grp_list;
206 int grp_list_size, grp_id, i;
207 int ret = -1;
208 const char *grp_name = tracing_group;
209
210 /* Get GID of group 'tracing' */
211 grp_tracing = getgrnam(grp_name);
212 if (!grp_tracing) {
213 /* If grp_tracing is NULL, the group does not exist. */
214 goto end;
215 }
216
217 /* Get number of supplementary group IDs */
218 grp_list_size = getgroups(0, NULL);
219 if (grp_list_size < 0) {
220 perror("getgroups");
221 goto end;
222 }
223
224 /* Alloc group list of the right size */
225 grp_list = malloc(grp_list_size * sizeof(gid_t));
226 if (!grp_list) {
227 perror("malloc");
228 goto end;
229 }
230 grp_id = getgroups(grp_list_size, grp_list);
231 if (grp_id < 0) {
232 perror("getgroups");
233 goto free_list;
234 }
235
236 for (i = 0; i < grp_list_size; i++) {
237 if (grp_list[i] == grp_tracing->gr_gid) {
238 ret = 1;
239 break;
240 }
241 }
242
243 free_list:
244 free(grp_list);
245
246 end:
247 return ret;
248 }
249
250 /*
251 * Try connect to session daemon with sock_path.
252 *
253 * Return 0 on success, else -1
254 */
255 static int try_connect_sessiond(const char *sock_path)
256 {
257 int ret;
258
259 /* If socket exist, we check if the daemon listens for connect. */
260 ret = access(sock_path, F_OK);
261 if (ret < 0) {
262 /* Not alive */
263 goto error;
264 }
265
266 ret = lttcomm_connect_unix_sock(sock_path);
267 if (ret < 0) {
268 /* Not alive */
269 goto error;
270 }
271
272 ret = lttcomm_close_unix_sock(ret);
273 if (ret < 0) {
274 perror("lttcomm_close_unix_sock");
275 }
276
277 return 0;
278
279 error:
280 return -1;
281 }
282
283 /*
284 * Set sessiond socket path by putting it in the global sessiond_sock_path
285 * variable.
286 *
287 * Returns 0 on success, negative value on failure (the sessiond socket path
288 * is somehow too long or ENOMEM).
289 */
290 static int set_session_daemon_path(void)
291 {
292 int in_tgroup = 0; /* In tracing group */
293 uid_t uid;
294
295 uid = getuid();
296
297 if (uid != 0) {
298 /* Are we in the tracing group ? */
299 in_tgroup = lttng_check_tracing_group();
300 }
301
302 if ((uid == 0) || in_tgroup) {
303 lttng_ctl_copy_string(sessiond_sock_path,
304 DEFAULT_GLOBAL_CLIENT_UNIX_SOCK, sizeof(sessiond_sock_path));
305 }
306
307 if (uid != 0) {
308 int ret;
309
310 if (in_tgroup) {
311 /* Tracing group */
312 ret = try_connect_sessiond(sessiond_sock_path);
313 if (ret >= 0) {
314 goto end;
315 }
316 /* Global session daemon not available... */
317 }
318 /* ...or not in tracing group (and not root), default */
319
320 /*
321 * With GNU C < 2.1, snprintf returns -1 if the target buffer is too small;
322 * With GNU C >= 2.1, snprintf returns the required size (excluding closing null)
323 */
324 ret = snprintf(sessiond_sock_path, sizeof(sessiond_sock_path),
325 DEFAULT_HOME_CLIENT_UNIX_SOCK, utils_get_home_dir());
326 if ((ret < 0) || (ret >= sizeof(sessiond_sock_path))) {
327 goto error;
328 }
329 }
330 end:
331 return 0;
332
333 error:
334 return -1;
335 }
336
337 /*
338 * Connect to the LTTng session daemon.
339 *
340 * On success, return 0. On error, return -1.
341 */
342 static int connect_sessiond(void)
343 {
344 int ret;
345
346 /* Don't try to connect if already connected. */
347 if (connected) {
348 return 0;
349 }
350
351 ret = set_session_daemon_path();
352 if (ret < 0) {
353 goto error;
354 }
355
356 /* Connect to the sesssion daemon */
357 ret = lttcomm_connect_unix_sock(sessiond_sock_path);
358 if (ret < 0) {
359 goto error;
360 }
361
362 sessiond_socket = ret;
363 connected = 1;
364
365 return 0;
366
367 error:
368 return -1;
369 }
370
371 /*
372 * Clean disconnect from the session daemon.
373 * On success, return 0. On error, return -1.
374 */
375 static int disconnect_sessiond(void)
376 {
377 int ret = 0;
378
379 if (connected) {
380 ret = lttcomm_close_unix_sock(sessiond_socket);
381 sessiond_socket = 0;
382 connected = 0;
383 }
384
385 return ret;
386 }
387
388 /*
389 * Ask the session daemon a specific command and put the data into buf.
390 * Takes extra var. len. data as input to send to the session daemon.
391 *
392 * Return size of data (only payload, not header) or a negative error code.
393 */
394 LTTNG_HIDDEN
395 int lttng_ctl_ask_sessiond_varlen(struct lttcomm_session_msg *lsm,
396 void *vardata, size_t varlen, void **buf)
397 {
398 int ret;
399 size_t size;
400 void *data = NULL;
401 struct lttcomm_lttng_msg llm;
402
403 ret = connect_sessiond();
404 if (ret < 0) {
405 ret = -LTTNG_ERR_NO_SESSIOND;
406 goto end;
407 }
408
409 /* Send command to session daemon */
410 ret = send_session_msg(lsm);
411 if (ret < 0) {
412 /* Ret value is a valid lttng error code. */
413 goto end;
414 }
415 /* Send var len data */
416 ret = send_session_varlen(vardata, varlen);
417 if (ret < 0) {
418 /* Ret value is a valid lttng error code. */
419 goto end;
420 }
421
422 /* Get header from data transmission */
423 ret = recv_data_sessiond(&llm, sizeof(llm));
424 if (ret < 0) {
425 /* Ret value is a valid lttng error code. */
426 goto end;
427 }
428
429 /* Check error code if OK */
430 if (llm.ret_code != LTTNG_OK) {
431 ret = -llm.ret_code;
432 goto end;
433 }
434
435 size = llm.data_size;
436 if (size == 0) {
437 /* If client free with size 0 */
438 if (buf != NULL) {
439 *buf = NULL;
440 }
441 ret = 0;
442 goto end;
443 }
444
445 data = (void*) malloc(size);
446
447 /* Get payload data */
448 ret = recv_data_sessiond(data, size);
449 if (ret < 0) {
450 free(data);
451 goto end;
452 }
453
454 /*
455 * Extra protection not to dereference a NULL pointer. If buf is NULL at
456 * this point, an error is returned and data is freed.
457 */
458 if (buf == NULL) {
459 ret = -LTTNG_ERR_INVALID;
460 free(data);
461 goto end;
462 }
463
464 *buf = data;
465 ret = size;
466
467 end:
468 disconnect_sessiond();
469 return ret;
470 }
471
472 /*
473 * Create lttng handle and return pointer.
474 * The returned pointer will be NULL in case of malloc() error.
475 */
476 struct lttng_handle *lttng_create_handle(const char *session_name,
477 struct lttng_domain *domain)
478 {
479 struct lttng_handle *handle = NULL;
480
481 if (domain == NULL) {
482 goto end;
483 }
484
485 handle = malloc(sizeof(struct lttng_handle));
486 if (handle == NULL) {
487 PERROR("malloc handle");
488 goto end;
489 }
490
491 /* Copy session name */
492 lttng_ctl_copy_string(handle->session_name, session_name,
493 sizeof(handle->session_name));
494
495 /* Copy lttng domain */
496 lttng_ctl_copy_lttng_domain(&handle->domain, domain);
497
498 end:
499 return handle;
500 }
501
502 /*
503 * Destroy handle by free(3) the pointer.
504 */
505 void lttng_destroy_handle(struct lttng_handle *handle)
506 {
507 free(handle);
508 }
509
510 /*
511 * Register an outside consumer.
512 * Returns size of returned session payload data or a negative error code.
513 */
514 int lttng_register_consumer(struct lttng_handle *handle,
515 const char *socket_path)
516 {
517 struct lttcomm_session_msg lsm;
518
519 if (handle == NULL || socket_path == NULL) {
520 return -LTTNG_ERR_INVALID;
521 }
522
523 memset(&lsm, 0, sizeof(lsm));
524 lsm.cmd_type = LTTNG_REGISTER_CONSUMER;
525 lttng_ctl_copy_string(lsm.session.name, handle->session_name,
526 sizeof(lsm.session.name));
527 lttng_ctl_copy_lttng_domain(&lsm.domain, &handle->domain);
528
529 lttng_ctl_copy_string(lsm.u.reg.path, socket_path, sizeof(lsm.u.reg.path));
530
531 return lttng_ctl_ask_sessiond(&lsm, NULL);
532 }
533
534 /*
535 * Start tracing for all traces of the session.
536 * Returns size of returned session payload data or a negative error code.
537 */
538 int lttng_start_tracing(const char *session_name)
539 {
540 struct lttcomm_session_msg lsm;
541
542 if (session_name == NULL) {
543 return -LTTNG_ERR_INVALID;
544 }
545
546 memset(&lsm, 0, sizeof(lsm));
547 lsm.cmd_type = LTTNG_START_TRACE;
548
549 lttng_ctl_copy_string(lsm.session.name, session_name,
550 sizeof(lsm.session.name));
551
552 return lttng_ctl_ask_sessiond(&lsm, NULL);
553 }
554
555 /*
556 * Stop tracing for all traces of the session.
557 */
558 static int _lttng_stop_tracing(const char *session_name, int wait)
559 {
560 int ret, data_ret;
561 struct lttcomm_session_msg lsm;
562
563 if (session_name == NULL) {
564 return -LTTNG_ERR_INVALID;
565 }
566
567 memset(&lsm, 0, sizeof(lsm));
568 lsm.cmd_type = LTTNG_STOP_TRACE;
569
570 lttng_ctl_copy_string(lsm.session.name, session_name,
571 sizeof(lsm.session.name));
572
573 ret = lttng_ctl_ask_sessiond(&lsm, NULL);
574 if (ret < 0 && ret != -LTTNG_ERR_TRACE_ALREADY_STOPPED) {
575 goto error;
576 }
577
578 if (!wait) {
579 goto end;
580 }
581
582 _MSG("Waiting for data availability");
583 fflush(stdout);
584
585 /* Check for data availability */
586 do {
587 data_ret = lttng_data_pending(session_name);
588 if (data_ret < 0) {
589 /* Return the data available call error. */
590 ret = data_ret;
591 goto error;
592 }
593
594 /*
595 * Data sleep time before retrying (in usec). Don't sleep if the call
596 * returned value indicates availability.
597 */
598 if (data_ret) {
599 usleep(DEFAULT_DATA_AVAILABILITY_WAIT_TIME);
600 _MSG(".");
601 fflush(stdout);
602 }
603 } while (data_ret != 0);
604
605 MSG("");
606
607 end:
608 error:
609 return ret;
610 }
611
612 /*
613 * Stop tracing and wait for data availability.
614 */
615 int lttng_stop_tracing(const char *session_name)
616 {
617 return _lttng_stop_tracing(session_name, 1);
618 }
619
620 /*
621 * Stop tracing but _don't_ wait for data availability.
622 */
623 int lttng_stop_tracing_no_wait(const char *session_name)
624 {
625 return _lttng_stop_tracing(session_name, 0);
626 }
627
628 /*
629 * Add context to a channel.
630 *
631 * If the given channel is NULL, add the contexts to all channels.
632 * The event_name param is ignored.
633 *
634 * Returns the size of the returned payload data or a negative error code.
635 */
636 int lttng_add_context(struct lttng_handle *handle,
637 struct lttng_event_context *ctx, const char *event_name,
638 const char *channel_name)
639 {
640 struct lttcomm_session_msg lsm;
641
642 /* Safety check. Both are mandatory */
643 if (handle == NULL || ctx == NULL) {
644 return -LTTNG_ERR_INVALID;
645 }
646
647 memset(&lsm, 0, sizeof(lsm));
648
649 lsm.cmd_type = LTTNG_ADD_CONTEXT;
650
651 /* If no channel name, send empty string. */
652 if (channel_name == NULL) {
653 lttng_ctl_copy_string(lsm.u.context.channel_name, "",
654 sizeof(lsm.u.context.channel_name));
655 } else {
656 lttng_ctl_copy_string(lsm.u.context.channel_name, channel_name,
657 sizeof(lsm.u.context.channel_name));
658 }
659
660 lttng_ctl_copy_lttng_domain(&lsm.domain, &handle->domain);
661
662 memcpy(&lsm.u.context.ctx, ctx, sizeof(struct lttng_event_context));
663
664 lttng_ctl_copy_string(lsm.session.name, handle->session_name,
665 sizeof(lsm.session.name));
666
667 return lttng_ctl_ask_sessiond(&lsm, NULL);
668 }
669
670 /*
671 * Enable event(s) for a channel.
672 * If no event name is specified, all events are enabled.
673 * If no channel name is specified, the default 'channel0' is used.
674 * Returns size of returned session payload data or a negative error code.
675 */
676 int lttng_enable_event(struct lttng_handle *handle,
677 struct lttng_event *ev, const char *channel_name)
678 {
679 return lttng_enable_event_with_exclusions(handle, ev, channel_name,
680 NULL, 0, NULL);
681 }
682
683 /*
684 * Create or enable an event with a filter expression.
685 *
686 * Return negative error value on error.
687 * Return size of returned session payload data if OK.
688 */
689 int lttng_enable_event_with_filter(struct lttng_handle *handle,
690 struct lttng_event *event, const char *channel_name,
691 const char *filter_expression)
692 {
693 return lttng_enable_event_with_exclusions(handle, event, channel_name,
694 filter_expression, 0, NULL);
695 }
696
697 /*
698 * Depending on the event, return a newly allocated JUL filter expression or
699 * NULL if not applicable.
700 *
701 * An event with NO loglevel and the name is * will return NULL.
702 */
703 static char *set_jul_filter(const char *filter, struct lttng_event *ev)
704 {
705 int err;
706 char *jul_filter = NULL;
707
708 assert(ev);
709
710 /* Don't add filter for the '*' event. */
711 if (ev->name[0] != '*') {
712 if (filter) {
713 err = asprintf(&jul_filter, "%s && logger_name == \"%s\"", filter,
714 ev->name);
715 } else {
716 err = asprintf(&jul_filter, "logger_name == \"%s\"", ev->name);
717 }
718 if (err < 0) {
719 PERROR("asprintf");
720 goto error;
721 }
722 }
723
724 /* Add loglevel filtering if any for the JUL domain. */
725 if (ev->loglevel_type != LTTNG_EVENT_LOGLEVEL_ALL) {
726 char *op;
727
728 if (ev->loglevel_type == LTTNG_EVENT_LOGLEVEL_RANGE) {
729 op = ">=";
730 } else {
731 op = "==";
732 }
733
734 if (filter || jul_filter) {
735 char *new_filter;
736
737 err = asprintf(&new_filter, "%s && int_loglevel %s %d",
738 jul_filter ? jul_filter : filter, op,
739 ev->loglevel);
740 if (jul_filter) {
741 free(jul_filter);
742 }
743 jul_filter = new_filter;
744 } else {
745 err = asprintf(&jul_filter, "int_loglevel %s %d", op,
746 ev->loglevel);
747 }
748 if (err < 0) {
749 PERROR("asprintf");
750 goto error;
751 }
752 }
753
754 return jul_filter;
755 error:
756 free(jul_filter);
757 return NULL;
758 }
759
760 /*
761 * Enable event(s) for a channel, possibly with exclusions and a filter.
762 * If no event name is specified, all events are enabled.
763 * If no channel name is specified, the default name is used.
764 * If filter expression is not NULL, the filter is set for the event.
765 * If exclusion count is not zero, the exclusions are set for the event.
766 * Returns size of returned session payload data or a negative error code.
767 */
768 int lttng_enable_event_with_exclusions(struct lttng_handle *handle,
769 struct lttng_event *ev, const char *channel_name,
770 const char *original_filter_expression,
771 int exclusion_count, char **exclusion_list)
772 {
773 struct lttcomm_session_msg lsm;
774 char *varlen_data;
775 int ret = 0;
776 struct filter_parser_ctx *ctx = NULL;
777 FILE *fmem = NULL;
778 /*
779 * Cast as non-const since we may replace the filter expression
780 * by a dynamically allocated string. Otherwise, the original
781 * string is not modified.
782 */
783 char *filter_expression = (char *) original_filter_expression;
784 int free_filter_expression = 0;
785
786 if (handle == NULL || ev == NULL) {
787 return -LTTNG_ERR_INVALID;
788 }
789
790 /* Empty filter string will always be rejected by the parser
791 * anyway, so treat this corner-case early to eliminate
792 * lttng_fmemopen error for 0-byte allocation.
793 */
794 if (filter_expression && filter_expression[0] == '\0') {
795 return -LTTNG_ERR_INVALID;
796 }
797
798 memset(&lsm, 0, sizeof(lsm));
799
800 /* If no channel name, send empty string. */
801 if (channel_name == NULL) {
802 lttng_ctl_copy_string(lsm.u.enable.channel_name, "",
803 sizeof(lsm.u.enable.channel_name));
804 } else {
805 lttng_ctl_copy_string(lsm.u.enable.channel_name, channel_name,
806 sizeof(lsm.u.enable.channel_name));
807 }
808
809 if (ev->name[0] != '\0') {
810 lsm.cmd_type = LTTNG_ENABLE_EVENT;
811 } else {
812 lsm.cmd_type = LTTNG_ENABLE_ALL_EVENT;
813 }
814
815 lttng_ctl_copy_lttng_domain(&lsm.domain, &handle->domain);
816 memcpy(&lsm.u.enable.event, ev, sizeof(lsm.u.enable.event));
817
818 lttng_ctl_copy_string(lsm.session.name, handle->session_name,
819 sizeof(lsm.session.name));
820 lsm.u.enable.exclusion_count = exclusion_count;
821 lsm.u.enable.bytecode_len = 0;
822
823 /*
824 * For the JUL domain, a filter is enforced except for the enable all
825 * event. This is done to avoid having the event in all sessions thus
826 * filtering by logger name.
827 */
828 if (exclusion_count == 0 && filter_expression == NULL &&
829 handle->domain.type != LTTNG_DOMAIN_JUL) {
830 goto ask_sessiond;
831 }
832
833 /*
834 * We have either a filter or some exclusions, so we need to set up
835 * a variable-length memory block from where to send the data
836 */
837
838 /* Parse filter expression */
839 if (filter_expression != NULL || handle->domain.type == LTTNG_DOMAIN_JUL) {
840 if (handle->domain.type == LTTNG_DOMAIN_JUL) {
841 char *jul_filter;
842
843 /* Setup JUL filter if needed. */
844 jul_filter = set_jul_filter(filter_expression, ev);
845 if (!jul_filter && !filter_expression) {
846 /* No JUL and no filter, just skip everything below. */
847 goto ask_sessiond;
848 } else {
849 /*
850 * With a JUL filter, the original filter has been added to it
851 * thus replace the filter expression.
852 */
853 filter_expression = jul_filter;
854 free_filter_expression = 1;
855 }
856 }
857
858 /*
859 * casting const to non-const, as the underlying function will
860 * use it in read-only mode.
861 */
862 fmem = lttng_fmemopen((void *) filter_expression,
863 strlen(filter_expression), "r");
864 if (!fmem) {
865 fprintf(stderr, "Error opening memory as stream\n");
866 return -LTTNG_ERR_FILTER_NOMEM;
867 }
868 ctx = filter_parser_ctx_alloc(fmem);
869 if (!ctx) {
870 fprintf(stderr, "Error allocating parser\n");
871 ret = -LTTNG_ERR_FILTER_NOMEM;
872 goto filter_alloc_error;
873 }
874 ret = filter_parser_ctx_append_ast(ctx);
875 if (ret) {
876 fprintf(stderr, "Parse error\n");
877 ret = -LTTNG_ERR_FILTER_INVAL;
878 goto parse_error;
879 }
880 ret = filter_visitor_set_parent(ctx);
881 if (ret) {
882 fprintf(stderr, "Set parent error\n");
883 ret = -LTTNG_ERR_FILTER_INVAL;
884 goto parse_error;
885 }
886 if (print_xml) {
887 ret = filter_visitor_print_xml(ctx, stdout, 0);
888 if (ret) {
889 fflush(stdout);
890 fprintf(stderr, "XML print error\n");
891 ret = -LTTNG_ERR_FILTER_INVAL;
892 goto parse_error;
893 }
894 }
895
896 dbg_printf("Generating IR... ");
897 fflush(stdout);
898 ret = filter_visitor_ir_generate(ctx);
899 if (ret) {
900 fprintf(stderr, "Generate IR error\n");
901 ret = -LTTNG_ERR_FILTER_INVAL;
902 goto parse_error;
903 }
904 dbg_printf("done\n");
905
906 dbg_printf("Validating IR... ");
907 fflush(stdout);
908 ret = filter_visitor_ir_check_binary_op_nesting(ctx);
909 if (ret) {
910 ret = -LTTNG_ERR_FILTER_INVAL;
911 goto parse_error;
912 }
913 dbg_printf("done\n");
914
915 dbg_printf("Generating bytecode... ");
916 fflush(stdout);
917 ret = filter_visitor_bytecode_generate(ctx);
918 if (ret) {
919 fprintf(stderr, "Generate bytecode error\n");
920 ret = -LTTNG_ERR_FILTER_INVAL;
921 goto parse_error;
922 }
923 dbg_printf("done\n");
924 dbg_printf("Size of bytecode generated: %u bytes.\n",
925 bytecode_get_len(&ctx->bytecode->b));
926
927 lsm.u.enable.bytecode_len = sizeof(ctx->bytecode->b)
928 + bytecode_get_len(&ctx->bytecode->b);
929 }
930
931 /* Allocate variable length data */
932 if (lsm.u.enable.exclusion_count != 0) {
933 varlen_data = zmalloc(lsm.u.enable.bytecode_len
934 + LTTNG_SYMBOL_NAME_LEN * exclusion_count);
935 if (!varlen_data) {
936 ret = -LTTNG_ERR_EXCLUSION_NOMEM;
937 goto varlen_alloc_error;
938 }
939 /* Put exclusion names first in the data */
940 while (exclusion_count--) {
941 strncpy(varlen_data + LTTNG_SYMBOL_NAME_LEN * exclusion_count,
942 *(exclusion_list + exclusion_count),
943 LTTNG_SYMBOL_NAME_LEN);
944 }
945 /* Add filter bytecode next */
946 if (lsm.u.enable.bytecode_len != 0) {
947 memcpy(varlen_data + LTTNG_SYMBOL_NAME_LEN * lsm.u.enable.exclusion_count,
948 &ctx->bytecode->b,
949 lsm.u.enable.bytecode_len);
950 }
951 } else {
952 /* no exclusions - use the already allocated filter bytecode */
953 varlen_data = (char *)(&ctx->bytecode->b);
954 }
955
956 ret = lttng_ctl_ask_sessiond_varlen(&lsm, varlen_data,
957 (LTTNG_SYMBOL_NAME_LEN * lsm.u.enable.exclusion_count) +
958 lsm.u.enable.bytecode_len, NULL);
959
960 if (lsm.u.enable.exclusion_count != 0) {
961 free(varlen_data);
962 }
963
964 varlen_alloc_error:
965 if (filter_expression) {
966 filter_bytecode_free(ctx);
967 filter_ir_free(ctx);
968 filter_parser_ctx_free(ctx);
969 if (fclose(fmem) != 0) {
970 perror("fclose");
971 }
972 if (free_filter_expression) {
973 /*
974 * The filter expression has been replaced and must be
975 * freed as it is not the original filter expression
976 * received as a parameter.
977 */
978 free(filter_expression);
979 }
980 }
981 return ret;
982
983 parse_error:
984 filter_bytecode_free(ctx);
985 filter_ir_free(ctx);
986 filter_parser_ctx_free(ctx);
987 filter_alloc_error:
988 if (fclose(fmem) != 0) {
989 perror("fclose");
990 }
991 return ret;
992
993 ask_sessiond:
994 ret = lttng_ctl_ask_sessiond(&lsm, NULL);
995 return ret;
996 }
997
998 /*
999 * Disable event(s) of a channel and domain.
1000 * If no event name is specified, all events are disabled.
1001 * If no channel name is specified, the default 'channel0' is used.
1002 * Returns size of returned session payload data or a negative error code.
1003 */
1004 int lttng_disable_event(struct lttng_handle *handle, const char *name,
1005 const char *channel_name)
1006 {
1007 struct lttcomm_session_msg lsm;
1008
1009 if (handle == NULL) {
1010 return -LTTNG_ERR_INVALID;
1011 }
1012
1013 memset(&lsm, 0, sizeof(lsm));
1014
1015 /* If no channel name, send empty string. */
1016 if (channel_name == NULL) {
1017 lttng_ctl_copy_string(lsm.u.disable.channel_name, "",
1018 sizeof(lsm.u.disable.channel_name));
1019 } else {
1020 lttng_ctl_copy_string(lsm.u.disable.channel_name, channel_name,
1021 sizeof(lsm.u.disable.channel_name));
1022 }
1023
1024 lttng_ctl_copy_lttng_domain(&lsm.domain, &handle->domain);
1025
1026 if (name != NULL) {
1027 lttng_ctl_copy_string(lsm.u.disable.name, name,
1028 sizeof(lsm.u.disable.name));
1029 lsm.cmd_type = LTTNG_DISABLE_EVENT;
1030 } else {
1031 lsm.cmd_type = LTTNG_DISABLE_ALL_EVENT;
1032 }
1033
1034 lttng_ctl_copy_string(lsm.session.name, handle->session_name,
1035 sizeof(lsm.session.name));
1036
1037 return lttng_ctl_ask_sessiond(&lsm, NULL);
1038 }
1039
1040 /*
1041 * Enable channel per domain
1042 * Returns size of returned session payload data or a negative error code.
1043 */
1044 int lttng_enable_channel(struct lttng_handle *handle,
1045 struct lttng_channel *chan)
1046 {
1047 struct lttcomm_session_msg lsm;
1048
1049 /*
1050 * NULL arguments are forbidden. No default values.
1051 */
1052 if (handle == NULL || chan == NULL) {
1053 return -LTTNG_ERR_INVALID;
1054 }
1055
1056 memset(&lsm, 0, sizeof(lsm));
1057
1058 memcpy(&lsm.u.channel.chan, chan, sizeof(lsm.u.channel.chan));
1059
1060 lsm.cmd_type = LTTNG_ENABLE_CHANNEL;
1061
1062 lttng_ctl_copy_lttng_domain(&lsm.domain, &handle->domain);
1063
1064 lttng_ctl_copy_string(lsm.session.name, handle->session_name,
1065 sizeof(lsm.session.name));
1066
1067 return lttng_ctl_ask_sessiond(&lsm, NULL);
1068 }
1069
1070 /*
1071 * All tracing will be stopped for registered events of the channel.
1072 * Returns size of returned session payload data or a negative error code.
1073 */
1074 int lttng_disable_channel(struct lttng_handle *handle, const char *name)
1075 {
1076 struct lttcomm_session_msg lsm;
1077
1078 /* Safety check. Both are mandatory */
1079 if (handle == NULL || name == NULL) {
1080 return -LTTNG_ERR_INVALID;
1081 }
1082
1083 memset(&lsm, 0, sizeof(lsm));
1084
1085 lsm.cmd_type = LTTNG_DISABLE_CHANNEL;
1086
1087 lttng_ctl_copy_string(lsm.u.disable.channel_name, name,
1088 sizeof(lsm.u.disable.channel_name));
1089
1090 lttng_ctl_copy_lttng_domain(&lsm.domain, &handle->domain);
1091
1092 lttng_ctl_copy_string(lsm.session.name, handle->session_name,
1093 sizeof(lsm.session.name));
1094
1095 return lttng_ctl_ask_sessiond(&lsm, NULL);
1096 }
1097
1098 /*
1099 * Lists all available tracepoints of domain.
1100 * Sets the contents of the events array.
1101 * Returns the number of lttng_event entries in events;
1102 * on error, returns a negative value.
1103 */
1104 int lttng_list_tracepoints(struct lttng_handle *handle,
1105 struct lttng_event **events)
1106 {
1107 int ret;
1108 struct lttcomm_session_msg lsm;
1109
1110 if (handle == NULL) {
1111 return -LTTNG_ERR_INVALID;
1112 }
1113
1114 memset(&lsm, 0, sizeof(lsm));
1115 lsm.cmd_type = LTTNG_LIST_TRACEPOINTS;
1116 lttng_ctl_copy_lttng_domain(&lsm.domain, &handle->domain);
1117
1118 ret = lttng_ctl_ask_sessiond(&lsm, (void **) events);
1119 if (ret < 0) {
1120 return ret;
1121 }
1122
1123 return ret / sizeof(struct lttng_event);
1124 }
1125
1126 /*
1127 * Lists all available tracepoint fields of domain.
1128 * Sets the contents of the event field array.
1129 * Returns the number of lttng_event_field entries in events;
1130 * on error, returns a negative value.
1131 */
1132 int lttng_list_tracepoint_fields(struct lttng_handle *handle,
1133 struct lttng_event_field **fields)
1134 {
1135 int ret;
1136 struct lttcomm_session_msg lsm;
1137
1138 if (handle == NULL) {
1139 return -LTTNG_ERR_INVALID;
1140 }
1141
1142 memset(&lsm, 0, sizeof(lsm));
1143 lsm.cmd_type = LTTNG_LIST_TRACEPOINT_FIELDS;
1144 lttng_ctl_copy_lttng_domain(&lsm.domain, &handle->domain);
1145
1146 ret = lttng_ctl_ask_sessiond(&lsm, (void **) fields);
1147 if (ret < 0) {
1148 return ret;
1149 }
1150
1151 return ret / sizeof(struct lttng_event_field);
1152 }
1153
1154 /*
1155 * Returns a human readable string describing
1156 * the error code (a negative value).
1157 */
1158 const char *lttng_strerror(int code)
1159 {
1160 return error_get_str(code);
1161 }
1162
1163 /*
1164 * Create a brand new session using name and url for destination.
1165 *
1166 * Returns LTTNG_OK on success or a negative error code.
1167 */
1168 int lttng_create_session(const char *name, const char *url)
1169 {
1170 int ret;
1171 ssize_t size;
1172 struct lttcomm_session_msg lsm;
1173 struct lttng_uri *uris = NULL;
1174
1175 if (name == NULL) {
1176 return -LTTNG_ERR_INVALID;
1177 }
1178
1179 memset(&lsm, 0, sizeof(lsm));
1180
1181 lsm.cmd_type = LTTNG_CREATE_SESSION;
1182 lttng_ctl_copy_string(lsm.session.name, name, sizeof(lsm.session.name));
1183
1184 /* There should never be a data URL */
1185 size = uri_parse_str_urls(url, NULL, &uris);
1186 if (size < 0) {
1187 return -LTTNG_ERR_INVALID;
1188 }
1189
1190 lsm.u.uri.size = size;
1191
1192 ret = lttng_ctl_ask_sessiond_varlen(&lsm, uris,
1193 sizeof(struct lttng_uri) * size, NULL);
1194
1195 free(uris);
1196 return ret;
1197 }
1198
1199 /*
1200 * Destroy session using name.
1201 * Returns size of returned session payload data or a negative error code.
1202 */
1203 int lttng_destroy_session(const char *session_name)
1204 {
1205 struct lttcomm_session_msg lsm;
1206
1207 if (session_name == NULL) {
1208 return -LTTNG_ERR_INVALID;
1209 }
1210
1211 memset(&lsm, 0, sizeof(lsm));
1212 lsm.cmd_type = LTTNG_DESTROY_SESSION;
1213
1214 lttng_ctl_copy_string(lsm.session.name, session_name,
1215 sizeof(lsm.session.name));
1216
1217 return lttng_ctl_ask_sessiond(&lsm, NULL);
1218 }
1219
1220 /*
1221 * Ask the session daemon for all available sessions.
1222 * Sets the contents of the sessions array.
1223 * Returns the number of lttng_session entries in sessions;
1224 * on error, returns a negative value.
1225 */
1226 int lttng_list_sessions(struct lttng_session **sessions)
1227 {
1228 int ret;
1229 struct lttcomm_session_msg lsm;
1230
1231 memset(&lsm, 0, sizeof(lsm));
1232 lsm.cmd_type = LTTNG_LIST_SESSIONS;
1233 ret = lttng_ctl_ask_sessiond(&lsm, (void**) sessions);
1234 if (ret < 0) {
1235 return ret;
1236 }
1237
1238 return ret / sizeof(struct lttng_session);
1239 }
1240
1241 /*
1242 * Ask the session daemon for all available domains of a session.
1243 * Sets the contents of the domains array.
1244 * Returns the number of lttng_domain entries in domains;
1245 * on error, returns a negative value.
1246 */
1247 int lttng_list_domains(const char *session_name,
1248 struct lttng_domain **domains)
1249 {
1250 int ret;
1251 struct lttcomm_session_msg lsm;
1252
1253 if (session_name == NULL) {
1254 return -LTTNG_ERR_INVALID;
1255 }
1256
1257 memset(&lsm, 0, sizeof(lsm));
1258 lsm.cmd_type = LTTNG_LIST_DOMAINS;
1259
1260 lttng_ctl_copy_string(lsm.session.name, session_name,
1261 sizeof(lsm.session.name));
1262
1263 ret = lttng_ctl_ask_sessiond(&lsm, (void**) domains);
1264 if (ret < 0) {
1265 return ret;
1266 }
1267
1268 return ret / sizeof(struct lttng_domain);
1269 }
1270
1271 /*
1272 * Ask the session daemon for all available channels of a session.
1273 * Sets the contents of the channels array.
1274 * Returns the number of lttng_channel entries in channels;
1275 * on error, returns a negative value.
1276 */
1277 int lttng_list_channels(struct lttng_handle *handle,
1278 struct lttng_channel **channels)
1279 {
1280 int ret;
1281 struct lttcomm_session_msg lsm;
1282
1283 if (handle == NULL) {
1284 return -LTTNG_ERR_INVALID;
1285 }
1286
1287 memset(&lsm, 0, sizeof(lsm));
1288 lsm.cmd_type = LTTNG_LIST_CHANNELS;
1289 lttng_ctl_copy_string(lsm.session.name, handle->session_name,
1290 sizeof(lsm.session.name));
1291
1292 lttng_ctl_copy_lttng_domain(&lsm.domain, &handle->domain);
1293
1294 ret = lttng_ctl_ask_sessiond(&lsm, (void**) channels);
1295 if (ret < 0) {
1296 return ret;
1297 }
1298
1299 return ret / sizeof(struct lttng_channel);
1300 }
1301
1302 /*
1303 * Ask the session daemon for all available events of a session channel.
1304 * Sets the contents of the events array.
1305 * Returns the number of lttng_event entries in events;
1306 * on error, returns a negative value.
1307 */
1308 int lttng_list_events(struct lttng_handle *handle,
1309 const char *channel_name, struct lttng_event **events)
1310 {
1311 int ret;
1312 struct lttcomm_session_msg lsm;
1313
1314 /* Safety check. An handle and channel name are mandatory */
1315 if (handle == NULL || channel_name == NULL) {
1316 return -LTTNG_ERR_INVALID;
1317 }
1318
1319 memset(&lsm, 0, sizeof(lsm));
1320 lsm.cmd_type = LTTNG_LIST_EVENTS;
1321 lttng_ctl_copy_string(lsm.session.name, handle->session_name,
1322 sizeof(lsm.session.name));
1323 lttng_ctl_copy_string(lsm.u.list.channel_name, channel_name,
1324 sizeof(lsm.u.list.channel_name));
1325
1326 lttng_ctl_copy_lttng_domain(&lsm.domain, &handle->domain);
1327
1328 ret = lttng_ctl_ask_sessiond(&lsm, (void**) events);
1329 if (ret < 0) {
1330 return ret;
1331 }
1332
1333 return ret / sizeof(struct lttng_event);
1334 }
1335
1336 /*
1337 * Sets the tracing_group variable with name.
1338 * This function allocates memory pointed to by tracing_group.
1339 * On success, returns 0, on error, returns -1 (null name) or -ENOMEM.
1340 */
1341 int lttng_set_tracing_group(const char *name)
1342 {
1343 if (name == NULL) {
1344 return -LTTNG_ERR_INVALID;
1345 }
1346
1347 if (asprintf(&tracing_group, "%s", name) < 0) {
1348 return -LTTNG_ERR_FATAL;
1349 }
1350
1351 return 0;
1352 }
1353
1354 /*
1355 * Returns size of returned session payload data or a negative error code.
1356 */
1357 int lttng_calibrate(struct lttng_handle *handle,
1358 struct lttng_calibrate *calibrate)
1359 {
1360 struct lttcomm_session_msg lsm;
1361
1362 /* Safety check. NULL pointer are forbidden */
1363 if (handle == NULL || calibrate == NULL) {
1364 return -LTTNG_ERR_INVALID;
1365 }
1366
1367 memset(&lsm, 0, sizeof(lsm));
1368 lsm.cmd_type = LTTNG_CALIBRATE;
1369 lttng_ctl_copy_lttng_domain(&lsm.domain, &handle->domain);
1370
1371 memcpy(&lsm.u.calibrate, calibrate, sizeof(lsm.u.calibrate));
1372
1373 return lttng_ctl_ask_sessiond(&lsm, NULL);
1374 }
1375
1376 /*
1377 * Set default channel attributes.
1378 * If either or both of the arguments are null, attr content is zeroe'd.
1379 */
1380 void lttng_channel_set_default_attr(struct lttng_domain *domain,
1381 struct lttng_channel_attr *attr)
1382 {
1383 /* Safety check */
1384 if (attr == NULL || domain == NULL) {
1385 return;
1386 }
1387
1388 memset(attr, 0, sizeof(struct lttng_channel_attr));
1389
1390 /* Same for all domains. */
1391 attr->overwrite = DEFAULT_CHANNEL_OVERWRITE;
1392 attr->tracefile_size = DEFAULT_CHANNEL_TRACEFILE_SIZE;
1393 attr->tracefile_count = DEFAULT_CHANNEL_TRACEFILE_COUNT;
1394
1395 switch (domain->type) {
1396 case LTTNG_DOMAIN_KERNEL:
1397 attr->switch_timer_interval = DEFAULT_KERNEL_CHANNEL_SWITCH_TIMER;
1398 attr->read_timer_interval = DEFAULT_KERNEL_CHANNEL_READ_TIMER;
1399 attr->subbuf_size = default_get_kernel_channel_subbuf_size();
1400 attr->num_subbuf = DEFAULT_KERNEL_CHANNEL_SUBBUF_NUM;
1401 attr->output = DEFAULT_KERNEL_CHANNEL_OUTPUT;
1402 break;
1403 case LTTNG_DOMAIN_UST:
1404 switch (domain->buf_type) {
1405 case LTTNG_BUFFER_PER_UID:
1406 attr->subbuf_size = default_get_ust_uid_channel_subbuf_size();
1407 attr->num_subbuf = DEFAULT_UST_UID_CHANNEL_SUBBUF_NUM;
1408 attr->output = DEFAULT_UST_UID_CHANNEL_OUTPUT;
1409 attr->switch_timer_interval = DEFAULT_UST_UID_CHANNEL_SWITCH_TIMER;
1410 attr->read_timer_interval = DEFAULT_UST_UID_CHANNEL_READ_TIMER;
1411 break;
1412 case LTTNG_BUFFER_PER_PID:
1413 default:
1414 attr->subbuf_size = default_get_ust_pid_channel_subbuf_size();
1415 attr->num_subbuf = DEFAULT_UST_PID_CHANNEL_SUBBUF_NUM;
1416 attr->output = DEFAULT_UST_PID_CHANNEL_OUTPUT;
1417 attr->switch_timer_interval = DEFAULT_UST_PID_CHANNEL_SWITCH_TIMER;
1418 attr->read_timer_interval = DEFAULT_UST_PID_CHANNEL_READ_TIMER;
1419 break;
1420 }
1421 default:
1422 /* Default behavior: leave set to 0. */
1423 break;
1424 }
1425 }
1426
1427 /*
1428 * Check if session daemon is alive.
1429 *
1430 * Return 1 if alive or 0 if not.
1431 * On error returns a negative value.
1432 */
1433 int lttng_session_daemon_alive(void)
1434 {
1435 int ret;
1436
1437 ret = set_session_daemon_path();
1438 if (ret < 0) {
1439 /* Error */
1440 return ret;
1441 }
1442
1443 if (*sessiond_sock_path == '\0') {
1444 /*
1445 * No socket path set. Weird error which means the constructor was not
1446 * called.
1447 */
1448 assert(0);
1449 }
1450
1451 ret = try_connect_sessiond(sessiond_sock_path);
1452 if (ret < 0) {
1453 /* Not alive */
1454 return 0;
1455 }
1456
1457 /* Is alive */
1458 return 1;
1459 }
1460
1461 /*
1462 * Set URL for a consumer for a session and domain.
1463 *
1464 * Return 0 on success, else a negative value.
1465 */
1466 int lttng_set_consumer_url(struct lttng_handle *handle,
1467 const char *control_url, const char *data_url)
1468 {
1469 int ret;
1470 ssize_t size;
1471 struct lttcomm_session_msg lsm;
1472 struct lttng_uri *uris = NULL;
1473
1474 if (handle == NULL || (control_url == NULL && data_url == NULL)) {
1475 return -LTTNG_ERR_INVALID;
1476 }
1477
1478 memset(&lsm, 0, sizeof(lsm));
1479
1480 lsm.cmd_type = LTTNG_SET_CONSUMER_URI;
1481
1482 lttng_ctl_copy_string(lsm.session.name, handle->session_name,
1483 sizeof(lsm.session.name));
1484 lttng_ctl_copy_lttng_domain(&lsm.domain, &handle->domain);
1485
1486 size = uri_parse_str_urls(control_url, data_url, &uris);
1487 if (size < 0) {
1488 return -LTTNG_ERR_INVALID;
1489 }
1490
1491 lsm.u.uri.size = size;
1492
1493 ret = lttng_ctl_ask_sessiond_varlen(&lsm, uris,
1494 sizeof(struct lttng_uri) * size, NULL);
1495
1496 free(uris);
1497 return ret;
1498 }
1499
1500 /*
1501 * [OBSOLETE]
1502 */
1503 int lttng_enable_consumer(struct lttng_handle *handle)
1504 {
1505 return -ENOSYS;
1506 }
1507
1508 /*
1509 * [OBSOLETE]
1510 */
1511 int lttng_disable_consumer(struct lttng_handle *handle)
1512 {
1513 return -ENOSYS;
1514 }
1515
1516 /*
1517 * This is an extension of create session that is ONLY and SHOULD only be used
1518 * by the lttng command line program. It exists to avoid using URI parsing in
1519 * the lttng client.
1520 *
1521 * We need the date and time for the trace path subdirectory for the case where
1522 * the user does NOT define one using either -o or -U. Using the normal
1523 * lttng_create_session API call, we have no clue on the session daemon side if
1524 * the URL was generated automatically by the client or define by the user.
1525 *
1526 * So this function "wrapper" is hidden from the public API, takes the datetime
1527 * string and appends it if necessary to the URI subdirectory before sending it
1528 * to the session daemon.
1529 *
1530 * With this extra function, the lttng_create_session call behavior is not
1531 * changed and the timestamp is appended to the URI on the session daemon side
1532 * if necessary.
1533 */
1534 int _lttng_create_session_ext(const char *name, const char *url,
1535 const char *datetime)
1536 {
1537 int ret;
1538 ssize_t size;
1539 struct lttcomm_session_msg lsm;
1540 struct lttng_uri *uris = NULL;
1541
1542 if (name == NULL || datetime == NULL) {
1543 return -LTTNG_ERR_INVALID;
1544 }
1545
1546 memset(&lsm, 0, sizeof(lsm));
1547
1548 lsm.cmd_type = LTTNG_CREATE_SESSION;
1549 lttng_ctl_copy_string(lsm.session.name, name, sizeof(lsm.session.name));
1550
1551 /* There should never be a data URL */
1552 size = uri_parse_str_urls(url, NULL, &uris);
1553 if (size < 0) {
1554 ret = -LTTNG_ERR_INVALID;
1555 goto error;
1556 }
1557
1558 lsm.u.uri.size = size;
1559
1560 if (size > 0 && uris[0].dtype != LTTNG_DST_PATH && strlen(uris[0].subdir) == 0) {
1561 /* Don't append datetime if the name was automatically created. */
1562 if (strncmp(name, DEFAULT_SESSION_NAME "-",
1563 strlen(DEFAULT_SESSION_NAME) + 1)) {
1564 ret = snprintf(uris[0].subdir, sizeof(uris[0].subdir), "%s-%s",
1565 name, datetime);
1566 } else {
1567 ret = snprintf(uris[0].subdir, sizeof(uris[0].subdir), "%s", name);
1568 }
1569 if (ret < 0) {
1570 PERROR("snprintf uri subdir");
1571 ret = -LTTNG_ERR_FATAL;
1572 goto error;
1573 }
1574 }
1575
1576 ret = lttng_ctl_ask_sessiond_varlen(&lsm, uris,
1577 sizeof(struct lttng_uri) * size, NULL);
1578
1579 error:
1580 free(uris);
1581 return ret;
1582 }
1583
1584 /*
1585 * For a given session name, this call checks if the data is ready to be read
1586 * or is still being extracted by the consumer(s) hence not ready to be used by
1587 * any readers.
1588 */
1589 int lttng_data_pending(const char *session_name)
1590 {
1591 int ret;
1592 struct lttcomm_session_msg lsm;
1593
1594 if (session_name == NULL) {
1595 return -LTTNG_ERR_INVALID;
1596 }
1597
1598 memset(&lsm, 0, sizeof(lsm));
1599 lsm.cmd_type = LTTNG_DATA_PENDING;
1600
1601 lttng_ctl_copy_string(lsm.session.name, session_name,
1602 sizeof(lsm.session.name));
1603
1604 ret = lttng_ctl_ask_sessiond(&lsm, NULL);
1605
1606 /*
1607 * The lttng_ctl_ask_sessiond function negate the return code if it's not
1608 * LTTNG_OK so getting -1 means that the reply ret_code was 1 thus meaning
1609 * that the data is available. Yes it is hackish but for now this is the
1610 * only way.
1611 */
1612 if (ret == -1) {
1613 ret = 1;
1614 }
1615
1616 return ret;
1617 }
1618
1619 /*
1620 * Create a session exclusively used for snapshot.
1621 *
1622 * Returns LTTNG_OK on success or a negative error code.
1623 */
1624 int lttng_create_session_snapshot(const char *name, const char *snapshot_url)
1625 {
1626 int ret;
1627 ssize_t size;
1628 struct lttcomm_session_msg lsm;
1629 struct lttng_uri *uris = NULL;
1630
1631 if (name == NULL) {
1632 return -LTTNG_ERR_INVALID;
1633 }
1634
1635 memset(&lsm, 0, sizeof(lsm));
1636
1637 lsm.cmd_type = LTTNG_CREATE_SESSION_SNAPSHOT;
1638 lttng_ctl_copy_string(lsm.session.name, name, sizeof(lsm.session.name));
1639
1640 size = uri_parse_str_urls(snapshot_url, NULL, &uris);
1641 if (size < 0) {
1642 return -LTTNG_ERR_INVALID;
1643 }
1644
1645 lsm.u.uri.size = size;
1646
1647 ret = lttng_ctl_ask_sessiond_varlen(&lsm, uris,
1648 sizeof(struct lttng_uri) * size, NULL);
1649
1650 free(uris);
1651 return ret;
1652 }
1653
1654 /*
1655 * Create a session exclusively used for live.
1656 *
1657 * Returns LTTNG_OK on success or a negative error code.
1658 */
1659 int lttng_create_session_live(const char *name, const char *url,
1660 unsigned int timer_interval)
1661 {
1662 int ret;
1663 ssize_t size;
1664 struct lttcomm_session_msg lsm;
1665 struct lttng_uri *uris = NULL;
1666
1667 if (name == NULL) {
1668 return -LTTNG_ERR_INVALID;
1669 }
1670
1671 memset(&lsm, 0, sizeof(lsm));
1672
1673 lsm.cmd_type = LTTNG_CREATE_SESSION_LIVE;
1674 lttng_ctl_copy_string(lsm.session.name, name, sizeof(lsm.session.name));
1675
1676 if (url) {
1677 size = uri_parse_str_urls(url, NULL, &uris);
1678 if (size <= 0) {
1679 ret = -LTTNG_ERR_INVALID;
1680 goto end;
1681 }
1682
1683 /* file:// is not accepted for live session. */
1684 if (uris[0].dtype == LTTNG_DST_PATH) {
1685 ret = -LTTNG_ERR_INVALID;
1686 goto end;
1687 }
1688 } else {
1689 size = 0;
1690 }
1691
1692 lsm.u.session_live.nb_uri = size;
1693 lsm.u.session_live.timer_interval = timer_interval;
1694
1695 ret = lttng_ctl_ask_sessiond_varlen(&lsm, uris,
1696 sizeof(struct lttng_uri) * size, NULL);
1697
1698 end:
1699 free(uris);
1700 return ret;
1701 }
1702
1703 /*
1704 * lib constructor
1705 */
1706 static void __attribute__((constructor)) init()
1707 {
1708 /* Set default session group */
1709 lttng_set_tracing_group(DEFAULT_TRACING_GROUP);
1710 }
1711
1712 /*
1713 * lib destructor
1714 */
1715 static void __attribute__((destructor)) lttng_ctl_exit()
1716 {
1717 free(tracing_group);
1718 }
This page took 0.075859 seconds and 4 git commands to generate.