2 * Copyright (C) 2012 David Goulet <dgoulet@efficios.com>
3 * Copyright (C) 2016 Jérémie Galarneau <jeremie.galarneau@efficios.com>
5 * SPDX-License-Identifier: GPL-2.0-only
15 #include <urcu/list.h>
16 #include <urcu/uatomic.h>
18 #include <common/buffer-view.h>
19 #include <common/common.h>
20 #include <common/compat/string.h>
21 #include <common/defaults.h>
22 #include <common/dynamic-buffer.h>
23 #include <common/kernel-ctl/kernel-ctl.h>
24 #include <common/relayd/relayd.h>
25 #include <common/sessiond-comm/sessiond-comm.h>
26 #include <common/string-utils/string-utils.h>
27 #include <common/trace-chunk.h>
28 #include <common/utils.h>
30 #include <lttng/action/action.h>
31 #include <lttng/action/action-internal.h>
32 #include <lttng/channel-internal.h>
33 #include <lttng/channel.h>
34 #include <lttng/condition/condition.h>
35 #include <lttng/error-query-internal.h>
36 #include <lttng/event-internal.h>
37 #include <lttng/location-internal.h>
38 #include <lttng/rotate-internal.h>
39 #include <lttng/session-descriptor-internal.h>
40 #include <lttng/session-internal.h>
41 #include <lttng/trigger/trigger-internal.h>
42 #include <lttng/userspace-probe-internal.h>
44 #include "agent-thread.h"
46 #include "buffer-registry.h"
50 #include "event-notifier-error-accounting.h"
52 #include "health-sessiond.h"
53 #include "kernel-consumer.h"
55 #include "lttng-sessiond.h"
56 #include "lttng-syscall.h"
57 #include "notification-thread-commands.h"
58 #include "notification-thread.h"
60 #include "rotation-thread.h"
66 /* Sleep for 100ms between each check for the shm path's deletion. */
67 #define SESSION_DESTROY_SHM_PATH_CHECK_DELAY_US 100000
69 struct cmd_destroy_session_reply_context
{
71 bool implicit_rotation_on_destroy
;
73 * Indicates whether or not an error occurred while launching the
74 * destruction of a session.
76 enum lttng_error_code destruction_status
;
79 static enum lttng_error_code
wait_on_path(void *path
);
82 * Command completion handler that is used by the destroy command
83 * when a session that has a non-default shm_path is being destroyed.
85 * See comment in cmd_destroy_session() for the rationale.
87 static struct destroy_completion_handler
{
88 struct cmd_completion_handler handler
;
89 char shm_path
[member_sizeof(struct ltt_session
, shm_path
)];
90 } destroy_completion_handler
= {
93 .data
= destroy_completion_handler
.shm_path
98 static struct cmd_completion_handler
*current_completion_handler
;
101 * Used to keep a unique index for each relayd socket created where this value
102 * is associated with streams on the consumer so it can match the right relayd
103 * to send to. It must be accessed with the relayd_net_seq_idx_lock
106 static pthread_mutex_t relayd_net_seq_idx_lock
= PTHREAD_MUTEX_INITIALIZER
;
107 static uint64_t relayd_net_seq_idx
;
109 static int validate_ust_event_name(const char *);
110 static int cmd_enable_event_internal(struct ltt_session
*session
,
111 const struct lttng_domain
*domain
,
112 char *channel_name
, struct lttng_event
*event
,
113 char *filter_expression
,
114 struct lttng_bytecode
*filter
,
115 struct lttng_event_exclusion
*exclusion
,
117 static enum lttng_error_code
cmd_enable_channel_internal(
118 struct ltt_session
*session
,
119 const struct lttng_domain
*domain
,
120 const struct lttng_channel
*_attr
,
124 * Create a session path used by list_lttng_sessions for the case that the
125 * session consumer is on the network.
127 static int build_network_session_path(char *dst
, size_t size
,
128 struct ltt_session
*session
)
130 int ret
, kdata_port
, udata_port
;
131 struct lttng_uri
*kuri
= NULL
, *uuri
= NULL
, *uri
= NULL
;
132 char tmp_uurl
[PATH_MAX
], tmp_urls
[PATH_MAX
];
134 LTTNG_ASSERT(session
);
137 memset(tmp_urls
, 0, sizeof(tmp_urls
));
138 memset(tmp_uurl
, 0, sizeof(tmp_uurl
));
140 kdata_port
= udata_port
= DEFAULT_NETWORK_DATA_PORT
;
142 if (session
->kernel_session
&& session
->kernel_session
->consumer
) {
143 kuri
= &session
->kernel_session
->consumer
->dst
.net
.control
;
144 kdata_port
= session
->kernel_session
->consumer
->dst
.net
.data
.port
;
147 if (session
->ust_session
&& session
->ust_session
->consumer
) {
148 uuri
= &session
->ust_session
->consumer
->dst
.net
.control
;
149 udata_port
= session
->ust_session
->consumer
->dst
.net
.data
.port
;
152 if (uuri
== NULL
&& kuri
== NULL
) {
153 uri
= &session
->consumer
->dst
.net
.control
;
154 kdata_port
= session
->consumer
->dst
.net
.data
.port
;
155 } else if (kuri
&& uuri
) {
156 ret
= uri_compare(kuri
, uuri
);
160 /* Build uuri URL string */
161 ret
= uri_to_str_url(uuri
, tmp_uurl
, sizeof(tmp_uurl
));
168 } else if (kuri
&& uuri
== NULL
) {
170 } else if (uuri
&& kuri
== NULL
) {
174 ret
= uri_to_str_url(uri
, tmp_urls
, sizeof(tmp_urls
));
180 * Do we have a UST url set. If yes, this means we have both kernel and UST
183 if (*tmp_uurl
!= '\0') {
184 ret
= snprintf(dst
, size
, "[K]: %s [data: %d] -- [U]: %s [data: %d]",
185 tmp_urls
, kdata_port
, tmp_uurl
, udata_port
);
188 if (kuri
|| (!kuri
&& !uuri
)) {
191 /* No kernel URI, use the UST port. */
194 ret
= snprintf(dst
, size
, "%s [data: %d]", tmp_urls
, dport
);
202 * Get run-time attributes if the session has been started (discarded events,
205 static int get_kernel_runtime_stats(struct ltt_session
*session
,
206 struct ltt_kernel_channel
*kchan
, uint64_t *discarded_events
,
207 uint64_t *lost_packets
)
211 if (!session
->has_been_started
) {
213 *discarded_events
= 0;
218 ret
= consumer_get_discarded_events(session
->id
, kchan
->key
,
219 session
->kernel_session
->consumer
,
225 ret
= consumer_get_lost_packets(session
->id
, kchan
->key
,
226 session
->kernel_session
->consumer
,
237 * Get run-time attributes if the session has been started (discarded events,
240 static int get_ust_runtime_stats(struct ltt_session
*session
,
241 struct ltt_ust_channel
*uchan
, uint64_t *discarded_events
,
242 uint64_t *lost_packets
)
245 struct ltt_ust_session
*usess
;
247 if (!discarded_events
|| !lost_packets
) {
252 usess
= session
->ust_session
;
253 LTTNG_ASSERT(discarded_events
);
254 LTTNG_ASSERT(lost_packets
);
256 if (!usess
|| !session
->has_been_started
) {
257 *discarded_events
= 0;
263 if (usess
->buffer_type
== LTTNG_BUFFER_PER_UID
) {
264 ret
= ust_app_uid_get_channel_runtime_stats(usess
->id
,
265 &usess
->buffer_reg_uid_list
,
266 usess
->consumer
, uchan
->id
,
267 uchan
->attr
.overwrite
,
270 } else if (usess
->buffer_type
== LTTNG_BUFFER_PER_PID
) {
271 ret
= ust_app_pid_get_channel_runtime_stats(usess
,
272 uchan
, usess
->consumer
,
273 uchan
->attr
.overwrite
,
279 *discarded_events
+= uchan
->per_pid_closed_app_discarded
;
280 *lost_packets
+= uchan
->per_pid_closed_app_lost
;
282 ERR("Unsupported buffer type");
293 * Create a list of agent domain events.
295 * Return number of events in list on success or else a negative value.
297 static enum lttng_error_code
list_lttng_agent_events(
298 struct agent
*agt
, struct lttng_payload
*reply_payload
,
299 unsigned int *nb_events
)
301 enum lttng_error_code ret_code
;
303 unsigned int local_nb_events
= 0;
304 struct agent_event
*event
;
305 struct lttng_ht_iter iter
;
306 unsigned long agent_event_count
;
309 assert(reply_payload
);
311 DBG3("Listing agent events");
314 agent_event_count
= lttng_ht_get_count(agt
->events
);
315 if (agent_event_count
== 0) {
320 if (agent_event_count
> UINT_MAX
) {
321 ret_code
= LTTNG_ERR_OVERFLOW
;
325 local_nb_events
= (unsigned int) agent_event_count
;
327 cds_lfht_for_each_entry(agt
->events
->ht
, &iter
.iter
, event
, node
.node
) {
328 struct lttng_event
*tmp_event
= lttng_event_create();
331 ret_code
= LTTNG_ERR_NOMEM
;
335 if (lttng_strncpy(tmp_event
->name
, event
->name
, sizeof(tmp_event
->name
))) {
336 lttng_event_destroy(tmp_event
);
337 ret_code
= LTTNG_ERR_FATAL
;
341 tmp_event
->name
[sizeof(tmp_event
->name
) - 1] = '\0';
342 tmp_event
->enabled
= !!event
->enabled_count
;
343 tmp_event
->loglevel
= event
->loglevel_value
;
344 tmp_event
->loglevel_type
= event
->loglevel_type
;
346 ret
= lttng_event_serialize(tmp_event
, 0, NULL
,
347 event
->filter_expression
, 0, NULL
, reply_payload
);
348 lttng_event_destroy(tmp_event
);
350 ret_code
= LTTNG_ERR_FATAL
;
357 *nb_events
= local_nb_events
;
364 * Create a list of ust global domain events.
366 static enum lttng_error_code
list_lttng_ust_global_events(char *channel_name
,
367 struct ltt_ust_domain_global
*ust_global
,
368 struct lttng_payload
*reply_payload
,
369 unsigned int *nb_events
)
371 enum lttng_error_code ret_code
;
373 struct lttng_ht_iter iter
;
374 struct lttng_ht_node_str
*node
;
375 struct ltt_ust_channel
*uchan
;
376 struct ltt_ust_event
*uevent
;
377 unsigned long channel_event_count
;
378 unsigned int local_nb_events
= 0;
380 assert(reply_payload
);
383 DBG("Listing UST global events for channel %s", channel_name
);
387 lttng_ht_lookup(ust_global
->channels
, (void *) channel_name
, &iter
);
388 node
= lttng_ht_iter_get_node_str(&iter
);
390 ret_code
= LTTNG_ERR_UST_CHAN_NOT_FOUND
;
394 uchan
= caa_container_of(&node
->node
, struct ltt_ust_channel
, node
.node
);
396 channel_event_count
= lttng_ht_get_count(uchan
->events
);
397 if (channel_event_count
== 0) {
403 if (channel_event_count
> UINT_MAX
) {
404 ret_code
= LTTNG_ERR_OVERFLOW
;
408 local_nb_events
= (unsigned int) channel_event_count
;
410 DBG3("Listing UST global %d events", *nb_events
);
412 cds_lfht_for_each_entry(uchan
->events
->ht
, &iter
.iter
, uevent
, node
.node
) {
413 struct lttng_event
*tmp_event
= NULL
;
415 if (uevent
->internal
) {
416 /* This event should remain hidden from clients */
421 tmp_event
= lttng_event_create();
423 ret_code
= LTTNG_ERR_NOMEM
;
427 if (lttng_strncpy(tmp_event
->name
, uevent
->attr
.name
,
428 LTTNG_SYMBOL_NAME_LEN
)) {
429 ret_code
= LTTNG_ERR_FATAL
;
430 lttng_event_destroy(tmp_event
);
434 tmp_event
->name
[LTTNG_SYMBOL_NAME_LEN
- 1] = '\0';
435 tmp_event
->enabled
= uevent
->enabled
;
437 switch (uevent
->attr
.instrumentation
) {
438 case LTTNG_UST_ABI_TRACEPOINT
:
439 tmp_event
->type
= LTTNG_EVENT_TRACEPOINT
;
441 case LTTNG_UST_ABI_PROBE
:
442 tmp_event
->type
= LTTNG_EVENT_PROBE
;
444 case LTTNG_UST_ABI_FUNCTION
:
445 tmp_event
->type
= LTTNG_EVENT_FUNCTION
;
449 tmp_event
->loglevel
= uevent
->attr
.loglevel
;
450 switch (uevent
->attr
.loglevel_type
) {
451 case LTTNG_UST_ABI_LOGLEVEL_ALL
:
452 tmp_event
->loglevel_type
= LTTNG_EVENT_LOGLEVEL_ALL
;
454 case LTTNG_UST_ABI_LOGLEVEL_RANGE
:
455 tmp_event
->loglevel_type
= LTTNG_EVENT_LOGLEVEL_RANGE
;
457 case LTTNG_UST_ABI_LOGLEVEL_SINGLE
:
458 tmp_event
->loglevel_type
= LTTNG_EVENT_LOGLEVEL_SINGLE
;
461 if (uevent
->filter
) {
462 tmp_event
->filter
= 1;
464 if (uevent
->exclusion
) {
465 tmp_event
->exclusion
= 1;
469 * We do not care about the filter bytecode and the fd from the
470 * userspace_probe_location.
472 ret
= lttng_event_serialize(tmp_event
, uevent
->exclusion
? uevent
->exclusion
->count
: 0,
473 uevent
->exclusion
? (char **) uevent
->exclusion
->names
: NULL
,
474 uevent
->filter_expression
, 0, NULL
, reply_payload
);
475 lttng_event_destroy(tmp_event
);
477 ret_code
= LTTNG_ERR_FATAL
;
483 /* nb_events is already set at this point. */
485 *nb_events
= local_nb_events
;
492 * Fill lttng_event array of all kernel events in the channel.
494 static enum lttng_error_code
list_lttng_kernel_events(char *channel_name
,
495 struct ltt_kernel_session
*kernel_session
,
496 struct lttng_payload
*reply_payload
,
497 unsigned int *nb_events
)
499 enum lttng_error_code ret_code
;
501 struct ltt_kernel_event
*event
;
502 struct ltt_kernel_channel
*kchan
;
504 assert(reply_payload
);
506 kchan
= trace_kernel_get_channel_by_name(channel_name
, kernel_session
);
508 ret_code
= LTTNG_ERR_KERN_CHAN_NOT_FOUND
;
512 *nb_events
= kchan
->event_count
;
514 DBG("Listing events for channel %s", kchan
->channel
->name
);
516 if (*nb_events
== 0) {
521 /* Kernel channels */
522 cds_list_for_each_entry(event
, &kchan
->events_list
.head
, list
) {
523 struct lttng_event
*tmp_event
= lttng_event_create();
526 ret_code
= LTTNG_ERR_NOMEM
;
530 if (lttng_strncpy(tmp_event
->name
, event
->event
->name
, LTTNG_SYMBOL_NAME_LEN
)) {
531 lttng_event_destroy(tmp_event
);
532 ret_code
= LTTNG_ERR_FATAL
;
537 tmp_event
->name
[LTTNG_SYMBOL_NAME_LEN
- 1] = '\0';
538 tmp_event
->enabled
= event
->enabled
;
539 tmp_event
->filter
= (unsigned char) !!event
->filter_expression
;
541 switch (event
->event
->instrumentation
) {
542 case LTTNG_KERNEL_ABI_TRACEPOINT
:
543 tmp_event
->type
= LTTNG_EVENT_TRACEPOINT
;
545 case LTTNG_KERNEL_ABI_KRETPROBE
:
546 tmp_event
->type
= LTTNG_EVENT_FUNCTION
;
547 memcpy(&tmp_event
->attr
.probe
, &event
->event
->u
.kprobe
,
548 sizeof(struct lttng_kernel_abi_kprobe
));
550 case LTTNG_KERNEL_ABI_KPROBE
:
551 tmp_event
->type
= LTTNG_EVENT_PROBE
;
552 memcpy(&tmp_event
->attr
.probe
, &event
->event
->u
.kprobe
,
553 sizeof(struct lttng_kernel_abi_kprobe
));
555 case LTTNG_KERNEL_ABI_UPROBE
:
556 tmp_event
->type
= LTTNG_EVENT_USERSPACE_PROBE
;
558 case LTTNG_KERNEL_ABI_FUNCTION
:
559 tmp_event
->type
= LTTNG_EVENT_FUNCTION
;
560 memcpy(&(tmp_event
->attr
.ftrace
), &event
->event
->u
.ftrace
,
561 sizeof(struct lttng_kernel_abi_function
));
563 case LTTNG_KERNEL_ABI_NOOP
:
564 tmp_event
->type
= LTTNG_EVENT_NOOP
;
566 case LTTNG_KERNEL_ABI_SYSCALL
:
567 tmp_event
->type
= LTTNG_EVENT_SYSCALL
;
569 case LTTNG_KERNEL_ABI_ALL
:
576 if (event
->userspace_probe_location
) {
577 struct lttng_userspace_probe_location
*location_copy
=
578 lttng_userspace_probe_location_copy(
579 event
->userspace_probe_location
);
581 if (!location_copy
) {
582 lttng_event_destroy(tmp_event
);
583 ret_code
= LTTNG_ERR_NOMEM
;
587 ret
= lttng_event_set_userspace_probe_location(
588 tmp_event
, location_copy
);
590 lttng_event_destroy(tmp_event
);
591 lttng_userspace_probe_location_destroy(
593 ret_code
= LTTNG_ERR_INVALID
;
598 ret
= lttng_event_serialize(tmp_event
, 0, NULL
,
599 event
->filter_expression
, 0, NULL
, reply_payload
);
600 lttng_event_destroy(tmp_event
);
602 ret_code
= LTTNG_ERR_FATAL
;
613 * Add URI so the consumer output object. Set the correct path depending on the
614 * domain adding the default trace directory.
616 static enum lttng_error_code
add_uri_to_consumer(
617 const struct ltt_session
*session
,
618 struct consumer_output
*consumer
,
619 struct lttng_uri
*uri
, enum lttng_domain_type domain
)
622 enum lttng_error_code ret_code
= LTTNG_OK
;
626 if (consumer
== NULL
) {
627 DBG("No consumer detected. Don't add URI. Stopping.");
628 ret_code
= LTTNG_ERR_NO_CONSUMER
;
633 case LTTNG_DOMAIN_KERNEL
:
634 ret
= lttng_strncpy(consumer
->domain_subdir
,
635 DEFAULT_KERNEL_TRACE_DIR
,
636 sizeof(consumer
->domain_subdir
));
638 case LTTNG_DOMAIN_UST
:
639 ret
= lttng_strncpy(consumer
->domain_subdir
,
640 DEFAULT_UST_TRACE_DIR
,
641 sizeof(consumer
->domain_subdir
));
645 * This case is possible is we try to add the URI to the global
646 * tracing session consumer object which in this case there is
649 memset(consumer
->domain_subdir
, 0,
650 sizeof(consumer
->domain_subdir
));
654 ERR("Failed to initialize consumer output domain subdirectory");
655 ret_code
= LTTNG_ERR_FATAL
;
659 switch (uri
->dtype
) {
662 DBG2("Setting network URI to consumer");
664 if (consumer
->type
== CONSUMER_DST_NET
) {
665 if ((uri
->stype
== LTTNG_STREAM_CONTROL
&&
666 consumer
->dst
.net
.control_isset
) ||
667 (uri
->stype
== LTTNG_STREAM_DATA
&&
668 consumer
->dst
.net
.data_isset
)) {
669 ret_code
= LTTNG_ERR_URL_EXIST
;
673 memset(&consumer
->dst
, 0, sizeof(consumer
->dst
));
676 /* Set URI into consumer output object */
677 ret
= consumer_set_network_uri(session
, consumer
, uri
);
679 ret_code
= (lttng_error_code
) -ret
;
681 } else if (ret
== 1) {
683 * URI was the same in the consumer so we do not append the subdir
684 * again so to not duplicate output dir.
691 if (*uri
->dst
.path
!= '/' || strstr(uri
->dst
.path
, "../")) {
692 ret_code
= LTTNG_ERR_INVALID
;
695 DBG2("Setting trace directory path from URI to %s",
697 memset(&consumer
->dst
, 0, sizeof(consumer
->dst
));
699 ret
= lttng_strncpy(consumer
->dst
.session_root_path
,
701 sizeof(consumer
->dst
.session_root_path
));
703 ret_code
= LTTNG_ERR_FATAL
;
706 consumer
->type
= CONSUMER_DST_LOCAL
;
716 * Init tracing by creating trace directory and sending fds kernel consumer.
718 static int init_kernel_tracing(struct ltt_kernel_session
*session
)
721 struct lttng_ht_iter iter
;
722 struct consumer_socket
*socket
;
724 LTTNG_ASSERT(session
);
728 if (session
->consumer_fds_sent
== 0 && session
->consumer
!= NULL
) {
729 cds_lfht_for_each_entry(session
->consumer
->socks
->ht
, &iter
.iter
,
731 pthread_mutex_lock(socket
->lock
);
732 ret
= kernel_consumer_send_session(socket
, session
);
733 pthread_mutex_unlock(socket
->lock
);
735 ret
= LTTNG_ERR_KERN_CONSUMER_FAIL
;
747 * Create a socket to the relayd using the URI.
749 * On success, the relayd_sock pointer is set to the created socket.
750 * Else, it remains untouched and an LTTng error code is returned.
752 static enum lttng_error_code
create_connect_relayd(struct lttng_uri
*uri
,
753 struct lttcomm_relayd_sock
**relayd_sock
,
754 struct consumer_output
*consumer
)
757 enum lttng_error_code status
= LTTNG_OK
;
758 struct lttcomm_relayd_sock
*rsock
;
760 rsock
= lttcomm_alloc_relayd_sock(uri
, RELAYD_VERSION_COMM_MAJOR
,
761 RELAYD_VERSION_COMM_MINOR
);
763 status
= LTTNG_ERR_FATAL
;
768 * Connect to relayd so we can proceed with a session creation. This call
769 * can possibly block for an arbitrary amount of time to set the health
770 * state to be in poll execution.
773 ret
= relayd_connect(rsock
);
776 ERR("Unable to reach lttng-relayd");
777 status
= LTTNG_ERR_RELAYD_CONNECT_FAIL
;
781 /* Create socket for control stream. */
782 if (uri
->stype
== LTTNG_STREAM_CONTROL
) {
783 uint64_t result_flags
;
785 DBG3("Creating relayd stream socket from URI");
787 /* Check relayd version */
788 ret
= relayd_version_check(rsock
);
789 if (ret
== LTTNG_ERR_RELAYD_VERSION_FAIL
) {
790 status
= LTTNG_ERR_RELAYD_VERSION_FAIL
;
792 } else if (ret
< 0) {
793 ERR("Unable to reach lttng-relayd");
794 status
= LTTNG_ERR_RELAYD_CONNECT_FAIL
;
797 consumer
->relay_major_version
= rsock
->major
;
798 consumer
->relay_minor_version
= rsock
->minor
;
799 ret
= relayd_get_configuration(rsock
, 0,
802 ERR("Unable to get relayd configuration");
803 status
= LTTNG_ERR_RELAYD_CONNECT_FAIL
;
806 if (result_flags
& LTTCOMM_RELAYD_CONFIGURATION_FLAG_CLEAR_ALLOWED
) {
807 consumer
->relay_allows_clear
= true;
809 } else if (uri
->stype
== LTTNG_STREAM_DATA
) {
810 DBG3("Creating relayd data socket from URI");
812 /* Command is not valid */
813 ERR("Relayd invalid stream type: %d", uri
->stype
);
814 status
= LTTNG_ERR_INVALID
;
818 *relayd_sock
= rsock
;
823 /* The returned value is not useful since we are on an error path. */
824 (void) relayd_close(rsock
);
832 * Connect to the relayd using URI and send the socket to the right consumer.
834 * The consumer socket lock must be held by the caller.
836 * Returns LTTNG_OK on success or an LTTng error code on failure.
838 static enum lttng_error_code
send_consumer_relayd_socket(
839 unsigned int session_id
,
840 struct lttng_uri
*relayd_uri
,
841 struct consumer_output
*consumer
,
842 struct consumer_socket
*consumer_sock
,
843 const char *session_name
, const char *hostname
,
844 const char *base_path
, int session_live_timer
,
845 const uint64_t *current_chunk_id
,
846 time_t session_creation_time
,
847 bool session_name_contains_creation_time
)
850 struct lttcomm_relayd_sock
*rsock
= NULL
;
851 enum lttng_error_code status
;
853 /* Connect to relayd and make version check if uri is the control. */
854 status
= create_connect_relayd(relayd_uri
, &rsock
, consumer
);
855 if (status
!= LTTNG_OK
) {
856 goto relayd_comm_error
;
860 /* Set the network sequence index if not set. */
861 if (consumer
->net_seq_index
== (uint64_t) -1ULL) {
862 pthread_mutex_lock(&relayd_net_seq_idx_lock
);
864 * Increment net_seq_idx because we are about to transfer the
865 * new relayd socket to the consumer.
866 * Assign unique key so the consumer can match streams.
868 consumer
->net_seq_index
= ++relayd_net_seq_idx
;
869 pthread_mutex_unlock(&relayd_net_seq_idx_lock
);
872 /* Send relayd socket to consumer. */
873 ret
= consumer_send_relayd_socket(consumer_sock
, rsock
, consumer
,
874 relayd_uri
->stype
, session_id
,
875 session_name
, hostname
, base_path
,
876 session_live_timer
, current_chunk_id
,
877 session_creation_time
, session_name_contains_creation_time
);
879 status
= LTTNG_ERR_ENABLE_CONSUMER_FAIL
;
883 /* Flag that the corresponding socket was sent. */
884 if (relayd_uri
->stype
== LTTNG_STREAM_CONTROL
) {
885 consumer_sock
->control_sock_sent
= 1;
886 } else if (relayd_uri
->stype
== LTTNG_STREAM_DATA
) {
887 consumer_sock
->data_sock_sent
= 1;
891 * Close socket which was dup on the consumer side. The session daemon does
892 * NOT keep track of the relayd socket(s) once transfer to the consumer.
896 if (status
!= LTTNG_OK
) {
898 * The consumer output for this session should not be used anymore
899 * since the relayd connection failed thus making any tracing or/and
900 * streaming not usable.
902 consumer
->enabled
= 0;
904 (void) relayd_close(rsock
);
912 * Send both relayd sockets to a specific consumer and domain. This is a
913 * helper function to facilitate sending the information to the consumer for a
916 * The consumer socket lock must be held by the caller.
918 * Returns LTTNG_OK, or an LTTng error code on failure.
920 static enum lttng_error_code
send_consumer_relayd_sockets(
921 unsigned int session_id
, struct consumer_output
*consumer
,
922 struct consumer_socket
*sock
, const char *session_name
,
923 const char *hostname
, const char *base_path
, int session_live_timer
,
924 const uint64_t *current_chunk_id
, time_t session_creation_time
,
925 bool session_name_contains_creation_time
)
927 enum lttng_error_code status
= LTTNG_OK
;
929 LTTNG_ASSERT(consumer
);
932 /* Sending control relayd socket. */
933 if (!sock
->control_sock_sent
) {
934 status
= send_consumer_relayd_socket(session_id
,
935 &consumer
->dst
.net
.control
, consumer
, sock
,
936 session_name
, hostname
, base_path
, session_live_timer
,
937 current_chunk_id
, session_creation_time
,
938 session_name_contains_creation_time
);
939 if (status
!= LTTNG_OK
) {
944 /* Sending data relayd socket. */
945 if (!sock
->data_sock_sent
) {
946 status
= send_consumer_relayd_socket(session_id
,
947 &consumer
->dst
.net
.data
, consumer
, sock
,
948 session_name
, hostname
, base_path
, session_live_timer
,
949 current_chunk_id
, session_creation_time
,
950 session_name_contains_creation_time
);
951 if (status
!= LTTNG_OK
) {
961 * Setup relayd connections for a tracing session. First creates the socket to
962 * the relayd and send them to the right domain consumer. Consumer type MUST be
965 int cmd_setup_relayd(struct ltt_session
*session
)
968 struct ltt_ust_session
*usess
;
969 struct ltt_kernel_session
*ksess
;
970 struct consumer_socket
*socket
;
971 struct lttng_ht_iter iter
;
972 LTTNG_OPTIONAL(uint64_t) current_chunk_id
= {};
974 LTTNG_ASSERT(session
);
976 usess
= session
->ust_session
;
977 ksess
= session
->kernel_session
;
979 DBG("Setting relayd for session %s", session
->name
);
982 if (session
->current_trace_chunk
) {
983 enum lttng_trace_chunk_status status
= lttng_trace_chunk_get_id(
984 session
->current_trace_chunk
, ¤t_chunk_id
.value
);
986 if (status
== LTTNG_TRACE_CHUNK_STATUS_OK
) {
987 current_chunk_id
.is_set
= true;
989 ERR("Failed to get current trace chunk id");
995 if (usess
&& usess
->consumer
&& usess
->consumer
->type
== CONSUMER_DST_NET
996 && usess
->consumer
->enabled
) {
997 /* For each consumer socket, send relayd sockets */
998 cds_lfht_for_each_entry(usess
->consumer
->socks
->ht
, &iter
.iter
,
1000 pthread_mutex_lock(socket
->lock
);
1001 ret
= send_consumer_relayd_sockets(session
->id
,
1002 usess
->consumer
, socket
,
1003 session
->name
, session
->hostname
,
1005 session
->live_timer
,
1006 current_chunk_id
.is_set
? ¤t_chunk_id
.value
: NULL
,
1007 session
->creation_time
,
1008 session
->name_contains_creation_time
);
1009 pthread_mutex_unlock(socket
->lock
);
1010 if (ret
!= LTTNG_OK
) {
1013 /* Session is now ready for network streaming. */
1014 session
->net_handle
= 1;
1016 session
->consumer
->relay_major_version
=
1017 usess
->consumer
->relay_major_version
;
1018 session
->consumer
->relay_minor_version
=
1019 usess
->consumer
->relay_minor_version
;
1020 session
->consumer
->relay_allows_clear
=
1021 usess
->consumer
->relay_allows_clear
;
1024 if (ksess
&& ksess
->consumer
&& ksess
->consumer
->type
== CONSUMER_DST_NET
1025 && ksess
->consumer
->enabled
) {
1026 cds_lfht_for_each_entry(ksess
->consumer
->socks
->ht
, &iter
.iter
,
1027 socket
, node
.node
) {
1028 pthread_mutex_lock(socket
->lock
);
1029 ret
= send_consumer_relayd_sockets(session
->id
,
1030 ksess
->consumer
, socket
,
1031 session
->name
, session
->hostname
,
1033 session
->live_timer
,
1034 current_chunk_id
.is_set
? ¤t_chunk_id
.value
: NULL
,
1035 session
->creation_time
,
1036 session
->name_contains_creation_time
);
1037 pthread_mutex_unlock(socket
->lock
);
1038 if (ret
!= LTTNG_OK
) {
1041 /* Session is now ready for network streaming. */
1042 session
->net_handle
= 1;
1044 session
->consumer
->relay_major_version
=
1045 ksess
->consumer
->relay_major_version
;
1046 session
->consumer
->relay_minor_version
=
1047 ksess
->consumer
->relay_minor_version
;
1048 session
->consumer
->relay_allows_clear
=
1049 ksess
->consumer
->relay_allows_clear
;
1058 * Start a kernel session by opening all necessary streams.
1060 int start_kernel_session(struct ltt_kernel_session
*ksess
)
1063 struct ltt_kernel_channel
*kchan
;
1065 /* Open kernel metadata */
1066 if (ksess
->metadata
== NULL
&& ksess
->output_traces
) {
1067 ret
= kernel_open_metadata(ksess
);
1069 ret
= LTTNG_ERR_KERN_META_FAIL
;
1074 /* Open kernel metadata stream */
1075 if (ksess
->metadata
&& ksess
->metadata_stream_fd
< 0) {
1076 ret
= kernel_open_metadata_stream(ksess
);
1078 ERR("Kernel create metadata stream failed");
1079 ret
= LTTNG_ERR_KERN_STREAM_FAIL
;
1084 /* For each channel */
1085 cds_list_for_each_entry(kchan
, &ksess
->channel_list
.head
, list
) {
1086 if (kchan
->stream_count
== 0) {
1087 ret
= kernel_open_channel_stream(kchan
);
1089 ret
= LTTNG_ERR_KERN_STREAM_FAIL
;
1092 /* Update the stream global counter */
1093 ksess
->stream_count_global
+= ret
;
1097 /* Setup kernel consumer socket and send fds to it */
1098 ret
= init_kernel_tracing(ksess
);
1100 ret
= LTTNG_ERR_KERN_START_FAIL
;
1104 /* This start the kernel tracing */
1105 ret
= kernel_start_session(ksess
);
1107 ret
= LTTNG_ERR_KERN_START_FAIL
;
1111 /* Quiescent wait after starting trace */
1112 kernel_wait_quiescent();
1122 int stop_kernel_session(struct ltt_kernel_session
*ksess
)
1124 struct ltt_kernel_channel
*kchan
;
1125 bool error_occurred
= false;
1128 if (!ksess
|| !ksess
->active
) {
1131 DBG("Stopping kernel tracing");
1133 ret
= kernel_stop_session(ksess
);
1135 ret
= LTTNG_ERR_KERN_STOP_FAIL
;
1139 kernel_wait_quiescent();
1141 /* Flush metadata after stopping (if exists) */
1142 if (ksess
->metadata_stream_fd
>= 0) {
1143 ret
= kernel_metadata_flush_buffer(ksess
->metadata_stream_fd
);
1145 ERR("Kernel metadata flush failed");
1146 error_occurred
= true;
1150 /* Flush all buffers after stopping */
1151 cds_list_for_each_entry(kchan
, &ksess
->channel_list
.head
, list
) {
1152 ret
= kernel_flush_buffer(kchan
);
1154 ERR("Kernel flush buffer error");
1155 error_occurred
= true;
1160 if (error_occurred
) {
1161 ret
= LTTNG_ERR_UNK
;
1170 * Command LTTNG_DISABLE_CHANNEL processed by the client thread.
1172 int cmd_disable_channel(struct ltt_session
*session
,
1173 enum lttng_domain_type domain
, char *channel_name
)
1176 struct ltt_ust_session
*usess
;
1178 usess
= session
->ust_session
;
1183 case LTTNG_DOMAIN_KERNEL
:
1185 ret
= channel_kernel_disable(session
->kernel_session
,
1187 if (ret
!= LTTNG_OK
) {
1191 kernel_wait_quiescent();
1194 case LTTNG_DOMAIN_UST
:
1196 struct ltt_ust_channel
*uchan
;
1197 struct lttng_ht
*chan_ht
;
1199 chan_ht
= usess
->domain_global
.channels
;
1201 uchan
= trace_ust_find_channel_by_name(chan_ht
, channel_name
);
1202 if (uchan
== NULL
) {
1203 ret
= LTTNG_ERR_UST_CHAN_NOT_FOUND
;
1207 ret
= channel_ust_disable(usess
, uchan
);
1208 if (ret
!= LTTNG_OK
) {
1214 ret
= LTTNG_ERR_UNKNOWN_DOMAIN
;
1226 * Command LTTNG_ENABLE_CHANNEL processed by the client thread.
1228 * The wpipe arguments is used as a notifier for the kernel thread.
1230 int cmd_enable_channel(struct command_ctx
*cmd_ctx
, int sock
, int wpipe
)
1234 ssize_t sock_recv_len
;
1235 struct lttng_channel
*channel
= NULL
;
1236 struct lttng_buffer_view view
;
1237 struct lttng_dynamic_buffer channel_buffer
;
1238 const struct lttng_domain command_domain
= cmd_ctx
->lsm
.domain
;
1240 lttng_dynamic_buffer_init(&channel_buffer
);
1241 channel_len
= (size_t) cmd_ctx
->lsm
.u
.channel
.length
;
1242 ret
= lttng_dynamic_buffer_set_size(&channel_buffer
, channel_len
);
1244 ret
= LTTNG_ERR_NOMEM
;
1248 sock_recv_len
= lttcomm_recv_unix_sock(sock
, channel_buffer
.data
,
1250 if (sock_recv_len
< 0 || sock_recv_len
!= channel_len
) {
1251 ERR("Failed to receive \"enable channel\" command payload");
1252 ret
= LTTNG_ERR_INVALID
;
1256 view
= lttng_buffer_view_from_dynamic_buffer(&channel_buffer
, 0, channel_len
);
1257 if (!lttng_buffer_view_is_valid(&view
)) {
1258 ret
= LTTNG_ERR_INVALID
;
1262 if (lttng_channel_create_from_buffer(&view
, &channel
) != channel_len
) {
1263 ERR("Invalid channel payload received in \"enable channel\" command");
1264 ret
= LTTNG_ERR_INVALID
;
1268 ret
= cmd_enable_channel_internal(
1269 cmd_ctx
->session
, &command_domain
, channel
, wpipe
);
1272 lttng_dynamic_buffer_reset(&channel_buffer
);
1273 lttng_channel_destroy(channel
);
1277 static enum lttng_error_code
cmd_enable_channel_internal(
1278 struct ltt_session
*session
,
1279 const struct lttng_domain
*domain
,
1280 const struct lttng_channel
*_attr
,
1283 enum lttng_error_code ret_code
;
1284 struct ltt_ust_session
*usess
= session
->ust_session
;
1285 struct lttng_ht
*chan_ht
;
1287 struct lttng_channel
*attr
= NULL
;
1289 LTTNG_ASSERT(session
);
1290 LTTNG_ASSERT(_attr
);
1291 LTTNG_ASSERT(domain
);
1293 attr
= lttng_channel_copy(_attr
);
1295 ret_code
= LTTNG_ERR_NOMEM
;
1299 len
= lttng_strnlen(attr
->name
, sizeof(attr
->name
));
1301 /* Validate channel name */
1302 if (attr
->name
[0] == '.' ||
1303 memchr(attr
->name
, '/', len
) != NULL
) {
1304 ret_code
= LTTNG_ERR_INVALID_CHANNEL_NAME
;
1308 DBG("Enabling channel %s for session %s", attr
->name
, session
->name
);
1313 * If the session is a live session, remove the switch timer, the
1314 * live timer does the same thing but sends also synchronisation
1315 * beacons for inactive streams.
1317 if (session
->live_timer
> 0) {
1318 attr
->attr
.live_timer_interval
= session
->live_timer
;
1319 attr
->attr
.switch_timer_interval
= 0;
1322 /* Check for feature support */
1323 switch (domain
->type
) {
1324 case LTTNG_DOMAIN_KERNEL
:
1326 if (kernel_supports_ring_buffer_snapshot_sample_positions() != 1) {
1327 /* Sampling position of buffer is not supported */
1328 WARN("Kernel tracer does not support buffer monitoring. "
1329 "Setting the monitor interval timer to 0 "
1330 "(disabled) for channel '%s' of session '%s'",
1331 attr
->name
, session
->name
);
1332 lttng_channel_set_monitor_timer_interval(attr
, 0);
1336 case LTTNG_DOMAIN_UST
:
1338 case LTTNG_DOMAIN_JUL
:
1339 case LTTNG_DOMAIN_LOG4J
:
1340 case LTTNG_DOMAIN_PYTHON
:
1341 if (!agent_tracing_is_enabled()) {
1342 DBG("Attempted to enable a channel in an agent domain but the agent thread is not running");
1343 ret_code
= LTTNG_ERR_AGENT_TRACING_DISABLED
;
1348 ret_code
= LTTNG_ERR_UNKNOWN_DOMAIN
;
1352 switch (domain
->type
) {
1353 case LTTNG_DOMAIN_KERNEL
:
1355 struct ltt_kernel_channel
*kchan
;
1357 kchan
= trace_kernel_get_channel_by_name(
1358 attr
->name
, session
->kernel_session
);
1359 if (kchan
== NULL
) {
1361 * Don't try to create a channel if the session has been started at
1362 * some point in time before. The tracer does not allow it.
1364 if (session
->has_been_started
) {
1365 ret_code
= LTTNG_ERR_TRACE_ALREADY_STARTED
;
1369 if (session
->snapshot
.nb_output
> 0 ||
1370 session
->snapshot_mode
) {
1371 /* Enforce mmap output for snapshot sessions. */
1372 attr
->attr
.output
= LTTNG_EVENT_MMAP
;
1374 ret_code
= channel_kernel_create(
1375 session
->kernel_session
, attr
, wpipe
);
1376 if (attr
->name
[0] != '\0') {
1377 session
->kernel_session
->has_non_default_channel
= 1;
1380 ret_code
= channel_kernel_enable(session
->kernel_session
, kchan
);
1383 if (ret_code
!= LTTNG_OK
) {
1387 kernel_wait_quiescent();
1390 case LTTNG_DOMAIN_UST
:
1391 case LTTNG_DOMAIN_JUL
:
1392 case LTTNG_DOMAIN_LOG4J
:
1393 case LTTNG_DOMAIN_PYTHON
:
1395 struct ltt_ust_channel
*uchan
;
1400 * Current agent implementation limitations force us to allow
1401 * only one channel at once in "agent" subdomains. Each
1402 * subdomain has a default channel name which must be strictly
1405 if (domain
->type
== LTTNG_DOMAIN_JUL
) {
1406 if (strncmp(attr
->name
, DEFAULT_JUL_CHANNEL_NAME
,
1407 LTTNG_SYMBOL_NAME_LEN
)) {
1408 ret_code
= LTTNG_ERR_INVALID_CHANNEL_NAME
;
1411 } else if (domain
->type
== LTTNG_DOMAIN_LOG4J
) {
1412 if (strncmp(attr
->name
, DEFAULT_LOG4J_CHANNEL_NAME
,
1413 LTTNG_SYMBOL_NAME_LEN
)) {
1414 ret_code
= LTTNG_ERR_INVALID_CHANNEL_NAME
;
1417 } else if (domain
->type
== LTTNG_DOMAIN_PYTHON
) {
1418 if (strncmp(attr
->name
, DEFAULT_PYTHON_CHANNEL_NAME
,
1419 LTTNG_SYMBOL_NAME_LEN
)) {
1420 ret_code
= LTTNG_ERR_INVALID_CHANNEL_NAME
;
1425 chan_ht
= usess
->domain_global
.channels
;
1427 uchan
= trace_ust_find_channel_by_name(chan_ht
, attr
->name
);
1428 if (uchan
== NULL
) {
1430 * Don't try to create a channel if the session has been started at
1431 * some point in time before. The tracer does not allow it.
1433 if (session
->has_been_started
) {
1434 ret_code
= LTTNG_ERR_TRACE_ALREADY_STARTED
;
1438 ret_code
= channel_ust_create(usess
, attr
, domain
->buf_type
);
1439 if (attr
->name
[0] != '\0') {
1440 usess
->has_non_default_channel
= 1;
1443 ret_code
= channel_ust_enable(usess
, uchan
);
1448 ret_code
= LTTNG_ERR_UNKNOWN_DOMAIN
;
1452 if (ret_code
== LTTNG_OK
&& attr
->attr
.output
!= LTTNG_EVENT_MMAP
) {
1453 session
->has_non_mmap_channel
= true;
1458 lttng_channel_destroy(attr
);
1462 enum lttng_error_code
cmd_process_attr_tracker_get_tracking_policy(
1463 struct ltt_session
*session
,
1464 enum lttng_domain_type domain
,
1465 enum lttng_process_attr process_attr
,
1466 enum lttng_tracking_policy
*policy
)
1468 enum lttng_error_code ret_code
= LTTNG_OK
;
1469 const struct process_attr_tracker
*tracker
;
1472 case LTTNG_DOMAIN_KERNEL
:
1473 if (!session
->kernel_session
) {
1474 ret_code
= LTTNG_ERR_INVALID
;
1477 tracker
= kernel_get_process_attr_tracker(
1478 session
->kernel_session
, process_attr
);
1480 case LTTNG_DOMAIN_UST
:
1481 if (!session
->ust_session
) {
1482 ret_code
= LTTNG_ERR_INVALID
;
1485 tracker
= trace_ust_get_process_attr_tracker(
1486 session
->ust_session
, process_attr
);
1489 ret_code
= LTTNG_ERR_UNSUPPORTED_DOMAIN
;
1493 *policy
= process_attr_tracker_get_tracking_policy(tracker
);
1495 ret_code
= LTTNG_ERR_INVALID
;
1501 enum lttng_error_code
cmd_process_attr_tracker_set_tracking_policy(
1502 struct ltt_session
*session
,
1503 enum lttng_domain_type domain
,
1504 enum lttng_process_attr process_attr
,
1505 enum lttng_tracking_policy policy
)
1507 enum lttng_error_code ret_code
= LTTNG_OK
;
1510 case LTTNG_TRACKING_POLICY_INCLUDE_SET
:
1511 case LTTNG_TRACKING_POLICY_EXCLUDE_ALL
:
1512 case LTTNG_TRACKING_POLICY_INCLUDE_ALL
:
1515 ret_code
= LTTNG_ERR_INVALID
;
1520 case LTTNG_DOMAIN_KERNEL
:
1521 if (!session
->kernel_session
) {
1522 ret_code
= LTTNG_ERR_INVALID
;
1525 ret_code
= kernel_process_attr_tracker_set_tracking_policy(
1526 session
->kernel_session
, process_attr
, policy
);
1528 case LTTNG_DOMAIN_UST
:
1529 if (!session
->ust_session
) {
1530 ret_code
= LTTNG_ERR_INVALID
;
1533 ret_code
= trace_ust_process_attr_tracker_set_tracking_policy(
1534 session
->ust_session
, process_attr
, policy
);
1537 ret_code
= LTTNG_ERR_UNSUPPORTED_DOMAIN
;
1544 enum lttng_error_code
cmd_process_attr_tracker_inclusion_set_add_value(
1545 struct ltt_session
*session
,
1546 enum lttng_domain_type domain
,
1547 enum lttng_process_attr process_attr
,
1548 const struct process_attr_value
*value
)
1550 enum lttng_error_code ret_code
= LTTNG_OK
;
1553 case LTTNG_DOMAIN_KERNEL
:
1554 if (!session
->kernel_session
) {
1555 ret_code
= LTTNG_ERR_INVALID
;
1558 ret_code
= kernel_process_attr_tracker_inclusion_set_add_value(
1559 session
->kernel_session
, process_attr
, value
);
1561 case LTTNG_DOMAIN_UST
:
1562 if (!session
->ust_session
) {
1563 ret_code
= LTTNG_ERR_INVALID
;
1566 ret_code
= trace_ust_process_attr_tracker_inclusion_set_add_value(
1567 session
->ust_session
, process_attr
, value
);
1570 ret_code
= LTTNG_ERR_UNSUPPORTED_DOMAIN
;
1577 enum lttng_error_code
cmd_process_attr_tracker_inclusion_set_remove_value(
1578 struct ltt_session
*session
,
1579 enum lttng_domain_type domain
,
1580 enum lttng_process_attr process_attr
,
1581 const struct process_attr_value
*value
)
1583 enum lttng_error_code ret_code
= LTTNG_OK
;
1586 case LTTNG_DOMAIN_KERNEL
:
1587 if (!session
->kernel_session
) {
1588 ret_code
= LTTNG_ERR_INVALID
;
1591 ret_code
= kernel_process_attr_tracker_inclusion_set_remove_value(
1592 session
->kernel_session
, process_attr
, value
);
1594 case LTTNG_DOMAIN_UST
:
1595 if (!session
->ust_session
) {
1596 ret_code
= LTTNG_ERR_INVALID
;
1599 ret_code
= trace_ust_process_attr_tracker_inclusion_set_remove_value(
1600 session
->ust_session
, process_attr
, value
);
1603 ret_code
= LTTNG_ERR_UNSUPPORTED_DOMAIN
;
1610 enum lttng_error_code
cmd_process_attr_tracker_get_inclusion_set(
1611 struct ltt_session
*session
,
1612 enum lttng_domain_type domain
,
1613 enum lttng_process_attr process_attr
,
1614 struct lttng_process_attr_values
**values
)
1616 enum lttng_error_code ret_code
= LTTNG_OK
;
1617 const struct process_attr_tracker
*tracker
;
1618 enum process_attr_tracker_status status
;
1621 case LTTNG_DOMAIN_KERNEL
:
1622 if (!session
->kernel_session
) {
1623 ret_code
= LTTNG_ERR_INVALID
;
1626 tracker
= kernel_get_process_attr_tracker(
1627 session
->kernel_session
, process_attr
);
1629 case LTTNG_DOMAIN_UST
:
1630 if (!session
->ust_session
) {
1631 ret_code
= LTTNG_ERR_INVALID
;
1634 tracker
= trace_ust_get_process_attr_tracker(
1635 session
->ust_session
, process_attr
);
1638 ret_code
= LTTNG_ERR_UNSUPPORTED_DOMAIN
;
1643 ret_code
= LTTNG_ERR_INVALID
;
1647 status
= process_attr_tracker_get_inclusion_set(tracker
, values
);
1649 case PROCESS_ATTR_TRACKER_STATUS_OK
:
1650 ret_code
= LTTNG_OK
;
1652 case PROCESS_ATTR_TRACKER_STATUS_INVALID_TRACKING_POLICY
:
1653 ret_code
= LTTNG_ERR_PROCESS_ATTR_TRACKER_INVALID_TRACKING_POLICY
;
1655 case PROCESS_ATTR_TRACKER_STATUS_ERROR
:
1656 ret_code
= LTTNG_ERR_NOMEM
;
1659 ret_code
= LTTNG_ERR_UNK
;
1668 * Command LTTNG_DISABLE_EVENT processed by the client thread.
1670 int cmd_disable_event(struct command_ctx
*cmd_ctx
,
1671 struct lttng_event
*event
,
1672 char *filter_expression
,
1673 struct lttng_bytecode
*bytecode
,
1674 struct lttng_event_exclusion
*exclusion
)
1677 const char *event_name
;
1678 const struct ltt_session
*session
= cmd_ctx
->session
;
1679 const char *channel_name
= cmd_ctx
->lsm
.u
.disable
.channel_name
;
1680 const enum lttng_domain_type domain
= cmd_ctx
->lsm
.domain
.type
;
1682 DBG("Disable event command for event \'%s\'", event
->name
);
1685 * Filter and exclusions are simply not handled by the
1686 * disable event command at this time.
1690 (void) filter_expression
;
1693 /* Ignore the presence of filter or exclusion for the event */
1695 event
->exclusion
= 0;
1697 event_name
= event
->name
;
1699 /* Error out on unhandled search criteria */
1700 if (event
->loglevel_type
|| event
->loglevel
!= -1 || event
->enabled
1701 || event
->pid
|| event
->filter
|| event
->exclusion
) {
1702 ret
= LTTNG_ERR_UNK
;
1709 case LTTNG_DOMAIN_KERNEL
:
1711 struct ltt_kernel_channel
*kchan
;
1712 struct ltt_kernel_session
*ksess
;
1714 ksess
= session
->kernel_session
;
1717 * If a non-default channel has been created in the
1718 * session, explicitely require that -c chan_name needs
1721 if (ksess
->has_non_default_channel
&& channel_name
[0] == '\0') {
1722 ret
= LTTNG_ERR_NEED_CHANNEL_NAME
;
1726 kchan
= trace_kernel_get_channel_by_name(channel_name
, ksess
);
1727 if (kchan
== NULL
) {
1728 ret
= LTTNG_ERR_KERN_CHAN_NOT_FOUND
;
1732 switch (event
->type
) {
1733 case LTTNG_EVENT_ALL
:
1734 case LTTNG_EVENT_TRACEPOINT
:
1735 case LTTNG_EVENT_SYSCALL
:
1736 case LTTNG_EVENT_PROBE
:
1737 case LTTNG_EVENT_FUNCTION
:
1738 case LTTNG_EVENT_FUNCTION_ENTRY
:/* fall-through */
1739 if (event_name
[0] == '\0') {
1740 ret
= event_kernel_disable_event(kchan
,
1743 ret
= event_kernel_disable_event(kchan
,
1744 event_name
, event
->type
);
1746 if (ret
!= LTTNG_OK
) {
1751 ret
= LTTNG_ERR_UNK
;
1755 kernel_wait_quiescent();
1758 case LTTNG_DOMAIN_UST
:
1760 struct ltt_ust_channel
*uchan
;
1761 struct ltt_ust_session
*usess
;
1763 usess
= session
->ust_session
;
1765 if (validate_ust_event_name(event_name
)) {
1766 ret
= LTTNG_ERR_INVALID_EVENT_NAME
;
1771 * If a non-default channel has been created in the
1772 * session, explicitly require that -c chan_name needs
1775 if (usess
->has_non_default_channel
&& channel_name
[0] == '\0') {
1776 ret
= LTTNG_ERR_NEED_CHANNEL_NAME
;
1780 uchan
= trace_ust_find_channel_by_name(usess
->domain_global
.channels
,
1782 if (uchan
== NULL
) {
1783 ret
= LTTNG_ERR_UST_CHAN_NOT_FOUND
;
1787 switch (event
->type
) {
1788 case LTTNG_EVENT_ALL
:
1790 * An empty event name means that everything
1791 * should be disabled.
1793 if (event
->name
[0] == '\0') {
1794 ret
= event_ust_disable_all_tracepoints(usess
, uchan
);
1796 ret
= event_ust_disable_tracepoint(usess
, uchan
,
1799 if (ret
!= LTTNG_OK
) {
1804 ret
= LTTNG_ERR_UNK
;
1808 DBG3("Disable UST event %s in channel %s completed", event_name
,
1812 case LTTNG_DOMAIN_LOG4J
:
1813 case LTTNG_DOMAIN_JUL
:
1814 case LTTNG_DOMAIN_PYTHON
:
1817 struct ltt_ust_session
*usess
= session
->ust_session
;
1819 LTTNG_ASSERT(usess
);
1821 switch (event
->type
) {
1822 case LTTNG_EVENT_ALL
:
1825 ret
= LTTNG_ERR_UNK
;
1829 agt
= trace_ust_find_agent(usess
, domain
);
1831 ret
= -LTTNG_ERR_UST_EVENT_NOT_FOUND
;
1835 * An empty event name means that everything
1836 * should be disabled.
1838 if (event
->name
[0] == '\0') {
1839 ret
= event_agent_disable_all(usess
, agt
);
1841 ret
= event_agent_disable(usess
, agt
, event_name
);
1843 if (ret
!= LTTNG_OK
) {
1850 ret
= LTTNG_ERR_UND
;
1861 free(filter_expression
);
1866 * Command LTTNG_ADD_CONTEXT processed by the client thread.
1868 int cmd_add_context(struct command_ctx
*cmd_ctx
,
1869 const struct lttng_event_context
*event_context
, int kwpipe
)
1871 int ret
, chan_kern_created
= 0, chan_ust_created
= 0;
1872 const enum lttng_domain_type domain
= cmd_ctx
->lsm
.domain
.type
;
1873 const struct ltt_session
*session
= cmd_ctx
->session
;
1874 const char *channel_name
= cmd_ctx
->lsm
.u
.context
.channel_name
;
1877 * Don't try to add a context if the session has been started at
1878 * some point in time before. The tracer does not allow it and would
1879 * result in a corrupted trace.
1881 if (cmd_ctx
->session
->has_been_started
) {
1882 ret
= LTTNG_ERR_TRACE_ALREADY_STARTED
;
1887 case LTTNG_DOMAIN_KERNEL
:
1888 LTTNG_ASSERT(session
->kernel_session
);
1890 if (session
->kernel_session
->channel_count
== 0) {
1891 /* Create default channel */
1892 ret
= channel_kernel_create(session
->kernel_session
, NULL
, kwpipe
);
1893 if (ret
!= LTTNG_OK
) {
1896 chan_kern_created
= 1;
1898 /* Add kernel context to kernel tracer */
1899 ret
= context_kernel_add(session
->kernel_session
,
1900 event_context
, channel_name
);
1901 if (ret
!= LTTNG_OK
) {
1905 case LTTNG_DOMAIN_JUL
:
1906 case LTTNG_DOMAIN_LOG4J
:
1909 * Validate channel name.
1910 * If no channel name is given and the domain is JUL or LOG4J,
1911 * set it to the appropriate domain-specific channel name. If
1912 * a name is provided but does not match the expexted channel
1913 * name, return an error.
1915 if (domain
== LTTNG_DOMAIN_JUL
&& *channel_name
&&
1916 strcmp(channel_name
,
1917 DEFAULT_JUL_CHANNEL_NAME
)) {
1918 ret
= LTTNG_ERR_UST_CHAN_NOT_FOUND
;
1920 } else if (domain
== LTTNG_DOMAIN_LOG4J
&& *channel_name
&&
1921 strcmp(channel_name
,
1922 DEFAULT_LOG4J_CHANNEL_NAME
)) {
1923 ret
= LTTNG_ERR_UST_CHAN_NOT_FOUND
;
1928 case LTTNG_DOMAIN_UST
:
1930 struct ltt_ust_session
*usess
= session
->ust_session
;
1931 unsigned int chan_count
;
1933 LTTNG_ASSERT(usess
);
1935 chan_count
= lttng_ht_get_count(usess
->domain_global
.channels
);
1936 if (chan_count
== 0) {
1937 struct lttng_channel
*attr
;
1938 /* Create default channel */
1939 attr
= channel_new_default_attr(domain
, usess
->buffer_type
);
1941 ret
= LTTNG_ERR_FATAL
;
1945 ret
= channel_ust_create(usess
, attr
, usess
->buffer_type
);
1946 if (ret
!= LTTNG_OK
) {
1950 channel_attr_destroy(attr
);
1951 chan_ust_created
= 1;
1954 ret
= context_ust_add(usess
, domain
, event_context
,
1956 if (ret
!= LTTNG_OK
) {
1962 ret
= LTTNG_ERR_UND
;
1970 if (chan_kern_created
) {
1971 struct ltt_kernel_channel
*kchan
=
1972 trace_kernel_get_channel_by_name(DEFAULT_CHANNEL_NAME
,
1973 session
->kernel_session
);
1974 /* Created previously, this should NOT fail. */
1975 LTTNG_ASSERT(kchan
);
1976 kernel_destroy_channel(kchan
);
1979 if (chan_ust_created
) {
1980 struct ltt_ust_channel
*uchan
=
1981 trace_ust_find_channel_by_name(
1982 session
->ust_session
->domain_global
.channels
,
1983 DEFAULT_CHANNEL_NAME
);
1984 /* Created previously, this should NOT fail. */
1985 LTTNG_ASSERT(uchan
);
1986 /* Remove from the channel list of the session. */
1987 trace_ust_delete_channel(session
->ust_session
->domain_global
.channels
,
1989 trace_ust_destroy_channel(uchan
);
1995 static inline bool name_starts_with(const char *name
, const char *prefix
)
1997 const size_t max_cmp_len
= std::min(strlen(prefix
), (size_t) LTTNG_SYMBOL_NAME_LEN
);
1999 return !strncmp(name
, prefix
, max_cmp_len
);
2002 /* Perform userspace-specific event name validation */
2003 static int validate_ust_event_name(const char *name
)
2013 * Check name against all internal UST event component namespaces used
2016 if (name_starts_with(name
, DEFAULT_JUL_EVENT_COMPONENT
) ||
2017 name_starts_with(name
, DEFAULT_LOG4J_EVENT_COMPONENT
) ||
2018 name_starts_with(name
, DEFAULT_PYTHON_EVENT_COMPONENT
)) {
2027 * Internal version of cmd_enable_event() with a supplemental
2028 * "internal_event" flag which is used to enable internal events which should
2029 * be hidden from clients. Such events are used in the agent implementation to
2030 * enable the events through which all "agent" events are funeled.
2032 static int _cmd_enable_event(struct ltt_session
*session
,
2033 const struct lttng_domain
*domain
,
2034 char *channel_name
, struct lttng_event
*event
,
2035 char *filter_expression
,
2036 struct lttng_bytecode
*filter
,
2037 struct lttng_event_exclusion
*exclusion
,
2038 int wpipe
, bool internal_event
)
2040 int ret
= 0, channel_created
= 0;
2041 struct lttng_channel
*attr
= NULL
;
2043 LTTNG_ASSERT(session
);
2044 LTTNG_ASSERT(event
);
2045 LTTNG_ASSERT(channel_name
);
2047 /* If we have a filter, we must have its filter expression */
2048 LTTNG_ASSERT(!(!!filter_expression
^ !!filter
));
2050 /* Normalize event name as a globbing pattern */
2051 strutils_normalize_star_glob_pattern(event
->name
);
2053 /* Normalize exclusion names as globbing patterns */
2057 for (i
= 0; i
< exclusion
->count
; i
++) {
2058 char *name
= LTTNG_EVENT_EXCLUSION_NAME_AT(exclusion
, i
);
2060 strutils_normalize_star_glob_pattern(name
);
2064 DBG("Enable event command for event \'%s\'", event
->name
);
2068 switch (domain
->type
) {
2069 case LTTNG_DOMAIN_KERNEL
:
2071 struct ltt_kernel_channel
*kchan
;
2074 * If a non-default channel has been created in the
2075 * session, explicitely require that -c chan_name needs
2078 if (session
->kernel_session
->has_non_default_channel
2079 && channel_name
[0] == '\0') {
2080 ret
= LTTNG_ERR_NEED_CHANNEL_NAME
;
2084 kchan
= trace_kernel_get_channel_by_name(channel_name
,
2085 session
->kernel_session
);
2086 if (kchan
== NULL
) {
2087 attr
= channel_new_default_attr(LTTNG_DOMAIN_KERNEL
,
2088 LTTNG_BUFFER_GLOBAL
);
2090 ret
= LTTNG_ERR_FATAL
;
2093 if (lttng_strncpy(attr
->name
, channel_name
,
2094 sizeof(attr
->name
))) {
2095 ret
= LTTNG_ERR_INVALID
;
2099 ret
= cmd_enable_channel_internal(
2100 session
, domain
, attr
, wpipe
);
2101 if (ret
!= LTTNG_OK
) {
2104 channel_created
= 1;
2107 /* Get the newly created kernel channel pointer */
2108 kchan
= trace_kernel_get_channel_by_name(channel_name
,
2109 session
->kernel_session
);
2110 if (kchan
== NULL
) {
2111 /* This sould not happen... */
2112 ret
= LTTNG_ERR_FATAL
;
2116 switch (event
->type
) {
2117 case LTTNG_EVENT_ALL
:
2119 char *filter_expression_a
= NULL
;
2120 struct lttng_bytecode
*filter_a
= NULL
;
2123 * We need to duplicate filter_expression and filter,
2124 * because ownership is passed to first enable
2127 if (filter_expression
) {
2128 filter_expression_a
= strdup(filter_expression
);
2129 if (!filter_expression_a
) {
2130 ret
= LTTNG_ERR_FATAL
;
2135 filter_a
= (lttng_bytecode
*) zmalloc(sizeof(*filter_a
) + filter
->len
);
2137 free(filter_expression_a
);
2138 ret
= LTTNG_ERR_FATAL
;
2141 memcpy(filter_a
, filter
, sizeof(*filter_a
) + filter
->len
);
2143 event
->type
= LTTNG_EVENT_TRACEPOINT
; /* Hack */
2144 ret
= event_kernel_enable_event(kchan
, event
,
2145 filter_expression
, filter
);
2146 /* We have passed ownership */
2147 filter_expression
= NULL
;
2149 if (ret
!= LTTNG_OK
) {
2150 if (channel_created
) {
2151 /* Let's not leak a useless channel. */
2152 kernel_destroy_channel(kchan
);
2154 free(filter_expression_a
);
2158 event
->type
= LTTNG_EVENT_SYSCALL
; /* Hack */
2159 ret
= event_kernel_enable_event(kchan
, event
,
2160 filter_expression_a
, filter_a
);
2161 /* We have passed ownership */
2162 filter_expression_a
= NULL
;
2164 if (ret
!= LTTNG_OK
) {
2169 case LTTNG_EVENT_PROBE
:
2170 case LTTNG_EVENT_USERSPACE_PROBE
:
2171 case LTTNG_EVENT_FUNCTION
:
2172 case LTTNG_EVENT_FUNCTION_ENTRY
:
2173 case LTTNG_EVENT_TRACEPOINT
:
2174 ret
= event_kernel_enable_event(kchan
, event
,
2175 filter_expression
, filter
);
2176 /* We have passed ownership */
2177 filter_expression
= NULL
;
2179 if (ret
!= LTTNG_OK
) {
2180 if (channel_created
) {
2181 /* Let's not leak a useless channel. */
2182 kernel_destroy_channel(kchan
);
2187 case LTTNG_EVENT_SYSCALL
:
2188 ret
= event_kernel_enable_event(kchan
, event
,
2189 filter_expression
, filter
);
2190 /* We have passed ownership */
2191 filter_expression
= NULL
;
2193 if (ret
!= LTTNG_OK
) {
2198 ret
= LTTNG_ERR_UNK
;
2202 kernel_wait_quiescent();
2205 case LTTNG_DOMAIN_UST
:
2207 struct ltt_ust_channel
*uchan
;
2208 struct ltt_ust_session
*usess
= session
->ust_session
;
2210 LTTNG_ASSERT(usess
);
2213 * If a non-default channel has been created in the
2214 * session, explicitely require that -c chan_name needs
2217 if (usess
->has_non_default_channel
&& channel_name
[0] == '\0') {
2218 ret
= LTTNG_ERR_NEED_CHANNEL_NAME
;
2222 /* Get channel from global UST domain */
2223 uchan
= trace_ust_find_channel_by_name(usess
->domain_global
.channels
,
2225 if (uchan
== NULL
) {
2226 /* Create default channel */
2227 attr
= channel_new_default_attr(LTTNG_DOMAIN_UST
,
2228 usess
->buffer_type
);
2230 ret
= LTTNG_ERR_FATAL
;
2233 if (lttng_strncpy(attr
->name
, channel_name
,
2234 sizeof(attr
->name
))) {
2235 ret
= LTTNG_ERR_INVALID
;
2239 ret
= cmd_enable_channel_internal(
2240 session
, domain
, attr
, wpipe
);
2241 if (ret
!= LTTNG_OK
) {
2245 /* Get the newly created channel reference back */
2246 uchan
= trace_ust_find_channel_by_name(
2247 usess
->domain_global
.channels
, channel_name
);
2248 LTTNG_ASSERT(uchan
);
2251 if (uchan
->domain
!= LTTNG_DOMAIN_UST
&& !internal_event
) {
2253 * Don't allow users to add UST events to channels which
2254 * are assigned to a userspace subdomain (JUL, Log4J,
2257 ret
= LTTNG_ERR_INVALID_CHANNEL_DOMAIN
;
2261 if (!internal_event
) {
2263 * Ensure the event name is not reserved for internal
2266 ret
= validate_ust_event_name(event
->name
);
2268 WARN("Userspace event name %s failed validation.",
2270 ret
= LTTNG_ERR_INVALID_EVENT_NAME
;
2275 /* At this point, the session and channel exist on the tracer */
2276 ret
= event_ust_enable_tracepoint(usess
, uchan
, event
,
2277 filter_expression
, filter
, exclusion
,
2279 /* We have passed ownership */
2280 filter_expression
= NULL
;
2283 if (ret
== LTTNG_ERR_UST_EVENT_ENABLED
) {
2284 goto already_enabled
;
2285 } else if (ret
!= LTTNG_OK
) {
2290 case LTTNG_DOMAIN_LOG4J
:
2291 case LTTNG_DOMAIN_JUL
:
2292 case LTTNG_DOMAIN_PYTHON
:
2294 const char *default_event_name
, *default_chan_name
;
2296 struct lttng_event uevent
;
2297 struct lttng_domain tmp_dom
;
2298 struct ltt_ust_session
*usess
= session
->ust_session
;
2300 LTTNG_ASSERT(usess
);
2302 if (!agent_tracing_is_enabled()) {
2303 DBG("Attempted to enable an event in an agent domain but the agent thread is not running");
2304 ret
= LTTNG_ERR_AGENT_TRACING_DISABLED
;
2308 agt
= trace_ust_find_agent(usess
, domain
->type
);
2310 agt
= agent_create(domain
->type
);
2312 ret
= LTTNG_ERR_NOMEM
;
2315 agent_add(agt
, usess
->agents
);
2318 /* Create the default tracepoint. */
2319 memset(&uevent
, 0, sizeof(uevent
));
2320 uevent
.type
= LTTNG_EVENT_TRACEPOINT
;
2321 uevent
.loglevel_type
= LTTNG_EVENT_LOGLEVEL_ALL
;
2322 default_event_name
= event_get_default_agent_ust_name(
2324 if (!default_event_name
) {
2325 ret
= LTTNG_ERR_FATAL
;
2328 strncpy(uevent
.name
, default_event_name
, sizeof(uevent
.name
));
2329 uevent
.name
[sizeof(uevent
.name
) - 1] = '\0';
2332 * The domain type is changed because we are about to enable the
2333 * default channel and event for the JUL domain that are hardcoded.
2334 * This happens in the UST domain.
2336 memcpy(&tmp_dom
, domain
, sizeof(tmp_dom
));
2337 tmp_dom
.type
= LTTNG_DOMAIN_UST
;
2339 switch (domain
->type
) {
2340 case LTTNG_DOMAIN_LOG4J
:
2341 default_chan_name
= DEFAULT_LOG4J_CHANNEL_NAME
;
2343 case LTTNG_DOMAIN_JUL
:
2344 default_chan_name
= DEFAULT_JUL_CHANNEL_NAME
;
2346 case LTTNG_DOMAIN_PYTHON
:
2347 default_chan_name
= DEFAULT_PYTHON_CHANNEL_NAME
;
2350 /* The switch/case we are in makes this impossible */
2355 char *filter_expression_copy
= NULL
;
2356 struct lttng_bytecode
*filter_copy
= NULL
;
2359 const size_t filter_size
= sizeof(
2360 struct lttng_bytecode
)
2363 filter_copy
= (lttng_bytecode
*) zmalloc(filter_size
);
2365 ret
= LTTNG_ERR_NOMEM
;
2368 memcpy(filter_copy
, filter
, filter_size
);
2370 filter_expression_copy
=
2371 strdup(filter_expression
);
2372 if (!filter_expression
) {
2373 ret
= LTTNG_ERR_NOMEM
;
2376 if (!filter_expression_copy
|| !filter_copy
) {
2377 free(filter_expression_copy
);
2383 ret
= cmd_enable_event_internal(session
, &tmp_dom
,
2384 (char *) default_chan_name
,
2385 &uevent
, filter_expression_copy
,
2386 filter_copy
, NULL
, wpipe
);
2389 if (ret
== LTTNG_ERR_UST_EVENT_ENABLED
) {
2390 goto already_enabled
;
2391 } else if (ret
!= LTTNG_OK
) {
2395 /* The wild card * means that everything should be enabled. */
2396 if (strncmp(event
->name
, "*", 1) == 0 && strlen(event
->name
) == 1) {
2397 ret
= event_agent_enable_all(usess
, agt
, event
, filter
,
2400 ret
= event_agent_enable(usess
, agt
, event
, filter
,
2404 filter_expression
= NULL
;
2405 if (ret
!= LTTNG_OK
) {
2412 ret
= LTTNG_ERR_UND
;
2420 free(filter_expression
);
2423 channel_attr_destroy(attr
);
2429 * Command LTTNG_ENABLE_EVENT processed by the client thread.
2430 * We own filter, exclusion, and filter_expression.
2432 int cmd_enable_event(struct command_ctx
*cmd_ctx
,
2433 struct lttng_event
*event
,
2434 char *filter_expression
,
2435 struct lttng_event_exclusion
*exclusion
,
2436 struct lttng_bytecode
*bytecode
,
2441 * Copied to ensure proper alignment since 'lsm' is a packed structure.
2443 const lttng_domain command_domain
= cmd_ctx
->lsm
.domain
;
2446 * The ownership of the following parameters is transferred to
2447 * _cmd_enable_event:
2449 * - filter_expression,
2453 ret
= _cmd_enable_event(cmd_ctx
->session
,
2455 cmd_ctx
->lsm
.u
.enable
.channel_name
, event
,
2456 filter_expression
, bytecode
, exclusion
, wpipe
, false);
2457 filter_expression
= NULL
;
2464 * Enable an event which is internal to LTTng. An internal should
2465 * never be made visible to clients and are immune to checks such as
2468 static int cmd_enable_event_internal(struct ltt_session
*session
,
2469 const struct lttng_domain
*domain
,
2470 char *channel_name
, struct lttng_event
*event
,
2471 char *filter_expression
,
2472 struct lttng_bytecode
*filter
,
2473 struct lttng_event_exclusion
*exclusion
,
2476 return _cmd_enable_event(session
, domain
, channel_name
, event
,
2477 filter_expression
, filter
, exclusion
, wpipe
, true);
2481 * Command LTTNG_LIST_TRACEPOINTS processed by the client thread.
2483 enum lttng_error_code
cmd_list_tracepoints(enum lttng_domain_type domain
,
2484 struct lttng_payload
*reply_payload
)
2486 enum lttng_error_code ret_code
;
2488 ssize_t i
, nb_events
= 0;
2489 struct lttng_event
*events
= NULL
;
2490 struct lttcomm_list_command_header reply_command_header
= {};
2491 size_t reply_command_header_offset
;
2493 assert(reply_payload
);
2495 /* Reserve space for command reply header. */
2496 reply_command_header_offset
= reply_payload
->buffer
.size
;
2497 ret
= lttng_dynamic_buffer_set_size(&reply_payload
->buffer
,
2498 reply_command_header_offset
+
2499 sizeof(struct lttcomm_list_command_header
));
2501 ret_code
= LTTNG_ERR_NOMEM
;
2506 case LTTNG_DOMAIN_KERNEL
:
2507 nb_events
= kernel_list_events(&events
);
2508 if (nb_events
< 0) {
2509 ret_code
= LTTNG_ERR_KERN_LIST_FAIL
;
2513 case LTTNG_DOMAIN_UST
:
2514 nb_events
= ust_app_list_events(&events
);
2515 if (nb_events
< 0) {
2516 ret_code
= LTTNG_ERR_UST_LIST_FAIL
;
2520 case LTTNG_DOMAIN_LOG4J
:
2521 case LTTNG_DOMAIN_JUL
:
2522 case LTTNG_DOMAIN_PYTHON
:
2523 nb_events
= agent_list_events(&events
, domain
);
2524 if (nb_events
< 0) {
2525 ret_code
= LTTNG_ERR_UST_LIST_FAIL
;
2530 ret_code
= LTTNG_ERR_UND
;
2534 for (i
= 0; i
< nb_events
; i
++) {
2535 ret
= lttng_event_serialize(&events
[i
], 0, NULL
, NULL
, 0, NULL
,
2538 ret_code
= LTTNG_ERR_NOMEM
;
2543 if (nb_events
> UINT32_MAX
) {
2544 ERR("Tracepoint count would overflow the tracepoint listing command's reply");
2545 ret_code
= LTTNG_ERR_OVERFLOW
;
2549 /* Update command reply header. */
2550 reply_command_header
.count
= (uint32_t) nb_events
;
2551 memcpy(reply_payload
->buffer
.data
+ reply_command_header_offset
, &reply_command_header
,
2552 sizeof(reply_command_header
));
2554 ret_code
= LTTNG_OK
;
2561 * Command LTTNG_LIST_TRACEPOINT_FIELDS processed by the client thread.
2563 enum lttng_error_code
cmd_list_tracepoint_fields(enum lttng_domain_type domain
,
2564 struct lttng_payload
*reply
)
2566 enum lttng_error_code ret_code
;
2568 unsigned int i
, nb_fields
;
2569 struct lttng_event_field
*fields
= NULL
;
2570 struct lttcomm_list_command_header reply_command_header
= {};
2571 size_t reply_command_header_offset
;
2575 /* Reserve space for command reply header. */
2576 reply_command_header_offset
= reply
->buffer
.size
;
2577 ret
= lttng_dynamic_buffer_set_size(&reply
->buffer
,
2578 reply_command_header_offset
+
2579 sizeof(struct lttcomm_list_command_header
));
2581 ret_code
= LTTNG_ERR_NOMEM
;
2586 case LTTNG_DOMAIN_UST
:
2587 ret
= ust_app_list_event_fields(&fields
);
2589 ret_code
= LTTNG_ERR_UST_LIST_FAIL
;
2594 case LTTNG_DOMAIN_KERNEL
:
2595 default: /* fall-through */
2596 ret_code
= LTTNG_ERR_UND
;
2602 for (i
= 0; i
< nb_fields
; i
++) {
2603 ret
= lttng_event_field_serialize(&fields
[i
], reply
);
2605 ret_code
= LTTNG_ERR_NOMEM
;
2610 if (nb_fields
> UINT32_MAX
) {
2611 ERR("Tracepoint field count would overflow the tracepoint field listing command's reply");
2612 ret_code
= LTTNG_ERR_OVERFLOW
;
2616 /* Update command reply header. */
2617 reply_command_header
.count
= (uint32_t) nb_fields
;
2619 memcpy(reply
->buffer
.data
+ reply_command_header_offset
, &reply_command_header
,
2620 sizeof(reply_command_header
));
2622 ret_code
= LTTNG_OK
;
2629 enum lttng_error_code
cmd_list_syscalls(
2630 struct lttng_payload
*reply_payload
)
2632 enum lttng_error_code ret_code
;
2633 ssize_t nb_events
, i
;
2635 struct lttng_event
*events
= NULL
;
2636 struct lttcomm_list_command_header reply_command_header
= {};
2637 size_t reply_command_header_offset
;
2639 assert(reply_payload
);
2641 /* Reserve space for command reply header. */
2642 reply_command_header_offset
= reply_payload
->buffer
.size
;
2643 ret
= lttng_dynamic_buffer_set_size(&reply_payload
->buffer
,
2644 reply_command_header_offset
+
2645 sizeof(struct lttcomm_list_command_header
));
2647 ret_code
= LTTNG_ERR_NOMEM
;
2651 nb_events
= syscall_table_list(&events
);
2652 if (nb_events
< 0) {
2653 ret_code
= (enum lttng_error_code
) -nb_events
;
2657 for (i
= 0; i
< nb_events
; i
++) {
2658 ret
= lttng_event_serialize(&events
[i
], 0, NULL
, NULL
, 0, NULL
,
2661 ret_code
= LTTNG_ERR_NOMEM
;
2666 if (nb_events
> UINT32_MAX
) {
2667 ERR("Syscall count would overflow the syscall listing command's reply");
2668 ret_code
= LTTNG_ERR_OVERFLOW
;
2672 /* Update command reply header. */
2673 reply_command_header
.count
= (uint32_t) nb_events
;
2674 memcpy(reply_payload
->buffer
.data
+ reply_command_header_offset
, &reply_command_header
,
2675 sizeof(reply_command_header
));
2677 ret_code
= LTTNG_OK
;
2684 * Command LTTNG_START_TRACE processed by the client thread.
2686 * Called with session mutex held.
2688 int cmd_start_trace(struct ltt_session
*session
)
2690 enum lttng_error_code ret
;
2691 unsigned long nb_chan
= 0;
2692 struct ltt_kernel_session
*ksession
;
2693 struct ltt_ust_session
*usess
;
2694 const bool session_rotated_after_last_stop
=
2695 session
->rotated_after_last_stop
;
2696 const bool session_cleared_after_last_stop
=
2697 session
->cleared_after_last_stop
;
2699 LTTNG_ASSERT(session
);
2701 /* Ease our life a bit ;) */
2702 ksession
= session
->kernel_session
;
2703 usess
= session
->ust_session
;
2705 /* Is the session already started? */
2706 if (session
->active
) {
2707 ret
= LTTNG_ERR_TRACE_ALREADY_STARTED
;
2708 /* Perform nothing */
2712 if (session
->rotation_state
== LTTNG_ROTATION_STATE_ONGOING
&&
2713 !session
->current_trace_chunk
) {
2715 * A rotation was launched while the session was stopped and
2716 * it has not been completed yet. It is not possible to start
2717 * the session since starting the session here would require a
2718 * rotation from "NULL" to a new trace chunk. That rotation
2719 * would overlap with the ongoing rotation, which is not
2722 WARN("Refusing to start session \"%s\" as a rotation launched after the last \"stop\" is still ongoing",
2724 ret
= LTTNG_ERR_ROTATION_PENDING
;
2729 * Starting a session without channel is useless since after that it's not
2730 * possible to enable channel thus inform the client.
2732 if (usess
&& usess
->domain_global
.channels
) {
2733 nb_chan
+= lttng_ht_get_count(usess
->domain_global
.channels
);
2736 nb_chan
+= ksession
->channel_count
;
2739 ret
= LTTNG_ERR_NO_CHANNEL
;
2743 session
->active
= 1;
2744 session
->rotated_after_last_stop
= false;
2745 session
->cleared_after_last_stop
= false;
2746 if (session
->output_traces
&& !session
->current_trace_chunk
) {
2747 if (!session
->has_been_started
) {
2748 struct lttng_trace_chunk
*trace_chunk
;
2750 DBG("Creating initial trace chunk of session \"%s\"",
2752 trace_chunk
= session_create_new_trace_chunk(
2753 session
, NULL
, NULL
, NULL
);
2755 ret
= LTTNG_ERR_CREATE_DIR_FAIL
;
2758 LTTNG_ASSERT(!session
->current_trace_chunk
);
2759 ret
= (lttng_error_code
) session_set_trace_chunk(session
, trace_chunk
,
2761 lttng_trace_chunk_put(trace_chunk
);
2763 ret
= LTTNG_ERR_CREATE_TRACE_CHUNK_FAIL_CONSUMER
;
2767 DBG("Rotating session \"%s\" from its current \"NULL\" trace chunk to a new chunk",
2770 * Rotate existing streams into the new chunk.
2771 * This is a "quiet" rotation has no client has
2772 * explicitly requested this operation.
2774 * There is also no need to wait for the rotation
2775 * to complete as it will happen immediately. No data
2776 * was produced as the session was stopped, so the
2777 * rotation should happen on reception of the command.
2779 ret
= (lttng_error_code
) cmd_rotate_session(session
, NULL
, true,
2780 LTTNG_TRACE_CHUNK_COMMAND_TYPE_NO_OPERATION
);
2781 if (ret
!= LTTNG_OK
) {
2787 /* Kernel tracing */
2788 if (ksession
!= NULL
) {
2789 DBG("Start kernel tracing session %s", session
->name
);
2790 ret
= (lttng_error_code
) start_kernel_session(ksession
);
2791 if (ret
!= LTTNG_OK
) {
2796 /* Flag session that trace should start automatically */
2798 int int_ret
= ust_app_start_trace_all(usess
);
2801 ret
= LTTNG_ERR_UST_START_FAIL
;
2807 * Open a packet in every stream of the session to ensure that viewers
2808 * can correctly identify the boundaries of the periods during which
2809 * tracing was active for this session.
2811 ret
= session_open_packets(session
);
2812 if (ret
!= LTTNG_OK
) {
2817 * Clear the flag that indicates that a rotation was done while the
2818 * session was stopped.
2820 session
->rotated_after_last_stop
= false;
2822 if (session
->rotate_timer_period
&& !session
->rotation_schedule_timer_enabled
) {
2823 int int_ret
= timer_session_rotation_schedule_timer_start(
2824 session
, session
->rotate_timer_period
);
2827 ERR("Failed to enable rotate timer");
2828 ret
= LTTNG_ERR_UNK
;
2836 if (ret
== LTTNG_OK
) {
2837 /* Flag this after a successful start. */
2838 session
->has_been_started
|= 1;
2840 session
->active
= 0;
2841 /* Restore initial state on error. */
2842 session
->rotated_after_last_stop
=
2843 session_rotated_after_last_stop
;
2844 session
->cleared_after_last_stop
=
2845 session_cleared_after_last_stop
;
2852 * Command LTTNG_STOP_TRACE processed by the client thread.
2854 int cmd_stop_trace(struct ltt_session
*session
)
2857 struct ltt_kernel_session
*ksession
;
2858 struct ltt_ust_session
*usess
;
2860 LTTNG_ASSERT(session
);
2862 DBG("Begin stop session \"%s\" (id %" PRIu64
")", session
->name
, session
->id
);
2864 ksession
= session
->kernel_session
;
2865 usess
= session
->ust_session
;
2867 /* Session is not active. Skip everything and inform the client. */
2868 if (!session
->active
) {
2869 ret
= LTTNG_ERR_TRACE_ALREADY_STOPPED
;
2873 ret
= stop_kernel_session(ksession
);
2874 if (ret
!= LTTNG_OK
) {
2878 if (usess
&& usess
->active
) {
2879 ret
= ust_app_stop_trace_all(usess
);
2881 ret
= LTTNG_ERR_UST_STOP_FAIL
;
2886 DBG("Completed stop session \"%s\" (id %" PRIu64
")", session
->name
,
2888 /* Flag inactive after a successful stop. */
2889 session
->active
= 0;
2897 * Set the base_path of the session only if subdir of a control uris is set.
2898 * Return LTTNG_OK on success, otherwise LTTNG_ERR_*.
2900 static int set_session_base_path_from_uris(struct ltt_session
*session
,
2902 struct lttng_uri
*uris
)
2907 for (i
= 0; i
< nb_uri
; i
++) {
2908 if (uris
[i
].stype
!= LTTNG_STREAM_CONTROL
||
2909 uris
[i
].subdir
[0] == '\0') {
2910 /* Not interested in these URIs */
2914 if (session
->base_path
!= NULL
) {
2915 free(session
->base_path
);
2916 session
->base_path
= NULL
;
2919 /* Set session base_path */
2920 session
->base_path
= strdup(uris
[i
].subdir
);
2921 if (!session
->base_path
) {
2922 PERROR("Failed to copy base path \"%s\" to session \"%s\"",
2923 uris
[i
].subdir
, session
->name
);
2924 ret
= LTTNG_ERR_NOMEM
;
2927 DBG2("Setting base path \"%s\" for session \"%s\"",
2928 session
->base_path
, session
->name
);
2936 * Command LTTNG_SET_CONSUMER_URI processed by the client thread.
2938 int cmd_set_consumer_uri(struct ltt_session
*session
, size_t nb_uri
,
2939 struct lttng_uri
*uris
)
2942 struct ltt_kernel_session
*ksess
= session
->kernel_session
;
2943 struct ltt_ust_session
*usess
= session
->ust_session
;
2945 LTTNG_ASSERT(session
);
2947 LTTNG_ASSERT(nb_uri
> 0);
2949 /* Can't set consumer URI if the session is active. */
2950 if (session
->active
) {
2951 ret
= LTTNG_ERR_TRACE_ALREADY_STARTED
;
2956 * Set the session base path if any. This is done inside
2957 * cmd_set_consumer_uri to preserve backward compatibility of the
2958 * previous session creation api vs the session descriptor api.
2960 ret
= set_session_base_path_from_uris(session
, nb_uri
, uris
);
2961 if (ret
!= LTTNG_OK
) {
2965 /* Set the "global" consumer URIs */
2966 for (i
= 0; i
< nb_uri
; i
++) {
2967 ret
= add_uri_to_consumer(session
, session
->consumer
, &uris
[i
],
2969 if (ret
!= LTTNG_OK
) {
2974 /* Set UST session URIs */
2975 if (session
->ust_session
) {
2976 for (i
= 0; i
< nb_uri
; i
++) {
2977 ret
= add_uri_to_consumer(session
,
2978 session
->ust_session
->consumer
,
2979 &uris
[i
], LTTNG_DOMAIN_UST
);
2980 if (ret
!= LTTNG_OK
) {
2986 /* Set kernel session URIs */
2987 if (session
->kernel_session
) {
2988 for (i
= 0; i
< nb_uri
; i
++) {
2989 ret
= add_uri_to_consumer(session
,
2990 session
->kernel_session
->consumer
,
2991 &uris
[i
], LTTNG_DOMAIN_KERNEL
);
2992 if (ret
!= LTTNG_OK
) {
2999 * Make sure to set the session in output mode after we set URI since a
3000 * session can be created without URL (thus flagged in no output mode).
3002 session
->output_traces
= 1;
3004 ksess
->output_traces
= 1;
3008 usess
->output_traces
= 1;
3019 enum lttng_error_code
set_session_output_from_descriptor(
3020 struct ltt_session
*session
,
3021 const struct lttng_session_descriptor
*descriptor
)
3024 enum lttng_error_code ret_code
= LTTNG_OK
;
3025 enum lttng_session_descriptor_type session_type
=
3026 lttng_session_descriptor_get_type(descriptor
);
3027 enum lttng_session_descriptor_output_type output_type
=
3028 lttng_session_descriptor_get_output_type(descriptor
);
3029 struct lttng_uri uris
[2] = {};
3030 size_t uri_count
= 0;
3032 switch (output_type
) {
3033 case LTTNG_SESSION_DESCRIPTOR_OUTPUT_TYPE_NONE
:
3035 case LTTNG_SESSION_DESCRIPTOR_OUTPUT_TYPE_LOCAL
:
3036 lttng_session_descriptor_get_local_output_uri(descriptor
,
3040 case LTTNG_SESSION_DESCRIPTOR_OUTPUT_TYPE_NETWORK
:
3041 lttng_session_descriptor_get_network_output_uris(descriptor
,
3042 &uris
[0], &uris
[1]);
3046 ret_code
= LTTNG_ERR_INVALID
;
3050 switch (session_type
) {
3051 case LTTNG_SESSION_DESCRIPTOR_TYPE_SNAPSHOT
:
3053 struct snapshot_output
*new_output
= NULL
;
3055 new_output
= snapshot_output_alloc();
3057 ret_code
= LTTNG_ERR_NOMEM
;
3061 ret
= snapshot_output_init_with_uri(session
,
3062 DEFAULT_SNAPSHOT_MAX_SIZE
,
3063 NULL
, uris
, uri_count
, session
->consumer
,
3064 new_output
, &session
->snapshot
);
3066 ret_code
= (ret
== -ENOMEM
) ?
3067 LTTNG_ERR_NOMEM
: LTTNG_ERR_INVALID
;
3068 snapshot_output_destroy(new_output
);
3071 snapshot_add_output(&session
->snapshot
, new_output
);
3074 case LTTNG_SESSION_DESCRIPTOR_TYPE_REGULAR
:
3075 case LTTNG_SESSION_DESCRIPTOR_TYPE_LIVE
:
3077 ret_code
= (lttng_error_code
) cmd_set_consumer_uri(session
, uri_count
, uris
);
3081 ret_code
= LTTNG_ERR_INVALID
;
3089 enum lttng_error_code
cmd_create_session_from_descriptor(
3090 struct lttng_session_descriptor
*descriptor
,
3091 const lttng_sock_cred
*creds
,
3092 const char *home_path
)
3095 enum lttng_error_code ret_code
;
3096 const char *session_name
;
3097 struct ltt_session
*new_session
= NULL
;
3098 enum lttng_session_descriptor_status descriptor_status
;
3100 session_lock_list();
3102 if (*home_path
!= '/') {
3103 ERR("Home path provided by client is not absolute");
3104 ret_code
= LTTNG_ERR_INVALID
;
3109 descriptor_status
= lttng_session_descriptor_get_session_name(
3110 descriptor
, &session_name
);
3111 switch (descriptor_status
) {
3112 case LTTNG_SESSION_DESCRIPTOR_STATUS_OK
:
3114 case LTTNG_SESSION_DESCRIPTOR_STATUS_UNSET
:
3115 session_name
= NULL
;
3118 ret_code
= LTTNG_ERR_INVALID
;
3122 ret_code
= session_create(session_name
, creds
->uid
, creds
->gid
,
3124 if (ret_code
!= LTTNG_OK
) {
3128 if (!session_name
) {
3129 ret
= lttng_session_descriptor_set_session_name(descriptor
,
3132 ret_code
= LTTNG_ERR_SESSION_FAIL
;
3137 if (!lttng_session_descriptor_is_output_destination_initialized(
3140 * Only include the session's creation time in the output
3141 * destination if the name of the session itself was
3142 * not auto-generated.
3144 ret_code
= lttng_session_descriptor_set_default_output(
3146 session_name
? &new_session
->creation_time
: NULL
,
3148 if (ret_code
!= LTTNG_OK
) {
3152 new_session
->has_user_specified_directory
=
3153 lttng_session_descriptor_has_output_directory(
3157 switch (lttng_session_descriptor_get_type(descriptor
)) {
3158 case LTTNG_SESSION_DESCRIPTOR_TYPE_SNAPSHOT
:
3159 new_session
->snapshot_mode
= 1;
3161 case LTTNG_SESSION_DESCRIPTOR_TYPE_LIVE
:
3162 new_session
->live_timer
=
3163 lttng_session_descriptor_live_get_timer_interval(
3170 ret_code
= set_session_output_from_descriptor(new_session
, descriptor
);
3171 if (ret_code
!= LTTNG_OK
) {
3174 new_session
->consumer
->enabled
= 1;
3175 ret_code
= LTTNG_OK
;
3177 /* Release reference provided by the session_create function. */
3178 session_put(new_session
);
3179 if (ret_code
!= LTTNG_OK
&& new_session
) {
3180 /* Release the global reference on error. */
3181 session_destroy(new_session
);
3183 session_unlock_list();
3187 enum lttng_error_code
cmd_create_session(struct command_ctx
*cmd_ctx
, int sock
,
3188 struct lttng_session_descriptor
**return_descriptor
)
3191 size_t payload_size
;
3192 struct lttng_dynamic_buffer payload
;
3193 struct lttng_buffer_view home_dir_view
;
3194 struct lttng_buffer_view session_descriptor_view
;
3195 struct lttng_session_descriptor
*session_descriptor
= NULL
;
3196 enum lttng_error_code ret_code
;
3198 lttng_dynamic_buffer_init(&payload
);
3199 if (cmd_ctx
->lsm
.u
.create_session
.home_dir_size
>=
3201 ret_code
= LTTNG_ERR_INVALID
;
3204 if (cmd_ctx
->lsm
.u
.create_session
.session_descriptor_size
>
3205 LTTNG_SESSION_DESCRIPTOR_MAX_LEN
) {
3206 ret_code
= LTTNG_ERR_INVALID
;
3210 payload_size
= cmd_ctx
->lsm
.u
.create_session
.home_dir_size
+
3211 cmd_ctx
->lsm
.u
.create_session
.session_descriptor_size
;
3212 ret
= lttng_dynamic_buffer_set_size(&payload
, payload_size
);
3214 ret_code
= LTTNG_ERR_NOMEM
;
3218 ret
= lttcomm_recv_unix_sock(sock
, payload
.data
, payload
.size
);
3220 ERR("Reception of session descriptor failed, aborting.");
3221 ret_code
= LTTNG_ERR_SESSION_FAIL
;
3225 home_dir_view
= lttng_buffer_view_from_dynamic_buffer(
3228 cmd_ctx
->lsm
.u
.create_session
.home_dir_size
);
3229 if (cmd_ctx
->lsm
.u
.create_session
.home_dir_size
> 0 &&
3230 !lttng_buffer_view_is_valid(&home_dir_view
)) {
3231 ERR("Invalid payload in \"create session\" command: buffer too short to contain home directory");
3232 ret_code
= LTTNG_ERR_INVALID_PROTOCOL
;
3236 session_descriptor_view
= lttng_buffer_view_from_dynamic_buffer(
3238 cmd_ctx
->lsm
.u
.create_session
.home_dir_size
,
3239 cmd_ctx
->lsm
.u
.create_session
.session_descriptor_size
);
3240 if (!lttng_buffer_view_is_valid(&session_descriptor_view
)) {
3241 ERR("Invalid payload in \"create session\" command: buffer too short to contain session descriptor");
3242 ret_code
= LTTNG_ERR_INVALID_PROTOCOL
;
3246 ret
= lttng_session_descriptor_create_from_buffer(
3247 &session_descriptor_view
, &session_descriptor
);
3249 ERR("Failed to create session descriptor from payload of \"create session\" command");
3250 ret_code
= LTTNG_ERR_INVALID
;
3255 * Sets the descriptor's auto-generated properties (name, output) if
3258 ret_code
= cmd_create_session_from_descriptor(session_descriptor
,
3260 home_dir_view
.size
? home_dir_view
.data
: NULL
);
3261 if (ret_code
!= LTTNG_OK
) {
3265 ret_code
= LTTNG_OK
;
3266 *return_descriptor
= session_descriptor
;
3267 session_descriptor
= NULL
;
3269 lttng_dynamic_buffer_reset(&payload
);
3270 lttng_session_descriptor_destroy(session_descriptor
);
3275 void cmd_destroy_session_reply(const struct ltt_session
*session
,
3276 void *_reply_context
)
3280 const struct cmd_destroy_session_reply_context
*reply_context
=
3281 (cmd_destroy_session_reply_context
*) _reply_context
;
3282 struct lttng_dynamic_buffer payload
;
3283 struct lttcomm_session_destroy_command_header cmd_header
;
3284 struct lttng_trace_archive_location
*location
= NULL
;
3285 struct lttcomm_lttng_msg llm
= {
3286 .cmd_type
= LTTNG_DESTROY_SESSION
,
3287 .ret_code
= reply_context
->destruction_status
,
3290 sizeof(struct lttcomm_session_destroy_command_header
),
3294 size_t payload_size_before_location
;
3296 lttng_dynamic_buffer_init(&payload
);
3298 ret
= lttng_dynamic_buffer_append(&payload
, &llm
, sizeof(llm
));
3300 ERR("Failed to append session destruction message");
3304 cmd_header
.rotation_state
=
3305 (int32_t) (reply_context
->implicit_rotation_on_destroy
?
3306 session
->rotation_state
:
3307 LTTNG_ROTATION_STATE_NO_ROTATION
);
3308 ret
= lttng_dynamic_buffer_append(&payload
, &cmd_header
,
3309 sizeof(cmd_header
));
3311 ERR("Failed to append session destruction command header");
3315 if (!reply_context
->implicit_rotation_on_destroy
) {
3316 DBG("No implicit rotation performed during the destruction of session \"%s\", sending reply",
3320 if (session
->rotation_state
!= LTTNG_ROTATION_STATE_COMPLETED
) {
3321 DBG("Rotation state of session \"%s\" is not \"completed\", sending session destruction reply",
3326 location
= session_get_trace_archive_location(session
);
3328 ERR("Failed to get the location of the trace archive produced during the destruction of session \"%s\"",
3333 payload_size_before_location
= payload
.size
;
3334 comm_ret
= lttng_trace_archive_location_serialize(location
,
3336 lttng_trace_archive_location_put(location
);
3338 ERR("Failed to serialize the location of the trace archive produced during the destruction of session \"%s\"",
3342 /* Update the message to indicate the location's length. */
3343 ((struct lttcomm_lttng_msg
*) payload
.data
)->data_size
=
3344 payload
.size
- payload_size_before_location
;
3346 comm_ret
= lttcomm_send_unix_sock(reply_context
->reply_sock_fd
,
3347 payload
.data
, payload
.size
);
3348 if (comm_ret
!= (ssize_t
) payload
.size
) {
3349 ERR("Failed to send result of the destruction of session \"%s\" to client",
3353 ret
= close(reply_context
->reply_sock_fd
);
3355 PERROR("Failed to close client socket in deferred session destroy reply");
3357 lttng_dynamic_buffer_reset(&payload
);
3358 free(_reply_context
);
3362 * Command LTTNG_DESTROY_SESSION processed by the client thread.
3364 * Called with session lock held.
3366 int cmd_destroy_session(struct ltt_session
*session
,
3367 struct notification_thread_handle
*notification_thread_handle
,
3371 enum lttng_error_code destruction_last_error
= LTTNG_OK
;
3372 struct cmd_destroy_session_reply_context
*reply_context
= NULL
;
3375 reply_context
= (cmd_destroy_session_reply_context
*) zmalloc(sizeof(*reply_context
));
3376 if (!reply_context
) {
3377 ret
= LTTNG_ERR_NOMEM
;
3380 reply_context
->reply_sock_fd
= *sock_fd
;
3384 LTTNG_ASSERT(session
);
3386 DBG("Begin destroy session %s (id %" PRIu64
")", session
->name
,
3388 if (session
->active
) {
3389 DBG("Session \"%s\" is active, attempting to stop it before destroying it",
3391 ret
= cmd_stop_trace(session
);
3392 if (ret
!= LTTNG_OK
&& ret
!= LTTNG_ERR_TRACE_ALREADY_STOPPED
) {
3393 /* Carry on with the destruction of the session. */
3394 ERR("Failed to stop session \"%s\" as part of its destruction: %s",
3395 session
->name
, lttng_strerror(-ret
));
3396 destruction_last_error
= (lttng_error_code
) ret
;
3400 if (session
->rotation_schedule_timer_enabled
) {
3401 if (timer_session_rotation_schedule_timer_stop(
3403 ERR("Failed to stop the \"rotation schedule\" timer of session %s",
3405 destruction_last_error
= LTTNG_ERR_TIMER_STOP_ERROR
;
3409 if (session
->rotate_size
) {
3410 unsubscribe_session_consumed_size_rotation(session
, notification_thread_handle
);
3411 session
->rotate_size
= 0;
3414 if (session
->rotated
&& session
->current_trace_chunk
&& session
->output_traces
) {
3416 * Perform a last rotation on destruction if rotations have
3417 * occurred during the session's lifetime.
3419 ret
= cmd_rotate_session(session
, NULL
, false,
3420 LTTNG_TRACE_CHUNK_COMMAND_TYPE_MOVE_TO_COMPLETED
);
3421 if (ret
!= LTTNG_OK
) {
3422 ERR("Failed to perform an implicit rotation as part of the destruction of session \"%s\": %s",
3423 session
->name
, lttng_strerror(-ret
));
3424 destruction_last_error
= (lttng_error_code
) -ret
;
3426 if (reply_context
) {
3427 reply_context
->implicit_rotation_on_destroy
= true;
3429 } else if (session
->has_been_started
&& session
->current_trace_chunk
) {
3431 * The user has not triggered a session rotation. However, to
3432 * ensure all data has been consumed, the session is rotated
3433 * to a 'null' trace chunk before it is destroyed.
3435 * This is a "quiet" rotation meaning that no notification is
3436 * emitted and no renaming of the current trace chunk takes
3439 ret
= cmd_rotate_session(session
, NULL
, true,
3440 LTTNG_TRACE_CHUNK_COMMAND_TYPE_NO_OPERATION
);
3442 * Rotation operations may not be supported by the kernel
3443 * tracer. Hence, do not consider this implicit rotation as
3444 * a session destruction error. The library has already stopped
3445 * the session and waited for pending data; there is nothing
3446 * left to do but complete the destruction of the session.
3448 if (ret
!= LTTNG_OK
&&
3449 ret
!= -LTTNG_ERR_ROTATION_NOT_AVAILABLE_KERNEL
) {
3450 ERR("Failed to perform a quiet rotation as part of the destruction of session \"%s\": %s",
3451 session
->name
, lttng_strerror(ret
));
3452 destruction_last_error
= (lttng_error_code
) -ret
;
3456 if (session
->shm_path
[0]) {
3458 * When a session is created with an explicit shm_path,
3459 * the consumer daemon will create its shared memory files
3460 * at that location and will *not* unlink them. This is normal
3461 * as the intention of that feature is to make it possible
3462 * to retrieve the content of those files should a crash occur.
3464 * To ensure the content of those files can be used, the
3465 * sessiond daemon will replicate the content of the metadata
3466 * cache in a metadata file.
3468 * On clean-up, it is expected that the consumer daemon will
3469 * unlink the shared memory files and that the session daemon
3470 * will unlink the metadata file. Then, the session's directory
3471 * in the shm path can be removed.
3473 * Unfortunately, a flaw in the design of the sessiond's and
3474 * consumerd's tear down of channels makes it impossible to
3475 * determine when the sessiond _and_ the consumerd have both
3476 * destroyed their representation of a channel. For one, the
3477 * unlinking, close, and rmdir happen in deferred 'call_rcu'
3478 * callbacks in both daemons.
3480 * However, it is also impossible for the sessiond to know when
3481 * the consumer daemon is done destroying its channel(s) since
3482 * it occurs as a reaction to the closing of the channel's file
3483 * descriptor. There is no resulting communication initiated
3484 * from the consumerd to the sessiond to confirm that the
3485 * operation is completed (and was successful).
3487 * Until this is all fixed, the session daemon checks for the
3488 * removal of the session's shm path which makes it possible
3489 * to safely advertise a session as having been destroyed.
3491 * Prior to this fix, it was not possible to reliably save
3492 * a session making use of the --shm-path option, destroy it,
3493 * and load it again. This is because the creation of the
3494 * session would fail upon seeing the session's shm path
3495 * already in existence.
3497 * Note that none of the error paths in the check for the
3498 * directory's existence return an error. This is normal
3499 * as there isn't much that can be done. The session will
3500 * be destroyed properly, except that we can't offer the
3501 * guarantee that the same session can be re-created.
3503 current_completion_handler
= &destroy_completion_handler
.handler
;
3504 ret
= lttng_strncpy(destroy_completion_handler
.shm_path
,
3506 sizeof(destroy_completion_handler
.shm_path
));
3511 * The session is destroyed. However, note that the command context
3512 * still holds a reference to the session, thus delaying its destruction
3513 * _at least_ up to the point when that reference is released.
3515 session_destroy(session
);
3516 if (reply_context
) {
3517 reply_context
->destruction_status
= destruction_last_error
;
3518 ret
= session_add_destroy_notifier(session
,
3519 cmd_destroy_session_reply
,
3520 (void *) reply_context
);
3522 ret
= LTTNG_ERR_FATAL
;
3534 * Command LTTNG_REGISTER_CONSUMER processed by the client thread.
3536 int cmd_register_consumer(struct ltt_session
*session
,
3537 enum lttng_domain_type domain
, const char *sock_path
,
3538 struct consumer_data
*cdata
)
3541 struct consumer_socket
*socket
= NULL
;
3543 LTTNG_ASSERT(session
);
3544 LTTNG_ASSERT(cdata
);
3545 LTTNG_ASSERT(sock_path
);
3548 case LTTNG_DOMAIN_KERNEL
:
3550 struct ltt_kernel_session
*ksess
= session
->kernel_session
;
3552 LTTNG_ASSERT(ksess
);
3554 /* Can't register a consumer if there is already one */
3555 if (ksess
->consumer_fds_sent
!= 0) {
3556 ret
= LTTNG_ERR_KERN_CONSUMER_FAIL
;
3560 sock
= lttcomm_connect_unix_sock(sock_path
);
3562 ret
= LTTNG_ERR_CONNECT_FAIL
;
3565 cdata
->cmd_sock
= sock
;
3567 socket
= consumer_allocate_socket(&cdata
->cmd_sock
);
3568 if (socket
== NULL
) {
3571 PERROR("close register consumer");
3573 cdata
->cmd_sock
= -1;
3574 ret
= LTTNG_ERR_FATAL
;
3578 socket
->lock
= (pthread_mutex_t
*) zmalloc(sizeof(pthread_mutex_t
));
3579 if (socket
->lock
== NULL
) {
3580 PERROR("zmalloc pthread mutex");
3581 ret
= LTTNG_ERR_FATAL
;
3584 pthread_mutex_init(socket
->lock
, NULL
);
3585 socket
->registered
= 1;
3588 consumer_add_socket(socket
, ksess
->consumer
);
3591 pthread_mutex_lock(&cdata
->pid_mutex
);
3593 pthread_mutex_unlock(&cdata
->pid_mutex
);
3598 /* TODO: Userspace tracing */
3599 ret
= LTTNG_ERR_UND
;
3607 consumer_destroy_socket(socket
);
3613 * Command LTTNG_LIST_DOMAINS processed by the client thread.
3615 ssize_t
cmd_list_domains(struct ltt_session
*session
,
3616 struct lttng_domain
**domains
)
3621 struct lttng_ht_iter iter
;
3623 if (session
->kernel_session
!= NULL
) {
3624 DBG3("Listing domains found kernel domain");
3628 if (session
->ust_session
!= NULL
) {
3629 DBG3("Listing domains found UST global domain");
3633 cds_lfht_for_each_entry(session
->ust_session
->agents
->ht
, &iter
.iter
,
3635 if (agt
->being_used
) {
3646 *domains
= (lttng_domain
*) zmalloc(nb_dom
* sizeof(struct lttng_domain
));
3647 if (*domains
== NULL
) {
3648 ret
= LTTNG_ERR_FATAL
;
3652 if (session
->kernel_session
!= NULL
) {
3653 (*domains
)[index
].type
= LTTNG_DOMAIN_KERNEL
;
3655 /* Kernel session buffer type is always GLOBAL */
3656 (*domains
)[index
].buf_type
= LTTNG_BUFFER_GLOBAL
;
3661 if (session
->ust_session
!= NULL
) {
3662 (*domains
)[index
].type
= LTTNG_DOMAIN_UST
;
3663 (*domains
)[index
].buf_type
= session
->ust_session
->buffer_type
;
3667 cds_lfht_for_each_entry(session
->ust_session
->agents
->ht
, &iter
.iter
,
3669 if (agt
->being_used
) {
3670 (*domains
)[index
].type
= agt
->domain
;
3671 (*domains
)[index
].buf_type
= session
->ust_session
->buffer_type
;
3681 /* Return negative value to differentiate return code */
3687 * Command LTTNG_LIST_CHANNELS processed by the client thread.
3689 enum lttng_error_code
cmd_list_channels(enum lttng_domain_type domain
,
3690 struct ltt_session
*session
,
3691 struct lttng_payload
*payload
)
3695 struct lttcomm_list_command_header cmd_header
= {};
3696 size_t cmd_header_offset
;
3697 enum lttng_error_code ret_code
;
3702 DBG("Listing channels for session %s", session
->name
);
3704 cmd_header_offset
= payload
->buffer
.size
;
3706 /* Reserve space for command reply header. */
3707 ret
= lttng_dynamic_buffer_set_size(&payload
->buffer
,
3708 cmd_header_offset
+ sizeof(cmd_header
));
3710 ret_code
= LTTNG_ERR_NOMEM
;
3715 case LTTNG_DOMAIN_KERNEL
:
3717 /* Kernel channels */
3718 struct ltt_kernel_channel
*kchan
;
3719 if (session
->kernel_session
!= NULL
) {
3720 cds_list_for_each_entry(kchan
,
3721 &session
->kernel_session
->channel_list
.head
, list
) {
3722 uint64_t discarded_events
, lost_packets
;
3723 struct lttng_channel_extended
*extended
;
3725 extended
= (struct lttng_channel_extended
*)
3726 kchan
->channel
->attr
.extended
.ptr
;
3728 ret
= get_kernel_runtime_stats(session
, kchan
,
3729 &discarded_events
, &lost_packets
);
3731 ret_code
= LTTNG_ERR_UNK
;
3736 * Update the discarded_events and lost_packets
3737 * count for the channel
3739 extended
->discarded_events
= discarded_events
;
3740 extended
->lost_packets
= lost_packets
;
3742 ret
= lttng_channel_serialize(
3743 kchan
->channel
, &payload
->buffer
);
3745 ERR("Failed to serialize lttng_channel: channel name = '%s'",
3746 kchan
->channel
->name
);
3747 ret_code
= LTTNG_ERR_UNK
;
3756 case LTTNG_DOMAIN_UST
:
3758 struct lttng_ht_iter iter
;
3759 struct ltt_ust_channel
*uchan
;
3762 cds_lfht_for_each_entry(session
->ust_session
->domain_global
.channels
->ht
,
3763 &iter
.iter
, uchan
, node
.node
) {
3764 uint64_t discarded_events
= 0, lost_packets
= 0;
3765 struct lttng_channel
*channel
= NULL
;
3766 struct lttng_channel_extended
*extended
;
3768 channel
= trace_ust_channel_to_lttng_channel(uchan
);
3770 ret_code
= LTTNG_ERR_NOMEM
;
3774 extended
= (struct lttng_channel_extended
*)
3775 channel
->attr
.extended
.ptr
;
3777 ret
= get_ust_runtime_stats(session
, uchan
,
3778 &discarded_events
, &lost_packets
);
3780 lttng_channel_destroy(channel
);
3781 ret_code
= LTTNG_ERR_UNK
;
3785 extended
->discarded_events
= discarded_events
;
3786 extended
->lost_packets
= lost_packets
;
3788 ret
= lttng_channel_serialize(
3789 channel
, &payload
->buffer
);
3791 ERR("Failed to serialize lttng_channel: channel name = '%s'",
3793 lttng_channel_destroy(channel
);
3794 ret_code
= LTTNG_ERR_UNK
;
3798 lttng_channel_destroy(channel
);
3808 if (i
> UINT32_MAX
) {
3809 ERR("Channel count would overflow the channel listing command's reply");
3810 ret_code
= LTTNG_ERR_OVERFLOW
;
3814 /* Update command reply header. */
3815 cmd_header
.count
= (uint32_t) i
;
3816 memcpy(payload
->buffer
.data
+ cmd_header_offset
, &cmd_header
,
3817 sizeof(cmd_header
));
3818 ret_code
= LTTNG_OK
;
3825 * Command LTTNG_LIST_EVENTS processed by the client thread.
3827 enum lttng_error_code
cmd_list_events(enum lttng_domain_type domain
,
3828 struct ltt_session
*session
,
3830 struct lttng_payload
*reply_payload
)
3832 int buffer_resize_ret
;
3833 enum lttng_error_code ret_code
= LTTNG_OK
;
3834 struct lttcomm_list_command_header reply_command_header
= {};
3835 size_t reply_command_header_offset
;
3836 unsigned int nb_events
= 0;
3838 assert(reply_payload
);
3840 /* Reserve space for command reply header. */
3841 reply_command_header_offset
= reply_payload
->buffer
.size
;
3842 buffer_resize_ret
= lttng_dynamic_buffer_set_size(&reply_payload
->buffer
,
3843 reply_command_header_offset
+
3844 sizeof(struct lttcomm_list_command_header
));
3845 if (buffer_resize_ret
) {
3846 ret_code
= LTTNG_ERR_NOMEM
;
3851 case LTTNG_DOMAIN_KERNEL
:
3852 if (session
->kernel_session
!= NULL
) {
3853 ret_code
= list_lttng_kernel_events(channel_name
,
3854 session
->kernel_session
, reply_payload
, &nb_events
);
3858 case LTTNG_DOMAIN_UST
:
3860 if (session
->ust_session
!= NULL
) {
3861 ret_code
= list_lttng_ust_global_events(channel_name
,
3862 &session
->ust_session
->domain_global
,
3863 reply_payload
, &nb_events
);
3868 case LTTNG_DOMAIN_LOG4J
:
3869 case LTTNG_DOMAIN_JUL
:
3870 case LTTNG_DOMAIN_PYTHON
:
3871 if (session
->ust_session
) {
3872 struct lttng_ht_iter iter
;
3876 cds_lfht_for_each_entry(session
->ust_session
->agents
->ht
,
3877 &iter
.iter
, agt
, node
.node
) {
3878 if (agt
->domain
== domain
) {
3879 ret_code
= list_lttng_agent_events(
3880 agt
, reply_payload
, &nb_events
);
3889 ret_code
= LTTNG_ERR_UND
;
3893 if (nb_events
> UINT32_MAX
) {
3894 ret_code
= LTTNG_ERR_OVERFLOW
;
3898 /* Update command reply header. */
3899 reply_command_header
.count
= (uint32_t) nb_events
;
3900 memcpy(reply_payload
->buffer
.data
+ reply_command_header_offset
, &reply_command_header
,
3901 sizeof(reply_command_header
));
3908 * Using the session list, filled a lttng_session array to send back to the
3909 * client for session listing.
3911 * The session list lock MUST be acquired before calling this function. Use
3912 * session_lock_list() and session_unlock_list().
3914 void cmd_list_lttng_sessions(struct lttng_session
*sessions
,
3915 size_t session_count
, uid_t uid
, gid_t gid
)
3919 struct ltt_session
*session
;
3920 struct ltt_session_list
*list
= session_get_list();
3921 struct lttng_session_extended
*extended
=
3922 (typeof(extended
)) (&sessions
[session_count
]);
3924 DBG("Getting all available session for UID %d GID %d",
3927 * Iterate over session list and append data after the control struct in
3930 cds_list_for_each_entry(session
, &list
->head
, list
) {
3931 if (!session_get(session
)) {
3935 * Only list the sessions the user can control.
3937 if (!session_access_ok(session
, uid
) ||
3938 session
->destroyed
) {
3939 session_put(session
);
3943 struct ltt_kernel_session
*ksess
= session
->kernel_session
;
3944 struct ltt_ust_session
*usess
= session
->ust_session
;
3946 if (session
->consumer
->type
== CONSUMER_DST_NET
||
3947 (ksess
&& ksess
->consumer
->type
== CONSUMER_DST_NET
) ||
3948 (usess
&& usess
->consumer
->type
== CONSUMER_DST_NET
)) {
3949 ret
= build_network_session_path(sessions
[i
].path
,
3950 sizeof(sessions
[i
].path
), session
);
3952 ret
= snprintf(sessions
[i
].path
, sizeof(sessions
[i
].path
), "%s",
3953 session
->consumer
->dst
.session_root_path
);
3956 PERROR("snprintf session path");
3957 session_put(session
);
3961 strncpy(sessions
[i
].name
, session
->name
, NAME_MAX
);
3962 sessions
[i
].name
[NAME_MAX
- 1] = '\0';
3963 sessions
[i
].enabled
= session
->active
;
3964 sessions
[i
].snapshot_mode
= session
->snapshot_mode
;
3965 sessions
[i
].live_timer_interval
= session
->live_timer
;
3966 extended
[i
].creation_time
.value
= (uint64_t) session
->creation_time
;
3967 extended
[i
].creation_time
.is_set
= 1;
3969 session_put(session
);
3974 * Command LTTNG_DATA_PENDING returning 0 if the data is NOT pending meaning
3975 * ready for trace analysis (or any kind of reader) or else 1 for pending data.
3977 int cmd_data_pending(struct ltt_session
*session
)
3980 struct ltt_kernel_session
*ksess
= session
->kernel_session
;
3981 struct ltt_ust_session
*usess
= session
->ust_session
;
3983 LTTNG_ASSERT(session
);
3985 DBG("Data pending for session %s", session
->name
);
3987 /* Session MUST be stopped to ask for data availability. */
3988 if (session
->active
) {
3989 ret
= LTTNG_ERR_SESSION_STARTED
;
3993 * If stopped, just make sure we've started before else the above call
3994 * will always send that there is data pending.
3996 * The consumer assumes that when the data pending command is received,
3997 * the trace has been started before or else no output data is written
3998 * by the streams which is a condition for data pending. So, this is
3999 * *VERY* important that we don't ask the consumer before a start
4002 if (!session
->has_been_started
) {
4008 /* A rotation is still pending, we have to wait. */
4009 if (session
->rotation_state
== LTTNG_ROTATION_STATE_ONGOING
) {
4010 DBG("Rotate still pending for session %s", session
->name
);
4015 if (ksess
&& ksess
->consumer
) {
4016 ret
= consumer_is_data_pending(ksess
->id
, ksess
->consumer
);
4018 /* Data is still being extracted for the kernel. */
4023 if (usess
&& usess
->consumer
) {
4024 ret
= consumer_is_data_pending(usess
->id
, usess
->consumer
);
4026 /* Data is still being extracted for the kernel. */
4031 /* Data is ready to be read by a viewer */
4039 * Command LTTNG_SNAPSHOT_ADD_OUTPUT from the lttng ctl library.
4041 * Return LTTNG_OK on success or else a LTTNG_ERR code.
4043 int cmd_snapshot_add_output(struct ltt_session
*session
,
4044 const struct lttng_snapshot_output
*output
, uint32_t *id
)
4047 struct snapshot_output
*new_output
;
4049 LTTNG_ASSERT(session
);
4050 LTTNG_ASSERT(output
);
4052 DBG("Cmd snapshot add output for session %s", session
->name
);
4055 * Can't create an output if the session is not set in no-output mode.
4057 if (session
->output_traces
) {
4058 ret
= LTTNG_ERR_NOT_SNAPSHOT_SESSION
;
4062 if (session
->has_non_mmap_channel
) {
4063 ret
= LTTNG_ERR_SNAPSHOT_UNSUPPORTED
;
4067 /* Only one output is allowed until we have the "tee" feature. */
4068 if (session
->snapshot
.nb_output
== 1) {
4069 ret
= LTTNG_ERR_SNAPSHOT_OUTPUT_EXIST
;
4073 new_output
= snapshot_output_alloc();
4075 ret
= LTTNG_ERR_NOMEM
;
4079 ret
= snapshot_output_init(session
, output
->max_size
, output
->name
,
4080 output
->ctrl_url
, output
->data_url
, session
->consumer
, new_output
,
4081 &session
->snapshot
);
4083 if (ret
== -ENOMEM
) {
4084 ret
= LTTNG_ERR_NOMEM
;
4086 ret
= LTTNG_ERR_INVALID
;
4092 snapshot_add_output(&session
->snapshot
, new_output
);
4094 *id
= new_output
->id
;
4101 snapshot_output_destroy(new_output
);
4107 * Command LTTNG_SNAPSHOT_DEL_OUTPUT from lib lttng ctl.
4109 * Return LTTNG_OK on success or else a LTTNG_ERR code.
4111 int cmd_snapshot_del_output(struct ltt_session
*session
,
4112 const struct lttng_snapshot_output
*output
)
4115 struct snapshot_output
*sout
= NULL
;
4117 LTTNG_ASSERT(session
);
4118 LTTNG_ASSERT(output
);
4123 * Permission denied to create an output if the session is not
4124 * set in no output mode.
4126 if (session
->output_traces
) {
4127 ret
= LTTNG_ERR_NOT_SNAPSHOT_SESSION
;
4132 DBG("Cmd snapshot del output id %" PRIu32
" for session %s", output
->id
,
4134 sout
= snapshot_find_output_by_id(output
->id
, &session
->snapshot
);
4135 } else if (*output
->name
!= '\0') {
4136 DBG("Cmd snapshot del output name %s for session %s", output
->name
,
4138 sout
= snapshot_find_output_by_name(output
->name
, &session
->snapshot
);
4141 ret
= LTTNG_ERR_INVALID
;
4145 snapshot_delete_output(&session
->snapshot
, sout
);
4146 snapshot_output_destroy(sout
);
4155 * Command LTTNG_SNAPSHOT_LIST_OUTPUT from lib lttng ctl.
4157 * If no output is available, outputs is untouched and 0 is returned.
4159 * Return the size of the newly allocated outputs or a negative LTTNG_ERR code.
4161 ssize_t
cmd_snapshot_list_outputs(struct ltt_session
*session
,
4162 struct lttng_snapshot_output
**outputs
)
4165 struct lttng_snapshot_output
*list
= NULL
;
4166 struct lttng_ht_iter iter
;
4167 struct snapshot_output
*output
;
4169 LTTNG_ASSERT(session
);
4170 LTTNG_ASSERT(outputs
);
4172 DBG("Cmd snapshot list outputs for session %s", session
->name
);
4175 * Permission denied to create an output if the session is not
4176 * set in no output mode.
4178 if (session
->output_traces
) {
4179 ret
= -LTTNG_ERR_NOT_SNAPSHOT_SESSION
;
4183 if (session
->snapshot
.nb_output
== 0) {
4188 list
= (lttng_snapshot_output
*) zmalloc(session
->snapshot
.nb_output
* sizeof(*list
));
4190 ret
= -LTTNG_ERR_NOMEM
;
4194 /* Copy list from session to the new list object. */
4196 cds_lfht_for_each_entry(session
->snapshot
.output_ht
->ht
, &iter
.iter
,
4197 output
, node
.node
) {
4198 LTTNG_ASSERT(output
->consumer
);
4199 list
[idx
].id
= output
->id
;
4200 list
[idx
].max_size
= output
->max_size
;
4201 if (lttng_strncpy(list
[idx
].name
, output
->name
,
4202 sizeof(list
[idx
].name
))) {
4203 ret
= -LTTNG_ERR_INVALID
;
4206 if (output
->consumer
->type
== CONSUMER_DST_LOCAL
) {
4207 if (lttng_strncpy(list
[idx
].ctrl_url
,
4208 output
->consumer
->dst
.session_root_path
,
4209 sizeof(list
[idx
].ctrl_url
))) {
4210 ret
= -LTTNG_ERR_INVALID
;
4215 ret
= uri_to_str_url(&output
->consumer
->dst
.net
.control
,
4216 list
[idx
].ctrl_url
, sizeof(list
[idx
].ctrl_url
));
4218 ret
= -LTTNG_ERR_NOMEM
;
4223 ret
= uri_to_str_url(&output
->consumer
->dst
.net
.data
,
4224 list
[idx
].data_url
, sizeof(list
[idx
].data_url
));
4226 ret
= -LTTNG_ERR_NOMEM
;
4235 ret
= session
->snapshot
.nb_output
;
4244 * Check if we can regenerate the metadata for this session.
4245 * Only kernel, UST per-uid and non-live sessions are supported.
4247 * Return 0 if the metadata can be generated, a LTTNG_ERR code otherwise.
4250 int check_regenerate_metadata_support(struct ltt_session
*session
)
4254 LTTNG_ASSERT(session
);
4256 if (session
->live_timer
!= 0) {
4257 ret
= LTTNG_ERR_LIVE_SESSION
;
4260 if (!session
->active
) {
4261 ret
= LTTNG_ERR_SESSION_NOT_STARTED
;
4264 if (session
->ust_session
) {
4265 switch (session
->ust_session
->buffer_type
) {
4266 case LTTNG_BUFFER_PER_UID
:
4268 case LTTNG_BUFFER_PER_PID
:
4269 ret
= LTTNG_ERR_PER_PID_SESSION
;
4273 ret
= LTTNG_ERR_UNK
;
4277 if (session
->consumer
->type
== CONSUMER_DST_NET
&&
4278 session
->consumer
->relay_minor_version
< 8) {
4279 ret
= LTTNG_ERR_RELAYD_VERSION_FAIL
;
4289 int clear_metadata_file(int fd
)
4294 lseek_ret
= lseek(fd
, 0, SEEK_SET
);
4295 if (lseek_ret
< 0) {
4301 ret
= ftruncate(fd
, 0);
4303 PERROR("ftruncate");
4312 int ust_regenerate_metadata(struct ltt_ust_session
*usess
)
4315 struct buffer_reg_uid
*uid_reg
= NULL
;
4316 struct buffer_reg_session
*session_reg
= NULL
;
4319 cds_list_for_each_entry(uid_reg
, &usess
->buffer_reg_uid_list
, lnode
) {
4320 struct ust_registry_session
*registry
;
4321 struct ust_registry_channel
*chan
;
4322 struct lttng_ht_iter iter_chan
;
4324 session_reg
= uid_reg
->registry
;
4325 registry
= session_reg
->reg
.ust
;
4327 pthread_mutex_lock(®istry
->lock
);
4328 registry
->metadata_len_sent
= 0;
4329 memset(registry
->metadata
, 0, registry
->metadata_alloc_len
);
4330 registry
->metadata_len
= 0;
4331 registry
->metadata_version
++;
4332 if (registry
->metadata_fd
> 0) {
4333 /* Clear the metadata file's content. */
4334 ret
= clear_metadata_file(registry
->metadata_fd
);
4336 pthread_mutex_unlock(®istry
->lock
);
4341 ret
= ust_metadata_session_statedump(registry
, NULL
,
4342 registry
->major
, registry
->minor
);
4344 pthread_mutex_unlock(®istry
->lock
);
4345 ERR("Failed to generate session metadata (err = %d)",
4349 cds_lfht_for_each_entry(registry
->channels
->ht
, &iter_chan
.iter
,
4351 struct ust_registry_event
*event
;
4352 struct lttng_ht_iter iter_event
;
4354 ret
= ust_metadata_channel_statedump(registry
, chan
);
4356 pthread_mutex_unlock(®istry
->lock
);
4357 ERR("Failed to generate channel metadata "
4361 cds_lfht_for_each_entry(chan
->ht
->ht
, &iter_event
.iter
,
4363 ret
= ust_metadata_event_statedump(registry
,
4366 pthread_mutex_unlock(®istry
->lock
);
4367 ERR("Failed to generate event metadata "
4373 pthread_mutex_unlock(®istry
->lock
);
4382 * Command LTTNG_REGENERATE_METADATA from the lttng-ctl library.
4384 * Ask the consumer to truncate the existing metadata file(s) and
4385 * then regenerate the metadata. Live and per-pid sessions are not
4386 * supported and return an error.
4388 * Return LTTNG_OK on success or else a LTTNG_ERR code.
4390 int cmd_regenerate_metadata(struct ltt_session
*session
)
4394 LTTNG_ASSERT(session
);
4396 ret
= check_regenerate_metadata_support(session
);
4401 if (session
->kernel_session
) {
4402 ret
= kernctl_session_regenerate_metadata(
4403 session
->kernel_session
->fd
);
4405 ERR("Failed to regenerate the kernel metadata");
4410 if (session
->ust_session
) {
4411 ret
= ust_regenerate_metadata(session
->ust_session
);
4413 ERR("Failed to regenerate the UST metadata");
4417 DBG("Cmd metadata regenerate for session %s", session
->name
);
4425 * Command LTTNG_REGENERATE_STATEDUMP from the lttng-ctl library.
4427 * Ask the tracer to regenerate a new statedump.
4429 * Return LTTNG_OK on success or else a LTTNG_ERR code.
4431 int cmd_regenerate_statedump(struct ltt_session
*session
)
4435 LTTNG_ASSERT(session
);
4437 if (!session
->active
) {
4438 ret
= LTTNG_ERR_SESSION_NOT_STARTED
;
4442 if (session
->kernel_session
) {
4443 ret
= kernctl_session_regenerate_statedump(
4444 session
->kernel_session
->fd
);
4446 * Currently, the statedump in kernel can only fail if out
4450 if (ret
== -ENOMEM
) {
4451 ret
= LTTNG_ERR_REGEN_STATEDUMP_NOMEM
;
4453 ret
= LTTNG_ERR_REGEN_STATEDUMP_FAIL
;
4455 ERR("Failed to regenerate the kernel statedump");
4460 if (session
->ust_session
) {
4461 ret
= ust_app_regenerate_statedump_all(session
->ust_session
);
4463 * Currently, the statedump in UST always returns 0.
4466 ret
= LTTNG_ERR_REGEN_STATEDUMP_FAIL
;
4467 ERR("Failed to regenerate the UST statedump");
4471 DBG("Cmd regenerate statedump for session %s", session
->name
);
4479 enum lttng_error_code
synchronize_tracer_notifier_register(
4480 struct notification_thread_handle
*notification_thread
,
4481 struct lttng_trigger
*trigger
, const struct lttng_credentials
*cmd_creds
)
4483 enum lttng_error_code ret_code
;
4484 const struct lttng_condition
*condition
=
4485 lttng_trigger_get_const_condition(trigger
);
4486 const char *trigger_name
;
4487 uid_t trigger_owner
;
4488 enum lttng_trigger_status trigger_status
;
4489 const enum lttng_domain_type trigger_domain
=
4490 lttng_trigger_get_underlying_domain_type_restriction(
4493 trigger_status
= lttng_trigger_get_owner_uid(trigger
, &trigger_owner
);
4494 LTTNG_ASSERT(trigger_status
== LTTNG_TRIGGER_STATUS_OK
);
4496 LTTNG_ASSERT(condition
);
4497 LTTNG_ASSERT(lttng_condition_get_type(condition
) ==
4498 LTTNG_CONDITION_TYPE_EVENT_RULE_MATCHES
);
4500 trigger_status
= lttng_trigger_get_name(trigger
, &trigger_name
);
4501 trigger_name
= trigger_status
== LTTNG_TRIGGER_STATUS_OK
?
4502 trigger_name
: "(anonymous)";
4504 session_lock_list();
4505 switch (trigger_domain
) {
4506 case LTTNG_DOMAIN_KERNEL
:
4508 ret_code
= kernel_register_event_notifier(trigger
, cmd_creds
);
4509 if (ret_code
!= LTTNG_OK
) {
4510 enum lttng_error_code notif_thread_unregister_ret
;
4512 notif_thread_unregister_ret
=
4513 notification_thread_command_unregister_trigger(
4514 notification_thread
, trigger
);
4516 if (notif_thread_unregister_ret
!= LTTNG_OK
) {
4517 /* Return the original error code. */
4518 ERR("Failed to unregister trigger from notification thread during error recovery: trigger name = '%s', trigger owner uid = %d, error code = %d",
4520 (int) trigger_owner
,
4526 case LTTNG_DOMAIN_UST
:
4527 ust_app_global_update_all_event_notifier_rules();
4529 case LTTNG_DOMAIN_JUL
:
4530 case LTTNG_DOMAIN_LOG4J
:
4531 case LTTNG_DOMAIN_PYTHON
:
4533 /* Agent domains. */
4534 struct agent
*agt
= agent_find_by_event_notifier_domain(
4538 agt
= agent_create(trigger_domain
);
4540 ret_code
= LTTNG_ERR_NOMEM
;
4541 goto end_unlock_session_list
;
4544 agent_add(agt
, the_trigger_agents_ht_by_domain
);
4547 ret_code
= (lttng_error_code
) trigger_agent_enable(trigger
, agt
);
4548 if (ret_code
!= LTTNG_OK
) {
4549 goto end_unlock_session_list
;
4554 case LTTNG_DOMAIN_NONE
:
4559 ret_code
= LTTNG_OK
;
4560 end_unlock_session_list
:
4561 session_unlock_list();
4565 enum lttng_error_code
cmd_register_trigger(const struct lttng_credentials
*cmd_creds
,
4566 struct lttng_trigger
*trigger
,
4567 bool is_trigger_anonymous
,
4568 struct notification_thread_handle
*notification_thread
,
4569 struct lttng_trigger
**return_trigger
)
4571 enum lttng_error_code ret_code
;
4572 const char *trigger_name
;
4573 uid_t trigger_owner
;
4574 enum lttng_trigger_status trigger_status
;
4576 trigger_status
= lttng_trigger_get_name(trigger
, &trigger_name
);
4577 trigger_name
= trigger_status
== LTTNG_TRIGGER_STATUS_OK
?
4578 trigger_name
: "(anonymous)";
4580 trigger_status
= lttng_trigger_get_owner_uid(
4581 trigger
, &trigger_owner
);
4582 LTTNG_ASSERT(trigger_status
== LTTNG_TRIGGER_STATUS_OK
);
4584 DBG("Running register trigger command: trigger name = '%s', trigger owner uid = %d, command creds uid = %d",
4585 trigger_name
, (int) trigger_owner
,
4586 (int) lttng_credentials_get_uid(cmd_creds
));
4589 * Validate the trigger credentials against the command credentials.
4590 * Only the root user can register a trigger with non-matching
4593 if (!lttng_credentials_is_equal_uid(
4594 lttng_trigger_get_credentials(trigger
),
4596 if (lttng_credentials_get_uid(cmd_creds
) != 0) {
4597 ERR("Trigger credentials do not match the command credentials: trigger name = '%s', trigger owner uid = %d, command creds uid = %d",
4598 trigger_name
, (int) trigger_owner
,
4599 (int) lttng_credentials_get_uid(cmd_creds
));
4600 ret_code
= LTTNG_ERR_INVALID_TRIGGER
;
4606 * The bytecode generation also serves as a validation step for the
4607 * bytecode expressions.
4609 ret_code
= lttng_trigger_generate_bytecode(trigger
, cmd_creds
);
4610 if (ret_code
!= LTTNG_OK
) {
4611 ERR("Failed to generate bytecode of trigger: trigger name = '%s', trigger owner uid = %d, error code = %d",
4612 trigger_name
, (int) trigger_owner
, ret_code
);
4617 * A reference to the trigger is acquired by the notification thread.
4618 * It is safe to return the same trigger to the caller since it the
4619 * other user holds a reference.
4621 * The trigger is modified during the execution of the
4622 * "register trigger" command. However, by the time the command returns,
4623 * it is safe to use without any locking as its properties are
4626 ret_code
= notification_thread_command_register_trigger(
4627 notification_thread
, trigger
, is_trigger_anonymous
);
4628 if (ret_code
!= LTTNG_OK
) {
4629 DBG("Failed to register trigger to notification thread: trigger name = '%s', trigger owner uid = %d, error code = %d",
4630 trigger_name
, (int) trigger_owner
, ret_code
);
4634 trigger_status
= lttng_trigger_get_name(trigger
, &trigger_name
);
4635 trigger_name
= trigger_status
== LTTNG_TRIGGER_STATUS_OK
?
4636 trigger_name
: "(anonymous)";
4639 * Synchronize tracers if the trigger adds an event notifier.
4641 if (lttng_trigger_needs_tracer_notifier(trigger
)) {
4642 ret_code
= synchronize_tracer_notifier_register(notification_thread
,
4643 trigger
, cmd_creds
);
4644 if (ret_code
!= LTTNG_OK
) {
4645 ERR("Error registering tracer notifier: %s",
4646 lttng_strerror(-ret_code
));
4652 * Return an updated trigger to the client.
4654 * Since a modified version of the same trigger is returned, acquire a
4655 * reference to the trigger so the caller doesn't have to care if those
4656 * are distinct instances or not.
4658 if (ret_code
== LTTNG_OK
) {
4659 lttng_trigger_get(trigger
);
4660 *return_trigger
= trigger
;
4661 /* Ownership of trigger was transferred to caller. */
4669 enum lttng_error_code
synchronize_tracer_notifier_unregister(
4670 const struct lttng_trigger
*trigger
)
4672 enum lttng_error_code ret_code
;
4673 const struct lttng_condition
*condition
=
4674 lttng_trigger_get_const_condition(trigger
);
4675 const enum lttng_domain_type trigger_domain
=
4676 lttng_trigger_get_underlying_domain_type_restriction(
4679 LTTNG_ASSERT(condition
);
4680 LTTNG_ASSERT(lttng_condition_get_type(condition
) ==
4681 LTTNG_CONDITION_TYPE_EVENT_RULE_MATCHES
);
4683 session_lock_list();
4684 switch (trigger_domain
) {
4685 case LTTNG_DOMAIN_KERNEL
:
4686 ret_code
= kernel_unregister_event_notifier(trigger
);
4687 if (ret_code
!= LTTNG_OK
) {
4688 goto end_unlock_session_list
;
4692 case LTTNG_DOMAIN_UST
:
4693 ust_app_global_update_all_event_notifier_rules();
4695 case LTTNG_DOMAIN_JUL
:
4696 case LTTNG_DOMAIN_LOG4J
:
4697 case LTTNG_DOMAIN_PYTHON
:
4699 /* Agent domains. */
4700 struct agent
*agt
= agent_find_by_event_notifier_domain(
4704 * This trigger was never registered in the first place. Calling
4705 * this function under those circumstances is an internal error.
4708 ret_code
= (lttng_error_code
) trigger_agent_disable(trigger
, agt
);
4709 if (ret_code
!= LTTNG_OK
) {
4710 goto end_unlock_session_list
;
4715 case LTTNG_DOMAIN_NONE
:
4720 ret_code
= LTTNG_OK
;
4722 end_unlock_session_list
:
4723 session_unlock_list();
4727 enum lttng_error_code
cmd_unregister_trigger(const struct lttng_credentials
*cmd_creds
,
4728 const struct lttng_trigger
*trigger
,
4729 struct notification_thread_handle
*notification_thread
)
4731 enum lttng_error_code ret_code
;
4732 const char *trigger_name
;
4733 uid_t trigger_owner
;
4734 enum lttng_trigger_status trigger_status
;
4735 struct lttng_trigger
*sessiond_trigger
= NULL
;
4737 trigger_status
= lttng_trigger_get_name(trigger
, &trigger_name
);
4738 trigger_name
= trigger_status
== LTTNG_TRIGGER_STATUS_OK
? trigger_name
: "(anonymous)";
4739 trigger_status
= lttng_trigger_get_owner_uid(trigger
, &trigger_owner
);
4740 LTTNG_ASSERT(trigger_status
== LTTNG_TRIGGER_STATUS_OK
);
4742 DBG("Running unregister trigger command: trigger name = '%s', trigger owner uid = %d, command creds uid = %d",
4743 trigger_name
, (int) trigger_owner
,
4744 (int) lttng_credentials_get_uid(cmd_creds
));
4747 * Validate the trigger credentials against the command credentials.
4748 * Only the root user can unregister a trigger with non-matching
4751 if (!lttng_credentials_is_equal_uid(
4752 lttng_trigger_get_credentials(trigger
),
4754 if (lttng_credentials_get_uid(cmd_creds
) != 0) {
4755 ERR("Trigger credentials do not match the command credentials: trigger name = '%s', trigger owner uid = %d, command creds uid = %d",
4756 trigger_name
, (int) trigger_owner
,
4757 (int) lttng_credentials_get_uid(cmd_creds
));
4758 ret_code
= LTTNG_ERR_INVALID_TRIGGER
;
4763 /* Fetch the sessiond side trigger object. */
4764 ret_code
= notification_thread_command_get_trigger(
4765 notification_thread
, trigger
, &sessiond_trigger
);
4766 if (ret_code
!= LTTNG_OK
) {
4767 DBG("Failed to get trigger from notification thread during unregister: trigger name = '%s', trigger owner uid = %d, error code = %d",
4768 trigger_name
, (int) trigger_owner
, ret_code
);
4772 LTTNG_ASSERT(sessiond_trigger
);
4775 * From this point on, no matter what, consider the trigger
4778 * We set the unregistered state of the sessiond side trigger object in
4779 * the client thread since we want to minimize the possibility of the
4780 * notification thread being stalled due to a long execution of an
4781 * action that required the trigger lock.
4783 lttng_trigger_set_as_unregistered(sessiond_trigger
);
4785 ret_code
= notification_thread_command_unregister_trigger(notification_thread
,
4787 if (ret_code
!= LTTNG_OK
) {
4788 DBG("Failed to unregister trigger from notification thread: trigger name = '%s', trigger owner uid = %d, error code = %d",
4789 trigger_name
, (int) trigger_owner
, ret_code
);
4794 * Synchronize tracers if the trigger removes an event notifier.
4795 * Do this even if the trigger unregistration failed to at least stop
4796 * the tracers from producing notifications associated with this
4799 if (lttng_trigger_needs_tracer_notifier(trigger
)) {
4800 ret_code
= synchronize_tracer_notifier_unregister(trigger
);
4801 if (ret_code
!= LTTNG_OK
) {
4802 ERR("Error unregistering trigger to tracer.");
4809 lttng_trigger_put(sessiond_trigger
);
4813 enum lttng_error_code
cmd_list_triggers(struct command_ctx
*cmd_ctx
,
4814 struct notification_thread_handle
*notification_thread
,
4815 struct lttng_triggers
**return_triggers
)
4818 enum lttng_error_code ret_code
;
4819 struct lttng_triggers
*triggers
= NULL
;
4821 /* Get the set of triggers from the notification thread. */
4822 ret_code
= notification_thread_command_list_triggers(
4823 notification_thread
, cmd_ctx
->creds
.uid
, &triggers
);
4824 if (ret_code
!= LTTNG_OK
) {
4828 ret
= lttng_triggers_remove_hidden_triggers(triggers
);
4830 ret_code
= LTTNG_ERR_UNK
;
4834 *return_triggers
= triggers
;
4836 ret_code
= LTTNG_OK
;
4838 lttng_triggers_destroy(triggers
);
4842 enum lttng_error_code
cmd_execute_error_query(const struct lttng_credentials
*cmd_creds
,
4843 const struct lttng_error_query
*query
,
4844 struct lttng_error_query_results
**_results
,
4845 struct notification_thread_handle
*notification_thread
)
4847 enum lttng_error_code ret_code
;
4848 const struct lttng_trigger
*query_target_trigger
;
4849 const struct lttng_action
*query_target_action
= NULL
;
4850 struct lttng_trigger
*matching_trigger
= NULL
;
4851 const char *trigger_name
;
4852 uid_t trigger_owner
;
4853 enum lttng_trigger_status trigger_status
;
4854 struct lttng_error_query_results
*results
= NULL
;
4856 switch (lttng_error_query_get_target_type(query
)) {
4857 case LTTNG_ERROR_QUERY_TARGET_TYPE_TRIGGER
:
4858 query_target_trigger
= lttng_error_query_trigger_borrow_target(query
);
4860 case LTTNG_ERROR_QUERY_TARGET_TYPE_CONDITION
:
4861 query_target_trigger
=
4862 lttng_error_query_condition_borrow_target(query
);
4864 case LTTNG_ERROR_QUERY_TARGET_TYPE_ACTION
:
4865 query_target_trigger
= lttng_error_query_action_borrow_trigger_target(
4872 LTTNG_ASSERT(query_target_trigger
);
4874 ret_code
= notification_thread_command_get_trigger(notification_thread
,
4875 query_target_trigger
, &matching_trigger
);
4876 if (ret_code
!= LTTNG_OK
) {
4880 /* No longer needed. */
4881 query_target_trigger
= NULL
;
4883 if (lttng_error_query_get_target_type(query
) ==
4884 LTTNG_ERROR_QUERY_TARGET_TYPE_ACTION
) {
4885 /* Get the sessiond-side version of the target action. */
4886 query_target_action
=
4887 lttng_error_query_action_borrow_action_target(
4888 query
, matching_trigger
);
4891 trigger_status
= lttng_trigger_get_name(matching_trigger
, &trigger_name
);
4892 trigger_name
= trigger_status
== LTTNG_TRIGGER_STATUS_OK
?
4893 trigger_name
: "(anonymous)";
4894 trigger_status
= lttng_trigger_get_owner_uid(matching_trigger
,
4896 LTTNG_ASSERT(trigger_status
== LTTNG_TRIGGER_STATUS_OK
);
4898 results
= lttng_error_query_results_create();
4900 ret_code
= LTTNG_ERR_NOMEM
;
4904 DBG("Running \"execute error query\" command: trigger name = '%s', trigger owner uid = %d, command creds uid = %d",
4905 trigger_name
, (int) trigger_owner
,
4906 (int) lttng_credentials_get_uid(cmd_creds
));
4909 * Validate the trigger credentials against the command credentials.
4910 * Only the root user can target a trigger with non-matching
4913 if (!lttng_credentials_is_equal_uid(
4914 lttng_trigger_get_credentials(matching_trigger
),
4916 if (lttng_credentials_get_uid(cmd_creds
) != 0) {
4917 ERR("Trigger credentials do not match the command credentials: trigger name = '%s', trigger owner uid = %d, command creds uid = %d",
4918 trigger_name
, (int) trigger_owner
,
4919 (int) lttng_credentials_get_uid(cmd_creds
));
4920 ret_code
= LTTNG_ERR_INVALID_TRIGGER
;
4925 switch (lttng_error_query_get_target_type(query
)) {
4926 case LTTNG_ERROR_QUERY_TARGET_TYPE_TRIGGER
:
4927 trigger_status
= lttng_trigger_add_error_results(
4928 matching_trigger
, results
);
4930 switch (trigger_status
) {
4931 case LTTNG_TRIGGER_STATUS_OK
:
4934 ret_code
= LTTNG_ERR_UNK
;
4939 case LTTNG_ERROR_QUERY_TARGET_TYPE_CONDITION
:
4941 trigger_status
= lttng_trigger_condition_add_error_results(
4942 matching_trigger
, results
);
4944 switch (trigger_status
) {
4945 case LTTNG_TRIGGER_STATUS_OK
:
4948 ret_code
= LTTNG_ERR_UNK
;
4954 case LTTNG_ERROR_QUERY_TARGET_TYPE_ACTION
:
4956 const enum lttng_action_status action_status
=
4957 lttng_action_add_error_query_results(
4958 query_target_action
, results
);
4960 switch (action_status
) {
4961 case LTTNG_ACTION_STATUS_OK
:
4964 ret_code
= LTTNG_ERR_UNK
;
4975 *_results
= results
;
4977 ret_code
= LTTNG_OK
;
4979 lttng_trigger_put(matching_trigger
);
4980 lttng_error_query_results_destroy(results
);
4985 * Send relayd sockets from snapshot output to consumer. Ignore request if the
4986 * snapshot output is *not* set with a remote destination.
4988 * Return LTTNG_OK on success or a LTTNG_ERR code.
4990 static enum lttng_error_code
set_relayd_for_snapshot(
4991 struct consumer_output
*output
,
4992 const struct ltt_session
*session
)
4994 enum lttng_error_code status
= LTTNG_OK
;
4995 struct lttng_ht_iter iter
;
4996 struct consumer_socket
*socket
;
4997 LTTNG_OPTIONAL(uint64_t) current_chunk_id
= {};
4998 const char *base_path
;
5000 LTTNG_ASSERT(output
);
5001 LTTNG_ASSERT(session
);
5003 DBG2("Set relayd object from snapshot output");
5005 if (session
->current_trace_chunk
) {
5006 enum lttng_trace_chunk_status chunk_status
=
5007 lttng_trace_chunk_get_id(
5008 session
->current_trace_chunk
,
5009 ¤t_chunk_id
.value
);
5011 if (chunk_status
== LTTNG_TRACE_CHUNK_STATUS_OK
) {
5012 current_chunk_id
.is_set
= true;
5014 ERR("Failed to get current trace chunk id");
5015 status
= LTTNG_ERR_UNK
;
5020 /* Ignore if snapshot consumer output is not network. */
5021 if (output
->type
!= CONSUMER_DST_NET
) {
5026 * The snapshot record URI base path overrides the session
5029 if (output
->dst
.net
.control
.subdir
[0] != '\0') {
5030 base_path
= output
->dst
.net
.control
.subdir
;
5032 base_path
= session
->base_path
;
5036 * For each consumer socket, create and send the relayd object of the
5040 cds_lfht_for_each_entry(output
->socks
->ht
, &iter
.iter
,
5041 socket
, node
.node
) {
5042 pthread_mutex_lock(socket
->lock
);
5043 status
= send_consumer_relayd_sockets(session
->id
,
5045 session
->name
, session
->hostname
,
5047 session
->live_timer
,
5048 current_chunk_id
.is_set
? ¤t_chunk_id
.value
: NULL
,
5049 session
->creation_time
,
5050 session
->name_contains_creation_time
);
5051 pthread_mutex_unlock(socket
->lock
);
5052 if (status
!= LTTNG_OK
) {
5064 * Record a kernel snapshot.
5066 * Return LTTNG_OK on success or a LTTNG_ERR code.
5068 static enum lttng_error_code
record_kernel_snapshot(
5069 struct ltt_kernel_session
*ksess
,
5070 const struct consumer_output
*output
,
5071 const struct ltt_session
*session
,
5072 uint64_t nb_packets_per_stream
)
5074 enum lttng_error_code status
;
5076 LTTNG_ASSERT(ksess
);
5077 LTTNG_ASSERT(output
);
5078 LTTNG_ASSERT(session
);
5080 status
= kernel_snapshot_record(
5081 ksess
, output
, nb_packets_per_stream
);
5086 * Record a UST snapshot.
5088 * Returns LTTNG_OK on success or a LTTNG_ERR error code.
5090 static enum lttng_error_code
record_ust_snapshot(struct ltt_ust_session
*usess
,
5091 const struct consumer_output
*output
,
5092 const struct ltt_session
*session
,
5093 uint64_t nb_packets_per_stream
)
5095 enum lttng_error_code status
;
5097 LTTNG_ASSERT(usess
);
5098 LTTNG_ASSERT(output
);
5099 LTTNG_ASSERT(session
);
5101 status
= ust_app_snapshot_record(
5102 usess
, output
, nb_packets_per_stream
);
5107 uint64_t get_session_size_one_more_packet_per_stream(
5108 const struct ltt_session
*session
, uint64_t cur_nr_packets
)
5110 uint64_t tot_size
= 0;
5112 if (session
->kernel_session
) {
5113 struct ltt_kernel_channel
*chan
;
5114 const struct ltt_kernel_session
*ksess
=
5115 session
->kernel_session
;
5117 cds_list_for_each_entry(chan
, &ksess
->channel_list
.head
, list
) {
5118 if (cur_nr_packets
>= chan
->channel
->attr
.num_subbuf
) {
5120 * Don't take channel into account if we
5121 * already grab all its packets.
5125 tot_size
+= chan
->channel
->attr
.subbuf_size
5126 * chan
->stream_count
;
5130 if (session
->ust_session
) {
5131 const struct ltt_ust_session
*usess
= session
->ust_session
;
5133 tot_size
+= ust_app_get_size_one_more_packet_per_stream(usess
,
5141 * Calculate the number of packets we can grab from each stream that
5142 * fits within the overall snapshot max size.
5144 * Returns -1 on error, 0 means infinite number of packets, else > 0 is
5145 * the number of packets per stream.
5147 * TODO: this approach is not perfect: we consider the worse case
5148 * (packet filling the sub-buffers) as an upper bound, but we could do
5149 * better if we do this calculation while we actually grab the packet
5150 * content: we would know how much padding we don't actually store into
5153 * This algorithm is currently bounded by the number of packets per
5156 * Since we call this algorithm before actually grabbing the data, it's
5157 * an approximation: for instance, applications could appear/disappear
5158 * in between this call and actually grabbing data.
5161 int64_t get_session_nb_packets_per_stream(const struct ltt_session
*session
,
5165 uint64_t cur_nb_packets
= 0;
5168 return 0; /* Infinite */
5171 size_left
= max_size
;
5173 uint64_t one_more_packet_tot_size
;
5175 one_more_packet_tot_size
= get_session_size_one_more_packet_per_stream(
5176 session
, cur_nb_packets
);
5177 if (!one_more_packet_tot_size
) {
5178 /* We are already grabbing all packets. */
5181 size_left
-= one_more_packet_tot_size
;
5182 if (size_left
< 0) {
5187 if (!cur_nb_packets
&& size_left
!= max_size
) {
5188 /* Not enough room to grab one packet of each stream, error. */
5191 return cur_nb_packets
;
5195 enum lttng_error_code
snapshot_record(struct ltt_session
*session
,
5196 const struct snapshot_output
*snapshot_output
)
5198 int64_t nb_packets_per_stream
;
5199 char snapshot_chunk_name
[LTTNG_NAME_MAX
];
5201 enum lttng_error_code ret_code
= LTTNG_OK
;
5202 struct lttng_trace_chunk
*snapshot_trace_chunk
;
5203 struct consumer_output
*original_ust_consumer_output
= NULL
;
5204 struct consumer_output
*original_kernel_consumer_output
= NULL
;
5205 struct consumer_output
*snapshot_ust_consumer_output
= NULL
;
5206 struct consumer_output
*snapshot_kernel_consumer_output
= NULL
;
5208 ret
= snprintf(snapshot_chunk_name
, sizeof(snapshot_chunk_name
),
5210 snapshot_output
->name
,
5211 snapshot_output
->datetime
,
5212 snapshot_output
->nb_snapshot
);
5213 if (ret
< 0 || ret
>= sizeof(snapshot_chunk_name
)) {
5214 ERR("Failed to format snapshot name");
5215 ret_code
= LTTNG_ERR_INVALID
;
5218 DBG("Recording snapshot \"%s\" for session \"%s\" with chunk name \"%s\"",
5219 snapshot_output
->name
, session
->name
,
5220 snapshot_chunk_name
);
5221 if (!session
->kernel_session
&& !session
->ust_session
) {
5222 ERR("Failed to record snapshot as no channels exist");
5223 ret_code
= LTTNG_ERR_NO_CHANNEL
;
5227 if (session
->kernel_session
) {
5228 original_kernel_consumer_output
=
5229 session
->kernel_session
->consumer
;
5230 snapshot_kernel_consumer_output
=
5231 consumer_copy_output(snapshot_output
->consumer
);
5232 strcpy(snapshot_kernel_consumer_output
->chunk_path
,
5233 snapshot_chunk_name
);
5235 /* Copy the original domain subdir. */
5236 strcpy(snapshot_kernel_consumer_output
->domain_subdir
,
5237 original_kernel_consumer_output
->domain_subdir
);
5239 ret
= consumer_copy_sockets(snapshot_kernel_consumer_output
,
5240 original_kernel_consumer_output
);
5242 ERR("Failed to copy consumer sockets from snapshot output configuration");
5243 ret_code
= LTTNG_ERR_NOMEM
;
5246 ret_code
= set_relayd_for_snapshot(
5247 snapshot_kernel_consumer_output
, session
);
5248 if (ret_code
!= LTTNG_OK
) {
5249 ERR("Failed to setup relay daemon for kernel tracer snapshot");
5252 session
->kernel_session
->consumer
=
5253 snapshot_kernel_consumer_output
;
5255 if (session
->ust_session
) {
5256 original_ust_consumer_output
= session
->ust_session
->consumer
;
5257 snapshot_ust_consumer_output
=
5258 consumer_copy_output(snapshot_output
->consumer
);
5259 strcpy(snapshot_ust_consumer_output
->chunk_path
,
5260 snapshot_chunk_name
);
5262 /* Copy the original domain subdir. */
5263 strcpy(snapshot_ust_consumer_output
->domain_subdir
,
5264 original_ust_consumer_output
->domain_subdir
);
5266 ret
= consumer_copy_sockets(snapshot_ust_consumer_output
,
5267 original_ust_consumer_output
);
5269 ERR("Failed to copy consumer sockets from snapshot output configuration");
5270 ret_code
= LTTNG_ERR_NOMEM
;
5273 ret_code
= set_relayd_for_snapshot(
5274 snapshot_ust_consumer_output
, session
);
5275 if (ret_code
!= LTTNG_OK
) {
5276 ERR("Failed to setup relay daemon for userspace tracer snapshot");
5279 session
->ust_session
->consumer
=
5280 snapshot_ust_consumer_output
;
5283 snapshot_trace_chunk
= session_create_new_trace_chunk(session
,
5284 snapshot_kernel_consumer_output
?:
5285 snapshot_ust_consumer_output
,
5286 consumer_output_get_base_path(
5287 snapshot_output
->consumer
),
5288 snapshot_chunk_name
);
5289 if (!snapshot_trace_chunk
) {
5290 ERR("Failed to create temporary trace chunk to record a snapshot of session \"%s\"",
5292 ret_code
= LTTNG_ERR_CREATE_DIR_FAIL
;
5295 LTTNG_ASSERT(!session
->current_trace_chunk
);
5296 ret
= session_set_trace_chunk(session
, snapshot_trace_chunk
, NULL
);
5297 lttng_trace_chunk_put(snapshot_trace_chunk
);
5298 snapshot_trace_chunk
= NULL
;
5300 ERR("Failed to set temporary trace chunk to record a snapshot of session \"%s\"",
5302 ret_code
= LTTNG_ERR_CREATE_TRACE_CHUNK_FAIL_CONSUMER
;
5306 nb_packets_per_stream
= get_session_nb_packets_per_stream(session
,
5307 snapshot_output
->max_size
);
5308 if (nb_packets_per_stream
< 0) {
5309 ret_code
= LTTNG_ERR_MAX_SIZE_INVALID
;
5310 goto error_close_trace_chunk
;
5313 if (session
->kernel_session
) {
5314 ret_code
= record_kernel_snapshot(session
->kernel_session
,
5315 snapshot_kernel_consumer_output
, session
,
5316 nb_packets_per_stream
);
5317 if (ret_code
!= LTTNG_OK
) {
5318 goto error_close_trace_chunk
;
5322 if (session
->ust_session
) {
5323 ret_code
= record_ust_snapshot(session
->ust_session
,
5324 snapshot_ust_consumer_output
, session
,
5325 nb_packets_per_stream
);
5326 if (ret_code
!= LTTNG_OK
) {
5327 goto error_close_trace_chunk
;
5331 error_close_trace_chunk
:
5332 if (session_set_trace_chunk(session
, NULL
, &snapshot_trace_chunk
)) {
5333 ERR("Failed to release the current trace chunk of session \"%s\"",
5335 ret_code
= LTTNG_ERR_UNK
;
5338 if (session_close_trace_chunk(session
, snapshot_trace_chunk
,
5339 LTTNG_TRACE_CHUNK_COMMAND_TYPE_NO_OPERATION
, NULL
)) {
5341 * Don't goto end; make sure the chunk is closed for the session
5342 * to allow future snapshots.
5344 ERR("Failed to close snapshot trace chunk of session \"%s\"",
5346 ret_code
= LTTNG_ERR_CLOSE_TRACE_CHUNK_FAIL_CONSUMER
;
5349 lttng_trace_chunk_put(snapshot_trace_chunk
);
5350 snapshot_trace_chunk
= NULL
;
5352 if (original_ust_consumer_output
) {
5353 session
->ust_session
->consumer
= original_ust_consumer_output
;
5355 if (original_kernel_consumer_output
) {
5356 session
->kernel_session
->consumer
=
5357 original_kernel_consumer_output
;
5359 consumer_output_put(snapshot_ust_consumer_output
);
5360 consumer_output_put(snapshot_kernel_consumer_output
);
5365 * Command LTTNG_SNAPSHOT_RECORD from lib lttng ctl.
5367 * The wait parameter is ignored so this call always wait for the snapshot to
5368 * complete before returning.
5370 * Return LTTNG_OK on success or else a LTTNG_ERR code.
5372 int cmd_snapshot_record(struct ltt_session
*session
,
5373 const struct lttng_snapshot_output
*output
,
5374 int wait
__attribute__((unused
)))
5376 enum lttng_error_code cmd_ret
= LTTNG_OK
;
5378 unsigned int snapshot_success
= 0;
5380 struct snapshot_output
*tmp_output
= NULL
;
5382 LTTNG_ASSERT(session
);
5383 LTTNG_ASSERT(output
);
5385 DBG("Cmd snapshot record for session %s", session
->name
);
5387 /* Get the datetime for the snapshot output directory. */
5388 ret
= utils_get_current_time_str("%Y%m%d-%H%M%S", datetime
,
5391 cmd_ret
= LTTNG_ERR_INVALID
;
5396 * Permission denied to create an output if the session is not
5397 * set in no output mode.
5399 if (session
->output_traces
) {
5400 cmd_ret
= LTTNG_ERR_NOT_SNAPSHOT_SESSION
;
5404 /* The session needs to be started at least once. */
5405 if (!session
->has_been_started
) {
5406 cmd_ret
= LTTNG_ERR_START_SESSION_ONCE
;
5410 /* Use temporary output for the session. */
5411 if (*output
->ctrl_url
!= '\0') {
5412 tmp_output
= snapshot_output_alloc();
5414 cmd_ret
= LTTNG_ERR_NOMEM
;
5418 ret
= snapshot_output_init(session
, output
->max_size
,
5420 output
->ctrl_url
, output
->data_url
,
5424 if (ret
== -ENOMEM
) {
5425 cmd_ret
= LTTNG_ERR_NOMEM
;
5427 cmd_ret
= LTTNG_ERR_INVALID
;
5431 /* Use the global session count for the temporary snapshot. */
5432 tmp_output
->nb_snapshot
= session
->snapshot
.nb_snapshot
;
5434 /* Use the global datetime */
5435 memcpy(tmp_output
->datetime
, datetime
, sizeof(datetime
));
5436 cmd_ret
= snapshot_record(session
, tmp_output
);
5437 if (cmd_ret
!= LTTNG_OK
) {
5440 snapshot_success
= 1;
5442 struct snapshot_output
*sout
;
5443 struct lttng_ht_iter iter
;
5446 cds_lfht_for_each_entry(session
->snapshot
.output_ht
->ht
,
5447 &iter
.iter
, sout
, node
.node
) {
5448 struct snapshot_output output_copy
;
5451 * Make a local copy of the output and override output
5452 * parameters with those provided as part of the
5455 memcpy(&output_copy
, sout
, sizeof(output_copy
));
5457 if (output
->max_size
!= (uint64_t) -1ULL) {
5458 output_copy
.max_size
= output
->max_size
;
5461 output_copy
.nb_snapshot
= session
->snapshot
.nb_snapshot
;
5462 memcpy(output_copy
.datetime
, datetime
,
5465 /* Use temporary name. */
5466 if (*output
->name
!= '\0') {
5467 if (lttng_strncpy(output_copy
.name
,
5469 sizeof(output_copy
.name
))) {
5470 cmd_ret
= LTTNG_ERR_INVALID
;
5476 cmd_ret
= snapshot_record(session
, &output_copy
);
5477 if (cmd_ret
!= LTTNG_OK
) {
5481 snapshot_success
= 1;
5486 if (snapshot_success
) {
5487 session
->snapshot
.nb_snapshot
++;
5489 cmd_ret
= LTTNG_ERR_SNAPSHOT_FAIL
;
5494 snapshot_output_destroy(tmp_output
);
5500 * Command LTTNG_SET_SESSION_SHM_PATH processed by the client thread.
5502 int cmd_set_session_shm_path(struct ltt_session
*session
,
5503 const char *shm_path
)
5506 LTTNG_ASSERT(session
);
5509 * Can only set shm path before session is started.
5511 if (session
->has_been_started
) {
5512 return LTTNG_ERR_SESSION_STARTED
;
5515 strncpy(session
->shm_path
, shm_path
,
5516 sizeof(session
->shm_path
));
5517 session
->shm_path
[sizeof(session
->shm_path
) - 1] = '\0';
5523 * Command LTTNG_ROTATE_SESSION from the lttng-ctl library.
5525 * Ask the consumer to rotate the session output directory.
5526 * The session lock must be held.
5528 * Returns LTTNG_OK on success or else a negative LTTng error code.
5530 int cmd_rotate_session(struct ltt_session
*session
,
5531 struct lttng_rotate_session_return
*rotate_return
,
5532 bool quiet_rotation
,
5533 enum lttng_trace_chunk_command_type command
)
5536 uint64_t ongoing_rotation_chunk_id
;
5537 enum lttng_error_code cmd_ret
= LTTNG_OK
;
5538 struct lttng_trace_chunk
*chunk_being_archived
= NULL
;
5539 struct lttng_trace_chunk
*new_trace_chunk
= NULL
;
5540 enum lttng_trace_chunk_status chunk_status
;
5541 bool failed_to_rotate
= false;
5542 enum lttng_error_code rotation_fail_code
= LTTNG_OK
;
5544 LTTNG_ASSERT(session
);
5546 if (!session
->has_been_started
) {
5547 cmd_ret
= LTTNG_ERR_START_SESSION_ONCE
;
5552 * Explicit rotation is not supported for live sessions.
5553 * However, live sessions can perform a quiet rotation on
5555 * Rotation is not supported for snapshot traces (no output).
5557 if ((!quiet_rotation
&& session
->live_timer
) ||
5558 !session
->output_traces
) {
5559 cmd_ret
= LTTNG_ERR_ROTATION_NOT_AVAILABLE
;
5563 /* Unsupported feature in lttng-relayd before 2.11. */
5564 if (!quiet_rotation
&& session
->consumer
->type
== CONSUMER_DST_NET
&&
5565 (session
->consumer
->relay_major_version
== 2 &&
5566 session
->consumer
->relay_minor_version
< 11)) {
5567 cmd_ret
= LTTNG_ERR_ROTATION_NOT_AVAILABLE_RELAY
;
5571 /* Unsupported feature in lttng-modules before 2.8 (lack of sequence number). */
5572 if (session
->kernel_session
&& !kernel_supports_ring_buffer_packet_sequence_number()) {
5573 cmd_ret
= LTTNG_ERR_ROTATION_NOT_AVAILABLE_KERNEL
;
5577 if (session
->rotation_state
== LTTNG_ROTATION_STATE_ONGOING
) {
5578 DBG("Refusing to launch a rotation; a rotation is already in progress for session %s",
5580 cmd_ret
= LTTNG_ERR_ROTATION_PENDING
;
5585 * After a stop, we only allow one rotation to occur, the other ones are
5586 * useless until a new start.
5588 if (session
->rotated_after_last_stop
) {
5589 DBG("Session \"%s\" was already rotated after stop, refusing rotation",
5591 cmd_ret
= LTTNG_ERR_ROTATION_MULTIPLE_AFTER_STOP
;
5596 * After a stop followed by a clear, disallow following rotations a they would
5597 * generate empty chunks.
5599 if (session
->cleared_after_last_stop
) {
5600 DBG("Session \"%s\" was already cleared after stop, refusing rotation",
5602 cmd_ret
= LTTNG_ERR_ROTATION_AFTER_STOP_CLEAR
;
5606 if (session
->active
) {
5607 new_trace_chunk
= session_create_new_trace_chunk(session
, NULL
,
5609 if (!new_trace_chunk
) {
5610 cmd_ret
= LTTNG_ERR_CREATE_DIR_FAIL
;
5616 * The current trace chunk becomes the chunk being archived.
5618 * After this point, "chunk_being_archived" must absolutely
5619 * be closed on the consumer(s), otherwise it will never be
5620 * cleaned-up, which will result in a leak.
5622 ret
= session_set_trace_chunk(session
, new_trace_chunk
,
5623 &chunk_being_archived
);
5625 cmd_ret
= LTTNG_ERR_CREATE_TRACE_CHUNK_FAIL_CONSUMER
;
5629 if (session
->kernel_session
) {
5630 cmd_ret
= kernel_rotate_session(session
);
5631 if (cmd_ret
!= LTTNG_OK
) {
5632 failed_to_rotate
= true;
5633 rotation_fail_code
= cmd_ret
;
5636 if (session
->ust_session
) {
5637 cmd_ret
= ust_app_rotate_session(session
);
5638 if (cmd_ret
!= LTTNG_OK
) {
5639 failed_to_rotate
= true;
5640 rotation_fail_code
= cmd_ret
;
5644 if (!session
->active
) {
5645 session
->rotated_after_last_stop
= true;
5648 if (!chunk_being_archived
) {
5649 DBG("Rotating session \"%s\" from a \"NULL\" trace chunk to a new trace chunk, skipping completion check",
5651 if (failed_to_rotate
) {
5652 cmd_ret
= rotation_fail_code
;
5659 session
->rotation_state
= LTTNG_ROTATION_STATE_ONGOING
;
5660 chunk_status
= lttng_trace_chunk_get_id(chunk_being_archived
,
5661 &ongoing_rotation_chunk_id
);
5662 LTTNG_ASSERT(chunk_status
== LTTNG_TRACE_CHUNK_STATUS_OK
);
5664 ret
= session_close_trace_chunk(session
, chunk_being_archived
,
5665 command
, session
->last_chunk_path
);
5667 cmd_ret
= LTTNG_ERR_CLOSE_TRACE_CHUNK_FAIL_CONSUMER
;
5671 if (failed_to_rotate
) {
5672 cmd_ret
= rotation_fail_code
;
5676 session
->quiet_rotation
= quiet_rotation
;
5677 ret
= timer_session_rotation_pending_check_start(session
,
5678 DEFAULT_ROTATE_PENDING_TIMER
);
5680 cmd_ret
= LTTNG_ERR_UNK
;
5684 if (rotate_return
) {
5685 rotate_return
->rotation_id
= ongoing_rotation_chunk_id
;
5688 session
->chunk_being_archived
= chunk_being_archived
;
5689 chunk_being_archived
= NULL
;
5690 if (!quiet_rotation
) {
5691 ret
= notification_thread_command_session_rotation_ongoing(
5692 the_notification_thread_handle
, session
->name
,
5693 session
->uid
, session
->gid
,
5694 ongoing_rotation_chunk_id
);
5695 if (ret
!= LTTNG_OK
) {
5696 ERR("Failed to notify notification thread that a session rotation is ongoing for session %s",
5698 cmd_ret
= (lttng_error_code
) ret
;
5702 DBG("Cmd rotate session %s, archive_id %" PRIu64
" sent",
5703 session
->name
, ongoing_rotation_chunk_id
);
5705 lttng_trace_chunk_put(new_trace_chunk
);
5706 lttng_trace_chunk_put(chunk_being_archived
);
5707 ret
= (cmd_ret
== LTTNG_OK
) ? cmd_ret
: -((int) cmd_ret
);
5710 if (session_reset_rotation_state(session
,
5711 LTTNG_ROTATION_STATE_ERROR
)) {
5712 ERR("Failed to reset rotation state of session \"%s\"",
5719 * Command LTTNG_ROTATION_GET_INFO from the lttng-ctl library.
5721 * Check if the session has finished its rotation.
5723 * Return LTTNG_OK on success or else an LTTNG_ERR code.
5725 int cmd_rotate_get_info(struct ltt_session
*session
,
5726 struct lttng_rotation_get_info_return
*info_return
,
5727 uint64_t rotation_id
)
5729 enum lttng_error_code cmd_ret
= LTTNG_OK
;
5730 enum lttng_rotation_state rotation_state
;
5732 DBG("Cmd rotate_get_info session %s, rotation id %" PRIu64
, session
->name
,
5733 session
->most_recent_chunk_id
.value
);
5735 if (session
->chunk_being_archived
) {
5736 enum lttng_trace_chunk_status chunk_status
;
5739 chunk_status
= lttng_trace_chunk_get_id(
5740 session
->chunk_being_archived
,
5742 LTTNG_ASSERT(chunk_status
== LTTNG_TRACE_CHUNK_STATUS_OK
);
5744 rotation_state
= rotation_id
== chunk_id
?
5745 LTTNG_ROTATION_STATE_ONGOING
:
5746 LTTNG_ROTATION_STATE_EXPIRED
;
5748 if (session
->last_archived_chunk_id
.is_set
&&
5749 rotation_id
!= session
->last_archived_chunk_id
.value
) {
5750 rotation_state
= LTTNG_ROTATION_STATE_EXPIRED
;
5752 rotation_state
= session
->rotation_state
;
5756 switch (rotation_state
) {
5757 case LTTNG_ROTATION_STATE_NO_ROTATION
:
5758 DBG("Reporting that no rotation has occurred within the lifetime of session \"%s\"",
5761 case LTTNG_ROTATION_STATE_EXPIRED
:
5762 DBG("Reporting that the rotation state of rotation id %" PRIu64
" of session \"%s\" has expired",
5763 rotation_id
, session
->name
);
5765 case LTTNG_ROTATION_STATE_ONGOING
:
5766 DBG("Reporting that rotation id %" PRIu64
" of session \"%s\" is still pending",
5767 rotation_id
, session
->name
);
5769 case LTTNG_ROTATION_STATE_COMPLETED
:
5773 char *current_tracing_path_reply
;
5774 size_t current_tracing_path_reply_len
;
5776 DBG("Reporting that rotation id %" PRIu64
" of session \"%s\" is completed",
5777 rotation_id
, session
->name
);
5779 switch (session_get_consumer_destination_type(session
)) {
5780 case CONSUMER_DST_LOCAL
:
5781 current_tracing_path_reply
=
5782 info_return
->location
.local
.absolute_path
;
5783 current_tracing_path_reply_len
=
5784 sizeof(info_return
->location
.local
.absolute_path
);
5785 info_return
->location_type
=
5786 (int8_t) LTTNG_TRACE_ARCHIVE_LOCATION_TYPE_LOCAL
;
5787 fmt_ret
= asprintf(&chunk_path
,
5788 "%s/" DEFAULT_ARCHIVED_TRACE_CHUNKS_DIRECTORY
"/%s",
5789 session_get_base_path(session
),
5790 session
->last_archived_chunk_name
);
5791 if (fmt_ret
== -1) {
5792 PERROR("Failed to format the path of the last archived trace chunk");
5793 info_return
->status
= LTTNG_ROTATION_STATUS_ERROR
;
5794 cmd_ret
= LTTNG_ERR_UNK
;
5798 case CONSUMER_DST_NET
:
5800 uint16_t ctrl_port
, data_port
;
5802 current_tracing_path_reply
=
5803 info_return
->location
.relay
.relative_path
;
5804 current_tracing_path_reply_len
=
5805 sizeof(info_return
->location
.relay
.relative_path
);
5806 /* Currently the only supported relay protocol. */
5807 info_return
->location
.relay
.protocol
=
5808 (int8_t) LTTNG_TRACE_ARCHIVE_LOCATION_RELAY_PROTOCOL_TYPE_TCP
;
5810 fmt_ret
= lttng_strncpy(info_return
->location
.relay
.host
,
5811 session_get_net_consumer_hostname(session
),
5812 sizeof(info_return
->location
.relay
.host
));
5814 ERR("Failed to copy host name to rotate_get_info reply");
5815 info_return
->status
= LTTNG_ROTATION_STATUS_ERROR
;
5816 cmd_ret
= LTTNG_ERR_SET_URL
;
5820 session_get_net_consumer_ports(session
, &ctrl_port
, &data_port
);
5821 info_return
->location
.relay
.ports
.control
= ctrl_port
;
5822 info_return
->location
.relay
.ports
.data
= data_port
;
5823 info_return
->location_type
=
5824 (int8_t) LTTNG_TRACE_ARCHIVE_LOCATION_TYPE_RELAY
;
5825 chunk_path
= strdup(session
->last_chunk_path
);
5827 ERR("Failed to allocate the path of the last archived trace chunk");
5828 info_return
->status
= LTTNG_ROTATION_STATUS_ERROR
;
5829 cmd_ret
= LTTNG_ERR_UNK
;
5838 fmt_ret
= lttng_strncpy(current_tracing_path_reply
,
5839 chunk_path
, current_tracing_path_reply_len
);
5842 ERR("Failed to copy path of the last archived trace chunk to rotate_get_info reply");
5843 info_return
->status
= LTTNG_ROTATION_STATUS_ERROR
;
5844 cmd_ret
= LTTNG_ERR_UNK
;
5850 case LTTNG_ROTATION_STATE_ERROR
:
5851 DBG("Reporting that an error occurred during rotation %" PRIu64
" of session \"%s\"",
5852 rotation_id
, session
->name
);
5860 info_return
->status
= (int32_t) rotation_state
;
5865 * Command LTTNG_ROTATION_SET_SCHEDULE from the lttng-ctl library.
5867 * Configure the automatic rotation parameters.
5868 * 'activate' to true means activate the rotation schedule type with 'new_value'.
5869 * 'activate' to false means deactivate the rotation schedule and validate that
5870 * 'new_value' has the same value as the currently active value.
5872 * Return LTTNG_OK on success or else a positive LTTNG_ERR code.
5874 int cmd_rotation_set_schedule(struct ltt_session
*session
,
5875 bool activate
, enum lttng_rotation_schedule_type schedule_type
,
5877 struct notification_thread_handle
*notification_thread_handle
)
5880 uint64_t *parameter_value
;
5882 LTTNG_ASSERT(session
);
5884 DBG("Cmd rotate set schedule session %s", session
->name
);
5886 if (session
->live_timer
|| !session
->output_traces
) {
5887 DBG("Failing ROTATION_SET_SCHEDULE command as the rotation feature is not available for this session");
5888 ret
= LTTNG_ERR_ROTATION_NOT_AVAILABLE
;
5892 switch (schedule_type
) {
5893 case LTTNG_ROTATION_SCHEDULE_TYPE_SIZE_THRESHOLD
:
5894 parameter_value
= &session
->rotate_size
;
5896 case LTTNG_ROTATION_SCHEDULE_TYPE_PERIODIC
:
5897 parameter_value
= &session
->rotate_timer_period
;
5898 if (new_value
>= UINT_MAX
) {
5899 DBG("Failing ROTATION_SET_SCHEDULE command as the value requested for a periodic rotation schedule is invalid: %" PRIu64
" > %u (UINT_MAX)",
5900 new_value
, UINT_MAX
);
5901 ret
= LTTNG_ERR_INVALID
;
5906 WARN("Failing ROTATION_SET_SCHEDULE command on unknown schedule type");
5907 ret
= LTTNG_ERR_INVALID
;
5911 /* Improper use of the API. */
5912 if (new_value
== -1ULL) {
5913 WARN("Failing ROTATION_SET_SCHEDULE command as the value requested is -1");
5914 ret
= LTTNG_ERR_INVALID
;
5919 * As indicated in struct ltt_session's comments, a value of == 0 means
5920 * this schedule rotation type is not in use.
5922 * Reject the command if we were asked to activate a schedule that was
5925 if (activate
&& *parameter_value
!= 0) {
5926 DBG("Failing ROTATION_SET_SCHEDULE (activate) command as the schedule is already active");
5927 ret
= LTTNG_ERR_ROTATION_SCHEDULE_SET
;
5932 * Reject the command if we were asked to deactivate a schedule that was
5935 if (!activate
&& *parameter_value
== 0) {
5936 DBG("Failing ROTATION_SET_SCHEDULE (deactivate) command as the schedule is already inactive");
5937 ret
= LTTNG_ERR_ROTATION_SCHEDULE_NOT_SET
;
5942 * Reject the command if we were asked to deactivate a schedule that
5945 if (!activate
&& *parameter_value
!= new_value
) {
5946 DBG("Failing ROTATION_SET_SCHEDULE (deactivate) command as an inexistant schedule was provided");
5947 ret
= LTTNG_ERR_ROTATION_SCHEDULE_NOT_SET
;
5951 *parameter_value
= activate
? new_value
: 0;
5953 switch (schedule_type
) {
5954 case LTTNG_ROTATION_SCHEDULE_TYPE_PERIODIC
:
5955 if (activate
&& session
->active
) {
5957 * Only start the timer if the session is active,
5958 * otherwise it will be started when the session starts.
5960 ret
= timer_session_rotation_schedule_timer_start(
5961 session
, new_value
);
5963 ERR("Failed to enable session rotation timer in ROTATION_SET_SCHEDULE command");
5964 ret
= LTTNG_ERR_UNK
;
5968 ret
= timer_session_rotation_schedule_timer_stop(
5971 ERR("Failed to disable session rotation timer in ROTATION_SET_SCHEDULE command");
5972 ret
= LTTNG_ERR_UNK
;
5977 case LTTNG_ROTATION_SCHEDULE_TYPE_SIZE_THRESHOLD
:
5979 ret
= subscribe_session_consumed_size_rotation(session
,
5980 new_value
, notification_thread_handle
);
5982 ERR("Failed to enable consumed-size notification in ROTATION_SET_SCHEDULE command");
5983 ret
= LTTNG_ERR_UNK
;
5987 ret
= unsubscribe_session_consumed_size_rotation(session
,
5988 notification_thread_handle
);
5990 ERR("Failed to disable consumed-size notification in ROTATION_SET_SCHEDULE command");
5991 ret
= LTTNG_ERR_UNK
;
5998 /* Would have been caught before. */
6010 /* Wait for a given path to be removed before continuing. */
6011 static enum lttng_error_code
wait_on_path(void *path_data
)
6013 const char *shm_path
= (const char *) path_data
;
6015 DBG("Waiting for the shm path at %s to be removed before completing session destruction",
6021 ret
= stat(shm_path
, &st
);
6023 if (errno
!= ENOENT
) {
6024 PERROR("stat() returned an error while checking for the existence of the shm path");
6026 DBG("shm path no longer exists, completing the destruction of session");
6030 if (!S_ISDIR(st
.st_mode
)) {
6031 ERR("The type of shm path %s returned by stat() is not a directory; aborting the wait for shm path removal",
6036 usleep(SESSION_DESTROY_SHM_PATH_CHECK_DELAY_US
);
6042 * Returns a pointer to a handler to run on completion of a command.
6043 * Returns NULL if no handler has to be run for the last command executed.
6045 const struct cmd_completion_handler
*cmd_pop_completion_handler(void)
6047 struct cmd_completion_handler
*handler
= current_completion_handler
;
6049 current_completion_handler
= NULL
;
6054 * Init command subsystem.
6059 * Set network sequence index to 1 for streams to match a relayd
6060 * socket on the consumer side.
6062 pthread_mutex_lock(&relayd_net_seq_idx_lock
);
6063 relayd_net_seq_idx
= 1;
6064 pthread_mutex_unlock(&relayd_net_seq_idx_lock
);
6066 DBG("Command subsystem initialized");