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 /* Check for data availability */
584 data_ret
= lttng_data_pending(session_name
);
586 /* Return the data available call error. */
592 * Data sleep time before retrying (in usec). Don't sleep if the call
593 * returned value indicates availability.
596 usleep(DEFAULT_DATA_AVAILABILITY_WAIT_TIME
);
598 } while (data_ret
!= 0);
606 * Stop tracing and wait for data availability.
608 int lttng_stop_tracing(const char *session_name
)
610 return _lttng_stop_tracing(session_name
, 1);
614 * Stop tracing but _don't_ wait for data availability.
616 int lttng_stop_tracing_no_wait(const char *session_name
)
618 return _lttng_stop_tracing(session_name
, 0);
622 * Add context to a channel.
624 * If the given channel is NULL, add the contexts to all channels.
625 * The event_name param is ignored.
627 * Returns the size of the returned payload data or a negative error code.
629 int lttng_add_context(struct lttng_handle
*handle
,
630 struct lttng_event_context
*ctx
, const char *event_name
,
631 const char *channel_name
)
633 struct lttcomm_session_msg lsm
;
635 /* Safety check. Both are mandatory */
636 if (handle
== NULL
|| ctx
== NULL
) {
637 return -LTTNG_ERR_INVALID
;
640 memset(&lsm
, 0, sizeof(lsm
));
642 lsm
.cmd_type
= LTTNG_ADD_CONTEXT
;
644 /* If no channel name, send empty string. */
645 if (channel_name
== NULL
) {
646 lttng_ctl_copy_string(lsm
.u
.context
.channel_name
, "",
647 sizeof(lsm
.u
.context
.channel_name
));
649 lttng_ctl_copy_string(lsm
.u
.context
.channel_name
, channel_name
,
650 sizeof(lsm
.u
.context
.channel_name
));
653 lttng_ctl_copy_lttng_domain(&lsm
.domain
, &handle
->domain
);
655 memcpy(&lsm
.u
.context
.ctx
, ctx
, sizeof(struct lttng_event_context
));
657 lttng_ctl_copy_string(lsm
.session
.name
, handle
->session_name
,
658 sizeof(lsm
.session
.name
));
660 return lttng_ctl_ask_sessiond(&lsm
, NULL
);
664 * Enable event(s) for a channel.
665 * If no event name is specified, all events are enabled.
666 * If no channel name is specified, the default 'channel0' is used.
667 * Returns size of returned session payload data or a negative error code.
669 int lttng_enable_event(struct lttng_handle
*handle
,
670 struct lttng_event
*ev
, const char *channel_name
)
672 return lttng_enable_event_with_exclusions(handle
, ev
, channel_name
,
677 * Create or enable an event with a filter expression.
679 * Return negative error value on error.
680 * Return size of returned session payload data if OK.
682 int lttng_enable_event_with_filter(struct lttng_handle
*handle
,
683 struct lttng_event
*event
, const char *channel_name
,
684 const char *filter_expression
)
686 return lttng_enable_event_with_exclusions(handle
, event
, channel_name
,
687 filter_expression
, 0, NULL
);
691 * Depending on the event, return a newly allocated JUL filter expression or
692 * NULL if not applicable.
694 * An event with NO loglevel and the name is * will return NULL.
696 static char *set_jul_filter(const char *filter
, struct lttng_event
*ev
)
699 char *jul_filter
= NULL
;
703 /* Don't add filter for the '*' event. */
704 if (ev
->name
[0] != '*') {
706 err
= asprintf(&jul_filter
, "%s && logger_name == \"%s\"", filter
,
709 err
= asprintf(&jul_filter
, "logger_name == \"%s\"", ev
->name
);
717 /* Add loglevel filtering if any for the JUL domain. */
718 if (ev
->loglevel_type
!= LTTNG_EVENT_LOGLEVEL_ALL
) {
721 if (ev
->loglevel_type
== LTTNG_EVENT_LOGLEVEL_RANGE
) {
727 if (filter
|| jul_filter
) {
730 err
= asprintf(&new_filter
, "%s && int_loglevel %s %d",
731 jul_filter
? jul_filter
: filter
, op
,
736 jul_filter
= new_filter
;
738 err
= asprintf(&jul_filter
, "int_loglevel %s %d", op
,
754 * Generate the filter bytecode from a give filter expression string. Put the
755 * newly allocated parser context in ctxp and populate the lsm object with the
758 * Return 0 on success else a LTTNG_ERR_* code and ctxp is untouched.
760 static int generate_filter(char *filter_expression
,
761 struct lttcomm_session_msg
*lsm
, struct filter_parser_ctx
**ctxp
)
764 struct filter_parser_ctx
*ctx
= NULL
;
767 assert(filter_expression
);
772 * Casting const to non-const, as the underlying function will use it in
775 fmem
= lttng_fmemopen((void *) filter_expression
,
776 strlen(filter_expression
), "r");
778 fprintf(stderr
, "Error opening memory as stream\n");
779 ret
= -LTTNG_ERR_FILTER_NOMEM
;
782 ctx
= filter_parser_ctx_alloc(fmem
);
784 fprintf(stderr
, "Error allocating parser\n");
785 ret
= -LTTNG_ERR_FILTER_NOMEM
;
786 goto filter_alloc_error
;
788 ret
= filter_parser_ctx_append_ast(ctx
);
790 fprintf(stderr
, "Parse error\n");
791 ret
= -LTTNG_ERR_FILTER_INVAL
;
794 ret
= filter_visitor_set_parent(ctx
);
796 fprintf(stderr
, "Set parent error\n");
797 ret
= -LTTNG_ERR_FILTER_INVAL
;
801 ret
= filter_visitor_print_xml(ctx
, stdout
, 0);
804 fprintf(stderr
, "XML print error\n");
805 ret
= -LTTNG_ERR_FILTER_INVAL
;
810 dbg_printf("Generating IR... ");
812 ret
= filter_visitor_ir_generate(ctx
);
814 fprintf(stderr
, "Generate IR error\n");
815 ret
= -LTTNG_ERR_FILTER_INVAL
;
818 dbg_printf("done\n");
820 dbg_printf("Validating IR... ");
822 ret
= filter_visitor_ir_check_binary_op_nesting(ctx
);
824 ret
= -LTTNG_ERR_FILTER_INVAL
;
827 dbg_printf("done\n");
829 dbg_printf("Generating bytecode... ");
831 ret
= filter_visitor_bytecode_generate(ctx
);
833 fprintf(stderr
, "Generate bytecode error\n");
834 ret
= -LTTNG_ERR_FILTER_INVAL
;
837 dbg_printf("done\n");
838 dbg_printf("Size of bytecode generated: %u bytes.\n",
839 bytecode_get_len(&ctx
->bytecode
->b
));
841 lsm
->u
.enable
.bytecode_len
= sizeof(ctx
->bytecode
->b
)
842 + bytecode_get_len(&ctx
->bytecode
->b
);
843 lsm
->u
.enable
.expression_len
= strlen(filter_expression
) + 1;
845 /* No need to keep the memory stream. */
846 if (fclose(fmem
) != 0) {
855 filter_parser_ctx_free(ctx
);
857 if (fclose(fmem
) != 0) {
865 * Enable event(s) for a channel, possibly with exclusions and a filter.
866 * If no event name is specified, all events are enabled.
867 * If no channel name is specified, the default name is used.
868 * If filter expression is not NULL, the filter is set for the event.
869 * If exclusion count is not zero, the exclusions are set for the event.
870 * Returns size of returned session payload data or a negative error code.
872 int lttng_enable_event_with_exclusions(struct lttng_handle
*handle
,
873 struct lttng_event
*ev
, const char *channel_name
,
874 const char *original_filter_expression
,
875 int exclusion_count
, char **exclusion_list
)
877 struct lttcomm_session_msg lsm
;
880 unsigned int free_filter_expression
= 0;
881 struct filter_parser_ctx
*ctx
= NULL
;
883 * Cast as non-const since we may replace the filter expression
884 * by a dynamically allocated string. Otherwise, the original
885 * string is not modified.
887 char *filter_expression
= (char *) original_filter_expression
;
889 if (handle
== NULL
|| ev
== NULL
) {
890 ret
= -LTTNG_ERR_INVALID
;
894 /* Empty filter string will always be rejected by the parser
895 * anyway, so treat this corner-case early to eliminate
896 * lttng_fmemopen error for 0-byte allocation.
898 if (filter_expression
&& filter_expression
[0] == '\0') {
899 ret
= -LTTNG_ERR_INVALID
;
903 memset(&lsm
, 0, sizeof(lsm
));
905 /* If no channel name, send empty string. */
906 if (channel_name
== NULL
) {
907 lttng_ctl_copy_string(lsm
.u
.enable
.channel_name
, "",
908 sizeof(lsm
.u
.enable
.channel_name
));
910 lttng_ctl_copy_string(lsm
.u
.enable
.channel_name
, channel_name
,
911 sizeof(lsm
.u
.enable
.channel_name
));
914 if (ev
->name
[0] != '\0') {
915 lsm
.cmd_type
= LTTNG_ENABLE_EVENT
;
917 lsm
.cmd_type
= LTTNG_ENABLE_ALL_EVENT
;
920 lttng_ctl_copy_lttng_domain(&lsm
.domain
, &handle
->domain
);
921 memcpy(&lsm
.u
.enable
.event
, ev
, sizeof(lsm
.u
.enable
.event
));
923 lttng_ctl_copy_string(lsm
.session
.name
, handle
->session_name
,
924 sizeof(lsm
.session
.name
));
925 lsm
.u
.enable
.exclusion_count
= exclusion_count
;
926 lsm
.u
.enable
.bytecode_len
= 0;
929 * For the JUL domain, a filter is enforced except for the enable all
930 * event. This is done to avoid having the event in all sessions thus
931 * filtering by logger name.
933 if (exclusion_count
== 0 && filter_expression
== NULL
&&
934 handle
->domain
.type
!= LTTNG_DOMAIN_JUL
) {
939 * We have either a filter or some exclusions, so we need to set up
940 * a variable-length memory block from where to send the data
943 /* Parse filter expression */
944 if (filter_expression
!= NULL
|| handle
->domain
.type
== LTTNG_DOMAIN_JUL
) {
945 if (handle
->domain
.type
== LTTNG_DOMAIN_JUL
) {
948 /* Setup JUL filter if needed. */
949 jul_filter
= set_jul_filter(filter_expression
, ev
);
951 if (!filter_expression
) {
952 /* No JUL and no filter, just skip everything below. */
957 * With a JUL filter, the original filter has been added to it
958 * thus replace the filter expression.
960 filter_expression
= jul_filter
;
961 free_filter_expression
= 1;
965 ret
= generate_filter(filter_expression
, &lsm
, &ctx
);
971 varlen_data
= zmalloc(lsm
.u
.enable
.bytecode_len
972 + lsm
.u
.enable
.expression_len
973 + LTTNG_SYMBOL_NAME_LEN
* exclusion_count
);
975 ret
= -LTTNG_ERR_EXCLUSION_NOMEM
;
979 /* Put exclusion names first in the data */
980 while (exclusion_count
--) {
981 strncpy(varlen_data
+ LTTNG_SYMBOL_NAME_LEN
* exclusion_count
,
982 *(exclusion_list
+ exclusion_count
), LTTNG_SYMBOL_NAME_LEN
);
984 /* Add filter expression next */
985 if (lsm
.u
.enable
.expression_len
!= 0) {
987 + LTTNG_SYMBOL_NAME_LEN
* lsm
.u
.enable
.exclusion_count
,
989 lsm
.u
.enable
.expression_len
);
991 /* Add filter bytecode next */
992 if (ctx
&& lsm
.u
.enable
.bytecode_len
!= 0) {
994 + LTTNG_SYMBOL_NAME_LEN
* lsm
.u
.enable
.exclusion_count
995 + lsm
.u
.enable
.expression_len
,
997 lsm
.u
.enable
.bytecode_len
);
1000 ret
= lttng_ctl_ask_sessiond_varlen(&lsm
, varlen_data
,
1001 (LTTNG_SYMBOL_NAME_LEN
* lsm
.u
.enable
.exclusion_count
) +
1002 lsm
.u
.enable
.bytecode_len
+ lsm
.u
.enable
.expression_len
, NULL
);
1006 if (filter_expression
) {
1007 filter_bytecode_free(ctx
);
1008 filter_ir_free(ctx
);
1009 filter_parser_ctx_free(ctx
);
1010 if (free_filter_expression
) {
1012 * The filter expression has been replaced and must be
1013 * freed as it is not the original filter expression
1014 * received as a parameter.
1016 free(filter_expression
);
1021 * Return directly to the caller and don't ask the sessiond since something
1022 * went wrong in the parsing of data above.
1027 ret
= lttng_ctl_ask_sessiond(&lsm
, NULL
);
1032 * Disable event(s) of a channel and domain.
1033 * If no event name is specified, all events are disabled.
1034 * If no channel name is specified, the default 'channel0' is used.
1035 * Returns size of returned session payload data or a negative error code.
1037 int lttng_disable_event(struct lttng_handle
*handle
, const char *name
,
1038 const char *channel_name
)
1040 struct lttcomm_session_msg lsm
;
1042 if (handle
== NULL
) {
1043 return -LTTNG_ERR_INVALID
;
1046 memset(&lsm
, 0, sizeof(lsm
));
1048 /* If no channel name, send empty string. */
1049 if (channel_name
== NULL
) {
1050 lttng_ctl_copy_string(lsm
.u
.disable
.channel_name
, "",
1051 sizeof(lsm
.u
.disable
.channel_name
));
1053 lttng_ctl_copy_string(lsm
.u
.disable
.channel_name
, channel_name
,
1054 sizeof(lsm
.u
.disable
.channel_name
));
1057 lttng_ctl_copy_lttng_domain(&lsm
.domain
, &handle
->domain
);
1060 lttng_ctl_copy_string(lsm
.u
.disable
.name
, name
,
1061 sizeof(lsm
.u
.disable
.name
));
1062 lsm
.cmd_type
= LTTNG_DISABLE_EVENT
;
1064 lsm
.cmd_type
= LTTNG_DISABLE_ALL_EVENT
;
1067 lttng_ctl_copy_string(lsm
.session
.name
, handle
->session_name
,
1068 sizeof(lsm
.session
.name
));
1070 return lttng_ctl_ask_sessiond(&lsm
, NULL
);
1074 * Enable channel per domain
1075 * Returns size of returned session payload data or a negative error code.
1077 int lttng_enable_channel(struct lttng_handle
*handle
,
1078 struct lttng_channel
*chan
)
1080 struct lttcomm_session_msg lsm
;
1083 * NULL arguments are forbidden. No default values.
1085 if (handle
== NULL
|| chan
== NULL
) {
1086 return -LTTNG_ERR_INVALID
;
1089 memset(&lsm
, 0, sizeof(lsm
));
1091 memcpy(&lsm
.u
.channel
.chan
, chan
, sizeof(lsm
.u
.channel
.chan
));
1093 lsm
.cmd_type
= LTTNG_ENABLE_CHANNEL
;
1095 lttng_ctl_copy_lttng_domain(&lsm
.domain
, &handle
->domain
);
1097 lttng_ctl_copy_string(lsm
.session
.name
, handle
->session_name
,
1098 sizeof(lsm
.session
.name
));
1100 return lttng_ctl_ask_sessiond(&lsm
, NULL
);
1104 * All tracing will be stopped for registered events of the channel.
1105 * Returns size of returned session payload data or a negative error code.
1107 int lttng_disable_channel(struct lttng_handle
*handle
, const char *name
)
1109 struct lttcomm_session_msg lsm
;
1111 /* Safety check. Both are mandatory */
1112 if (handle
== NULL
|| name
== NULL
) {
1113 return -LTTNG_ERR_INVALID
;
1116 memset(&lsm
, 0, sizeof(lsm
));
1118 lsm
.cmd_type
= LTTNG_DISABLE_CHANNEL
;
1120 lttng_ctl_copy_string(lsm
.u
.disable
.channel_name
, name
,
1121 sizeof(lsm
.u
.disable
.channel_name
));
1123 lttng_ctl_copy_lttng_domain(&lsm
.domain
, &handle
->domain
);
1125 lttng_ctl_copy_string(lsm
.session
.name
, handle
->session_name
,
1126 sizeof(lsm
.session
.name
));
1128 return lttng_ctl_ask_sessiond(&lsm
, NULL
);
1132 * Lists all available tracepoints of domain.
1133 * Sets the contents of the events array.
1134 * Returns the number of lttng_event entries in events;
1135 * on error, returns a negative value.
1137 int lttng_list_tracepoints(struct lttng_handle
*handle
,
1138 struct lttng_event
**events
)
1141 struct lttcomm_session_msg lsm
;
1143 if (handle
== NULL
) {
1144 return -LTTNG_ERR_INVALID
;
1147 memset(&lsm
, 0, sizeof(lsm
));
1148 lsm
.cmd_type
= LTTNG_LIST_TRACEPOINTS
;
1149 lttng_ctl_copy_lttng_domain(&lsm
.domain
, &handle
->domain
);
1151 ret
= lttng_ctl_ask_sessiond(&lsm
, (void **) events
);
1156 return ret
/ sizeof(struct lttng_event
);
1160 * Lists all available tracepoint fields of domain.
1161 * Sets the contents of the event field array.
1162 * Returns the number of lttng_event_field entries in events;
1163 * on error, returns a negative value.
1165 int lttng_list_tracepoint_fields(struct lttng_handle
*handle
,
1166 struct lttng_event_field
**fields
)
1169 struct lttcomm_session_msg lsm
;
1171 if (handle
== NULL
) {
1172 return -LTTNG_ERR_INVALID
;
1175 memset(&lsm
, 0, sizeof(lsm
));
1176 lsm
.cmd_type
= LTTNG_LIST_TRACEPOINT_FIELDS
;
1177 lttng_ctl_copy_lttng_domain(&lsm
.domain
, &handle
->domain
);
1179 ret
= lttng_ctl_ask_sessiond(&lsm
, (void **) fields
);
1184 return ret
/ sizeof(struct lttng_event_field
);
1188 * Returns a human readable string describing
1189 * the error code (a negative value).
1191 const char *lttng_strerror(int code
)
1193 return error_get_str(code
);
1197 * Create a brand new session using name and url for destination.
1199 * Returns LTTNG_OK on success or a negative error code.
1201 int lttng_create_session(const char *name
, const char *url
)
1205 struct lttcomm_session_msg lsm
;
1206 struct lttng_uri
*uris
= NULL
;
1209 return -LTTNG_ERR_INVALID
;
1212 memset(&lsm
, 0, sizeof(lsm
));
1214 lsm
.cmd_type
= LTTNG_CREATE_SESSION
;
1215 lttng_ctl_copy_string(lsm
.session
.name
, name
, sizeof(lsm
.session
.name
));
1217 /* There should never be a data URL */
1218 size
= uri_parse_str_urls(url
, NULL
, &uris
);
1220 return -LTTNG_ERR_INVALID
;
1223 lsm
.u
.uri
.size
= size
;
1225 ret
= lttng_ctl_ask_sessiond_varlen(&lsm
, uris
,
1226 sizeof(struct lttng_uri
) * size
, NULL
);
1233 * Destroy session using name.
1234 * Returns size of returned session payload data or a negative error code.
1236 int lttng_destroy_session(const char *session_name
)
1238 struct lttcomm_session_msg lsm
;
1240 if (session_name
== NULL
) {
1241 return -LTTNG_ERR_INVALID
;
1244 memset(&lsm
, 0, sizeof(lsm
));
1245 lsm
.cmd_type
= LTTNG_DESTROY_SESSION
;
1247 lttng_ctl_copy_string(lsm
.session
.name
, session_name
,
1248 sizeof(lsm
.session
.name
));
1250 return lttng_ctl_ask_sessiond(&lsm
, NULL
);
1254 * Ask the session daemon for all available sessions.
1255 * Sets the contents of the sessions array.
1256 * Returns the number of lttng_session entries in sessions;
1257 * on error, returns a negative value.
1259 int lttng_list_sessions(struct lttng_session
**sessions
)
1262 struct lttcomm_session_msg lsm
;
1264 memset(&lsm
, 0, sizeof(lsm
));
1265 lsm
.cmd_type
= LTTNG_LIST_SESSIONS
;
1266 ret
= lttng_ctl_ask_sessiond(&lsm
, (void**) sessions
);
1271 return ret
/ sizeof(struct lttng_session
);
1275 * Ask the session daemon for all available domains of a session.
1276 * Sets the contents of the domains array.
1277 * Returns the number of lttng_domain entries in domains;
1278 * on error, returns a negative value.
1280 int lttng_list_domains(const char *session_name
,
1281 struct lttng_domain
**domains
)
1284 struct lttcomm_session_msg lsm
;
1286 if (session_name
== NULL
) {
1287 return -LTTNG_ERR_INVALID
;
1290 memset(&lsm
, 0, sizeof(lsm
));
1291 lsm
.cmd_type
= LTTNG_LIST_DOMAINS
;
1293 lttng_ctl_copy_string(lsm
.session
.name
, session_name
,
1294 sizeof(lsm
.session
.name
));
1296 ret
= lttng_ctl_ask_sessiond(&lsm
, (void**) domains
);
1301 return ret
/ sizeof(struct lttng_domain
);
1305 * Ask the session daemon for all available channels of a session.
1306 * Sets the contents of the channels array.
1307 * Returns the number of lttng_channel entries in channels;
1308 * on error, returns a negative value.
1310 int lttng_list_channels(struct lttng_handle
*handle
,
1311 struct lttng_channel
**channels
)
1314 struct lttcomm_session_msg lsm
;
1316 if (handle
== NULL
) {
1317 return -LTTNG_ERR_INVALID
;
1320 memset(&lsm
, 0, sizeof(lsm
));
1321 lsm
.cmd_type
= LTTNG_LIST_CHANNELS
;
1322 lttng_ctl_copy_string(lsm
.session
.name
, handle
->session_name
,
1323 sizeof(lsm
.session
.name
));
1325 lttng_ctl_copy_lttng_domain(&lsm
.domain
, &handle
->domain
);
1327 ret
= lttng_ctl_ask_sessiond(&lsm
, (void**) channels
);
1332 return ret
/ sizeof(struct lttng_channel
);
1336 * Ask the session daemon for all available events of a session channel.
1337 * Sets the contents of the events array.
1338 * Returns the number of lttng_event entries in events;
1339 * on error, returns a negative value.
1341 int lttng_list_events(struct lttng_handle
*handle
,
1342 const char *channel_name
, struct lttng_event
**events
)
1345 struct lttcomm_session_msg lsm
;
1347 /* Safety check. An handle and channel name are mandatory */
1348 if (handle
== NULL
|| channel_name
== NULL
) {
1349 return -LTTNG_ERR_INVALID
;
1352 memset(&lsm
, 0, sizeof(lsm
));
1353 lsm
.cmd_type
= LTTNG_LIST_EVENTS
;
1354 lttng_ctl_copy_string(lsm
.session
.name
, handle
->session_name
,
1355 sizeof(lsm
.session
.name
));
1356 lttng_ctl_copy_string(lsm
.u
.list
.channel_name
, channel_name
,
1357 sizeof(lsm
.u
.list
.channel_name
));
1359 lttng_ctl_copy_lttng_domain(&lsm
.domain
, &handle
->domain
);
1361 ret
= lttng_ctl_ask_sessiond(&lsm
, (void**) events
);
1366 return ret
/ sizeof(struct lttng_event
);
1370 * Sets the tracing_group variable with name.
1371 * This function allocates memory pointed to by tracing_group.
1372 * On success, returns 0, on error, returns -1 (null name) or -ENOMEM.
1374 int lttng_set_tracing_group(const char *name
)
1377 return -LTTNG_ERR_INVALID
;
1380 if (asprintf(&tracing_group
, "%s", name
) < 0) {
1381 return -LTTNG_ERR_FATAL
;
1388 * Returns size of returned session payload data or a negative error code.
1390 int lttng_calibrate(struct lttng_handle
*handle
,
1391 struct lttng_calibrate
*calibrate
)
1393 struct lttcomm_session_msg lsm
;
1395 /* Safety check. NULL pointer are forbidden */
1396 if (handle
== NULL
|| calibrate
== NULL
) {
1397 return -LTTNG_ERR_INVALID
;
1400 memset(&lsm
, 0, sizeof(lsm
));
1401 lsm
.cmd_type
= LTTNG_CALIBRATE
;
1402 lttng_ctl_copy_lttng_domain(&lsm
.domain
, &handle
->domain
);
1404 memcpy(&lsm
.u
.calibrate
, calibrate
, sizeof(lsm
.u
.calibrate
));
1406 return lttng_ctl_ask_sessiond(&lsm
, NULL
);
1410 * Set default channel attributes.
1411 * If either or both of the arguments are null, attr content is zeroe'd.
1413 void lttng_channel_set_default_attr(struct lttng_domain
*domain
,
1414 struct lttng_channel_attr
*attr
)
1417 if (attr
== NULL
|| domain
== NULL
) {
1421 memset(attr
, 0, sizeof(struct lttng_channel_attr
));
1423 /* Same for all domains. */
1424 attr
->overwrite
= DEFAULT_CHANNEL_OVERWRITE
;
1425 attr
->tracefile_size
= DEFAULT_CHANNEL_TRACEFILE_SIZE
;
1426 attr
->tracefile_count
= DEFAULT_CHANNEL_TRACEFILE_COUNT
;
1428 switch (domain
->type
) {
1429 case LTTNG_DOMAIN_KERNEL
:
1430 attr
->switch_timer_interval
= DEFAULT_KERNEL_CHANNEL_SWITCH_TIMER
;
1431 attr
->read_timer_interval
= DEFAULT_KERNEL_CHANNEL_READ_TIMER
;
1432 attr
->subbuf_size
= default_get_kernel_channel_subbuf_size();
1433 attr
->num_subbuf
= DEFAULT_KERNEL_CHANNEL_SUBBUF_NUM
;
1434 attr
->output
= DEFAULT_KERNEL_CHANNEL_OUTPUT
;
1436 case LTTNG_DOMAIN_UST
:
1437 switch (domain
->buf_type
) {
1438 case LTTNG_BUFFER_PER_UID
:
1439 attr
->subbuf_size
= default_get_ust_uid_channel_subbuf_size();
1440 attr
->num_subbuf
= DEFAULT_UST_UID_CHANNEL_SUBBUF_NUM
;
1441 attr
->output
= DEFAULT_UST_UID_CHANNEL_OUTPUT
;
1442 attr
->switch_timer_interval
= DEFAULT_UST_UID_CHANNEL_SWITCH_TIMER
;
1443 attr
->read_timer_interval
= DEFAULT_UST_UID_CHANNEL_READ_TIMER
;
1445 case LTTNG_BUFFER_PER_PID
:
1447 attr
->subbuf_size
= default_get_ust_pid_channel_subbuf_size();
1448 attr
->num_subbuf
= DEFAULT_UST_PID_CHANNEL_SUBBUF_NUM
;
1449 attr
->output
= DEFAULT_UST_PID_CHANNEL_OUTPUT
;
1450 attr
->switch_timer_interval
= DEFAULT_UST_PID_CHANNEL_SWITCH_TIMER
;
1451 attr
->read_timer_interval
= DEFAULT_UST_PID_CHANNEL_READ_TIMER
;
1455 /* Default behavior: leave set to 0. */
1461 * Check if session daemon is alive.
1463 * Return 1 if alive or 0 if not.
1464 * On error returns a negative value.
1466 int lttng_session_daemon_alive(void)
1470 ret
= set_session_daemon_path();
1476 if (*sessiond_sock_path
== '\0') {
1478 * No socket path set. Weird error which means the constructor was not
1484 ret
= try_connect_sessiond(sessiond_sock_path
);
1495 * Set URL for a consumer for a session and domain.
1497 * Return 0 on success, else a negative value.
1499 int lttng_set_consumer_url(struct lttng_handle
*handle
,
1500 const char *control_url
, const char *data_url
)
1504 struct lttcomm_session_msg lsm
;
1505 struct lttng_uri
*uris
= NULL
;
1507 if (handle
== NULL
|| (control_url
== NULL
&& data_url
== NULL
)) {
1508 return -LTTNG_ERR_INVALID
;
1511 memset(&lsm
, 0, sizeof(lsm
));
1513 lsm
.cmd_type
= LTTNG_SET_CONSUMER_URI
;
1515 lttng_ctl_copy_string(lsm
.session
.name
, handle
->session_name
,
1516 sizeof(lsm
.session
.name
));
1517 lttng_ctl_copy_lttng_domain(&lsm
.domain
, &handle
->domain
);
1519 size
= uri_parse_str_urls(control_url
, data_url
, &uris
);
1521 return -LTTNG_ERR_INVALID
;
1524 lsm
.u
.uri
.size
= size
;
1526 ret
= lttng_ctl_ask_sessiond_varlen(&lsm
, uris
,
1527 sizeof(struct lttng_uri
) * size
, NULL
);
1536 int lttng_enable_consumer(struct lttng_handle
*handle
)
1544 int lttng_disable_consumer(struct lttng_handle
*handle
)
1550 * This is an extension of create session that is ONLY and SHOULD only be used
1551 * by the lttng command line program. It exists to avoid using URI parsing in
1554 * We need the date and time for the trace path subdirectory for the case where
1555 * the user does NOT define one using either -o or -U. Using the normal
1556 * lttng_create_session API call, we have no clue on the session daemon side if
1557 * the URL was generated automatically by the client or define by the user.
1559 * So this function "wrapper" is hidden from the public API, takes the datetime
1560 * string and appends it if necessary to the URI subdirectory before sending it
1561 * to the session daemon.
1563 * With this extra function, the lttng_create_session call behavior is not
1564 * changed and the timestamp is appended to the URI on the session daemon side
1567 int _lttng_create_session_ext(const char *name
, const char *url
,
1568 const char *datetime
)
1572 struct lttcomm_session_msg lsm
;
1573 struct lttng_uri
*uris
= NULL
;
1575 if (name
== NULL
|| datetime
== NULL
) {
1576 return -LTTNG_ERR_INVALID
;
1579 memset(&lsm
, 0, sizeof(lsm
));
1581 lsm
.cmd_type
= LTTNG_CREATE_SESSION
;
1582 lttng_ctl_copy_string(lsm
.session
.name
, name
, sizeof(lsm
.session
.name
));
1584 /* There should never be a data URL */
1585 size
= uri_parse_str_urls(url
, NULL
, &uris
);
1587 ret
= -LTTNG_ERR_INVALID
;
1591 lsm
.u
.uri
.size
= size
;
1593 if (size
> 0 && uris
[0].dtype
!= LTTNG_DST_PATH
&& strlen(uris
[0].subdir
) == 0) {
1594 /* Don't append datetime if the name was automatically created. */
1595 if (strncmp(name
, DEFAULT_SESSION_NAME
"-",
1596 strlen(DEFAULT_SESSION_NAME
) + 1)) {
1597 ret
= snprintf(uris
[0].subdir
, sizeof(uris
[0].subdir
), "%s-%s",
1600 ret
= snprintf(uris
[0].subdir
, sizeof(uris
[0].subdir
), "%s", name
);
1603 PERROR("snprintf uri subdir");
1604 ret
= -LTTNG_ERR_FATAL
;
1609 ret
= lttng_ctl_ask_sessiond_varlen(&lsm
, uris
,
1610 sizeof(struct lttng_uri
) * size
, NULL
);
1618 * For a given session name, this call checks if the data is ready to be read
1619 * or is still being extracted by the consumer(s) hence not ready to be used by
1622 int lttng_data_pending(const char *session_name
)
1625 struct lttcomm_session_msg lsm
;
1627 if (session_name
== NULL
) {
1628 return -LTTNG_ERR_INVALID
;
1631 memset(&lsm
, 0, sizeof(lsm
));
1632 lsm
.cmd_type
= LTTNG_DATA_PENDING
;
1634 lttng_ctl_copy_string(lsm
.session
.name
, session_name
,
1635 sizeof(lsm
.session
.name
));
1637 ret
= lttng_ctl_ask_sessiond(&lsm
, NULL
);
1640 * The lttng_ctl_ask_sessiond function negate the return code if it's not
1641 * LTTNG_OK so getting -1 means that the reply ret_code was 1 thus meaning
1642 * that the data is available. Yes it is hackish but for now this is the
1653 * Create a session exclusively used for snapshot.
1655 * Returns LTTNG_OK on success or a negative error code.
1657 int lttng_create_session_snapshot(const char *name
, const char *snapshot_url
)
1661 struct lttcomm_session_msg lsm
;
1662 struct lttng_uri
*uris
= NULL
;
1665 return -LTTNG_ERR_INVALID
;
1668 memset(&lsm
, 0, sizeof(lsm
));
1670 lsm
.cmd_type
= LTTNG_CREATE_SESSION_SNAPSHOT
;
1671 lttng_ctl_copy_string(lsm
.session
.name
, name
, sizeof(lsm
.session
.name
));
1673 size
= uri_parse_str_urls(snapshot_url
, NULL
, &uris
);
1675 return -LTTNG_ERR_INVALID
;
1678 lsm
.u
.uri
.size
= size
;
1680 ret
= lttng_ctl_ask_sessiond_varlen(&lsm
, uris
,
1681 sizeof(struct lttng_uri
) * size
, NULL
);
1688 * Create a session exclusively used for live.
1690 * Returns LTTNG_OK on success or a negative error code.
1692 int lttng_create_session_live(const char *name
, const char *url
,
1693 unsigned int timer_interval
)
1697 struct lttcomm_session_msg lsm
;
1698 struct lttng_uri
*uris
= NULL
;
1701 return -LTTNG_ERR_INVALID
;
1704 memset(&lsm
, 0, sizeof(lsm
));
1706 lsm
.cmd_type
= LTTNG_CREATE_SESSION_LIVE
;
1707 lttng_ctl_copy_string(lsm
.session
.name
, name
, sizeof(lsm
.session
.name
));
1710 size
= uri_parse_str_urls(url
, NULL
, &uris
);
1712 ret
= -LTTNG_ERR_INVALID
;
1716 /* file:// is not accepted for live session. */
1717 if (uris
[0].dtype
== LTTNG_DST_PATH
) {
1718 ret
= -LTTNG_ERR_INVALID
;
1725 lsm
.u
.session_live
.nb_uri
= size
;
1726 lsm
.u
.session_live
.timer_interval
= timer_interval
;
1728 ret
= lttng_ctl_ask_sessiond_varlen(&lsm
, uris
,
1729 sizeof(struct lttng_uri
) * size
, NULL
);
1739 static void __attribute__((constructor
)) init()
1741 /* Set default session group */
1742 lttng_set_tracing_group(DEFAULT_TRACING_GROUP
);
1748 static void __attribute__((destructor
)) lttng_ctl_exit()
1750 free(tracing_group
);