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
9 #include "bin/lttng-sessiond/tracker.h"
10 #include "common/sessiond-comm/payload.h"
11 #include "lttng/lttng-error.h"
12 #include "lttng/tracker.h"
16 #include <urcu/list.h>
17 #include <urcu/uatomic.h>
21 #include <common/defaults.h>
22 #include <common/common.h>
23 #include <common/sessiond-comm/sessiond-comm.h>
24 #include <common/relayd/relayd.h>
25 #include <common/utils.h>
26 #include <common/compat/string.h>
27 #include <common/kernel-ctl/kernel-ctl.h>
28 #include <common/dynamic-buffer.h>
29 #include <common/buffer-view.h>
30 #include <common/sessiond-comm/payload.h>
31 #include <common/sessiond-comm/payload-view.h>
32 #include <common/trace-chunk.h>
33 #include <lttng/location-internal.h>
34 #include <lttng/trigger/trigger-internal.h>
35 #include <lttng/condition/condition.h>
36 #include <lttng/action/action.h>
37 #include <lttng/channel.h>
38 #include <lttng/channel-internal.h>
39 #include <lttng/rotate-internal.h>
40 #include <lttng/location-internal.h>
41 #include <lttng/session-internal.h>
42 #include <lttng/userspace-probe-internal.h>
43 #include <lttng/session-descriptor-internal.h>
44 #include <common/string-utils/string-utils.h>
49 #include "health-sessiond.h"
51 #include "kernel-consumer.h"
52 #include "lttng-sessiond.h"
54 #include "lttng-syscall.h"
56 #include "buffer-registry.h"
57 #include "notification-thread.h"
58 #include "notification-thread-commands.h"
60 #include "rotation-thread.h"
62 #include "agent-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_filter_bytecode
*filter
,
115 struct lttng_event_exclusion
*exclusion
,
119 * Create a session path used by list_lttng_sessions for the case that the
120 * session consumer is on the network.
122 static int build_network_session_path(char *dst
, size_t size
,
123 struct ltt_session
*session
)
125 int ret
, kdata_port
, udata_port
;
126 struct lttng_uri
*kuri
= NULL
, *uuri
= NULL
, *uri
= NULL
;
127 char tmp_uurl
[PATH_MAX
], tmp_urls
[PATH_MAX
];
132 memset(tmp_urls
, 0, sizeof(tmp_urls
));
133 memset(tmp_uurl
, 0, sizeof(tmp_uurl
));
135 kdata_port
= udata_port
= DEFAULT_NETWORK_DATA_PORT
;
137 if (session
->kernel_session
&& session
->kernel_session
->consumer
) {
138 kuri
= &session
->kernel_session
->consumer
->dst
.net
.control
;
139 kdata_port
= session
->kernel_session
->consumer
->dst
.net
.data
.port
;
142 if (session
->ust_session
&& session
->ust_session
->consumer
) {
143 uuri
= &session
->ust_session
->consumer
->dst
.net
.control
;
144 udata_port
= session
->ust_session
->consumer
->dst
.net
.data
.port
;
147 if (uuri
== NULL
&& kuri
== NULL
) {
148 uri
= &session
->consumer
->dst
.net
.control
;
149 kdata_port
= session
->consumer
->dst
.net
.data
.port
;
150 } else if (kuri
&& uuri
) {
151 ret
= uri_compare(kuri
, uuri
);
155 /* Build uuri URL string */
156 ret
= uri_to_str_url(uuri
, tmp_uurl
, sizeof(tmp_uurl
));
163 } else if (kuri
&& uuri
== NULL
) {
165 } else if (uuri
&& kuri
== NULL
) {
169 ret
= uri_to_str_url(uri
, tmp_urls
, sizeof(tmp_urls
));
175 * Do we have a UST url set. If yes, this means we have both kernel and UST
178 if (*tmp_uurl
!= '\0') {
179 ret
= snprintf(dst
, size
, "[K]: %s [data: %d] -- [U]: %s [data: %d]",
180 tmp_urls
, kdata_port
, tmp_uurl
, udata_port
);
183 if (kuri
|| (!kuri
&& !uuri
)) {
186 /* No kernel URI, use the UST port. */
189 ret
= snprintf(dst
, size
, "%s [data: %d]", tmp_urls
, dport
);
197 * Get run-time attributes if the session has been started (discarded events,
200 static int get_kernel_runtime_stats(struct ltt_session
*session
,
201 struct ltt_kernel_channel
*kchan
, uint64_t *discarded_events
,
202 uint64_t *lost_packets
)
206 if (!session
->has_been_started
) {
208 *discarded_events
= 0;
213 ret
= consumer_get_discarded_events(session
->id
, kchan
->key
,
214 session
->kernel_session
->consumer
,
220 ret
= consumer_get_lost_packets(session
->id
, kchan
->key
,
221 session
->kernel_session
->consumer
,
232 * Get run-time attributes if the session has been started (discarded events,
235 static int get_ust_runtime_stats(struct ltt_session
*session
,
236 struct ltt_ust_channel
*uchan
, uint64_t *discarded_events
,
237 uint64_t *lost_packets
)
240 struct ltt_ust_session
*usess
;
242 if (!discarded_events
|| !lost_packets
) {
247 usess
= session
->ust_session
;
248 assert(discarded_events
);
249 assert(lost_packets
);
251 if (!usess
|| !session
->has_been_started
) {
252 *discarded_events
= 0;
258 if (usess
->buffer_type
== LTTNG_BUFFER_PER_UID
) {
259 ret
= ust_app_uid_get_channel_runtime_stats(usess
->id
,
260 &usess
->buffer_reg_uid_list
,
261 usess
->consumer
, uchan
->id
,
262 uchan
->attr
.overwrite
,
265 } else if (usess
->buffer_type
== LTTNG_BUFFER_PER_PID
) {
266 ret
= ust_app_pid_get_channel_runtime_stats(usess
,
267 uchan
, usess
->consumer
,
268 uchan
->attr
.overwrite
,
274 *discarded_events
+= uchan
->per_pid_closed_app_discarded
;
275 *lost_packets
+= uchan
->per_pid_closed_app_lost
;
277 ERR("Unsupported buffer type");
288 * Fill lttng_channel array of all channels.
290 static ssize_t
list_lttng_channels(enum lttng_domain_type domain
,
291 struct ltt_session
*session
, struct lttng_channel
*channels
,
292 struct lttng_channel_extended
*chan_exts
)
295 struct ltt_kernel_channel
*kchan
;
297 DBG("Listing channels for session %s", session
->name
);
300 case LTTNG_DOMAIN_KERNEL
:
301 /* Kernel channels */
302 if (session
->kernel_session
!= NULL
) {
303 cds_list_for_each_entry(kchan
,
304 &session
->kernel_session
->channel_list
.head
, list
) {
305 uint64_t discarded_events
, lost_packets
;
306 struct lttng_channel_extended
*extended
;
308 extended
= (struct lttng_channel_extended
*)
309 kchan
->channel
->attr
.extended
.ptr
;
311 ret
= get_kernel_runtime_stats(session
, kchan
,
312 &discarded_events
, &lost_packets
);
316 /* Copy lttng_channel struct to array */
317 memcpy(&channels
[i
], kchan
->channel
, sizeof(struct lttng_channel
));
318 channels
[i
].enabled
= kchan
->enabled
;
319 chan_exts
[i
].discarded_events
=
321 chan_exts
[i
].lost_packets
= lost_packets
;
322 chan_exts
[i
].monitor_timer_interval
=
323 extended
->monitor_timer_interval
;
324 chan_exts
[i
].blocking_timeout
= 0;
329 case LTTNG_DOMAIN_UST
:
331 struct lttng_ht_iter iter
;
332 struct ltt_ust_channel
*uchan
;
335 cds_lfht_for_each_entry(session
->ust_session
->domain_global
.channels
->ht
,
336 &iter
.iter
, uchan
, node
.node
) {
337 uint64_t discarded_events
= 0, lost_packets
= 0;
339 if (lttng_strncpy(channels
[i
].name
, uchan
->name
,
340 LTTNG_SYMBOL_NAME_LEN
)) {
343 channels
[i
].attr
.overwrite
= uchan
->attr
.overwrite
;
344 channels
[i
].attr
.subbuf_size
= uchan
->attr
.subbuf_size
;
345 channels
[i
].attr
.num_subbuf
= uchan
->attr
.num_subbuf
;
346 channels
[i
].attr
.switch_timer_interval
=
347 uchan
->attr
.switch_timer_interval
;
348 channels
[i
].attr
.read_timer_interval
=
349 uchan
->attr
.read_timer_interval
;
350 channels
[i
].enabled
= uchan
->enabled
;
351 channels
[i
].attr
.tracefile_size
= uchan
->tracefile_size
;
352 channels
[i
].attr
.tracefile_count
= uchan
->tracefile_count
;
355 * Map enum lttng_ust_output to enum lttng_event_output.
357 switch (uchan
->attr
.output
) {
359 channels
[i
].attr
.output
= LTTNG_EVENT_MMAP
;
363 * LTTNG_UST_MMAP is the only supported UST
370 chan_exts
[i
].monitor_timer_interval
=
371 uchan
->monitor_timer_interval
;
372 chan_exts
[i
].blocking_timeout
=
373 uchan
->attr
.u
.s
.blocking_timeout
;
375 ret
= get_ust_runtime_stats(session
, uchan
,
376 &discarded_events
, &lost_packets
);
380 chan_exts
[i
].discarded_events
= discarded_events
;
381 chan_exts
[i
].lost_packets
= lost_packets
;
393 return -LTTNG_ERR_FATAL
;
399 static int increment_extended_len(const char *filter_expression
,
400 struct lttng_event_exclusion
*exclusion
,
401 const struct lttng_userspace_probe_location
*probe_location
,
402 size_t *extended_len
)
406 *extended_len
+= sizeof(struct lttcomm_event_extended_header
);
408 if (filter_expression
) {
409 *extended_len
+= strlen(filter_expression
) + 1;
413 *extended_len
+= exclusion
->count
* LTTNG_SYMBOL_NAME_LEN
;
416 if (probe_location
) {
417 ret
= lttng_userspace_probe_location_serialize(probe_location
,
422 *extended_len
+= ret
;
429 static int append_extended_info(const char *filter_expression
,
430 struct lttng_event_exclusion
*exclusion
,
431 struct lttng_userspace_probe_location
*probe_location
,
435 size_t filter_len
= 0;
436 size_t nb_exclusions
= 0;
437 size_t userspace_probe_location_len
= 0;
438 struct lttng_dynamic_buffer location_buffer
;
439 struct lttcomm_event_extended_header extended_header
;
441 if (filter_expression
) {
442 filter_len
= strlen(filter_expression
) + 1;
446 nb_exclusions
= exclusion
->count
;
449 if (probe_location
) {
450 lttng_dynamic_buffer_init(&location_buffer
);
451 ret
= lttng_userspace_probe_location_serialize(probe_location
,
452 &location_buffer
, NULL
);
457 userspace_probe_location_len
= location_buffer
.size
;
460 /* Set header fields */
461 extended_header
.filter_len
= filter_len
;
462 extended_header
.nb_exclusions
= nb_exclusions
;
463 extended_header
.userspace_probe_location_len
= userspace_probe_location_len
;
466 memcpy(*extended_at
, &extended_header
, sizeof(extended_header
));
467 *extended_at
+= sizeof(extended_header
);
469 /* Copy filter string */
470 if (filter_expression
) {
471 memcpy(*extended_at
, filter_expression
, filter_len
);
472 *extended_at
+= filter_len
;
475 /* Copy exclusion names */
477 size_t len
= nb_exclusions
* LTTNG_SYMBOL_NAME_LEN
;
479 memcpy(*extended_at
, &exclusion
->names
, len
);
483 if (probe_location
) {
484 memcpy(*extended_at
, location_buffer
.data
, location_buffer
.size
);
485 *extended_at
+= location_buffer
.size
;
486 lttng_dynamic_buffer_reset(&location_buffer
);
494 * Create a list of agent domain events.
496 * Return number of events in list on success or else a negative value.
498 static int list_lttng_agent_events(struct agent
*agt
,
499 struct lttng_event
**events
, size_t *total_size
)
502 unsigned int nb_event
= 0;
503 struct agent_event
*event
;
504 struct lttng_event
*tmp_events
= NULL
;
505 struct lttng_ht_iter iter
;
506 size_t extended_len
= 0;
512 DBG3("Listing agent events");
515 nb_event
= lttng_ht_get_count(agt
->events
);
523 /* Compute required extended infos size */
524 extended_len
= nb_event
* sizeof(struct lttcomm_event_extended_header
);
527 * This is only valid because the commands which add events are
528 * processed in the same thread as the listing.
531 cds_lfht_for_each_entry(agt
->events
->ht
, &iter
.iter
, event
, node
.node
) {
532 ret
= increment_extended_len(event
->filter_expression
, NULL
, NULL
,
535 DBG("Error computing the length of extended info message");
536 ret
= -LTTNG_ERR_FATAL
;
542 *total_size
= nb_event
* sizeof(*tmp_events
) + extended_len
;
543 tmp_events
= zmalloc(*total_size
);
545 PERROR("zmalloc agent events session");
546 ret
= -LTTNG_ERR_FATAL
;
550 extended_at
= ((uint8_t *) tmp_events
) +
551 nb_event
* sizeof(struct lttng_event
);
554 cds_lfht_for_each_entry(agt
->events
->ht
, &iter
.iter
, event
, node
.node
) {
555 strncpy(tmp_events
[i
].name
, event
->name
, sizeof(tmp_events
[i
].name
));
556 tmp_events
[i
].name
[sizeof(tmp_events
[i
].name
) - 1] = '\0';
557 tmp_events
[i
].enabled
= event
->enabled
;
558 tmp_events
[i
].loglevel
= event
->loglevel_value
;
559 tmp_events
[i
].loglevel_type
= event
->loglevel_type
;
562 /* Append extended info */
563 ret
= append_extended_info(event
->filter_expression
, NULL
, NULL
,
566 DBG("Error appending extended info message");
567 ret
= -LTTNG_ERR_FATAL
;
572 *events
= tmp_events
;
574 assert(nb_event
== i
);
585 * Create a list of ust global domain events.
587 static int list_lttng_ust_global_events(char *channel_name
,
588 struct ltt_ust_domain_global
*ust_global
,
589 struct lttng_event
**events
, size_t *total_size
)
592 unsigned int nb_event
= 0;
593 struct lttng_ht_iter iter
;
594 struct lttng_ht_node_str
*node
;
595 struct ltt_ust_channel
*uchan
;
596 struct ltt_ust_event
*uevent
;
597 struct lttng_event
*tmp
;
598 size_t extended_len
= 0;
601 DBG("Listing UST global events for channel %s", channel_name
);
605 lttng_ht_lookup(ust_global
->channels
, (void *)channel_name
, &iter
);
606 node
= lttng_ht_iter_get_node_str(&iter
);
608 ret
= LTTNG_ERR_UST_CHAN_NOT_FOUND
;
612 uchan
= caa_container_of(&node
->node
, struct ltt_ust_channel
, node
.node
);
614 nb_event
= lttng_ht_get_count(uchan
->events
);
621 DBG3("Listing UST global %d events", nb_event
);
623 /* Compute required extended infos size */
624 cds_lfht_for_each_entry(uchan
->events
->ht
, &iter
.iter
, uevent
, node
.node
) {
625 if (uevent
->internal
) {
630 ret
= increment_extended_len(uevent
->filter_expression
,
631 uevent
->exclusion
, NULL
, &extended_len
);
633 DBG("Error computing the length of extended info message");
634 ret
= -LTTNG_ERR_FATAL
;
639 /* All events are internal, skip. */
645 *total_size
= nb_event
* sizeof(struct lttng_event
) + extended_len
;
646 tmp
= zmalloc(*total_size
);
648 ret
= -LTTNG_ERR_FATAL
;
652 extended_at
= ((uint8_t *) tmp
) + nb_event
* sizeof(struct lttng_event
);
654 cds_lfht_for_each_entry(uchan
->events
->ht
, &iter
.iter
, uevent
, node
.node
) {
655 if (uevent
->internal
) {
656 /* This event should remain hidden from clients */
659 strncpy(tmp
[i
].name
, uevent
->attr
.name
, LTTNG_SYMBOL_NAME_LEN
);
660 tmp
[i
].name
[LTTNG_SYMBOL_NAME_LEN
- 1] = '\0';
661 tmp
[i
].enabled
= uevent
->enabled
;
663 switch (uevent
->attr
.instrumentation
) {
664 case LTTNG_UST_TRACEPOINT
:
665 tmp
[i
].type
= LTTNG_EVENT_TRACEPOINT
;
667 case LTTNG_UST_PROBE
:
668 tmp
[i
].type
= LTTNG_EVENT_PROBE
;
670 case LTTNG_UST_FUNCTION
:
671 tmp
[i
].type
= LTTNG_EVENT_FUNCTION
;
675 tmp
[i
].loglevel
= uevent
->attr
.loglevel
;
676 switch (uevent
->attr
.loglevel_type
) {
677 case LTTNG_UST_LOGLEVEL_ALL
:
678 tmp
[i
].loglevel_type
= LTTNG_EVENT_LOGLEVEL_ALL
;
680 case LTTNG_UST_LOGLEVEL_RANGE
:
681 tmp
[i
].loglevel_type
= LTTNG_EVENT_LOGLEVEL_RANGE
;
683 case LTTNG_UST_LOGLEVEL_SINGLE
:
684 tmp
[i
].loglevel_type
= LTTNG_EVENT_LOGLEVEL_SINGLE
;
687 if (uevent
->filter
) {
690 if (uevent
->exclusion
) {
691 tmp
[i
].exclusion
= 1;
695 /* Append extended info */
696 ret
= append_extended_info(uevent
->filter_expression
,
697 uevent
->exclusion
, NULL
, &extended_at
);
699 DBG("Error appending extended info message");
700 ret
= -LTTNG_ERR_FATAL
;
713 * Fill lttng_event array of all kernel events in the channel.
715 static int list_lttng_kernel_events(char *channel_name
,
716 struct ltt_kernel_session
*kernel_session
,
717 struct lttng_event
**events
, size_t *total_size
)
720 unsigned int nb_event
;
721 struct ltt_kernel_event
*event
;
722 struct ltt_kernel_channel
*kchan
;
723 size_t extended_len
= 0;
726 kchan
= trace_kernel_get_channel_by_name(channel_name
, kernel_session
);
728 ret
= LTTNG_ERR_KERN_CHAN_NOT_FOUND
;
732 nb_event
= kchan
->event_count
;
734 DBG("Listing events for channel %s", kchan
->channel
->name
);
742 /* Compute required extended infos size */
743 cds_list_for_each_entry(event
, &kchan
->events_list
.head
, list
) {
744 ret
= increment_extended_len(event
->filter_expression
, NULL
,
745 event
->userspace_probe_location
,
748 DBG("Error computing the length of extended info message");
749 ret
= -LTTNG_ERR_FATAL
;
754 *total_size
= nb_event
* sizeof(struct lttng_event
) + extended_len
;
755 *events
= zmalloc(*total_size
);
756 if (*events
== NULL
) {
757 ret
= -LTTNG_ERR_FATAL
;
761 extended_at
= ((void *) *events
) +
762 nb_event
* sizeof(struct lttng_event
);
764 /* Kernel channels */
765 cds_list_for_each_entry(event
, &kchan
->events_list
.head
, list
) {
766 strncpy((*events
)[i
].name
, event
->event
->name
, LTTNG_SYMBOL_NAME_LEN
);
767 (*events
)[i
].name
[LTTNG_SYMBOL_NAME_LEN
- 1] = '\0';
768 (*events
)[i
].enabled
= event
->enabled
;
769 (*events
)[i
].filter
=
770 (unsigned char) !!event
->filter_expression
;
772 switch (event
->event
->instrumentation
) {
773 case LTTNG_KERNEL_TRACEPOINT
:
774 (*events
)[i
].type
= LTTNG_EVENT_TRACEPOINT
;
776 case LTTNG_KERNEL_KRETPROBE
:
777 (*events
)[i
].type
= LTTNG_EVENT_FUNCTION
;
778 memcpy(&(*events
)[i
].attr
.probe
, &event
->event
->u
.kprobe
,
779 sizeof(struct lttng_kernel_kprobe
));
781 case LTTNG_KERNEL_KPROBE
:
782 (*events
)[i
].type
= LTTNG_EVENT_PROBE
;
783 memcpy(&(*events
)[i
].attr
.probe
, &event
->event
->u
.kprobe
,
784 sizeof(struct lttng_kernel_kprobe
));
786 case LTTNG_KERNEL_UPROBE
:
787 (*events
)[i
].type
= LTTNG_EVENT_USERSPACE_PROBE
;
789 case LTTNG_KERNEL_FUNCTION
:
790 (*events
)[i
].type
= LTTNG_EVENT_FUNCTION
;
791 memcpy(&((*events
)[i
].attr
.ftrace
), &event
->event
->u
.ftrace
,
792 sizeof(struct lttng_kernel_function
));
794 case LTTNG_KERNEL_NOOP
:
795 (*events
)[i
].type
= LTTNG_EVENT_NOOP
;
797 case LTTNG_KERNEL_SYSCALL
:
798 (*events
)[i
].type
= LTTNG_EVENT_SYSCALL
;
800 case LTTNG_KERNEL_ALL
:
808 /* Append extended info */
809 ret
= append_extended_info(event
->filter_expression
, NULL
,
810 event
->userspace_probe_location
, &extended_at
);
812 DBG("Error appending extended info message");
813 ret
= -LTTNG_ERR_FATAL
;
822 /* Negate the error code to differentiate the size from an error */
827 * Add URI so the consumer output object. Set the correct path depending on the
828 * domain adding the default trace directory.
830 static enum lttng_error_code
add_uri_to_consumer(
831 const struct ltt_session
*session
,
832 struct consumer_output
*consumer
,
833 struct lttng_uri
*uri
, enum lttng_domain_type domain
)
836 enum lttng_error_code ret_code
= LTTNG_OK
;
840 if (consumer
== NULL
) {
841 DBG("No consumer detected. Don't add URI. Stopping.");
842 ret_code
= LTTNG_ERR_NO_CONSUMER
;
847 case LTTNG_DOMAIN_KERNEL
:
848 ret
= lttng_strncpy(consumer
->domain_subdir
,
849 DEFAULT_KERNEL_TRACE_DIR
,
850 sizeof(consumer
->domain_subdir
));
852 case LTTNG_DOMAIN_UST
:
853 ret
= lttng_strncpy(consumer
->domain_subdir
,
854 DEFAULT_UST_TRACE_DIR
,
855 sizeof(consumer
->domain_subdir
));
859 * This case is possible is we try to add the URI to the global
860 * tracing session consumer object which in this case there is
863 memset(consumer
->domain_subdir
, 0,
864 sizeof(consumer
->domain_subdir
));
868 ERR("Failed to initialize consumer output domain subdirectory");
869 ret_code
= LTTNG_ERR_FATAL
;
873 switch (uri
->dtype
) {
876 DBG2("Setting network URI to consumer");
878 if (consumer
->type
== CONSUMER_DST_NET
) {
879 if ((uri
->stype
== LTTNG_STREAM_CONTROL
&&
880 consumer
->dst
.net
.control_isset
) ||
881 (uri
->stype
== LTTNG_STREAM_DATA
&&
882 consumer
->dst
.net
.data_isset
)) {
883 ret_code
= LTTNG_ERR_URL_EXIST
;
887 memset(&consumer
->dst
, 0, sizeof(consumer
->dst
));
890 /* Set URI into consumer output object */
891 ret
= consumer_set_network_uri(session
, consumer
, uri
);
895 } else if (ret
== 1) {
897 * URI was the same in the consumer so we do not append the subdir
898 * again so to not duplicate output dir.
905 if (*uri
->dst
.path
!= '/' || strstr(uri
->dst
.path
, "../")) {
906 ret_code
= LTTNG_ERR_INVALID
;
909 DBG2("Setting trace directory path from URI to %s",
911 memset(&consumer
->dst
, 0, sizeof(consumer
->dst
));
913 ret
= lttng_strncpy(consumer
->dst
.session_root_path
,
915 sizeof(consumer
->dst
.session_root_path
));
917 ret_code
= LTTNG_ERR_FATAL
;
920 consumer
->type
= CONSUMER_DST_LOCAL
;
930 * Init tracing by creating trace directory and sending fds kernel consumer.
932 static int init_kernel_tracing(struct ltt_kernel_session
*session
)
935 struct lttng_ht_iter iter
;
936 struct consumer_socket
*socket
;
942 if (session
->consumer_fds_sent
== 0 && session
->consumer
!= NULL
) {
943 cds_lfht_for_each_entry(session
->consumer
->socks
->ht
, &iter
.iter
,
945 pthread_mutex_lock(socket
->lock
);
946 ret
= kernel_consumer_send_session(socket
, session
);
947 pthread_mutex_unlock(socket
->lock
);
949 ret
= LTTNG_ERR_KERN_CONSUMER_FAIL
;
961 * Create a socket to the relayd using the URI.
963 * On success, the relayd_sock pointer is set to the created socket.
964 * Else, it remains untouched and an LTTng error code is returned.
966 static enum lttng_error_code
create_connect_relayd(struct lttng_uri
*uri
,
967 struct lttcomm_relayd_sock
**relayd_sock
,
968 struct consumer_output
*consumer
)
971 enum lttng_error_code status
= LTTNG_OK
;
972 struct lttcomm_relayd_sock
*rsock
;
974 rsock
= lttcomm_alloc_relayd_sock(uri
, RELAYD_VERSION_COMM_MAJOR
,
975 RELAYD_VERSION_COMM_MINOR
);
977 status
= LTTNG_ERR_FATAL
;
982 * Connect to relayd so we can proceed with a session creation. This call
983 * can possibly block for an arbitrary amount of time to set the health
984 * state to be in poll execution.
987 ret
= relayd_connect(rsock
);
990 ERR("Unable to reach lttng-relayd");
991 status
= LTTNG_ERR_RELAYD_CONNECT_FAIL
;
995 /* Create socket for control stream. */
996 if (uri
->stype
== LTTNG_STREAM_CONTROL
) {
997 uint64_t result_flags
;
999 DBG3("Creating relayd stream socket from URI");
1001 /* Check relayd version */
1002 ret
= relayd_version_check(rsock
);
1003 if (ret
== LTTNG_ERR_RELAYD_VERSION_FAIL
) {
1004 status
= LTTNG_ERR_RELAYD_VERSION_FAIL
;
1006 } else if (ret
< 0) {
1007 ERR("Unable to reach lttng-relayd");
1008 status
= LTTNG_ERR_RELAYD_CONNECT_FAIL
;
1011 consumer
->relay_major_version
= rsock
->major
;
1012 consumer
->relay_minor_version
= rsock
->minor
;
1013 ret
= relayd_get_configuration(rsock
, 0,
1016 ERR("Unable to get relayd configuration");
1017 status
= LTTNG_ERR_RELAYD_CONNECT_FAIL
;
1020 if (result_flags
& LTTCOMM_RELAYD_CONFIGURATION_FLAG_CLEAR_ALLOWED
) {
1021 consumer
->relay_allows_clear
= true;
1023 } else if (uri
->stype
== LTTNG_STREAM_DATA
) {
1024 DBG3("Creating relayd data socket from URI");
1026 /* Command is not valid */
1027 ERR("Relayd invalid stream type: %d", uri
->stype
);
1028 status
= LTTNG_ERR_INVALID
;
1032 *relayd_sock
= rsock
;
1037 /* The returned value is not useful since we are on an error path. */
1038 (void) relayd_close(rsock
);
1046 * Connect to the relayd using URI and send the socket to the right consumer.
1048 * The consumer socket lock must be held by the caller.
1050 * Returns LTTNG_OK on success or an LTTng error code on failure.
1052 static enum lttng_error_code
send_consumer_relayd_socket(
1053 unsigned int session_id
,
1054 struct lttng_uri
*relayd_uri
,
1055 struct consumer_output
*consumer
,
1056 struct consumer_socket
*consumer_sock
,
1057 const char *session_name
, const char *hostname
,
1058 const char *base_path
, int session_live_timer
,
1059 const uint64_t *current_chunk_id
,
1060 time_t session_creation_time
,
1061 bool session_name_contains_creation_time
)
1064 struct lttcomm_relayd_sock
*rsock
= NULL
;
1065 enum lttng_error_code status
;
1067 /* Connect to relayd and make version check if uri is the control. */
1068 status
= create_connect_relayd(relayd_uri
, &rsock
, consumer
);
1069 if (status
!= LTTNG_OK
) {
1070 goto relayd_comm_error
;
1074 /* Set the network sequence index if not set. */
1075 if (consumer
->net_seq_index
== (uint64_t) -1ULL) {
1076 pthread_mutex_lock(&relayd_net_seq_idx_lock
);
1078 * Increment net_seq_idx because we are about to transfer the
1079 * new relayd socket to the consumer.
1080 * Assign unique key so the consumer can match streams.
1082 consumer
->net_seq_index
= ++relayd_net_seq_idx
;
1083 pthread_mutex_unlock(&relayd_net_seq_idx_lock
);
1086 /* Send relayd socket to consumer. */
1087 ret
= consumer_send_relayd_socket(consumer_sock
, rsock
, consumer
,
1088 relayd_uri
->stype
, session_id
,
1089 session_name
, hostname
, base_path
,
1090 session_live_timer
, current_chunk_id
,
1091 session_creation_time
, session_name_contains_creation_time
);
1093 status
= LTTNG_ERR_ENABLE_CONSUMER_FAIL
;
1097 /* Flag that the corresponding socket was sent. */
1098 if (relayd_uri
->stype
== LTTNG_STREAM_CONTROL
) {
1099 consumer_sock
->control_sock_sent
= 1;
1100 } else if (relayd_uri
->stype
== LTTNG_STREAM_DATA
) {
1101 consumer_sock
->data_sock_sent
= 1;
1105 * Close socket which was dup on the consumer side. The session daemon does
1106 * NOT keep track of the relayd socket(s) once transfer to the consumer.
1110 if (status
!= LTTNG_OK
) {
1112 * The consumer output for this session should not be used anymore
1113 * since the relayd connection failed thus making any tracing or/and
1114 * streaming not usable.
1116 consumer
->enabled
= 0;
1118 (void) relayd_close(rsock
);
1126 * Send both relayd sockets to a specific consumer and domain. This is a
1127 * helper function to facilitate sending the information to the consumer for a
1130 * The consumer socket lock must be held by the caller.
1132 * Returns LTTNG_OK, or an LTTng error code on failure.
1134 static enum lttng_error_code
send_consumer_relayd_sockets(
1135 enum lttng_domain_type domain
,
1136 unsigned int session_id
, struct consumer_output
*consumer
,
1137 struct consumer_socket
*sock
, const char *session_name
,
1138 const char *hostname
, const char *base_path
, int session_live_timer
,
1139 const uint64_t *current_chunk_id
, time_t session_creation_time
,
1140 bool session_name_contains_creation_time
)
1142 enum lttng_error_code status
= LTTNG_OK
;
1147 /* Sending control relayd socket. */
1148 if (!sock
->control_sock_sent
) {
1149 status
= send_consumer_relayd_socket(session_id
,
1150 &consumer
->dst
.net
.control
, consumer
, sock
,
1151 session_name
, hostname
, base_path
, session_live_timer
,
1152 current_chunk_id
, session_creation_time
,
1153 session_name_contains_creation_time
);
1154 if (status
!= LTTNG_OK
) {
1159 /* Sending data relayd socket. */
1160 if (!sock
->data_sock_sent
) {
1161 status
= send_consumer_relayd_socket(session_id
,
1162 &consumer
->dst
.net
.data
, consumer
, sock
,
1163 session_name
, hostname
, base_path
, session_live_timer
,
1164 current_chunk_id
, session_creation_time
,
1165 session_name_contains_creation_time
);
1166 if (status
!= LTTNG_OK
) {
1176 * Setup relayd connections for a tracing session. First creates the socket to
1177 * the relayd and send them to the right domain consumer. Consumer type MUST be
1180 int cmd_setup_relayd(struct ltt_session
*session
)
1183 struct ltt_ust_session
*usess
;
1184 struct ltt_kernel_session
*ksess
;
1185 struct consumer_socket
*socket
;
1186 struct lttng_ht_iter iter
;
1187 LTTNG_OPTIONAL(uint64_t) current_chunk_id
= {};
1191 usess
= session
->ust_session
;
1192 ksess
= session
->kernel_session
;
1194 DBG("Setting relayd for session %s", session
->name
);
1197 if (session
->current_trace_chunk
) {
1198 enum lttng_trace_chunk_status status
= lttng_trace_chunk_get_id(
1199 session
->current_trace_chunk
, ¤t_chunk_id
.value
);
1201 if (status
== LTTNG_TRACE_CHUNK_STATUS_OK
) {
1202 current_chunk_id
.is_set
= true;
1204 ERR("Failed to get current trace chunk id");
1205 ret
= LTTNG_ERR_UNK
;
1210 if (usess
&& usess
->consumer
&& usess
->consumer
->type
== CONSUMER_DST_NET
1211 && usess
->consumer
->enabled
) {
1212 /* For each consumer socket, send relayd sockets */
1213 cds_lfht_for_each_entry(usess
->consumer
->socks
->ht
, &iter
.iter
,
1214 socket
, node
.node
) {
1215 pthread_mutex_lock(socket
->lock
);
1216 ret
= send_consumer_relayd_sockets(LTTNG_DOMAIN_UST
, session
->id
,
1217 usess
->consumer
, socket
,
1218 session
->name
, session
->hostname
,
1220 session
->live_timer
,
1221 current_chunk_id
.is_set
? ¤t_chunk_id
.value
: NULL
,
1222 session
->creation_time
,
1223 session
->name_contains_creation_time
);
1224 pthread_mutex_unlock(socket
->lock
);
1225 if (ret
!= LTTNG_OK
) {
1228 /* Session is now ready for network streaming. */
1229 session
->net_handle
= 1;
1231 session
->consumer
->relay_major_version
=
1232 usess
->consumer
->relay_major_version
;
1233 session
->consumer
->relay_minor_version
=
1234 usess
->consumer
->relay_minor_version
;
1235 session
->consumer
->relay_allows_clear
=
1236 usess
->consumer
->relay_allows_clear
;
1239 if (ksess
&& ksess
->consumer
&& ksess
->consumer
->type
== CONSUMER_DST_NET
1240 && ksess
->consumer
->enabled
) {
1241 cds_lfht_for_each_entry(ksess
->consumer
->socks
->ht
, &iter
.iter
,
1242 socket
, node
.node
) {
1243 pthread_mutex_lock(socket
->lock
);
1244 ret
= send_consumer_relayd_sockets(LTTNG_DOMAIN_KERNEL
, session
->id
,
1245 ksess
->consumer
, socket
,
1246 session
->name
, session
->hostname
,
1248 session
->live_timer
,
1249 current_chunk_id
.is_set
? ¤t_chunk_id
.value
: NULL
,
1250 session
->creation_time
,
1251 session
->name_contains_creation_time
);
1252 pthread_mutex_unlock(socket
->lock
);
1253 if (ret
!= LTTNG_OK
) {
1256 /* Session is now ready for network streaming. */
1257 session
->net_handle
= 1;
1259 session
->consumer
->relay_major_version
=
1260 ksess
->consumer
->relay_major_version
;
1261 session
->consumer
->relay_minor_version
=
1262 ksess
->consumer
->relay_minor_version
;
1263 session
->consumer
->relay_allows_clear
=
1264 ksess
->consumer
->relay_allows_clear
;
1273 * Start a kernel session by opening all necessary streams.
1275 int start_kernel_session(struct ltt_kernel_session
*ksess
)
1278 struct ltt_kernel_channel
*kchan
;
1280 /* Open kernel metadata */
1281 if (ksess
->metadata
== NULL
&& ksess
->output_traces
) {
1282 ret
= kernel_open_metadata(ksess
);
1284 ret
= LTTNG_ERR_KERN_META_FAIL
;
1289 /* Open kernel metadata stream */
1290 if (ksess
->metadata
&& ksess
->metadata_stream_fd
< 0) {
1291 ret
= kernel_open_metadata_stream(ksess
);
1293 ERR("Kernel create metadata stream failed");
1294 ret
= LTTNG_ERR_KERN_STREAM_FAIL
;
1299 /* For each channel */
1300 cds_list_for_each_entry(kchan
, &ksess
->channel_list
.head
, list
) {
1301 if (kchan
->stream_count
== 0) {
1302 ret
= kernel_open_channel_stream(kchan
);
1304 ret
= LTTNG_ERR_KERN_STREAM_FAIL
;
1307 /* Update the stream global counter */
1308 ksess
->stream_count_global
+= ret
;
1312 /* Setup kernel consumer socket and send fds to it */
1313 ret
= init_kernel_tracing(ksess
);
1315 ret
= LTTNG_ERR_KERN_START_FAIL
;
1319 /* This start the kernel tracing */
1320 ret
= kernel_start_session(ksess
);
1322 ret
= LTTNG_ERR_KERN_START_FAIL
;
1326 /* Quiescent wait after starting trace */
1327 kernel_wait_quiescent();
1337 int stop_kernel_session(struct ltt_kernel_session
*ksess
)
1339 struct ltt_kernel_channel
*kchan
;
1340 bool error_occurred
= false;
1343 if (!ksess
|| !ksess
->active
) {
1346 DBG("Stopping kernel tracing");
1348 ret
= kernel_stop_session(ksess
);
1350 ret
= LTTNG_ERR_KERN_STOP_FAIL
;
1354 kernel_wait_quiescent();
1356 /* Flush metadata after stopping (if exists) */
1357 if (ksess
->metadata_stream_fd
>= 0) {
1358 ret
= kernel_metadata_flush_buffer(ksess
->metadata_stream_fd
);
1360 ERR("Kernel metadata flush failed");
1361 error_occurred
= true;
1365 /* Flush all buffers after stopping */
1366 cds_list_for_each_entry(kchan
, &ksess
->channel_list
.head
, list
) {
1367 ret
= kernel_flush_buffer(kchan
);
1369 ERR("Kernel flush buffer error");
1370 error_occurred
= true;
1375 if (error_occurred
) {
1376 ret
= LTTNG_ERR_UNK
;
1385 * Command LTTNG_DISABLE_CHANNEL processed by the client thread.
1387 int cmd_disable_channel(struct ltt_session
*session
,
1388 enum lttng_domain_type domain
, char *channel_name
)
1391 struct ltt_ust_session
*usess
;
1393 usess
= session
->ust_session
;
1398 case LTTNG_DOMAIN_KERNEL
:
1400 ret
= channel_kernel_disable(session
->kernel_session
,
1402 if (ret
!= LTTNG_OK
) {
1406 kernel_wait_quiescent();
1409 case LTTNG_DOMAIN_UST
:
1411 struct ltt_ust_channel
*uchan
;
1412 struct lttng_ht
*chan_ht
;
1414 chan_ht
= usess
->domain_global
.channels
;
1416 uchan
= trace_ust_find_channel_by_name(chan_ht
, channel_name
);
1417 if (uchan
== NULL
) {
1418 ret
= LTTNG_ERR_UST_CHAN_NOT_FOUND
;
1422 ret
= channel_ust_disable(usess
, uchan
);
1423 if (ret
!= LTTNG_OK
) {
1429 ret
= LTTNG_ERR_UNKNOWN_DOMAIN
;
1441 * Command LTTNG_ENABLE_CHANNEL processed by the client thread.
1443 * The wpipe arguments is used as a notifier for the kernel thread.
1445 int cmd_enable_channel(struct ltt_session
*session
,
1446 const struct lttng_domain
*domain
, const struct lttng_channel
*_attr
, int wpipe
)
1449 struct ltt_ust_session
*usess
= session
->ust_session
;
1450 struct lttng_ht
*chan_ht
;
1452 struct lttng_channel attr
;
1459 len
= lttng_strnlen(attr
.name
, sizeof(attr
.name
));
1461 /* Validate channel name */
1462 if (attr
.name
[0] == '.' ||
1463 memchr(attr
.name
, '/', len
) != NULL
) {
1464 ret
= LTTNG_ERR_INVALID_CHANNEL_NAME
;
1468 DBG("Enabling channel %s for session %s", attr
.name
, session
->name
);
1473 * Don't try to enable a channel if the session has been started at
1474 * some point in time before. The tracer does not allow it.
1476 if (session
->has_been_started
) {
1477 ret
= LTTNG_ERR_TRACE_ALREADY_STARTED
;
1482 * If the session is a live session, remove the switch timer, the
1483 * live timer does the same thing but sends also synchronisation
1484 * beacons for inactive streams.
1486 if (session
->live_timer
> 0) {
1487 attr
.attr
.live_timer_interval
= session
->live_timer
;
1488 attr
.attr
.switch_timer_interval
= 0;
1491 /* Check for feature support */
1492 switch (domain
->type
) {
1493 case LTTNG_DOMAIN_KERNEL
:
1495 if (kernel_supports_ring_buffer_snapshot_sample_positions() != 1) {
1496 /* Sampling position of buffer is not supported */
1497 WARN("Kernel tracer does not support buffer monitoring. "
1498 "Setting the monitor interval timer to 0 "
1499 "(disabled) for channel '%s' of session '%s'",
1500 attr
.name
, session
->name
);
1501 lttng_channel_set_monitor_timer_interval(&attr
, 0);
1505 case LTTNG_DOMAIN_UST
:
1507 case LTTNG_DOMAIN_JUL
:
1508 case LTTNG_DOMAIN_LOG4J
:
1509 case LTTNG_DOMAIN_PYTHON
:
1510 if (!agent_tracing_is_enabled()) {
1511 DBG("Attempted to enable a channel in an agent domain but the agent thread is not running");
1512 ret
= LTTNG_ERR_AGENT_TRACING_DISABLED
;
1517 ret
= LTTNG_ERR_UNKNOWN_DOMAIN
;
1521 switch (domain
->type
) {
1522 case LTTNG_DOMAIN_KERNEL
:
1524 struct ltt_kernel_channel
*kchan
;
1526 kchan
= trace_kernel_get_channel_by_name(attr
.name
,
1527 session
->kernel_session
);
1528 if (kchan
== NULL
) {
1529 if (session
->snapshot
.nb_output
> 0 ||
1530 session
->snapshot_mode
) {
1531 /* Enforce mmap output for snapshot sessions. */
1532 attr
.attr
.output
= LTTNG_EVENT_MMAP
;
1534 ret
= channel_kernel_create(session
->kernel_session
, &attr
, wpipe
);
1535 if (attr
.name
[0] != '\0') {
1536 session
->kernel_session
->has_non_default_channel
= 1;
1539 ret
= channel_kernel_enable(session
->kernel_session
, kchan
);
1542 if (ret
!= LTTNG_OK
) {
1546 kernel_wait_quiescent();
1549 case LTTNG_DOMAIN_UST
:
1550 case LTTNG_DOMAIN_JUL
:
1551 case LTTNG_DOMAIN_LOG4J
:
1552 case LTTNG_DOMAIN_PYTHON
:
1554 struct ltt_ust_channel
*uchan
;
1559 * Current agent implementation limitations force us to allow
1560 * only one channel at once in "agent" subdomains. Each
1561 * subdomain has a default channel name which must be strictly
1564 if (domain
->type
== LTTNG_DOMAIN_JUL
) {
1565 if (strncmp(attr
.name
, DEFAULT_JUL_CHANNEL_NAME
,
1566 LTTNG_SYMBOL_NAME_LEN
)) {
1567 ret
= LTTNG_ERR_INVALID_CHANNEL_NAME
;
1570 } else if (domain
->type
== LTTNG_DOMAIN_LOG4J
) {
1571 if (strncmp(attr
.name
, DEFAULT_LOG4J_CHANNEL_NAME
,
1572 LTTNG_SYMBOL_NAME_LEN
)) {
1573 ret
= LTTNG_ERR_INVALID_CHANNEL_NAME
;
1576 } else if (domain
->type
== LTTNG_DOMAIN_PYTHON
) {
1577 if (strncmp(attr
.name
, DEFAULT_PYTHON_CHANNEL_NAME
,
1578 LTTNG_SYMBOL_NAME_LEN
)) {
1579 ret
= LTTNG_ERR_INVALID_CHANNEL_NAME
;
1584 chan_ht
= usess
->domain_global
.channels
;
1586 uchan
= trace_ust_find_channel_by_name(chan_ht
, attr
.name
);
1587 if (uchan
== NULL
) {
1588 ret
= channel_ust_create(usess
, &attr
, domain
->buf_type
);
1589 if (attr
.name
[0] != '\0') {
1590 usess
->has_non_default_channel
= 1;
1593 ret
= channel_ust_enable(usess
, uchan
);
1598 ret
= LTTNG_ERR_UNKNOWN_DOMAIN
;
1602 if (ret
== LTTNG_OK
&& attr
.attr
.output
!= LTTNG_EVENT_MMAP
) {
1603 session
->has_non_mmap_channel
= true;
1611 enum lttng_error_code
cmd_process_attr_tracker_get_tracking_policy(
1612 struct ltt_session
*session
,
1613 enum lttng_domain_type domain
,
1614 enum lttng_process_attr process_attr
,
1615 enum lttng_tracking_policy
*policy
)
1617 enum lttng_error_code ret_code
= LTTNG_OK
;
1618 const struct process_attr_tracker
*tracker
;
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
;
1642 *policy
= process_attr_tracker_get_tracking_policy(tracker
);
1644 ret_code
= LTTNG_ERR_INVALID
;
1650 enum lttng_error_code
cmd_process_attr_tracker_set_tracking_policy(
1651 struct ltt_session
*session
,
1652 enum lttng_domain_type domain
,
1653 enum lttng_process_attr process_attr
,
1654 enum lttng_tracking_policy policy
)
1656 enum lttng_error_code ret_code
= LTTNG_OK
;
1659 case LTTNG_TRACKING_POLICY_INCLUDE_SET
:
1660 case LTTNG_TRACKING_POLICY_EXCLUDE_ALL
:
1661 case LTTNG_TRACKING_POLICY_INCLUDE_ALL
:
1664 ret_code
= LTTNG_ERR_INVALID
;
1669 case LTTNG_DOMAIN_KERNEL
:
1670 if (!session
->kernel_session
) {
1671 ret_code
= LTTNG_ERR_INVALID
;
1674 ret_code
= kernel_process_attr_tracker_set_tracking_policy(
1675 session
->kernel_session
, process_attr
, policy
);
1677 case LTTNG_DOMAIN_UST
:
1678 if (!session
->ust_session
) {
1679 ret_code
= LTTNG_ERR_INVALID
;
1682 ret_code
= trace_ust_process_attr_tracker_set_tracking_policy(
1683 session
->ust_session
, process_attr
, policy
);
1686 ret_code
= LTTNG_ERR_UNSUPPORTED_DOMAIN
;
1693 enum lttng_error_code
cmd_process_attr_tracker_inclusion_set_add_value(
1694 struct ltt_session
*session
,
1695 enum lttng_domain_type domain
,
1696 enum lttng_process_attr process_attr
,
1697 const struct process_attr_value
*value
)
1699 enum lttng_error_code ret_code
= LTTNG_OK
;
1702 case LTTNG_DOMAIN_KERNEL
:
1703 if (!session
->kernel_session
) {
1704 ret_code
= LTTNG_ERR_INVALID
;
1707 ret_code
= kernel_process_attr_tracker_inclusion_set_add_value(
1708 session
->kernel_session
, process_attr
, value
);
1710 case LTTNG_DOMAIN_UST
:
1711 if (!session
->ust_session
) {
1712 ret_code
= LTTNG_ERR_INVALID
;
1715 ret_code
= trace_ust_process_attr_tracker_inclusion_set_add_value(
1716 session
->ust_session
, process_attr
, value
);
1719 ret_code
= LTTNG_ERR_UNSUPPORTED_DOMAIN
;
1726 enum lttng_error_code
cmd_process_attr_tracker_inclusion_set_remove_value(
1727 struct ltt_session
*session
,
1728 enum lttng_domain_type domain
,
1729 enum lttng_process_attr process_attr
,
1730 const struct process_attr_value
*value
)
1732 enum lttng_error_code ret_code
= LTTNG_OK
;
1735 case LTTNG_DOMAIN_KERNEL
:
1736 if (!session
->kernel_session
) {
1737 ret_code
= LTTNG_ERR_INVALID
;
1740 ret_code
= kernel_process_attr_tracker_inclusion_set_remove_value(
1741 session
->kernel_session
, process_attr
, value
);
1743 case LTTNG_DOMAIN_UST
:
1744 if (!session
->ust_session
) {
1745 ret_code
= LTTNG_ERR_INVALID
;
1748 ret_code
= trace_ust_process_attr_tracker_inclusion_set_remove_value(
1749 session
->ust_session
, process_attr
, value
);
1752 ret_code
= LTTNG_ERR_UNSUPPORTED_DOMAIN
;
1759 enum lttng_error_code
cmd_process_attr_tracker_get_inclusion_set(
1760 struct ltt_session
*session
,
1761 enum lttng_domain_type domain
,
1762 enum lttng_process_attr process_attr
,
1763 struct lttng_process_attr_values
**values
)
1765 enum lttng_error_code ret_code
= LTTNG_OK
;
1766 const struct process_attr_tracker
*tracker
;
1767 enum process_attr_tracker_status status
;
1770 case LTTNG_DOMAIN_KERNEL
:
1771 if (!session
->kernel_session
) {
1772 ret_code
= LTTNG_ERR_INVALID
;
1775 tracker
= kernel_get_process_attr_tracker(
1776 session
->kernel_session
, process_attr
);
1778 case LTTNG_DOMAIN_UST
:
1779 if (!session
->ust_session
) {
1780 ret_code
= LTTNG_ERR_INVALID
;
1783 tracker
= trace_ust_get_process_attr_tracker(
1784 session
->ust_session
, process_attr
);
1787 ret_code
= LTTNG_ERR_UNSUPPORTED_DOMAIN
;
1792 ret_code
= LTTNG_ERR_INVALID
;
1796 status
= process_attr_tracker_get_inclusion_set(tracker
, values
);
1798 case PROCESS_ATTR_TRACKER_STATUS_OK
:
1799 ret_code
= LTTNG_OK
;
1801 case PROCESS_ATTR_TRACKER_STATUS_INVALID_TRACKING_POLICY
:
1802 ret_code
= LTTNG_ERR_PROCESS_ATTR_TRACKER_INVALID_TRACKING_POLICY
;
1804 case PROCESS_ATTR_TRACKER_STATUS_ERROR
:
1805 ret_code
= LTTNG_ERR_NOMEM
;
1808 ret_code
= LTTNG_ERR_UNK
;
1817 * Command LTTNG_DISABLE_EVENT processed by the client thread.
1819 int cmd_disable_event(struct ltt_session
*session
,
1820 enum lttng_domain_type domain
, const char *channel_name
,
1821 const struct lttng_event
*event
)
1824 const char *event_name
;
1826 DBG("Disable event command for event \'%s\'", event
->name
);
1828 event_name
= event
->name
;
1830 /* Error out on unhandled search criteria */
1831 if (event
->loglevel_type
|| event
->loglevel
!= -1 || event
->enabled
1832 || event
->pid
|| event
->filter
|| event
->exclusion
) {
1833 ret
= LTTNG_ERR_UNK
;
1840 case LTTNG_DOMAIN_KERNEL
:
1842 struct ltt_kernel_channel
*kchan
;
1843 struct ltt_kernel_session
*ksess
;
1845 ksess
= session
->kernel_session
;
1848 * If a non-default channel has been created in the
1849 * session, explicitely require that -c chan_name needs
1852 if (ksess
->has_non_default_channel
&& channel_name
[0] == '\0') {
1853 ret
= LTTNG_ERR_NEED_CHANNEL_NAME
;
1857 kchan
= trace_kernel_get_channel_by_name(channel_name
, ksess
);
1858 if (kchan
== NULL
) {
1859 ret
= LTTNG_ERR_KERN_CHAN_NOT_FOUND
;
1863 switch (event
->type
) {
1864 case LTTNG_EVENT_ALL
:
1865 case LTTNG_EVENT_TRACEPOINT
:
1866 case LTTNG_EVENT_SYSCALL
:
1867 case LTTNG_EVENT_PROBE
:
1868 case LTTNG_EVENT_FUNCTION
:
1869 case LTTNG_EVENT_FUNCTION_ENTRY
:/* fall-through */
1870 if (event_name
[0] == '\0') {
1871 ret
= event_kernel_disable_event(kchan
,
1874 ret
= event_kernel_disable_event(kchan
,
1875 event_name
, event
->type
);
1877 if (ret
!= LTTNG_OK
) {
1882 ret
= LTTNG_ERR_UNK
;
1886 kernel_wait_quiescent();
1889 case LTTNG_DOMAIN_UST
:
1891 struct ltt_ust_channel
*uchan
;
1892 struct ltt_ust_session
*usess
;
1894 usess
= session
->ust_session
;
1896 if (validate_ust_event_name(event_name
)) {
1897 ret
= LTTNG_ERR_INVALID_EVENT_NAME
;
1902 * If a non-default channel has been created in the
1903 * session, explicitly require that -c chan_name needs
1906 if (usess
->has_non_default_channel
&& channel_name
[0] == '\0') {
1907 ret
= LTTNG_ERR_NEED_CHANNEL_NAME
;
1911 uchan
= trace_ust_find_channel_by_name(usess
->domain_global
.channels
,
1913 if (uchan
== NULL
) {
1914 ret
= LTTNG_ERR_UST_CHAN_NOT_FOUND
;
1918 switch (event
->type
) {
1919 case LTTNG_EVENT_ALL
:
1921 * An empty event name means that everything
1922 * should be disabled.
1924 if (event
->name
[0] == '\0') {
1925 ret
= event_ust_disable_all_tracepoints(usess
, uchan
);
1927 ret
= event_ust_disable_tracepoint(usess
, uchan
,
1930 if (ret
!= LTTNG_OK
) {
1935 ret
= LTTNG_ERR_UNK
;
1939 DBG3("Disable UST event %s in channel %s completed", event_name
,
1943 case LTTNG_DOMAIN_LOG4J
:
1944 case LTTNG_DOMAIN_JUL
:
1945 case LTTNG_DOMAIN_PYTHON
:
1948 struct ltt_ust_session
*usess
= session
->ust_session
;
1952 switch (event
->type
) {
1953 case LTTNG_EVENT_ALL
:
1956 ret
= LTTNG_ERR_UNK
;
1960 agt
= trace_ust_find_agent(usess
, domain
);
1962 ret
= -LTTNG_ERR_UST_EVENT_NOT_FOUND
;
1966 * An empty event name means that everything
1967 * should be disabled.
1969 if (event
->name
[0] == '\0') {
1970 ret
= event_agent_disable_all(usess
, agt
);
1972 ret
= event_agent_disable(usess
, agt
, event_name
);
1974 if (ret
!= LTTNG_OK
) {
1981 ret
= LTTNG_ERR_UND
;
1994 * Command LTTNG_ADD_CONTEXT processed by the client thread.
1996 int cmd_add_context(struct ltt_session
*session
, enum lttng_domain_type domain
,
1997 char *channel_name
, const struct lttng_event_context
*ctx
, int kwpipe
)
1999 int ret
, chan_kern_created
= 0, chan_ust_created
= 0;
2000 char *app_ctx_provider_name
= NULL
, *app_ctx_name
= NULL
;
2003 * Don't try to add a context if the session has been started at
2004 * some point in time before. The tracer does not allow it and would
2005 * result in a corrupted trace.
2007 if (session
->has_been_started
) {
2008 ret
= LTTNG_ERR_TRACE_ALREADY_STARTED
;
2012 if (ctx
->ctx
== LTTNG_EVENT_CONTEXT_APP_CONTEXT
) {
2013 app_ctx_provider_name
= ctx
->u
.app_ctx
.provider_name
;
2014 app_ctx_name
= ctx
->u
.app_ctx
.ctx_name
;
2018 case LTTNG_DOMAIN_KERNEL
:
2019 assert(session
->kernel_session
);
2021 if (session
->kernel_session
->channel_count
== 0) {
2022 /* Create default channel */
2023 ret
= channel_kernel_create(session
->kernel_session
, NULL
, kwpipe
);
2024 if (ret
!= LTTNG_OK
) {
2027 chan_kern_created
= 1;
2029 /* Add kernel context to kernel tracer */
2030 ret
= context_kernel_add(session
->kernel_session
, ctx
, channel_name
);
2031 if (ret
!= LTTNG_OK
) {
2035 case LTTNG_DOMAIN_JUL
:
2036 case LTTNG_DOMAIN_LOG4J
:
2039 * Validate channel name.
2040 * If no channel name is given and the domain is JUL or LOG4J,
2041 * set it to the appropriate domain-specific channel name. If
2042 * a name is provided but does not match the expexted channel
2043 * name, return an error.
2045 if (domain
== LTTNG_DOMAIN_JUL
&& *channel_name
&&
2046 strcmp(channel_name
,
2047 DEFAULT_JUL_CHANNEL_NAME
)) {
2048 ret
= LTTNG_ERR_UST_CHAN_NOT_FOUND
;
2050 } else if (domain
== LTTNG_DOMAIN_LOG4J
&& *channel_name
&&
2051 strcmp(channel_name
,
2052 DEFAULT_LOG4J_CHANNEL_NAME
)) {
2053 ret
= LTTNG_ERR_UST_CHAN_NOT_FOUND
;
2056 /* break is _not_ missing here. */
2058 case LTTNG_DOMAIN_UST
:
2060 struct ltt_ust_session
*usess
= session
->ust_session
;
2061 unsigned int chan_count
;
2065 chan_count
= lttng_ht_get_count(usess
->domain_global
.channels
);
2066 if (chan_count
== 0) {
2067 struct lttng_channel
*attr
;
2068 /* Create default channel */
2069 attr
= channel_new_default_attr(domain
, usess
->buffer_type
);
2071 ret
= LTTNG_ERR_FATAL
;
2075 ret
= channel_ust_create(usess
, attr
, usess
->buffer_type
);
2076 if (ret
!= LTTNG_OK
) {
2080 channel_attr_destroy(attr
);
2081 chan_ust_created
= 1;
2084 ret
= context_ust_add(usess
, domain
, ctx
, channel_name
);
2085 free(app_ctx_provider_name
);
2087 app_ctx_name
= NULL
;
2088 app_ctx_provider_name
= NULL
;
2089 if (ret
!= LTTNG_OK
) {
2095 ret
= LTTNG_ERR_UND
;
2103 if (chan_kern_created
) {
2104 struct ltt_kernel_channel
*kchan
=
2105 trace_kernel_get_channel_by_name(DEFAULT_CHANNEL_NAME
,
2106 session
->kernel_session
);
2107 /* Created previously, this should NOT fail. */
2109 kernel_destroy_channel(kchan
);
2112 if (chan_ust_created
) {
2113 struct ltt_ust_channel
*uchan
=
2114 trace_ust_find_channel_by_name(
2115 session
->ust_session
->domain_global
.channels
,
2116 DEFAULT_CHANNEL_NAME
);
2117 /* Created previously, this should NOT fail. */
2119 /* Remove from the channel list of the session. */
2120 trace_ust_delete_channel(session
->ust_session
->domain_global
.channels
,
2122 trace_ust_destroy_channel(uchan
);
2125 free(app_ctx_provider_name
);
2130 static inline bool name_starts_with(const char *name
, const char *prefix
)
2132 const size_t max_cmp_len
= min(strlen(prefix
), LTTNG_SYMBOL_NAME_LEN
);
2134 return !strncmp(name
, prefix
, max_cmp_len
);
2137 /* Perform userspace-specific event name validation */
2138 static int validate_ust_event_name(const char *name
)
2148 * Check name against all internal UST event component namespaces used
2151 if (name_starts_with(name
, DEFAULT_JUL_EVENT_COMPONENT
) ||
2152 name_starts_with(name
, DEFAULT_LOG4J_EVENT_COMPONENT
) ||
2153 name_starts_with(name
, DEFAULT_PYTHON_EVENT_COMPONENT
)) {
2162 * Internal version of cmd_enable_event() with a supplemental
2163 * "internal_event" flag which is used to enable internal events which should
2164 * be hidden from clients. Such events are used in the agent implementation to
2165 * enable the events through which all "agent" events are funeled.
2167 static int _cmd_enable_event(struct ltt_session
*session
,
2168 const struct lttng_domain
*domain
,
2169 char *channel_name
, struct lttng_event
*event
,
2170 char *filter_expression
,
2171 struct lttng_filter_bytecode
*filter
,
2172 struct lttng_event_exclusion
*exclusion
,
2173 int wpipe
, bool internal_event
)
2175 int ret
= 0, channel_created
= 0;
2176 struct lttng_channel
*attr
= NULL
;
2180 assert(channel_name
);
2182 /* If we have a filter, we must have its filter expression */
2183 assert(!(!!filter_expression
^ !!filter
));
2185 /* Normalize event name as a globbing pattern */
2186 strutils_normalize_star_glob_pattern(event
->name
);
2188 /* Normalize exclusion names as globbing patterns */
2192 for (i
= 0; i
< exclusion
->count
; i
++) {
2193 char *name
= LTTNG_EVENT_EXCLUSION_NAME_AT(exclusion
, i
);
2195 strutils_normalize_star_glob_pattern(name
);
2199 DBG("Enable event command for event \'%s\'", event
->name
);
2203 switch (domain
->type
) {
2204 case LTTNG_DOMAIN_KERNEL
:
2206 struct ltt_kernel_channel
*kchan
;
2209 * If a non-default channel has been created in the
2210 * session, explicitely require that -c chan_name needs
2213 if (session
->kernel_session
->has_non_default_channel
2214 && channel_name
[0] == '\0') {
2215 ret
= LTTNG_ERR_NEED_CHANNEL_NAME
;
2219 kchan
= trace_kernel_get_channel_by_name(channel_name
,
2220 session
->kernel_session
);
2221 if (kchan
== NULL
) {
2222 attr
= channel_new_default_attr(LTTNG_DOMAIN_KERNEL
,
2223 LTTNG_BUFFER_GLOBAL
);
2225 ret
= LTTNG_ERR_FATAL
;
2228 if (lttng_strncpy(attr
->name
, channel_name
,
2229 sizeof(attr
->name
))) {
2230 ret
= LTTNG_ERR_INVALID
;
2234 ret
= cmd_enable_channel(session
, domain
, attr
, wpipe
);
2235 if (ret
!= LTTNG_OK
) {
2238 channel_created
= 1;
2241 /* Get the newly created kernel channel pointer */
2242 kchan
= trace_kernel_get_channel_by_name(channel_name
,
2243 session
->kernel_session
);
2244 if (kchan
== NULL
) {
2245 /* This sould not happen... */
2246 ret
= LTTNG_ERR_FATAL
;
2250 switch (event
->type
) {
2251 case LTTNG_EVENT_ALL
:
2253 char *filter_expression_a
= NULL
;
2254 struct lttng_filter_bytecode
*filter_a
= NULL
;
2257 * We need to duplicate filter_expression and filter,
2258 * because ownership is passed to first enable
2261 if (filter_expression
) {
2262 filter_expression_a
= strdup(filter_expression
);
2263 if (!filter_expression_a
) {
2264 ret
= LTTNG_ERR_FATAL
;
2269 filter_a
= zmalloc(sizeof(*filter_a
) + filter
->len
);
2271 free(filter_expression_a
);
2272 ret
= LTTNG_ERR_FATAL
;
2275 memcpy(filter_a
, filter
, sizeof(*filter_a
) + filter
->len
);
2277 event
->type
= LTTNG_EVENT_TRACEPOINT
; /* Hack */
2278 ret
= event_kernel_enable_event(kchan
, event
,
2279 filter_expression
, filter
);
2280 /* We have passed ownership */
2281 filter_expression
= NULL
;
2283 if (ret
!= LTTNG_OK
) {
2284 if (channel_created
) {
2285 /* Let's not leak a useless channel. */
2286 kernel_destroy_channel(kchan
);
2288 free(filter_expression_a
);
2292 event
->type
= LTTNG_EVENT_SYSCALL
; /* Hack */
2293 ret
= event_kernel_enable_event(kchan
, event
,
2294 filter_expression_a
, filter_a
);
2295 /* We have passed ownership */
2296 filter_expression_a
= NULL
;
2298 if (ret
!= LTTNG_OK
) {
2303 case LTTNG_EVENT_PROBE
:
2304 case LTTNG_EVENT_USERSPACE_PROBE
:
2305 case LTTNG_EVENT_FUNCTION
:
2306 case LTTNG_EVENT_FUNCTION_ENTRY
:
2307 case LTTNG_EVENT_TRACEPOINT
:
2308 ret
= event_kernel_enable_event(kchan
, event
,
2309 filter_expression
, filter
);
2310 /* We have passed ownership */
2311 filter_expression
= NULL
;
2313 if (ret
!= LTTNG_OK
) {
2314 if (channel_created
) {
2315 /* Let's not leak a useless channel. */
2316 kernel_destroy_channel(kchan
);
2321 case LTTNG_EVENT_SYSCALL
:
2322 ret
= event_kernel_enable_event(kchan
, event
,
2323 filter_expression
, filter
);
2324 /* We have passed ownership */
2325 filter_expression
= NULL
;
2327 if (ret
!= LTTNG_OK
) {
2332 ret
= LTTNG_ERR_UNK
;
2336 kernel_wait_quiescent();
2339 case LTTNG_DOMAIN_UST
:
2341 struct ltt_ust_channel
*uchan
;
2342 struct ltt_ust_session
*usess
= session
->ust_session
;
2347 * If a non-default channel has been created in the
2348 * session, explicitely require that -c chan_name needs
2351 if (usess
->has_non_default_channel
&& channel_name
[0] == '\0') {
2352 ret
= LTTNG_ERR_NEED_CHANNEL_NAME
;
2356 /* Get channel from global UST domain */
2357 uchan
= trace_ust_find_channel_by_name(usess
->domain_global
.channels
,
2359 if (uchan
== NULL
) {
2360 /* Create default channel */
2361 attr
= channel_new_default_attr(LTTNG_DOMAIN_UST
,
2362 usess
->buffer_type
);
2364 ret
= LTTNG_ERR_FATAL
;
2367 if (lttng_strncpy(attr
->name
, channel_name
,
2368 sizeof(attr
->name
))) {
2369 ret
= LTTNG_ERR_INVALID
;
2373 ret
= cmd_enable_channel(session
, domain
, attr
, wpipe
);
2374 if (ret
!= LTTNG_OK
) {
2378 /* Get the newly created channel reference back */
2379 uchan
= trace_ust_find_channel_by_name(
2380 usess
->domain_global
.channels
, channel_name
);
2384 if (uchan
->domain
!= LTTNG_DOMAIN_UST
&& !internal_event
) {
2386 * Don't allow users to add UST events to channels which
2387 * are assigned to a userspace subdomain (JUL, Log4J,
2390 ret
= LTTNG_ERR_INVALID_CHANNEL_DOMAIN
;
2394 if (!internal_event
) {
2396 * Ensure the event name is not reserved for internal
2399 ret
= validate_ust_event_name(event
->name
);
2401 WARN("Userspace event name %s failed validation.",
2403 ret
= LTTNG_ERR_INVALID_EVENT_NAME
;
2408 /* At this point, the session and channel exist on the tracer */
2409 ret
= event_ust_enable_tracepoint(usess
, uchan
, event
,
2410 filter_expression
, filter
, exclusion
,
2412 /* We have passed ownership */
2413 filter_expression
= NULL
;
2416 if (ret
== LTTNG_ERR_UST_EVENT_ENABLED
) {
2417 goto already_enabled
;
2418 } else if (ret
!= LTTNG_OK
) {
2423 case LTTNG_DOMAIN_LOG4J
:
2424 case LTTNG_DOMAIN_JUL
:
2425 case LTTNG_DOMAIN_PYTHON
:
2427 const char *default_event_name
, *default_chan_name
;
2429 struct lttng_event uevent
;
2430 struct lttng_domain tmp_dom
;
2431 struct ltt_ust_session
*usess
= session
->ust_session
;
2435 if (!agent_tracing_is_enabled()) {
2436 DBG("Attempted to enable an event in an agent domain but the agent thread is not running");
2437 ret
= LTTNG_ERR_AGENT_TRACING_DISABLED
;
2441 agt
= trace_ust_find_agent(usess
, domain
->type
);
2443 agt
= agent_create(domain
->type
);
2445 ret
= LTTNG_ERR_NOMEM
;
2448 agent_add(agt
, usess
->agents
);
2451 /* Create the default tracepoint. */
2452 memset(&uevent
, 0, sizeof(uevent
));
2453 uevent
.type
= LTTNG_EVENT_TRACEPOINT
;
2454 uevent
.loglevel_type
= LTTNG_EVENT_LOGLEVEL_ALL
;
2455 default_event_name
= event_get_default_agent_ust_name(
2457 if (!default_event_name
) {
2458 ret
= LTTNG_ERR_FATAL
;
2461 strncpy(uevent
.name
, default_event_name
, sizeof(uevent
.name
));
2462 uevent
.name
[sizeof(uevent
.name
) - 1] = '\0';
2465 * The domain type is changed because we are about to enable the
2466 * default channel and event for the JUL domain that are hardcoded.
2467 * This happens in the UST domain.
2469 memcpy(&tmp_dom
, domain
, sizeof(tmp_dom
));
2470 tmp_dom
.type
= LTTNG_DOMAIN_UST
;
2472 switch (domain
->type
) {
2473 case LTTNG_DOMAIN_LOG4J
:
2474 default_chan_name
= DEFAULT_LOG4J_CHANNEL_NAME
;
2476 case LTTNG_DOMAIN_JUL
:
2477 default_chan_name
= DEFAULT_JUL_CHANNEL_NAME
;
2479 case LTTNG_DOMAIN_PYTHON
:
2480 default_chan_name
= DEFAULT_PYTHON_CHANNEL_NAME
;
2483 /* The switch/case we are in makes this impossible */
2488 char *filter_expression_copy
= NULL
;
2489 struct lttng_filter_bytecode
*filter_copy
= NULL
;
2492 const size_t filter_size
= sizeof(
2493 struct lttng_filter_bytecode
)
2496 filter_copy
= zmalloc(filter_size
);
2498 ret
= LTTNG_ERR_NOMEM
;
2501 memcpy(filter_copy
, filter
, filter_size
);
2503 filter_expression_copy
=
2504 strdup(filter_expression
);
2505 if (!filter_expression
) {
2506 ret
= LTTNG_ERR_NOMEM
;
2509 if (!filter_expression_copy
|| !filter_copy
) {
2510 free(filter_expression_copy
);
2516 ret
= cmd_enable_event_internal(session
, &tmp_dom
,
2517 (char *) default_chan_name
,
2518 &uevent
, filter_expression_copy
,
2519 filter_copy
, NULL
, wpipe
);
2522 if (ret
== LTTNG_ERR_UST_EVENT_ENABLED
) {
2523 goto already_enabled
;
2524 } else if (ret
!= LTTNG_OK
) {
2528 /* The wild card * means that everything should be enabled. */
2529 if (strncmp(event
->name
, "*", 1) == 0 && strlen(event
->name
) == 1) {
2530 ret
= event_agent_enable_all(usess
, agt
, event
, filter
,
2533 ret
= event_agent_enable(usess
, agt
, event
, filter
,
2537 filter_expression
= NULL
;
2538 if (ret
!= LTTNG_OK
) {
2545 ret
= LTTNG_ERR_UND
;
2553 free(filter_expression
);
2556 channel_attr_destroy(attr
);
2562 * Command LTTNG_ENABLE_EVENT processed by the client thread.
2563 * We own filter, exclusion, and filter_expression.
2565 int cmd_enable_event(struct ltt_session
*session
,
2566 const struct lttng_domain
*domain
,
2567 char *channel_name
, struct lttng_event
*event
,
2568 char *filter_expression
,
2569 struct lttng_filter_bytecode
*filter
,
2570 struct lttng_event_exclusion
*exclusion
,
2573 return _cmd_enable_event(session
, domain
, channel_name
, event
,
2574 filter_expression
, filter
, exclusion
, wpipe
, false);
2578 * Enable an event which is internal to LTTng. An internal should
2579 * never be made visible to clients and are immune to checks such as
2582 static int cmd_enable_event_internal(struct ltt_session
*session
,
2583 const struct lttng_domain
*domain
,
2584 char *channel_name
, struct lttng_event
*event
,
2585 char *filter_expression
,
2586 struct lttng_filter_bytecode
*filter
,
2587 struct lttng_event_exclusion
*exclusion
,
2590 return _cmd_enable_event(session
, domain
, channel_name
, event
,
2591 filter_expression
, filter
, exclusion
, wpipe
, true);
2595 * Command LTTNG_LIST_TRACEPOINTS processed by the client thread.
2597 ssize_t
cmd_list_tracepoints(enum lttng_domain_type domain
,
2598 struct lttng_event
**events
)
2601 ssize_t nb_events
= 0;
2604 case LTTNG_DOMAIN_KERNEL
:
2605 nb_events
= kernel_list_events(events
);
2606 if (nb_events
< 0) {
2607 ret
= LTTNG_ERR_KERN_LIST_FAIL
;
2611 case LTTNG_DOMAIN_UST
:
2612 nb_events
= ust_app_list_events(events
);
2613 if (nb_events
< 0) {
2614 ret
= LTTNG_ERR_UST_LIST_FAIL
;
2618 case LTTNG_DOMAIN_LOG4J
:
2619 case LTTNG_DOMAIN_JUL
:
2620 case LTTNG_DOMAIN_PYTHON
:
2621 nb_events
= agent_list_events(events
, domain
);
2622 if (nb_events
< 0) {
2623 ret
= LTTNG_ERR_UST_LIST_FAIL
;
2628 ret
= LTTNG_ERR_UND
;
2635 /* Return negative value to differentiate return code */
2640 * Command LTTNG_LIST_TRACEPOINT_FIELDS processed by the client thread.
2642 ssize_t
cmd_list_tracepoint_fields(enum lttng_domain_type domain
,
2643 struct lttng_event_field
**fields
)
2646 ssize_t nb_fields
= 0;
2649 case LTTNG_DOMAIN_UST
:
2650 nb_fields
= ust_app_list_event_fields(fields
);
2651 if (nb_fields
< 0) {
2652 ret
= LTTNG_ERR_UST_LIST_FAIL
;
2656 case LTTNG_DOMAIN_KERNEL
:
2657 default: /* fall-through */
2658 ret
= LTTNG_ERR_UND
;
2665 /* Return negative value to differentiate return code */
2669 ssize_t
cmd_list_syscalls(struct lttng_event
**events
)
2671 return syscall_table_list(events
);
2675 * Command LTTNG_START_TRACE processed by the client thread.
2677 * Called with session mutex held.
2679 int cmd_start_trace(struct ltt_session
*session
)
2681 enum lttng_error_code ret
;
2682 unsigned long nb_chan
= 0;
2683 struct ltt_kernel_session
*ksession
;
2684 struct ltt_ust_session
*usess
;
2685 const bool session_rotated_after_last_stop
=
2686 session
->rotated_after_last_stop
;
2687 const bool session_cleared_after_last_stop
=
2688 session
->cleared_after_last_stop
;
2692 /* Ease our life a bit ;) */
2693 ksession
= session
->kernel_session
;
2694 usess
= session
->ust_session
;
2696 /* Is the session already started? */
2697 if (session
->active
) {
2698 ret
= LTTNG_ERR_TRACE_ALREADY_STARTED
;
2699 /* Perform nothing */
2703 if (session
->rotation_state
== LTTNG_ROTATION_STATE_ONGOING
&&
2704 !session
->current_trace_chunk
) {
2706 * A rotation was launched while the session was stopped and
2707 * it has not been completed yet. It is not possible to start
2708 * the session since starting the session here would require a
2709 * rotation from "NULL" to a new trace chunk. That rotation
2710 * would overlap with the ongoing rotation, which is not
2713 WARN("Refusing to start session \"%s\" as a rotation launched after the last \"stop\" is still ongoing",
2715 ret
= LTTNG_ERR_ROTATION_PENDING
;
2720 * Starting a session without channel is useless since after that it's not
2721 * possible to enable channel thus inform the client.
2723 if (usess
&& usess
->domain_global
.channels
) {
2724 nb_chan
+= lttng_ht_get_count(usess
->domain_global
.channels
);
2727 nb_chan
+= ksession
->channel_count
;
2730 ret
= LTTNG_ERR_NO_CHANNEL
;
2734 session
->active
= 1;
2735 session
->rotated_after_last_stop
= false;
2736 session
->cleared_after_last_stop
= false;
2737 if (session
->output_traces
&& !session
->current_trace_chunk
) {
2738 if (!session
->has_been_started
) {
2739 struct lttng_trace_chunk
*trace_chunk
;
2741 DBG("Creating initial trace chunk of session \"%s\"",
2743 trace_chunk
= session_create_new_trace_chunk(
2744 session
, NULL
, NULL
, NULL
);
2746 ret
= LTTNG_ERR_CREATE_DIR_FAIL
;
2749 assert(!session
->current_trace_chunk
);
2750 ret
= session_set_trace_chunk(session
, trace_chunk
,
2752 lttng_trace_chunk_put(trace_chunk
);
2754 ret
= LTTNG_ERR_CREATE_TRACE_CHUNK_FAIL_CONSUMER
;
2758 DBG("Rotating session \"%s\" from its current \"NULL\" trace chunk to a new chunk",
2761 * Rotate existing streams into the new chunk.
2762 * This is a "quiet" rotation has no client has
2763 * explicitly requested this operation.
2765 * There is also no need to wait for the rotation
2766 * to complete as it will happen immediately. No data
2767 * was produced as the session was stopped, so the
2768 * rotation should happen on reception of the command.
2770 ret
= cmd_rotate_session(session
, NULL
, true,
2771 LTTNG_TRACE_CHUNK_COMMAND_TYPE_NO_OPERATION
);
2772 if (ret
!= LTTNG_OK
) {
2778 /* Kernel tracing */
2779 if (ksession
!= NULL
) {
2780 DBG("Start kernel tracing session %s", session
->name
);
2781 ret
= start_kernel_session(ksession
);
2782 if (ret
!= LTTNG_OK
) {
2787 /* Flag session that trace should start automatically */
2789 int int_ret
= ust_app_start_trace_all(usess
);
2792 ret
= LTTNG_ERR_UST_START_FAIL
;
2798 * Clear the flag that indicates that a rotation was done while the
2799 * session was stopped.
2801 session
->rotated_after_last_stop
= false;
2803 if (session
->rotate_timer_period
) {
2804 int int_ret
= timer_session_rotation_schedule_timer_start(
2805 session
, session
->rotate_timer_period
);
2808 ERR("Failed to enable rotate timer");
2809 ret
= LTTNG_ERR_UNK
;
2817 if (ret
== LTTNG_OK
) {
2818 /* Flag this after a successful start. */
2819 session
->has_been_started
|= 1;
2821 session
->active
= 0;
2822 /* Restore initial state on error. */
2823 session
->rotated_after_last_stop
=
2824 session_rotated_after_last_stop
;
2825 session
->cleared_after_last_stop
=
2826 session_cleared_after_last_stop
;
2833 * Command LTTNG_STOP_TRACE processed by the client thread.
2835 int cmd_stop_trace(struct ltt_session
*session
)
2838 struct ltt_kernel_session
*ksession
;
2839 struct ltt_ust_session
*usess
;
2843 DBG("Begin stop session \"%s\" (id %" PRIu64
")", session
->name
, session
->id
);
2845 ksession
= session
->kernel_session
;
2846 usess
= session
->ust_session
;
2848 /* Session is not active. Skip everythong and inform the client. */
2849 if (!session
->active
) {
2850 ret
= LTTNG_ERR_TRACE_ALREADY_STOPPED
;
2854 ret
= stop_kernel_session(ksession
);
2855 if (ret
!= LTTNG_OK
) {
2859 if (usess
&& usess
->active
) {
2860 ret
= ust_app_stop_trace_all(usess
);
2862 ret
= LTTNG_ERR_UST_STOP_FAIL
;
2867 DBG("Completed stop session \"%s\" (id %" PRIu64
")", session
->name
,
2869 /* Flag inactive after a successful stop. */
2870 session
->active
= 0;
2878 * Set the base_path of the session only if subdir of a control uris is set.
2879 * Return LTTNG_OK on success, otherwise LTTNG_ERR_*.
2881 static int set_session_base_path_from_uris(struct ltt_session
*session
,
2883 struct lttng_uri
*uris
)
2888 for (i
= 0; i
< nb_uri
; i
++) {
2889 if (uris
[i
].stype
!= LTTNG_STREAM_CONTROL
||
2890 uris
[i
].subdir
[0] == '\0') {
2891 /* Not interested in these URIs */
2895 if (session
->base_path
!= NULL
) {
2896 free(session
->base_path
);
2897 session
->base_path
= NULL
;
2900 /* Set session base_path */
2901 session
->base_path
= strdup(uris
[i
].subdir
);
2902 if (!session
->base_path
) {
2903 PERROR("Failed to copy base path \"%s\" to session \"%s\"",
2904 uris
[i
].subdir
, session
->name
);
2905 ret
= LTTNG_ERR_NOMEM
;
2908 DBG2("Setting base path \"%s\" for session \"%s\"",
2909 session
->base_path
, session
->name
);
2917 * Command LTTNG_SET_CONSUMER_URI processed by the client thread.
2919 int cmd_set_consumer_uri(struct ltt_session
*session
, size_t nb_uri
,
2920 struct lttng_uri
*uris
)
2923 struct ltt_kernel_session
*ksess
= session
->kernel_session
;
2924 struct ltt_ust_session
*usess
= session
->ust_session
;
2930 /* Can't set consumer URI if the session is active. */
2931 if (session
->active
) {
2932 ret
= LTTNG_ERR_TRACE_ALREADY_STARTED
;
2937 * Set the session base path if any. This is done inside
2938 * cmd_set_consumer_uri to preserve backward compatibility of the
2939 * previous session creation api vs the session descriptor api.
2941 ret
= set_session_base_path_from_uris(session
, nb_uri
, uris
);
2942 if (ret
!= LTTNG_OK
) {
2946 /* Set the "global" consumer URIs */
2947 for (i
= 0; i
< nb_uri
; i
++) {
2948 ret
= add_uri_to_consumer(session
, session
->consumer
, &uris
[i
],
2950 if (ret
!= LTTNG_OK
) {
2955 /* Set UST session URIs */
2956 if (session
->ust_session
) {
2957 for (i
= 0; i
< nb_uri
; i
++) {
2958 ret
= add_uri_to_consumer(session
,
2959 session
->ust_session
->consumer
,
2960 &uris
[i
], LTTNG_DOMAIN_UST
);
2961 if (ret
!= LTTNG_OK
) {
2967 /* Set kernel session URIs */
2968 if (session
->kernel_session
) {
2969 for (i
= 0; i
< nb_uri
; i
++) {
2970 ret
= add_uri_to_consumer(session
,
2971 session
->kernel_session
->consumer
,
2972 &uris
[i
], LTTNG_DOMAIN_KERNEL
);
2973 if (ret
!= LTTNG_OK
) {
2980 * Make sure to set the session in output mode after we set URI since a
2981 * session can be created without URL (thus flagged in no output mode).
2983 session
->output_traces
= 1;
2985 ksess
->output_traces
= 1;
2989 usess
->output_traces
= 1;
3000 enum lttng_error_code
set_session_output_from_descriptor(
3001 struct ltt_session
*session
,
3002 const struct lttng_session_descriptor
*descriptor
)
3005 enum lttng_error_code ret_code
= LTTNG_OK
;
3006 enum lttng_session_descriptor_type session_type
=
3007 lttng_session_descriptor_get_type(descriptor
);
3008 enum lttng_session_descriptor_output_type output_type
=
3009 lttng_session_descriptor_get_output_type(descriptor
);
3010 struct lttng_uri uris
[2] = {};
3011 size_t uri_count
= 0;
3013 switch (output_type
) {
3014 case LTTNG_SESSION_DESCRIPTOR_OUTPUT_TYPE_NONE
:
3016 case LTTNG_SESSION_DESCRIPTOR_OUTPUT_TYPE_LOCAL
:
3017 lttng_session_descriptor_get_local_output_uri(descriptor
,
3021 case LTTNG_SESSION_DESCRIPTOR_OUTPUT_TYPE_NETWORK
:
3022 lttng_session_descriptor_get_network_output_uris(descriptor
,
3023 &uris
[0], &uris
[1]);
3027 ret_code
= LTTNG_ERR_INVALID
;
3031 switch (session_type
) {
3032 case LTTNG_SESSION_DESCRIPTOR_TYPE_SNAPSHOT
:
3034 struct snapshot_output
*new_output
= NULL
;
3036 new_output
= snapshot_output_alloc();
3038 ret_code
= LTTNG_ERR_NOMEM
;
3042 ret
= snapshot_output_init_with_uri(session
,
3043 DEFAULT_SNAPSHOT_MAX_SIZE
,
3044 NULL
, uris
, uri_count
, session
->consumer
,
3045 new_output
, &session
->snapshot
);
3047 ret_code
= (ret
== -ENOMEM
) ?
3048 LTTNG_ERR_NOMEM
: LTTNG_ERR_INVALID
;
3049 snapshot_output_destroy(new_output
);
3052 snapshot_add_output(&session
->snapshot
, new_output
);
3055 case LTTNG_SESSION_DESCRIPTOR_TYPE_REGULAR
:
3056 case LTTNG_SESSION_DESCRIPTOR_TYPE_LIVE
:
3058 ret_code
= cmd_set_consumer_uri(session
, uri_count
, uris
);
3062 ret_code
= LTTNG_ERR_INVALID
;
3070 enum lttng_error_code
cmd_create_session_from_descriptor(
3071 struct lttng_session_descriptor
*descriptor
,
3072 const lttng_sock_cred
*creds
,
3073 const char *home_path
)
3076 enum lttng_error_code ret_code
;
3077 const char *session_name
;
3078 struct ltt_session
*new_session
= NULL
;
3079 enum lttng_session_descriptor_status descriptor_status
;
3081 session_lock_list();
3083 if (*home_path
!= '/') {
3084 ERR("Home path provided by client is not absolute");
3085 ret_code
= LTTNG_ERR_INVALID
;
3090 descriptor_status
= lttng_session_descriptor_get_session_name(
3091 descriptor
, &session_name
);
3092 switch (descriptor_status
) {
3093 case LTTNG_SESSION_DESCRIPTOR_STATUS_OK
:
3095 case LTTNG_SESSION_DESCRIPTOR_STATUS_UNSET
:
3096 session_name
= NULL
;
3099 ret_code
= LTTNG_ERR_INVALID
;
3103 ret_code
= session_create(session_name
, creds
->uid
, creds
->gid
,
3105 if (ret_code
!= LTTNG_OK
) {
3109 if (!session_name
) {
3110 ret
= lttng_session_descriptor_set_session_name(descriptor
,
3113 ret_code
= LTTNG_ERR_SESSION_FAIL
;
3118 if (!lttng_session_descriptor_is_output_destination_initialized(
3121 * Only include the session's creation time in the output
3122 * destination if the name of the session itself was
3123 * not auto-generated.
3125 ret_code
= lttng_session_descriptor_set_default_output(
3127 session_name
? &new_session
->creation_time
: NULL
,
3129 if (ret_code
!= LTTNG_OK
) {
3133 new_session
->has_user_specified_directory
=
3134 lttng_session_descriptor_has_output_directory(
3138 switch (lttng_session_descriptor_get_type(descriptor
)) {
3139 case LTTNG_SESSION_DESCRIPTOR_TYPE_SNAPSHOT
:
3140 new_session
->snapshot_mode
= 1;
3142 case LTTNG_SESSION_DESCRIPTOR_TYPE_LIVE
:
3143 new_session
->live_timer
=
3144 lttng_session_descriptor_live_get_timer_interval(
3151 ret_code
= set_session_output_from_descriptor(new_session
, descriptor
);
3152 if (ret_code
!= LTTNG_OK
) {
3155 new_session
->consumer
->enabled
= 1;
3156 ret_code
= LTTNG_OK
;
3158 /* Release reference provided by the session_create function. */
3159 session_put(new_session
);
3160 if (ret_code
!= LTTNG_OK
&& new_session
) {
3161 /* Release the global reference on error. */
3162 session_destroy(new_session
);
3164 session_unlock_list();
3168 enum lttng_error_code
cmd_create_session(struct command_ctx
*cmd_ctx
, int sock
,
3169 struct lttng_session_descriptor
**return_descriptor
)
3172 size_t payload_size
;
3173 struct lttng_dynamic_buffer payload
;
3174 struct lttng_buffer_view home_dir_view
;
3175 struct lttng_buffer_view session_descriptor_view
;
3176 struct lttng_session_descriptor
*session_descriptor
= NULL
;
3177 enum lttng_error_code ret_code
;
3179 lttng_dynamic_buffer_init(&payload
);
3180 if (cmd_ctx
->lsm
->u
.create_session
.home_dir_size
>=
3182 ret_code
= LTTNG_ERR_INVALID
;
3185 if (cmd_ctx
->lsm
->u
.create_session
.session_descriptor_size
>
3186 LTTNG_SESSION_DESCRIPTOR_MAX_LEN
) {
3187 ret_code
= LTTNG_ERR_INVALID
;
3191 payload_size
= cmd_ctx
->lsm
->u
.create_session
.home_dir_size
+
3192 cmd_ctx
->lsm
->u
.create_session
.session_descriptor_size
;
3193 ret
= lttng_dynamic_buffer_set_size(&payload
, payload_size
);
3195 ret_code
= LTTNG_ERR_NOMEM
;
3199 ret
= lttcomm_recv_unix_sock(sock
, payload
.data
, payload
.size
);
3201 ERR("Reception of session descriptor failed, aborting.");
3202 ret_code
= LTTNG_ERR_SESSION_FAIL
;
3206 home_dir_view
= lttng_buffer_view_from_dynamic_buffer(
3209 cmd_ctx
->lsm
->u
.create_session
.home_dir_size
);
3210 session_descriptor_view
= lttng_buffer_view_from_dynamic_buffer(
3212 cmd_ctx
->lsm
->u
.create_session
.home_dir_size
,
3213 cmd_ctx
->lsm
->u
.create_session
.session_descriptor_size
);
3215 ret
= lttng_session_descriptor_create_from_buffer(
3216 &session_descriptor_view
, &session_descriptor
);
3218 ERR("Failed to create session descriptor from payload of \"create session\" command");
3219 ret_code
= LTTNG_ERR_INVALID
;
3224 * Sets the descriptor's auto-generated properties (name, output) if
3227 ret_code
= cmd_create_session_from_descriptor(session_descriptor
,
3229 home_dir_view
.size
? home_dir_view
.data
: NULL
);
3230 if (ret_code
!= LTTNG_OK
) {
3234 ret_code
= LTTNG_OK
;
3235 *return_descriptor
= session_descriptor
;
3236 session_descriptor
= NULL
;
3238 lttng_dynamic_buffer_reset(&payload
);
3239 lttng_session_descriptor_destroy(session_descriptor
);
3244 void cmd_destroy_session_reply(const struct ltt_session
*session
,
3245 void *_reply_context
)
3249 const struct cmd_destroy_session_reply_context
*reply_context
=
3251 struct lttng_dynamic_buffer payload
;
3252 struct lttcomm_session_destroy_command_header cmd_header
;
3253 struct lttng_trace_archive_location
*location
= NULL
;
3254 struct lttcomm_lttng_msg llm
= {
3255 .cmd_type
= LTTNG_DESTROY_SESSION
,
3256 .ret_code
= reply_context
->destruction_status
,
3259 sizeof(struct lttcomm_session_destroy_command_header
),
3262 size_t payload_size_before_location
;
3264 lttng_dynamic_buffer_init(&payload
);
3266 ret
= lttng_dynamic_buffer_append(&payload
, &llm
, sizeof(llm
));
3268 ERR("Failed to append session destruction message");
3272 cmd_header
.rotation_state
=
3273 (int32_t) (reply_context
->implicit_rotation_on_destroy
?
3274 session
->rotation_state
:
3275 LTTNG_ROTATION_STATE_NO_ROTATION
);
3276 ret
= lttng_dynamic_buffer_append(&payload
, &cmd_header
,
3277 sizeof(cmd_header
));
3279 ERR("Failed to append session destruction command header");
3283 if (!reply_context
->implicit_rotation_on_destroy
) {
3284 DBG("No implicit rotation performed during the destruction of session \"%s\", sending reply",
3288 if (session
->rotation_state
!= LTTNG_ROTATION_STATE_COMPLETED
) {
3289 DBG("Rotation state of session \"%s\" is not \"completed\", sending session destruction reply",
3294 location
= session_get_trace_archive_location(session
);
3296 ERR("Failed to get the location of the trace archive produced during the destruction of session \"%s\"",
3301 payload_size_before_location
= payload
.size
;
3302 comm_ret
= lttng_trace_archive_location_serialize(location
,
3305 ERR("Failed to serialize the location of the trace archive produced during the destruction of session \"%s\"",
3309 /* Update the message to indicate the location's length. */
3310 ((struct lttcomm_lttng_msg
*) payload
.data
)->data_size
=
3311 payload
.size
- payload_size_before_location
;
3313 comm_ret
= lttcomm_send_unix_sock(reply_context
->reply_sock_fd
,
3314 payload
.data
, payload
.size
);
3315 if (comm_ret
!= (ssize_t
) payload
.size
) {
3316 ERR("Failed to send result of the destruction of session \"%s\" to client",
3320 ret
= close(reply_context
->reply_sock_fd
);
3322 PERROR("Failed to close client socket in deferred session destroy reply");
3324 lttng_dynamic_buffer_reset(&payload
);
3325 free(_reply_context
);
3329 * Command LTTNG_DESTROY_SESSION processed by the client thread.
3331 * Called with session lock held.
3333 int cmd_destroy_session(struct ltt_session
*session
,
3334 struct notification_thread_handle
*notification_thread_handle
,
3338 enum lttng_error_code destruction_last_error
= LTTNG_OK
;
3339 struct cmd_destroy_session_reply_context
*reply_context
= NULL
;
3342 reply_context
= zmalloc(sizeof(*reply_context
));
3343 if (!reply_context
) {
3344 ret
= LTTNG_ERR_NOMEM
;
3347 reply_context
->reply_sock_fd
= *sock_fd
;
3353 DBG("Begin destroy session %s (id %" PRIu64
")", session
->name
,
3355 if (session
->active
) {
3356 DBG("Session \"%s\" is active, attempting to stop it before destroying it",
3358 ret
= cmd_stop_trace(session
);
3359 if (ret
!= LTTNG_OK
&& ret
!= LTTNG_ERR_TRACE_ALREADY_STOPPED
) {
3360 /* Carry on with the destruction of the session. */
3361 ERR("Failed to stop session \"%s\" as part of its destruction: %s",
3362 session
->name
, lttng_strerror(-ret
));
3363 destruction_last_error
= ret
;
3367 if (session
->rotation_schedule_timer_enabled
) {
3368 if (timer_session_rotation_schedule_timer_stop(
3370 ERR("Failed to stop the \"rotation schedule\" timer of session %s",
3372 destruction_last_error
= LTTNG_ERR_TIMER_STOP_ERROR
;
3376 if (session
->rotate_size
) {
3377 unsubscribe_session_consumed_size_rotation(session
, notification_thread_handle
);
3378 session
->rotate_size
= 0;
3381 if (session
->rotated
&& session
->current_trace_chunk
&& session
->output_traces
) {
3383 * Perform a last rotation on destruction if rotations have
3384 * occurred during the session's lifetime.
3386 ret
= cmd_rotate_session(session
, NULL
, false,
3387 LTTNG_TRACE_CHUNK_COMMAND_TYPE_MOVE_TO_COMPLETED
);
3388 if (ret
!= LTTNG_OK
) {
3389 ERR("Failed to perform an implicit rotation as part of the destruction of session \"%s\": %s",
3390 session
->name
, lttng_strerror(-ret
));
3391 destruction_last_error
= -ret
;
3393 if (reply_context
) {
3394 reply_context
->implicit_rotation_on_destroy
= true;
3396 } else if (session
->has_been_started
&& session
->current_trace_chunk
) {
3398 * The user has not triggered a session rotation. However, to
3399 * ensure all data has been consumed, the session is rotated
3400 * to a 'null' trace chunk before it is destroyed.
3402 * This is a "quiet" rotation meaning that no notification is
3403 * emitted and no renaming of the current trace chunk takes
3406 ret
= cmd_rotate_session(session
, NULL
, true,
3407 LTTNG_TRACE_CHUNK_COMMAND_TYPE_NO_OPERATION
);
3409 * Rotation operations may not be supported by the kernel
3410 * tracer. Hence, do not consider this implicit rotation as
3411 * a session destruction error. The library has already stopped
3412 * the session and waited for pending data; there is nothing
3413 * left to do but complete the destruction of the session.
3415 if (ret
!= LTTNG_OK
&&
3416 ret
!= -LTTNG_ERR_ROTATION_NOT_AVAILABLE_KERNEL
) {
3417 ERR("Failed to perform a quiet rotation as part of the destruction of session \"%s\": %s",
3418 session
->name
, lttng_strerror(ret
));
3419 destruction_last_error
= -ret
;
3423 if (session
->shm_path
[0]) {
3425 * When a session is created with an explicit shm_path,
3426 * the consumer daemon will create its shared memory files
3427 * at that location and will *not* unlink them. This is normal
3428 * as the intention of that feature is to make it possible
3429 * to retrieve the content of those files should a crash occur.
3431 * To ensure the content of those files can be used, the
3432 * sessiond daemon will replicate the content of the metadata
3433 * cache in a metadata file.
3435 * On clean-up, it is expected that the consumer daemon will
3436 * unlink the shared memory files and that the session daemon
3437 * will unlink the metadata file. Then, the session's directory
3438 * in the shm path can be removed.
3440 * Unfortunately, a flaw in the design of the sessiond's and
3441 * consumerd's tear down of channels makes it impossible to
3442 * determine when the sessiond _and_ the consumerd have both
3443 * destroyed their representation of a channel. For one, the
3444 * unlinking, close, and rmdir happen in deferred 'call_rcu'
3445 * callbacks in both daemons.
3447 * However, it is also impossible for the sessiond to know when
3448 * the consumer daemon is done destroying its channel(s) since
3449 * it occurs as a reaction to the closing of the channel's file
3450 * descriptor. There is no resulting communication initiated
3451 * from the consumerd to the sessiond to confirm that the
3452 * operation is completed (and was successful).
3454 * Until this is all fixed, the session daemon checks for the
3455 * removal of the session's shm path which makes it possible
3456 * to safely advertise a session as having been destroyed.
3458 * Prior to this fix, it was not possible to reliably save
3459 * a session making use of the --shm-path option, destroy it,
3460 * and load it again. This is because the creation of the
3461 * session would fail upon seeing the session's shm path
3462 * already in existence.
3464 * Note that none of the error paths in the check for the
3465 * directory's existence return an error. This is normal
3466 * as there isn't much that can be done. The session will
3467 * be destroyed properly, except that we can't offer the
3468 * guarantee that the same session can be re-created.
3470 current_completion_handler
= &destroy_completion_handler
.handler
;
3471 ret
= lttng_strncpy(destroy_completion_handler
.shm_path
,
3473 sizeof(destroy_completion_handler
.shm_path
));
3478 * The session is destroyed. However, note that the command context
3479 * still holds a reference to the session, thus delaying its destruction
3480 * _at least_ up to the point when that reference is released.
3482 session_destroy(session
);
3483 if (reply_context
) {
3484 reply_context
->destruction_status
= destruction_last_error
;
3485 ret
= session_add_destroy_notifier(session
,
3486 cmd_destroy_session_reply
,
3487 (void *) reply_context
);
3489 ret
= LTTNG_ERR_FATAL
;
3501 * Command LTTNG_REGISTER_CONSUMER processed by the client thread.
3503 int cmd_register_consumer(struct ltt_session
*session
,
3504 enum lttng_domain_type domain
, const char *sock_path
,
3505 struct consumer_data
*cdata
)
3508 struct consumer_socket
*socket
= NULL
;
3515 case LTTNG_DOMAIN_KERNEL
:
3517 struct ltt_kernel_session
*ksess
= session
->kernel_session
;
3521 /* Can't register a consumer if there is already one */
3522 if (ksess
->consumer_fds_sent
!= 0) {
3523 ret
= LTTNG_ERR_KERN_CONSUMER_FAIL
;
3527 sock
= lttcomm_connect_unix_sock(sock_path
);
3529 ret
= LTTNG_ERR_CONNECT_FAIL
;
3532 cdata
->cmd_sock
= sock
;
3534 socket
= consumer_allocate_socket(&cdata
->cmd_sock
);
3535 if (socket
== NULL
) {
3538 PERROR("close register consumer");
3540 cdata
->cmd_sock
= -1;
3541 ret
= LTTNG_ERR_FATAL
;
3545 socket
->lock
= zmalloc(sizeof(pthread_mutex_t
));
3546 if (socket
->lock
== NULL
) {
3547 PERROR("zmalloc pthread mutex");
3548 ret
= LTTNG_ERR_FATAL
;
3551 pthread_mutex_init(socket
->lock
, NULL
);
3552 socket
->registered
= 1;
3555 consumer_add_socket(socket
, ksess
->consumer
);
3558 pthread_mutex_lock(&cdata
->pid_mutex
);
3560 pthread_mutex_unlock(&cdata
->pid_mutex
);
3565 /* TODO: Userspace tracing */
3566 ret
= LTTNG_ERR_UND
;
3574 consumer_destroy_socket(socket
);
3580 * Command LTTNG_LIST_DOMAINS processed by the client thread.
3582 ssize_t
cmd_list_domains(struct ltt_session
*session
,
3583 struct lttng_domain
**domains
)
3588 struct lttng_ht_iter iter
;
3590 if (session
->kernel_session
!= NULL
) {
3591 DBG3("Listing domains found kernel domain");
3595 if (session
->ust_session
!= NULL
) {
3596 DBG3("Listing domains found UST global domain");
3600 cds_lfht_for_each_entry(session
->ust_session
->agents
->ht
, &iter
.iter
,
3602 if (agt
->being_used
) {
3613 *domains
= zmalloc(nb_dom
* sizeof(struct lttng_domain
));
3614 if (*domains
== NULL
) {
3615 ret
= LTTNG_ERR_FATAL
;
3619 if (session
->kernel_session
!= NULL
) {
3620 (*domains
)[index
].type
= LTTNG_DOMAIN_KERNEL
;
3622 /* Kernel session buffer type is always GLOBAL */
3623 (*domains
)[index
].buf_type
= LTTNG_BUFFER_GLOBAL
;
3628 if (session
->ust_session
!= NULL
) {
3629 (*domains
)[index
].type
= LTTNG_DOMAIN_UST
;
3630 (*domains
)[index
].buf_type
= session
->ust_session
->buffer_type
;
3634 cds_lfht_for_each_entry(session
->ust_session
->agents
->ht
, &iter
.iter
,
3636 if (agt
->being_used
) {
3637 (*domains
)[index
].type
= agt
->domain
;
3638 (*domains
)[index
].buf_type
= session
->ust_session
->buffer_type
;
3648 /* Return negative value to differentiate return code */
3654 * Command LTTNG_LIST_CHANNELS processed by the client thread.
3656 ssize_t
cmd_list_channels(enum lttng_domain_type domain
,
3657 struct ltt_session
*session
, struct lttng_channel
**channels
)
3659 ssize_t nb_chan
= 0, payload_size
= 0, ret
;
3662 case LTTNG_DOMAIN_KERNEL
:
3663 if (session
->kernel_session
!= NULL
) {
3664 nb_chan
= session
->kernel_session
->channel_count
;
3666 DBG3("Number of kernel channels %zd", nb_chan
);
3668 ret
= -LTTNG_ERR_KERN_CHAN_NOT_FOUND
;
3672 case LTTNG_DOMAIN_UST
:
3673 if (session
->ust_session
!= NULL
) {
3675 nb_chan
= lttng_ht_get_count(
3676 session
->ust_session
->domain_global
.channels
);
3679 DBG3("Number of UST global channels %zd", nb_chan
);
3681 ret
= -LTTNG_ERR_UST_CHAN_NOT_FOUND
;
3686 ret
= -LTTNG_ERR_UND
;
3691 const size_t channel_size
= sizeof(struct lttng_channel
) +
3692 sizeof(struct lttng_channel_extended
);
3693 struct lttng_channel_extended
*channel_exts
;
3695 payload_size
= nb_chan
* channel_size
;
3696 *channels
= zmalloc(payload_size
);
3697 if (*channels
== NULL
) {
3698 ret
= -LTTNG_ERR_FATAL
;
3702 channel_exts
= ((void *) *channels
) +
3703 (nb_chan
* sizeof(struct lttng_channel
));
3704 ret
= list_lttng_channels(domain
, session
, *channels
, channel_exts
);
3705 if (ret
!= LTTNG_OK
) {
3720 * Command LTTNG_LIST_EVENTS processed by the client thread.
3722 ssize_t
cmd_list_events(enum lttng_domain_type domain
,
3723 struct ltt_session
*session
, char *channel_name
,
3724 struct lttng_event
**events
, size_t *total_size
)
3727 ssize_t nb_event
= 0;
3730 case LTTNG_DOMAIN_KERNEL
:
3731 if (session
->kernel_session
!= NULL
) {
3732 nb_event
= list_lttng_kernel_events(channel_name
,
3733 session
->kernel_session
, events
,
3737 case LTTNG_DOMAIN_UST
:
3739 if (session
->ust_session
!= NULL
) {
3740 nb_event
= list_lttng_ust_global_events(channel_name
,
3741 &session
->ust_session
->domain_global
, events
,
3746 case LTTNG_DOMAIN_LOG4J
:
3747 case LTTNG_DOMAIN_JUL
:
3748 case LTTNG_DOMAIN_PYTHON
:
3749 if (session
->ust_session
) {
3750 struct lttng_ht_iter iter
;
3754 cds_lfht_for_each_entry(session
->ust_session
->agents
->ht
,
3755 &iter
.iter
, agt
, node
.node
) {
3756 if (agt
->domain
== domain
) {
3757 nb_event
= list_lttng_agent_events(
3767 ret
= LTTNG_ERR_UND
;
3774 /* Return negative value to differentiate return code */
3779 * Using the session list, filled a lttng_session array to send back to the
3780 * client for session listing.
3782 * The session list lock MUST be acquired before calling this function. Use
3783 * session_lock_list() and session_unlock_list().
3785 void cmd_list_lttng_sessions(struct lttng_session
*sessions
,
3786 size_t session_count
, uid_t uid
, gid_t gid
)
3790 struct ltt_session
*session
;
3791 struct ltt_session_list
*list
= session_get_list();
3792 struct lttng_session_extended
*extended
=
3793 (typeof(extended
)) (&sessions
[session_count
]);
3795 DBG("Getting all available session for UID %d GID %d",
3798 * Iterate over session list and append data after the control struct in
3801 cds_list_for_each_entry(session
, &list
->head
, list
) {
3802 if (!session_get(session
)) {
3806 * Only list the sessions the user can control.
3808 if (!session_access_ok(session
, uid
, gid
) ||
3809 session
->destroyed
) {
3810 session_put(session
);
3814 struct ltt_kernel_session
*ksess
= session
->kernel_session
;
3815 struct ltt_ust_session
*usess
= session
->ust_session
;
3817 if (session
->consumer
->type
== CONSUMER_DST_NET
||
3818 (ksess
&& ksess
->consumer
->type
== CONSUMER_DST_NET
) ||
3819 (usess
&& usess
->consumer
->type
== CONSUMER_DST_NET
)) {
3820 ret
= build_network_session_path(sessions
[i
].path
,
3821 sizeof(sessions
[i
].path
), session
);
3823 ret
= snprintf(sessions
[i
].path
, sizeof(sessions
[i
].path
), "%s",
3824 session
->consumer
->dst
.session_root_path
);
3827 PERROR("snprintf session path");
3828 session_put(session
);
3832 strncpy(sessions
[i
].name
, session
->name
, NAME_MAX
);
3833 sessions
[i
].name
[NAME_MAX
- 1] = '\0';
3834 sessions
[i
].enabled
= session
->active
;
3835 sessions
[i
].snapshot_mode
= session
->snapshot_mode
;
3836 sessions
[i
].live_timer_interval
= session
->live_timer
;
3837 extended
[i
].creation_time
.value
= (uint64_t) session
->creation_time
;
3838 extended
[i
].creation_time
.is_set
= 1;
3840 session_put(session
);
3845 * Command LTTNG_DATA_PENDING returning 0 if the data is NOT pending meaning
3846 * ready for trace analysis (or any kind of reader) or else 1 for pending data.
3848 int cmd_data_pending(struct ltt_session
*session
)
3851 struct ltt_kernel_session
*ksess
= session
->kernel_session
;
3852 struct ltt_ust_session
*usess
= session
->ust_session
;
3856 DBG("Data pending for session %s", session
->name
);
3858 /* Session MUST be stopped to ask for data availability. */
3859 if (session
->active
) {
3860 ret
= LTTNG_ERR_SESSION_STARTED
;
3864 * If stopped, just make sure we've started before else the above call
3865 * will always send that there is data pending.
3867 * The consumer assumes that when the data pending command is received,
3868 * the trace has been started before or else no output data is written
3869 * by the streams which is a condition for data pending. So, this is
3870 * *VERY* important that we don't ask the consumer before a start
3873 if (!session
->has_been_started
) {
3879 /* A rotation is still pending, we have to wait. */
3880 if (session
->rotation_state
== LTTNG_ROTATION_STATE_ONGOING
) {
3881 DBG("Rotate still pending for session %s", session
->name
);
3886 if (ksess
&& ksess
->consumer
) {
3887 ret
= consumer_is_data_pending(ksess
->id
, ksess
->consumer
);
3889 /* Data is still being extracted for the kernel. */
3894 if (usess
&& usess
->consumer
) {
3895 ret
= consumer_is_data_pending(usess
->id
, usess
->consumer
);
3897 /* Data is still being extracted for the kernel. */
3902 /* Data is ready to be read by a viewer */
3910 * Command LTTNG_SNAPSHOT_ADD_OUTPUT from the lttng ctl library.
3912 * Return LTTNG_OK on success or else a LTTNG_ERR code.
3914 int cmd_snapshot_add_output(struct ltt_session
*session
,
3915 const struct lttng_snapshot_output
*output
, uint32_t *id
)
3918 struct snapshot_output
*new_output
;
3923 DBG("Cmd snapshot add output for session %s", session
->name
);
3926 * Can't create an output if the session is not set in no-output mode.
3928 if (session
->output_traces
) {
3929 ret
= LTTNG_ERR_NOT_SNAPSHOT_SESSION
;
3933 if (session
->has_non_mmap_channel
) {
3934 ret
= LTTNG_ERR_SNAPSHOT_UNSUPPORTED
;
3938 /* Only one output is allowed until we have the "tee" feature. */
3939 if (session
->snapshot
.nb_output
== 1) {
3940 ret
= LTTNG_ERR_SNAPSHOT_OUTPUT_EXIST
;
3944 new_output
= snapshot_output_alloc();
3946 ret
= LTTNG_ERR_NOMEM
;
3950 ret
= snapshot_output_init(session
, output
->max_size
, output
->name
,
3951 output
->ctrl_url
, output
->data_url
, session
->consumer
, new_output
,
3952 &session
->snapshot
);
3954 if (ret
== -ENOMEM
) {
3955 ret
= LTTNG_ERR_NOMEM
;
3957 ret
= LTTNG_ERR_INVALID
;
3963 snapshot_add_output(&session
->snapshot
, new_output
);
3965 *id
= new_output
->id
;
3972 snapshot_output_destroy(new_output
);
3978 * Command LTTNG_SNAPSHOT_DEL_OUTPUT from lib lttng ctl.
3980 * Return LTTNG_OK on success or else a LTTNG_ERR code.
3982 int cmd_snapshot_del_output(struct ltt_session
*session
,
3983 const struct lttng_snapshot_output
*output
)
3986 struct snapshot_output
*sout
= NULL
;
3994 * Permission denied to create an output if the session is not
3995 * set in no output mode.
3997 if (session
->output_traces
) {
3998 ret
= LTTNG_ERR_NOT_SNAPSHOT_SESSION
;
4003 DBG("Cmd snapshot del output id %" PRIu32
" for session %s", output
->id
,
4005 sout
= snapshot_find_output_by_id(output
->id
, &session
->snapshot
);
4006 } else if (*output
->name
!= '\0') {
4007 DBG("Cmd snapshot del output name %s for session %s", output
->name
,
4009 sout
= snapshot_find_output_by_name(output
->name
, &session
->snapshot
);
4012 ret
= LTTNG_ERR_INVALID
;
4016 snapshot_delete_output(&session
->snapshot
, sout
);
4017 snapshot_output_destroy(sout
);
4026 * Command LTTNG_SNAPSHOT_LIST_OUTPUT from lib lttng ctl.
4028 * If no output is available, outputs is untouched and 0 is returned.
4030 * Return the size of the newly allocated outputs or a negative LTTNG_ERR code.
4032 ssize_t
cmd_snapshot_list_outputs(struct ltt_session
*session
,
4033 struct lttng_snapshot_output
**outputs
)
4036 struct lttng_snapshot_output
*list
= NULL
;
4037 struct lttng_ht_iter iter
;
4038 struct snapshot_output
*output
;
4043 DBG("Cmd snapshot list outputs for session %s", session
->name
);
4046 * Permission denied to create an output if the session is not
4047 * set in no output mode.
4049 if (session
->output_traces
) {
4050 ret
= -LTTNG_ERR_NOT_SNAPSHOT_SESSION
;
4054 if (session
->snapshot
.nb_output
== 0) {
4059 list
= zmalloc(session
->snapshot
.nb_output
* sizeof(*list
));
4061 ret
= -LTTNG_ERR_NOMEM
;
4065 /* Copy list from session to the new list object. */
4067 cds_lfht_for_each_entry(session
->snapshot
.output_ht
->ht
, &iter
.iter
,
4068 output
, node
.node
) {
4069 assert(output
->consumer
);
4070 list
[idx
].id
= output
->id
;
4071 list
[idx
].max_size
= output
->max_size
;
4072 if (lttng_strncpy(list
[idx
].name
, output
->name
,
4073 sizeof(list
[idx
].name
))) {
4074 ret
= -LTTNG_ERR_INVALID
;
4077 if (output
->consumer
->type
== CONSUMER_DST_LOCAL
) {
4078 if (lttng_strncpy(list
[idx
].ctrl_url
,
4079 output
->consumer
->dst
.session_root_path
,
4080 sizeof(list
[idx
].ctrl_url
))) {
4081 ret
= -LTTNG_ERR_INVALID
;
4086 ret
= uri_to_str_url(&output
->consumer
->dst
.net
.control
,
4087 list
[idx
].ctrl_url
, sizeof(list
[idx
].ctrl_url
));
4089 ret
= -LTTNG_ERR_NOMEM
;
4094 ret
= uri_to_str_url(&output
->consumer
->dst
.net
.data
,
4095 list
[idx
].data_url
, sizeof(list
[idx
].data_url
));
4097 ret
= -LTTNG_ERR_NOMEM
;
4106 ret
= session
->snapshot
.nb_output
;
4115 * Check if we can regenerate the metadata for this session.
4116 * Only kernel, UST per-uid and non-live sessions are supported.
4118 * Return 0 if the metadata can be generated, a LTTNG_ERR code otherwise.
4121 int check_regenerate_metadata_support(struct ltt_session
*session
)
4127 if (session
->live_timer
!= 0) {
4128 ret
= LTTNG_ERR_LIVE_SESSION
;
4131 if (!session
->active
) {
4132 ret
= LTTNG_ERR_SESSION_NOT_STARTED
;
4135 if (session
->ust_session
) {
4136 switch (session
->ust_session
->buffer_type
) {
4137 case LTTNG_BUFFER_PER_UID
:
4139 case LTTNG_BUFFER_PER_PID
:
4140 ret
= LTTNG_ERR_PER_PID_SESSION
;
4144 ret
= LTTNG_ERR_UNK
;
4148 if (session
->consumer
->type
== CONSUMER_DST_NET
&&
4149 session
->consumer
->relay_minor_version
< 8) {
4150 ret
= LTTNG_ERR_RELAYD_VERSION_FAIL
;
4160 int clear_metadata_file(int fd
)
4165 lseek_ret
= lseek(fd
, 0, SEEK_SET
);
4166 if (lseek_ret
< 0) {
4172 ret
= ftruncate(fd
, 0);
4174 PERROR("ftruncate");
4183 int ust_regenerate_metadata(struct ltt_ust_session
*usess
)
4186 struct buffer_reg_uid
*uid_reg
= NULL
;
4187 struct buffer_reg_session
*session_reg
= NULL
;
4190 cds_list_for_each_entry(uid_reg
, &usess
->buffer_reg_uid_list
, lnode
) {
4191 struct ust_registry_session
*registry
;
4192 struct ust_registry_channel
*chan
;
4193 struct lttng_ht_iter iter_chan
;
4195 session_reg
= uid_reg
->registry
;
4196 registry
= session_reg
->reg
.ust
;
4198 pthread_mutex_lock(®istry
->lock
);
4199 registry
->metadata_len_sent
= 0;
4200 memset(registry
->metadata
, 0, registry
->metadata_alloc_len
);
4201 registry
->metadata_len
= 0;
4202 registry
->metadata_version
++;
4203 if (registry
->metadata_fd
> 0) {
4204 /* Clear the metadata file's content. */
4205 ret
= clear_metadata_file(registry
->metadata_fd
);
4207 pthread_mutex_unlock(®istry
->lock
);
4212 ret
= ust_metadata_session_statedump(registry
, NULL
,
4213 registry
->major
, registry
->minor
);
4215 pthread_mutex_unlock(®istry
->lock
);
4216 ERR("Failed to generate session metadata (err = %d)",
4220 cds_lfht_for_each_entry(registry
->channels
->ht
, &iter_chan
.iter
,
4222 struct ust_registry_event
*event
;
4223 struct lttng_ht_iter iter_event
;
4225 ret
= ust_metadata_channel_statedump(registry
, chan
);
4227 pthread_mutex_unlock(®istry
->lock
);
4228 ERR("Failed to generate channel metadata "
4232 cds_lfht_for_each_entry(chan
->ht
->ht
, &iter_event
.iter
,
4234 ret
= ust_metadata_event_statedump(registry
,
4237 pthread_mutex_unlock(®istry
->lock
);
4238 ERR("Failed to generate event metadata "
4244 pthread_mutex_unlock(®istry
->lock
);
4253 * Command LTTNG_REGENERATE_METADATA from the lttng-ctl library.
4255 * Ask the consumer to truncate the existing metadata file(s) and
4256 * then regenerate the metadata. Live and per-pid sessions are not
4257 * supported and return an error.
4259 * Return 0 on success or else a LTTNG_ERR code.
4261 int cmd_regenerate_metadata(struct ltt_session
*session
)
4267 ret
= check_regenerate_metadata_support(session
);
4272 if (session
->kernel_session
) {
4273 ret
= kernctl_session_regenerate_metadata(
4274 session
->kernel_session
->fd
);
4276 ERR("Failed to regenerate the kernel metadata");
4281 if (session
->ust_session
) {
4282 ret
= ust_regenerate_metadata(session
->ust_session
);
4284 ERR("Failed to regenerate the UST metadata");
4288 DBG("Cmd metadata regenerate for session %s", session
->name
);
4296 * Command LTTNG_REGENERATE_STATEDUMP from the lttng-ctl library.
4298 * Ask the tracer to regenerate a new statedump.
4300 * Return 0 on success or else a LTTNG_ERR code.
4302 int cmd_regenerate_statedump(struct ltt_session
*session
)
4308 if (!session
->active
) {
4309 ret
= LTTNG_ERR_SESSION_NOT_STARTED
;
4313 if (session
->kernel_session
) {
4314 ret
= kernctl_session_regenerate_statedump(
4315 session
->kernel_session
->fd
);
4317 * Currently, the statedump in kernel can only fail if out
4321 if (ret
== -ENOMEM
) {
4322 ret
= LTTNG_ERR_REGEN_STATEDUMP_NOMEM
;
4324 ret
= LTTNG_ERR_REGEN_STATEDUMP_FAIL
;
4326 ERR("Failed to regenerate the kernel statedump");
4331 if (session
->ust_session
) {
4332 ret
= ust_app_regenerate_statedump_all(session
->ust_session
);
4334 * Currently, the statedump in UST always returns 0.
4337 ret
= LTTNG_ERR_REGEN_STATEDUMP_FAIL
;
4338 ERR("Failed to regenerate the UST statedump");
4342 DBG("Cmd regenerate statedump for session %s", session
->name
);
4349 int cmd_register_trigger(struct command_ctx
*cmd_ctx
, int sock
,
4350 struct notification_thread_handle
*notification_thread
)
4354 ssize_t sock_recv_len
;
4355 struct lttng_trigger
*trigger
= NULL
;
4356 struct lttng_payload trigger_payload
;
4358 lttng_payload_init(&trigger_payload
);
4359 trigger_len
= (size_t) cmd_ctx
->lsm
->u
.trigger
.length
;
4360 ret
= lttng_dynamic_buffer_set_size(
4361 &trigger_payload
.buffer
, trigger_len
);
4363 ret
= LTTNG_ERR_NOMEM
;
4367 sock_recv_len
= lttcomm_recv_unix_sock(
4368 sock
, trigger_payload
.buffer
.data
, trigger_len
);
4369 if (sock_recv_len
< 0 || sock_recv_len
!= trigger_len
) {
4370 ERR("Failed to receive \"register trigger\" command payload");
4371 /* TODO: should this be a new error enum ? */
4372 ret
= LTTNG_ERR_INVALID_TRIGGER
;
4377 struct lttng_payload_view view
=
4378 lttng_payload_view_from_payload(
4379 &trigger_payload
, 0, -1);
4381 if (lttng_trigger_create_from_payload(&view
, &trigger
) !=
4383 ERR("Invalid trigger payload received in \"register trigger\" command");
4384 ret
= LTTNG_ERR_INVALID_TRIGGER
;
4389 ret
= notification_thread_command_register_trigger(notification_thread
,
4391 /* Ownership of trigger was transferred. */
4394 lttng_trigger_destroy(trigger
);
4395 lttng_payload_reset(&trigger_payload
);
4399 int cmd_unregister_trigger(struct command_ctx
*cmd_ctx
, int sock
,
4400 struct notification_thread_handle
*notification_thread
)
4404 ssize_t sock_recv_len
;
4405 struct lttng_trigger
*trigger
= NULL
;
4406 struct lttng_payload trigger_payload
;
4408 lttng_payload_init(&trigger_payload
);
4409 trigger_len
= (size_t) cmd_ctx
->lsm
->u
.trigger
.length
;
4410 ret
= lttng_dynamic_buffer_set_size(
4411 &trigger_payload
.buffer
, trigger_len
);
4413 ret
= LTTNG_ERR_NOMEM
;
4417 sock_recv_len
= lttcomm_recv_unix_sock(
4418 sock
, trigger_payload
.buffer
.data
, trigger_len
);
4419 if (sock_recv_len
< 0 || sock_recv_len
!= trigger_len
) {
4420 ERR("Failed to receive \"unregister trigger\" command payload");
4421 /* TODO: should this be a new error enum ? */
4422 ret
= LTTNG_ERR_INVALID_TRIGGER
;
4427 struct lttng_payload_view view
=
4428 lttng_payload_view_from_payload(
4429 &trigger_payload
, 0, -1);
4431 if (lttng_trigger_create_from_payload(&view
, &trigger
) !=
4433 ERR("Invalid trigger payload received in \"unregister trigger\" command");
4434 ret
= LTTNG_ERR_INVALID_TRIGGER
;
4439 ret
= notification_thread_command_unregister_trigger(notification_thread
,
4442 lttng_trigger_destroy(trigger
);
4443 lttng_payload_reset(&trigger_payload
);
4448 * Send relayd sockets from snapshot output to consumer. Ignore request if the
4449 * snapshot output is *not* set with a remote destination.
4451 * Return LTTNG_OK on success or a LTTNG_ERR code.
4453 static enum lttng_error_code
set_relayd_for_snapshot(
4454 struct consumer_output
*output
,
4455 const struct ltt_session
*session
)
4457 enum lttng_error_code status
= LTTNG_OK
;
4458 struct lttng_ht_iter iter
;
4459 struct consumer_socket
*socket
;
4460 LTTNG_OPTIONAL(uint64_t) current_chunk_id
= {};
4461 const char *base_path
;
4466 DBG2("Set relayd object from snapshot output");
4468 if (session
->current_trace_chunk
) {
4469 enum lttng_trace_chunk_status chunk_status
=
4470 lttng_trace_chunk_get_id(
4471 session
->current_trace_chunk
,
4472 ¤t_chunk_id
.value
);
4474 if (chunk_status
== LTTNG_TRACE_CHUNK_STATUS_OK
) {
4475 current_chunk_id
.is_set
= true;
4477 ERR("Failed to get current trace chunk id");
4478 status
= LTTNG_ERR_UNK
;
4483 /* Ignore if snapshot consumer output is not network. */
4484 if (output
->type
!= CONSUMER_DST_NET
) {
4489 * The snapshot record URI base path overrides the session
4492 if (output
->dst
.net
.control
.subdir
[0] != '\0') {
4493 base_path
= output
->dst
.net
.control
.subdir
;
4495 base_path
= session
->base_path
;
4499 * For each consumer socket, create and send the relayd object of the
4503 cds_lfht_for_each_entry(output
->socks
->ht
, &iter
.iter
,
4504 socket
, node
.node
) {
4505 pthread_mutex_lock(socket
->lock
);
4506 status
= send_consumer_relayd_sockets(0, session
->id
,
4508 session
->name
, session
->hostname
,
4510 session
->live_timer
,
4511 current_chunk_id
.is_set
? ¤t_chunk_id
.value
: NULL
,
4512 session
->creation_time
,
4513 session
->name_contains_creation_time
);
4514 pthread_mutex_unlock(socket
->lock
);
4515 if (status
!= LTTNG_OK
) {
4527 * Record a kernel snapshot.
4529 * Return LTTNG_OK on success or a LTTNG_ERR code.
4531 static enum lttng_error_code
record_kernel_snapshot(
4532 struct ltt_kernel_session
*ksess
,
4533 const struct consumer_output
*output
,
4534 const struct ltt_session
*session
,
4535 int wait
, uint64_t nb_packets_per_stream
)
4537 enum lttng_error_code status
;
4543 status
= kernel_snapshot_record(
4544 ksess
, output
, wait
, nb_packets_per_stream
);
4549 * Record a UST snapshot.
4551 * Returns LTTNG_OK on success or a LTTNG_ERR error code.
4553 static enum lttng_error_code
record_ust_snapshot(struct ltt_ust_session
*usess
,
4554 const struct consumer_output
*output
,
4555 const struct ltt_session
*session
,
4556 int wait
, uint64_t nb_packets_per_stream
)
4558 enum lttng_error_code status
;
4564 status
= ust_app_snapshot_record(
4565 usess
, output
, wait
, nb_packets_per_stream
);
4570 uint64_t get_session_size_one_more_packet_per_stream(
4571 const struct ltt_session
*session
, uint64_t cur_nr_packets
)
4573 uint64_t tot_size
= 0;
4575 if (session
->kernel_session
) {
4576 struct ltt_kernel_channel
*chan
;
4577 const struct ltt_kernel_session
*ksess
=
4578 session
->kernel_session
;
4580 cds_list_for_each_entry(chan
, &ksess
->channel_list
.head
, list
) {
4581 if (cur_nr_packets
>= chan
->channel
->attr
.num_subbuf
) {
4583 * Don't take channel into account if we
4584 * already grab all its packets.
4588 tot_size
+= chan
->channel
->attr
.subbuf_size
4589 * chan
->stream_count
;
4593 if (session
->ust_session
) {
4594 const struct ltt_ust_session
*usess
= session
->ust_session
;
4596 tot_size
+= ust_app_get_size_one_more_packet_per_stream(usess
,
4604 * Calculate the number of packets we can grab from each stream that
4605 * fits within the overall snapshot max size.
4607 * Returns -1 on error, 0 means infinite number of packets, else > 0 is
4608 * the number of packets per stream.
4610 * TODO: this approach is not perfect: we consider the worse case
4611 * (packet filling the sub-buffers) as an upper bound, but we could do
4612 * better if we do this calculation while we actually grab the packet
4613 * content: we would know how much padding we don't actually store into
4616 * This algorithm is currently bounded by the number of packets per
4619 * Since we call this algorithm before actually grabbing the data, it's
4620 * an approximation: for instance, applications could appear/disappear
4621 * in between this call and actually grabbing data.
4624 int64_t get_session_nb_packets_per_stream(const struct ltt_session
*session
,
4628 uint64_t cur_nb_packets
= 0;
4631 return 0; /* Infinite */
4634 size_left
= max_size
;
4636 uint64_t one_more_packet_tot_size
;
4638 one_more_packet_tot_size
= get_session_size_one_more_packet_per_stream(
4639 session
, cur_nb_packets
);
4640 if (!one_more_packet_tot_size
) {
4641 /* We are already grabbing all packets. */
4644 size_left
-= one_more_packet_tot_size
;
4645 if (size_left
< 0) {
4650 if (!cur_nb_packets
&& size_left
!= max_size
) {
4651 /* Not enough room to grab one packet of each stream, error. */
4654 return cur_nb_packets
;
4658 enum lttng_error_code
snapshot_record(struct ltt_session
*session
,
4659 const struct snapshot_output
*snapshot_output
, int wait
)
4661 int64_t nb_packets_per_stream
;
4662 char snapshot_chunk_name
[LTTNG_NAME_MAX
];
4664 enum lttng_error_code ret_code
= LTTNG_OK
;
4665 struct lttng_trace_chunk
*snapshot_trace_chunk
;
4666 struct consumer_output
*original_ust_consumer_output
= NULL
;
4667 struct consumer_output
*original_kernel_consumer_output
= NULL
;
4668 struct consumer_output
*snapshot_ust_consumer_output
= NULL
;
4669 struct consumer_output
*snapshot_kernel_consumer_output
= NULL
;
4671 ret
= snprintf(snapshot_chunk_name
, sizeof(snapshot_chunk_name
),
4673 snapshot_output
->name
,
4674 snapshot_output
->datetime
,
4675 snapshot_output
->nb_snapshot
);
4676 if (ret
< 0 || ret
>= sizeof(snapshot_chunk_name
)) {
4677 ERR("Failed to format snapshot name");
4678 ret_code
= LTTNG_ERR_INVALID
;
4681 DBG("Recording snapshot \"%s\" for session \"%s\" with chunk name \"%s\"",
4682 snapshot_output
->name
, session
->name
,
4683 snapshot_chunk_name
);
4684 if (!session
->kernel_session
&& !session
->ust_session
) {
4685 ERR("Failed to record snapshot as no channels exist");
4686 ret_code
= LTTNG_ERR_NO_CHANNEL
;
4690 if (session
->kernel_session
) {
4691 original_kernel_consumer_output
=
4692 session
->kernel_session
->consumer
;
4693 snapshot_kernel_consumer_output
=
4694 consumer_copy_output(snapshot_output
->consumer
);
4695 strcpy(snapshot_kernel_consumer_output
->chunk_path
,
4696 snapshot_chunk_name
);
4697 ret
= consumer_copy_sockets(snapshot_kernel_consumer_output
,
4698 original_kernel_consumer_output
);
4700 ERR("Failed to copy consumer sockets from snapshot output configuration");
4701 ret_code
= LTTNG_ERR_NOMEM
;
4704 ret_code
= set_relayd_for_snapshot(
4705 snapshot_kernel_consumer_output
, session
);
4706 if (ret_code
!= LTTNG_OK
) {
4707 ERR("Failed to setup relay daemon for kernel tracer snapshot");
4710 session
->kernel_session
->consumer
=
4711 snapshot_kernel_consumer_output
;
4713 if (session
->ust_session
) {
4714 original_ust_consumer_output
= session
->ust_session
->consumer
;
4715 snapshot_ust_consumer_output
=
4716 consumer_copy_output(snapshot_output
->consumer
);
4717 strcpy(snapshot_ust_consumer_output
->chunk_path
,
4718 snapshot_chunk_name
);
4719 ret
= consumer_copy_sockets(snapshot_ust_consumer_output
,
4720 original_ust_consumer_output
);
4722 ERR("Failed to copy consumer sockets from snapshot output configuration");
4723 ret_code
= LTTNG_ERR_NOMEM
;
4726 ret_code
= set_relayd_for_snapshot(
4727 snapshot_ust_consumer_output
, session
);
4728 if (ret_code
!= LTTNG_OK
) {
4729 ERR("Failed to setup relay daemon for userspace tracer snapshot");
4732 session
->ust_session
->consumer
=
4733 snapshot_ust_consumer_output
;
4736 snapshot_trace_chunk
= session_create_new_trace_chunk(session
,
4737 snapshot_kernel_consumer_output
?:
4738 snapshot_ust_consumer_output
,
4739 consumer_output_get_base_path(
4740 snapshot_output
->consumer
),
4741 snapshot_chunk_name
);
4742 if (!snapshot_trace_chunk
) {
4743 ERR("Failed to create temporary trace chunk to record a snapshot of session \"%s\"",
4745 ret_code
= LTTNG_ERR_CREATE_DIR_FAIL
;
4748 assert(!session
->current_trace_chunk
);
4749 ret
= session_set_trace_chunk(session
, snapshot_trace_chunk
, NULL
);
4750 lttng_trace_chunk_put(snapshot_trace_chunk
);
4751 snapshot_trace_chunk
= NULL
;
4753 ERR("Failed to set temporary trace chunk to record a snapshot of session \"%s\"",
4755 ret_code
= LTTNG_ERR_CREATE_TRACE_CHUNK_FAIL_CONSUMER
;
4759 nb_packets_per_stream
= get_session_nb_packets_per_stream(session
,
4760 snapshot_output
->max_size
);
4761 if (nb_packets_per_stream
< 0) {
4762 ret_code
= LTTNG_ERR_MAX_SIZE_INVALID
;
4763 goto error_close_trace_chunk
;
4766 if (session
->kernel_session
) {
4767 ret_code
= record_kernel_snapshot(session
->kernel_session
,
4768 snapshot_kernel_consumer_output
, session
,
4769 wait
, nb_packets_per_stream
);
4770 if (ret_code
!= LTTNG_OK
) {
4771 goto error_close_trace_chunk
;
4775 if (session
->ust_session
) {
4776 ret_code
= record_ust_snapshot(session
->ust_session
,
4777 snapshot_ust_consumer_output
, session
,
4778 wait
, nb_packets_per_stream
);
4779 if (ret_code
!= LTTNG_OK
) {
4780 goto error_close_trace_chunk
;
4784 error_close_trace_chunk
:
4785 if (session_set_trace_chunk(session
, NULL
, &snapshot_trace_chunk
)) {
4786 ERR("Failed to release the current trace chunk of session \"%s\"",
4788 ret_code
= LTTNG_ERR_UNK
;
4791 if (session_close_trace_chunk(session
, snapshot_trace_chunk
,
4792 LTTNG_TRACE_CHUNK_COMMAND_TYPE_NO_OPERATION
, NULL
)) {
4794 * Don't goto end; make sure the chunk is closed for the session
4795 * to allow future snapshots.
4797 ERR("Failed to close snapshot trace chunk of session \"%s\"",
4799 ret_code
= LTTNG_ERR_CLOSE_TRACE_CHUNK_FAIL_CONSUMER
;
4802 if (original_ust_consumer_output
) {
4803 session
->ust_session
->consumer
= original_ust_consumer_output
;
4805 if (original_kernel_consumer_output
) {
4806 session
->kernel_session
->consumer
=
4807 original_kernel_consumer_output
;
4809 consumer_output_put(snapshot_ust_consumer_output
);
4810 consumer_output_put(snapshot_kernel_consumer_output
);
4815 * Command LTTNG_SNAPSHOT_RECORD from lib lttng ctl.
4817 * The wait parameter is ignored so this call always wait for the snapshot to
4818 * complete before returning.
4820 * Return LTTNG_OK on success or else a LTTNG_ERR code.
4822 int cmd_snapshot_record(struct ltt_session
*session
,
4823 const struct lttng_snapshot_output
*output
, int wait
)
4825 enum lttng_error_code cmd_ret
= LTTNG_OK
;
4827 unsigned int snapshot_success
= 0;
4829 struct snapshot_output
*tmp_output
= NULL
;
4834 DBG("Cmd snapshot record for session %s", session
->name
);
4836 /* Get the datetime for the snapshot output directory. */
4837 ret
= utils_get_current_time_str("%Y%m%d-%H%M%S", datetime
,
4840 cmd_ret
= LTTNG_ERR_INVALID
;
4845 * Permission denied to create an output if the session is not
4846 * set in no output mode.
4848 if (session
->output_traces
) {
4849 cmd_ret
= LTTNG_ERR_NOT_SNAPSHOT_SESSION
;
4853 /* The session needs to be started at least once. */
4854 if (!session
->has_been_started
) {
4855 cmd_ret
= LTTNG_ERR_START_SESSION_ONCE
;
4859 /* Use temporary output for the session. */
4860 if (*output
->ctrl_url
!= '\0') {
4861 tmp_output
= snapshot_output_alloc();
4863 cmd_ret
= LTTNG_ERR_NOMEM
;
4867 ret
= snapshot_output_init(session
, output
->max_size
,
4869 output
->ctrl_url
, output
->data_url
,
4873 if (ret
== -ENOMEM
) {
4874 cmd_ret
= LTTNG_ERR_NOMEM
;
4876 cmd_ret
= LTTNG_ERR_INVALID
;
4880 /* Use the global session count for the temporary snapshot. */
4881 tmp_output
->nb_snapshot
= session
->snapshot
.nb_snapshot
;
4883 /* Use the global datetime */
4884 memcpy(tmp_output
->datetime
, datetime
, sizeof(datetime
));
4885 cmd_ret
= snapshot_record(session
, tmp_output
, wait
);
4886 if (cmd_ret
!= LTTNG_OK
) {
4889 snapshot_success
= 1;
4891 struct snapshot_output
*sout
;
4892 struct lttng_ht_iter iter
;
4895 cds_lfht_for_each_entry(session
->snapshot
.output_ht
->ht
,
4896 &iter
.iter
, sout
, node
.node
) {
4897 struct snapshot_output output_copy
;
4900 * Make a local copy of the output and override output
4901 * parameters with those provided as part of the
4904 memcpy(&output_copy
, sout
, sizeof(output_copy
));
4906 if (output
->max_size
!= (uint64_t) -1ULL) {
4907 output_copy
.max_size
= output
->max_size
;
4910 output_copy
.nb_snapshot
= session
->snapshot
.nb_snapshot
;
4911 memcpy(output_copy
.datetime
, datetime
,
4914 /* Use temporary name. */
4915 if (*output
->name
!= '\0') {
4916 if (lttng_strncpy(output_copy
.name
,
4918 sizeof(output_copy
.name
))) {
4919 cmd_ret
= LTTNG_ERR_INVALID
;
4925 cmd_ret
= snapshot_record(session
, &output_copy
, wait
);
4926 if (cmd_ret
!= LTTNG_OK
) {
4930 snapshot_success
= 1;
4935 if (snapshot_success
) {
4936 session
->snapshot
.nb_snapshot
++;
4938 cmd_ret
= LTTNG_ERR_SNAPSHOT_FAIL
;
4943 snapshot_output_destroy(tmp_output
);
4949 * Command LTTNG_SET_SESSION_SHM_PATH processed by the client thread.
4951 int cmd_set_session_shm_path(struct ltt_session
*session
,
4952 const char *shm_path
)
4958 * Can only set shm path before session is started.
4960 if (session
->has_been_started
) {
4961 return LTTNG_ERR_SESSION_STARTED
;
4964 strncpy(session
->shm_path
, shm_path
,
4965 sizeof(session
->shm_path
));
4966 session
->shm_path
[sizeof(session
->shm_path
) - 1] = '\0';
4972 * Command LTTNG_ROTATE_SESSION from the lttng-ctl library.
4974 * Ask the consumer to rotate the session output directory.
4975 * The session lock must be held.
4977 * Returns LTTNG_OK on success or else a negative LTTng error code.
4979 int cmd_rotate_session(struct ltt_session
*session
,
4980 struct lttng_rotate_session_return
*rotate_return
,
4981 bool quiet_rotation
,
4982 enum lttng_trace_chunk_command_type command
)
4985 uint64_t ongoing_rotation_chunk_id
;
4986 enum lttng_error_code cmd_ret
= LTTNG_OK
;
4987 struct lttng_trace_chunk
*chunk_being_archived
= NULL
;
4988 struct lttng_trace_chunk
*new_trace_chunk
= NULL
;
4989 enum lttng_trace_chunk_status chunk_status
;
4990 bool failed_to_rotate
= false;
4991 enum lttng_error_code rotation_fail_code
= LTTNG_OK
;
4995 if (!session
->has_been_started
) {
4996 cmd_ret
= LTTNG_ERR_START_SESSION_ONCE
;
5001 * Explicit rotation is not supported for live sessions.
5002 * However, live sessions can perform a quiet rotation on
5004 * Rotation is not supported for snapshot traces (no output).
5006 if ((!quiet_rotation
&& session
->live_timer
) ||
5007 !session
->output_traces
) {
5008 cmd_ret
= LTTNG_ERR_ROTATION_NOT_AVAILABLE
;
5012 /* Unsupported feature in lttng-relayd before 2.11. */
5013 if (!quiet_rotation
&& session
->consumer
->type
== CONSUMER_DST_NET
&&
5014 (session
->consumer
->relay_major_version
== 2 &&
5015 session
->consumer
->relay_minor_version
< 11)) {
5016 cmd_ret
= LTTNG_ERR_ROTATION_NOT_AVAILABLE_RELAY
;
5020 /* Unsupported feature in lttng-modules before 2.8 (lack of sequence number). */
5021 if (session
->kernel_session
&& !kernel_supports_ring_buffer_packet_sequence_number()) {
5022 cmd_ret
= LTTNG_ERR_ROTATION_NOT_AVAILABLE_KERNEL
;
5026 if (session
->rotation_state
== LTTNG_ROTATION_STATE_ONGOING
) {
5027 DBG("Refusing to launch a rotation; a rotation is already in progress for session %s",
5029 cmd_ret
= LTTNG_ERR_ROTATION_PENDING
;
5034 * After a stop, we only allow one rotation to occur, the other ones are
5035 * useless until a new start.
5037 if (session
->rotated_after_last_stop
) {
5038 DBG("Session \"%s\" was already rotated after stop, refusing rotation",
5040 cmd_ret
= LTTNG_ERR_ROTATION_MULTIPLE_AFTER_STOP
;
5045 * After a stop followed by a clear, disallow following rotations a they would
5046 * generate empty chunks.
5048 if (session
->cleared_after_last_stop
) {
5049 DBG("Session \"%s\" was already cleared after stop, refusing rotation",
5051 cmd_ret
= LTTNG_ERR_ROTATION_AFTER_STOP_CLEAR
;
5055 if (session
->active
) {
5056 new_trace_chunk
= session_create_new_trace_chunk(session
, NULL
,
5058 if (!new_trace_chunk
) {
5059 cmd_ret
= LTTNG_ERR_CREATE_DIR_FAIL
;
5065 * The current trace chunk becomes the chunk being archived.
5067 * After this point, "chunk_being_archived" must absolutely
5068 * be closed on the consumer(s), otherwise it will never be
5069 * cleaned-up, which will result in a leak.
5071 ret
= session_set_trace_chunk(session
, new_trace_chunk
,
5072 &chunk_being_archived
);
5074 cmd_ret
= LTTNG_ERR_CREATE_TRACE_CHUNK_FAIL_CONSUMER
;
5078 if (session
->kernel_session
) {
5079 cmd_ret
= kernel_rotate_session(session
);
5080 if (cmd_ret
!= LTTNG_OK
) {
5081 failed_to_rotate
= true;
5082 rotation_fail_code
= cmd_ret
;
5085 if (session
->ust_session
) {
5086 cmd_ret
= ust_app_rotate_session(session
);
5087 if (cmd_ret
!= LTTNG_OK
) {
5088 failed_to_rotate
= true;
5089 rotation_fail_code
= cmd_ret
;
5093 if (!session
->active
) {
5094 session
->rotated_after_last_stop
= true;
5097 if (!chunk_being_archived
) {
5098 DBG("Rotating session \"%s\" from a \"NULL\" trace chunk to a new trace chunk, skipping completion check",
5100 if (failed_to_rotate
) {
5101 cmd_ret
= rotation_fail_code
;
5108 session
->rotation_state
= LTTNG_ROTATION_STATE_ONGOING
;
5109 chunk_status
= lttng_trace_chunk_get_id(chunk_being_archived
,
5110 &ongoing_rotation_chunk_id
);
5111 assert(chunk_status
== LTTNG_TRACE_CHUNK_STATUS_OK
);
5113 ret
= session_close_trace_chunk(session
, chunk_being_archived
,
5114 command
, session
->last_chunk_path
);
5116 cmd_ret
= LTTNG_ERR_CLOSE_TRACE_CHUNK_FAIL_CONSUMER
;
5120 if (failed_to_rotate
) {
5121 cmd_ret
= rotation_fail_code
;
5125 session
->quiet_rotation
= quiet_rotation
;
5126 ret
= timer_session_rotation_pending_check_start(session
,
5127 DEFAULT_ROTATE_PENDING_TIMER
);
5129 cmd_ret
= LTTNG_ERR_UNK
;
5133 if (rotate_return
) {
5134 rotate_return
->rotation_id
= ongoing_rotation_chunk_id
;
5137 session
->chunk_being_archived
= chunk_being_archived
;
5138 chunk_being_archived
= NULL
;
5139 if (!quiet_rotation
) {
5140 ret
= notification_thread_command_session_rotation_ongoing(
5141 notification_thread_handle
,
5142 session
->name
, session
->uid
, session
->gid
,
5143 ongoing_rotation_chunk_id
);
5144 if (ret
!= LTTNG_OK
) {
5145 ERR("Failed to notify notification thread that a session rotation is ongoing for session %s",
5151 DBG("Cmd rotate session %s, archive_id %" PRIu64
" sent",
5152 session
->name
, ongoing_rotation_chunk_id
);
5154 lttng_trace_chunk_put(new_trace_chunk
);
5155 lttng_trace_chunk_put(chunk_being_archived
);
5156 ret
= (cmd_ret
== LTTNG_OK
) ? cmd_ret
: -((int) cmd_ret
);
5159 if (session_reset_rotation_state(session
,
5160 LTTNG_ROTATION_STATE_ERROR
)) {
5161 ERR("Failed to reset rotation state of session \"%s\"",
5168 * Command LTTNG_ROTATION_GET_INFO from the lttng-ctl library.
5170 * Check if the session has finished its rotation.
5172 * Return LTTNG_OK on success or else an LTTNG_ERR code.
5174 int cmd_rotate_get_info(struct ltt_session
*session
,
5175 struct lttng_rotation_get_info_return
*info_return
,
5176 uint64_t rotation_id
)
5178 enum lttng_error_code cmd_ret
= LTTNG_OK
;
5179 enum lttng_rotation_state rotation_state
;
5181 DBG("Cmd rotate_get_info session %s, rotation id %" PRIu64
, session
->name
,
5182 session
->most_recent_chunk_id
.value
);
5184 if (session
->chunk_being_archived
) {
5185 enum lttng_trace_chunk_status chunk_status
;
5188 chunk_status
= lttng_trace_chunk_get_id(
5189 session
->chunk_being_archived
,
5191 assert(chunk_status
== LTTNG_TRACE_CHUNK_STATUS_OK
);
5193 rotation_state
= rotation_id
== chunk_id
?
5194 LTTNG_ROTATION_STATE_ONGOING
:
5195 LTTNG_ROTATION_STATE_EXPIRED
;
5197 if (session
->last_archived_chunk_id
.is_set
&&
5198 rotation_id
!= session
->last_archived_chunk_id
.value
) {
5199 rotation_state
= LTTNG_ROTATION_STATE_EXPIRED
;
5201 rotation_state
= session
->rotation_state
;
5205 switch (rotation_state
) {
5206 case LTTNG_ROTATION_STATE_NO_ROTATION
:
5207 DBG("Reporting that no rotation has occurred within the lifetime of session \"%s\"",
5210 case LTTNG_ROTATION_STATE_EXPIRED
:
5211 DBG("Reporting that the rotation state of rotation id %" PRIu64
" of session \"%s\" has expired",
5212 rotation_id
, session
->name
);
5214 case LTTNG_ROTATION_STATE_ONGOING
:
5215 DBG("Reporting that rotation id %" PRIu64
" of session \"%s\" is still pending",
5216 rotation_id
, session
->name
);
5218 case LTTNG_ROTATION_STATE_COMPLETED
:
5222 char *current_tracing_path_reply
;
5223 size_t current_tracing_path_reply_len
;
5225 DBG("Reporting that rotation id %" PRIu64
" of session \"%s\" is completed",
5226 rotation_id
, session
->name
);
5228 switch (session_get_consumer_destination_type(session
)) {
5229 case CONSUMER_DST_LOCAL
:
5230 current_tracing_path_reply
=
5231 info_return
->location
.local
.absolute_path
;
5232 current_tracing_path_reply_len
=
5233 sizeof(info_return
->location
.local
.absolute_path
);
5234 info_return
->location_type
=
5235 (int8_t) LTTNG_TRACE_ARCHIVE_LOCATION_TYPE_LOCAL
;
5236 fmt_ret
= asprintf(&chunk_path
,
5237 "%s/" DEFAULT_ARCHIVED_TRACE_CHUNKS_DIRECTORY
"/%s",
5238 session_get_base_path(session
),
5239 session
->last_archived_chunk_name
);
5240 if (fmt_ret
== -1) {
5241 PERROR("Failed to format the path of the last archived trace chunk");
5242 info_return
->status
= LTTNG_ROTATION_STATUS_ERROR
;
5243 cmd_ret
= LTTNG_ERR_UNK
;
5247 case CONSUMER_DST_NET
:
5249 uint16_t ctrl_port
, data_port
;
5251 current_tracing_path_reply
=
5252 info_return
->location
.relay
.relative_path
;
5253 current_tracing_path_reply_len
=
5254 sizeof(info_return
->location
.relay
.relative_path
);
5255 /* Currently the only supported relay protocol. */
5256 info_return
->location
.relay
.protocol
=
5257 (int8_t) LTTNG_TRACE_ARCHIVE_LOCATION_RELAY_PROTOCOL_TYPE_TCP
;
5259 fmt_ret
= lttng_strncpy(info_return
->location
.relay
.host
,
5260 session_get_net_consumer_hostname(session
),
5261 sizeof(info_return
->location
.relay
.host
));
5263 ERR("Failed to copy host name to rotate_get_info reply");
5264 info_return
->status
= LTTNG_ROTATION_STATUS_ERROR
;
5265 cmd_ret
= LTTNG_ERR_SET_URL
;
5269 session_get_net_consumer_ports(session
, &ctrl_port
, &data_port
);
5270 info_return
->location
.relay
.ports
.control
= ctrl_port
;
5271 info_return
->location
.relay
.ports
.data
= data_port
;
5272 info_return
->location_type
=
5273 (int8_t) LTTNG_TRACE_ARCHIVE_LOCATION_TYPE_RELAY
;
5274 chunk_path
= strdup(session
->last_chunk_path
);
5276 ERR("Failed to allocate the path of the last archived trace chunk");
5277 info_return
->status
= LTTNG_ROTATION_STATUS_ERROR
;
5278 cmd_ret
= LTTNG_ERR_UNK
;
5287 fmt_ret
= lttng_strncpy(current_tracing_path_reply
,
5288 chunk_path
, current_tracing_path_reply_len
);
5291 ERR("Failed to copy path of the last archived trace chunk to rotate_get_info reply");
5292 info_return
->status
= LTTNG_ROTATION_STATUS_ERROR
;
5293 cmd_ret
= LTTNG_ERR_UNK
;
5299 case LTTNG_ROTATION_STATE_ERROR
:
5300 DBG("Reporting that an error occurred during rotation %" PRIu64
" of session \"%s\"",
5301 rotation_id
, session
->name
);
5309 info_return
->status
= (int32_t) rotation_state
;
5314 * Command LTTNG_ROTATION_SET_SCHEDULE from the lttng-ctl library.
5316 * Configure the automatic rotation parameters.
5317 * 'activate' to true means activate the rotation schedule type with 'new_value'.
5318 * 'activate' to false means deactivate the rotation schedule and validate that
5319 * 'new_value' has the same value as the currently active value.
5321 * Return 0 on success or else a positive LTTNG_ERR code.
5323 int cmd_rotation_set_schedule(struct ltt_session
*session
,
5324 bool activate
, enum lttng_rotation_schedule_type schedule_type
,
5326 struct notification_thread_handle
*notification_thread_handle
)
5329 uint64_t *parameter_value
;
5333 DBG("Cmd rotate set schedule session %s", session
->name
);
5335 if (session
->live_timer
|| !session
->output_traces
) {
5336 DBG("Failing ROTATION_SET_SCHEDULE command as the rotation feature is not available for this session");
5337 ret
= LTTNG_ERR_ROTATION_NOT_AVAILABLE
;
5341 switch (schedule_type
) {
5342 case LTTNG_ROTATION_SCHEDULE_TYPE_SIZE_THRESHOLD
:
5343 parameter_value
= &session
->rotate_size
;
5345 case LTTNG_ROTATION_SCHEDULE_TYPE_PERIODIC
:
5346 parameter_value
= &session
->rotate_timer_period
;
5347 if (new_value
>= UINT_MAX
) {
5348 DBG("Failing ROTATION_SET_SCHEDULE command as the value requested for a periodic rotation schedule is invalid: %" PRIu64
" > %u (UINT_MAX)",
5349 new_value
, UINT_MAX
);
5350 ret
= LTTNG_ERR_INVALID
;
5355 WARN("Failing ROTATION_SET_SCHEDULE command on unknown schedule type");
5356 ret
= LTTNG_ERR_INVALID
;
5360 /* Improper use of the API. */
5361 if (new_value
== -1ULL) {
5362 WARN("Failing ROTATION_SET_SCHEDULE command as the value requested is -1");
5363 ret
= LTTNG_ERR_INVALID
;
5368 * As indicated in struct ltt_session's comments, a value of == 0 means
5369 * this schedule rotation type is not in use.
5371 * Reject the command if we were asked to activate a schedule that was
5374 if (activate
&& *parameter_value
!= 0) {
5375 DBG("Failing ROTATION_SET_SCHEDULE (activate) command as the schedule is already active");
5376 ret
= LTTNG_ERR_ROTATION_SCHEDULE_SET
;
5381 * Reject the command if we were asked to deactivate a schedule that was
5384 if (!activate
&& *parameter_value
== 0) {
5385 DBG("Failing ROTATION_SET_SCHEDULE (deactivate) command as the schedule is already inactive");
5386 ret
= LTTNG_ERR_ROTATION_SCHEDULE_NOT_SET
;
5391 * Reject the command if we were asked to deactivate a schedule that
5394 if (!activate
&& *parameter_value
!= new_value
) {
5395 DBG("Failing ROTATION_SET_SCHEDULE (deactivate) command as an inexistant schedule was provided");
5396 ret
= LTTNG_ERR_ROTATION_SCHEDULE_NOT_SET
;
5400 *parameter_value
= activate
? new_value
: 0;
5402 switch (schedule_type
) {
5403 case LTTNG_ROTATION_SCHEDULE_TYPE_PERIODIC
:
5404 if (activate
&& session
->active
) {
5406 * Only start the timer if the session is active,
5407 * otherwise it will be started when the session starts.
5409 ret
= timer_session_rotation_schedule_timer_start(
5410 session
, new_value
);
5412 ERR("Failed to enable session rotation timer in ROTATION_SET_SCHEDULE command");
5413 ret
= LTTNG_ERR_UNK
;
5417 ret
= timer_session_rotation_schedule_timer_stop(
5420 ERR("Failed to disable session rotation timer in ROTATION_SET_SCHEDULE command");
5421 ret
= LTTNG_ERR_UNK
;
5426 case LTTNG_ROTATION_SCHEDULE_TYPE_SIZE_THRESHOLD
:
5428 ret
= subscribe_session_consumed_size_rotation(session
,
5429 new_value
, notification_thread_handle
);
5431 ERR("Failed to enable consumed-size notification in ROTATION_SET_SCHEDULE command");
5432 ret
= LTTNG_ERR_UNK
;
5436 ret
= unsubscribe_session_consumed_size_rotation(session
,
5437 notification_thread_handle
);
5439 ERR("Failed to disable consumed-size notification in ROTATION_SET_SCHEDULE command");
5440 ret
= LTTNG_ERR_UNK
;
5447 /* Would have been caught before. */
5459 /* Wait for a given path to be removed before continuing. */
5460 static enum lttng_error_code
wait_on_path(void *path_data
)
5462 const char *shm_path
= path_data
;
5464 DBG("Waiting for the shm path at %s to be removed before completing session destruction",
5470 ret
= stat(shm_path
, &st
);
5472 if (errno
!= ENOENT
) {
5473 PERROR("stat() returned an error while checking for the existence of the shm path");
5475 DBG("shm path no longer exists, completing the destruction of session");
5479 if (!S_ISDIR(st
.st_mode
)) {
5480 ERR("The type of shm path %s returned by stat() is not a directory; aborting the wait for shm path removal",
5485 usleep(SESSION_DESTROY_SHM_PATH_CHECK_DELAY_US
);
5491 * Returns a pointer to a handler to run on completion of a command.
5492 * Returns NULL if no handler has to be run for the last command executed.
5494 const struct cmd_completion_handler
*cmd_pop_completion_handler(void)
5496 struct cmd_completion_handler
*handler
= current_completion_handler
;
5498 current_completion_handler
= NULL
;
5503 * Init command subsystem.
5508 * Set network sequence index to 1 for streams to match a relayd
5509 * socket on the consumer side.
5511 pthread_mutex_lock(&relayd_net_seq_idx_lock
);
5512 relayd_net_seq_idx
= 1;
5513 pthread_mutex_unlock(&relayd_net_seq_idx_lock
);
5515 DBG("Command subsystem initialized");