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