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