4 * Linux Trace Toolkit Control Library
6 * Copyright (C) 2011 EfficiOS Inc.
7 * Copyright (C) 2016 Jérémie Galarneau <jeremie.galarneau@efficios.com>
9 * SPDX-License-Identifier: LGPL-2.1-only
21 #include <common/bytecode/bytecode.h>
22 #include <common/align.h>
23 #include <common/common.h>
24 #include <common/compat/errno.h>
25 #include <common/compat/string.h>
26 #include <common/defaults.h>
27 #include <common/dynamic-array.h>
28 #include <common/dynamic-buffer.h>
29 #include <common/payload-view.h>
30 #include <common/payload.h>
31 #include <common/sessiond-comm/sessiond-comm.h>
32 #include <common/tracker.h>
33 #include <common/unix.h>
34 #include <common/uri.h>
35 #include <common/utils.h>
36 #include <lttng/channel-internal.h>
37 #include <lttng/destruction-handle.h>
38 #include <lttng/endpoint.h>
39 #include <lttng/error-query-internal.h>
40 #include <lttng/event-internal.h>
41 #include <lttng/health-internal.h>
42 #include <lttng/lttng-error.h>
43 #include <lttng/lttng.h>
44 #include <lttng/session-descriptor-internal.h>
45 #include <lttng/session-internal.h>
46 #include <lttng/trigger/trigger-internal.h>
47 #include <lttng/userspace-probe-internal.h>
49 #include "lttng-ctl-helper.h"
50 #include <common/filter/filter-ast.h>
51 #include <common/filter/filter-parser.hpp>
52 #include <common/filter/memstream.h>
54 #define COPY_DOMAIN_PACKED(dst, src) \
56 struct lttng_domain _tmp_domain; \
58 lttng_ctl_copy_lttng_domain(&_tmp_domain, &src); \
62 /* Socket to session daemon for communication */
63 static int sessiond_socket
= -1;
64 static char sessiond_sock_path
[PATH_MAX
];
67 static char *tracing_group
;
73 * Those two variables are used by error.h to silent or control the verbosity of
74 * error message. They are global to the library so application linking with it
75 * are able to compile correctly and also control verbosity of the library.
77 LTTNG_EXPORT
int lttng_opt_quiet
;
78 LTTNG_EXPORT
int lttng_opt_verbose
;
79 LTTNG_EXPORT
int lttng_opt_mi
;
82 * Copy domain to lttcomm_session_msg domain.
84 * If domain is unknown, default domain will be the kernel.
86 void lttng_ctl_copy_lttng_domain(struct lttng_domain
*dst
,
87 struct lttng_domain
*src
)
91 case LTTNG_DOMAIN_KERNEL
:
92 case LTTNG_DOMAIN_UST
:
93 case LTTNG_DOMAIN_JUL
:
94 case LTTNG_DOMAIN_LOG4J
:
95 case LTTNG_DOMAIN_PYTHON
:
96 memcpy(dst
, src
, sizeof(struct lttng_domain
));
99 memset(dst
, 0, sizeof(struct lttng_domain
));
106 * Send lttcomm_session_msg to the session daemon.
108 * On success, returns the number of bytes sent (>=0)
109 * On error, returns -1
111 static int send_session_msg(struct lttcomm_session_msg
*lsm
)
116 ret
= -LTTNG_ERR_NO_SESSIOND
;
120 DBG("LSM cmd type: '%s' (%d)", lttcomm_sessiond_command_str((lttcomm_sessiond_command
) lsm
->cmd_type
),
123 ret
= lttcomm_send_creds_unix_sock(sessiond_socket
, lsm
,
124 sizeof(struct lttcomm_session_msg
));
126 ret
= -LTTNG_ERR_FATAL
;
134 * Send var len data to the session daemon.
136 * On success, returns the number of bytes sent (>=0)
137 * On error, returns -1
139 static int send_session_varlen(const void *data
, size_t len
)
144 ret
= -LTTNG_ERR_NO_SESSIOND
;
153 ret
= lttcomm_send_unix_sock(sessiond_socket
, data
, len
);
155 ret
= -LTTNG_ERR_FATAL
;
163 * Send file descriptors to the session daemon.
165 * On success, returns the number of bytes sent (>=0)
166 * On error, returns -1
168 static int send_session_fds(const int *fds
, size_t nb_fd
)
173 ret
= -LTTNG_ERR_NO_SESSIOND
;
177 if (!fds
|| !nb_fd
) {
182 ret
= lttcomm_send_fds_unix_sock(sessiond_socket
, fds
, nb_fd
);
184 ret
= -LTTNG_ERR_FATAL
;
192 * Receive data from the sessiond socket.
194 * On success, returns the number of bytes received (>=0)
195 * On error, returns a negative lttng_error_code.
197 static int recv_data_sessiond(void *buf
, size_t len
)
201 LTTNG_ASSERT(len
> 0);
204 ret
= -LTTNG_ERR_NO_SESSIOND
;
208 ret
= lttcomm_recv_unix_sock(sessiond_socket
, buf
, len
);
210 ret
= -LTTNG_ERR_FATAL
;
211 } else if (ret
== 0) {
212 ret
= -LTTNG_ERR_NO_SESSIOND
;
220 * Receive a payload from the session daemon by appending to an existing
222 * On success, returns the number of bytes received (>=0)
223 * On error, returns a negative lttng_error_code.
225 static int recv_payload_sessiond(struct lttng_payload
*payload
, size_t len
)
228 const size_t original_payload_size
= payload
->buffer
.size
;
230 ret
= lttng_dynamic_buffer_set_size(
231 &payload
->buffer
, payload
->buffer
.size
+ len
);
233 ret
= -LTTNG_ERR_NOMEM
;
237 ret
= recv_data_sessiond(
238 payload
->buffer
.data
+ original_payload_size
, len
);
244 * Check if we are in the specified group.
246 * If yes return 1, else return -1.
248 int lttng_check_tracing_group(void)
250 gid_t
*grp_list
, tracing_gid
;
251 int grp_list_size
, grp_id
, i
;
253 const char *grp_name
= tracing_group
;
255 /* Get GID of group 'tracing' */
256 if (utils_get_group_id(grp_name
, false, &tracing_gid
)) {
257 /* If grp_tracing is NULL, the group does not exist. */
261 /* Get number of supplementary group IDs */
262 grp_list_size
= getgroups(0, NULL
);
263 if (grp_list_size
< 0) {
268 /* Alloc group list of the right size */
269 grp_list
= (gid_t
*) zmalloc(grp_list_size
* sizeof(gid_t
));
274 grp_id
= getgroups(grp_list_size
, grp_list
);
280 for (i
= 0; i
< grp_list_size
; i
++) {
281 if (grp_list
[i
] == tracing_gid
) {
294 static enum lttng_error_code
check_enough_available_memory(
295 uint64_t num_bytes_requested_per_cpu
)
298 enum lttng_error_code ret_code
;
300 uint64_t best_mem_info
;
301 uint64_t num_bytes_requested_total
;
304 * Get the number of CPU currently online to compute the amount of
305 * memory needed to create a buffer for every CPU.
307 num_cpu
= sysconf(_SC_NPROCESSORS_ONLN
);
309 ret_code
= LTTNG_ERR_FATAL
;
313 if (num_bytes_requested_per_cpu
> UINT64_MAX
/ (uint64_t) num_cpu
) {
315 ret_code
= LTTNG_ERR_OVERFLOW
;
319 num_bytes_requested_total
=
320 num_bytes_requested_per_cpu
* (uint64_t) num_cpu
;
323 * Try to get the `MemAvail` field of `/proc/meminfo`. This is the most
324 * reliable estimate we can get but it is only exposed by the kernel
325 * since 3.14. (See Linux kernel commit:
326 * 34e431b0ae398fc54ea69ff85ec700722c9da773)
328 ret
= utils_get_memory_available(&best_mem_info
);
334 * As a backup plan, use `MemTotal` field of `/proc/meminfo`. This
335 * is a sanity check for obvious user error.
337 ret
= utils_get_memory_total(&best_mem_info
);
342 /* No valid source of information. */
343 ret_code
= LTTNG_ERR_NOMEM
;
347 if (best_mem_info
>= num_bytes_requested_total
) {
350 ret_code
= LTTNG_ERR_NOMEM
;
357 * Try connect to session daemon with sock_path.
359 * Return 0 on success, else -1
361 static int try_connect_sessiond(const char *sock_path
)
365 /* If socket exist, we check if the daemon listens for connect. */
366 ret
= access(sock_path
, F_OK
);
372 ret
= lttcomm_connect_unix_sock(sock_path
);
378 ret
= lttcomm_close_unix_sock(ret
);
380 PERROR("lttcomm_close_unix_sock");
390 * Set sessiond socket path by putting it in the global sessiond_sock_path
393 * Returns 0 on success, negative value on failure (the sessiond socket path
394 * is somehow too long or ENOMEM).
396 static int set_session_daemon_path(void)
398 int in_tgroup
= 0; /* In tracing group. */
404 /* Are we in the tracing group ? */
405 in_tgroup
= lttng_check_tracing_group();
408 if ((uid
== 0) || in_tgroup
== 1) {
409 const int ret
= lttng_strncpy(sessiond_sock_path
,
410 DEFAULT_GLOBAL_CLIENT_UNIX_SOCK
,
411 sizeof(sessiond_sock_path
));
423 ret
= try_connect_sessiond(sessiond_sock_path
);
427 /* Global session daemon not available... */
429 /* ...or not in tracing group (and not root), default */
432 * With GNU C < 2.1, snprintf returns -1 if the target buffer
434 * With GNU C >= 2.1, snprintf returns the required size
435 * (excluding closing null)
437 ret
= snprintf(sessiond_sock_path
, sizeof(sessiond_sock_path
),
438 DEFAULT_HOME_CLIENT_UNIX_SOCK
, utils_get_home_dir());
439 if ((ret
< 0) || (ret
>= sizeof(sessiond_sock_path
))) {
451 * Connect to the LTTng session daemon.
453 * On success, return the socket's file descriptor. On error, return -1.
455 int connect_sessiond(void)
459 ret
= set_session_daemon_path();
464 /* Connect to the sesssion daemon. */
465 ret
= lttcomm_connect_unix_sock(sessiond_sock_path
);
476 static void reset_global_sessiond_connection_state(void)
478 sessiond_socket
= -1;
483 * Clean disconnect from the session daemon.
485 * On success, return 0. On error, return -1.
487 static int disconnect_sessiond(void)
492 ret
= lttcomm_close_unix_sock(sessiond_socket
);
493 reset_global_sessiond_connection_state();
499 static int recv_sessiond_optional_data(size_t len
, void **user_buf
,
507 ret
= -LTTNG_ERR_INVALID
;
517 ret
= recv_data_sessiond(buf
, len
);
523 ret
= -LTTNG_ERR_INVALID
;
527 /* Move ownership of command header buffer to user. */
532 /* No command header. */
548 * Ask the session daemon a specific command and put the data into buf.
549 * Takes extra var. len. data and file descriptors as input to send to the
552 * Return size of data (only payload, not header) or a negative error code.
554 int lttng_ctl_ask_sessiond_fds_varlen(struct lttcomm_session_msg
*lsm
,
555 const int *fds
, size_t nb_fd
, const void *vardata
,
556 size_t vardata_len
, void **user_payload_buf
,
557 void **user_cmd_header_buf
, size_t *user_cmd_header_len
)
561 struct lttcomm_lttng_msg llm
;
563 ret
= connect_sessiond();
565 ret
= -LTTNG_ERR_NO_SESSIOND
;
568 sessiond_socket
= ret
;
572 ret
= send_session_msg(lsm
);
574 /* Ret value is a valid lttng error code. */
577 /* Send var len data */
578 ret
= send_session_varlen(vardata
, vardata_len
);
580 /* Ret value is a valid lttng error code. */
585 ret
= send_session_fds(fds
, nb_fd
);
587 /* Ret value is a valid lttng error code. */
591 /* Get header from data transmission */
592 ret
= recv_data_sessiond(&llm
, sizeof(llm
));
594 /* Ret value is a valid lttng error code. */
598 /* Check error code if OK */
599 if (llm
.ret_code
!= LTTNG_OK
) {
604 /* Get command header from data transmission */
605 ret
= recv_sessiond_optional_data(llm
.cmd_header_size
,
606 user_cmd_header_buf
, user_cmd_header_len
);
611 /* Get payload from data transmission */
612 ret
= recv_sessiond_optional_data(llm
.data_size
, user_payload_buf
,
621 disconnect_sessiond();
625 int lttng_ctl_ask_sessiond_payload(struct lttng_payload_view
*message
,
626 struct lttng_payload
*reply
)
629 struct lttcomm_lttng_msg llm
;
630 const int fd_count
= lttng_payload_view_get_fd_handle_count(message
);
632 LTTNG_ASSERT(reply
->buffer
.size
== 0);
633 LTTNG_ASSERT(lttng_dynamic_pointer_array_get_count(&reply
->_fd_handles
) == 0);
635 ret
= connect_sessiond();
637 ret
= -LTTNG_ERR_NO_SESSIOND
;
640 sessiond_socket
= ret
;
644 /* Send command to session daemon */
645 ret
= lttcomm_send_creds_unix_sock(sessiond_socket
, message
->buffer
.data
,
646 message
->buffer
.size
);
648 ret
= -LTTNG_ERR_FATAL
;
653 ret
= lttcomm_send_payload_view_fds_unix_sock(sessiond_socket
,
656 ret
= -LTTNG_ERR_FATAL
;
661 /* Get header from data transmission */
662 ret
= recv_payload_sessiond(reply
, sizeof(llm
));
664 /* Ret value is a valid lttng error code. */
668 llm
= *((typeof(llm
) *) reply
->buffer
.data
);
670 /* Check error code if OK */
671 if (llm
.ret_code
!= LTTNG_OK
) {
672 if (llm
.ret_code
< LTTNG_OK
|| llm
.ret_code
>= LTTNG_ERR_NR
) {
673 /* Invalid error code received. */
674 ret
= -LTTNG_ERR_UNK
;
681 if (llm
.cmd_header_size
> 0) {
682 ret
= recv_payload_sessiond(reply
, llm
.cmd_header_size
);
688 /* Get command header from data transmission */
689 if (llm
.data_size
> 0) {
690 ret
= recv_payload_sessiond(reply
, llm
.data_size
);
696 if (llm
.fd_count
> 0) {
697 ret
= lttcomm_recv_payload_fds_unix_sock(
698 sessiond_socket
, llm
.fd_count
, reply
);
704 /* Don't return the llm header to the caller. */
705 memmove(reply
->buffer
.data
, reply
->buffer
.data
+ sizeof(llm
),
706 reply
->buffer
.size
- sizeof(llm
));
707 ret
= lttng_dynamic_buffer_set_size(
708 &reply
->buffer
, reply
->buffer
.size
- sizeof(llm
));
710 /* Can't happen as size is reduced. */
714 ret
= reply
->buffer
.size
;
717 disconnect_sessiond();
722 * Create lttng handle and return pointer.
724 * The returned pointer will be NULL in case of malloc() error.
726 struct lttng_handle
*lttng_create_handle(const char *session_name
,
727 struct lttng_domain
*domain
)
730 struct lttng_handle
*handle
= NULL
;
732 handle
= (lttng_handle
*) zmalloc(sizeof(struct lttng_handle
));
733 if (handle
== NULL
) {
734 PERROR("malloc handle");
738 /* Copy session name */
739 ret
= lttng_strncpy(handle
->session_name
, session_name
? : "",
740 sizeof(handle
->session_name
));
745 /* Copy lttng domain or leave initialized to 0. */
747 lttng_ctl_copy_lttng_domain(&handle
->domain
, domain
);
758 * Destroy handle by free(3) the pointer.
760 void lttng_destroy_handle(struct lttng_handle
*handle
)
766 * Register an outside consumer.
768 * Returns size of returned session payload data or a negative error code.
770 int lttng_register_consumer(struct lttng_handle
*handle
,
771 const char *socket_path
)
774 struct lttcomm_session_msg lsm
;
776 if (handle
== NULL
|| socket_path
== NULL
) {
777 ret
= -LTTNG_ERR_INVALID
;
781 memset(&lsm
, 0, sizeof(lsm
));
782 lsm
.cmd_type
= LTTNG_REGISTER_CONSUMER
;
783 ret
= lttng_strncpy(lsm
.session
.name
, handle
->session_name
,
784 sizeof(lsm
.session
.name
));
786 ret
= -LTTNG_ERR_INVALID
;
790 COPY_DOMAIN_PACKED(lsm
.domain
, handle
->domain
);
792 ret
= lttng_strncpy(lsm
.u
.reg
.path
, socket_path
,
793 sizeof(lsm
.u
.reg
.path
));
795 ret
= -LTTNG_ERR_INVALID
;
799 ret
= lttng_ctl_ask_sessiond(&lsm
, NULL
);
805 * Start tracing for all traces of the session.
807 * Returns size of returned session payload data or a negative error code.
809 int lttng_start_tracing(const char *session_name
)
812 struct lttcomm_session_msg lsm
;
814 if (session_name
== NULL
) {
815 ret
= -LTTNG_ERR_INVALID
;
819 memset(&lsm
, 0, sizeof(lsm
));
820 lsm
.cmd_type
= LTTNG_START_TRACE
;
822 ret
= lttng_strncpy(lsm
.session
.name
, session_name
,
823 sizeof(lsm
.session
.name
));
825 ret
= -LTTNG_ERR_INVALID
;
829 ret
= lttng_ctl_ask_sessiond(&lsm
, NULL
);
835 * Stop tracing for all traces of the session.
837 static int _lttng_stop_tracing(const char *session_name
, int wait
)
840 struct lttcomm_session_msg lsm
;
842 if (session_name
== NULL
) {
843 ret
= -LTTNG_ERR_INVALID
;
847 memset(&lsm
, 0, sizeof(lsm
));
848 lsm
.cmd_type
= LTTNG_STOP_TRACE
;
850 ret
= lttng_strncpy(lsm
.session
.name
, session_name
,
851 sizeof(lsm
.session
.name
));
853 ret
= -LTTNG_ERR_INVALID
;
857 ret
= lttng_ctl_ask_sessiond(&lsm
, NULL
);
858 if (ret
< 0 && ret
!= -LTTNG_ERR_TRACE_ALREADY_STOPPED
) {
866 /* Check for data availability */
868 data_ret
= lttng_data_pending(session_name
);
870 /* Return the data available call error. */
876 * Data sleep time before retrying (in usec). Don't sleep if the
877 * call returned value indicates availability.
880 usleep(DEFAULT_DATA_AVAILABILITY_WAIT_TIME_US
);
882 } while (data_ret
!= 0);
890 * Stop tracing and wait for data availability.
892 int lttng_stop_tracing(const char *session_name
)
894 return _lttng_stop_tracing(session_name
, 1);
898 * Stop tracing but _don't_ wait for data availability.
900 int lttng_stop_tracing_no_wait(const char *session_name
)
902 return _lttng_stop_tracing(session_name
, 0);
906 * Add context to a channel.
908 * If the given channel is NULL, add the contexts to all channels.
909 * The event_name param is ignored.
911 * Returns the size of the returned payload data or a negative error code.
913 int lttng_add_context(struct lttng_handle
*handle
,
914 struct lttng_event_context
*ctx
,
915 const char *event_name
__attribute__((unused
)),
916 const char *channel_name
)
919 struct lttcomm_session_msg lsm
= { .cmd_type
= LTTNG_ADD_CONTEXT
};
920 struct lttng_payload payload
;
922 lttng_payload_init(&payload
);
924 /* Safety check. Both are mandatory. */
925 if (handle
== NULL
|| ctx
== NULL
) {
926 ret
= -LTTNG_ERR_INVALID
;
930 ret
= lttng_dynamic_buffer_set_size(&payload
.buffer
, sizeof(lsm
));
932 ret
= -LTTNG_ERR_NOMEM
;
936 /* If no channel name, send empty string. */
937 ret
= lttng_strncpy(lsm
.u
.context
.channel_name
, channel_name
?: "",
938 sizeof(lsm
.u
.context
.channel_name
));
940 ret
= -LTTNG_ERR_INVALID
;
944 COPY_DOMAIN_PACKED(lsm
.domain
, handle
->domain
);
945 ret
= lttng_strncpy(lsm
.session
.name
, handle
->session_name
,
946 sizeof(lsm
.session
.name
));
948 ret
= -LTTNG_ERR_INVALID
;
952 ret
= lttng_event_context_serialize(ctx
, &payload
);
954 ret
= -LTTNG_ERR_INVALID
;
958 lsm
.u
.context
.length
= payload
.buffer
.size
- sizeof(lsm
);
960 /* Update message header. */
961 memcpy(payload
.buffer
.data
, &lsm
, sizeof(lsm
));
964 struct lttng_payload reply
;
965 struct lttng_payload_view payload_view
=
966 lttng_payload_view_from_payload(&payload
, 0,
969 lttng_payload_init(&reply
);
970 ret
= lttng_ctl_ask_sessiond_payload(&payload_view
, &reply
);
971 lttng_payload_reset(&reply
);
978 lttng_payload_reset(&payload
);
983 * Enable event(s) for a channel.
985 * If no event name is specified, all events are enabled.
986 * If no channel name is specified, the default 'channel0' is used.
988 * Returns size of returned session payload data or a negative error code.
990 int lttng_enable_event(struct lttng_handle
*handle
,
991 struct lttng_event
*ev
, const char *channel_name
)
993 return lttng_enable_event_with_exclusions(handle
, ev
, channel_name
,
998 * Create or enable an event with a filter expression.
1000 * Return negative error value on error.
1001 * Return size of returned session payload data if OK.
1003 int lttng_enable_event_with_filter(struct lttng_handle
*handle
,
1004 struct lttng_event
*event
, const char *channel_name
,
1005 const char *filter_expression
)
1007 return lttng_enable_event_with_exclusions(handle
, event
, channel_name
,
1008 filter_expression
, 0, NULL
);
1012 * Depending on the event, return a newly allocated agent filter expression or
1013 * NULL if not applicable.
1015 * An event with NO loglevel and the name is * will return NULL.
1017 static char *set_agent_filter(const char *filter
, struct lttng_event
*ev
)
1020 char *agent_filter
= NULL
;
1024 /* Don't add filter for the '*' event. */
1025 if (strcmp(ev
->name
, "*") != 0) {
1027 err
= asprintf(&agent_filter
, "(%s) && (logger_name == \"%s\")", filter
,
1030 err
= asprintf(&agent_filter
, "logger_name == \"%s\"", ev
->name
);
1038 /* Add loglevel filtering if any for the JUL domain. */
1039 if (ev
->loglevel_type
!= LTTNG_EVENT_LOGLEVEL_ALL
) {
1042 if (ev
->loglevel_type
== LTTNG_EVENT_LOGLEVEL_RANGE
) {
1048 if (filter
|| agent_filter
) {
1051 err
= asprintf(&new_filter
, "(%s) && (int_loglevel %s %d)",
1052 agent_filter
? agent_filter
: filter
, op
,
1057 agent_filter
= new_filter
;
1059 err
= asprintf(&agent_filter
, "int_loglevel %s %d", op
,
1068 return agent_filter
;
1075 * Enable event(s) for a channel, possibly with exclusions and a filter.
1076 * If no event name is specified, all events are enabled.
1077 * If no channel name is specified, the default name is used.
1078 * If filter expression is not NULL, the filter is set for the event.
1079 * If exclusion count is not zero, the exclusions are set for the event.
1080 * Returns size of returned session payload data or a negative error code.
1082 int lttng_enable_event_with_exclusions(struct lttng_handle
*handle
,
1083 struct lttng_event
*ev
, const char *channel_name
,
1084 const char *original_filter_expression
,
1085 int exclusion_count
, char **exclusion_list
)
1087 struct lttcomm_session_msg lsm
= { .cmd_type
= LTTNG_ENABLE_EVENT
};
1088 struct lttng_payload payload
;
1090 unsigned int free_filter_expression
= 0;
1091 struct filter_parser_ctx
*ctx
= NULL
;
1092 size_t bytecode_len
= 0;
1095 * We have either a filter or some exclusions, so we need to set up
1096 * a variable-length payload from where to send the data.
1098 lttng_payload_init(&payload
);
1101 * Cast as non-const since we may replace the filter expression
1102 * by a dynamically allocated string. Otherwise, the original
1103 * string is not modified.
1105 char *filter_expression
= (char *) original_filter_expression
;
1107 if (handle
== NULL
|| ev
== NULL
) {
1108 ret
= -LTTNG_ERR_INVALID
;
1113 * Empty filter string will always be rejected by the parser
1114 * anyway, so treat this corner-case early to eliminate
1115 * lttng_fmemopen error for 0-byte allocation.
1117 if (filter_expression
&& filter_expression
[0] == '\0') {
1118 ret
= -LTTNG_ERR_INVALID
;
1122 if (ev
->name
[0] == '\0') {
1123 /* Enable all events. */
1124 ret
= lttng_strncpy(ev
->name
, "*", sizeof(ev
->name
));
1125 LTTNG_ASSERT(ret
== 0);
1128 /* Parse filter expression. */
1129 if (filter_expression
!= NULL
|| handle
->domain
.type
== LTTNG_DOMAIN_JUL
1130 || handle
->domain
.type
== LTTNG_DOMAIN_LOG4J
1131 || handle
->domain
.type
== LTTNG_DOMAIN_PYTHON
) {
1132 if (handle
->domain
.type
== LTTNG_DOMAIN_JUL
||
1133 handle
->domain
.type
== LTTNG_DOMAIN_LOG4J
||
1134 handle
->domain
.type
== LTTNG_DOMAIN_PYTHON
) {
1137 /* Setup agent filter if needed. */
1138 agent_filter
= set_agent_filter(filter_expression
, ev
);
1139 if (!agent_filter
) {
1140 if (!filter_expression
) {
1142 * No JUL and no filter, just skip
1149 * With an agent filter, the original filter has
1150 * been added to it thus replace the filter
1153 filter_expression
= agent_filter
;
1154 free_filter_expression
= 1;
1158 if (strnlen(filter_expression
, LTTNG_FILTER_MAX_LEN
) ==
1159 LTTNG_FILTER_MAX_LEN
) {
1160 ret
= -LTTNG_ERR_FILTER_INVAL
;
1164 ret
= filter_parser_ctx_create_from_filter_expression(filter_expression
, &ctx
);
1169 bytecode_len
= bytecode_get_len(&ctx
->bytecode
->b
) +
1170 sizeof(ctx
->bytecode
->b
);
1171 if (bytecode_len
> LTTNG_FILTER_MAX_LEN
) {
1172 ret
= -LTTNG_ERR_FILTER_INVAL
;
1178 ret
= lttng_event_serialize(ev
, exclusion_count
, exclusion_list
,
1179 filter_expression
, bytecode_len
,
1180 (ctx
&& bytecode_len
) ? &ctx
->bytecode
->b
: NULL
,
1183 ret
= -LTTNG_ERR_INVALID
;
1187 /* If no channel name, send empty string. */
1188 ret
= lttng_strncpy(lsm
.u
.enable
.channel_name
, channel_name
?: "",
1189 sizeof(lsm
.u
.enable
.channel_name
));
1191 ret
= -LTTNG_ERR_INVALID
;
1196 COPY_DOMAIN_PACKED(lsm
.domain
, handle
->domain
);
1199 ret
= lttng_strncpy(lsm
.session
.name
, handle
->session_name
,
1200 sizeof(lsm
.session
.name
));
1202 ret
= -LTTNG_ERR_INVALID
;
1206 /* Length of the serialized event. */
1207 lsm
.u
.enable
.length
= (uint32_t) payload
.buffer
.size
;
1210 struct lttng_payload_view view
= lttng_payload_view_from_payload(
1212 int fd_count
= lttng_payload_view_get_fd_handle_count(&view
);
1219 LTTNG_ASSERT(fd_count
== 0 || fd_count
== 1);
1220 if (fd_count
== 1) {
1221 struct fd_handle
*h
=
1222 lttng_payload_view_pop_fd_handle(&view
);
1228 fd_to_send
= fd_handle_get_fd(h
);
1232 lsm
.fd_count
= fd_count
;
1234 ret
= lttng_ctl_ask_sessiond_fds_varlen(&lsm
,
1235 fd_count
? &fd_to_send
: NULL
, fd_count
,
1236 view
.buffer
.size
? view
.buffer
.data
: NULL
,
1237 view
.buffer
.size
, NULL
, NULL
, 0);
1241 if (filter_expression
&& ctx
) {
1242 filter_bytecode_free(ctx
);
1243 filter_ir_free(ctx
);
1244 filter_parser_ctx_free(ctx
);
1246 if (free_filter_expression
) {
1248 * The filter expression has been replaced and must be freed as
1249 * it is not the original filter expression received as a
1252 free(filter_expression
);
1255 * Return directly to the caller and don't ask the sessiond since
1256 * something went wrong in the parsing of data above.
1258 lttng_payload_reset(&payload
);
1262 int lttng_disable_event_ext(struct lttng_handle
*handle
,
1263 struct lttng_event
*ev
, const char *channel_name
,
1264 const char *original_filter_expression
)
1266 struct lttcomm_session_msg lsm
= { .cmd_type
= LTTNG_DISABLE_EVENT
};
1267 struct lttng_payload payload
;
1269 unsigned int free_filter_expression
= 0;
1270 struct filter_parser_ctx
*ctx
= NULL
;
1271 size_t bytecode_len
= 0;
1274 * We have either a filter or some exclusions, so we need to set up
1275 * a variable-length payload from where to send the data.
1277 lttng_payload_init(&payload
);
1280 * Cast as non-const since we may replace the filter expression
1281 * by a dynamically allocated string. Otherwise, the original
1282 * string is not modified.
1284 char *filter_expression
= (char *) original_filter_expression
;
1286 if (handle
== NULL
|| ev
== NULL
) {
1287 ret
= -LTTNG_ERR_INVALID
;
1292 * Empty filter string will always be rejected by the parser
1293 * anyway, so treat this corner-case early to eliminate
1294 * lttng_fmemopen error for 0-byte allocation.
1296 if (filter_expression
&& filter_expression
[0] == '\0') {
1297 ret
= -LTTNG_ERR_INVALID
;
1301 /* Parse filter expression. */
1302 if (filter_expression
!= NULL
|| handle
->domain
.type
== LTTNG_DOMAIN_JUL
1303 || handle
->domain
.type
== LTTNG_DOMAIN_LOG4J
1304 || handle
->domain
.type
== LTTNG_DOMAIN_PYTHON
) {
1305 if (handle
->domain
.type
== LTTNG_DOMAIN_JUL
||
1306 handle
->domain
.type
== LTTNG_DOMAIN_LOG4J
||
1307 handle
->domain
.type
== LTTNG_DOMAIN_PYTHON
) {
1310 /* Setup agent filter if needed. */
1311 agent_filter
= set_agent_filter(filter_expression
, ev
);
1312 if (!agent_filter
) {
1313 if (!filter_expression
) {
1315 * No JUL and no filter, just skip
1322 * With an agent filter, the original filter has
1323 * been added to it thus replace the filter
1326 filter_expression
= agent_filter
;
1327 free_filter_expression
= 1;
1331 if (strnlen(filter_expression
, LTTNG_FILTER_MAX_LEN
) ==
1332 LTTNG_FILTER_MAX_LEN
) {
1333 ret
= -LTTNG_ERR_FILTER_INVAL
;
1337 ret
= filter_parser_ctx_create_from_filter_expression(filter_expression
, &ctx
);
1342 bytecode_len
= bytecode_get_len(&ctx
->bytecode
->b
) +
1343 sizeof(ctx
->bytecode
->b
);
1344 if (bytecode_len
> LTTNG_FILTER_MAX_LEN
) {
1345 ret
= -LTTNG_ERR_FILTER_INVAL
;
1351 ret
= lttng_event_serialize(ev
, 0, NULL
,
1352 filter_expression
, bytecode_len
,
1353 (ctx
&& bytecode_len
) ? &ctx
->bytecode
->b
: NULL
,
1356 ret
= -LTTNG_ERR_INVALID
;
1360 /* If no channel name, send empty string. */
1361 ret
= lttng_strncpy(lsm
.u
.disable
.channel_name
, channel_name
?: "",
1362 sizeof(lsm
.u
.disable
.channel_name
));
1364 ret
= -LTTNG_ERR_INVALID
;
1369 COPY_DOMAIN_PACKED(lsm
.domain
, handle
->domain
);
1372 ret
= lttng_strncpy(lsm
.session
.name
, handle
->session_name
,
1373 sizeof(lsm
.session
.name
));
1375 ret
= -LTTNG_ERR_INVALID
;
1379 /* Length of the serialized event. */
1380 lsm
.u
.disable
.length
= (uint32_t) payload
.buffer
.size
;
1383 struct lttng_payload_view view
= lttng_payload_view_from_payload(
1385 int fd_count
= lttng_payload_view_get_fd_handle_count(&view
);
1392 LTTNG_ASSERT(fd_count
== 0 || fd_count
== 1);
1393 if (fd_count
== 1) {
1394 struct fd_handle
*h
=
1395 lttng_payload_view_pop_fd_handle(&view
);
1401 fd_to_send
= fd_handle_get_fd(h
);
1405 ret
= lttng_ctl_ask_sessiond_fds_varlen(&lsm
,
1406 fd_count
? &fd_to_send
: NULL
, fd_count
,
1407 view
.buffer
.size
? view
.buffer
.data
: NULL
,
1408 view
.buffer
.size
, NULL
, NULL
, 0);
1412 if (filter_expression
&& ctx
) {
1413 filter_bytecode_free(ctx
);
1414 filter_ir_free(ctx
);
1415 filter_parser_ctx_free(ctx
);
1417 if (free_filter_expression
) {
1419 * The filter expression has been replaced and must be freed as
1420 * it is not the original filter expression received as a
1423 free(filter_expression
);
1426 * Return directly to the caller and don't ask the sessiond since
1427 * something went wrong in the parsing of data above.
1429 lttng_payload_reset(&payload
);
1434 * Disable event(s) of a channel and domain.
1435 * If no event name is specified, all events are disabled.
1436 * If no channel name is specified, the default 'channel0' is used.
1437 * Returns size of returned session payload data or a negative error code.
1439 int lttng_disable_event(struct lttng_handle
*handle
, const char *name
,
1440 const char *channel_name
)
1443 struct lttng_event ev
;
1445 memset(&ev
, 0, sizeof(ev
));
1447 ev
.type
= LTTNG_EVENT_ALL
;
1448 ret
= lttng_strncpy(ev
.name
, name
?: "", sizeof(ev
.name
));
1450 ret
= -LTTNG_ERR_INVALID
;
1454 ret
= lttng_disable_event_ext(handle
, &ev
, channel_name
, NULL
);
1459 struct lttng_channel
*lttng_channel_create(struct lttng_domain
*domain
)
1461 struct lttng_channel
*channel
= NULL
;
1467 /* Validate domain. */
1468 switch (domain
->type
) {
1469 case LTTNG_DOMAIN_UST
:
1470 switch (domain
->buf_type
) {
1471 case LTTNG_BUFFER_PER_UID
:
1472 case LTTNG_BUFFER_PER_PID
:
1478 case LTTNG_DOMAIN_KERNEL
:
1479 if (domain
->buf_type
!= LTTNG_BUFFER_GLOBAL
) {
1487 channel
= lttng_channel_create_internal();
1492 lttng_channel_set_default_attr(domain
, &channel
->attr
);
1497 void lttng_channel_destroy(struct lttng_channel
*channel
)
1503 if (channel
->attr
.extended
.ptr
) {
1504 free(channel
->attr
.extended
.ptr
);
1510 * Enable channel per domain
1511 * Returns size of returned session payload data or a negative error code.
1513 int lttng_enable_channel(struct lttng_handle
*handle
,
1514 struct lttng_channel
*in_chan
)
1516 enum lttng_error_code ret_code
;
1518 struct lttng_dynamic_buffer buffer
;
1519 struct lttcomm_session_msg lsm
;
1520 uint64_t total_buffer_size_needed_per_cpu
= 0;
1521 struct lttng_channel
*channel
= NULL
;
1523 lttng_dynamic_buffer_init(&buffer
);
1525 /* NULL arguments are forbidden. No default values. */
1526 if (handle
== NULL
|| in_chan
== NULL
) {
1527 ret
= -LTTNG_ERR_INVALID
;
1532 * Verify that the amount of memory required to create the requested
1533 * buffer is available on the system at the moment.
1535 if (in_chan
->attr
.num_subbuf
>
1536 UINT64_MAX
/ in_chan
->attr
.subbuf_size
) {
1538 ret
= -LTTNG_ERR_OVERFLOW
;
1542 total_buffer_size_needed_per_cpu
=
1543 in_chan
->attr
.num_subbuf
* in_chan
->attr
.subbuf_size
;
1544 ret_code
= check_enough_available_memory(
1545 total_buffer_size_needed_per_cpu
);
1546 if (ret_code
!= LTTNG_OK
) {
1551 /* Copy the channel for easier manipulation. */
1552 channel
= lttng_channel_copy(in_chan
);
1554 ret
= -LTTNG_ERR_NOMEM
;
1558 /* Populate the channel extended attribute if necessary. */
1559 if (!channel
->attr
.extended
.ptr
) {
1560 struct lttng_channel_extended
*extended
=
1561 (struct lttng_channel_extended
*) zmalloc(
1565 ret
= -LTTNG_ERR_NOMEM
;
1568 lttng_channel_set_default_extended_attr(
1569 &handle
->domain
, extended
);
1570 channel
->attr
.extended
.ptr
= extended
;
1573 /* Prepare the payload */
1574 memset(&lsm
, 0, sizeof(lsm
));
1576 lsm
.cmd_type
= LTTNG_ENABLE_CHANNEL
;
1577 COPY_DOMAIN_PACKED(lsm
.domain
, handle
->domain
);
1579 ret
= lttng_strncpy(lsm
.session
.name
, handle
->session_name
,
1580 sizeof(lsm
.session
.name
));
1582 ret
= -LTTNG_ERR_INVALID
;
1586 ret
= lttng_channel_serialize(channel
, &buffer
);
1588 ret
= -LTTNG_ERR_FATAL
;
1592 lsm
.u
.channel
.length
= buffer
.size
;
1594 ret
= lttng_ctl_ask_sessiond_varlen_no_cmd_header(
1595 &lsm
, buffer
.data
, buffer
.size
, NULL
);
1597 lttng_channel_destroy(channel
);
1598 lttng_dynamic_buffer_reset(&buffer
);
1603 * All tracing will be stopped for registered events of the channel.
1604 * Returns size of returned session payload data or a negative error code.
1606 int lttng_disable_channel(struct lttng_handle
*handle
, const char *name
)
1609 struct lttcomm_session_msg lsm
;
1611 /* Safety check. Both are mandatory. */
1612 if (handle
== NULL
|| name
== NULL
) {
1613 return -LTTNG_ERR_INVALID
;
1616 memset(&lsm
, 0, sizeof(lsm
));
1618 lsm
.cmd_type
= LTTNG_DISABLE_CHANNEL
;
1620 ret
= lttng_strncpy(lsm
.u
.disable
.channel_name
, name
,
1621 sizeof(lsm
.u
.disable
.channel_name
));
1623 ret
= -LTTNG_ERR_INVALID
;
1627 COPY_DOMAIN_PACKED(lsm
.domain
, handle
->domain
);
1629 ret
= lttng_strncpy(lsm
.session
.name
, handle
->session_name
,
1630 sizeof(lsm
.session
.name
));
1632 ret
= -LTTNG_ERR_INVALID
;
1636 ret
= lttng_ctl_ask_sessiond(&lsm
, NULL
);
1642 * Lists all available tracepoints of domain.
1643 * Sets the contents of the events array.
1644 * Returns the number of lttng_event entries in events;
1645 * on error, returns a negative value.
1647 int lttng_list_tracepoints(struct lttng_handle
*handle
,
1648 struct lttng_event
**events
)
1650 enum lttng_error_code ret_code
;
1651 int ret
, total_payload_received
;
1652 char *reception_buffer
= NULL
;
1653 struct lttcomm_session_msg lsm
= { .cmd_type
= LTTNG_LIST_TRACEPOINTS
};
1654 struct lttcomm_list_command_header
*cmd_header
= NULL
;
1655 size_t cmd_header_len
;
1656 unsigned int nb_events
= 0;
1658 if (handle
== NULL
) {
1659 ret
= -LTTNG_ERR_INVALID
;
1663 COPY_DOMAIN_PACKED(lsm
.domain
, handle
->domain
);
1665 ret
= lttng_ctl_ask_sessiond_fds_varlen(&lsm
, NULL
, 0, NULL
, 0,
1666 (void **) &reception_buffer
, (void **) &cmd_header
,
1672 total_payload_received
= ret
;
1675 ret
= -LTTNG_ERR_UNK
;
1679 if (cmd_header
->count
> INT_MAX
) {
1680 ret
= -LTTNG_ERR_OVERFLOW
;
1684 nb_events
= (unsigned int) cmd_header
->count
;
1687 struct lttng_buffer_view events_view
=
1688 lttng_buffer_view_init(reception_buffer
, 0,
1689 total_payload_received
);
1690 struct lttng_payload_view events_payload_view
=
1691 lttng_payload_view_from_buffer_view(
1692 &events_view
, 0, -1);
1694 ret_code
= lttng_events_create_and_flatten_from_payload(
1695 &events_payload_view
, nb_events
, events
);
1696 if (ret_code
!= LTTNG_OK
) {
1702 ret
= (int) nb_events
;
1706 free(reception_buffer
);
1711 * Lists all available tracepoint fields of domain.
1712 * Sets the contents of the event field array.
1713 * Returns the number of lttng_event_field entries in events;
1714 * on error, returns a negative value.
1716 int lttng_list_tracepoint_fields(struct lttng_handle
*handle
,
1717 struct lttng_event_field
**fields
)
1719 enum lttng_error_code ret_code
;
1721 struct lttcomm_session_msg lsm
;
1722 const struct lttcomm_list_command_header
*cmd_header
= NULL
;
1723 unsigned int nb_event_fields
= 0;
1724 struct lttng_payload reply
;
1726 if (handle
== NULL
) {
1727 ret
= -LTTNG_ERR_INVALID
;
1731 lttng_payload_init(&reply
);
1733 memset(&lsm
, 0, sizeof(lsm
));
1734 lsm
.cmd_type
= LTTNG_LIST_TRACEPOINT_FIELDS
;
1735 COPY_DOMAIN_PACKED(lsm
.domain
, handle
->domain
);
1738 lttng_payload_view message_view
=
1739 lttng_payload_view_init_from_buffer(
1740 (const char *) &lsm
, 0,
1743 ret
= lttng_ctl_ask_sessiond_payload(&message_view
, &reply
);
1750 const lttng_buffer_view cmd_header_view
=
1751 lttng_buffer_view_from_dynamic_buffer(
1752 &reply
.buffer
, 0, sizeof(*cmd_header
));
1754 if (!lttng_buffer_view_is_valid(&cmd_header_view
)) {
1755 ret
= -LTTNG_ERR_INVALID_PROTOCOL
;
1759 cmd_header
= (struct lttcomm_list_command_header
*)
1760 cmd_header_view
.data
;
1763 if (cmd_header
->count
> INT_MAX
) {
1764 ret
= -LTTNG_ERR_OVERFLOW
;
1768 nb_event_fields
= cmd_header
->count
;
1771 lttng_payload_view reply_view
=
1772 lttng_payload_view_from_payload(&reply
,
1773 sizeof(*cmd_header
), -1);
1775 ret_code
= lttng_event_fields_create_and_flatten_from_payload(
1776 &reply_view
, nb_event_fields
, fields
);
1777 if (ret_code
!= LTTNG_OK
) {
1783 ret
= nb_event_fields
;
1790 * Lists all available kernel system calls. Allocates and sets the contents of
1793 * Returns the number of lttng_event entries in events; on error, returns a
1796 int lttng_list_syscalls(struct lttng_event
**events
)
1798 enum lttng_error_code ret_code
;
1799 int ret
, total_payload_received
;
1800 char *reception_buffer
= NULL
;
1801 struct lttcomm_session_msg lsm
= {};
1802 struct lttcomm_list_command_header
*cmd_header
= NULL
;
1803 size_t cmd_header_len
;
1804 uint32_t nb_events
= 0;
1807 ret
= -LTTNG_ERR_INVALID
;
1811 lsm
.cmd_type
= LTTNG_LIST_SYSCALLS
;
1812 /* Force kernel domain for system calls. */
1813 lsm
.domain
.type
= LTTNG_DOMAIN_KERNEL
;
1815 ret
= lttng_ctl_ask_sessiond_fds_varlen(&lsm
, NULL
, 0, NULL
, 0,
1816 (void **) &reception_buffer
, (void **) &cmd_header
,
1821 total_payload_received
= ret
;
1824 ret
= -LTTNG_ERR_UNK
;
1828 if (cmd_header
->count
> INT_MAX
) {
1829 ret
= -LTTNG_ERR_OVERFLOW
;
1833 nb_events
= (unsigned int) cmd_header
->count
;
1836 const struct lttng_buffer_view events_view
=
1837 lttng_buffer_view_init(reception_buffer
, 0,
1838 total_payload_received
);
1839 struct lttng_payload_view events_payload_view
=
1840 lttng_payload_view_from_buffer_view(
1841 &events_view
, 0, -1);
1843 ret_code
= lttng_events_create_and_flatten_from_payload(
1844 &events_payload_view
, nb_events
, events
);
1845 if (ret_code
!= LTTNG_OK
) {
1851 ret
= (int) nb_events
;
1854 free(reception_buffer
);
1860 * Returns a human readable string describing
1861 * the error code (positive or negative value).
1863 const char *lttng_strerror(int code
)
1869 return error_get_str(code
);
1872 enum lttng_error_code
lttng_create_session_ext(
1873 struct lttng_session_descriptor
*session_descriptor
)
1875 enum lttng_error_code ret_code
;
1876 struct lttcomm_session_msg lsm
= {
1877 .cmd_type
= LTTNG_CREATE_SESSION_EXT
,
1880 struct lttng_buffer_view reply_view
;
1882 bool sessiond_must_generate_ouput
;
1883 struct lttng_dynamic_buffer payload
;
1885 size_t descriptor_size
;
1886 struct lttng_session_descriptor
*descriptor_reply
= NULL
;
1888 lttng_dynamic_buffer_init(&payload
);
1889 if (!session_descriptor
) {
1890 ret_code
= LTTNG_ERR_INVALID
;
1894 sessiond_must_generate_ouput
=
1895 !lttng_session_descriptor_is_output_destination_initialized(
1896 session_descriptor
);
1897 if (sessiond_must_generate_ouput
) {
1898 const char *home_dir
= utils_get_home_dir();
1899 size_t home_dir_len
= home_dir
? strlen(home_dir
) + 1 : 0;
1901 if (!home_dir
|| home_dir_len
> LTTNG_PATH_MAX
) {
1902 ret_code
= LTTNG_ERR_FATAL
;
1906 lsm
.u
.create_session
.home_dir_size
= (uint16_t) home_dir_len
;
1907 ret
= lttng_dynamic_buffer_append(&payload
, home_dir
,
1910 ret_code
= LTTNG_ERR_NOMEM
;
1915 descriptor_size
= payload
.size
;
1916 ret
= lttng_session_descriptor_serialize(session_descriptor
,
1919 ret_code
= LTTNG_ERR_INVALID
;
1922 descriptor_size
= payload
.size
- descriptor_size
;
1923 lsm
.u
.create_session
.session_descriptor_size
= descriptor_size
;
1925 /* Command returns a session descriptor on success. */
1926 reply_ret
= lttng_ctl_ask_sessiond_varlen_no_cmd_header(&lsm
, payload
.data
,
1927 payload
.size
, &reply
);
1928 if (reply_ret
< 0) {
1929 ret_code
= (lttng_error_code
) -reply_ret
;
1931 } else if (reply_ret
== 0) {
1932 /* Socket unexpectedly closed by the session daemon. */
1933 ret_code
= LTTNG_ERR_FATAL
;
1937 reply_view
= lttng_buffer_view_init((const char *) reply
, 0, reply_ret
);
1938 ret
= lttng_session_descriptor_create_from_buffer(&reply_view
,
1941 ret_code
= LTTNG_ERR_FATAL
;
1944 ret_code
= LTTNG_OK
;
1945 lttng_session_descriptor_assign(session_descriptor
, descriptor_reply
);
1948 lttng_dynamic_buffer_reset(&payload
);
1949 lttng_session_descriptor_destroy(descriptor_reply
);
1954 * Create a new session using name and url for destination.
1956 * Return 0 on success else a negative LTTng error code.
1958 int lttng_create_session(const char *name
, const char *url
)
1962 struct lttng_uri
*uris
= NULL
;
1963 struct lttng_session_descriptor
*descriptor
= NULL
;
1964 enum lttng_error_code ret_code
;
1967 ret
= -LTTNG_ERR_INVALID
;
1971 size
= uri_parse_str_urls(url
, NULL
, &uris
);
1973 ret
= -LTTNG_ERR_INVALID
;
1978 descriptor
= lttng_session_descriptor_create(name
);
1981 if (uris
[0].dtype
!= LTTNG_DST_PATH
) {
1982 ret
= -LTTNG_ERR_INVALID
;
1985 descriptor
= lttng_session_descriptor_local_create(name
,
1989 descriptor
= lttng_session_descriptor_network_create(name
, url
,
1993 ret
= -LTTNG_ERR_INVALID
;
1997 ret
= -LTTNG_ERR_INVALID
;
2000 ret_code
= lttng_create_session_ext(descriptor
);
2001 ret
= ret_code
== LTTNG_OK
? 0 : -ret_code
;
2003 lttng_session_descriptor_destroy(descriptor
);
2009 * Create a session exclusively used for snapshot.
2011 * Return 0 on success else a negative LTTng error code.
2013 int lttng_create_session_snapshot(const char *name
, const char *snapshot_url
)
2016 enum lttng_error_code ret_code
;
2018 struct lttng_uri
*uris
= NULL
;
2019 struct lttng_session_descriptor
*descriptor
= NULL
;
2022 ret
= -LTTNG_ERR_INVALID
;
2026 size
= uri_parse_str_urls(snapshot_url
, NULL
, &uris
);
2028 ret
= -LTTNG_ERR_INVALID
;
2032 * If the user does not specify a custom subdir, use the session name.
2034 if (size
> 0 && uris
[0].dtype
!= LTTNG_DST_PATH
&&
2035 strlen(uris
[0].subdir
) == 0) {
2036 ret
= snprintf(uris
[0].subdir
, sizeof(uris
[0].subdir
), "%s",
2039 PERROR("Failed to set session name as network destination sub-directory");
2040 ret
= -LTTNG_ERR_FATAL
;
2042 } else if (ret
>= sizeof(uris
[0].subdir
)) {
2043 /* Truncated output. */
2044 ret
= -LTTNG_ERR_INVALID
;
2051 descriptor
= lttng_session_descriptor_snapshot_create(name
);
2054 if (uris
[0].dtype
!= LTTNG_DST_PATH
) {
2055 ret
= -LTTNG_ERR_INVALID
;
2058 descriptor
= lttng_session_descriptor_snapshot_local_create(
2063 descriptor
= lttng_session_descriptor_snapshot_network_create(
2069 ret
= -LTTNG_ERR_INVALID
;
2073 ret
= -LTTNG_ERR_INVALID
;
2076 ret_code
= lttng_create_session_ext(descriptor
);
2077 ret
= ret_code
== LTTNG_OK
? 0 : -ret_code
;
2079 lttng_session_descriptor_destroy(descriptor
);
2085 * Create a session exclusively used for live.
2087 * Return 0 on success else a negative LTTng error code.
2089 int lttng_create_session_live(const char *name
, const char *url
,
2090 unsigned int timer_interval
)
2093 enum lttng_error_code ret_code
;
2094 struct lttng_session_descriptor
*descriptor
= NULL
;
2097 ret
= -LTTNG_ERR_INVALID
;
2102 descriptor
= lttng_session_descriptor_live_network_create(
2103 name
, url
, NULL
, timer_interval
);
2105 descriptor
= lttng_session_descriptor_live_create(
2106 name
, timer_interval
);
2109 ret
= -LTTNG_ERR_INVALID
;
2112 ret_code
= lttng_create_session_ext(descriptor
);
2113 ret
= ret_code
== LTTNG_OK
? 0 : -ret_code
;
2115 lttng_session_descriptor_destroy(descriptor
);
2120 * Stop the session and wait for the data before destroying it
2122 * Return 0 on success else a negative LTTng error code.
2124 int lttng_destroy_session(const char *session_name
)
2127 enum lttng_error_code ret_code
;
2128 enum lttng_destruction_handle_status status
;
2129 struct lttng_destruction_handle
*handle
= NULL
;
2132 * Stop the tracing and wait for the data to be
2135 ret
= _lttng_stop_tracing(session_name
, 1);
2136 if (ret
&& ret
!= -LTTNG_ERR_TRACE_ALREADY_STOPPED
) {
2140 ret_code
= lttng_destroy_session_ext(session_name
, &handle
);
2141 if (ret_code
!= LTTNG_OK
) {
2142 ret
= (int) -ret_code
;
2145 LTTNG_ASSERT(handle
);
2147 /* Block until the completion of the destruction of the session. */
2148 status
= lttng_destruction_handle_wait_for_completion(handle
, -1);
2149 if (status
!= LTTNG_DESTRUCTION_HANDLE_STATUS_COMPLETED
) {
2150 ret
= -LTTNG_ERR_UNK
;
2154 status
= lttng_destruction_handle_get_result(handle
, &ret_code
);
2155 if (status
!= LTTNG_DESTRUCTION_HANDLE_STATUS_OK
) {
2156 ret
= -LTTNG_ERR_UNK
;
2159 ret
= ret_code
== LTTNG_OK
? 0 : -ret_code
;
2161 lttng_destruction_handle_destroy(handle
);
2166 * Destroy the session without waiting for the data.
2168 int lttng_destroy_session_no_wait(const char *session_name
)
2170 enum lttng_error_code ret_code
;
2172 ret_code
= lttng_destroy_session_ext(session_name
, NULL
);
2173 return ret_code
== LTTNG_OK
? 0 : -ret_code
;
2177 * Ask the session daemon for all available sessions.
2178 * Sets the contents of the sessions array.
2179 * Returns the number of lttng_session entries in sessions;
2180 * on error, returns a negative value.
2182 int lttng_list_sessions(struct lttng_session
**out_sessions
)
2185 struct lttcomm_session_msg lsm
;
2186 const size_t session_size
= sizeof(struct lttng_session
) +
2187 sizeof(struct lttng_session_extended
);
2188 size_t session_count
, i
;
2189 struct lttng_session_extended
*sessions_extended_begin
;
2190 struct lttng_session
*sessions
= NULL
;
2192 memset(&lsm
, 0, sizeof(lsm
));
2193 lsm
.cmd_type
= LTTNG_LIST_SESSIONS
;
2195 * Initialize out_sessions to NULL so it is initialized when
2196 * lttng_list_sessions returns 0, thus allowing *out_sessions to
2197 * be subsequently freed.
2199 *out_sessions
= NULL
;
2200 ret
= lttng_ctl_ask_sessiond(&lsm
, (void**) &sessions
);
2205 ret
= -LTTNG_ERR_FATAL
;
2209 if (ret
% session_size
) {
2210 ret
= -LTTNG_ERR_UNK
;
2214 session_count
= (size_t) ret
/ session_size
;
2215 sessions_extended_begin
= (struct lttng_session_extended
*)
2216 (&sessions
[session_count
]);
2218 /* Set extended session info pointers. */
2219 for (i
= 0; i
< session_count
; i
++) {
2220 struct lttng_session
*session
= &sessions
[i
];
2221 struct lttng_session_extended
*extended
=
2222 &(sessions_extended_begin
[i
]);
2224 session
->extended
.ptr
= extended
;
2227 ret
= (int) session_count
;
2228 *out_sessions
= sessions
;
2233 enum lttng_error_code
lttng_session_get_creation_time(
2234 const struct lttng_session
*session
, uint64_t *creation_time
)
2236 enum lttng_error_code ret
= LTTNG_OK
;
2237 struct lttng_session_extended
*extended
;
2239 if (!session
|| !creation_time
|| !session
->extended
.ptr
) {
2240 ret
= LTTNG_ERR_INVALID
;
2244 extended
= (lttng_session_extended
*) session
->extended
.ptr
;
2245 if (!extended
->creation_time
.is_set
) {
2246 /* Not created on the session daemon yet. */
2247 ret
= LTTNG_ERR_SESSION_NOT_EXIST
;
2250 *creation_time
= extended
->creation_time
.value
;
2255 int lttng_set_session_shm_path(const char *session_name
,
2256 const char *shm_path
)
2259 struct lttcomm_session_msg lsm
;
2261 if (session_name
== NULL
) {
2262 return -LTTNG_ERR_INVALID
;
2265 memset(&lsm
, 0, sizeof(lsm
));
2266 lsm
.cmd_type
= LTTNG_SET_SESSION_SHM_PATH
;
2268 ret
= lttng_strncpy(lsm
.session
.name
, session_name
,
2269 sizeof(lsm
.session
.name
));
2271 ret
= -LTTNG_ERR_INVALID
;
2275 ret
= lttng_strncpy(lsm
.u
.set_shm_path
.shm_path
, shm_path
?: "",
2276 sizeof(lsm
.u
.set_shm_path
.shm_path
));
2278 ret
= -LTTNG_ERR_INVALID
;
2282 ret
= lttng_ctl_ask_sessiond(&lsm
, NULL
);
2288 * Ask the session daemon for all available domains of a session.
2289 * Sets the contents of the domains array.
2290 * Returns the number of lttng_domain entries in domains;
2291 * on error, returns a negative value.
2293 int lttng_list_domains(const char *session_name
,
2294 struct lttng_domain
**domains
)
2297 struct lttcomm_session_msg lsm
;
2299 if (session_name
== NULL
) {
2300 ret
= -LTTNG_ERR_INVALID
;
2304 memset(&lsm
, 0, sizeof(lsm
));
2305 lsm
.cmd_type
= LTTNG_LIST_DOMAINS
;
2307 ret
= lttng_strncpy(lsm
.session
.name
, session_name
,
2308 sizeof(lsm
.session
.name
));
2310 ret
= -LTTNG_ERR_INVALID
;
2314 ret
= lttng_ctl_ask_sessiond(&lsm
, (void**) domains
);
2319 return ret
/ sizeof(struct lttng_domain
);
2325 * Ask the session daemon for all available channels of a session.
2326 * Sets the contents of the channels array.
2327 * Returns the number of lttng_channel entries in channels;
2328 * on error, returns a negative value.
2330 int lttng_list_channels(struct lttng_handle
*handle
,
2331 struct lttng_channel
**channels
)
2333 int ret
, total_payload_received
;
2334 struct lttcomm_session_msg lsm
;
2335 char *reception_buffer
= NULL
;
2336 size_t cmd_header_len
= 0;
2337 struct lttcomm_list_command_header
*cmd_header
= NULL
;
2338 struct lttng_dynamic_buffer tmp_buffer
;
2340 lttng_dynamic_buffer_init(&tmp_buffer
);
2342 if (handle
== NULL
) {
2343 ret
= -LTTNG_ERR_INVALID
;
2347 memset(&lsm
, 0, sizeof(lsm
));
2348 lsm
.cmd_type
= LTTNG_LIST_CHANNELS
;
2349 ret
= lttng_strncpy(lsm
.session
.name
, handle
->session_name
,
2350 sizeof(lsm
.session
.name
));
2352 ret
= -LTTNG_ERR_INVALID
;
2356 COPY_DOMAIN_PACKED(lsm
.domain
, handle
->domain
);
2358 ret
= lttng_ctl_ask_sessiond_fds_varlen(&lsm
, NULL
, 0, NULL
, 0,
2359 (void **) &reception_buffer
, (void **) &cmd_header
,
2365 total_payload_received
= ret
;
2367 if (cmd_header_len
!= sizeof(*cmd_header
)) {
2368 ret
= -LTTNG_ERR_FATAL
;
2373 ret
= LTTNG_ERR_UNK
;
2377 if (cmd_header
->count
> INT_MAX
) {
2378 ret
= -LTTNG_ERR_OVERFLOW
;
2383 enum lttng_error_code ret_code
;
2384 const struct lttng_buffer_view events_view
=
2385 lttng_buffer_view_init(reception_buffer
, 0,
2386 total_payload_received
);
2388 ret_code
= lttng_channels_create_and_flatten_from_buffer(
2389 &events_view
, cmd_header
->count
, channels
);
2390 if (ret_code
!= LTTNG_OK
) {
2396 ret
= (int) cmd_header
->count
;
2399 free(reception_buffer
);
2404 * Ask the session daemon for all available events of a session channel.
2405 * Sets the contents of the events array.
2406 * Returns the number of lttng_event entries in events;
2407 * on error, returns a negative value.
2409 int lttng_list_events(struct lttng_handle
*handle
,
2410 const char *channel_name
, struct lttng_event
**events
)
2413 struct lttcomm_session_msg lsm
= {};
2414 struct lttng_payload reply
;
2415 struct lttng_payload_view lsm_view
=
2416 lttng_payload_view_init_from_buffer(
2417 (const char *) &lsm
, 0, sizeof(lsm
));
2418 unsigned int nb_events
= 0;
2420 lttng_payload_init(&reply
);
2422 /* Safety check. An handle and channel name are mandatory. */
2423 if (handle
== NULL
|| channel_name
== NULL
) {
2424 ret
= -LTTNG_ERR_INVALID
;
2428 /* Initialize command parameters. */
2429 lsm
.cmd_type
= LTTNG_LIST_EVENTS
;
2430 ret
= lttng_strncpy(lsm
.session
.name
, handle
->session_name
,
2431 sizeof(lsm
.session
.name
));
2433 ret
= -LTTNG_ERR_INVALID
;
2437 ret
= lttng_strncpy(lsm
.u
.list
.channel_name
, channel_name
,
2438 sizeof(lsm
.u
.list
.channel_name
));
2440 ret
= -LTTNG_ERR_INVALID
;
2444 COPY_DOMAIN_PACKED(lsm
.domain
, handle
->domain
);
2446 /* Execute command against the session daemon. */
2447 ret
= lttng_ctl_ask_sessiond_payload(&lsm_view
, &reply
);
2453 const struct lttcomm_list_command_header
*cmd_reply_header
=
2455 const lttng_payload_view cmd_reply_header_view
=
2456 lttng_payload_view_from_payload(&reply
, 0,
2457 sizeof(*cmd_reply_header
));
2459 if (!lttng_payload_view_is_valid(&cmd_reply_header_view
)) {
2460 ret
= -LTTNG_ERR_INVALID_PROTOCOL
;
2464 cmd_reply_header
= (const struct lttcomm_list_command_header
*)
2465 cmd_reply_header_view
.buffer
2467 if (cmd_reply_header
->count
> INT_MAX
) {
2468 ret
= -LTTNG_ERR_OVERFLOW
;
2472 nb_events
= (unsigned int) cmd_reply_header
->count
;
2476 enum lttng_error_code ret_code
;
2477 lttng_payload_view cmd_reply_payload
= lttng_payload_view_from_payload(
2479 sizeof(struct lttcomm_list_command_header
), -1);
2481 ret_code
= lttng_events_create_and_flatten_from_payload(
2482 &cmd_reply_payload
, nb_events
, events
);
2483 if (ret_code
!= LTTNG_OK
) {
2484 ret
= -((int) ret_code
);
2489 ret
= (int) nb_events
;
2491 lttng_payload_reset(&reply
);
2496 * Sets the tracing_group variable with name.
2497 * This function allocates memory pointed to by tracing_group.
2498 * On success, returns 0, on error, returns -1 (null name) or -ENOMEM.
2500 int lttng_set_tracing_group(const char *name
)
2506 ret
= -LTTNG_ERR_INVALID
;
2510 new_group
= strdup(name
);
2512 ret
= -LTTNG_ERR_FATAL
;
2516 free(tracing_group
);
2517 tracing_group
= new_group
;
2524 int lttng_calibrate(struct lttng_handle
*handle
__attribute__((unused
)),
2525 struct lttng_calibrate
*calibrate
__attribute__((unused
)))
2528 * This command was removed in LTTng 2.9.
2530 return -LTTNG_ERR_UND
;
2534 * Set default channel attributes.
2535 * If either or both of the arguments are null, attr content is zeroe'd.
2537 void lttng_channel_set_default_attr(struct lttng_domain
*domain
,
2538 struct lttng_channel_attr
*attr
)
2540 struct lttng_channel_extended
*extended
;
2543 if (attr
== NULL
|| domain
== NULL
) {
2547 /* Save the pointer for later use */
2548 extended
= (struct lttng_channel_extended
*) attr
->extended
.ptr
;
2549 memset(attr
, 0, sizeof(struct lttng_channel_attr
));
2551 /* Same for all domains. */
2552 attr
->overwrite
= DEFAULT_CHANNEL_OVERWRITE
;
2553 attr
->tracefile_size
= DEFAULT_CHANNEL_TRACEFILE_SIZE
;
2554 attr
->tracefile_count
= DEFAULT_CHANNEL_TRACEFILE_COUNT
;
2556 switch (domain
->type
) {
2557 case LTTNG_DOMAIN_KERNEL
:
2558 attr
->switch_timer_interval
=
2559 DEFAULT_KERNEL_CHANNEL_SWITCH_TIMER
;
2560 attr
->read_timer_interval
= DEFAULT_KERNEL_CHANNEL_READ_TIMER
;
2561 attr
->subbuf_size
= default_get_kernel_channel_subbuf_size();
2562 attr
->num_subbuf
= DEFAULT_KERNEL_CHANNEL_SUBBUF_NUM
;
2563 attr
->output
= DEFAULT_KERNEL_CHANNEL_OUTPUT
;
2565 case LTTNG_DOMAIN_UST
:
2566 switch (domain
->buf_type
) {
2567 case LTTNG_BUFFER_PER_UID
:
2568 attr
->subbuf_size
= default_get_ust_uid_channel_subbuf_size();
2569 attr
->num_subbuf
= DEFAULT_UST_UID_CHANNEL_SUBBUF_NUM
;
2570 attr
->output
= DEFAULT_UST_UID_CHANNEL_OUTPUT
;
2571 attr
->switch_timer_interval
=
2572 DEFAULT_UST_UID_CHANNEL_SWITCH_TIMER
;
2573 attr
->read_timer_interval
=
2574 DEFAULT_UST_UID_CHANNEL_READ_TIMER
;
2576 case LTTNG_BUFFER_PER_PID
:
2578 attr
->subbuf_size
= default_get_ust_pid_channel_subbuf_size();
2579 attr
->num_subbuf
= DEFAULT_UST_PID_CHANNEL_SUBBUF_NUM
;
2580 attr
->output
= DEFAULT_UST_PID_CHANNEL_OUTPUT
;
2581 attr
->switch_timer_interval
=
2582 DEFAULT_UST_PID_CHANNEL_SWITCH_TIMER
;
2583 attr
->read_timer_interval
=
2584 DEFAULT_UST_PID_CHANNEL_READ_TIMER
;
2588 /* Default behavior: leave set to 0. */
2593 lttng_channel_set_default_extended_attr(domain
, extended
);
2596 /* Reassign the extended pointer. */
2597 attr
->extended
.ptr
= extended
;
2600 int lttng_channel_get_discarded_event_count(struct lttng_channel
*channel
,
2601 uint64_t *discarded_events
)
2604 struct lttng_channel_extended
*chan_ext
;
2606 if (!channel
|| !discarded_events
) {
2607 ret
= -LTTNG_ERR_INVALID
;
2611 chan_ext
= (lttng_channel_extended
*) channel
->attr
.extended
.ptr
;
2614 * This can happen since the lttng_channel structure is
2615 * used for other tasks where this pointer is never set.
2617 *discarded_events
= 0;
2621 *discarded_events
= chan_ext
->discarded_events
;
2626 int lttng_channel_get_lost_packet_count(struct lttng_channel
*channel
,
2627 uint64_t *lost_packets
)
2630 struct lttng_channel_extended
*chan_ext
;
2632 if (!channel
|| !lost_packets
) {
2633 ret
= -LTTNG_ERR_INVALID
;
2637 chan_ext
= (lttng_channel_extended
*) channel
->attr
.extended
.ptr
;
2640 * This can happen since the lttng_channel structure is
2641 * used for other tasks where this pointer is never set.
2647 *lost_packets
= chan_ext
->lost_packets
;
2652 int lttng_channel_get_monitor_timer_interval(struct lttng_channel
*chan
,
2653 uint64_t *monitor_timer_interval
)
2657 if (!chan
|| !monitor_timer_interval
) {
2658 ret
= -LTTNG_ERR_INVALID
;
2662 if (!chan
->attr
.extended
.ptr
) {
2663 ret
= -LTTNG_ERR_INVALID
;
2667 *monitor_timer_interval
= ((struct lttng_channel_extended
*)
2668 chan
->attr
.extended
.ptr
)->monitor_timer_interval
;
2673 int lttng_channel_set_monitor_timer_interval(struct lttng_channel
*chan
,
2674 uint64_t monitor_timer_interval
)
2678 if (!chan
|| !chan
->attr
.extended
.ptr
) {
2679 ret
= -LTTNG_ERR_INVALID
;
2683 ((struct lttng_channel_extended
*)
2684 chan
->attr
.extended
.ptr
)->monitor_timer_interval
=
2685 monitor_timer_interval
;
2690 int lttng_channel_get_blocking_timeout(struct lttng_channel
*chan
,
2691 int64_t *blocking_timeout
)
2695 if (!chan
|| !blocking_timeout
) {
2696 ret
= -LTTNG_ERR_INVALID
;
2700 if (!chan
->attr
.extended
.ptr
) {
2701 ret
= -LTTNG_ERR_INVALID
;
2705 *blocking_timeout
= ((struct lttng_channel_extended
*)
2706 chan
->attr
.extended
.ptr
)->blocking_timeout
;
2711 int lttng_channel_set_blocking_timeout(struct lttng_channel
*chan
,
2712 int64_t blocking_timeout
)
2715 int64_t msec_timeout
;
2717 if (!chan
|| !chan
->attr
.extended
.ptr
) {
2718 ret
= -LTTNG_ERR_INVALID
;
2722 if (blocking_timeout
< 0 && blocking_timeout
!= -1) {
2723 ret
= -LTTNG_ERR_INVALID
;
2728 * LTTng-ust's use of poll() to implement this timeout mechanism forces
2729 * us to accept a narrower range of values (msecs expressed as a signed
2732 msec_timeout
= blocking_timeout
/ 1000;
2733 if (msec_timeout
!= (int32_t) msec_timeout
) {
2734 ret
= -LTTNG_ERR_INVALID
;
2738 ((struct lttng_channel_extended
*)
2739 chan
->attr
.extended
.ptr
)->blocking_timeout
=
2746 * Check if session daemon is alive.
2748 * Return 1 if alive or 0 if not.
2749 * On error returns a negative value.
2751 int lttng_session_daemon_alive(void)
2755 ret
= set_session_daemon_path();
2761 if (*sessiond_sock_path
== '\0') {
2763 * No socket path set. Weird error which means the constructor
2769 ret
= try_connect_sessiond(sessiond_sock_path
);
2780 * Set URL for a consumer for a session and domain.
2782 * Return 0 on success, else a negative value.
2784 int lttng_set_consumer_url(struct lttng_handle
*handle
,
2785 const char *control_url
, const char *data_url
)
2789 struct lttcomm_session_msg lsm
;
2790 struct lttng_uri
*uris
= NULL
;
2792 if (handle
== NULL
|| (control_url
== NULL
&& data_url
== NULL
)) {
2793 ret
= -LTTNG_ERR_INVALID
;
2797 memset(&lsm
, 0, sizeof(lsm
));
2799 lsm
.cmd_type
= LTTNG_SET_CONSUMER_URI
;
2801 ret
= lttng_strncpy(lsm
.session
.name
, handle
->session_name
,
2802 sizeof(lsm
.session
.name
));
2804 ret
= -LTTNG_ERR_INVALID
;
2808 COPY_DOMAIN_PACKED(lsm
.domain
, handle
->domain
);
2810 size
= uri_parse_str_urls(control_url
, data_url
, &uris
);
2812 ret
= -LTTNG_ERR_INVALID
;
2816 lsm
.u
.uri
.size
= size
;
2818 ret
= lttng_ctl_ask_sessiond_varlen_no_cmd_header(&lsm
, uris
,
2819 sizeof(struct lttng_uri
) * size
, NULL
);
2830 LTTNG_EXPORT
int lttng_enable_consumer(struct lttng_handle
*handle
);
2831 int lttng_enable_consumer(struct lttng_handle
*handle
__attribute__((unused
)))
2840 LTTNG_EXPORT
int lttng_disable_consumer(struct lttng_handle
*handle
);
2841 int lttng_disable_consumer(struct lttng_handle
*handle
__attribute__((unused
)))
2850 LTTNG_EXPORT
int _lttng_create_session_ext(const char *name
, const char *url
,
2851 const char *datetime
);
2852 int _lttng_create_session_ext(const char *name
__attribute__((unused
)),
2853 const char *url
__attribute__((unused
)),
2854 const char *datetime
__attribute__((unused
)))
2860 * For a given session name, this call checks if the data is ready to be read
2861 * or is still being extracted by the consumer(s) hence not ready to be used by
2864 int lttng_data_pending(const char *session_name
)
2867 struct lttcomm_session_msg lsm
;
2868 uint8_t *pending
= NULL
;
2870 if (session_name
== NULL
) {
2871 return -LTTNG_ERR_INVALID
;
2874 memset(&lsm
, 0, sizeof(lsm
));
2875 lsm
.cmd_type
= LTTNG_DATA_PENDING
;
2877 ret
= lttng_strncpy(lsm
.session
.name
, session_name
,
2878 sizeof(lsm
.session
.name
));
2880 ret
= -LTTNG_ERR_INVALID
;
2884 ret
= lttng_ctl_ask_sessiond(&lsm
, (void **) &pending
);
2887 } else if (ret
!= 1) {
2888 /* Unexpected payload size */
2889 ret
= -LTTNG_ERR_INVALID
;
2891 } else if (!pending
) {
2892 /* Internal error. */
2893 ret
= -LTTNG_ERR_UNK
;
2897 ret
= (int) *pending
;
2904 * Regenerate the metadata for a session.
2905 * Return 0 on success, a negative error code on error.
2907 int lttng_regenerate_metadata(const char *session_name
)
2910 struct lttcomm_session_msg lsm
;
2912 if (!session_name
) {
2913 ret
= -LTTNG_ERR_INVALID
;
2917 memset(&lsm
, 0, sizeof(lsm
));
2918 lsm
.cmd_type
= LTTNG_REGENERATE_METADATA
;
2920 ret
= lttng_strncpy(lsm
.session
.name
, session_name
,
2921 sizeof(lsm
.session
.name
));
2923 ret
= -LTTNG_ERR_INVALID
;
2927 ret
= lttng_ctl_ask_sessiond(&lsm
, NULL
);
2938 * Deprecated, replaced by lttng_regenerate_metadata.
2940 int lttng_metadata_regenerate(const char *session_name
)
2942 return lttng_regenerate_metadata(session_name
);
2946 * Regenerate the statedump of a session.
2947 * Return 0 on success, a negative error code on error.
2949 int lttng_regenerate_statedump(const char *session_name
)
2952 struct lttcomm_session_msg lsm
;
2954 if (!session_name
) {
2955 ret
= -LTTNG_ERR_INVALID
;
2959 memset(&lsm
, 0, sizeof(lsm
));
2960 lsm
.cmd_type
= LTTNG_REGENERATE_STATEDUMP
;
2962 ret
= lttng_strncpy(lsm
.session
.name
, session_name
,
2963 sizeof(lsm
.session
.name
));
2965 ret
= -LTTNG_ERR_INVALID
;
2969 ret
= lttng_ctl_ask_sessiond(&lsm
, NULL
);
2980 int _lttng_register_trigger(struct lttng_trigger
*trigger
, const char *name
,
2984 struct lttcomm_session_msg lsm
= {
2985 .cmd_type
= LTTNG_REGISTER_TRIGGER
,
2987 lsm
.u
.trigger
.is_trigger_anonymous
= !name
&& !generate_name
;
2988 struct lttcomm_session_msg
*message_lsm
;
2989 struct lttng_payload message
;
2990 struct lttng_payload reply
;
2991 struct lttng_trigger
*reply_trigger
= NULL
;
2992 enum lttng_domain_type domain_type
;
2993 const struct lttng_credentials user_creds
= {
2994 .uid
= LTTNG_OPTIONAL_INIT_VALUE(geteuid()),
2995 .gid
= LTTNG_OPTIONAL_INIT_UNSET
,
2997 const char *unused_trigger_name
= NULL
;
2998 enum lttng_trigger_status trigger_status
;
3000 lttng_payload_init(&message
);
3001 lttng_payload_init(&reply
);
3004 ret
= -LTTNG_ERR_INVALID
;
3008 trigger_status
= lttng_trigger_get_name(trigger
, &unused_trigger_name
);
3009 if (trigger_status
!= LTTNG_TRIGGER_STATUS_UNSET
) {
3010 /* Re-using already registered trigger. */
3011 ret
= -LTTNG_ERR_INVALID
;
3016 trigger_status
= lttng_trigger_set_name(trigger
, name
);
3017 if (trigger_status
!= LTTNG_TRIGGER_STATUS_OK
) {
3018 ret
= -LTTNG_ERR_NOMEM
;
3023 if (!trigger
->creds
.uid
.is_set
) {
3024 /* Use the client's credentials as the trigger credentials. */
3025 lttng_trigger_set_credentials(trigger
, &user_creds
);
3028 * Validate that either the current trigger credentials and the
3029 * client credentials are identical or that the current user is
3030 * root. The root user can register, unregister triggers for
3031 * himself and other users.
3033 * This check is also present on the sessiond side, using the
3034 * credentials passed on the socket. These check are all
3037 const struct lttng_credentials
*trigger_creds
=
3038 lttng_trigger_get_credentials(trigger
);
3040 if (!lttng_credentials_is_equal_uid(trigger_creds
, &user_creds
)) {
3041 if (lttng_credentials_get_uid(&user_creds
) != 0) {
3042 ret
= -LTTNG_ERR_EPERM
;
3043 goto end_unset_name
;
3048 if (!lttng_trigger_validate(trigger
)) {
3049 ret
= -LTTNG_ERR_INVALID_TRIGGER
;
3050 goto end_unset_name
;
3053 domain_type
= lttng_trigger_get_underlying_domain_type_restriction(
3056 lsm
.domain
.type
= domain_type
;
3058 ret
= lttng_dynamic_buffer_append(&message
.buffer
, &lsm
, sizeof(lsm
));
3060 ret
= -LTTNG_ERR_NOMEM
;
3061 goto end_unset_name
;
3064 ret
= lttng_trigger_serialize(trigger
, &message
);
3066 ret
= -LTTNG_ERR_UNK
;
3067 goto end_unset_name
;
3071 * This is needed to populate the trigger object size for the command
3074 message_lsm
= (struct lttcomm_session_msg
*) message
.buffer
.data
;
3076 message_lsm
->u
.trigger
.length
= (uint32_t) message
.buffer
.size
- sizeof(lsm
);
3079 struct lttng_payload_view message_view
=
3080 lttng_payload_view_from_payload(
3083 message_lsm
->fd_count
= lttng_payload_view_get_fd_handle_count(
3085 ret
= lttng_ctl_ask_sessiond_payload(&message_view
, &reply
);
3087 goto end_unset_name
;
3092 struct lttng_payload_view reply_view
=
3093 lttng_payload_view_from_payload(
3094 &reply
, 0, reply
.buffer
.size
);
3096 ret
= lttng_trigger_create_from_payload(
3097 &reply_view
, &reply_trigger
);
3099 ret
= -LTTNG_ERR_INVALID_PROTOCOL
;
3100 goto end_unset_name
;
3104 if (name
|| generate_name
) {
3105 ret
= lttng_trigger_assign_name(trigger
, reply_trigger
);
3107 ret
= -LTTNG_ERR_NOMEM
;
3116 trigger_status
= lttng_trigger_set_name(trigger
, NULL
);
3117 if (trigger_status
!= LTTNG_TRIGGER_STATUS_OK
) {
3118 ret
= -LTTNG_ERR_UNK
;
3121 lttng_payload_reset(&message
);
3122 lttng_payload_reset(&reply
);
3123 lttng_trigger_destroy(reply_trigger
);
3127 int lttng_register_trigger(struct lttng_trigger
*trigger
)
3129 /* Register an anonymous trigger. */
3130 return _lttng_register_trigger(trigger
, NULL
, false);
3133 enum lttng_error_code
lttng_register_trigger_with_name(
3134 struct lttng_trigger
*trigger
, const char *name
)
3136 const int ret
= _lttng_register_trigger(trigger
, name
, false);
3138 return ret
== 0 ? LTTNG_OK
: (enum lttng_error_code
) -ret
;
3141 enum lttng_error_code
lttng_register_trigger_with_automatic_name(
3142 struct lttng_trigger
*trigger
)
3144 const int ret
= _lttng_register_trigger(trigger
, nullptr, true);
3146 return ret
== 0 ? LTTNG_OK
: (enum lttng_error_code
) -ret
;
3149 enum lttng_error_code
lttng_error_query_execute(
3150 const struct lttng_error_query
*query
,
3151 const struct lttng_endpoint
*endpoint
,
3152 struct lttng_error_query_results
**results
)
3155 enum lttng_error_code ret_code
;
3156 struct lttcomm_session_msg lsm
= {
3157 .cmd_type
= LTTNG_EXECUTE_ERROR_QUERY
,
3159 struct lttng_payload message
;
3160 struct lttng_payload reply
;
3161 struct lttcomm_session_msg
*message_lsm
;
3163 lttng_payload_init(&message
);
3164 lttng_payload_init(&reply
);
3166 if (!query
|| !results
) {
3167 ret_code
= LTTNG_ERR_INVALID
;
3171 if (endpoint
!= lttng_session_daemon_command_endpoint
) {
3172 ret_code
= LTTNG_ERR_INVALID_ERROR_QUERY_TARGET
;
3176 ret
= lttng_dynamic_buffer_append(&message
.buffer
, &lsm
, sizeof(lsm
));
3178 ret_code
= LTTNG_ERR_NOMEM
;
3182 ret
= lttng_error_query_serialize(query
, &message
);
3184 ret_code
= LTTNG_ERR_UNK
;
3188 message_lsm
= (struct lttcomm_session_msg
*) message
.buffer
.data
;
3189 message_lsm
->u
.error_query
.length
=
3190 (uint32_t) message
.buffer
.size
- sizeof(lsm
);
3193 struct lttng_payload_view message_view
=
3194 lttng_payload_view_from_payload(
3197 message_lsm
->fd_count
= lttng_payload_view_get_fd_handle_count(
3199 ret
= lttng_ctl_ask_sessiond_payload(&message_view
, &reply
);
3201 ret_code
=(lttng_error_code
) -ret
;
3207 ssize_t reply_create_ret
;
3208 struct lttng_payload_view reply_view
=
3209 lttng_payload_view_from_payload(
3210 &reply
, 0, reply
.buffer
.size
);
3212 reply_create_ret
= lttng_error_query_results_create_from_payload(
3213 &reply_view
, results
);
3214 if (reply_create_ret
< 0) {
3215 ret_code
= LTTNG_ERR_INVALID_PROTOCOL
;
3220 ret_code
= LTTNG_OK
;
3222 lttng_payload_reset(&message
);
3223 lttng_payload_reset(&reply
);
3227 int lttng_unregister_trigger(const struct lttng_trigger
*trigger
)
3230 struct lttcomm_session_msg lsm
;
3231 struct lttcomm_session_msg
*message_lsm
;
3232 struct lttng_payload message
;
3233 struct lttng_payload reply
;
3234 struct lttng_trigger
*copy
= NULL
;
3235 const struct lttng_credentials user_creds
= {
3236 .uid
= LTTNG_OPTIONAL_INIT_VALUE(geteuid()),
3237 .gid
= LTTNG_OPTIONAL_INIT_UNSET
,
3240 lttng_payload_init(&message
);
3241 lttng_payload_init(&reply
);
3244 ret
= -LTTNG_ERR_INVALID
;
3248 copy
= lttng_trigger_copy(trigger
);
3250 ret
= -LTTNG_ERR_UNK
;
3254 if (!copy
->creds
.uid
.is_set
) {
3255 /* Use the client credentials as the trigger credentials */
3256 lttng_trigger_set_credentials(copy
, &user_creds
);
3259 * Validate that either the current trigger credentials and the
3260 * client credentials are identical or that the current user is
3261 * root. The root user can register, unregister triggers for
3262 * himself and other users.
3264 * This check is also present on the sessiond side, using the
3265 * credentials passed on the socket. These check are all
3268 const struct lttng_credentials
*trigger_creds
=
3269 lttng_trigger_get_credentials(copy
);
3270 if (!lttng_credentials_is_equal_uid(trigger_creds
, &user_creds
)) {
3271 if (lttng_credentials_get_uid(&user_creds
) != 0) {
3272 ret
= -LTTNG_ERR_EPERM
;
3278 if (!lttng_trigger_validate(copy
)) {
3279 ret
= -LTTNG_ERR_INVALID_TRIGGER
;
3283 memset(&lsm
, 0, sizeof(lsm
));
3284 lsm
.cmd_type
= LTTNG_UNREGISTER_TRIGGER
;
3286 ret
= lttng_dynamic_buffer_append(&message
.buffer
, &lsm
, sizeof(lsm
));
3288 ret
= -LTTNG_ERR_NOMEM
;
3292 ret
= lttng_trigger_serialize(copy
, &message
);
3294 ret
= -LTTNG_ERR_UNK
;
3299 * This is needed to populate the trigger object size for the command
3300 * header and number of fds sent.
3302 message_lsm
= (struct lttcomm_session_msg
*) message
.buffer
.data
;
3304 message_lsm
->u
.trigger
.length
= (uint32_t) message
.buffer
.size
- sizeof(lsm
);
3307 struct lttng_payload_view message_view
=
3308 lttng_payload_view_from_payload(
3312 * Update the message header with the number of fd that will be
3315 message_lsm
->fd_count
= lttng_payload_view_get_fd_handle_count(
3318 ret
= lttng_ctl_ask_sessiond_payload(&message_view
, &reply
);
3326 lttng_trigger_destroy(copy
);
3327 lttng_payload_reset(&message
);
3328 lttng_payload_reset(&reply
);
3333 * Ask the session daemon for all registered triggers for the current user.
3335 * Allocates and return an lttng_triggers set.
3336 * On error, returns a suitable lttng_error_code.
3338 enum lttng_error_code
lttng_list_triggers(struct lttng_triggers
**triggers
)
3341 enum lttng_error_code ret_code
= LTTNG_OK
;
3342 struct lttcomm_session_msg lsm
= { .cmd_type
= LTTNG_LIST_TRIGGERS
};
3343 struct lttng_triggers
*local_triggers
= NULL
;
3344 struct lttng_payload reply
;
3345 struct lttng_payload_view lsm_view
=
3346 lttng_payload_view_init_from_buffer(
3347 (const char *) &lsm
, 0, sizeof(lsm
));
3349 lttng_payload_init(&reply
);
3351 ret
= lttng_ctl_ask_sessiond_payload(&lsm_view
, &reply
);
3353 ret_code
= (enum lttng_error_code
) -ret
;
3358 struct lttng_payload_view reply_view
=
3359 lttng_payload_view_from_payload(
3360 &reply
, 0, reply
.buffer
.size
);
3362 ret
= lttng_triggers_create_from_payload(
3363 &reply_view
, &local_triggers
);
3365 ret_code
= LTTNG_ERR_FATAL
;
3370 *triggers
= local_triggers
;
3371 local_triggers
= NULL
;
3373 lttng_payload_reset(&reply
);
3374 lttng_triggers_destroy(local_triggers
);
3381 static void __attribute__((constructor
)) init(void)
3383 /* Set default session group */
3384 lttng_set_tracing_group(DEFAULT_TRACING_GROUP
);
3390 static void __attribute__((destructor
)) lttng_ctl_exit(void)
3392 free(tracing_group
);