83a46a45d1edfd12699597005007de9c4b6c47ff
[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 lsm.cmd_type = LTTNG_REGISTER_CONSUMER;
524 lttng_ctl_copy_string(lsm.session.name, handle->session_name,
525 sizeof(lsm.session.name));
526 lttng_ctl_copy_lttng_domain(&lsm.domain, &handle->domain);
527
528 lttng_ctl_copy_string(lsm.u.reg.path, socket_path, sizeof(lsm.u.reg.path));
529
530 return lttng_ctl_ask_sessiond(&lsm, NULL);
531 }
532
533 /*
534 * Start tracing for all traces of the session.
535 * Returns size of returned session payload data or a negative error code.
536 */
537 int lttng_start_tracing(const char *session_name)
538 {
539 struct lttcomm_session_msg lsm;
540
541 if (session_name == NULL) {
542 return -LTTNG_ERR_INVALID;
543 }
544
545 lsm.cmd_type = LTTNG_START_TRACE;
546
547 lttng_ctl_copy_string(lsm.session.name, session_name,
548 sizeof(lsm.session.name));
549
550 return lttng_ctl_ask_sessiond(&lsm, NULL);
551 }
552
553 /*
554 * Stop tracing for all traces of the session.
555 */
556 static int _lttng_stop_tracing(const char *session_name, int wait)
557 {
558 int ret, data_ret;
559 struct lttcomm_session_msg lsm;
560
561 if (session_name == NULL) {
562 return -LTTNG_ERR_INVALID;
563 }
564
565 lsm.cmd_type = LTTNG_STOP_TRACE;
566
567 lttng_ctl_copy_string(lsm.session.name, session_name,
568 sizeof(lsm.session.name));
569
570 ret = lttng_ctl_ask_sessiond(&lsm, NULL);
571 if (ret < 0 && ret != -LTTNG_ERR_TRACE_ALREADY_STOPPED) {
572 goto error;
573 }
574
575 if (!wait) {
576 goto end;
577 }
578
579 _MSG("Waiting for data availability");
580 fflush(stdout);
581
582 /* Check for data availability */
583 do {
584 data_ret = lttng_data_pending(session_name);
585 if (data_ret < 0) {
586 /* Return the data available call error. */
587 ret = data_ret;
588 goto error;
589 }
590
591 /*
592 * Data sleep time before retrying (in usec). Don't sleep if the call
593 * returned value indicates availability.
594 */
595 if (data_ret) {
596 usleep(DEFAULT_DATA_AVAILABILITY_WAIT_TIME);
597 _MSG(".");
598 fflush(stdout);
599 }
600 } while (data_ret != 0);
601
602 MSG("");
603
604 end:
605 error:
606 return ret;
607 }
608
609 /*
610 * Stop tracing and wait for data availability.
611 */
612 int lttng_stop_tracing(const char *session_name)
613 {
614 return _lttng_stop_tracing(session_name, 1);
615 }
616
617 /*
618 * Stop tracing but _don't_ wait for data availability.
619 */
620 int lttng_stop_tracing_no_wait(const char *session_name)
621 {
622 return _lttng_stop_tracing(session_name, 0);
623 }
624
625 /*
626 * Add context to a channel.
627 *
628 * If the given channel is NULL, add the contexts to all channels.
629 * The event_name param is ignored.
630 *
631 * Returns the size of the returned payload data or a negative error code.
632 */
633 int lttng_add_context(struct lttng_handle *handle,
634 struct lttng_event_context *ctx, const char *event_name,
635 const char *channel_name)
636 {
637 struct lttcomm_session_msg lsm;
638
639 /* Safety check. Both are mandatory */
640 if (handle == NULL || ctx == NULL) {
641 return -LTTNG_ERR_INVALID;
642 }
643
644 memset(&lsm, 0, sizeof(lsm));
645
646 lsm.cmd_type = LTTNG_ADD_CONTEXT;
647
648 /* If no channel name, send empty string. */
649 if (channel_name == NULL) {
650 lttng_ctl_copy_string(lsm.u.context.channel_name, "",
651 sizeof(lsm.u.context.channel_name));
652 } else {
653 lttng_ctl_copy_string(lsm.u.context.channel_name, channel_name,
654 sizeof(lsm.u.context.channel_name));
655 }
656
657 lttng_ctl_copy_lttng_domain(&lsm.domain, &handle->domain);
658
659 memcpy(&lsm.u.context.ctx, ctx, sizeof(struct lttng_event_context));
660
661 lttng_ctl_copy_string(lsm.session.name, handle->session_name,
662 sizeof(lsm.session.name));
663
664 return lttng_ctl_ask_sessiond(&lsm, NULL);
665 }
666
667 /*
668 * Enable event(s) for a channel.
669 * If no event name is specified, all events are enabled.
670 * If no channel name is specified, the default 'channel0' is used.
671 * Returns size of returned session payload data or a negative error code.
672 */
673 int lttng_enable_event(struct lttng_handle *handle,
674 struct lttng_event *ev, const char *channel_name)
675 {
676 struct lttcomm_session_msg lsm;
677
678 if (handle == NULL || ev == NULL) {
679 return -LTTNG_ERR_INVALID;
680 }
681
682 memset(&lsm, 0, sizeof(lsm));
683
684 /* If no channel name, send empty string. */
685 if (channel_name == NULL) {
686 lttng_ctl_copy_string(lsm.u.enable.channel_name, "",
687 sizeof(lsm.u.enable.channel_name));
688 } else {
689 lttng_ctl_copy_string(lsm.u.enable.channel_name, channel_name,
690 sizeof(lsm.u.enable.channel_name));
691 }
692
693 lttng_ctl_copy_lttng_domain(&lsm.domain, &handle->domain);
694
695 if (ev->name[0] != '\0') {
696 lsm.cmd_type = LTTNG_ENABLE_EVENT;
697 } else {
698 lsm.cmd_type = LTTNG_ENABLE_ALL_EVENT;
699 }
700 memcpy(&lsm.u.enable.event, ev, sizeof(lsm.u.enable.event));
701
702 lttng_ctl_copy_string(lsm.session.name, handle->session_name,
703 sizeof(lsm.session.name));
704
705 return lttng_ctl_ask_sessiond(&lsm, NULL);
706 }
707
708 /*
709 * Create or enable an event with a filter expression.
710 *
711 * Return negative error value on error.
712 * Return size of returned session payload data if OK.
713 */
714 int lttng_enable_event_with_filter(struct lttng_handle *handle,
715 struct lttng_event *event, const char *channel_name,
716 const char *filter_expression)
717 {
718 struct lttcomm_session_msg lsm;
719 struct filter_parser_ctx *ctx;
720 FILE *fmem;
721 int ret = 0;
722
723 if (!filter_expression) {
724 /*
725 * Fall back to normal event enabling if no filter
726 * specified.
727 */
728 return lttng_enable_event(handle, event, channel_name);
729 }
730
731 /*
732 * Empty filter string will always be rejected by the parser
733 * anyway, so treat this corner-case early to eliminate
734 * lttng_fmemopen error for 0-byte allocation.
735 */
736 if (handle == NULL || filter_expression[0] == '\0') {
737 return -LTTNG_ERR_INVALID;
738 }
739
740 /*
741 * casting const to non-const, as the underlying function will
742 * use it in read-only mode.
743 */
744 fmem = lttng_fmemopen((void *) filter_expression,
745 strlen(filter_expression), "r");
746 if (!fmem) {
747 fprintf(stderr, "Error opening memory as stream\n");
748 return -LTTNG_ERR_FILTER_NOMEM;
749 }
750 ctx = filter_parser_ctx_alloc(fmem);
751 if (!ctx) {
752 fprintf(stderr, "Error allocating parser\n");
753 ret = -LTTNG_ERR_FILTER_NOMEM;
754 goto alloc_error;
755 }
756 ret = filter_parser_ctx_append_ast(ctx);
757 if (ret) {
758 fprintf(stderr, "Parse error\n");
759 ret = -LTTNG_ERR_FILTER_INVAL;
760 goto parse_error;
761 }
762 ret = filter_visitor_set_parent(ctx);
763 if (ret) {
764 fprintf(stderr, "Set parent error\n");
765 ret = -LTTNG_ERR_FILTER_INVAL;
766 goto parse_error;
767 }
768 if (print_xml) {
769 ret = filter_visitor_print_xml(ctx, stdout, 0);
770 if (ret) {
771 fflush(stdout);
772 fprintf(stderr, "XML print error\n");
773 ret = -LTTNG_ERR_FILTER_INVAL;
774 goto parse_error;
775 }
776 }
777
778 dbg_printf("Generating IR... ");
779 fflush(stdout);
780 ret = filter_visitor_ir_generate(ctx);
781 if (ret) {
782 fprintf(stderr, "Generate IR error\n");
783 ret = -LTTNG_ERR_FILTER_INVAL;
784 goto parse_error;
785 }
786 dbg_printf("done\n");
787
788 dbg_printf("Validating IR... ");
789 fflush(stdout);
790 ret = filter_visitor_ir_check_binary_op_nesting(ctx);
791 if (ret) {
792 ret = -LTTNG_ERR_FILTER_INVAL;
793 goto parse_error;
794 }
795 dbg_printf("done\n");
796
797 dbg_printf("Generating bytecode... ");
798 fflush(stdout);
799 ret = filter_visitor_bytecode_generate(ctx);
800 if (ret) {
801 fprintf(stderr, "Generate bytecode error\n");
802 ret = -LTTNG_ERR_FILTER_INVAL;
803 goto parse_error;
804 }
805 dbg_printf("done\n");
806 dbg_printf("Size of bytecode generated: %u bytes.\n",
807 bytecode_get_len(&ctx->bytecode->b));
808
809 memset(&lsm, 0, sizeof(lsm));
810
811 lsm.cmd_type = LTTNG_ENABLE_EVENT_WITH_FILTER;
812
813 /* If no channel name, send empty string. */
814 if (channel_name == NULL) {
815 lttng_ctl_copy_string(lsm.u.enable.channel_name, "",
816 sizeof(lsm.u.enable.channel_name));
817 } else {
818 lttng_ctl_copy_string(lsm.u.enable.channel_name, channel_name,
819 sizeof(lsm.u.enable.channel_name));
820 }
821
822 /* Copy event name */
823 if (event) {
824 memcpy(&lsm.u.enable.event, event, sizeof(lsm.u.enable.event));
825 }
826
827 lsm.u.enable.bytecode_len = sizeof(ctx->bytecode->b)
828 + bytecode_get_len(&ctx->bytecode->b);
829
830 lttng_ctl_copy_lttng_domain(&lsm.domain, &handle->domain);
831
832 lttng_ctl_copy_string(lsm.session.name, handle->session_name,
833 sizeof(lsm.session.name));
834
835 ret = lttng_ctl_ask_sessiond_varlen(&lsm, &ctx->bytecode->b,
836 lsm.u.enable.bytecode_len, NULL);
837
838 filter_bytecode_free(ctx);
839 filter_ir_free(ctx);
840 filter_parser_ctx_free(ctx);
841 if (fclose(fmem) != 0) {
842 perror("fclose");
843 }
844 return ret;
845
846 parse_error:
847 filter_bytecode_free(ctx);
848 filter_ir_free(ctx);
849 filter_parser_ctx_free(ctx);
850 alloc_error:
851 if (fclose(fmem) != 0) {
852 perror("fclose");
853 }
854 return ret;
855 }
856
857 /*
858 * Disable event(s) of a channel and domain.
859 * If no event name is specified, all events are disabled.
860 * If no channel name is specified, the default 'channel0' is used.
861 * Returns size of returned session payload data or a negative error code.
862 */
863 int lttng_disable_event(struct lttng_handle *handle, const char *name,
864 const char *channel_name)
865 {
866 struct lttcomm_session_msg lsm;
867
868 if (handle == NULL) {
869 return -LTTNG_ERR_INVALID;
870 }
871
872 memset(&lsm, 0, sizeof(lsm));
873
874 /* If no channel name, send empty string. */
875 if (channel_name == NULL) {
876 lttng_ctl_copy_string(lsm.u.disable.channel_name, "",
877 sizeof(lsm.u.disable.channel_name));
878 } else {
879 lttng_ctl_copy_string(lsm.u.disable.channel_name, channel_name,
880 sizeof(lsm.u.disable.channel_name));
881 }
882
883 lttng_ctl_copy_lttng_domain(&lsm.domain, &handle->domain);
884
885 if (name != NULL) {
886 lttng_ctl_copy_string(lsm.u.disable.name, name,
887 sizeof(lsm.u.disable.name));
888 lsm.cmd_type = LTTNG_DISABLE_EVENT;
889 } else {
890 lsm.cmd_type = LTTNG_DISABLE_ALL_EVENT;
891 }
892
893 lttng_ctl_copy_string(lsm.session.name, handle->session_name,
894 sizeof(lsm.session.name));
895
896 return lttng_ctl_ask_sessiond(&lsm, NULL);
897 }
898
899 /*
900 * Enable channel per domain
901 * Returns size of returned session payload data or a negative error code.
902 */
903 int lttng_enable_channel(struct lttng_handle *handle,
904 struct lttng_channel *chan)
905 {
906 struct lttcomm_session_msg lsm;
907
908 /*
909 * NULL arguments are forbidden. No default values.
910 */
911 if (handle == NULL || chan == NULL) {
912 return -LTTNG_ERR_INVALID;
913 }
914
915 memset(&lsm, 0, sizeof(lsm));
916
917 memcpy(&lsm.u.channel.chan, chan, sizeof(lsm.u.channel.chan));
918
919 lsm.cmd_type = LTTNG_ENABLE_CHANNEL;
920
921 lttng_ctl_copy_lttng_domain(&lsm.domain, &handle->domain);
922
923 lttng_ctl_copy_string(lsm.session.name, handle->session_name,
924 sizeof(lsm.session.name));
925
926 return lttng_ctl_ask_sessiond(&lsm, NULL);
927 }
928
929 /*
930 * All tracing will be stopped for registered events of the channel.
931 * Returns size of returned session payload data or a negative error code.
932 */
933 int lttng_disable_channel(struct lttng_handle *handle, const char *name)
934 {
935 struct lttcomm_session_msg lsm;
936
937 /* Safety check. Both are mandatory */
938 if (handle == NULL || name == NULL) {
939 return -LTTNG_ERR_INVALID;
940 }
941
942 memset(&lsm, 0, sizeof(lsm));
943
944 lsm.cmd_type = LTTNG_DISABLE_CHANNEL;
945
946 lttng_ctl_copy_string(lsm.u.disable.channel_name, name,
947 sizeof(lsm.u.disable.channel_name));
948
949 lttng_ctl_copy_lttng_domain(&lsm.domain, &handle->domain);
950
951 lttng_ctl_copy_string(lsm.session.name, handle->session_name,
952 sizeof(lsm.session.name));
953
954 return lttng_ctl_ask_sessiond(&lsm, NULL);
955 }
956
957 /*
958 * Lists all available tracepoints of domain.
959 * Sets the contents of the events array.
960 * Returns the number of lttng_event entries in events;
961 * on error, returns a negative value.
962 */
963 int lttng_list_tracepoints(struct lttng_handle *handle,
964 struct lttng_event **events)
965 {
966 int ret;
967 struct lttcomm_session_msg lsm;
968
969 if (handle == NULL) {
970 return -LTTNG_ERR_INVALID;
971 }
972
973 lsm.cmd_type = LTTNG_LIST_TRACEPOINTS;
974 lttng_ctl_copy_lttng_domain(&lsm.domain, &handle->domain);
975
976 ret = lttng_ctl_ask_sessiond(&lsm, (void **) events);
977 if (ret < 0) {
978 return ret;
979 }
980
981 return ret / sizeof(struct lttng_event);
982 }
983
984 /*
985 * Lists all available tracepoint fields of domain.
986 * Sets the contents of the event field array.
987 * Returns the number of lttng_event_field entries in events;
988 * on error, returns a negative value.
989 */
990 int lttng_list_tracepoint_fields(struct lttng_handle *handle,
991 struct lttng_event_field **fields)
992 {
993 int ret;
994 struct lttcomm_session_msg lsm;
995
996 if (handle == NULL) {
997 return -LTTNG_ERR_INVALID;
998 }
999
1000 lsm.cmd_type = LTTNG_LIST_TRACEPOINT_FIELDS;
1001 lttng_ctl_copy_lttng_domain(&lsm.domain, &handle->domain);
1002
1003 ret = lttng_ctl_ask_sessiond(&lsm, (void **) fields);
1004 if (ret < 0) {
1005 return ret;
1006 }
1007
1008 return ret / sizeof(struct lttng_event_field);
1009 }
1010
1011 /*
1012 * Returns a human readable string describing
1013 * the error code (a negative value).
1014 */
1015 const char *lttng_strerror(int code)
1016 {
1017 return error_get_str(code);
1018 }
1019
1020 /*
1021 * Create a brand new session using name and url for destination.
1022 *
1023 * Returns LTTNG_OK on success or a negative error code.
1024 */
1025 int lttng_create_session(const char *name, const char *url)
1026 {
1027 int ret;
1028 ssize_t size;
1029 struct lttcomm_session_msg lsm;
1030 struct lttng_uri *uris = NULL;
1031
1032 if (name == NULL) {
1033 return -LTTNG_ERR_INVALID;
1034 }
1035
1036 memset(&lsm, 0, sizeof(lsm));
1037
1038 lsm.cmd_type = LTTNG_CREATE_SESSION;
1039 lttng_ctl_copy_string(lsm.session.name, name, sizeof(lsm.session.name));
1040
1041 /* There should never be a data URL */
1042 size = uri_parse_str_urls(url, NULL, &uris);
1043 if (size < 0) {
1044 return -LTTNG_ERR_INVALID;
1045 }
1046
1047 lsm.u.uri.size = size;
1048
1049 ret = lttng_ctl_ask_sessiond_varlen(&lsm, uris,
1050 sizeof(struct lttng_uri) * size, NULL);
1051
1052 free(uris);
1053 return ret;
1054 }
1055
1056 /*
1057 * Destroy session using name.
1058 * Returns size of returned session payload data or a negative error code.
1059 */
1060 int lttng_destroy_session(const char *session_name)
1061 {
1062 struct lttcomm_session_msg lsm;
1063
1064 if (session_name == NULL) {
1065 return -LTTNG_ERR_INVALID;
1066 }
1067
1068 lsm.cmd_type = LTTNG_DESTROY_SESSION;
1069
1070 lttng_ctl_copy_string(lsm.session.name, session_name,
1071 sizeof(lsm.session.name));
1072
1073 return lttng_ctl_ask_sessiond(&lsm, NULL);
1074 }
1075
1076 /*
1077 * Ask the session daemon for all available sessions.
1078 * Sets the contents of the sessions array.
1079 * Returns the number of lttng_session entries in sessions;
1080 * on error, returns a negative value.
1081 */
1082 int lttng_list_sessions(struct lttng_session **sessions)
1083 {
1084 int ret;
1085 struct lttcomm_session_msg lsm;
1086
1087 lsm.cmd_type = LTTNG_LIST_SESSIONS;
1088 ret = lttng_ctl_ask_sessiond(&lsm, (void**) sessions);
1089 if (ret < 0) {
1090 return ret;
1091 }
1092
1093 return ret / sizeof(struct lttng_session);
1094 }
1095
1096 /*
1097 * Ask the session daemon for all available domains of a session.
1098 * Sets the contents of the domains array.
1099 * Returns the number of lttng_domain entries in domains;
1100 * on error, returns a negative value.
1101 */
1102 int lttng_list_domains(const char *session_name,
1103 struct lttng_domain **domains)
1104 {
1105 int ret;
1106 struct lttcomm_session_msg lsm;
1107
1108 if (session_name == NULL) {
1109 return -LTTNG_ERR_INVALID;
1110 }
1111
1112 lsm.cmd_type = LTTNG_LIST_DOMAINS;
1113
1114 lttng_ctl_copy_string(lsm.session.name, session_name,
1115 sizeof(lsm.session.name));
1116
1117 ret = lttng_ctl_ask_sessiond(&lsm, (void**) domains);
1118 if (ret < 0) {
1119 return ret;
1120 }
1121
1122 return ret / sizeof(struct lttng_domain);
1123 }
1124
1125 /*
1126 * Ask the session daemon for all available channels of a session.
1127 * Sets the contents of the channels array.
1128 * Returns the number of lttng_channel entries in channels;
1129 * on error, returns a negative value.
1130 */
1131 int lttng_list_channels(struct lttng_handle *handle,
1132 struct lttng_channel **channels)
1133 {
1134 int ret;
1135 struct lttcomm_session_msg lsm;
1136
1137 if (handle == NULL) {
1138 return -LTTNG_ERR_INVALID;
1139 }
1140
1141 lsm.cmd_type = LTTNG_LIST_CHANNELS;
1142 lttng_ctl_copy_string(lsm.session.name, handle->session_name,
1143 sizeof(lsm.session.name));
1144
1145 lttng_ctl_copy_lttng_domain(&lsm.domain, &handle->domain);
1146
1147 ret = lttng_ctl_ask_sessiond(&lsm, (void**) channels);
1148 if (ret < 0) {
1149 return ret;
1150 }
1151
1152 return ret / sizeof(struct lttng_channel);
1153 }
1154
1155 /*
1156 * Ask the session daemon for all available events of a session channel.
1157 * Sets the contents of the events array.
1158 * Returns the number of lttng_event entries in events;
1159 * on error, returns a negative value.
1160 */
1161 int lttng_list_events(struct lttng_handle *handle,
1162 const char *channel_name, struct lttng_event **events)
1163 {
1164 int ret;
1165 struct lttcomm_session_msg lsm;
1166
1167 /* Safety check. An handle and channel name are mandatory */
1168 if (handle == NULL || channel_name == NULL) {
1169 return -LTTNG_ERR_INVALID;
1170 }
1171
1172 lsm.cmd_type = LTTNG_LIST_EVENTS;
1173 lttng_ctl_copy_string(lsm.session.name, handle->session_name,
1174 sizeof(lsm.session.name));
1175 lttng_ctl_copy_string(lsm.u.list.channel_name, channel_name,
1176 sizeof(lsm.u.list.channel_name));
1177
1178 lttng_ctl_copy_lttng_domain(&lsm.domain, &handle->domain);
1179
1180 ret = lttng_ctl_ask_sessiond(&lsm, (void**) events);
1181 if (ret < 0) {
1182 return ret;
1183 }
1184
1185 return ret / sizeof(struct lttng_event);
1186 }
1187
1188 /*
1189 * Sets the tracing_group variable with name.
1190 * This function allocates memory pointed to by tracing_group.
1191 * On success, returns 0, on error, returns -1 (null name) or -ENOMEM.
1192 */
1193 int lttng_set_tracing_group(const char *name)
1194 {
1195 if (name == NULL) {
1196 return -LTTNG_ERR_INVALID;
1197 }
1198
1199 if (asprintf(&tracing_group, "%s", name) < 0) {
1200 return -LTTNG_ERR_FATAL;
1201 }
1202
1203 return 0;
1204 }
1205
1206 /*
1207 * Returns size of returned session payload data or a negative error code.
1208 */
1209 int lttng_calibrate(struct lttng_handle *handle,
1210 struct lttng_calibrate *calibrate)
1211 {
1212 struct lttcomm_session_msg lsm;
1213
1214 /* Safety check. NULL pointer are forbidden */
1215 if (handle == NULL || calibrate == NULL) {
1216 return -LTTNG_ERR_INVALID;
1217 }
1218
1219 lsm.cmd_type = LTTNG_CALIBRATE;
1220 lttng_ctl_copy_lttng_domain(&lsm.domain, &handle->domain);
1221
1222 memcpy(&lsm.u.calibrate, calibrate, sizeof(lsm.u.calibrate));
1223
1224 return lttng_ctl_ask_sessiond(&lsm, NULL);
1225 }
1226
1227 /*
1228 * Set default channel attributes.
1229 * If either or both of the arguments are null, attr content is zeroe'd.
1230 */
1231 void lttng_channel_set_default_attr(struct lttng_domain *domain,
1232 struct lttng_channel_attr *attr)
1233 {
1234 /* Safety check */
1235 if (attr == NULL || domain == NULL) {
1236 return;
1237 }
1238
1239 memset(attr, 0, sizeof(struct lttng_channel_attr));
1240
1241 /* Same for all domains. */
1242 attr->overwrite = DEFAULT_CHANNEL_OVERWRITE;
1243 attr->tracefile_size = DEFAULT_CHANNEL_TRACEFILE_SIZE;
1244 attr->tracefile_count = DEFAULT_CHANNEL_TRACEFILE_COUNT;
1245
1246 switch (domain->type) {
1247 case LTTNG_DOMAIN_KERNEL:
1248 attr->switch_timer_interval = DEFAULT_KERNEL_CHANNEL_SWITCH_TIMER;
1249 attr->read_timer_interval = DEFAULT_KERNEL_CHANNEL_READ_TIMER;
1250 attr->subbuf_size = default_get_kernel_channel_subbuf_size();
1251 attr->num_subbuf = DEFAULT_KERNEL_CHANNEL_SUBBUF_NUM;
1252 attr->output = DEFAULT_KERNEL_CHANNEL_OUTPUT;
1253 break;
1254 case LTTNG_DOMAIN_UST:
1255 switch (domain->buf_type) {
1256 case LTTNG_BUFFER_PER_UID:
1257 attr->subbuf_size = default_get_ust_uid_channel_subbuf_size();
1258 attr->num_subbuf = DEFAULT_UST_UID_CHANNEL_SUBBUF_NUM;
1259 attr->output = DEFAULT_UST_UID_CHANNEL_OUTPUT;
1260 attr->switch_timer_interval = DEFAULT_UST_UID_CHANNEL_SWITCH_TIMER;
1261 attr->read_timer_interval = DEFAULT_UST_UID_CHANNEL_READ_TIMER;
1262 break;
1263 case LTTNG_BUFFER_PER_PID:
1264 default:
1265 attr->subbuf_size = default_get_ust_pid_channel_subbuf_size();
1266 attr->num_subbuf = DEFAULT_UST_PID_CHANNEL_SUBBUF_NUM;
1267 attr->output = DEFAULT_UST_PID_CHANNEL_OUTPUT;
1268 attr->switch_timer_interval = DEFAULT_UST_PID_CHANNEL_SWITCH_TIMER;
1269 attr->read_timer_interval = DEFAULT_UST_PID_CHANNEL_READ_TIMER;
1270 break;
1271 }
1272 default:
1273 /* Default behavior: leave set to 0. */
1274 break;
1275 }
1276 }
1277
1278 /*
1279 * Check if session daemon is alive.
1280 *
1281 * Return 1 if alive or 0 if not.
1282 * On error returns a negative value.
1283 */
1284 int lttng_session_daemon_alive(void)
1285 {
1286 int ret;
1287
1288 ret = set_session_daemon_path();
1289 if (ret < 0) {
1290 /* Error */
1291 return ret;
1292 }
1293
1294 if (*sessiond_sock_path == '\0') {
1295 /*
1296 * No socket path set. Weird error which means the constructor was not
1297 * called.
1298 */
1299 assert(0);
1300 }
1301
1302 ret = try_connect_sessiond(sessiond_sock_path);
1303 if (ret < 0) {
1304 /* Not alive */
1305 return 0;
1306 }
1307
1308 /* Is alive */
1309 return 1;
1310 }
1311
1312 /*
1313 * Set URL for a consumer for a session and domain.
1314 *
1315 * Return 0 on success, else a negative value.
1316 */
1317 int lttng_set_consumer_url(struct lttng_handle *handle,
1318 const char *control_url, const char *data_url)
1319 {
1320 int ret;
1321 ssize_t size;
1322 struct lttcomm_session_msg lsm;
1323 struct lttng_uri *uris = NULL;
1324
1325 if (handle == NULL || (control_url == NULL && data_url == NULL)) {
1326 return -LTTNG_ERR_INVALID;
1327 }
1328
1329 memset(&lsm, 0, sizeof(lsm));
1330
1331 lsm.cmd_type = LTTNG_SET_CONSUMER_URI;
1332
1333 lttng_ctl_copy_string(lsm.session.name, handle->session_name,
1334 sizeof(lsm.session.name));
1335 lttng_ctl_copy_lttng_domain(&lsm.domain, &handle->domain);
1336
1337 size = uri_parse_str_urls(control_url, data_url, &uris);
1338 if (size < 0) {
1339 return -LTTNG_ERR_INVALID;
1340 }
1341
1342 lsm.u.uri.size = size;
1343
1344 ret = lttng_ctl_ask_sessiond_varlen(&lsm, uris,
1345 sizeof(struct lttng_uri) * size, NULL);
1346
1347 free(uris);
1348 return ret;
1349 }
1350
1351 /*
1352 * [OBSOLETE]
1353 */
1354 int lttng_enable_consumer(struct lttng_handle *handle)
1355 {
1356 return -ENOSYS;
1357 }
1358
1359 /*
1360 * [OBSOLETE]
1361 */
1362 int lttng_disable_consumer(struct lttng_handle *handle)
1363 {
1364 return -ENOSYS;
1365 }
1366
1367 /*
1368 * This is an extension of create session that is ONLY and SHOULD only be used
1369 * by the lttng command line program. It exists to avoid using URI parsing in
1370 * the lttng client.
1371 *
1372 * We need the date and time for the trace path subdirectory for the case where
1373 * the user does NOT define one using either -o or -U. Using the normal
1374 * lttng_create_session API call, we have no clue on the session daemon side if
1375 * the URL was generated automatically by the client or define by the user.
1376 *
1377 * So this function "wrapper" is hidden from the public API, takes the datetime
1378 * string and appends it if necessary to the URI subdirectory before sending it
1379 * to the session daemon.
1380 *
1381 * With this extra function, the lttng_create_session call behavior is not
1382 * changed and the timestamp is appended to the URI on the session daemon side
1383 * if necessary.
1384 */
1385 int _lttng_create_session_ext(const char *name, const char *url,
1386 const char *datetime)
1387 {
1388 int ret;
1389 ssize_t size;
1390 struct lttcomm_session_msg lsm;
1391 struct lttng_uri *uris = NULL;
1392
1393 if (name == NULL || datetime == NULL) {
1394 return -LTTNG_ERR_INVALID;
1395 }
1396
1397 memset(&lsm, 0, sizeof(lsm));
1398
1399 lsm.cmd_type = LTTNG_CREATE_SESSION;
1400 lttng_ctl_copy_string(lsm.session.name, name, sizeof(lsm.session.name));
1401
1402 /* There should never be a data URL */
1403 size = uri_parse_str_urls(url, NULL, &uris);
1404 if (size < 0) {
1405 ret = -LTTNG_ERR_INVALID;
1406 goto error;
1407 }
1408
1409 lsm.u.uri.size = size;
1410
1411 if (size > 0 && uris[0].dtype != LTTNG_DST_PATH && strlen(uris[0].subdir) == 0) {
1412 /* Don't append datetime if the name was automatically created. */
1413 if (strncmp(name, DEFAULT_SESSION_NAME "-",
1414 strlen(DEFAULT_SESSION_NAME) + 1)) {
1415 ret = snprintf(uris[0].subdir, sizeof(uris[0].subdir), "%s-%s",
1416 name, datetime);
1417 } else {
1418 ret = snprintf(uris[0].subdir, sizeof(uris[0].subdir), "%s", name);
1419 }
1420 if (ret < 0) {
1421 PERROR("snprintf uri subdir");
1422 ret = -LTTNG_ERR_FATAL;
1423 goto error;
1424 }
1425 }
1426
1427 ret = lttng_ctl_ask_sessiond_varlen(&lsm, uris,
1428 sizeof(struct lttng_uri) * size, NULL);
1429
1430 error:
1431 free(uris);
1432 return ret;
1433 }
1434
1435 /*
1436 * For a given session name, this call checks if the data is ready to be read
1437 * or is still being extracted by the consumer(s) hence not ready to be used by
1438 * any readers.
1439 */
1440 int lttng_data_pending(const char *session_name)
1441 {
1442 int ret;
1443 struct lttcomm_session_msg lsm;
1444
1445 if (session_name == NULL) {
1446 return -LTTNG_ERR_INVALID;
1447 }
1448
1449 lsm.cmd_type = LTTNG_DATA_PENDING;
1450
1451 lttng_ctl_copy_string(lsm.session.name, session_name,
1452 sizeof(lsm.session.name));
1453
1454 ret = lttng_ctl_ask_sessiond(&lsm, NULL);
1455
1456 /*
1457 * The lttng_ctl_ask_sessiond function negate the return code if it's not
1458 * LTTNG_OK so getting -1 means that the reply ret_code was 1 thus meaning
1459 * that the data is available. Yes it is hackish but for now this is the
1460 * only way.
1461 */
1462 if (ret == -1) {
1463 ret = 1;
1464 }
1465
1466 return ret;
1467 }
1468
1469 /*
1470 * Create a session exclusively used for snapshot.
1471 *
1472 * Returns LTTNG_OK on success or a negative error code.
1473 */
1474 int lttng_create_session_snapshot(const char *name, const char *snapshot_url)
1475 {
1476 int ret;
1477 ssize_t size;
1478 struct lttcomm_session_msg lsm;
1479 struct lttng_uri *uris = NULL;
1480
1481 if (name == NULL) {
1482 return -LTTNG_ERR_INVALID;
1483 }
1484
1485 memset(&lsm, 0, sizeof(lsm));
1486
1487 lsm.cmd_type = LTTNG_CREATE_SESSION_SNAPSHOT;
1488 lttng_ctl_copy_string(lsm.session.name, name, sizeof(lsm.session.name));
1489
1490 size = uri_parse_str_urls(snapshot_url, NULL, &uris);
1491 if (size < 0) {
1492 return -LTTNG_ERR_INVALID;
1493 }
1494
1495 lsm.u.uri.size = size;
1496
1497 ret = lttng_ctl_ask_sessiond_varlen(&lsm, uris,
1498 sizeof(struct lttng_uri) * size, NULL);
1499
1500 free(uris);
1501 return ret;
1502 }
1503
1504 /*
1505 * Create a session exclusively used for live.
1506 *
1507 * Returns LTTNG_OK on success or a negative error code.
1508 */
1509 int lttng_create_session_live(const char *name, const char *url,
1510 unsigned int timer_interval)
1511 {
1512 int ret;
1513 ssize_t size;
1514 struct lttcomm_session_msg lsm;
1515 struct lttng_uri *uris = NULL;
1516
1517 if (name == NULL) {
1518 return -LTTNG_ERR_INVALID;
1519 }
1520
1521 memset(&lsm, 0, sizeof(lsm));
1522
1523 lsm.cmd_type = LTTNG_CREATE_SESSION_LIVE;
1524 lttng_ctl_copy_string(lsm.session.name, name, sizeof(lsm.session.name));
1525
1526 size = uri_parse_str_urls(url, NULL, &uris);
1527 if (size < 0) {
1528 ret = -LTTNG_ERR_INVALID;
1529 goto end;
1530 }
1531
1532 /* file:// is not accepted for live session. */
1533 if (uris[0].dtype == LTTNG_DST_PATH) {
1534 ret = -LTTNG_ERR_INVALID;
1535 goto end;
1536 }
1537
1538 lsm.u.session_live.nb_uri = size;
1539 lsm.u.session_live.timer_interval = timer_interval;
1540
1541 ret = lttng_ctl_ask_sessiond_varlen(&lsm, uris,
1542 sizeof(struct lttng_uri) * size, NULL);
1543
1544 end:
1545 free(uris);
1546 return ret;
1547 }
1548
1549 /*
1550 * lib constructor
1551 */
1552 static void __attribute__((constructor)) init()
1553 {
1554 /* Set default session group */
1555 lttng_set_tracing_group(DEFAULT_TRACING_GROUP);
1556 }
1557
1558 /*
1559 * lib destructor
1560 */
1561 static void __attribute__((destructor)) lttng_ctl_exit()
1562 {
1563 free(tracing_group);
1564 }
This page took 0.093555 seconds and 3 git commands to generate.