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 * Open a packet in every stream of the session to ensure that viewers
2799 * can correctly identify the boundaries of the periods during which
2800 * tracing was active for this session.
2802 ret
= session_open_packets(session
);
2803 if (ret
!= LTTNG_OK
) {
2808 * Clear the flag that indicates that a rotation was done while the
2809 * session was stopped.
2811 session
->rotated_after_last_stop
= false;
2813 if (session
->rotate_timer_period
) {
2814 int int_ret
= timer_session_rotation_schedule_timer_start(
2815 session
, session
->rotate_timer_period
);
2818 ERR("Failed to enable rotate timer");
2819 ret
= LTTNG_ERR_UNK
;
2827 if (ret
== LTTNG_OK
) {
2828 /* Flag this after a successful start. */
2829 session
->has_been_started
|= 1;
2831 session
->active
= 0;
2832 /* Restore initial state on error. */
2833 session
->rotated_after_last_stop
=
2834 session_rotated_after_last_stop
;
2835 session
->cleared_after_last_stop
=
2836 session_cleared_after_last_stop
;
2843 * Command LTTNG_STOP_TRACE processed by the client thread.
2845 int cmd_stop_trace(struct ltt_session
*session
)
2848 struct ltt_kernel_session
*ksession
;
2849 struct ltt_ust_session
*usess
;
2853 DBG("Begin stop session \"%s\" (id %" PRIu64
")", session
->name
, session
->id
);
2855 ksession
= session
->kernel_session
;
2856 usess
= session
->ust_session
;
2858 /* Session is not active. Skip everythong and inform the client. */
2859 if (!session
->active
) {
2860 ret
= LTTNG_ERR_TRACE_ALREADY_STOPPED
;
2864 ret
= stop_kernel_session(ksession
);
2865 if (ret
!= LTTNG_OK
) {
2869 if (usess
&& usess
->active
) {
2870 ret
= ust_app_stop_trace_all(usess
);
2872 ret
= LTTNG_ERR_UST_STOP_FAIL
;
2877 DBG("Completed stop session \"%s\" (id %" PRIu64
")", session
->name
,
2879 /* Flag inactive after a successful stop. */
2880 session
->active
= 0;
2888 * Set the base_path of the session only if subdir of a control uris is set.
2889 * Return LTTNG_OK on success, otherwise LTTNG_ERR_*.
2891 static int set_session_base_path_from_uris(struct ltt_session
*session
,
2893 struct lttng_uri
*uris
)
2898 for (i
= 0; i
< nb_uri
; i
++) {
2899 if (uris
[i
].stype
!= LTTNG_STREAM_CONTROL
||
2900 uris
[i
].subdir
[0] == '\0') {
2901 /* Not interested in these URIs */
2905 if (session
->base_path
!= NULL
) {
2906 free(session
->base_path
);
2907 session
->base_path
= NULL
;
2910 /* Set session base_path */
2911 session
->base_path
= strdup(uris
[i
].subdir
);
2912 if (!session
->base_path
) {
2913 PERROR("Failed to copy base path \"%s\" to session \"%s\"",
2914 uris
[i
].subdir
, session
->name
);
2915 ret
= LTTNG_ERR_NOMEM
;
2918 DBG2("Setting base path \"%s\" for session \"%s\"",
2919 session
->base_path
, session
->name
);
2927 * Command LTTNG_SET_CONSUMER_URI processed by the client thread.
2929 int cmd_set_consumer_uri(struct ltt_session
*session
, size_t nb_uri
,
2930 struct lttng_uri
*uris
)
2933 struct ltt_kernel_session
*ksess
= session
->kernel_session
;
2934 struct ltt_ust_session
*usess
= session
->ust_session
;
2940 /* Can't set consumer URI if the session is active. */
2941 if (session
->active
) {
2942 ret
= LTTNG_ERR_TRACE_ALREADY_STARTED
;
2947 * Set the session base path if any. This is done inside
2948 * cmd_set_consumer_uri to preserve backward compatibility of the
2949 * previous session creation api vs the session descriptor api.
2951 ret
= set_session_base_path_from_uris(session
, nb_uri
, uris
);
2952 if (ret
!= LTTNG_OK
) {
2956 /* Set the "global" consumer URIs */
2957 for (i
= 0; i
< nb_uri
; i
++) {
2958 ret
= add_uri_to_consumer(session
, session
->consumer
, &uris
[i
],
2960 if (ret
!= LTTNG_OK
) {
2965 /* Set UST session URIs */
2966 if (session
->ust_session
) {
2967 for (i
= 0; i
< nb_uri
; i
++) {
2968 ret
= add_uri_to_consumer(session
,
2969 session
->ust_session
->consumer
,
2970 &uris
[i
], LTTNG_DOMAIN_UST
);
2971 if (ret
!= LTTNG_OK
) {
2977 /* Set kernel session URIs */
2978 if (session
->kernel_session
) {
2979 for (i
= 0; i
< nb_uri
; i
++) {
2980 ret
= add_uri_to_consumer(session
,
2981 session
->kernel_session
->consumer
,
2982 &uris
[i
], LTTNG_DOMAIN_KERNEL
);
2983 if (ret
!= LTTNG_OK
) {
2990 * Make sure to set the session in output mode after we set URI since a
2991 * session can be created without URL (thus flagged in no output mode).
2993 session
->output_traces
= 1;
2995 ksess
->output_traces
= 1;
2999 usess
->output_traces
= 1;
3010 enum lttng_error_code
set_session_output_from_descriptor(
3011 struct ltt_session
*session
,
3012 const struct lttng_session_descriptor
*descriptor
)
3015 enum lttng_error_code ret_code
= LTTNG_OK
;
3016 enum lttng_session_descriptor_type session_type
=
3017 lttng_session_descriptor_get_type(descriptor
);
3018 enum lttng_session_descriptor_output_type output_type
=
3019 lttng_session_descriptor_get_output_type(descriptor
);
3020 struct lttng_uri uris
[2] = {};
3021 size_t uri_count
= 0;
3023 switch (output_type
) {
3024 case LTTNG_SESSION_DESCRIPTOR_OUTPUT_TYPE_NONE
:
3026 case LTTNG_SESSION_DESCRIPTOR_OUTPUT_TYPE_LOCAL
:
3027 lttng_session_descriptor_get_local_output_uri(descriptor
,
3031 case LTTNG_SESSION_DESCRIPTOR_OUTPUT_TYPE_NETWORK
:
3032 lttng_session_descriptor_get_network_output_uris(descriptor
,
3033 &uris
[0], &uris
[1]);
3037 ret_code
= LTTNG_ERR_INVALID
;
3041 switch (session_type
) {
3042 case LTTNG_SESSION_DESCRIPTOR_TYPE_SNAPSHOT
:
3044 struct snapshot_output
*new_output
= NULL
;
3046 new_output
= snapshot_output_alloc();
3048 ret_code
= LTTNG_ERR_NOMEM
;
3052 ret
= snapshot_output_init_with_uri(session
,
3053 DEFAULT_SNAPSHOT_MAX_SIZE
,
3054 NULL
, uris
, uri_count
, session
->consumer
,
3055 new_output
, &session
->snapshot
);
3057 ret_code
= (ret
== -ENOMEM
) ?
3058 LTTNG_ERR_NOMEM
: LTTNG_ERR_INVALID
;
3059 snapshot_output_destroy(new_output
);
3062 snapshot_add_output(&session
->snapshot
, new_output
);
3065 case LTTNG_SESSION_DESCRIPTOR_TYPE_REGULAR
:
3066 case LTTNG_SESSION_DESCRIPTOR_TYPE_LIVE
:
3068 ret_code
= cmd_set_consumer_uri(session
, uri_count
, uris
);
3072 ret_code
= LTTNG_ERR_INVALID
;
3080 enum lttng_error_code
cmd_create_session_from_descriptor(
3081 struct lttng_session_descriptor
*descriptor
,
3082 const lttng_sock_cred
*creds
,
3083 const char *home_path
)
3086 enum lttng_error_code ret_code
;
3087 const char *session_name
;
3088 struct ltt_session
*new_session
= NULL
;
3089 enum lttng_session_descriptor_status descriptor_status
;
3091 session_lock_list();
3093 if (*home_path
!= '/') {
3094 ERR("Home path provided by client is not absolute");
3095 ret_code
= LTTNG_ERR_INVALID
;
3100 descriptor_status
= lttng_session_descriptor_get_session_name(
3101 descriptor
, &session_name
);
3102 switch (descriptor_status
) {
3103 case LTTNG_SESSION_DESCRIPTOR_STATUS_OK
:
3105 case LTTNG_SESSION_DESCRIPTOR_STATUS_UNSET
:
3106 session_name
= NULL
;
3109 ret_code
= LTTNG_ERR_INVALID
;
3113 ret_code
= session_create(session_name
, creds
->uid
, creds
->gid
,
3115 if (ret_code
!= LTTNG_OK
) {
3119 if (!session_name
) {
3120 ret
= lttng_session_descriptor_set_session_name(descriptor
,
3123 ret_code
= LTTNG_ERR_SESSION_FAIL
;
3128 if (!lttng_session_descriptor_is_output_destination_initialized(
3131 * Only include the session's creation time in the output
3132 * destination if the name of the session itself was
3133 * not auto-generated.
3135 ret_code
= lttng_session_descriptor_set_default_output(
3137 session_name
? &new_session
->creation_time
: NULL
,
3139 if (ret_code
!= LTTNG_OK
) {
3143 new_session
->has_user_specified_directory
=
3144 lttng_session_descriptor_has_output_directory(
3148 switch (lttng_session_descriptor_get_type(descriptor
)) {
3149 case LTTNG_SESSION_DESCRIPTOR_TYPE_SNAPSHOT
:
3150 new_session
->snapshot_mode
= 1;
3152 case LTTNG_SESSION_DESCRIPTOR_TYPE_LIVE
:
3153 new_session
->live_timer
=
3154 lttng_session_descriptor_live_get_timer_interval(
3161 ret_code
= set_session_output_from_descriptor(new_session
, descriptor
);
3162 if (ret_code
!= LTTNG_OK
) {
3165 new_session
->consumer
->enabled
= 1;
3166 ret_code
= LTTNG_OK
;
3168 /* Release reference provided by the session_create function. */
3169 session_put(new_session
);
3170 if (ret_code
!= LTTNG_OK
&& new_session
) {
3171 /* Release the global reference on error. */
3172 session_destroy(new_session
);
3174 session_unlock_list();
3178 enum lttng_error_code
cmd_create_session(struct command_ctx
*cmd_ctx
, int sock
,
3179 struct lttng_session_descriptor
**return_descriptor
)
3182 size_t payload_size
;
3183 struct lttng_dynamic_buffer payload
;
3184 struct lttng_buffer_view home_dir_view
;
3185 struct lttng_buffer_view session_descriptor_view
;
3186 struct lttng_session_descriptor
*session_descriptor
= NULL
;
3187 enum lttng_error_code ret_code
;
3189 lttng_dynamic_buffer_init(&payload
);
3190 if (cmd_ctx
->lsm
->u
.create_session
.home_dir_size
>=
3192 ret_code
= LTTNG_ERR_INVALID
;
3195 if (cmd_ctx
->lsm
->u
.create_session
.session_descriptor_size
>
3196 LTTNG_SESSION_DESCRIPTOR_MAX_LEN
) {
3197 ret_code
= LTTNG_ERR_INVALID
;
3201 payload_size
= cmd_ctx
->lsm
->u
.create_session
.home_dir_size
+
3202 cmd_ctx
->lsm
->u
.create_session
.session_descriptor_size
;
3203 ret
= lttng_dynamic_buffer_set_size(&payload
, payload_size
);
3205 ret_code
= LTTNG_ERR_NOMEM
;
3209 ret
= lttcomm_recv_unix_sock(sock
, payload
.data
, payload
.size
);
3211 ERR("Reception of session descriptor failed, aborting.");
3212 ret_code
= LTTNG_ERR_SESSION_FAIL
;
3216 home_dir_view
= lttng_buffer_view_from_dynamic_buffer(
3219 cmd_ctx
->lsm
->u
.create_session
.home_dir_size
);
3220 session_descriptor_view
= lttng_buffer_view_from_dynamic_buffer(
3222 cmd_ctx
->lsm
->u
.create_session
.home_dir_size
,
3223 cmd_ctx
->lsm
->u
.create_session
.session_descriptor_size
);
3225 ret
= lttng_session_descriptor_create_from_buffer(
3226 &session_descriptor_view
, &session_descriptor
);
3228 ERR("Failed to create session descriptor from payload of \"create session\" command");
3229 ret_code
= LTTNG_ERR_INVALID
;
3234 * Sets the descriptor's auto-generated properties (name, output) if
3237 ret_code
= cmd_create_session_from_descriptor(session_descriptor
,
3239 home_dir_view
.size
? home_dir_view
.data
: NULL
);
3240 if (ret_code
!= LTTNG_OK
) {
3244 ret_code
= LTTNG_OK
;
3245 *return_descriptor
= session_descriptor
;
3246 session_descriptor
= NULL
;
3248 lttng_dynamic_buffer_reset(&payload
);
3249 lttng_session_descriptor_destroy(session_descriptor
);
3254 void cmd_destroy_session_reply(const struct ltt_session
*session
,
3255 void *_reply_context
)
3259 const struct cmd_destroy_session_reply_context
*reply_context
=
3261 struct lttng_dynamic_buffer payload
;
3262 struct lttcomm_session_destroy_command_header cmd_header
;
3263 struct lttng_trace_archive_location
*location
= NULL
;
3264 struct lttcomm_lttng_msg llm
= {
3265 .cmd_type
= LTTNG_DESTROY_SESSION
,
3266 .ret_code
= reply_context
->destruction_status
,
3269 sizeof(struct lttcomm_session_destroy_command_header
),
3272 size_t payload_size_before_location
;
3274 lttng_dynamic_buffer_init(&payload
);
3276 ret
= lttng_dynamic_buffer_append(&payload
, &llm
, sizeof(llm
));
3278 ERR("Failed to append session destruction message");
3282 cmd_header
.rotation_state
=
3283 (int32_t) (reply_context
->implicit_rotation_on_destroy
?
3284 session
->rotation_state
:
3285 LTTNG_ROTATION_STATE_NO_ROTATION
);
3286 ret
= lttng_dynamic_buffer_append(&payload
, &cmd_header
,
3287 sizeof(cmd_header
));
3289 ERR("Failed to append session destruction command header");
3293 if (!reply_context
->implicit_rotation_on_destroy
) {
3294 DBG("No implicit rotation performed during the destruction of session \"%s\", sending reply",
3298 if (session
->rotation_state
!= LTTNG_ROTATION_STATE_COMPLETED
) {
3299 DBG("Rotation state of session \"%s\" is not \"completed\", sending session destruction reply",
3304 location
= session_get_trace_archive_location(session
);
3306 ERR("Failed to get the location of the trace archive produced during the destruction of session \"%s\"",
3311 payload_size_before_location
= payload
.size
;
3312 comm_ret
= lttng_trace_archive_location_serialize(location
,
3315 ERR("Failed to serialize the location of the trace archive produced during the destruction of session \"%s\"",
3319 /* Update the message to indicate the location's length. */
3320 ((struct lttcomm_lttng_msg
*) payload
.data
)->data_size
=
3321 payload
.size
- payload_size_before_location
;
3323 comm_ret
= lttcomm_send_unix_sock(reply_context
->reply_sock_fd
,
3324 payload
.data
, payload
.size
);
3325 if (comm_ret
!= (ssize_t
) payload
.size
) {
3326 ERR("Failed to send result of the destruction of session \"%s\" to client",
3330 ret
= close(reply_context
->reply_sock_fd
);
3332 PERROR("Failed to close client socket in deferred session destroy reply");
3334 lttng_dynamic_buffer_reset(&payload
);
3335 free(_reply_context
);
3339 * Command LTTNG_DESTROY_SESSION processed by the client thread.
3341 * Called with session lock held.
3343 int cmd_destroy_session(struct ltt_session
*session
,
3344 struct notification_thread_handle
*notification_thread_handle
,
3348 enum lttng_error_code destruction_last_error
= LTTNG_OK
;
3349 struct cmd_destroy_session_reply_context
*reply_context
= NULL
;
3352 reply_context
= zmalloc(sizeof(*reply_context
));
3353 if (!reply_context
) {
3354 ret
= LTTNG_ERR_NOMEM
;
3357 reply_context
->reply_sock_fd
= *sock_fd
;
3363 DBG("Begin destroy session %s (id %" PRIu64
")", session
->name
,
3365 if (session
->active
) {
3366 DBG("Session \"%s\" is active, attempting to stop it before destroying it",
3368 ret
= cmd_stop_trace(session
);
3369 if (ret
!= LTTNG_OK
&& ret
!= LTTNG_ERR_TRACE_ALREADY_STOPPED
) {
3370 /* Carry on with the destruction of the session. */
3371 ERR("Failed to stop session \"%s\" as part of its destruction: %s",
3372 session
->name
, lttng_strerror(-ret
));
3373 destruction_last_error
= ret
;
3377 if (session
->rotation_schedule_timer_enabled
) {
3378 if (timer_session_rotation_schedule_timer_stop(
3380 ERR("Failed to stop the \"rotation schedule\" timer of session %s",
3382 destruction_last_error
= LTTNG_ERR_TIMER_STOP_ERROR
;
3386 if (session
->rotate_size
) {
3387 unsubscribe_session_consumed_size_rotation(session
, notification_thread_handle
);
3388 session
->rotate_size
= 0;
3391 if (session
->rotated
&& session
->current_trace_chunk
&& session
->output_traces
) {
3393 * Perform a last rotation on destruction if rotations have
3394 * occurred during the session's lifetime.
3396 ret
= cmd_rotate_session(session
, NULL
, false,
3397 LTTNG_TRACE_CHUNK_COMMAND_TYPE_MOVE_TO_COMPLETED
);
3398 if (ret
!= LTTNG_OK
) {
3399 ERR("Failed to perform an implicit rotation as part of the destruction of session \"%s\": %s",
3400 session
->name
, lttng_strerror(-ret
));
3401 destruction_last_error
= -ret
;
3403 if (reply_context
) {
3404 reply_context
->implicit_rotation_on_destroy
= true;
3406 } else if (session
->has_been_started
&& session
->current_trace_chunk
) {
3408 * The user has not triggered a session rotation. However, to
3409 * ensure all data has been consumed, the session is rotated
3410 * to a 'null' trace chunk before it is destroyed.
3412 * This is a "quiet" rotation meaning that no notification is
3413 * emitted and no renaming of the current trace chunk takes
3416 ret
= cmd_rotate_session(session
, NULL
, true,
3417 LTTNG_TRACE_CHUNK_COMMAND_TYPE_NO_OPERATION
);
3419 * Rotation operations may not be supported by the kernel
3420 * tracer. Hence, do not consider this implicit rotation as
3421 * a session destruction error. The library has already stopped
3422 * the session and waited for pending data; there is nothing
3423 * left to do but complete the destruction of the session.
3425 if (ret
!= LTTNG_OK
&&
3426 ret
!= -LTTNG_ERR_ROTATION_NOT_AVAILABLE_KERNEL
) {
3427 ERR("Failed to perform a quiet rotation as part of the destruction of session \"%s\": %s",
3428 session
->name
, lttng_strerror(ret
));
3429 destruction_last_error
= -ret
;
3433 if (session
->shm_path
[0]) {
3435 * When a session is created with an explicit shm_path,
3436 * the consumer daemon will create its shared memory files
3437 * at that location and will *not* unlink them. This is normal
3438 * as the intention of that feature is to make it possible
3439 * to retrieve the content of those files should a crash occur.
3441 * To ensure the content of those files can be used, the
3442 * sessiond daemon will replicate the content of the metadata
3443 * cache in a metadata file.
3445 * On clean-up, it is expected that the consumer daemon will
3446 * unlink the shared memory files and that the session daemon
3447 * will unlink the metadata file. Then, the session's directory
3448 * in the shm path can be removed.
3450 * Unfortunately, a flaw in the design of the sessiond's and
3451 * consumerd's tear down of channels makes it impossible to
3452 * determine when the sessiond _and_ the consumerd have both
3453 * destroyed their representation of a channel. For one, the
3454 * unlinking, close, and rmdir happen in deferred 'call_rcu'
3455 * callbacks in both daemons.
3457 * However, it is also impossible for the sessiond to know when
3458 * the consumer daemon is done destroying its channel(s) since
3459 * it occurs as a reaction to the closing of the channel's file
3460 * descriptor. There is no resulting communication initiated
3461 * from the consumerd to the sessiond to confirm that the
3462 * operation is completed (and was successful).
3464 * Until this is all fixed, the session daemon checks for the
3465 * removal of the session's shm path which makes it possible
3466 * to safely advertise a session as having been destroyed.
3468 * Prior to this fix, it was not possible to reliably save
3469 * a session making use of the --shm-path option, destroy it,
3470 * and load it again. This is because the creation of the
3471 * session would fail upon seeing the session's shm path
3472 * already in existence.
3474 * Note that none of the error paths in the check for the
3475 * directory's existence return an error. This is normal
3476 * as there isn't much that can be done. The session will
3477 * be destroyed properly, except that we can't offer the
3478 * guarantee that the same session can be re-created.
3480 current_completion_handler
= &destroy_completion_handler
.handler
;
3481 ret
= lttng_strncpy(destroy_completion_handler
.shm_path
,
3483 sizeof(destroy_completion_handler
.shm_path
));
3488 * The session is destroyed. However, note that the command context
3489 * still holds a reference to the session, thus delaying its destruction
3490 * _at least_ up to the point when that reference is released.
3492 session_destroy(session
);
3493 if (reply_context
) {
3494 reply_context
->destruction_status
= destruction_last_error
;
3495 ret
= session_add_destroy_notifier(session
,
3496 cmd_destroy_session_reply
,
3497 (void *) reply_context
);
3499 ret
= LTTNG_ERR_FATAL
;
3511 * Command LTTNG_REGISTER_CONSUMER processed by the client thread.
3513 int cmd_register_consumer(struct ltt_session
*session
,
3514 enum lttng_domain_type domain
, const char *sock_path
,
3515 struct consumer_data
*cdata
)
3518 struct consumer_socket
*socket
= NULL
;
3525 case LTTNG_DOMAIN_KERNEL
:
3527 struct ltt_kernel_session
*ksess
= session
->kernel_session
;
3531 /* Can't register a consumer if there is already one */
3532 if (ksess
->consumer_fds_sent
!= 0) {
3533 ret
= LTTNG_ERR_KERN_CONSUMER_FAIL
;
3537 sock
= lttcomm_connect_unix_sock(sock_path
);
3539 ret
= LTTNG_ERR_CONNECT_FAIL
;
3542 cdata
->cmd_sock
= sock
;
3544 socket
= consumer_allocate_socket(&cdata
->cmd_sock
);
3545 if (socket
== NULL
) {
3548 PERROR("close register consumer");
3550 cdata
->cmd_sock
= -1;
3551 ret
= LTTNG_ERR_FATAL
;
3555 socket
->lock
= zmalloc(sizeof(pthread_mutex_t
));
3556 if (socket
->lock
== NULL
) {
3557 PERROR("zmalloc pthread mutex");
3558 ret
= LTTNG_ERR_FATAL
;
3561 pthread_mutex_init(socket
->lock
, NULL
);
3562 socket
->registered
= 1;
3565 consumer_add_socket(socket
, ksess
->consumer
);
3568 pthread_mutex_lock(&cdata
->pid_mutex
);
3570 pthread_mutex_unlock(&cdata
->pid_mutex
);
3575 /* TODO: Userspace tracing */
3576 ret
= LTTNG_ERR_UND
;
3584 consumer_destroy_socket(socket
);
3590 * Command LTTNG_LIST_DOMAINS processed by the client thread.
3592 ssize_t
cmd_list_domains(struct ltt_session
*session
,
3593 struct lttng_domain
**domains
)
3598 struct lttng_ht_iter iter
;
3600 if (session
->kernel_session
!= NULL
) {
3601 DBG3("Listing domains found kernel domain");
3605 if (session
->ust_session
!= NULL
) {
3606 DBG3("Listing domains found UST global domain");
3610 cds_lfht_for_each_entry(session
->ust_session
->agents
->ht
, &iter
.iter
,
3612 if (agt
->being_used
) {
3623 *domains
= zmalloc(nb_dom
* sizeof(struct lttng_domain
));
3624 if (*domains
== NULL
) {
3625 ret
= LTTNG_ERR_FATAL
;
3629 if (session
->kernel_session
!= NULL
) {
3630 (*domains
)[index
].type
= LTTNG_DOMAIN_KERNEL
;
3632 /* Kernel session buffer type is always GLOBAL */
3633 (*domains
)[index
].buf_type
= LTTNG_BUFFER_GLOBAL
;
3638 if (session
->ust_session
!= NULL
) {
3639 (*domains
)[index
].type
= LTTNG_DOMAIN_UST
;
3640 (*domains
)[index
].buf_type
= session
->ust_session
->buffer_type
;
3644 cds_lfht_for_each_entry(session
->ust_session
->agents
->ht
, &iter
.iter
,
3646 if (agt
->being_used
) {
3647 (*domains
)[index
].type
= agt
->domain
;
3648 (*domains
)[index
].buf_type
= session
->ust_session
->buffer_type
;
3658 /* Return negative value to differentiate return code */
3664 * Command LTTNG_LIST_CHANNELS processed by the client thread.
3666 ssize_t
cmd_list_channels(enum lttng_domain_type domain
,
3667 struct ltt_session
*session
, struct lttng_channel
**channels
)
3669 ssize_t nb_chan
= 0, payload_size
= 0, ret
;
3672 case LTTNG_DOMAIN_KERNEL
:
3673 if (session
->kernel_session
!= NULL
) {
3674 nb_chan
= session
->kernel_session
->channel_count
;
3676 DBG3("Number of kernel channels %zd", nb_chan
);
3678 ret
= -LTTNG_ERR_KERN_CHAN_NOT_FOUND
;
3682 case LTTNG_DOMAIN_UST
:
3683 if (session
->ust_session
!= NULL
) {
3685 nb_chan
= lttng_ht_get_count(
3686 session
->ust_session
->domain_global
.channels
);
3689 DBG3("Number of UST global channels %zd", nb_chan
);
3691 ret
= -LTTNG_ERR_UST_CHAN_NOT_FOUND
;
3696 ret
= -LTTNG_ERR_UND
;
3701 const size_t channel_size
= sizeof(struct lttng_channel
) +
3702 sizeof(struct lttng_channel_extended
);
3703 struct lttng_channel_extended
*channel_exts
;
3705 payload_size
= nb_chan
* channel_size
;
3706 *channels
= zmalloc(payload_size
);
3707 if (*channels
== NULL
) {
3708 ret
= -LTTNG_ERR_FATAL
;
3712 channel_exts
= ((void *) *channels
) +
3713 (nb_chan
* sizeof(struct lttng_channel
));
3714 ret
= list_lttng_channels(domain
, session
, *channels
, channel_exts
);
3715 if (ret
!= LTTNG_OK
) {
3730 * Command LTTNG_LIST_EVENTS processed by the client thread.
3732 ssize_t
cmd_list_events(enum lttng_domain_type domain
,
3733 struct ltt_session
*session
, char *channel_name
,
3734 struct lttng_event
**events
, size_t *total_size
)
3737 ssize_t nb_event
= 0;
3740 case LTTNG_DOMAIN_KERNEL
:
3741 if (session
->kernel_session
!= NULL
) {
3742 nb_event
= list_lttng_kernel_events(channel_name
,
3743 session
->kernel_session
, events
,
3747 case LTTNG_DOMAIN_UST
:
3749 if (session
->ust_session
!= NULL
) {
3750 nb_event
= list_lttng_ust_global_events(channel_name
,
3751 &session
->ust_session
->domain_global
, events
,
3756 case LTTNG_DOMAIN_LOG4J
:
3757 case LTTNG_DOMAIN_JUL
:
3758 case LTTNG_DOMAIN_PYTHON
:
3759 if (session
->ust_session
) {
3760 struct lttng_ht_iter iter
;
3764 cds_lfht_for_each_entry(session
->ust_session
->agents
->ht
,
3765 &iter
.iter
, agt
, node
.node
) {
3766 if (agt
->domain
== domain
) {
3767 nb_event
= list_lttng_agent_events(
3777 ret
= LTTNG_ERR_UND
;
3784 /* Return negative value to differentiate return code */
3789 * Using the session list, filled a lttng_session array to send back to the
3790 * client for session listing.
3792 * The session list lock MUST be acquired before calling this function. Use
3793 * session_lock_list() and session_unlock_list().
3795 void cmd_list_lttng_sessions(struct lttng_session
*sessions
,
3796 size_t session_count
, uid_t uid
, gid_t gid
)
3800 struct ltt_session
*session
;
3801 struct ltt_session_list
*list
= session_get_list();
3802 struct lttng_session_extended
*extended
=
3803 (typeof(extended
)) (&sessions
[session_count
]);
3805 DBG("Getting all available session for UID %d GID %d",
3808 * Iterate over session list and append data after the control struct in
3811 cds_list_for_each_entry(session
, &list
->head
, list
) {
3812 if (!session_get(session
)) {
3816 * Only list the sessions the user can control.
3818 if (!session_access_ok(session
, uid
, gid
) ||
3819 session
->destroyed
) {
3820 session_put(session
);
3824 struct ltt_kernel_session
*ksess
= session
->kernel_session
;
3825 struct ltt_ust_session
*usess
= session
->ust_session
;
3827 if (session
->consumer
->type
== CONSUMER_DST_NET
||
3828 (ksess
&& ksess
->consumer
->type
== CONSUMER_DST_NET
) ||
3829 (usess
&& usess
->consumer
->type
== CONSUMER_DST_NET
)) {
3830 ret
= build_network_session_path(sessions
[i
].path
,
3831 sizeof(sessions
[i
].path
), session
);
3833 ret
= snprintf(sessions
[i
].path
, sizeof(sessions
[i
].path
), "%s",
3834 session
->consumer
->dst
.session_root_path
);
3837 PERROR("snprintf session path");
3838 session_put(session
);
3842 strncpy(sessions
[i
].name
, session
->name
, NAME_MAX
);
3843 sessions
[i
].name
[NAME_MAX
- 1] = '\0';
3844 sessions
[i
].enabled
= session
->active
;
3845 sessions
[i
].snapshot_mode
= session
->snapshot_mode
;
3846 sessions
[i
].live_timer_interval
= session
->live_timer
;
3847 extended
[i
].creation_time
.value
= (uint64_t) session
->creation_time
;
3848 extended
[i
].creation_time
.is_set
= 1;
3850 session_put(session
);
3855 * Command LTTNG_DATA_PENDING returning 0 if the data is NOT pending meaning
3856 * ready for trace analysis (or any kind of reader) or else 1 for pending data.
3858 int cmd_data_pending(struct ltt_session
*session
)
3861 struct ltt_kernel_session
*ksess
= session
->kernel_session
;
3862 struct ltt_ust_session
*usess
= session
->ust_session
;
3866 DBG("Data pending for session %s", session
->name
);
3868 /* Session MUST be stopped to ask for data availability. */
3869 if (session
->active
) {
3870 ret
= LTTNG_ERR_SESSION_STARTED
;
3874 * If stopped, just make sure we've started before else the above call
3875 * will always send that there is data pending.
3877 * The consumer assumes that when the data pending command is received,
3878 * the trace has been started before or else no output data is written
3879 * by the streams which is a condition for data pending. So, this is
3880 * *VERY* important that we don't ask the consumer before a start
3883 if (!session
->has_been_started
) {
3889 /* A rotation is still pending, we have to wait. */
3890 if (session
->rotation_state
== LTTNG_ROTATION_STATE_ONGOING
) {
3891 DBG("Rotate still pending for session %s", session
->name
);
3896 if (ksess
&& ksess
->consumer
) {
3897 ret
= consumer_is_data_pending(ksess
->id
, ksess
->consumer
);
3899 /* Data is still being extracted for the kernel. */
3904 if (usess
&& usess
->consumer
) {
3905 ret
= consumer_is_data_pending(usess
->id
, usess
->consumer
);
3907 /* Data is still being extracted for the kernel. */
3912 /* Data is ready to be read by a viewer */
3920 * Command LTTNG_SNAPSHOT_ADD_OUTPUT from the lttng ctl library.
3922 * Return LTTNG_OK on success or else a LTTNG_ERR code.
3924 int cmd_snapshot_add_output(struct ltt_session
*session
,
3925 const struct lttng_snapshot_output
*output
, uint32_t *id
)
3928 struct snapshot_output
*new_output
;
3933 DBG("Cmd snapshot add output for session %s", session
->name
);
3936 * Can't create an output if the session is not set in no-output mode.
3938 if (session
->output_traces
) {
3939 ret
= LTTNG_ERR_NOT_SNAPSHOT_SESSION
;
3943 if (session
->has_non_mmap_channel
) {
3944 ret
= LTTNG_ERR_SNAPSHOT_UNSUPPORTED
;
3948 /* Only one output is allowed until we have the "tee" feature. */
3949 if (session
->snapshot
.nb_output
== 1) {
3950 ret
= LTTNG_ERR_SNAPSHOT_OUTPUT_EXIST
;
3954 new_output
= snapshot_output_alloc();
3956 ret
= LTTNG_ERR_NOMEM
;
3960 ret
= snapshot_output_init(session
, output
->max_size
, output
->name
,
3961 output
->ctrl_url
, output
->data_url
, session
->consumer
, new_output
,
3962 &session
->snapshot
);
3964 if (ret
== -ENOMEM
) {
3965 ret
= LTTNG_ERR_NOMEM
;
3967 ret
= LTTNG_ERR_INVALID
;
3973 snapshot_add_output(&session
->snapshot
, new_output
);
3975 *id
= new_output
->id
;
3982 snapshot_output_destroy(new_output
);
3988 * Command LTTNG_SNAPSHOT_DEL_OUTPUT from lib lttng ctl.
3990 * Return LTTNG_OK on success or else a LTTNG_ERR code.
3992 int cmd_snapshot_del_output(struct ltt_session
*session
,
3993 const struct lttng_snapshot_output
*output
)
3996 struct snapshot_output
*sout
= NULL
;
4004 * Permission denied to create an output if the session is not
4005 * set in no output mode.
4007 if (session
->output_traces
) {
4008 ret
= LTTNG_ERR_NOT_SNAPSHOT_SESSION
;
4013 DBG("Cmd snapshot del output id %" PRIu32
" for session %s", output
->id
,
4015 sout
= snapshot_find_output_by_id(output
->id
, &session
->snapshot
);
4016 } else if (*output
->name
!= '\0') {
4017 DBG("Cmd snapshot del output name %s for session %s", output
->name
,
4019 sout
= snapshot_find_output_by_name(output
->name
, &session
->snapshot
);
4022 ret
= LTTNG_ERR_INVALID
;
4026 snapshot_delete_output(&session
->snapshot
, sout
);
4027 snapshot_output_destroy(sout
);
4036 * Command LTTNG_SNAPSHOT_LIST_OUTPUT from lib lttng ctl.
4038 * If no output is available, outputs is untouched and 0 is returned.
4040 * Return the size of the newly allocated outputs or a negative LTTNG_ERR code.
4042 ssize_t
cmd_snapshot_list_outputs(struct ltt_session
*session
,
4043 struct lttng_snapshot_output
**outputs
)
4046 struct lttng_snapshot_output
*list
= NULL
;
4047 struct lttng_ht_iter iter
;
4048 struct snapshot_output
*output
;
4053 DBG("Cmd snapshot list outputs for session %s", session
->name
);
4056 * Permission denied to create an output if the session is not
4057 * set in no output mode.
4059 if (session
->output_traces
) {
4060 ret
= -LTTNG_ERR_NOT_SNAPSHOT_SESSION
;
4064 if (session
->snapshot
.nb_output
== 0) {
4069 list
= zmalloc(session
->snapshot
.nb_output
* sizeof(*list
));
4071 ret
= -LTTNG_ERR_NOMEM
;
4075 /* Copy list from session to the new list object. */
4077 cds_lfht_for_each_entry(session
->snapshot
.output_ht
->ht
, &iter
.iter
,
4078 output
, node
.node
) {
4079 assert(output
->consumer
);
4080 list
[idx
].id
= output
->id
;
4081 list
[idx
].max_size
= output
->max_size
;
4082 if (lttng_strncpy(list
[idx
].name
, output
->name
,
4083 sizeof(list
[idx
].name
))) {
4084 ret
= -LTTNG_ERR_INVALID
;
4087 if (output
->consumer
->type
== CONSUMER_DST_LOCAL
) {
4088 if (lttng_strncpy(list
[idx
].ctrl_url
,
4089 output
->consumer
->dst
.session_root_path
,
4090 sizeof(list
[idx
].ctrl_url
))) {
4091 ret
= -LTTNG_ERR_INVALID
;
4096 ret
= uri_to_str_url(&output
->consumer
->dst
.net
.control
,
4097 list
[idx
].ctrl_url
, sizeof(list
[idx
].ctrl_url
));
4099 ret
= -LTTNG_ERR_NOMEM
;
4104 ret
= uri_to_str_url(&output
->consumer
->dst
.net
.data
,
4105 list
[idx
].data_url
, sizeof(list
[idx
].data_url
));
4107 ret
= -LTTNG_ERR_NOMEM
;
4116 ret
= session
->snapshot
.nb_output
;
4125 * Check if we can regenerate the metadata for this session.
4126 * Only kernel, UST per-uid and non-live sessions are supported.
4128 * Return 0 if the metadata can be generated, a LTTNG_ERR code otherwise.
4131 int check_regenerate_metadata_support(struct ltt_session
*session
)
4137 if (session
->live_timer
!= 0) {
4138 ret
= LTTNG_ERR_LIVE_SESSION
;
4141 if (!session
->active
) {
4142 ret
= LTTNG_ERR_SESSION_NOT_STARTED
;
4145 if (session
->ust_session
) {
4146 switch (session
->ust_session
->buffer_type
) {
4147 case LTTNG_BUFFER_PER_UID
:
4149 case LTTNG_BUFFER_PER_PID
:
4150 ret
= LTTNG_ERR_PER_PID_SESSION
;
4154 ret
= LTTNG_ERR_UNK
;
4158 if (session
->consumer
->type
== CONSUMER_DST_NET
&&
4159 session
->consumer
->relay_minor_version
< 8) {
4160 ret
= LTTNG_ERR_RELAYD_VERSION_FAIL
;
4170 int clear_metadata_file(int fd
)
4175 lseek_ret
= lseek(fd
, 0, SEEK_SET
);
4176 if (lseek_ret
< 0) {
4182 ret
= ftruncate(fd
, 0);
4184 PERROR("ftruncate");
4193 int ust_regenerate_metadata(struct ltt_ust_session
*usess
)
4196 struct buffer_reg_uid
*uid_reg
= NULL
;
4197 struct buffer_reg_session
*session_reg
= NULL
;
4200 cds_list_for_each_entry(uid_reg
, &usess
->buffer_reg_uid_list
, lnode
) {
4201 struct ust_registry_session
*registry
;
4202 struct ust_registry_channel
*chan
;
4203 struct lttng_ht_iter iter_chan
;
4205 session_reg
= uid_reg
->registry
;
4206 registry
= session_reg
->reg
.ust
;
4208 pthread_mutex_lock(®istry
->lock
);
4209 registry
->metadata_len_sent
= 0;
4210 memset(registry
->metadata
, 0, registry
->metadata_alloc_len
);
4211 registry
->metadata_len
= 0;
4212 registry
->metadata_version
++;
4213 if (registry
->metadata_fd
> 0) {
4214 /* Clear the metadata file's content. */
4215 ret
= clear_metadata_file(registry
->metadata_fd
);
4217 pthread_mutex_unlock(®istry
->lock
);
4222 ret
= ust_metadata_session_statedump(registry
, NULL
,
4223 registry
->major
, registry
->minor
);
4225 pthread_mutex_unlock(®istry
->lock
);
4226 ERR("Failed to generate session metadata (err = %d)",
4230 cds_lfht_for_each_entry(registry
->channels
->ht
, &iter_chan
.iter
,
4232 struct ust_registry_event
*event
;
4233 struct lttng_ht_iter iter_event
;
4235 ret
= ust_metadata_channel_statedump(registry
, chan
);
4237 pthread_mutex_unlock(®istry
->lock
);
4238 ERR("Failed to generate channel metadata "
4242 cds_lfht_for_each_entry(chan
->ht
->ht
, &iter_event
.iter
,
4244 ret
= ust_metadata_event_statedump(registry
,
4247 pthread_mutex_unlock(®istry
->lock
);
4248 ERR("Failed to generate event metadata "
4254 pthread_mutex_unlock(®istry
->lock
);
4263 * Command LTTNG_REGENERATE_METADATA from the lttng-ctl library.
4265 * Ask the consumer to truncate the existing metadata file(s) and
4266 * then regenerate the metadata. Live and per-pid sessions are not
4267 * supported and return an error.
4269 * Return 0 on success or else a LTTNG_ERR code.
4271 int cmd_regenerate_metadata(struct ltt_session
*session
)
4277 ret
= check_regenerate_metadata_support(session
);
4282 if (session
->kernel_session
) {
4283 ret
= kernctl_session_regenerate_metadata(
4284 session
->kernel_session
->fd
);
4286 ERR("Failed to regenerate the kernel metadata");
4291 if (session
->ust_session
) {
4292 ret
= ust_regenerate_metadata(session
->ust_session
);
4294 ERR("Failed to regenerate the UST metadata");
4298 DBG("Cmd metadata regenerate for session %s", session
->name
);
4306 * Command LTTNG_REGENERATE_STATEDUMP from the lttng-ctl library.
4308 * Ask the tracer to regenerate a new statedump.
4310 * Return 0 on success or else a LTTNG_ERR code.
4312 int cmd_regenerate_statedump(struct ltt_session
*session
)
4318 if (!session
->active
) {
4319 ret
= LTTNG_ERR_SESSION_NOT_STARTED
;
4323 if (session
->kernel_session
) {
4324 ret
= kernctl_session_regenerate_statedump(
4325 session
->kernel_session
->fd
);
4327 * Currently, the statedump in kernel can only fail if out
4331 if (ret
== -ENOMEM
) {
4332 ret
= LTTNG_ERR_REGEN_STATEDUMP_NOMEM
;
4334 ret
= LTTNG_ERR_REGEN_STATEDUMP_FAIL
;
4336 ERR("Failed to regenerate the kernel statedump");
4341 if (session
->ust_session
) {
4342 ret
= ust_app_regenerate_statedump_all(session
->ust_session
);
4344 * Currently, the statedump in UST always returns 0.
4347 ret
= LTTNG_ERR_REGEN_STATEDUMP_FAIL
;
4348 ERR("Failed to regenerate the UST statedump");
4352 DBG("Cmd regenerate statedump for session %s", session
->name
);
4359 int cmd_register_trigger(struct command_ctx
*cmd_ctx
, int sock
,
4360 struct notification_thread_handle
*notification_thread
)
4364 ssize_t sock_recv_len
;
4365 struct lttng_trigger
*trigger
= NULL
;
4366 struct lttng_payload trigger_payload
;
4368 lttng_payload_init(&trigger_payload
);
4369 trigger_len
= (size_t) cmd_ctx
->lsm
->u
.trigger
.length
;
4370 ret
= lttng_dynamic_buffer_set_size(
4371 &trigger_payload
.buffer
, trigger_len
);
4373 ret
= LTTNG_ERR_NOMEM
;
4377 sock_recv_len
= lttcomm_recv_unix_sock(
4378 sock
, trigger_payload
.buffer
.data
, trigger_len
);
4379 if (sock_recv_len
< 0 || sock_recv_len
!= trigger_len
) {
4380 ERR("Failed to receive \"register trigger\" command payload");
4381 /* TODO: should this be a new error enum ? */
4382 ret
= LTTNG_ERR_INVALID_TRIGGER
;
4387 struct lttng_payload_view view
=
4388 lttng_payload_view_from_payload(
4389 &trigger_payload
, 0, -1);
4391 if (lttng_trigger_create_from_payload(&view
, &trigger
) !=
4393 ERR("Invalid trigger payload received in \"register trigger\" command");
4394 ret
= LTTNG_ERR_INVALID_TRIGGER
;
4399 ret
= notification_thread_command_register_trigger(notification_thread
,
4401 /* Ownership of trigger was transferred. */
4404 lttng_trigger_destroy(trigger
);
4405 lttng_payload_reset(&trigger_payload
);
4409 int cmd_unregister_trigger(struct command_ctx
*cmd_ctx
, int sock
,
4410 struct notification_thread_handle
*notification_thread
)
4414 ssize_t sock_recv_len
;
4415 struct lttng_trigger
*trigger
= NULL
;
4416 struct lttng_payload trigger_payload
;
4418 lttng_payload_init(&trigger_payload
);
4419 trigger_len
= (size_t) cmd_ctx
->lsm
->u
.trigger
.length
;
4420 ret
= lttng_dynamic_buffer_set_size(
4421 &trigger_payload
.buffer
, trigger_len
);
4423 ret
= LTTNG_ERR_NOMEM
;
4427 sock_recv_len
= lttcomm_recv_unix_sock(
4428 sock
, trigger_payload
.buffer
.data
, trigger_len
);
4429 if (sock_recv_len
< 0 || sock_recv_len
!= trigger_len
) {
4430 ERR("Failed to receive \"unregister trigger\" command payload");
4431 /* TODO: should this be a new error enum ? */
4432 ret
= LTTNG_ERR_INVALID_TRIGGER
;
4437 struct lttng_payload_view view
=
4438 lttng_payload_view_from_payload(
4439 &trigger_payload
, 0, -1);
4441 if (lttng_trigger_create_from_payload(&view
, &trigger
) !=
4443 ERR("Invalid trigger payload received in \"unregister trigger\" command");
4444 ret
= LTTNG_ERR_INVALID_TRIGGER
;
4449 ret
= notification_thread_command_unregister_trigger(notification_thread
,
4452 lttng_trigger_destroy(trigger
);
4453 lttng_payload_reset(&trigger_payload
);
4458 * Send relayd sockets from snapshot output to consumer. Ignore request if the
4459 * snapshot output is *not* set with a remote destination.
4461 * Return LTTNG_OK on success or a LTTNG_ERR code.
4463 static enum lttng_error_code
set_relayd_for_snapshot(
4464 struct consumer_output
*output
,
4465 const struct ltt_session
*session
)
4467 enum lttng_error_code status
= LTTNG_OK
;
4468 struct lttng_ht_iter iter
;
4469 struct consumer_socket
*socket
;
4470 LTTNG_OPTIONAL(uint64_t) current_chunk_id
= {};
4471 const char *base_path
;
4476 DBG2("Set relayd object from snapshot output");
4478 if (session
->current_trace_chunk
) {
4479 enum lttng_trace_chunk_status chunk_status
=
4480 lttng_trace_chunk_get_id(
4481 session
->current_trace_chunk
,
4482 ¤t_chunk_id
.value
);
4484 if (chunk_status
== LTTNG_TRACE_CHUNK_STATUS_OK
) {
4485 current_chunk_id
.is_set
= true;
4487 ERR("Failed to get current trace chunk id");
4488 status
= LTTNG_ERR_UNK
;
4493 /* Ignore if snapshot consumer output is not network. */
4494 if (output
->type
!= CONSUMER_DST_NET
) {
4499 * The snapshot record URI base path overrides the session
4502 if (output
->dst
.net
.control
.subdir
[0] != '\0') {
4503 base_path
= output
->dst
.net
.control
.subdir
;
4505 base_path
= session
->base_path
;
4509 * For each consumer socket, create and send the relayd object of the
4513 cds_lfht_for_each_entry(output
->socks
->ht
, &iter
.iter
,
4514 socket
, node
.node
) {
4515 pthread_mutex_lock(socket
->lock
);
4516 status
= send_consumer_relayd_sockets(0, session
->id
,
4518 session
->name
, session
->hostname
,
4520 session
->live_timer
,
4521 current_chunk_id
.is_set
? ¤t_chunk_id
.value
: NULL
,
4522 session
->creation_time
,
4523 session
->name_contains_creation_time
);
4524 pthread_mutex_unlock(socket
->lock
);
4525 if (status
!= LTTNG_OK
) {
4537 * Record a kernel snapshot.
4539 * Return LTTNG_OK on success or a LTTNG_ERR code.
4541 static enum lttng_error_code
record_kernel_snapshot(
4542 struct ltt_kernel_session
*ksess
,
4543 const struct consumer_output
*output
,
4544 const struct ltt_session
*session
,
4545 int wait
, uint64_t nb_packets_per_stream
)
4547 enum lttng_error_code status
;
4553 status
= kernel_snapshot_record(
4554 ksess
, output
, wait
, nb_packets_per_stream
);
4559 * Record a UST snapshot.
4561 * Returns LTTNG_OK on success or a LTTNG_ERR error code.
4563 static enum lttng_error_code
record_ust_snapshot(struct ltt_ust_session
*usess
,
4564 const struct consumer_output
*output
,
4565 const struct ltt_session
*session
,
4566 int wait
, uint64_t nb_packets_per_stream
)
4568 enum lttng_error_code status
;
4574 status
= ust_app_snapshot_record(
4575 usess
, output
, wait
, nb_packets_per_stream
);
4580 uint64_t get_session_size_one_more_packet_per_stream(
4581 const struct ltt_session
*session
, uint64_t cur_nr_packets
)
4583 uint64_t tot_size
= 0;
4585 if (session
->kernel_session
) {
4586 struct ltt_kernel_channel
*chan
;
4587 const struct ltt_kernel_session
*ksess
=
4588 session
->kernel_session
;
4590 cds_list_for_each_entry(chan
, &ksess
->channel_list
.head
, list
) {
4591 if (cur_nr_packets
>= chan
->channel
->attr
.num_subbuf
) {
4593 * Don't take channel into account if we
4594 * already grab all its packets.
4598 tot_size
+= chan
->channel
->attr
.subbuf_size
4599 * chan
->stream_count
;
4603 if (session
->ust_session
) {
4604 const struct ltt_ust_session
*usess
= session
->ust_session
;
4606 tot_size
+= ust_app_get_size_one_more_packet_per_stream(usess
,
4614 * Calculate the number of packets we can grab from each stream that
4615 * fits within the overall snapshot max size.
4617 * Returns -1 on error, 0 means infinite number of packets, else > 0 is
4618 * the number of packets per stream.
4620 * TODO: this approach is not perfect: we consider the worse case
4621 * (packet filling the sub-buffers) as an upper bound, but we could do
4622 * better if we do this calculation while we actually grab the packet
4623 * content: we would know how much padding we don't actually store into
4626 * This algorithm is currently bounded by the number of packets per
4629 * Since we call this algorithm before actually grabbing the data, it's
4630 * an approximation: for instance, applications could appear/disappear
4631 * in between this call and actually grabbing data.
4634 int64_t get_session_nb_packets_per_stream(const struct ltt_session
*session
,
4638 uint64_t cur_nb_packets
= 0;
4641 return 0; /* Infinite */
4644 size_left
= max_size
;
4646 uint64_t one_more_packet_tot_size
;
4648 one_more_packet_tot_size
= get_session_size_one_more_packet_per_stream(
4649 session
, cur_nb_packets
);
4650 if (!one_more_packet_tot_size
) {
4651 /* We are already grabbing all packets. */
4654 size_left
-= one_more_packet_tot_size
;
4655 if (size_left
< 0) {
4660 if (!cur_nb_packets
&& size_left
!= max_size
) {
4661 /* Not enough room to grab one packet of each stream, error. */
4664 return cur_nb_packets
;
4668 enum lttng_error_code
snapshot_record(struct ltt_session
*session
,
4669 const struct snapshot_output
*snapshot_output
, int wait
)
4671 int64_t nb_packets_per_stream
;
4672 char snapshot_chunk_name
[LTTNG_NAME_MAX
];
4674 enum lttng_error_code ret_code
= LTTNG_OK
;
4675 struct lttng_trace_chunk
*snapshot_trace_chunk
;
4676 struct consumer_output
*original_ust_consumer_output
= NULL
;
4677 struct consumer_output
*original_kernel_consumer_output
= NULL
;
4678 struct consumer_output
*snapshot_ust_consumer_output
= NULL
;
4679 struct consumer_output
*snapshot_kernel_consumer_output
= NULL
;
4681 ret
= snprintf(snapshot_chunk_name
, sizeof(snapshot_chunk_name
),
4683 snapshot_output
->name
,
4684 snapshot_output
->datetime
,
4685 snapshot_output
->nb_snapshot
);
4686 if (ret
< 0 || ret
>= sizeof(snapshot_chunk_name
)) {
4687 ERR("Failed to format snapshot name");
4688 ret_code
= LTTNG_ERR_INVALID
;
4691 DBG("Recording snapshot \"%s\" for session \"%s\" with chunk name \"%s\"",
4692 snapshot_output
->name
, session
->name
,
4693 snapshot_chunk_name
);
4694 if (!session
->kernel_session
&& !session
->ust_session
) {
4695 ERR("Failed to record snapshot as no channels exist");
4696 ret_code
= LTTNG_ERR_NO_CHANNEL
;
4700 if (session
->kernel_session
) {
4701 original_kernel_consumer_output
=
4702 session
->kernel_session
->consumer
;
4703 snapshot_kernel_consumer_output
=
4704 consumer_copy_output(snapshot_output
->consumer
);
4705 strcpy(snapshot_kernel_consumer_output
->chunk_path
,
4706 snapshot_chunk_name
);
4707 ret
= consumer_copy_sockets(snapshot_kernel_consumer_output
,
4708 original_kernel_consumer_output
);
4710 ERR("Failed to copy consumer sockets from snapshot output configuration");
4711 ret_code
= LTTNG_ERR_NOMEM
;
4714 ret_code
= set_relayd_for_snapshot(
4715 snapshot_kernel_consumer_output
, session
);
4716 if (ret_code
!= LTTNG_OK
) {
4717 ERR("Failed to setup relay daemon for kernel tracer snapshot");
4720 session
->kernel_session
->consumer
=
4721 snapshot_kernel_consumer_output
;
4723 if (session
->ust_session
) {
4724 original_ust_consumer_output
= session
->ust_session
->consumer
;
4725 snapshot_ust_consumer_output
=
4726 consumer_copy_output(snapshot_output
->consumer
);
4727 strcpy(snapshot_ust_consumer_output
->chunk_path
,
4728 snapshot_chunk_name
);
4729 ret
= consumer_copy_sockets(snapshot_ust_consumer_output
,
4730 original_ust_consumer_output
);
4732 ERR("Failed to copy consumer sockets from snapshot output configuration");
4733 ret_code
= LTTNG_ERR_NOMEM
;
4736 ret_code
= set_relayd_for_snapshot(
4737 snapshot_ust_consumer_output
, session
);
4738 if (ret_code
!= LTTNG_OK
) {
4739 ERR("Failed to setup relay daemon for userspace tracer snapshot");
4742 session
->ust_session
->consumer
=
4743 snapshot_ust_consumer_output
;
4746 snapshot_trace_chunk
= session_create_new_trace_chunk(session
,
4747 snapshot_kernel_consumer_output
?:
4748 snapshot_ust_consumer_output
,
4749 consumer_output_get_base_path(
4750 snapshot_output
->consumer
),
4751 snapshot_chunk_name
);
4752 if (!snapshot_trace_chunk
) {
4753 ERR("Failed to create temporary trace chunk to record a snapshot of session \"%s\"",
4755 ret_code
= LTTNG_ERR_CREATE_DIR_FAIL
;
4758 assert(!session
->current_trace_chunk
);
4759 ret
= session_set_trace_chunk(session
, snapshot_trace_chunk
, NULL
);
4760 lttng_trace_chunk_put(snapshot_trace_chunk
);
4761 snapshot_trace_chunk
= NULL
;
4763 ERR("Failed to set temporary trace chunk to record a snapshot of session \"%s\"",
4765 ret_code
= LTTNG_ERR_CREATE_TRACE_CHUNK_FAIL_CONSUMER
;
4769 nb_packets_per_stream
= get_session_nb_packets_per_stream(session
,
4770 snapshot_output
->max_size
);
4771 if (nb_packets_per_stream
< 0) {
4772 ret_code
= LTTNG_ERR_MAX_SIZE_INVALID
;
4773 goto error_close_trace_chunk
;
4776 if (session
->kernel_session
) {
4777 ret_code
= record_kernel_snapshot(session
->kernel_session
,
4778 snapshot_kernel_consumer_output
, session
,
4779 wait
, nb_packets_per_stream
);
4780 if (ret_code
!= LTTNG_OK
) {
4781 goto error_close_trace_chunk
;
4785 if (session
->ust_session
) {
4786 ret_code
= record_ust_snapshot(session
->ust_session
,
4787 snapshot_ust_consumer_output
, session
,
4788 wait
, nb_packets_per_stream
);
4789 if (ret_code
!= LTTNG_OK
) {
4790 goto error_close_trace_chunk
;
4794 error_close_trace_chunk
:
4795 if (session_set_trace_chunk(session
, NULL
, &snapshot_trace_chunk
)) {
4796 ERR("Failed to release the current trace chunk of session \"%s\"",
4798 ret_code
= LTTNG_ERR_UNK
;
4801 if (session_close_trace_chunk(session
, snapshot_trace_chunk
,
4802 LTTNG_TRACE_CHUNK_COMMAND_TYPE_NO_OPERATION
, NULL
)) {
4804 * Don't goto end; make sure the chunk is closed for the session
4805 * to allow future snapshots.
4807 ERR("Failed to close snapshot trace chunk of session \"%s\"",
4809 ret_code
= LTTNG_ERR_CLOSE_TRACE_CHUNK_FAIL_CONSUMER
;
4812 if (original_ust_consumer_output
) {
4813 session
->ust_session
->consumer
= original_ust_consumer_output
;
4815 if (original_kernel_consumer_output
) {
4816 session
->kernel_session
->consumer
=
4817 original_kernel_consumer_output
;
4819 consumer_output_put(snapshot_ust_consumer_output
);
4820 consumer_output_put(snapshot_kernel_consumer_output
);
4825 * Command LTTNG_SNAPSHOT_RECORD from lib lttng ctl.
4827 * The wait parameter is ignored so this call always wait for the snapshot to
4828 * complete before returning.
4830 * Return LTTNG_OK on success or else a LTTNG_ERR code.
4832 int cmd_snapshot_record(struct ltt_session
*session
,
4833 const struct lttng_snapshot_output
*output
, int wait
)
4835 enum lttng_error_code cmd_ret
= LTTNG_OK
;
4837 unsigned int snapshot_success
= 0;
4839 struct snapshot_output
*tmp_output
= NULL
;
4844 DBG("Cmd snapshot record for session %s", session
->name
);
4846 /* Get the datetime for the snapshot output directory. */
4847 ret
= utils_get_current_time_str("%Y%m%d-%H%M%S", datetime
,
4850 cmd_ret
= LTTNG_ERR_INVALID
;
4855 * Permission denied to create an output if the session is not
4856 * set in no output mode.
4858 if (session
->output_traces
) {
4859 cmd_ret
= LTTNG_ERR_NOT_SNAPSHOT_SESSION
;
4863 /* The session needs to be started at least once. */
4864 if (!session
->has_been_started
) {
4865 cmd_ret
= LTTNG_ERR_START_SESSION_ONCE
;
4869 /* Use temporary output for the session. */
4870 if (*output
->ctrl_url
!= '\0') {
4871 tmp_output
= snapshot_output_alloc();
4873 cmd_ret
= LTTNG_ERR_NOMEM
;
4877 ret
= snapshot_output_init(session
, output
->max_size
,
4879 output
->ctrl_url
, output
->data_url
,
4883 if (ret
== -ENOMEM
) {
4884 cmd_ret
= LTTNG_ERR_NOMEM
;
4886 cmd_ret
= LTTNG_ERR_INVALID
;
4890 /* Use the global session count for the temporary snapshot. */
4891 tmp_output
->nb_snapshot
= session
->snapshot
.nb_snapshot
;
4893 /* Use the global datetime */
4894 memcpy(tmp_output
->datetime
, datetime
, sizeof(datetime
));
4895 cmd_ret
= snapshot_record(session
, tmp_output
, wait
);
4896 if (cmd_ret
!= LTTNG_OK
) {
4899 snapshot_success
= 1;
4901 struct snapshot_output
*sout
;
4902 struct lttng_ht_iter iter
;
4905 cds_lfht_for_each_entry(session
->snapshot
.output_ht
->ht
,
4906 &iter
.iter
, sout
, node
.node
) {
4907 struct snapshot_output output_copy
;
4910 * Make a local copy of the output and override output
4911 * parameters with those provided as part of the
4914 memcpy(&output_copy
, sout
, sizeof(output_copy
));
4916 if (output
->max_size
!= (uint64_t) -1ULL) {
4917 output_copy
.max_size
= output
->max_size
;
4920 output_copy
.nb_snapshot
= session
->snapshot
.nb_snapshot
;
4921 memcpy(output_copy
.datetime
, datetime
,
4924 /* Use temporary name. */
4925 if (*output
->name
!= '\0') {
4926 if (lttng_strncpy(output_copy
.name
,
4928 sizeof(output_copy
.name
))) {
4929 cmd_ret
= LTTNG_ERR_INVALID
;
4935 cmd_ret
= snapshot_record(session
, &output_copy
, wait
);
4936 if (cmd_ret
!= LTTNG_OK
) {
4940 snapshot_success
= 1;
4945 if (snapshot_success
) {
4946 session
->snapshot
.nb_snapshot
++;
4948 cmd_ret
= LTTNG_ERR_SNAPSHOT_FAIL
;
4953 snapshot_output_destroy(tmp_output
);
4959 * Command LTTNG_SET_SESSION_SHM_PATH processed by the client thread.
4961 int cmd_set_session_shm_path(struct ltt_session
*session
,
4962 const char *shm_path
)
4968 * Can only set shm path before session is started.
4970 if (session
->has_been_started
) {
4971 return LTTNG_ERR_SESSION_STARTED
;
4974 strncpy(session
->shm_path
, shm_path
,
4975 sizeof(session
->shm_path
));
4976 session
->shm_path
[sizeof(session
->shm_path
) - 1] = '\0';
4982 * Command LTTNG_ROTATE_SESSION from the lttng-ctl library.
4984 * Ask the consumer to rotate the session output directory.
4985 * The session lock must be held.
4987 * Returns LTTNG_OK on success or else a negative LTTng error code.
4989 int cmd_rotate_session(struct ltt_session
*session
,
4990 struct lttng_rotate_session_return
*rotate_return
,
4991 bool quiet_rotation
,
4992 enum lttng_trace_chunk_command_type command
)
4995 uint64_t ongoing_rotation_chunk_id
;
4996 enum lttng_error_code cmd_ret
= LTTNG_OK
;
4997 struct lttng_trace_chunk
*chunk_being_archived
= NULL
;
4998 struct lttng_trace_chunk
*new_trace_chunk
= NULL
;
4999 enum lttng_trace_chunk_status chunk_status
;
5000 bool failed_to_rotate
= false;
5001 enum lttng_error_code rotation_fail_code
= LTTNG_OK
;
5005 if (!session
->has_been_started
) {
5006 cmd_ret
= LTTNG_ERR_START_SESSION_ONCE
;
5011 * Explicit rotation is not supported for live sessions.
5012 * However, live sessions can perform a quiet rotation on
5014 * Rotation is not supported for snapshot traces (no output).
5016 if ((!quiet_rotation
&& session
->live_timer
) ||
5017 !session
->output_traces
) {
5018 cmd_ret
= LTTNG_ERR_ROTATION_NOT_AVAILABLE
;
5022 /* Unsupported feature in lttng-relayd before 2.11. */
5023 if (!quiet_rotation
&& session
->consumer
->type
== CONSUMER_DST_NET
&&
5024 (session
->consumer
->relay_major_version
== 2 &&
5025 session
->consumer
->relay_minor_version
< 11)) {
5026 cmd_ret
= LTTNG_ERR_ROTATION_NOT_AVAILABLE_RELAY
;
5030 /* Unsupported feature in lttng-modules before 2.8 (lack of sequence number). */
5031 if (session
->kernel_session
&& !kernel_supports_ring_buffer_packet_sequence_number()) {
5032 cmd_ret
= LTTNG_ERR_ROTATION_NOT_AVAILABLE_KERNEL
;
5036 if (session
->rotation_state
== LTTNG_ROTATION_STATE_ONGOING
) {
5037 DBG("Refusing to launch a rotation; a rotation is already in progress for session %s",
5039 cmd_ret
= LTTNG_ERR_ROTATION_PENDING
;
5044 * After a stop, we only allow one rotation to occur, the other ones are
5045 * useless until a new start.
5047 if (session
->rotated_after_last_stop
) {
5048 DBG("Session \"%s\" was already rotated after stop, refusing rotation",
5050 cmd_ret
= LTTNG_ERR_ROTATION_MULTIPLE_AFTER_STOP
;
5055 * After a stop followed by a clear, disallow following rotations a they would
5056 * generate empty chunks.
5058 if (session
->cleared_after_last_stop
) {
5059 DBG("Session \"%s\" was already cleared after stop, refusing rotation",
5061 cmd_ret
= LTTNG_ERR_ROTATION_AFTER_STOP_CLEAR
;
5065 if (session
->active
) {
5066 new_trace_chunk
= session_create_new_trace_chunk(session
, NULL
,
5068 if (!new_trace_chunk
) {
5069 cmd_ret
= LTTNG_ERR_CREATE_DIR_FAIL
;
5075 * The current trace chunk becomes the chunk being archived.
5077 * After this point, "chunk_being_archived" must absolutely
5078 * be closed on the consumer(s), otherwise it will never be
5079 * cleaned-up, which will result in a leak.
5081 ret
= session_set_trace_chunk(session
, new_trace_chunk
,
5082 &chunk_being_archived
);
5084 cmd_ret
= LTTNG_ERR_CREATE_TRACE_CHUNK_FAIL_CONSUMER
;
5088 if (session
->kernel_session
) {
5089 cmd_ret
= kernel_rotate_session(session
);
5090 if (cmd_ret
!= LTTNG_OK
) {
5091 failed_to_rotate
= true;
5092 rotation_fail_code
= cmd_ret
;
5095 if (session
->ust_session
) {
5096 cmd_ret
= ust_app_rotate_session(session
);
5097 if (cmd_ret
!= LTTNG_OK
) {
5098 failed_to_rotate
= true;
5099 rotation_fail_code
= cmd_ret
;
5103 if (!session
->active
) {
5104 session
->rotated_after_last_stop
= true;
5107 if (!chunk_being_archived
) {
5108 DBG("Rotating session \"%s\" from a \"NULL\" trace chunk to a new trace chunk, skipping completion check",
5110 if (failed_to_rotate
) {
5111 cmd_ret
= rotation_fail_code
;
5118 session
->rotation_state
= LTTNG_ROTATION_STATE_ONGOING
;
5119 chunk_status
= lttng_trace_chunk_get_id(chunk_being_archived
,
5120 &ongoing_rotation_chunk_id
);
5121 assert(chunk_status
== LTTNG_TRACE_CHUNK_STATUS_OK
);
5123 ret
= session_close_trace_chunk(session
, chunk_being_archived
,
5124 command
, session
->last_chunk_path
);
5126 cmd_ret
= LTTNG_ERR_CLOSE_TRACE_CHUNK_FAIL_CONSUMER
;
5130 if (failed_to_rotate
) {
5131 cmd_ret
= rotation_fail_code
;
5135 session
->quiet_rotation
= quiet_rotation
;
5136 ret
= timer_session_rotation_pending_check_start(session
,
5137 DEFAULT_ROTATE_PENDING_TIMER
);
5139 cmd_ret
= LTTNG_ERR_UNK
;
5143 if (rotate_return
) {
5144 rotate_return
->rotation_id
= ongoing_rotation_chunk_id
;
5147 session
->chunk_being_archived
= chunk_being_archived
;
5148 chunk_being_archived
= NULL
;
5149 if (!quiet_rotation
) {
5150 ret
= notification_thread_command_session_rotation_ongoing(
5151 notification_thread_handle
,
5152 session
->name
, session
->uid
, session
->gid
,
5153 ongoing_rotation_chunk_id
);
5154 if (ret
!= LTTNG_OK
) {
5155 ERR("Failed to notify notification thread that a session rotation is ongoing for session %s",
5161 DBG("Cmd rotate session %s, archive_id %" PRIu64
" sent",
5162 session
->name
, ongoing_rotation_chunk_id
);
5164 lttng_trace_chunk_put(new_trace_chunk
);
5165 lttng_trace_chunk_put(chunk_being_archived
);
5166 ret
= (cmd_ret
== LTTNG_OK
) ? cmd_ret
: -((int) cmd_ret
);
5169 if (session_reset_rotation_state(session
,
5170 LTTNG_ROTATION_STATE_ERROR
)) {
5171 ERR("Failed to reset rotation state of session \"%s\"",
5178 * Command LTTNG_ROTATION_GET_INFO from the lttng-ctl library.
5180 * Check if the session has finished its rotation.
5182 * Return LTTNG_OK on success or else an LTTNG_ERR code.
5184 int cmd_rotate_get_info(struct ltt_session
*session
,
5185 struct lttng_rotation_get_info_return
*info_return
,
5186 uint64_t rotation_id
)
5188 enum lttng_error_code cmd_ret
= LTTNG_OK
;
5189 enum lttng_rotation_state rotation_state
;
5191 DBG("Cmd rotate_get_info session %s, rotation id %" PRIu64
, session
->name
,
5192 session
->most_recent_chunk_id
.value
);
5194 if (session
->chunk_being_archived
) {
5195 enum lttng_trace_chunk_status chunk_status
;
5198 chunk_status
= lttng_trace_chunk_get_id(
5199 session
->chunk_being_archived
,
5201 assert(chunk_status
== LTTNG_TRACE_CHUNK_STATUS_OK
);
5203 rotation_state
= rotation_id
== chunk_id
?
5204 LTTNG_ROTATION_STATE_ONGOING
:
5205 LTTNG_ROTATION_STATE_EXPIRED
;
5207 if (session
->last_archived_chunk_id
.is_set
&&
5208 rotation_id
!= session
->last_archived_chunk_id
.value
) {
5209 rotation_state
= LTTNG_ROTATION_STATE_EXPIRED
;
5211 rotation_state
= session
->rotation_state
;
5215 switch (rotation_state
) {
5216 case LTTNG_ROTATION_STATE_NO_ROTATION
:
5217 DBG("Reporting that no rotation has occurred within the lifetime of session \"%s\"",
5220 case LTTNG_ROTATION_STATE_EXPIRED
:
5221 DBG("Reporting that the rotation state of rotation id %" PRIu64
" of session \"%s\" has expired",
5222 rotation_id
, session
->name
);
5224 case LTTNG_ROTATION_STATE_ONGOING
:
5225 DBG("Reporting that rotation id %" PRIu64
" of session \"%s\" is still pending",
5226 rotation_id
, session
->name
);
5228 case LTTNG_ROTATION_STATE_COMPLETED
:
5232 char *current_tracing_path_reply
;
5233 size_t current_tracing_path_reply_len
;
5235 DBG("Reporting that rotation id %" PRIu64
" of session \"%s\" is completed",
5236 rotation_id
, session
->name
);
5238 switch (session_get_consumer_destination_type(session
)) {
5239 case CONSUMER_DST_LOCAL
:
5240 current_tracing_path_reply
=
5241 info_return
->location
.local
.absolute_path
;
5242 current_tracing_path_reply_len
=
5243 sizeof(info_return
->location
.local
.absolute_path
);
5244 info_return
->location_type
=
5245 (int8_t) LTTNG_TRACE_ARCHIVE_LOCATION_TYPE_LOCAL
;
5246 fmt_ret
= asprintf(&chunk_path
,
5247 "%s/" DEFAULT_ARCHIVED_TRACE_CHUNKS_DIRECTORY
"/%s",
5248 session_get_base_path(session
),
5249 session
->last_archived_chunk_name
);
5250 if (fmt_ret
== -1) {
5251 PERROR("Failed to format the path of the last archived trace chunk");
5252 info_return
->status
= LTTNG_ROTATION_STATUS_ERROR
;
5253 cmd_ret
= LTTNG_ERR_UNK
;
5257 case CONSUMER_DST_NET
:
5259 uint16_t ctrl_port
, data_port
;
5261 current_tracing_path_reply
=
5262 info_return
->location
.relay
.relative_path
;
5263 current_tracing_path_reply_len
=
5264 sizeof(info_return
->location
.relay
.relative_path
);
5265 /* Currently the only supported relay protocol. */
5266 info_return
->location
.relay
.protocol
=
5267 (int8_t) LTTNG_TRACE_ARCHIVE_LOCATION_RELAY_PROTOCOL_TYPE_TCP
;
5269 fmt_ret
= lttng_strncpy(info_return
->location
.relay
.host
,
5270 session_get_net_consumer_hostname(session
),
5271 sizeof(info_return
->location
.relay
.host
));
5273 ERR("Failed to copy host name to rotate_get_info reply");
5274 info_return
->status
= LTTNG_ROTATION_STATUS_ERROR
;
5275 cmd_ret
= LTTNG_ERR_SET_URL
;
5279 session_get_net_consumer_ports(session
, &ctrl_port
, &data_port
);
5280 info_return
->location
.relay
.ports
.control
= ctrl_port
;
5281 info_return
->location
.relay
.ports
.data
= data_port
;
5282 info_return
->location_type
=
5283 (int8_t) LTTNG_TRACE_ARCHIVE_LOCATION_TYPE_RELAY
;
5284 chunk_path
= strdup(session
->last_chunk_path
);
5286 ERR("Failed to allocate the path of the last archived trace chunk");
5287 info_return
->status
= LTTNG_ROTATION_STATUS_ERROR
;
5288 cmd_ret
= LTTNG_ERR_UNK
;
5297 fmt_ret
= lttng_strncpy(current_tracing_path_reply
,
5298 chunk_path
, current_tracing_path_reply_len
);
5301 ERR("Failed to copy path of the last archived trace chunk to rotate_get_info reply");
5302 info_return
->status
= LTTNG_ROTATION_STATUS_ERROR
;
5303 cmd_ret
= LTTNG_ERR_UNK
;
5309 case LTTNG_ROTATION_STATE_ERROR
:
5310 DBG("Reporting that an error occurred during rotation %" PRIu64
" of session \"%s\"",
5311 rotation_id
, session
->name
);
5319 info_return
->status
= (int32_t) rotation_state
;
5324 * Command LTTNG_ROTATION_SET_SCHEDULE from the lttng-ctl library.
5326 * Configure the automatic rotation parameters.
5327 * 'activate' to true means activate the rotation schedule type with 'new_value'.
5328 * 'activate' to false means deactivate the rotation schedule and validate that
5329 * 'new_value' has the same value as the currently active value.
5331 * Return 0 on success or else a positive LTTNG_ERR code.
5333 int cmd_rotation_set_schedule(struct ltt_session
*session
,
5334 bool activate
, enum lttng_rotation_schedule_type schedule_type
,
5336 struct notification_thread_handle
*notification_thread_handle
)
5339 uint64_t *parameter_value
;
5343 DBG("Cmd rotate set schedule session %s", session
->name
);
5345 if (session
->live_timer
|| !session
->output_traces
) {
5346 DBG("Failing ROTATION_SET_SCHEDULE command as the rotation feature is not available for this session");
5347 ret
= LTTNG_ERR_ROTATION_NOT_AVAILABLE
;
5351 switch (schedule_type
) {
5352 case LTTNG_ROTATION_SCHEDULE_TYPE_SIZE_THRESHOLD
:
5353 parameter_value
= &session
->rotate_size
;
5355 case LTTNG_ROTATION_SCHEDULE_TYPE_PERIODIC
:
5356 parameter_value
= &session
->rotate_timer_period
;
5357 if (new_value
>= UINT_MAX
) {
5358 DBG("Failing ROTATION_SET_SCHEDULE command as the value requested for a periodic rotation schedule is invalid: %" PRIu64
" > %u (UINT_MAX)",
5359 new_value
, UINT_MAX
);
5360 ret
= LTTNG_ERR_INVALID
;
5365 WARN("Failing ROTATION_SET_SCHEDULE command on unknown schedule type");
5366 ret
= LTTNG_ERR_INVALID
;
5370 /* Improper use of the API. */
5371 if (new_value
== -1ULL) {
5372 WARN("Failing ROTATION_SET_SCHEDULE command as the value requested is -1");
5373 ret
= LTTNG_ERR_INVALID
;
5378 * As indicated in struct ltt_session's comments, a value of == 0 means
5379 * this schedule rotation type is not in use.
5381 * Reject the command if we were asked to activate a schedule that was
5384 if (activate
&& *parameter_value
!= 0) {
5385 DBG("Failing ROTATION_SET_SCHEDULE (activate) command as the schedule is already active");
5386 ret
= LTTNG_ERR_ROTATION_SCHEDULE_SET
;
5391 * Reject the command if we were asked to deactivate a schedule that was
5394 if (!activate
&& *parameter_value
== 0) {
5395 DBG("Failing ROTATION_SET_SCHEDULE (deactivate) command as the schedule is already inactive");
5396 ret
= LTTNG_ERR_ROTATION_SCHEDULE_NOT_SET
;
5401 * Reject the command if we were asked to deactivate a schedule that
5404 if (!activate
&& *parameter_value
!= new_value
) {
5405 DBG("Failing ROTATION_SET_SCHEDULE (deactivate) command as an inexistant schedule was provided");
5406 ret
= LTTNG_ERR_ROTATION_SCHEDULE_NOT_SET
;
5410 *parameter_value
= activate
? new_value
: 0;
5412 switch (schedule_type
) {
5413 case LTTNG_ROTATION_SCHEDULE_TYPE_PERIODIC
:
5414 if (activate
&& session
->active
) {
5416 * Only start the timer if the session is active,
5417 * otherwise it will be started when the session starts.
5419 ret
= timer_session_rotation_schedule_timer_start(
5420 session
, new_value
);
5422 ERR("Failed to enable session rotation timer in ROTATION_SET_SCHEDULE command");
5423 ret
= LTTNG_ERR_UNK
;
5427 ret
= timer_session_rotation_schedule_timer_stop(
5430 ERR("Failed to disable session rotation timer in ROTATION_SET_SCHEDULE command");
5431 ret
= LTTNG_ERR_UNK
;
5436 case LTTNG_ROTATION_SCHEDULE_TYPE_SIZE_THRESHOLD
:
5438 ret
= subscribe_session_consumed_size_rotation(session
,
5439 new_value
, notification_thread_handle
);
5441 ERR("Failed to enable consumed-size notification in ROTATION_SET_SCHEDULE command");
5442 ret
= LTTNG_ERR_UNK
;
5446 ret
= unsubscribe_session_consumed_size_rotation(session
,
5447 notification_thread_handle
);
5449 ERR("Failed to disable consumed-size notification in ROTATION_SET_SCHEDULE command");
5450 ret
= LTTNG_ERR_UNK
;
5457 /* Would have been caught before. */
5469 /* Wait for a given path to be removed before continuing. */
5470 static enum lttng_error_code
wait_on_path(void *path_data
)
5472 const char *shm_path
= path_data
;
5474 DBG("Waiting for the shm path at %s to be removed before completing session destruction",
5480 ret
= stat(shm_path
, &st
);
5482 if (errno
!= ENOENT
) {
5483 PERROR("stat() returned an error while checking for the existence of the shm path");
5485 DBG("shm path no longer exists, completing the destruction of session");
5489 if (!S_ISDIR(st
.st_mode
)) {
5490 ERR("The type of shm path %s returned by stat() is not a directory; aborting the wait for shm path removal",
5495 usleep(SESSION_DESTROY_SHM_PATH_CHECK_DELAY_US
);
5501 * Returns a pointer to a handler to run on completion of a command.
5502 * Returns NULL if no handler has to be run for the last command executed.
5504 const struct cmd_completion_handler
*cmd_pop_completion_handler(void)
5506 struct cmd_completion_handler
*handler
= current_completion_handler
;
5508 current_completion_handler
= NULL
;
5513 * Init command subsystem.
5518 * Set network sequence index to 1 for streams to match a relayd
5519 * socket on the consumer side.
5521 pthread_mutex_lock(&relayd_net_seq_idx_lock
);
5522 relayd_net_seq_idx
= 1;
5523 pthread_mutex_unlock(&relayd_net_seq_idx_lock
);
5525 DBG("Command subsystem initialized");