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