4 * Linux Trace Toolkit Control Library
6 * Copyright (C) 2011 David Goulet <david.goulet@polymtl.ca>
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.
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.
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
31 #include <common/common.h>
32 #include <common/defaults.h>
33 #include <common/sessiond-comm/sessiond-comm.h>
34 #include <common/uri.h>
35 #include <common/utils.h>
36 #include <lttng/lttng.h>
37 #include <lttng/health-internal.h>
39 #include "filter/filter-ast.h"
40 #include "filter/filter-parser.h"
41 #include "filter/filter-bytecode.h"
42 #include "filter/memstream.h"
43 #include "lttng-ctl-helper.h"
46 static const int print_xml
= 1;
47 #define dbg_printf(fmt, args...) \
48 printf("[debug liblttng-ctl] " fmt, ## args)
50 static const int print_xml
= 0;
51 #define dbg_printf(fmt, args...) \
53 /* do nothing but check printf format */ \
55 printf("[debug liblttnctl] " fmt, ## args); \
60 /* Socket to session daemon for communication */
61 static int sessiond_socket
;
62 static char sessiond_sock_path
[PATH_MAX
];
65 static char *tracing_group
;
71 * Those two variables are used by error.h to silent or control the verbosity of
72 * error message. They are global to the library so application linking with it
73 * are able to compile correctly and also control verbosity of the library.
76 int lttng_opt_verbose
;
79 * Copy string from src to dst and enforce null terminated byte.
82 void lttng_ctl_copy_string(char *dst
, const char *src
, size_t len
)
85 strncpy(dst
, src
, len
);
86 /* Enforce the NULL terminated byte */
94 * Copy domain to lttcomm_session_msg domain.
96 * If domain is unknown, default domain will be the kernel.
99 void lttng_ctl_copy_lttng_domain(struct lttng_domain
*dst
,
100 struct lttng_domain
*src
)
104 case LTTNG_DOMAIN_KERNEL
:
105 case LTTNG_DOMAIN_UST
:
106 case LTTNG_DOMAIN_JUL
:
107 memcpy(dst
, src
, sizeof(struct lttng_domain
));
110 memset(dst
, 0, sizeof(struct lttng_domain
));
117 * Send lttcomm_session_msg to the session daemon.
119 * On success, returns the number of bytes sent (>=0)
120 * On error, returns -1
122 static int send_session_msg(struct lttcomm_session_msg
*lsm
)
127 ret
= -LTTNG_ERR_NO_SESSIOND
;
131 DBG("LSM cmd type : %d", lsm
->cmd_type
);
133 ret
= lttcomm_send_creds_unix_sock(sessiond_socket
, lsm
,
134 sizeof(struct lttcomm_session_msg
));
136 ret
= -LTTNG_ERR_FATAL
;
144 * Send var len data to the session daemon.
146 * On success, returns the number of bytes sent (>=0)
147 * On error, returns -1
149 static int send_session_varlen(void *data
, size_t len
)
154 ret
= -LTTNG_ERR_NO_SESSIOND
;
163 ret
= lttcomm_send_unix_sock(sessiond_socket
, data
, len
);
165 ret
= -LTTNG_ERR_FATAL
;
173 * Receive data from the sessiond socket.
175 * On success, returns the number of bytes received (>=0)
176 * On error, returns -1 (recvmsg() error) or -ENOTCONN
178 static int recv_data_sessiond(void *buf
, size_t len
)
183 ret
= -LTTNG_ERR_NO_SESSIOND
;
187 ret
= lttcomm_recv_unix_sock(sessiond_socket
, buf
, len
);
189 ret
= -LTTNG_ERR_FATAL
;
197 * Check if we are in the specified group.
199 * If yes return 1, else return -1.
202 int lttng_check_tracing_group(void)
204 struct group
*grp_tracing
; /* no free(). See getgrnam(3) */
206 int grp_list_size
, grp_id
, i
;
208 const char *grp_name
= tracing_group
;
210 /* Get GID of group 'tracing' */
211 grp_tracing
= getgrnam(grp_name
);
213 /* If grp_tracing is NULL, the group does not exist. */
217 /* Get number of supplementary group IDs */
218 grp_list_size
= getgroups(0, NULL
);
219 if (grp_list_size
< 0) {
224 /* Alloc group list of the right size */
225 grp_list
= malloc(grp_list_size
* sizeof(gid_t
));
230 grp_id
= getgroups(grp_list_size
, grp_list
);
236 for (i
= 0; i
< grp_list_size
; i
++) {
237 if (grp_list
[i
] == grp_tracing
->gr_gid
) {
251 * Try connect to session daemon with sock_path.
253 * Return 0 on success, else -1
255 static int try_connect_sessiond(const char *sock_path
)
259 /* If socket exist, we check if the daemon listens for connect. */
260 ret
= access(sock_path
, F_OK
);
266 ret
= lttcomm_connect_unix_sock(sock_path
);
272 ret
= lttcomm_close_unix_sock(ret
);
274 perror("lttcomm_close_unix_sock");
284 * Set sessiond socket path by putting it in the global sessiond_sock_path
287 * Returns 0 on success, negative value on failure (the sessiond socket path
288 * is somehow too long or ENOMEM).
290 static int set_session_daemon_path(void)
292 int in_tgroup
= 0; /* In tracing group */
298 /* Are we in the tracing group ? */
299 in_tgroup
= lttng_check_tracing_group();
302 if ((uid
== 0) || in_tgroup
) {
303 lttng_ctl_copy_string(sessiond_sock_path
,
304 DEFAULT_GLOBAL_CLIENT_UNIX_SOCK
, sizeof(sessiond_sock_path
));
312 ret
= try_connect_sessiond(sessiond_sock_path
);
316 /* Global session daemon not available... */
318 /* ...or not in tracing group (and not root), default */
321 * With GNU C < 2.1, snprintf returns -1 if the target buffer is too small;
322 * With GNU C >= 2.1, snprintf returns the required size (excluding closing null)
324 ret
= snprintf(sessiond_sock_path
, sizeof(sessiond_sock_path
),
325 DEFAULT_HOME_CLIENT_UNIX_SOCK
, utils_get_home_dir());
326 if ((ret
< 0) || (ret
>= sizeof(sessiond_sock_path
))) {
338 * Connect to the LTTng session daemon.
340 * On success, return 0. On error, return -1.
342 static int connect_sessiond(void)
346 /* Don't try to connect if already connected. */
351 ret
= set_session_daemon_path();
356 /* Connect to the sesssion daemon */
357 ret
= lttcomm_connect_unix_sock(sessiond_sock_path
);
362 sessiond_socket
= ret
;
372 * Clean disconnect from the session daemon.
373 * On success, return 0. On error, return -1.
375 static int disconnect_sessiond(void)
380 ret
= lttcomm_close_unix_sock(sessiond_socket
);
389 * Ask the session daemon a specific command and put the data into buf.
390 * Takes extra var. len. data as input to send to the session daemon.
392 * Return size of data (only payload, not header) or a negative error code.
395 int lttng_ctl_ask_sessiond_varlen(struct lttcomm_session_msg
*lsm
,
396 void *vardata
, size_t varlen
, void **buf
)
401 struct lttcomm_lttng_msg llm
;
403 ret
= connect_sessiond();
405 ret
= -LTTNG_ERR_NO_SESSIOND
;
409 /* Send command to session daemon */
410 ret
= send_session_msg(lsm
);
412 /* Ret value is a valid lttng error code. */
415 /* Send var len data */
416 ret
= send_session_varlen(vardata
, varlen
);
418 /* Ret value is a valid lttng error code. */
422 /* Get header from data transmission */
423 ret
= recv_data_sessiond(&llm
, sizeof(llm
));
425 /* Ret value is a valid lttng error code. */
429 /* Check error code if OK */
430 if (llm
.ret_code
!= LTTNG_OK
) {
435 size
= llm
.data_size
;
437 /* If client free with size 0 */
445 data
= (void*) malloc(size
);
447 /* Get payload data */
448 ret
= recv_data_sessiond(data
, size
);
455 * Extra protection not to dereference a NULL pointer. If buf is NULL at
456 * this point, an error is returned and data is freed.
459 ret
= -LTTNG_ERR_INVALID
;
468 disconnect_sessiond();
473 * Create lttng handle and return pointer.
474 * The returned pointer will be NULL in case of malloc() error.
476 struct lttng_handle
*lttng_create_handle(const char *session_name
,
477 struct lttng_domain
*domain
)
479 struct lttng_handle
*handle
= NULL
;
481 if (domain
== NULL
) {
485 handle
= malloc(sizeof(struct lttng_handle
));
486 if (handle
== NULL
) {
487 PERROR("malloc handle");
491 /* Copy session name */
492 lttng_ctl_copy_string(handle
->session_name
, session_name
,
493 sizeof(handle
->session_name
));
495 /* Copy lttng domain */
496 lttng_ctl_copy_lttng_domain(&handle
->domain
, domain
);
503 * Destroy handle by free(3) the pointer.
505 void lttng_destroy_handle(struct lttng_handle
*handle
)
511 * Register an outside consumer.
512 * Returns size of returned session payload data or a negative error code.
514 int lttng_register_consumer(struct lttng_handle
*handle
,
515 const char *socket_path
)
517 struct lttcomm_session_msg lsm
;
519 if (handle
== NULL
|| socket_path
== NULL
) {
520 return -LTTNG_ERR_INVALID
;
523 memset(&lsm
, 0, sizeof(lsm
));
524 lsm
.cmd_type
= LTTNG_REGISTER_CONSUMER
;
525 lttng_ctl_copy_string(lsm
.session
.name
, handle
->session_name
,
526 sizeof(lsm
.session
.name
));
527 lttng_ctl_copy_lttng_domain(&lsm
.domain
, &handle
->domain
);
529 lttng_ctl_copy_string(lsm
.u
.reg
.path
, socket_path
, sizeof(lsm
.u
.reg
.path
));
531 return lttng_ctl_ask_sessiond(&lsm
, NULL
);
535 * Start tracing for all traces of the session.
536 * Returns size of returned session payload data or a negative error code.
538 int lttng_start_tracing(const char *session_name
)
540 struct lttcomm_session_msg lsm
;
542 if (session_name
== NULL
) {
543 return -LTTNG_ERR_INVALID
;
546 memset(&lsm
, 0, sizeof(lsm
));
547 lsm
.cmd_type
= LTTNG_START_TRACE
;
549 lttng_ctl_copy_string(lsm
.session
.name
, session_name
,
550 sizeof(lsm
.session
.name
));
552 return lttng_ctl_ask_sessiond(&lsm
, NULL
);
556 * Stop tracing for all traces of the session.
558 static int _lttng_stop_tracing(const char *session_name
, int wait
)
561 struct lttcomm_session_msg lsm
;
563 if (session_name
== NULL
) {
564 return -LTTNG_ERR_INVALID
;
567 memset(&lsm
, 0, sizeof(lsm
));
568 lsm
.cmd_type
= LTTNG_STOP_TRACE
;
570 lttng_ctl_copy_string(lsm
.session
.name
, session_name
,
571 sizeof(lsm
.session
.name
));
573 ret
= lttng_ctl_ask_sessiond(&lsm
, NULL
);
574 if (ret
< 0 && ret
!= -LTTNG_ERR_TRACE_ALREADY_STOPPED
) {
582 _MSG("Waiting for data availability");
585 /* Check for data availability */
587 data_ret
= lttng_data_pending(session_name
);
589 /* Return the data available call error. */
595 * Data sleep time before retrying (in usec). Don't sleep if the call
596 * returned value indicates availability.
599 usleep(DEFAULT_DATA_AVAILABILITY_WAIT_TIME
);
603 } while (data_ret
!= 0);
613 * Stop tracing and wait for data availability.
615 int lttng_stop_tracing(const char *session_name
)
617 return _lttng_stop_tracing(session_name
, 1);
621 * Stop tracing but _don't_ wait for data availability.
623 int lttng_stop_tracing_no_wait(const char *session_name
)
625 return _lttng_stop_tracing(session_name
, 0);
629 * Add context to a channel.
631 * If the given channel is NULL, add the contexts to all channels.
632 * The event_name param is ignored.
634 * Returns the size of the returned payload data or a negative error code.
636 int lttng_add_context(struct lttng_handle
*handle
,
637 struct lttng_event_context
*ctx
, const char *event_name
,
638 const char *channel_name
)
640 struct lttcomm_session_msg lsm
;
642 /* Safety check. Both are mandatory */
643 if (handle
== NULL
|| ctx
== NULL
) {
644 return -LTTNG_ERR_INVALID
;
647 memset(&lsm
, 0, sizeof(lsm
));
649 lsm
.cmd_type
= LTTNG_ADD_CONTEXT
;
651 /* If no channel name, send empty string. */
652 if (channel_name
== NULL
) {
653 lttng_ctl_copy_string(lsm
.u
.context
.channel_name
, "",
654 sizeof(lsm
.u
.context
.channel_name
));
656 lttng_ctl_copy_string(lsm
.u
.context
.channel_name
, channel_name
,
657 sizeof(lsm
.u
.context
.channel_name
));
660 lttng_ctl_copy_lttng_domain(&lsm
.domain
, &handle
->domain
);
662 memcpy(&lsm
.u
.context
.ctx
, ctx
, sizeof(struct lttng_event_context
));
664 lttng_ctl_copy_string(lsm
.session
.name
, handle
->session_name
,
665 sizeof(lsm
.session
.name
));
667 return lttng_ctl_ask_sessiond(&lsm
, NULL
);
671 * Enable event(s) for a channel.
672 * If no event name is specified, all events are enabled.
673 * If no channel name is specified, the default 'channel0' is used.
674 * Returns size of returned session payload data or a negative error code.
676 int lttng_enable_event(struct lttng_handle
*handle
,
677 struct lttng_event
*ev
, const char *channel_name
)
679 return lttng_enable_event_with_exclusions(handle
, ev
, channel_name
,
684 * Create or enable an event with a filter expression.
686 * Return negative error value on error.
687 * Return size of returned session payload data if OK.
689 int lttng_enable_event_with_filter(struct lttng_handle
*handle
,
690 struct lttng_event
*event
, const char *channel_name
,
691 const char *filter_expression
)
693 return lttng_enable_event_with_exclusions(handle
, event
, channel_name
,
694 filter_expression
, 0, NULL
);
698 * Enable event(s) for a channel, possibly with exclusions and a filter.
699 * If no event name is specified, all events are enabled.
700 * If no channel name is specified, the default name is used.
701 * If filter expression is not NULL, the filter is set for the event.
702 * If exclusion count is not zero, the exclusions are set for the event.
703 * Returns size of returned session payload data or a negative error code.
705 int lttng_enable_event_with_exclusions(struct lttng_handle
*handle
,
706 struct lttng_event
*ev
, const char *channel_name
,
707 const char *filter_expression
,
708 int exclusion_count
, char **exclusion_list
)
710 struct lttcomm_session_msg lsm
;
713 struct filter_parser_ctx
*ctx
= NULL
;
716 if (handle
== NULL
|| ev
== NULL
) {
717 return -LTTNG_ERR_INVALID
;
720 /* Empty filter string will always be rejected by the parser
721 * anyway, so treat this corner-case early to eliminate
722 * lttng_fmemopen error for 0-byte allocation.
724 if (filter_expression
&& filter_expression
[0] == '\0') {
725 return -LTTNG_ERR_INVALID
;
728 memset(&lsm
, 0, sizeof(lsm
));
730 /* If no channel name, send empty string. */
731 if (channel_name
== NULL
) {
732 lttng_ctl_copy_string(lsm
.u
.enable
.channel_name
, "",
733 sizeof(lsm
.u
.enable
.channel_name
));
735 lttng_ctl_copy_string(lsm
.u
.enable
.channel_name
, channel_name
,
736 sizeof(lsm
.u
.enable
.channel_name
));
739 if (ev
->name
[0] != '\0') {
740 lsm
.cmd_type
= LTTNG_ENABLE_EVENT
;
742 lsm
.cmd_type
= LTTNG_ENABLE_ALL_EVENT
;
745 lttng_ctl_copy_lttng_domain(&lsm
.domain
, &handle
->domain
);
746 memcpy(&lsm
.u
.enable
.event
, ev
, sizeof(lsm
.u
.enable
.event
));
748 lttng_ctl_copy_string(lsm
.session
.name
, handle
->session_name
,
749 sizeof(lsm
.session
.name
));
750 lsm
.u
.enable
.exclusion_count
= exclusion_count
;
751 lsm
.u
.enable
.bytecode_len
= 0;
753 if (exclusion_count
== 0 && filter_expression
== NULL
) {
754 ret
= lttng_ctl_ask_sessiond(&lsm
, NULL
);
759 * We have either a filter or some exclusions, so we need to set up
760 * a variable-length memory block from where to send the data
763 /* Parse filter expression */
764 if (filter_expression
!= NULL
) {
767 * casting const to non-const, as the underlying function will
768 * use it in read-only mode.
770 fmem
= lttng_fmemopen((void *) filter_expression
,
771 strlen(filter_expression
), "r");
773 fprintf(stderr
, "Error opening memory as stream\n");
774 return -LTTNG_ERR_FILTER_NOMEM
;
776 ctx
= filter_parser_ctx_alloc(fmem
);
778 fprintf(stderr
, "Error allocating parser\n");
779 ret
= -LTTNG_ERR_FILTER_NOMEM
;
780 goto filter_alloc_error
;
782 ret
= filter_parser_ctx_append_ast(ctx
);
784 fprintf(stderr
, "Parse error\n");
785 ret
= -LTTNG_ERR_FILTER_INVAL
;
788 ret
= filter_visitor_set_parent(ctx
);
790 fprintf(stderr
, "Set parent error\n");
791 ret
= -LTTNG_ERR_FILTER_INVAL
;
795 ret
= filter_visitor_print_xml(ctx
, stdout
, 0);
798 fprintf(stderr
, "XML print error\n");
799 ret
= -LTTNG_ERR_FILTER_INVAL
;
804 dbg_printf("Generating IR... ");
806 ret
= filter_visitor_ir_generate(ctx
);
808 fprintf(stderr
, "Generate IR error\n");
809 ret
= -LTTNG_ERR_FILTER_INVAL
;
812 dbg_printf("done\n");
814 dbg_printf("Validating IR... ");
816 ret
= filter_visitor_ir_check_binary_op_nesting(ctx
);
818 ret
= -LTTNG_ERR_FILTER_INVAL
;
821 dbg_printf("done\n");
823 dbg_printf("Generating bytecode... ");
825 ret
= filter_visitor_bytecode_generate(ctx
);
827 fprintf(stderr
, "Generate bytecode error\n");
828 ret
= -LTTNG_ERR_FILTER_INVAL
;
831 dbg_printf("done\n");
832 dbg_printf("Size of bytecode generated: %u bytes.\n",
833 bytecode_get_len(&ctx
->bytecode
->b
));
835 lsm
.u
.enable
.bytecode_len
= sizeof(ctx
->bytecode
->b
)
836 + bytecode_get_len(&ctx
->bytecode
->b
);
837 lsm
.u
.enable
.expression_len
= strlen(filter_expression
) + 1;
840 varlen_data
= zmalloc(lsm
.u
.enable
.bytecode_len
841 + lsm
.u
.enable
.expression_len
842 + LTTNG_SYMBOL_NAME_LEN
* exclusion_count
);
844 ret
= -LTTNG_ERR_EXCLUSION_NOMEM
;
845 goto varlen_alloc_error
;
847 /* Put exclusion names first in the data */
848 while (exclusion_count
--) {
849 strncpy(varlen_data
+ LTTNG_SYMBOL_NAME_LEN
* exclusion_count
,
850 *(exclusion_list
+ exclusion_count
),
851 LTTNG_SYMBOL_NAME_LEN
);
853 /* Add filter expression next */
854 if (lsm
.u
.enable
.expression_len
!= 0) {
856 + LTTNG_SYMBOL_NAME_LEN
* lsm
.u
.enable
.exclusion_count
,
858 lsm
.u
.enable
.expression_len
);
860 /* Add filter bytecode next */
861 if (lsm
.u
.enable
.bytecode_len
!= 0) {
863 + LTTNG_SYMBOL_NAME_LEN
* lsm
.u
.enable
.exclusion_count
864 + lsm
.u
.enable
.expression_len
,
866 lsm
.u
.enable
.bytecode_len
);
869 ret
= lttng_ctl_ask_sessiond_varlen(&lsm
, varlen_data
,
870 (LTTNG_SYMBOL_NAME_LEN
* lsm
.u
.enable
.exclusion_count
) +
871 lsm
.u
.enable
.bytecode_len
+ lsm
.u
.enable
.expression_len
,
876 if (filter_expression
) {
877 filter_bytecode_free(ctx
);
879 filter_parser_ctx_free(ctx
);
880 if (fclose(fmem
) != 0) {
887 filter_bytecode_free(ctx
);
889 filter_parser_ctx_free(ctx
);
891 if (fclose(fmem
) != 0) {
898 * Disable event(s) of a channel and domain.
899 * If no event name is specified, all events are disabled.
900 * If no channel name is specified, the default 'channel0' is used.
901 * Returns size of returned session payload data or a negative error code.
903 int lttng_disable_event(struct lttng_handle
*handle
, const char *name
,
904 const char *channel_name
)
906 struct lttcomm_session_msg lsm
;
908 if (handle
== NULL
) {
909 return -LTTNG_ERR_INVALID
;
912 memset(&lsm
, 0, sizeof(lsm
));
914 /* If no channel name, send empty string. */
915 if (channel_name
== NULL
) {
916 lttng_ctl_copy_string(lsm
.u
.disable
.channel_name
, "",
917 sizeof(lsm
.u
.disable
.channel_name
));
919 lttng_ctl_copy_string(lsm
.u
.disable
.channel_name
, channel_name
,
920 sizeof(lsm
.u
.disable
.channel_name
));
923 lttng_ctl_copy_lttng_domain(&lsm
.domain
, &handle
->domain
);
926 lttng_ctl_copy_string(lsm
.u
.disable
.name
, name
,
927 sizeof(lsm
.u
.disable
.name
));
928 lsm
.cmd_type
= LTTNG_DISABLE_EVENT
;
930 lsm
.cmd_type
= LTTNG_DISABLE_ALL_EVENT
;
933 lttng_ctl_copy_string(lsm
.session
.name
, handle
->session_name
,
934 sizeof(lsm
.session
.name
));
936 return lttng_ctl_ask_sessiond(&lsm
, NULL
);
940 * Enable channel per domain
941 * Returns size of returned session payload data or a negative error code.
943 int lttng_enable_channel(struct lttng_handle
*handle
,
944 struct lttng_channel
*chan
)
946 struct lttcomm_session_msg lsm
;
949 * NULL arguments are forbidden. No default values.
951 if (handle
== NULL
|| chan
== NULL
) {
952 return -LTTNG_ERR_INVALID
;
955 memset(&lsm
, 0, sizeof(lsm
));
957 memcpy(&lsm
.u
.channel
.chan
, chan
, sizeof(lsm
.u
.channel
.chan
));
959 lsm
.cmd_type
= LTTNG_ENABLE_CHANNEL
;
961 lttng_ctl_copy_lttng_domain(&lsm
.domain
, &handle
->domain
);
963 lttng_ctl_copy_string(lsm
.session
.name
, handle
->session_name
,
964 sizeof(lsm
.session
.name
));
966 return lttng_ctl_ask_sessiond(&lsm
, NULL
);
970 * All tracing will be stopped for registered events of the channel.
971 * Returns size of returned session payload data or a negative error code.
973 int lttng_disable_channel(struct lttng_handle
*handle
, const char *name
)
975 struct lttcomm_session_msg lsm
;
977 /* Safety check. Both are mandatory */
978 if (handle
== NULL
|| name
== NULL
) {
979 return -LTTNG_ERR_INVALID
;
982 memset(&lsm
, 0, sizeof(lsm
));
984 lsm
.cmd_type
= LTTNG_DISABLE_CHANNEL
;
986 lttng_ctl_copy_string(lsm
.u
.disable
.channel_name
, name
,
987 sizeof(lsm
.u
.disable
.channel_name
));
989 lttng_ctl_copy_lttng_domain(&lsm
.domain
, &handle
->domain
);
991 lttng_ctl_copy_string(lsm
.session
.name
, handle
->session_name
,
992 sizeof(lsm
.session
.name
));
994 return lttng_ctl_ask_sessiond(&lsm
, NULL
);
998 * Lists all available tracepoints of domain.
999 * Sets the contents of the events array.
1000 * Returns the number of lttng_event entries in events;
1001 * on error, returns a negative value.
1003 int lttng_list_tracepoints(struct lttng_handle
*handle
,
1004 struct lttng_event
**events
)
1007 struct lttcomm_session_msg lsm
;
1009 if (handle
== NULL
) {
1010 return -LTTNG_ERR_INVALID
;
1013 memset(&lsm
, 0, sizeof(lsm
));
1014 lsm
.cmd_type
= LTTNG_LIST_TRACEPOINTS
;
1015 lttng_ctl_copy_lttng_domain(&lsm
.domain
, &handle
->domain
);
1017 ret
= lttng_ctl_ask_sessiond(&lsm
, (void **) events
);
1022 return ret
/ sizeof(struct lttng_event
);
1026 * Lists all available tracepoint fields of domain.
1027 * Sets the contents of the event field array.
1028 * Returns the number of lttng_event_field entries in events;
1029 * on error, returns a negative value.
1031 int lttng_list_tracepoint_fields(struct lttng_handle
*handle
,
1032 struct lttng_event_field
**fields
)
1035 struct lttcomm_session_msg lsm
;
1037 if (handle
== NULL
) {
1038 return -LTTNG_ERR_INVALID
;
1041 memset(&lsm
, 0, sizeof(lsm
));
1042 lsm
.cmd_type
= LTTNG_LIST_TRACEPOINT_FIELDS
;
1043 lttng_ctl_copy_lttng_domain(&lsm
.domain
, &handle
->domain
);
1045 ret
= lttng_ctl_ask_sessiond(&lsm
, (void **) fields
);
1050 return ret
/ sizeof(struct lttng_event_field
);
1054 * Returns a human readable string describing
1055 * the error code (a negative value).
1057 const char *lttng_strerror(int code
)
1059 return error_get_str(code
);
1063 * Create a brand new session using name and url for destination.
1065 * Returns LTTNG_OK on success or a negative error code.
1067 int lttng_create_session(const char *name
, const char *url
)
1071 struct lttcomm_session_msg lsm
;
1072 struct lttng_uri
*uris
= NULL
;
1075 return -LTTNG_ERR_INVALID
;
1078 memset(&lsm
, 0, sizeof(lsm
));
1080 lsm
.cmd_type
= LTTNG_CREATE_SESSION
;
1081 lttng_ctl_copy_string(lsm
.session
.name
, name
, sizeof(lsm
.session
.name
));
1083 /* There should never be a data URL */
1084 size
= uri_parse_str_urls(url
, NULL
, &uris
);
1086 return -LTTNG_ERR_INVALID
;
1089 lsm
.u
.uri
.size
= size
;
1091 ret
= lttng_ctl_ask_sessiond_varlen(&lsm
, uris
,
1092 sizeof(struct lttng_uri
) * size
, NULL
);
1099 * Destroy session using name.
1100 * Returns size of returned session payload data or a negative error code.
1102 int lttng_destroy_session(const char *session_name
)
1104 struct lttcomm_session_msg lsm
;
1106 if (session_name
== NULL
) {
1107 return -LTTNG_ERR_INVALID
;
1110 memset(&lsm
, 0, sizeof(lsm
));
1111 lsm
.cmd_type
= LTTNG_DESTROY_SESSION
;
1113 lttng_ctl_copy_string(lsm
.session
.name
, session_name
,
1114 sizeof(lsm
.session
.name
));
1116 return lttng_ctl_ask_sessiond(&lsm
, NULL
);
1120 * Ask the session daemon for all available sessions.
1121 * Sets the contents of the sessions array.
1122 * Returns the number of lttng_session entries in sessions;
1123 * on error, returns a negative value.
1125 int lttng_list_sessions(struct lttng_session
**sessions
)
1128 struct lttcomm_session_msg lsm
;
1130 memset(&lsm
, 0, sizeof(lsm
));
1131 lsm
.cmd_type
= LTTNG_LIST_SESSIONS
;
1132 ret
= lttng_ctl_ask_sessiond(&lsm
, (void**) sessions
);
1137 return ret
/ sizeof(struct lttng_session
);
1141 * Ask the session daemon for all available domains of a session.
1142 * Sets the contents of the domains array.
1143 * Returns the number of lttng_domain entries in domains;
1144 * on error, returns a negative value.
1146 int lttng_list_domains(const char *session_name
,
1147 struct lttng_domain
**domains
)
1150 struct lttcomm_session_msg lsm
;
1152 if (session_name
== NULL
) {
1153 return -LTTNG_ERR_INVALID
;
1156 memset(&lsm
, 0, sizeof(lsm
));
1157 lsm
.cmd_type
= LTTNG_LIST_DOMAINS
;
1159 lttng_ctl_copy_string(lsm
.session
.name
, session_name
,
1160 sizeof(lsm
.session
.name
));
1162 ret
= lttng_ctl_ask_sessiond(&lsm
, (void**) domains
);
1167 return ret
/ sizeof(struct lttng_domain
);
1171 * Ask the session daemon for all available channels of a session.
1172 * Sets the contents of the channels array.
1173 * Returns the number of lttng_channel entries in channels;
1174 * on error, returns a negative value.
1176 int lttng_list_channels(struct lttng_handle
*handle
,
1177 struct lttng_channel
**channels
)
1180 struct lttcomm_session_msg lsm
;
1182 if (handle
== NULL
) {
1183 return -LTTNG_ERR_INVALID
;
1186 memset(&lsm
, 0, sizeof(lsm
));
1187 lsm
.cmd_type
= LTTNG_LIST_CHANNELS
;
1188 lttng_ctl_copy_string(lsm
.session
.name
, handle
->session_name
,
1189 sizeof(lsm
.session
.name
));
1191 lttng_ctl_copy_lttng_domain(&lsm
.domain
, &handle
->domain
);
1193 ret
= lttng_ctl_ask_sessiond(&lsm
, (void**) channels
);
1198 return ret
/ sizeof(struct lttng_channel
);
1202 * Ask the session daemon for all available events of a session channel.
1203 * Sets the contents of the events array.
1204 * Returns the number of lttng_event entries in events;
1205 * on error, returns a negative value.
1207 int lttng_list_events(struct lttng_handle
*handle
,
1208 const char *channel_name
, struct lttng_event
**events
)
1211 struct lttcomm_session_msg lsm
;
1213 /* Safety check. An handle and channel name are mandatory */
1214 if (handle
== NULL
|| channel_name
== NULL
) {
1215 return -LTTNG_ERR_INVALID
;
1218 memset(&lsm
, 0, sizeof(lsm
));
1219 lsm
.cmd_type
= LTTNG_LIST_EVENTS
;
1220 lttng_ctl_copy_string(lsm
.session
.name
, handle
->session_name
,
1221 sizeof(lsm
.session
.name
));
1222 lttng_ctl_copy_string(lsm
.u
.list
.channel_name
, channel_name
,
1223 sizeof(lsm
.u
.list
.channel_name
));
1225 lttng_ctl_copy_lttng_domain(&lsm
.domain
, &handle
->domain
);
1227 ret
= lttng_ctl_ask_sessiond(&lsm
, (void**) events
);
1232 return ret
/ sizeof(struct lttng_event
);
1236 * Sets the tracing_group variable with name.
1237 * This function allocates memory pointed to by tracing_group.
1238 * On success, returns 0, on error, returns -1 (null name) or -ENOMEM.
1240 int lttng_set_tracing_group(const char *name
)
1243 return -LTTNG_ERR_INVALID
;
1246 if (asprintf(&tracing_group
, "%s", name
) < 0) {
1247 return -LTTNG_ERR_FATAL
;
1254 * Returns size of returned session payload data or a negative error code.
1256 int lttng_calibrate(struct lttng_handle
*handle
,
1257 struct lttng_calibrate
*calibrate
)
1259 struct lttcomm_session_msg lsm
;
1261 /* Safety check. NULL pointer are forbidden */
1262 if (handle
== NULL
|| calibrate
== NULL
) {
1263 return -LTTNG_ERR_INVALID
;
1266 memset(&lsm
, 0, sizeof(lsm
));
1267 lsm
.cmd_type
= LTTNG_CALIBRATE
;
1268 lttng_ctl_copy_lttng_domain(&lsm
.domain
, &handle
->domain
);
1270 memcpy(&lsm
.u
.calibrate
, calibrate
, sizeof(lsm
.u
.calibrate
));
1272 return lttng_ctl_ask_sessiond(&lsm
, NULL
);
1276 * Set default channel attributes.
1277 * If either or both of the arguments are null, attr content is zeroe'd.
1279 void lttng_channel_set_default_attr(struct lttng_domain
*domain
,
1280 struct lttng_channel_attr
*attr
)
1283 if (attr
== NULL
|| domain
== NULL
) {
1287 memset(attr
, 0, sizeof(struct lttng_channel_attr
));
1289 /* Same for all domains. */
1290 attr
->overwrite
= DEFAULT_CHANNEL_OVERWRITE
;
1291 attr
->tracefile_size
= DEFAULT_CHANNEL_TRACEFILE_SIZE
;
1292 attr
->tracefile_count
= DEFAULT_CHANNEL_TRACEFILE_COUNT
;
1294 switch (domain
->type
) {
1295 case LTTNG_DOMAIN_KERNEL
:
1296 attr
->switch_timer_interval
= DEFAULT_KERNEL_CHANNEL_SWITCH_TIMER
;
1297 attr
->read_timer_interval
= DEFAULT_KERNEL_CHANNEL_READ_TIMER
;
1298 attr
->subbuf_size
= default_get_kernel_channel_subbuf_size();
1299 attr
->num_subbuf
= DEFAULT_KERNEL_CHANNEL_SUBBUF_NUM
;
1300 attr
->output
= DEFAULT_KERNEL_CHANNEL_OUTPUT
;
1302 case LTTNG_DOMAIN_UST
:
1303 switch (domain
->buf_type
) {
1304 case LTTNG_BUFFER_PER_UID
:
1305 attr
->subbuf_size
= default_get_ust_uid_channel_subbuf_size();
1306 attr
->num_subbuf
= DEFAULT_UST_UID_CHANNEL_SUBBUF_NUM
;
1307 attr
->output
= DEFAULT_UST_UID_CHANNEL_OUTPUT
;
1308 attr
->switch_timer_interval
= DEFAULT_UST_UID_CHANNEL_SWITCH_TIMER
;
1309 attr
->read_timer_interval
= DEFAULT_UST_UID_CHANNEL_READ_TIMER
;
1311 case LTTNG_BUFFER_PER_PID
:
1313 attr
->subbuf_size
= default_get_ust_pid_channel_subbuf_size();
1314 attr
->num_subbuf
= DEFAULT_UST_PID_CHANNEL_SUBBUF_NUM
;
1315 attr
->output
= DEFAULT_UST_PID_CHANNEL_OUTPUT
;
1316 attr
->switch_timer_interval
= DEFAULT_UST_PID_CHANNEL_SWITCH_TIMER
;
1317 attr
->read_timer_interval
= DEFAULT_UST_PID_CHANNEL_READ_TIMER
;
1321 /* Default behavior: leave set to 0. */
1327 * Check if session daemon is alive.
1329 * Return 1 if alive or 0 if not.
1330 * On error returns a negative value.
1332 int lttng_session_daemon_alive(void)
1336 ret
= set_session_daemon_path();
1342 if (*sessiond_sock_path
== '\0') {
1344 * No socket path set. Weird error which means the constructor was not
1350 ret
= try_connect_sessiond(sessiond_sock_path
);
1361 * Set URL for a consumer for a session and domain.
1363 * Return 0 on success, else a negative value.
1365 int lttng_set_consumer_url(struct lttng_handle
*handle
,
1366 const char *control_url
, const char *data_url
)
1370 struct lttcomm_session_msg lsm
;
1371 struct lttng_uri
*uris
= NULL
;
1373 if (handle
== NULL
|| (control_url
== NULL
&& data_url
== NULL
)) {
1374 return -LTTNG_ERR_INVALID
;
1377 memset(&lsm
, 0, sizeof(lsm
));
1379 lsm
.cmd_type
= LTTNG_SET_CONSUMER_URI
;
1381 lttng_ctl_copy_string(lsm
.session
.name
, handle
->session_name
,
1382 sizeof(lsm
.session
.name
));
1383 lttng_ctl_copy_lttng_domain(&lsm
.domain
, &handle
->domain
);
1385 size
= uri_parse_str_urls(control_url
, data_url
, &uris
);
1387 return -LTTNG_ERR_INVALID
;
1390 lsm
.u
.uri
.size
= size
;
1392 ret
= lttng_ctl_ask_sessiond_varlen(&lsm
, uris
,
1393 sizeof(struct lttng_uri
) * size
, NULL
);
1402 int lttng_enable_consumer(struct lttng_handle
*handle
)
1410 int lttng_disable_consumer(struct lttng_handle
*handle
)
1416 * This is an extension of create session that is ONLY and SHOULD only be used
1417 * by the lttng command line program. It exists to avoid using URI parsing in
1420 * We need the date and time for the trace path subdirectory for the case where
1421 * the user does NOT define one using either -o or -U. Using the normal
1422 * lttng_create_session API call, we have no clue on the session daemon side if
1423 * the URL was generated automatically by the client or define by the user.
1425 * So this function "wrapper" is hidden from the public API, takes the datetime
1426 * string and appends it if necessary to the URI subdirectory before sending it
1427 * to the session daemon.
1429 * With this extra function, the lttng_create_session call behavior is not
1430 * changed and the timestamp is appended to the URI on the session daemon side
1433 int _lttng_create_session_ext(const char *name
, const char *url
,
1434 const char *datetime
)
1438 struct lttcomm_session_msg lsm
;
1439 struct lttng_uri
*uris
= NULL
;
1441 if (name
== NULL
|| datetime
== NULL
) {
1442 return -LTTNG_ERR_INVALID
;
1445 memset(&lsm
, 0, sizeof(lsm
));
1447 lsm
.cmd_type
= LTTNG_CREATE_SESSION
;
1448 lttng_ctl_copy_string(lsm
.session
.name
, name
, sizeof(lsm
.session
.name
));
1450 /* There should never be a data URL */
1451 size
= uri_parse_str_urls(url
, NULL
, &uris
);
1453 ret
= -LTTNG_ERR_INVALID
;
1457 lsm
.u
.uri
.size
= size
;
1459 if (size
> 0 && uris
[0].dtype
!= LTTNG_DST_PATH
&& strlen(uris
[0].subdir
) == 0) {
1460 /* Don't append datetime if the name was automatically created. */
1461 if (strncmp(name
, DEFAULT_SESSION_NAME
"-",
1462 strlen(DEFAULT_SESSION_NAME
) + 1)) {
1463 ret
= snprintf(uris
[0].subdir
, sizeof(uris
[0].subdir
), "%s-%s",
1466 ret
= snprintf(uris
[0].subdir
, sizeof(uris
[0].subdir
), "%s", name
);
1469 PERROR("snprintf uri subdir");
1470 ret
= -LTTNG_ERR_FATAL
;
1475 ret
= lttng_ctl_ask_sessiond_varlen(&lsm
, uris
,
1476 sizeof(struct lttng_uri
) * size
, NULL
);
1484 * For a given session name, this call checks if the data is ready to be read
1485 * or is still being extracted by the consumer(s) hence not ready to be used by
1488 int lttng_data_pending(const char *session_name
)
1491 struct lttcomm_session_msg lsm
;
1493 if (session_name
== NULL
) {
1494 return -LTTNG_ERR_INVALID
;
1497 memset(&lsm
, 0, sizeof(lsm
));
1498 lsm
.cmd_type
= LTTNG_DATA_PENDING
;
1500 lttng_ctl_copy_string(lsm
.session
.name
, session_name
,
1501 sizeof(lsm
.session
.name
));
1503 ret
= lttng_ctl_ask_sessiond(&lsm
, NULL
);
1506 * The lttng_ctl_ask_sessiond function negate the return code if it's not
1507 * LTTNG_OK so getting -1 means that the reply ret_code was 1 thus meaning
1508 * that the data is available. Yes it is hackish but for now this is the
1519 * Create a session exclusively used for snapshot.
1521 * Returns LTTNG_OK on success or a negative error code.
1523 int lttng_create_session_snapshot(const char *name
, const char *snapshot_url
)
1527 struct lttcomm_session_msg lsm
;
1528 struct lttng_uri
*uris
= NULL
;
1531 return -LTTNG_ERR_INVALID
;
1534 memset(&lsm
, 0, sizeof(lsm
));
1536 lsm
.cmd_type
= LTTNG_CREATE_SESSION_SNAPSHOT
;
1537 lttng_ctl_copy_string(lsm
.session
.name
, name
, sizeof(lsm
.session
.name
));
1539 size
= uri_parse_str_urls(snapshot_url
, NULL
, &uris
);
1541 return -LTTNG_ERR_INVALID
;
1544 lsm
.u
.uri
.size
= size
;
1546 ret
= lttng_ctl_ask_sessiond_varlen(&lsm
, uris
,
1547 sizeof(struct lttng_uri
) * size
, NULL
);
1554 * Create a session exclusively used for live.
1556 * Returns LTTNG_OK on success or a negative error code.
1558 int lttng_create_session_live(const char *name
, const char *url
,
1559 unsigned int timer_interval
)
1563 struct lttcomm_session_msg lsm
;
1564 struct lttng_uri
*uris
= NULL
;
1567 return -LTTNG_ERR_INVALID
;
1570 memset(&lsm
, 0, sizeof(lsm
));
1572 lsm
.cmd_type
= LTTNG_CREATE_SESSION_LIVE
;
1573 lttng_ctl_copy_string(lsm
.session
.name
, name
, sizeof(lsm
.session
.name
));
1575 size
= uri_parse_str_urls(url
, NULL
, &uris
);
1577 ret
= -LTTNG_ERR_INVALID
;
1581 /* file:// is not accepted for live session. */
1582 if (uris
[0].dtype
== LTTNG_DST_PATH
) {
1583 ret
= -LTTNG_ERR_INVALID
;
1587 lsm
.u
.session_live
.nb_uri
= size
;
1588 lsm
.u
.session_live
.timer_interval
= timer_interval
;
1590 ret
= lttng_ctl_ask_sessiond_varlen(&lsm
, uris
,
1591 sizeof(struct lttng_uri
) * size
, NULL
);
1601 static void __attribute__((constructor
)) init()
1603 /* Set default session group */
1604 lttng_set_tracing_group(DEFAULT_TRACING_GROUP
);
1610 static void __attribute__((destructor
)) lttng_ctl_exit()
1612 free(tracing_group
);